@charset "UTF-8";
/* googlefont　*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,900;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500&display=swap");
div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

main {
  display: block;
}

button {
  cursor: pointer;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
サイト固有の追加項目
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* base設定　*/
html, body {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  position: relative;
  font-size: 62.5%;
  overflow-x: hidden;
  font-weight: 400;
}

body {
  -webkit-text-size-adjust: 100%;
  position: relative;
  overflow-y: hidden;
  position: relative;
  font-family: "Lato", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  line-height: 1.8;
}
@media print {
  body {
    zoom: 0.6;
  }
  body .print_break {
    -webkit-column-break-before: page;
       -moz-column-break-before: page;
            break-before: page;
  }
  body * {
    -webkit-print-color-adjust: exact;
  }
}
body a {
  color: #070303;
  text-decoration: none;
  -webkit-transition: all 0.2s linear !important;
  transition: all 0.2s linear !important;
}
body a:hover {
  -webkit-transition: all 0.2s linear !important;
  transition: all 0.2s linear !important;
}

p, ul, li, a, dl, dt, dd, th, td, input {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media print, screen and (min-width: 768px) {
  p, ul, li, a, dl, dt, dd, th, td, input {
    font-size: 1.6rem;
  }
}

::-moz-selection {
  background: #D8E9E9;
  color: #177475;
}

::selection {
  background: #D8E9E9;
  color: #177475;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%; /*for responsive*/
  height: auto; /*for responsive*/
  width: auto; /* IE8のみ */
}

.opacity:hover {
  opacity: 70%;
  -moz-opacity: 0.7;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/*==================================

lazyload ふわっと表示

==================================*/
.fade img {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: 2s;
  transition: 2s;
}

.fade img.lazyloaded {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/*==================================

マウスオーバー で画像拡大

==================================*/
.g_img_mouseover {
  display: block;
  overflow: hidden;
  width: 100%;
}
.g_img_mouseover img {
  display: block;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}
.g_img_mouseover img:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-filter: brightness(70%);
          filter: brightness(70%);
}

/*==================================

header

==================================*/
.header {
  position: fixed;
  z-index: 99;
  width: 100%;
  border-top: 5px solid #283980;
  background-color: rgba(255, 255, 255, 0.9);
  height: 60px;
}
@media print, screen and (min-width: 576px) {
  .header {
    height: 75px;
  }
}
@media print, screen and (min-width: 992px) {
  .header {
    height: 100px;
    margin-bottom: 1rem;
  }
}
.header .inner {
  max-width: 1420px;
  width: 94%;
  margin: 0 auto;
  position: relative;
}
@media print, screen and (min-width: 1200px) {
  .header .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media print {
  .header {
    position: absolute;
  }
}

.header_logo {
  padding: 1.5rem 0 0.5rem 0;
  max-width: 45%;
}
@media print, screen and (min-width: 576px) {
  .header_logo {
    max-width: auto;
    padding: 2.5rem 0 1rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  .header_logo {
    width: 50%;
  }
}
@media print, screen and (min-width: 992px) {
  .header_logo {
    padding: 1rem 0 0.5rem 0;
    width: 22%;
  }
}
@media print, screen and (min-width: 1200px) {
  .header_logo {
    padding: 4rem 0 1rem 0;
    width: auto;
  }
}

.header_btn_wrap {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .header_btn_wrap {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.header_btn_wrap li a {
  display: block;
  background-color: #D00605;
  border-bottom: 2px solid #A3182A;
  color: white;
  padding: 0.3rem 1.5rem;
  font-size: 1.4rem;
}
.header_btn_wrap li a:hover {
  background-color: #A3182A;
  border-bottom: 2px solid #A3182A;
}
.header_btn_wrap .dl_btn a {
  border-radius: 0 0 0 10px;
  border-right: 1px solid #E2E2E2;
  cursor: pointer;
}
.header_btn_wrap .document a {
  padding: 0.3rem 2.1rem;
}
.header_btn_wrap .contact_btn a {
  border-radius: 0 0 10px 0;
}

.dl_btn_sp {
  position: absolute;
  top: 1.6rem;
  right: 5rem;
}
@media print, screen and (min-width: 576px) {
  .dl_btn_sp {
    top: 2rem;
    right: 6rem;
  }
}
.dl_btn_sp a {
  display: block;
  font-weight: bold;
  background-color: #D00605;
  border-radius: 6px;
  cursor: pointer;
  border-bottom: 2px solid #A3182A;
  color: white;
  padding: 0.4rem 1.2rem;
  font-size: 1.2rem;
}
@media print, screen and (min-width: 576px) {
  .dl_btn_sp a {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .dl_btn_sp a {
    padding: 0.6rem 3rem;
  }
}
@media print, screen and (min-width: 992px) {
  .dl_btn_sp a {
    display: none;
  }
}

.pc_header_nav {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .pc_header_nav {
    display: block;
    margin-top: 1rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .pc_header_nav {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1334px) {
  .pc_header_nav {
    margin-top: 5rem;
  }
}
.pc_header_nav ul.header_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pc_header_nav ul.header_nav > li {
  padding: 0 1rem;
}
.pc_header_nav ul.header_nav > li:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.pc_header_nav ul.header_nav > li:hover .g_nav_child_wrap {
  visibility: visible;
  opacity: 1;
}
.pc_header_nav ul.header_nav > li > a {
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  position: relative;
  padding-bottom: 0.5rem;
}
@media print, screen and (min-width: 1200px) {
  .pc_header_nav ul.header_nav > li > a {
    font-size: 1.3rem;
  }
}
.pc_header_nav ul.header_nav > li > a img {
  display: inline-block;
  vertical-align: text-bottom;
  padding-left: 0.3rem;
  width: 13px;
  height: 13px;
}
.pc_header_nav ul.header_nav > li > a:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #283980;
  bottom: 3rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pc_header_nav ul.header_nav > li > a:hover:after {
  visibility: visible;
  bottom: 0.5rem;
  opacity: 1;
}
.pc_header_nav ul.header_nav > li .icon_anotherwindow {
  background-image: url(../../img/service/common/icon_black_anotherwindow.svg);
  background-position: right bottom 1.3rem;
  background-size: 10px;
  background-repeat: no-repeat;
  padding-right: 1.3rem;
}

.g_nav_child_wrap {
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  position: absolute;
  width: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 0 0 10px 10px;
}
.g_nav_child_wrap ul li {
  font-size: 1.4rem;
  position: relative;
  vertical-align: text-top;
}
.g_nav_child_wrap ul li a {
  font-weight: bold;
  display: block;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  border-radius: 10px;
  font-size: 1.4rem;
}
.g_nav_child_wrap ul li a img {
  display: inline-block;
  vertical-align: middle;
  padding-right: 1rem;
  width: 15px;
  height: 15px;
}
.g_nav_child_wrap ul li a:hover {
  background: #0b318f;
  color: #fff;
}

.sp_nav_lay {
  display: block;
  width: 100%;
  position: relative;
}
@media print, screen and (min-width: 992px) {
  .sp_nav_lay {
    display: none;
  }
}
@media print {
  .sp_nav_lay {
    display: none;
  }
}

.drawer {
  position: absolute;
  right: 0;
  z-index: 9999;
}

.navbar_toggle {
  display: block;
  position: absolute;
  right: 0;
  top: 1rem;
  cursor: pointer;
  text-align: center;
  background: none;
  border: none;
  color: black;
  font-size: 1rem;
}
@media print, screen and (min-width: 576px) {
  .navbar_toggle {
    top: 1.5rem;
  }
}
@media print, screen and (min-width: 992px) {
  .navbar_toggle {
    display: none;
  }
}
.navbar_toggle span {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: black;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.navbar_toggle span:nth-child(1) {
  top: 0;
}
.navbar_toggle span:nth-child(2) {
  margin: 8px 0;
}
.navbar_toggle span:nth-child(3) {
  top: 0;
}

.navbar_toggle.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar_toggle.open span:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}
.navbar_toggle.open span:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: -1rem;
  left: 0;
  z-index: 9999;
  background-color: #283980;
}

.menu_list > li {
  border-bottom: 1px solid #485486;
  text-align: center;
  padding: 1.5rem 0;
}
.menu_list > li a {
  color: white;
  font-size: 1.6rem;
}
.menu_list > li img {
  width: 60%;
  display: block;
  margin: 2rem auto;
}
.menu_list > li .g_anotherwindow:after {
  padding-right: 2rem;
  width: 10px;
  height: 10px;
  background-size: 10px;
}
.menu_list > li .ttl {
  color: white;
  letter-spacing: 2px;
  font-size: 1.6rem;
}
.menu_list > li .ttl .toogle {
  position: relative;
}
.menu_list > li .ttl .toogle:after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 13px;
  background-image: url(../../img/service/common/ico_arrow_btm.svg);
  background-repeat: no-repeat;
  background-size: 7px;
  right: -38px;
  top: 4px;
  background-size: 16px;
}
.menu_list > li .ttl.is-active .toogle:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.accordion_inner {
  margin-top: 1rem;
  color: white;
}
.accordion_inner li {
  margin-bottom: 1rem;
}
.accordion_inner li a {
  color: white;
  font-size: 1.4rem;
}

.menu_btn {
  margin: 2rem 1rem;
}
.menu_btn .dl_btn a, .menu_btn .contact_btn a {
  margin: 1rem;
  display: block;
  text-align: center;
  background-color: #D00605;
  border-bottom: 2px solid #A3182A;
  color: white;
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 10px;
}
.menu_btn .dl_btn a:hover, .menu_btn .contact_btn a:hover {
  -webkit-transform: translate(5px, 0);
          transform: translate(5px, 0);
}

/*OPEN時の動き*/
.menu.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  width: 80vw;
}
@media print {
  .menu.open {
    display: none;
  }
}

/*==================================

simple_header

==================================*/
.simple_header {
  border-top: 5px solid #283980;
}
.simple_header img {
  display: block;
  margin: 2rem auto;
  max-width: 275px;
  width: 40%;
}

/*==================================

PC header

==================================*/
/*==================================

g_required //必須アイコン

==================================*/
.g_required {
  color: white;
  background-color: #D00605;
  font-size: 1rem;
  display: inline-block;
  padding: 0 0.5rem;
  margin-left: 0.5rem;
  border-radius: 0.5rem;
  line-height: 1.6;
}
@media print, screen and (min-width: 576px) {
  .g_required {
    font-size: 1.2rem;
  }
}

/*==================================

g_form_item

==================================*/
.g_form_item {
  font-weight: bold;
  margin: 3rem 0 0.5rem 0;
  font-size: 1.8rem;
}
@media print, screen and (min-width: 768px) {
  .g_form_item {
    margin: 5rem 0 0.5rem 0;
  }
}

/*==================================

g_form_item_error //エラー

==================================*/
.g_form_item_error {
  width: 98%;
}
.g_form_item_error li {
  border: 1px solid #D00605;
  color: #D00605;
  font-weight: bold;
  padding: 0.3rem 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  background-color: #FFF9EA;
  border-radius: 5px;
}

/*==================================

input type radio //ラジオボタン

==================================*/
.g_radio_box {
  margin: 1rem 3rem 1rem 0;
  display: inline-block;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
}
input[type=radio] + .g_radio_label:before {
  content: "";
  background: #F1F1F1;
  border-radius: 100%;
  border: 1px solid #B7B7B7;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  margin-right: 0.3rem;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
input[type=radio]:checked + .g_radio_label:before {
  background-color: #D00515;
  -webkit-box-shadow: inset 0 0 0 4px #F1F1F1;
          box-shadow: inset 0 0 0 4px #F1F1F1;
}
input[type=radio]:focus + .g_radio_label:before {
  outline: none;
  border-color: #D00515;
}
input[type=radio]:disabled + .g_radio_label:before {
  -webkit-box-shadow: inset 0 0 0 4px #F1F1F1;
          box-shadow: inset 0 0 0 4px #F1F1F1;
  border-color: #F1F1F1;
  background: #F1F1F1;
}
input[type=radio] + .g_radio_label {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.7;
}
@media print, screen and (min-width: 768px) {
  input[type=radio] + .g_radio_label {
    font-size: 1.8rem;
  }
}
input[type=radio] + .g_radio_label:empty:before {
  margin-right: 0;
}

/*==================================

input type text

==================================*/
input[type=text] {
  background-color: white;
  border: 1px solid #707070;
  border-radius: 5px;
  width: 98%;
  padding: 1rem;
  height: 40px;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 576px) {
  input[type=text] {
    height: 60px;
  }
}

/*==================================

input type tel

==================================*/
input[type=tel] {
  background-color: white;
  border: 1px solid #707070;
  border-radius: 5px;
  width: 98%;
  padding: 1rem;
  height: 40px;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 576px) {
  input[type=tel] {
    height: 60px;
  }
}

/*==================================

セレクトボックス

==================================*/
select {
  border-radius: 5px;
  width: 98%;
  padding: 1rem;
  height: 40px;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 576px) {
  select {
    height: 60px;
  }
}

/*==================================

input type submit

==================================*/
input[type=submit] {
  cursor: pointer;
}

/*==================================

テキストエリア

==================================*/
textarea {
  background-color: white;
  border: 1px solid #707070;
  border-radius: 5px;
  width: 98%;
  height: 200px;
  padding: 1rem;
  margin-bottom: 1rem;
}

/*==================================

ハーフサイズ

==================================*/
input[type=text].g_form_half, select.g_form_half, textarea.g_form_half {
  width: 40%;
  margin-right: 5%;
  display: inline-block;
}

/*==================================

.g_blue_box

==================================*/
.g_blue_box {
  max-width: 940px;
  border-radius: 2rem;
  background-color: #E9EBF7;
  padding: 3.5% 6%;
  margin: 2rem auto;
}
@media screen and (min-width: 992px) {
  .g_blue_box {
    border-radius: 3.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .g_blue_box {
    border-radius: 4rem;
  }
}

/*==================================

.g_white_box

==================================*/
.g_white_box {
  max-width: 940px;
  background-color: white;
  border-radius: 2rem;
  padding: 4%;
  margin: 2rem auto;
}
@media screen and (min-width: 992px) {
  .g_white_box {
    border-radius: 3.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .g_white_box {
    border-radius: 4rem;
  }
}

/*==================================

プライバシーポリシー

==================================*/
.g_form_privacy_link {
  font-size: 1.4rem;
  text-decoration: underline;
}
.g_form_privacy_link:hover {
  text-decoration: none;
}

.form_privacy {
  max-width: 700px;
  margin: 0 auto 1rem auto;
}
.form_privacy .privacypolicy_inner {
  background-color: #F6F6F6;
  border: 1px solid #707070;
  border-radius: 10px;
  width: 100%;
  height: 160px;
  padding: 1rem;
  overflow-y: scroll;
}
.form_privacy p, .form_privacy li, .form_privacy dt, .form_privacy dd, .form_privacy th, .form_privacy td, .form_privacy a {
  font-size: 1rem;
  line-height: 1.6;
  color: #070303;
}
@media print, screen and (min-width: 768px) {
  .form_privacy p, .form_privacy li, .form_privacy dt, .form_privacy dd, .form_privacy th, .form_privacy td, .form_privacy a {
    font-size: 1.2rem;
  }
}
.form_privacy .form_privacy_title {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .form_privacy .form_privacy_title {
    font-size: 1.6rem;
  }
}
.form_privacy .g_anotherwindow:after {
  content: "";
  display: inline-block;
  background-image: url(../../../img/service/common/icon_black_anotherwindow.svg);
  background-position: right center;
  background-size: 10px;
  background-repeat: no-repeat;
  padding-right: 1.5rem;
  width: 10px;
  height: 10px;
}
.form_privacy .privacy_main_ttl {
  font-weight: bold;
  margin: 1rem 0 0.5rem 0;
  font-size: 1.2rem;
}
@media print, screen and (min-width: 768px) {
  .form_privacy .privacy_main_ttl {
    font-size: 1.4rem;
  }
}
.form_privacy .privacy_sub_ttl {
  border-left: 3px solid black;
  font-weight: bold;
  padding: 0 0 0 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.form_privacy .g_num_list {
  margin: 0 0 0 0;
}
.form_privacy .g_num_list .g_num_list_item {
  list-style: none;
  list-style-position: inside;
  counter-increment: item;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.form_privacy .g_num_list .g_num_list_item:before {
  color: #070303;
  content: "（" counter(item) "） ";
}
.form_privacy .g_num_list .g_num_list_item ul {
  margin: 0.2rem 0 0.5rem 1rem;
}
.form_privacy .g_bullet_list {
  margin: 0 0 0 1rem;
}
.form_privacy .g_bullet_list .g_bullet_list_item {
  padding: 0 0 0 2rem;
  text-indent: -1.4rem;
}
.form_privacy .g_bullet_list .g_bullet_list_item:before {
  content: "・ ";
}
.form_privacy .g_bullet_list .g_bullet_list_item ul {
  margin: 0.2rem 0 1rem 1rem;
}
.form_privacy .g_alpha_list {
  margin: 0 0 0 1rem;
  counter-reset: alpha_li;
}
.form_privacy .g_alpha_list .g_alpha_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.form_privacy .g_alpha_list .g_alpha_list_item:before {
  counter-increment: alpha_li;
  content: counter(alpha_li, upper-alpha) ". ";
}
.form_privacy .g_alpha_list .g_alpha_list_item ul {
  margin: 0.2rem 0 0.5rem 1rem;
}
.form_privacy .g_list_inner_p {
  padding: 0 0 0 2rem;
  text-indent: 0;
}
.form_privacy a {
  text-decoration: underline;
}
.form_privacy a:hover {
  text-decoration: none;
}

.privacypolicy_wrap {
  display: none;
}

/*==================================
モーダル
==================================*/
.modal_box {
  position: fixed;
  z-index: 7777;
  display: none;
  width: 94%;
  margin: 0;
  padding: 5%;
  background: white;
  max-width: 1200px;
  border-radius: 2rem;
  max-height: 80vh; /* ビューポートの80%までの高さに制限 */
  overflow-y: auto; /* モーダル全体をスクロール可能に */
}
@media screen and (min-width: 992px) {
  .modal_box {
    border-radius: 3.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .modal_box {
    border-radius: 4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .modal_box {
    padding: 2% 3%;
  }
}

.modal_inner {
  max-height: 100%; /* 内部コンテンツの最大高さを100%に */
  overflow-y: auto; /* モーダル内でスクロール可能に */
}

.modal_close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: block;
  width: 40px;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .modal_close {
    width: 62px;
  }
}

.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.7);
}

/*==================================
form
==================================*/
.modal_inner {
  overflow-y: scroll;
}
.modal_inner .modal_title {
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #707070;
  margin: 0 0 1.5rem 0;
  padding: 0 0 0.5rem 0;
  line-height: 1.4;
  font-size: 1.8rem;
}
@media print, screen and (min-width: 768px) {
  .modal_inner .modal_title {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
  }
}
.modal_inner .modal_text {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 768px) {
  .modal_inner .modal_text {
    font-size: 1.6rem;
    text-align: center;
  }
}
.modal_inner form {
  background-color: #FAF9F7;
  border-radius: 2rem;
  padding: 3% 5%;
}
@media screen and (min-width: 992px) {
  .modal_inner form {
    border-radius: 3.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .modal_inner form {
    border-radius: 4rem;
  }
}
.modal_inner .form_item {
  font-weight: bold;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 576px) {
  .modal_inner .form_item {
    font-size: 1.6rem;
  }
}
.modal_inner .form_item_error li {
  color: #D00605;
  border: 1px solid #D00605;
  background-color: #FFF9EA;
  border-radius: 5px;
  font-weight: bold;
  padding: 0.3rem 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 576px) {
  .modal_inner .form_item_error li {
    font-size: 1.6rem;
  }
}
.modal_inner input[type=radio] + .modal_dl_radio_label {
  font-weight: normal;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 576px) {
  .modal_inner input[type=radio] + .modal_dl_radio_label {
    font-size: 1.6rem;
  }
}
.modal_inner input[type=text],
.modal_inner input[type=tel] {
  width: 100%;
  height: 40px;
}
@media print, screen and (min-width: 576px) {
  .modal_inner input[type=text],
  .modal_inner input[type=tel] {
    height: 50px;
  }
}
.modal_inner .al_policy {
  text-align: center;
  font-size: 1.2rem;
}
@media print, screen and (min-width: 576px) {
  .modal_inner .al_policy {
    font-size: 1.4rem;
  }
}
.modal_inner .al_policy a {
  font-size: 1.2rem;
}
@media print, screen and (min-width: 576px) {
  .modal_inner .al_policy a {
    font-size: 1.4rem;
  }
}
.modal_inner .icon_anotherwindow {
  display: inline-block;
  text-decoration: underline;
  background-image: url(../../img/service/common/icon_black_anotherwindow.svg);
  background-position: right center;
  background-size: 10px;
  background-repeat: no-repeat;
  padding-right: 1.3rem;
  font-size: 1.4rem;
}
.modal_inner .dl_form_btn {
  display: block;
  margin: 2rem auto 0 auto;
  width: 100%;
  max-width: 400px;
  text-align: center;
  border-top: none;
  border-right: none;
  border-left: none;
  background-color: #D00605;
  border-bottom: 2px solid #A3182A;
  color: white;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 2rem;
  cursor: pointer;
}
@media print, screen and (min-width: 576px) {
  .modal_inner .dl_form_btn {
    margin: 1rem auto 0 auto;
  }
}
.modal_inner .dl_form_btn:hover {
  background-color: #A3182A;
}

@media print, screen and (min-width: 768px) {
  .modal_inner_flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.modal_inner_flex .flex_40 {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .modal_inner_flex .flex_40 {
    display: block;
    width: 40%;
  }
}
.modal_inner_flex .flex_40 figure {
  max-width: 150px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .modal_inner_flex .flex_40 figure {
    max-width: 350px;
  }
}
.modal_inner_flex .flex_40 p {
  font-size: 1.2rem;
}
@media print, screen and (min-width: 768px) {
  .modal_inner_flex .flex_40 p {
    font-size: 1.4rem;
    max-width: 300px;
    margin: 2rem auto;
  }
}
.modal_inner_flex .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  .modal_inner_flex .flex_58 {
    width: 58%;
  }
}
.modal_inner_flex .flex_49 {
  width: 49%;
}

/*==================================
thanksページ
==================================*/
#modal_dl_thanks .txt {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 768px) {
  #modal_dl_thanks .txt {
    font-size: 1.6rem;
  }
}
#modal_dl_thanks figure img {
  display: block;
  margin: 3rem auto 2rem auto;
}
@media print, screen and (min-width: 768px) {
  #modal_dl_thanks figure img {
    margin: 0 auto 2rem auto;
  }
}

#modal_dl_thanks.modal_box {
  max-height: 600px;
}
@media print, screen and (min-width: 576px) {
  #modal_dl_thanks.modal_box {
    max-height: 600px;
  }
}
@media print, screen and (min-width: 768px) {
  #modal_dl_thanks.modal_box {
    max-height: 600px;
  }
}

#modal_consulting_application_form_thanks.modal_box {
  max-height: 600px;
}
@media print, screen and (min-width: 576px) {
  #modal_consulting_application_form_thanks.modal_box {
    max-height: 600px;
  }
}
@media print, screen and (min-width: 768px) {
  #modal_consulting_application_form_thanks.modal_box {
    max-height: 600px;
  }
}
#modal_consulting_application_form_thanks.modal_box .modal_text {
  text-align: left;
  max-width: 540px;
  margin: 0 auto;
}
#modal_consulting_application_form_thanks.modal_box .thanks_blue_box p {
  text-align: center;
}

.thanks_blue_box span {
  font-size: 1.8rem;
  font-weight: bold;
}

.modal_text {
  margin-top: 1rem;
}
.modal_text .g_s_btn {
  margin: 1rem auto;
}

.g_blue_box {
  padding: 1rem;
}

/*==================================

footer

==================================*/
footer .footer_width {
  padding-top: 5rem;
}
@media print, screen and (min-width: 768px) {
  footer .footer_width {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 7rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media print, screen and (min-width: 992px) {
  footer .footer_width {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
@media print {
  footer .footer_width {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
footer .footer_logo {
  width: 100%;
  max-width: none;
  margin: 0 auto 10% auto;
}
@media print, screen and (min-width: 768px) {
  footer .footer_logo {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 5% auto;
  }
}
@media print, screen and (min-width: 992px) {
  footer .footer_logo {
    margin: 0 5% 0 0;
    width: 30%;
  }
}
footer .footer_logo img {
  display: block;
  max-width: 70%;
  margin: 0 auto;
}
@media print, screen and (min-width: 576px) {
  footer .footer_logo img {
    width: 100%;
    max-width: 400px;
  }
}
footer .footer_logo p {
  padding: 2rem 0;
  font-size: 1rem;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  footer .footer_logo p {
    font-size: 1.2rem;
  }
}
@media print {
  footer .footer_logo {
    width: 25%;
    margin: 0 5% 0 0;
  }
}
footer .footer_item {
  margin: 0 3% 4% 0;
}
@media print, screen and (min-width: 768px) {
  footer .footer_item {
    width: 30%;
  }
}
@media print, screen and (min-width: 992px) {
  footer .footer_item {
    width: auto;
  }
}
footer dl, footer .footer_origin_link {
  margin-bottom: 4rem;
}
footer dt, footer .footer_origin_link {
  line-height: 1;
}
footer dt a, footer .footer_origin_link a {
  border-left: 3px solid #283980;
  display: inline-block;
  padding: 0 0 0 1.5rem;
  font-weight: bold;
  color: #283980;
  font-size: 1.4rem;
  line-height: 1.2;
}
footer dt a:hover, footer .footer_origin_link a:hover {
  text-decoration: underline;
}
footer dt {
  margin-bottom: 1rem;
}
footer dd {
  margin-left: 0.5rem;
}
footer dd a {
  font-size: 1.2rem;
  padding: 0 0 0 1.5rem;
  color: #555555;
  display: inline-block;
  text-indent: -1.5rem;
  margin-bottom: 0.5rem;
}
footer dd a:before {
  content: "ー";
}
footer dd a:hover {
  text-decoration: underline;
}

.footer_anotherwindow:after {
  content: "";
  display: inline-block;
  background-image: url(../../../img/service/common/icon_black_anotherwindow.svg);
  background-position: right center;
  background-size: 10px;
  background-repeat: no-repeat;
  padding-right: 1.5rem;
  width: 10px;
  height: 10px;
}

.copyright {
  background-color: #283980;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  padding: 2rem 0;
}
@media print {
  .copyright {
    margin-top: 5rem;
  }
}

/*==================================

loading

==================================*/
.ajax_loading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10000;
}

.ajax_loading_animation {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10001;
}
.ajax_loading_animation img {
  width: 100px;
  height: 100px;
}