@charset "UTF-8";
/* ======================= VARIABLE ====== */
/*カラー*/
/* ======================= IMPORT ====== */
/*=================

      mixin.scss

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

      common.scss

=======================*/
.common_wrap {
  padding: 0 16px;
}

.common_inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.common_inner_s {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.common_right_wrap {
  max-width: calc(100% - (50% - (1100px / 2)));
  width: calc(100% - 16px);
  margin-left: auto;
  margin-right: 0;
}

.common_left_wrap {
  max-width: calc(100% - (50% - (1100px / 2)));
  width: calc(100% - 16px);
  margin-left: 0;
  margin-right: auto;
}

/* フェードイン(初期値) */
.scroll_up {
  opacity: 0;
  /* 最初は非表示 */
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  /* 下に50pxの位置から */
  -webkit-transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, transform .8s;
  transition: opacity .8s, transform .8s, -webkit-transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.scroll_up.is-show {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  -webkit-transform: translateY(0);
  transform: translateY(0);
  /* 30px上に移動する */
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  /* フェード開始を0.2秒遅らせる */
}

.common_sec_title_ja {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 36px;
  color: #122A5B;
  line-height: 1.5;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .common_sec_title_ja {
    font-size: 26px;
    margin: 0 0 12px;
  }
}

.common_sec_title_ja .marker_o {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F9CF97));
  background: linear-gradient(transparent 60%, #F9CF97 60%);
}

.common_sec_title_ja.color_w {
  color: #FFF;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.common_sec_title_ja .bg_w {
  display: inline-block;
  padding: 4px 16px;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 0 16px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.common_sec_title_ja .text_grad {
  color: #122A5B;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #44ACEF), to(#122A5B));
  background: linear-gradient(90deg, #44ACEF 0, #122A5B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.common_sec_title_ja .marker_r {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F8908D));
  background: linear-gradient(transparent 60%, #F8908D 60%);
}

.common_sec_title_ja .text_g_r {
  color: #FF2B2B;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #FFA63E), to(#FF2B2B));
  background: linear-gradient(90deg, #FFA63E 0, #FF2B2B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 44px;
}

.common_sec_title_ja .t_small {
  font-size: 22px;
}

.common_sec_title_en {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  color: #44ACEF;
  line-height: 1.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  .common_sec_title_en {
    font-size: 16px;
    margin: 0 0 32px;
  }
}

.common_sec_title_en.color_w {
  color: #FFF;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.common_contact_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 300px;
  height: 64px;
  border-radius: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin: 0 auto;
}

.common_contact_btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#ffa63e), to(#ff2b2b));
  background: linear-gradient(90deg, #ffa63e 0%, #ff2b2b 100%);
  z-index: -1;
}

.common_contact_btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, right top, left top, from(#ffa63e), to(#ff2b2b));
  background: linear-gradient(270deg, #ffa63e 0%, #ff2b2b 100%);
  opacity: 0;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
  z-index: -1;
}

@media only screen and (min-width: 960px) {
  .common_contact_btn:hover:after {
    opacity: 1;
  }
}

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

      header.scss

=======================*/
.header_height {
  width: 100%;
  height: 96px;
}

@media only screen and (max-width: 1300px) {
  .header_height {
    height: 72px;
  }
}

.pc_header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 0 48px;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 1300px) {
  .pc_header_wrap {
    display: none;
  }
}

.pc_header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 96px;
  padding: 12px 0;
}

.pc_header_inner .pc_header_logo_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pc_header_inner .pc_header_logo_menu .pc_header_logo {
  display: block;
  width: 250px;
  margin: 0 40px 0 0;
}

.pc_header_inner .pc_header_logo_menu .pc_header_logo img {
  width: 100%;
}

.pc_header_inner .pc_header_logo_menu .pc_header_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.pc_header_inner .pc_header_logo_menu .pc_header_menu_list .pc_header_menu_item {
  margin: 0 32px 0 0;
}

.pc_header_inner .pc_header_logo_menu .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #122A5B;
  line-height: 1.5;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  position: relative;
}

.pc_header_inner .pc_header_logo_menu .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link:after {
  content: "";
  position: absolute;
  bottom: .5em;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #122A5B;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 960px) {
  .pc_header_inner .pc_header_logo_menu .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link:hover:after {
    bottom: 0;
    opacity: 1;
  }
}

.pc_header_inner .pc_header_contact_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 300px;
  height: 64px;
  border-radius: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.pc_header_inner .pc_header_contact_btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#ffa63e), to(#ff2b2b));
  background: linear-gradient(90deg, #ffa63e 0%, #ff2b2b 100%);
  z-index: -1;
}

.pc_header_inner .pc_header_contact_btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, right top, left top, from(#ffa63e), to(#ff2b2b));
  background: linear-gradient(270deg, #ffa63e 0%, #ff2b2b 100%);
  opacity: 0;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
  z-index: -1;
}

@media only screen and (min-width: 960px) {
  .pc_header_inner .pc_header_contact_btn:hover:after {
    opacity: 1;
  }
}

.sp_header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

@media only screen and (max-width: 1300px) {
  .sp_header {
    display: block;
  }
}

.sp_header .sp_header_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 72px;
}

.sp_header .sp_header_content .sp_header_logo {
  display: block;
  width: 200px;
}

@media only screen and (max-width: 640px) {
  .sp_header .sp_header_content .sp_header_logo {
    width: 150px;
  }
}

.sp_header .sp_header_content .sp_header_logo img {
  display: block;
  width: 100%;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_contact_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 200px;
  height: 48px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.3;
  background: -webkit-gradient(linear, left top, right top, from(#ffa63e), to(#ff2b2b));
  background: linear-gradient(90deg, #ffa63e 0%, #ff2b2b 100%);
  margin: 0 16px 0 0;
  text-align: center;
  border-radius: 30px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 640px) {
  .sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_contact_link {
    font-size: 12px;
    margin: 0 8px 0 0;
    width: 110px;
  }
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn {
  width: 48px;
  height: 40px;
  border-radius: 3px;
  background-color: #122A5B;
  position: relative;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn span {
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  height: 1px;
  background-color: #FFF;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn span:nth-of-type(1n) {
  left: 12px;
  top: 16px;
  width: 24px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn span:nth-of-type(2n) {
  left: 12px;
  top: 22px;
  width: 24px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn.active span:nth-of-type(1n) {
  top: 13px;
  left: 12px;
  -webkit-transform: translateY(6px) rotate(-32deg);
  transform: translateY(6px) rotate(-32deg);
  width: 24px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn.active span:nth-of-type(2n) {
  top: 25px;
  left: 12px;
  -webkit-transform: translateY(-6px) rotate(32deg);
  transform: translateY(-6px) rotate(32deg);
  width: 24px;
}

.sp_header_menu {
  display: none;
}

.sp_header_menu.active {
  display: block;
}

.sp_header_menu .sp_header_menu_inner {
  position: fixed;
  z-index: 1000;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  padding: 16px 0;
  background-color: #122A5B;
  overflow-y: scroll;
  scrollbar-width: none;
}

.sp_header_menu .sp_header_menu_inner::-webkit-scrollbar {
  display: none;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list {
  margin: 0 0 24px;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list .sp_header_menu_item .sp_header_menu_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 20px 0 20px 20px;
  position: relative;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list .sp_header_menu_item .sp_header_menu_link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #6EE7FF;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_menu_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 300px;
  height: 64px;
  border-radius: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin: 0 auto;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_menu_contact:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#ffa63e), to(#ff2b2b));
  background: linear-gradient(90deg, #ffa63e 0%, #ff2b2b 100%);
  z-index: -1;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_menu_contact:after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, right top, left top, from(#ffa63e), to(#ff2b2b));
  background: linear-gradient(270deg, #ffa63e 0%, #ff2b2b 100%);
  opacity: 0;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
  z-index: -1;
}

@media only screen and (min-width: 960px) {
  .sp_header_menu .sp_header_menu_inner .sp_header_btn_menu_contact:hover:after {
    opacity: 1;
  }
}

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

      footer.scss

=======================*/
.footer_wrap {
  padding: 64px 0;
  background-color: #122A5B;
}

@media only screen and (max-width: 640px) {
  .footer_wrap {
    padding: 48px 0;
  }
}

.footer_wrap .footer_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .footer_wrap .footer_content {
    display: block;
  }
}

.footer_wrap .footer_content .footer_company_block {
  width: calc(50% - 80px);
  padding: 0 80px 0 0;
  margin: 0 80px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 840px) {
  .footer_wrap .footer_content .footer_company_block {
    width: 100%;
    padding: 0 0 40px 0;
    margin: 0 0 40px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.footer_wrap .footer_content .footer_company_block .footer_logo {
  display: block;
  width: 262px;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .footer_wrap .footer_content .footer_company_block .footer_logo {
    width: 240px;
    margin: 0 0 24px;
  }
}

.footer_wrap .footer_content .footer_company_block .footer_logo img {
  width: 100%;
}

.footer_wrap .footer_content .footer_company_block .footer_company_address {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  color: #FFF;
  line-height: 2;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .footer_wrap .footer_content .footer_company_block .footer_company_address {
    font-size: 14px;
    margin: 0 0 8px;
  }
}

.footer_wrap .footer_content .footer_company_block .footer_company_tel_fax {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  color: #FFF;
  line-height: 2;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .footer_wrap .footer_content .footer_company_block .footer_company_tel_fax {
    font-size: 14px;
    margin: 0 0 24px;
  }
}

.footer_wrap .footer_content .footer_company_block .footer_company_tel_fax a {
  color: #FFF;
  text-decoration: underline;
}

.footer_wrap .footer_content .footer_company_block .footer_company_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  color: #FFF;
  line-height: 2;
  margin: 0 0 40px;
  text-decoration: underline;
}

@media only screen and (max-width: 640px) {
  .footer_wrap .footer_content .footer_company_block .footer_company_link {
    font-size: 14px;
    margin: 0 0 24px;
  }
}

.footer_wrap .footer_content .footer_company_block .footer_company_link img {
  width: 16px;
  margin: 0 0 0 4px;
}

@media only screen and (max-width: 640px) {
  .footer_wrap .footer_content .footer_company_block .footer_company_link img {
    width: 12px;
  }
}

.footer_wrap .footer_content .footer_company_block .footer_sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer_wrap .footer_content .footer_company_block .footer_sns_list .footer_sns_item {
  margin: 0 16px 0 0;
}

.footer_wrap .footer_content .footer_company_block .footer_sns_list .footer_sns_item:last-child {
  margin: 0 0 0 0;
}

.footer_wrap .footer_content .footer_company_block .footer_sns_list .footer_sns_item .footer_sns_link {
  display: block;
  width: 32px;
}

.footer_wrap .footer_content .footer_company_block .footer_sns_list .footer_sns_item .footer_sns_link img {
  width: 100%;
}

.footer_wrap .footer_content .footer_menu_block {
  width: 50%;
}

@media only screen and (max-width: 840px) {
  .footer_wrap .footer_content .footer_menu_block {
    width: 100%;
  }
}

.footer_wrap .footer_content .footer_menu_block .footer_menu_block_title {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .footer_wrap .footer_content .footer_menu_block .footer_menu_block_title {
    font-size: 18px;
    margin: 0 0 16px;
  }
}

.footer_wrap .footer_content .footer_menu_block .footer_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .footer_wrap .footer_content .footer_menu_block .footer_menu_list {
    margin: 0 0 24px;
  }
}

.footer_wrap .footer_content .footer_menu_block .footer_menu_list .footer_menu_item {
  margin: 0 32px 16px 0;
}

@media only screen and (max-width: 640px) {
  .footer_wrap .footer_content .footer_menu_block .footer_menu_list .footer_menu_item {
    margin: 0 24px 16px 0;
  }
}

.footer_wrap .footer_content .footer_menu_block .footer_menu_list .footer_menu_item .footer_menu_link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .footer_wrap .footer_content .footer_menu_block .footer_menu_list .footer_menu_item .footer_menu_link {
    font-size: 15px;
  }
}

.footer_wrap .footer_content .footer_menu_block .footer_menu_list .footer_menu_item .footer_menu_link:after {
  content: "";
  position: absolute;
  bottom: .5em;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 960px) {
  .footer_wrap .footer_content .footer_menu_block .footer_menu_list .footer_menu_item .footer_menu_link:hover:after {
    bottom: 0;
    opacity: 1;
  }
}

.footer_wrap .footer_content .footer_menu_block .footer_privacy_link {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  position: relative;
}

.footer_wrap .footer_content .footer_menu_block .footer_privacy_link:after {
  content: "";
  position: absolute;
  bottom: .5em;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 960px) {
  .footer_wrap .footer_content .footer_menu_block .footer_privacy_link:hover:after {
    bottom: 0;
    opacity: 1;
  }
}

.footer_copy_wrap {
  padding: 8px 0;
  background-color: #17191C;
}

.footer_copy_wrap .footer_copy {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  line-height: 1.5;
}

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

      content.scss

=======================*/
.contact {
  padding: 100px 0;
  background-image: url(../images/content/bg_contact.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 640px) {
  .contact {
    padding: 56px 0;
    background-position: center right 30%;
  }
}

.contact_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 2;
  margin: 0 0 48px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 640px) {
  .contact_text {
    font-size: 15px;
    margin: 0 0 32px;
  }
}

.contact_box_wrap .contact_box {
  padding: 40px 24px;
  background-color: #FFF;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box {
    padding: 24px 16px;
    margin: 0 0 24px;
  }
}

.contact_box_wrap .contact_box:last-child {
  margin: 0 0 0;
}

.contact_box_wrap .contact_box .contact_box_content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.contact_box_wrap .contact_box .contact_box_content .contact_box_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 30px;
  color: #122A5B;
  line-height: 1.5;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_box_title {
    font-size: 20px;
    margin: 0 0 16px;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_box_title img {
  width: 24px;
  margin: 0 12px 0 0;
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_box_title img {
    width: 16px;
    margin: 0 8px 0 0;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_box_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 24px;
}

@media only screen and (max-width: 840px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_box_btn_wrap {
    display: block;
  }
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_box_btn_wrap {
    margin: 0 0 16px;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_box_btn_wrap .contact_box_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 300px;
  height: 64px;
  border-radius: 40px;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  color: #FFF;
  line-height: 1.5;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin: 0 16px;
}

@media only screen and (max-width: 840px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_box_btn_wrap .contact_box_btn {
    margin: 0 auto 16px;
  }
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_box_btn_wrap .contact_box_btn {
    font-size: 20px;
    height: 56px;
    margin: 0 auto 8px;
  }
}

@media only screen and (max-width: 840px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_box_btn_wrap .contact_box_btn:last-child {
    margin: 0 auto 0;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_box_btn_wrap .contact_box_btn span {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 0 8px;
}

.contact_box_wrap .contact_box .contact_box_content .contact_box_btn_wrap .contact_box_btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#ffa63e), to(#ff2b2b));
  background: linear-gradient(90deg, #ffa63e 0%, #ff2b2b 100%);
  z-index: -1;
}

.contact_box_wrap .contact_box .contact_box_content .contact_box_btn_wrap .contact_box_btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, right top, left top, from(#ffa63e), to(#ff2b2b));
  background: linear-gradient(270deg, #ffa63e 0%, #ff2b2b 100%);
  opacity: 0;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
  z-index: -1;
}

@media only screen and (min-width: 960px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_box_btn_wrap .contact_box_btn:hover:after {
    opacity: 1;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_box_note {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #17191C;
  line-height: 2;
}

.contact_box_wrap .contact_box .contact_box_content .contact_box_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #17191C;
  line-height: 2;
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_box_text {
    font-size: 15px;
    margin: 0 0 16px;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list {
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_form_list {
    margin: 0 0 40px;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 0 32px;
}

@media only screen and (max-width: 840px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item {
    display: block;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item:last-child {
  margin: 0 0 0;
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item.f_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item.f_start .contact_form_item_title_block {
  padding: 16px 0 0;
}

@media only screen and (max-width: 840px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item.f_start .contact_form_item_title_block {
    padding: 0 0 0;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_title_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 300px;
  padding: 0 24px 0 0;
}

@media only screen and (max-width: 840px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_title_block {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 16px;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_title_block .contact_form_item_required {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #FF2F2F;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1;
  white-space: nowrap;
  margin: 0 14px 0 0;
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_title_block .contact_form_item_required {
    padding: 8px 12px;
    font-size: 13px;
    margin: 0 8px 0 0;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_title_block .contact_form_item_optional {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #888;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1;
  white-space: nowrap;
  margin: 0 14px 0 0;
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_title_block .contact_form_item_optional {
    padding: 8px 12px;
    font-size: 13px;
    margin: 0 8px 0 0;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_title_block .contact_form_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #17191C;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_title_block .contact_form_item_title {
    font-size: 15px;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block {
  width: calc(100% - 300px);
}

@media only screen and (max-width: 840px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block {
    width: 100%;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_select {
  width: 100%;
  padding: 16px 40px 16px 16px;
  background-color: #F2F3F6;
  border: 1px solid #E2E2E2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/content/icon_arrow_select.svg);
  background-repeat: no-repeat;
  background-size: 12px 6px;
  background-position: right 16px center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #9A9A9A;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_select {
    padding: 12px 36px 12px 12px;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_select.active {
  color: #17191C;
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_input_error {
  margin: 8px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #FF2F2F;
  line-height: 1.5;
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_input {
  width: 100%;
  padding: 16px 16px;
  background-color: #F2F3F6;
  border: 1px solid #E2E2E2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #17191C;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_input {
    padding: 12px 12px;
  }
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_input_note {
  margin: 8px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #17191C;
  line-height: 1.5;
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_name_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_name_wrap .contact_form_item_input {
  width: calc((100% - 16px) / 2);
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_textarea {
  width: 100%;
  height: 200px;
  resize: none;
  padding: 16px 16px;
  background-color: #F2F3F6;
  border: 1px solid #E2E2E2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #17191C;
  line-height: 1.5;
}

.contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_textarea.h_120 {
  height: 120px;
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box .contact_box_content .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_textarea {
    padding: 12px 12px;
  }
}

.contact_box_wrap .contact_box .contact_form_privacy_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #17191C;
  line-height: 1.5;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .contact_box_wrap .contact_box .contact_form_privacy_text {
    font-size: 14px;
    margin: 0 0 8px;
  }
}

.contact_box_wrap .contact_box .contact_form_privacy_text a {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #0575BE;
  text-decoration: underline;
}

.contact_box_wrap .contact_box .contact_form_submit_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 300px;
  height: 64px;
  border-radius: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 18px;
  color: #FFF;
  line-height: 1.5;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin: 0 auto;
}

.contact_box_wrap .contact_box .contact_form_submit_btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#ffa63e), to(#ff2b2b));
  background: linear-gradient(90deg, #ffa63e 0%, #ff2b2b 100%);
  z-index: -1;
}

.contact_box_wrap .contact_box .contact_form_submit_btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, right top, left top, from(#ffa63e), to(#ff2b2b));
  background: linear-gradient(270deg, #ffa63e 0%, #ff2b2b 100%);
  opacity: 0;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
  z-index: -1;
}

@media only screen and (min-width: 960px) {
  .contact_box_wrap .contact_box .contact_form_submit_btn:hover:after {
    opacity: 1;
  }
}

/*thanks*/
.thanks {
  padding: 100px 0;
  background-color: #FFF;
}

.thanks_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #17191C;
  line-height: 2;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  .thanks_text {
    font-size: 15px;
    margin: 0 0 40px;
  }
}

.contact_back_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 300px;
  height: 64px;
  border-radius: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  text-align: center;
  background-color: #122A5B;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .contact_back_btn:hover {
    opacity: 0.7;
  }
}

.contact_form_agree_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  line-height: 1.7;
  font-size: 14px;
  color: #17191C;
}

.contact_form_agree_checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact_form_agree_box {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  background: #FFF;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.contact_form_agree_checkbox:checked + .contact_form_agree_box {
  background: #F2F3F6;
  border-color: #E2E2E2;
}

.contact_form_agree_checkbox:checked + .contact_form_agree_box:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #FFA63E;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contact_form_agree_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #17191C;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .contact_form_agree_text {
    font-size: 14px;
  }
}

.contact_form_agree_text a {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #0575BE;
  text-decoration: underline;
}

.tab_section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* タブボタン全体 */
.tab_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 1px;
  width: 100%;
  max-width: 100%;
}

.tab_buttons::-webkit-scrollbar {
  display: none;
}

/* タブボタン */
.tab_button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #d9d9d9;
  border-bottom: none;
  background: #f5f5f5;
  color: #17191C;
  padding: 16px 16px;
  border-radius: 12px 12px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  -webkit-transition: background 0.3s, color 0.3s, border-color 0.3s;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.tab_button:hover {
  background: #ececec;
}

.tab_button.is-active {
  background: #fff;
  color: #122A5B;
  position: relative;
}

.tab_button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* コンテンツエリア */
.tab_contents {
  border: 1px solid #d9d9d9;
  border-top: none;
  background: #fff;
  border-radius: 0 0 12px 12px;
  padding: 32px;
}

/* 各コンテンツ */
.tab_content {
  display: none;
}

.tab_content.is-active {
  display: block;
}

/* タブの切り替え時に少しだけ自然に見せる */
.tab_content.is-active {
  -webkit-animation: fadeInTab 0.3s ease;
  animation: fadeInTab 0.3s ease;
}

@-webkit-keyframes fadeInTab {
  from {
    opacity: 0;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* スマホ対応 */
@media screen and (max-width: 640px) {
  .tab_buttons {
    gap: 4px;
  }
  .tab_button {
    padding: 12px 8px;
    font-size: 13px;
    border-radius: 10px 10px 0 0;
  }
  .tab_contents {
    padding: 20px 12px;
    border-radius: 0 0 10px 10px;
  }
}

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

      problems.scss

=======================*/
.problems_block {
  padding: 120px 0 120px;
  position: relative;
  background-color: #F2F3F6;
}

@media only screen and (max-width: 640px) {
  .problems_block {
    padding: 64px 0 56px;
  }
}

.problems_block .problems_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
}

.problems_block .problems_bg img {
  width: 100%;
  vertical-align: top;
}

.problems_block_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 40px;
  color: #122A5B;
  line-height: 1.5;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .problems_block_title {
    font-size: 30px;
    margin: 0 0 24px;
  }
}

.problems_block_title span {
  color: #FF2B2B;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #FFA63E), to(#FF2B2B));
  background: linear-gradient(90deg, #FFA63E 0, #FF2B2B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 44px;
}

@media only screen and (max-width: 640px) {
  .problems_block_title span {
    font-size: 34px;
  }
}

.problems_block_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #17191C;
  line-height: 2;
  margin: 0 0 100px;
}

@media only screen and (max-width: 640px) {
  .problems_block_text {
    font-size: 15px;
    margin: 0 0 48px;
  }
}

.problems_block_text a {
  color: #0575BE;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-decoration: underline;
}

.problems_block_text a img {
  width: 14px;
  margin: 0 4px;
}

.problems_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .problems_box_wrap {
    display: block;
  }
}

.problems_box_wrap .problems_box {
  width: calc((100% - 96px) / 3);
  position: relative;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 24px 20px 32px;
}

@media only screen and (max-width: 840px) {
  .problems_box_wrap .problems_box {
    width: 100%;
    margin: 0 0 32px;
  }
}

@media only screen and (max-width: 640px) {
  .problems_box_wrap .problems_box {
    padding: 20px 16px 24px;
  }
}

@media only screen and (max-width: 840px) {
  .problems_box_wrap .problems_box:last-child {
    margin: 0 0 0;
  }
}

.problems_box_wrap .problems_box:after {
  content: "";
  position: absolute;
  bottom: -39px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 77px;
  height: 40px;
  background-image: url(../images/content/img_problems_bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.problems_box_wrap .problems_box .problems_box_num {
  width: 64px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.problems_box_wrap .problems_box .problems_box_num img {
  width: 100%;
  vertical-align: top;
}

.problems_box_wrap .problems_box .problems_box_img {
  width: 100%;
  height: 164px;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .problems_box_wrap .problems_box .problems_box_img {
    margin: 0 0 16px;
  }
}

.problems_box_wrap .problems_box .problems_box_img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.problems_box_wrap .problems_box .problems_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 22px;
  color: #122A5B;
  line-height: 1.5;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .problems_box_wrap .problems_box .problems_box_title {
    margin: 0 0 16px;
  }
}

.problems_box_wrap .problems_box .problems_box_title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F9CF97));
  background: linear-gradient(transparent 60%, #F9CF97 60%);
}

.problems_box_wrap .problems_box .problems_box_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #17191C;
  line-height: 1.8;
}

.problems_box_wrap .problems_box .problems_box_text span {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.problems_solution {
  background: -webkit-gradient(linear, left top, left bottom, from(#122a5b), color-stop(32.51%, #56c5f6), color-stop(70.94%, #6ee7ff), to(#fff));
  background: linear-gradient(180deg, #122a5b 0%, #56c5f6 32.51%, #6ee7ff 70.94%, #fff 100%);
  position: relative;
  padding: 0 0 120px;
}

@media only screen and (max-width: 640px) {
  .problems_solution {
    padding: 0 0 64px;
  }
}

.problems_solution .problems_solution_top_img {
  width: 100%;
  position: relative;
  z-index: 2;
  margin: 0 0 100px;
}

@media only screen and (max-width: 640px) {
  .problems_solution .problems_solution_top_img {
    margin: 0 0 56px;
  }
}

.problems_solution .problems_solution_top_img img {
  width: 100%;
}

.problems_solution .problems_solution_bg_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
}

@media only screen and (max-width: 640px) {
  .problems_solution .problems_solution_bg_top {
    width: 60%;
  }
}

.problems_solution .problems_solution_bg_top img {
  width: 100%;
}

.problems_solution .problems_solution_bg_bottom {
  position: absolute;
  bottom: -120px;
  right: 0;
  width: 30%;
}

@media only screen and (max-width: 640px) {
  .problems_solution .problems_solution_bg_bottom {
    width: 60%;
  }
}

.problems_solution .problems_solution_bg_bottom img {
  width: 100%;
}

.solution_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .solution_box_wrap {
    display: block;
  }
}

.solution_box_wrap .solution_box {
  width: calc((100% - 96px) / 3);
  background-color: #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

@media only screen and (max-width: 840px) {
  .solution_box_wrap .solution_box {
    width: 100%;
    margin: 0 0 24px;
  }
}

@media only screen and (max-width: 840px) {
  .solution_box_wrap .solution_box:last-child {
    margin: 0 0 0;
  }
}

.solution_box_wrap .solution_box .solution_box_img {
  width: 100%;
  height: 180px;
  border-radius: 12px 12px 0 0;
}

.solution_box_wrap .solution_box .solution_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  border-radius: 12px 12px 0 0;
}

.solution_box_wrap .solution_box .solution_box_detail {
  padding: 20px 20px 32px;
}

@media only screen and (max-width: 640px) {
  .solution_box_wrap .solution_box .solution_box_detail {
    padding: 20px 16px 24px;
  }
}

.solution_box_wrap .solution_box .solution_box_detail .solution_box_icon {
  width: 32px;
  margin: 0 auto 12px;
}

@media only screen and (max-width: 640px) {
  .solution_box_wrap .solution_box .solution_box_detail .solution_box_icon {
    width: 24px;
    margin: 0 auto 4px;
  }
}

.solution_box_wrap .solution_box .solution_box_detail .solution_box_icon img {
  width: 100%;
}

.solution_box_wrap .solution_box .solution_box_detail .solution_box_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 22px;
  color: #122A5B;
  line-height: 1.5;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .solution_box_wrap .solution_box .solution_box_detail .solution_box_title {
    margin: 0 0 16px;
  }
}

.solution_box_wrap .solution_box .solution_box_detail .solution_box_title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F9B0AE));
  background: linear-gradient(transparent 60%, #F9B0AE 60%);
}

.solution_box_wrap .solution_box .solution_box_detail .solution_box_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #17191C;
  line-height: 1.8;
}

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

      feature.scss

=======================*/
.feature {
  padding: 100px 0 120px;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .feature {
    padding: 56px 0 64px;
  }
}

.feature_block_wrap .feature_block {
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .feature_block_wrap .feature_block {
    margin: 0 0 32px;
  }
}

.feature_block_wrap .feature_block:last-child {
  margin: 0 0 0;
}

.feature_block_wrap .feature_block .common_left_inner {
  position: relative;
  padding: 56px 0;
}

@media only screen and (max-width: 960px) {
  .feature_block_wrap .feature_block .common_left_inner {
    padding: 56px 16px 56px 0;
  }
}

@media only screen and (max-width: 640px) {
  .feature_block_wrap .feature_block .common_left_inner {
    padding: 32px 16px 32px 0;
  }
}

.feature_block_wrap .feature_block .common_left_inner .feature_block_left_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 70%;
  height: 100%;
  background-color: #F2F3F6;
}

@media only screen and (max-width: 960px) {
  .feature_block_wrap .feature_block .common_left_inner .feature_block_left_bg {
    width: 100%;
  }
}

.feature_block_wrap .feature_block .common_left_inner .feature_block_left_bg .feature_block_left_bg_img {
  position: absolute;
  top: -10px;
  left: 0;
  width: 80px;
}

@media only screen and (max-width: 640px) {
  .feature_block_wrap .feature_block .common_left_inner .feature_block_left_bg .feature_block_left_bg_img {
    width: 40px;
  }
}

.feature_block_wrap .feature_block .common_left_inner .feature_block_left_bg .feature_block_left_bg_img img {
  width: 100%;
}

.feature_block_wrap .feature_block .common_right_inner {
  position: relative;
  padding: 56px 0;
}

@media only screen and (max-width: 960px) {
  .feature_block_wrap .feature_block .common_right_inner {
    padding: 56px 0 56px 16px;
  }
}

@media only screen and (max-width: 640px) {
  .feature_block_wrap .feature_block .common_right_inner {
    padding: 32px 0 32px 16px;
  }
}

.feature_block_wrap .feature_block .common_right_inner .feature_block_right_bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 70%;
  height: 100%;
  background-color: #F2F3F6;
}

@media only screen and (max-width: 960px) {
  .feature_block_wrap .feature_block .common_right_inner .feature_block_right_bg {
    width: 100%;
  }
}

.feature_block_wrap .feature_block .common_right_inner .feature_block_right_bg_img {
  position: absolute;
  top: -10px;
  left: 0;
  width: 80px;
}

@media only screen and (max-width: 640px) {
  .feature_block_wrap .feature_block .common_right_inner .feature_block_right_bg_img {
    width: 40px;
  }
}

.feature_block_wrap .feature_block .common_right_inner .feature_block_right_bg_img img {
  width: 100%;
}

.feature_block_content {
  max-width: 1100px;
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 960px) {
  .feature_block_content {
    display: block;
    padding: 0 0 0 16px;
  }
}

.feature_block_content.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin: 0 auto 0 0;
}

@media only screen and (max-width: 960px) {
  .feature_block_content.reverse {
    padding: 0 16px 0 0;
  }
}

.feature_block_content.reverse .feature_block_content_detail {
  padding: 0 0 0 40px;
}

@media only screen and (max-width: 1200px) {
  .feature_block_content.reverse .feature_block_content_detail {
    padding: 0 16px 0 40px;
  }
}

@media only screen and (max-width: 960px) {
  .feature_block_content.reverse .feature_block_content_detail {
    padding: 0 0 0 0;
  }
}

.feature_block_content .feature_block_content_detail {
  width: 50%;
  padding: 0 40px 0 0;
}

@media only screen and (max-width: 1200px) {
  .feature_block_content .feature_block_content_detail {
    padding: 0 40px 0 16px;
  }
}

@media only screen and (max-width: 960px) {
  .feature_block_content .feature_block_content_detail {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 48px;
  }
}

@media only screen and (max-width: 640px) {
  .feature_block_content .feature_block_content_detail {
    margin: 0 0 24px;
  }
}

.feature_block_content .feature_block_content_detail .feature_block_content_title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .feature_block_content .feature_block_content_detail .feature_block_content_title_wrap {
    display: block;
    margin: 0 0 24px;
  }
}

.feature_block_content .feature_block_content_detail .feature_block_content_title_wrap .feature_block_content_title_num {
  width: 56px;
  margin: 0 40px 0 0;
  position: relative;
  text-align: center;
  color: #44ACEF;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #44ACEF), to(#122A5B));
  background: linear-gradient(90deg, #44ACEF 0, #122A5B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 1.3;
}

@media only screen and (max-width: 640px) {
  .feature_block_content .feature_block_content_detail .feature_block_content_title_wrap .feature_block_content_title_num {
    width: auto;
    margin: 0 0 4px 0;
    display: inline-block;
    text-align: left;
  }
}

.feature_block_content .feature_block_content_detail .feature_block_content_title_wrap .feature_block_content_title_num span {
  font-size: 40px;
}

@media only screen and (max-width: 640px) {
  .feature_block_content .feature_block_content_detail .feature_block_content_title_wrap .feature_block_content_title_num span {
    font-size: 28px;
  }
}

.feature_block_content .feature_block_content_detail .feature_block_content_title_wrap .feature_block_content_title_num:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -20px;
  width: 2px;
  height: 40px;
  background-color: #E2E2E2;
}

@media only screen and (max-width: 640px) {
  .feature_block_content .feature_block_content_detail .feature_block_content_title_wrap .feature_block_content_title_num:after {
    content: none;
  }
}

.feature_block_content .feature_block_content_detail .feature_block_content_title_wrap .feature_block_content_title {
  width: calc(100% - 96px);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 28px;
  color: #122A5B;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .feature_block_content .feature_block_content_detail .feature_block_content_title_wrap .feature_block_content_title {
    width: 100%;
    font-size: 24px;
  }
}

.feature_block_content .feature_block_content_detail .feature_block_content_title_wrap .feature_block_content_title span {
  border-bottom: 2px solid #122A5B;
}

.feature_block_content .feature_block_content_detail .feature_block_content_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #17191C;
  line-height: 2;
  margin: 0 0 24px;
}

.feature_block_content .feature_block_content_detail .feature_block_content_list {
  padding: 16px;
  background-color: #FFF;
  border-radius: 12px;
  border: 1px solid #E2E2E2;
}

@media only screen and (max-width: 640px) {
  .feature_block_content .feature_block_content_detail .feature_block_content_list {
    padding: 12px;
  }
}

.feature_block_content .feature_block_content_detail .feature_block_content_list .feature_block_content_item {
  margin: 0 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .feature_block_content .feature_block_content_detail .feature_block_content_list .feature_block_content_item {
    margin: 0 0 8px;
  }
}

.feature_block_content .feature_block_content_detail .feature_block_content_list .feature_block_content_item:last-child {
  margin: 0 0 0;
}

.feature_block_content .feature_block_content_detail .feature_block_content_list .feature_block_content_item .feature_block_content_item_icon {
  width: 16px;
  margin: 0 10px 0 0;
  padding: 6px 0 0;
}

.feature_block_content .feature_block_content_detail .feature_block_content_list .feature_block_content_item .feature_block_content_item_icon img {
  width: 100%;
}

.feature_block_content .feature_block_content_detail .feature_block_content_list .feature_block_content_item .feature_block_content_item_text {
  width: calc(100% - 26px);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #17191C;
  line-height: 1.8;
}

.feature_block_content .feature_block_content_detail .feature_block_content_list .feature_block_content_item .feature_block_content_item_text span {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.feature_block_content .feature_block_content_detail .feature_block_content_list .feature_block_content_item .feature_block_content_item_text .note {
  display: block;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.feature_block_content .feature_block_content_img {
  width: 50%;
  height: 330px;
  -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

@media only screen and (max-width: 960px) {
  .feature_block_content .feature_block_content_img {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 640px) {
  .feature_block_content .feature_block_content_img {
    height: 200px;
  }
}

.feature_block_content .feature_block_content_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  border-radius: 12px;
}

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

      price.scss

=======================*/
.price {
  padding: 100px 0;
  background-image: url(../images/content/bg_price.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media only screen and (max-width: 640px) {
  .price {
    padding: 56px 0;
  }
}

.price_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 30px;
  color: #122A5B;
  line-height: 1.5;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .price_title {
    font-size: 24px;
    margin: 0 0 16px;
  }
}

.price_title span {
  position: relative;
}

.price_title span::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #F68B02;
  border-radius: 50%;
}

@media only screen and (max-width: 640px) {
  .price_title span::before {
    top: -6px;
    width: 6px;
    height: 6px;
  }
}

.price_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #17191C;
  line-height: 2;
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .price_text {
    font-size: 15px;
    margin: 0 0 32px;
  }
}

.price_box_wrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 24px;
}

@media only screen and (max-width: 840px) {
  .price_box_wrap {
    display: block;
  }
}

@media only screen and (max-width: 640px) {
  .price_box_wrap {
    margin: 0 0 16px;
  }
}

.price_box_wrap .price_box {
  width: 100%;
}

.price_box_wrap .price_box .price_box_fukidashi {
  width: 100%;
  border-radius: 20px;
  background-color: #FFF;
  position: relative;
  padding: 16px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 22px;
  color: #122A5B;
  line-height: 1.5;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .price_box_wrap .price_box .price_box_fukidashi {
    margin: 0 0 24px;
    font-size: 18px;
    padding: 12px 16px;
  }
}

.price_box_wrap .price_box .price_box_fukidashi span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F9B0AE));
  background: linear-gradient(transparent 60%, #F9B0AE 60%);
}

.price_box_wrap .price_box .price_box_fukidashi:after {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  left: 40px;
  bottom: -16px;
  background-image: url(../images/content/img_price_fukidashi.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.price_box_wrap .price_box .price_box_main {
  background-color: #FFF;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.price_box_wrap .price_box .price_box_main .price_box_title {
  padding: 12px 32px 12px 48px;
  position: relative;
  border-radius: 12px 12px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #FFF;
  line-height: 1.5;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 640px) {
  .price_box_wrap .price_box .price_box_main .price_box_title {
    padding: 12px 16px 12px 32px;
    font-size: 20px;
  }
}

.price_box_wrap .price_box .price_box_main .price_box_title.rental {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #6EE7FF), to(#44ACEF));
  background: linear-gradient(90deg, #6EE7FF 0, #44ACEF 100%);
}

.price_box_wrap .price_box .price_box_main .price_box_title.buy {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #44ACEF), to(#122A5B));
  background: linear-gradient(90deg, #44ACEF 0, #122A5B 100%);
}

.price_box_wrap .price_box .price_box_main .price_box_title::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 640px) {
  .price_box_wrap .price_box .price_box_main .price_box_title::before {
    left: 16px;
  }
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail {
  padding: 20px 32px 24px;
}

@media only screen and (max-width: 640px) {
  .price_box_wrap .price_box .price_box_main .price_box_main_detail {
    padding: 20px 16px 24px;
  }
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_price {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
  color: #17191C;
  line-height: 1.2;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_price {
    font-size: 36px;
  }
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_price .text_b {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #17191C;
  line-height: 1.5;
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 640px) {
  .price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_price .text_b {
    font-size: 16px;
  }
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_price .text_s {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  color: #17191C;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_price .text_s {
    font-size: 13px;
  }
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_rental_table_wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E2E2;
  margin: 0 0 16px;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_rental_table {
  width: 100%;
  border-radius: 12px;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_rental_table tr th {
  background-clip: padding-box;
  background-color: #CDF6FF;
  padding: 12px;
  border-bottom: 1px solid #E2E2E2;
  border-right: 1px solid #E2E2E2;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #122A5B;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_rental_table tr th {
    font-size: 13px;
  }
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_rental_table tr th:last-child {
  border-right: none;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_rental_table tr td {
  background-clip: padding-box;
  padding: 12px;
  border-bottom: 1px solid #E2E2E2;
  border-right: 1px solid #E2E2E2;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_rental_table tr td:last-child {
  border-right: none;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_rental_table tr td.period {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #122A5B;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_rental_table tr td.period {
    font-size: 13px;
  }
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_rental_table tr td.price_b {
  text-align: right;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #17191C;
  line-height: 1.5;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_rental_table tr td.price_r {
  text-align: right;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FF2B2B;
  line-height: 1.5;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_rental_table tr:last-child td {
  border-bottom: none;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_check_list .price_box_main_check_item {
  margin: 0 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_check_list .price_box_main_check_item {
    margin: 0 0 8px;
  }
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_check_list .price_box_main_check_item:last-child {
  margin: 0 0 0;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_check_list .price_box_main_check_item .price_box_main_check_item_img {
  width: 16px;
  margin: 0 10px 0 0;
  padding: 2px 0 0;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_check_list .price_box_main_check_item .price_box_main_check_item_img img {
  width: 100%;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_check_list .price_box_main_check_item .price_box_main_check_item_text {
  width: calc(100% - 26px);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #17191C;
  line-height: 1.5;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_delivery_free {
  margin: 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background-color: #FF2B2B;
  border-radius: 12px;
  padding: 16px;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_delivery_free .price_box_main_delivery_free_img {
  width: 32px;
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 640px) {
  .price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_delivery_free .price_box_main_delivery_free_img {
    width: 24px;
    margin: 0 8px 0 0;
  }
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_delivery_free .price_box_main_delivery_free_img img {
  width: 100%;
}

.price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_delivery_free .price_box_main_delivery_free_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .price_box_wrap .price_box .price_box_main .price_box_main_detail .price_box_main_delivery_free .price_box_main_delivery_free_title {
    font-size: 16px;
  }
}

.price_delivery_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #17191C;
  line-height: 2;
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .price_delivery_text {
    margin: 0 0 40px;
  }
}

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

      voice.scss

=======================*/
.voice {
  background-color: #FFF;
  position: relative;
  padding: 100px 0;
}

@media only screen and (max-width: 640px) {
  .voice {
    padding: 56px 0;
  }
}

.voice .bg_voice {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 376px;
  left: 0;
  top: 0;
}

.voice .bg_voice img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.voice_slide_wrap {
  position: relative;
}

.voice_slide_wrap .voice_slide_list .voice_slide_item {
  margin: 0 20px;
  padding: 14px 0 0;
}

@media only screen and (max-width: 840px) {
  .voice_slide_wrap .voice_slide_list .voice_slide_item {
    margin: 0 8px;
  }
}

.voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner {
  background-color: #FFF;
  border-radius: 12px;
  border: 1px solid #E2E2E2;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 32px 40px 40px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner {
    padding: 32px 24px 24px;
  }
}

.voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_icon {
  position: absolute;
  top: -14px;
  right: 20px;
  width: 52px;
}

@media only screen and (max-width: 640px) {
  .voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_icon {
    width: 48px;
  }
}

.voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_icon img {
  width: 100%;
}

.voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_num {
  position: absolute;
  top: 32px;
  left: 40px;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  color: rgba(18, 42, 91, 0.35);
}

@media only screen and (max-width: 640px) {
  .voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_num {
    top: 12px;
    left: 16px;
    font-size: 16px;
  }
}

.voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_num span {
  font-size: 40px;
}

@media only screen and (max-width: 640px) {
  .voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_num span {
    font-size: 28px;
  }
}

.voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_img {
  width: 156px;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_img {
    width: 96px;
  }
}

.voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_img img {
  width: 100%;
}

.voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_job {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 3px;
  border: 1px solid #E2E2E2;
  background-color: #F2F3F6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #818181;
  line-height: 1;
  margin: -8px 0 16px;
  position: relative;
}

.voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #122A5B;
  line-height: 1.5;
  margin: 0 0 24px;
  padding: 0 0 20px;
  border-bottom: 1px solid #E2E2E2;
}

@media only screen and (max-width: 640px) {
  .voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_title {
    font-size: 20px;
    margin: 0 0 16px;
    padding: 0 0 8px;
  }
}

.voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F9CF97));
  background: linear-gradient(transparent 60%, #F9CF97 60%);
}

.voice_slide_wrap .voice_slide_list .voice_slide_item .voice_slide_item_inner .voice_slide_item_text {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #17191C;
  line-height: 2;
}

.voice_slide_wrap .slick-dots li.slick-active button:before {
  background-color: #122A5B;
}

.voice_slide_wrap .slick-dots li button:before {
  background-color: #B2B2B2;
}

.voice_slide_wrap .slick-dots {
  bottom: -32px;
}

.voice_slide_wrap .custom-arrow {
  width: 64px;
  height: 64px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 640px) {
  .voice_slide_wrap .custom-arrow {
    width: 40px;
    height: 40px;
  }
}

.voice_slide_wrap .custom-arrow img {
  width: 100%;
}

.voice_slide_wrap .slick-prev {
  left: 23%;
  z-index: 10;
}

@media only screen and (max-width: 840px) {
  .voice_slide_wrap .slick-prev {
    left: 13%;
  }
}

@media only screen and (max-width: 640px) {
  .voice_slide_wrap .slick-prev {
    left: 2%;
  }
}

.voice_slide_wrap .slick-next {
  right: 23%;
  z-index: 10;
}

@media only screen and (max-width: 840px) {
  .voice_slide_wrap .slick-next {
    right: 13%;
  }
}

@media only screen and (max-width: 640px) {
  .voice_slide_wrap .slick-next {
    right: 2%;
  }
}

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

      usecase.scss

=======================*/
.usecase {
  background-color: #F2F3F6;
}

.usecase_bg_top {
  width: 100%;
}

.usecase_bg_top img {
  width: 100%;
  vertical-align: top;
}

.usecase_bg_bottom {
  width: 100%;
}

.usecase_bg_bottom img {
  width: 100%;
  vertical-align: bottom;
}

.usecase_content {
  padding: 40px 0 80px;
}

@media only screen and (max-width: 640px) {
  .usecase_content {
    padding: 32px 0 40px;
  }
}

.usecase_block_wrap .usecase_block {
  margin: 0 0 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media only screen and (max-width: 960px) {
  .usecase_block_wrap .usecase_block {
    display: block;
  }
}

@media only screen and (max-width: 640px) {
  .usecase_block_wrap .usecase_block {
    margin: 0 0 24px;
  }
}

.usecase_block_wrap .usecase_block:last-child {
  margin: 0 0 0;
}

.usecase_block_wrap .usecase_block .usecase_block_detail {
  width: 460px;
}

@media only screen and (max-width: 960px) {
  .usecase_block_wrap .usecase_block .usecase_block_detail {
    width: 100%;
    margin: 0 0 24px 0;
  }
}

.usecase_block_wrap .usecase_block .usecase_block_detail .usecase_block_num {
  display: inline-block;
  color: #44ACEF;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #44ACEF), to(#122A5B));
  background: linear-gradient(90deg, #44ACEF 0, #122A5B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .usecase_block_wrap .usecase_block .usecase_block_detail .usecase_block_num {
    font-size: 16px;
    margin: 0 0 4px;
  }
}

.usecase_block_wrap .usecase_block .usecase_block_detail .usecase_block_num span {
  font-size: 40px;
}

@media only screen and (max-width: 640px) {
  .usecase_block_wrap .usecase_block .usecase_block_detail .usecase_block_num span {
    font-size: 28px;
  }
}

.usecase_block_wrap .usecase_block .usecase_block_detail .usecase_block_place {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #44ACEF;
  line-height: 1.5;
  padding: 0 0 0 16px;
  position: relative;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .usecase_block_wrap .usecase_block .usecase_block_detail .usecase_block_place {
    font-size: 16px;
    margin: 0 0 8px;
  }
}

.usecase_block_wrap .usecase_block .usecase_block_detail .usecase_block_place:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #6EE7FF;
}

@media only screen and (max-width: 640px) {
  .usecase_block_wrap .usecase_block .usecase_block_detail .usecase_block_place:before {
    top: 9px;
  }
}

.usecase_block_wrap .usecase_block .usecase_block_detail .usecase_block_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 28px;
  color: #122A5B;
  line-height: 1.5;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .usecase_block_wrap .usecase_block .usecase_block_detail .usecase_block_title {
    font-size: 24px;
    margin: 0 0 16px;
  }
}

.usecase_block_wrap .usecase_block .usecase_block_detail .usecase_block_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #17191C;
  line-height: 2;
}

.usecase_block_wrap .usecase_block .usecase_block_img {
  width: calc(100% - 508px);
}

@media only screen and (max-width: 960px) {
  .usecase_block_wrap .usecase_block .usecase_block_img {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
}

.usecase_block_wrap .usecase_block .usecase_block_img img {
  width: 100%;
}

.usecase_block_wrap .usecase_block:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.usecase_block_wrap .usecase_block:nth-of-type(2n) .usecase_block_detail .usecase_block_num {
  display: inline-block;
  color: #FF2B2B;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #FFA63E), to(#FF2B2B));
  background: linear-gradient(90deg, #FFA63E 0, #FF2B2B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .usecase_block_wrap .usecase_block:nth-of-type(2n) .usecase_block_detail .usecase_block_num {
    font-size: 16px;
    margin: 0 0 4px;
  }
}

.usecase_block_wrap .usecase_block:nth-of-type(2n) .usecase_block_detail .usecase_block_num span {
  font-size: 40px;
}

@media only screen and (max-width: 640px) {
  .usecase_block_wrap .usecase_block:nth-of-type(2n) .usecase_block_detail .usecase_block_num span {
    font-size: 28px;
  }
}

.usecase_block_wrap .usecase_block:nth-of-type(2n) .usecase_block_detail .usecase_block_place {
  color: #F78C02;
}

.usecase_block_wrap .usecase_block:nth-of-type(2n) .usecase_block_detail .usecase_block_place:before {
  background-color: #FFA63E;
}

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

      fv.scss

=======================*/
.fv_block {
  background-image: url(../images/content/bg_fv.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: calc(100vh - 96px);
}

@media only screen and (max-width: 1300px) {
  .fv_block {
    min-height: calc(100vh - 72px);
  }
}

@media only screen and (max-width: 640px) {
  .fv_block {
    background-image: url(../images/content/bg_fv_sp.png);
  }
}

.fv_block .common_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  min-height: calc(100vh - 96px);
}

@media only screen and (max-width: 1300px) {
  .fv_block .common_inner {
    min-height: calc(100vh - 72px);
  }
}

.fv_block_content {
  padding: 64px 0;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media only screen and (max-width: 840px) {
  .fv_block_content {
    display: block;
  }
}

@media only screen and (max-width: 640px) {
  .fv_block_content {
    padding: 48px 0;
  }
}

.fv_block_content .fv_block_content_detail {
  width: 50%;
}

@media only screen and (max-width: 840px) {
  .fv_block_content .fv_block_content_detail {
    width: 100%;
    margin: 0 0 32px;
  }
}

.fv_block_content .fv_block_content_detail .fv_block_content_sub_text {
  padding: 0 0 0 12px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .fv_block_content .fv_block_content_detail .fv_block_content_sub_text {
    font-size: 14px;
  }
}

.fv_block_content .fv_block_content_detail .fv_block_content_sub_text:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #44ACEF;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.fv_block_content .fv_block_content_detail .fv_block_content_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 40px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .fv_block_content .fv_block_content_detail .fv_block_content_title {
    font-size: 30px;
  }
}

.fv_block_content .fv_block_content_detail .fv_block_content_title span {
  color: #6EE7FF;
}

.fv_block_content .fv_block_content_detail .fv_block_content_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  color: #FFF;
  line-height: 2;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .fv_block_content .fv_block_content_detail .fv_block_content_text {
    font-size: 14px;
    margin: 0 0 16px;
  }
}

.fv_block_content .fv_block_content_detail .fv_block_content_point_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 28px;
}

@media only screen and (max-width: 640px) {
  .fv_block_content .fv_block_content_detail .fv_block_content_point_list {
    margin: 0 0 12px;
  }
}

.fv_block_content .fv_block_content_detail .fv_block_content_point_list .fv_block_content_point_item {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #FFF;
  border-radius: 4px;
  border: 2px solid #122A5B;
  margin: 0 12px 12px 0;
}

.fv_block_content .fv_block_content_detail .fv_block_content_point_list .fv_block_content_point_item:last-child {
  margin: 0 0 0 0;
}

.fv_block_content .fv_block_content_detail .fv_block_content_point_list .fv_block_content_point_item .fv_block_content_point_item_content {
  text-align: center;
}

.fv_block_content .fv_block_content_detail .fv_block_content_point_list .fv_block_content_point_item .fv_block_content_point_item_content .fv_block_content_point_item_img {
  height: 32px;
  width: auto;
  margin: 0 auto 8px;
}

.fv_block_content .fv_block_content_detail .fv_block_content_point_list .fv_block_content_point_item .fv_block_content_point_item_content .fv_block_content_point_item_img img {
  height: 100%;
}

.fv_block_content .fv_block_content_detail .fv_block_content_point_list .fv_block_content_point_item .fv_block_content_point_item_content .fv_block_content_point_item_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #122A5B;
  line-height: 1.5;
}

.fv_block_content .fv_block_content_detail .fv_block_content_point_list .fv_block_content_point_item .fv_block_content_point_item_content .fv_block_content_point_item_title span {
  font-size: 11px;
}

.fv_block_content .fv_block_content_detail .fv_block_contact_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 300px;
  height: 64px;
  border-radius: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.fv_block_content .fv_block_content_detail .fv_block_contact_btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#ffa63e), to(#ff2b2b));
  background: linear-gradient(90deg, #ffa63e 0%, #ff2b2b 100%);
  z-index: -1;
}

.fv_block_content .fv_block_content_detail .fv_block_contact_btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, right top, left top, from(#ffa63e), to(#ff2b2b));
  background: linear-gradient(270deg, #ffa63e 0%, #ff2b2b 100%);
  opacity: 0;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
  z-index: -1;
}

@media only screen and (min-width: 960px) {
  .fv_block_content .fv_block_content_detail .fv_block_contact_btn:hover:after {
    opacity: 1;
  }
}

.fv_block_content .fv_block_content_img_wrap {
  width: 50%;
  position: relative;
  padding: 0 0 24px 0;
}

@media only screen and (max-width: 840px) {
  .fv_block_content .fv_block_content_img_wrap {
    width: 100%;
    max-width: 500px;
    margin: 0 0 0 auto;
  }
}

@media only screen and (max-width: 640px) {
  .fv_block_content .fv_block_content_img_wrap {
    padding: 0 0 0 0;
  }
}

.fv_block_content .fv_block_content_img_wrap .fv_block_content_img {
  width: 100%;
  max-width: 260px;
  margin: 0 0 0 auto;
}

@media only screen and (max-width: 640px) {
  .fv_block_content .fv_block_content_img_wrap .fv_block_content_img {
    max-width: 120px;
  }
}

.fv_block_content .fv_block_content_img_wrap .fv_block_content_img img {
  width: 100%;
}

.fv_block_content .fv_block_content_img_wrap .fv_block_content_img_logo_wrap {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 72%;
}

.fv_block_content .fv_block_content_img_wrap .fv_block_content_img_logo_wrap .fv_block_content_img_logo_img {
  width: 100%;
  margin: 0 0 14px;
}

.fv_block_content .fv_block_content_img_wrap .fv_block_content_img_logo_wrap .fv_block_content_img_logo_img img {
  width: 100%;
  -webkit-filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.7));
}

.fv_block_content .fv_block_content_img_wrap .fv_block_content_img_logo_wrap .fv_block_content_img_logo_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 54px;
  color: #FFF;
  line-height: 1.5;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 640px) {
  .fv_block_content .fv_block_content_img_wrap .fv_block_content_img_logo_wrap .fv_block_content_img_logo_title {
    font-size: 32px;
    padding: 0 0 0 20px;
  }
}

.fv_block_content .fv_block_content_img_wrap .fv_block_content_img_logo_wrap .fv_block_content_img_logo_title span {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 50px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .fv_block_content .fv_block_content_img_wrap .fv_block_content_img_logo_wrap .fv_block_content_img_logo_title span {
    font-size: 30px;
  }
}

/* ======================= BASE ====== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

html, body {
  margin: 0;
  height: 100%;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.mb_0 {
  margin-bottom: 0;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mt_0 {
  margin-top: 0;
}

.mt_10 {
  margin-top: 10px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_50 {
  margin-top: 50px;
}

.mt_80 {
  margin-top: 80px;
}

.mr_5 {
  margin-right: 5px;
}

.mr_20 {
  margin-right: 20px;
}

@media only screen and (max-width: 999px) {
  .sp_mb_10 {
    margin-bottom: 10px;
  }
}

.common_pc {
  display: block;
}

@media only screen and (max-width: 960px) {
  .common_pc {
    display: none;
  }
}

.common_sp {
  display: none;
}

@media only screen and (max-width: 960px) {
  .common_sp {
    display: block;
  }
}

@media only screen and (max-width: 840px) {
  .common_pc840 {
    display: none;
  }
}

.common_sp840 {
  display: none;
}

@media only screen and (max-width: 840px) {
  .common_sp840 {
    display: block;
  }
}

.common_pc640 {
  display: block;
}

.common_pc640.height_100 {
  height: 100%;
}

@media only screen and (max-width: 640px) {
  .common_pc640 {
    display: none !important;
  }
}

.commom_pc1200 {
  display: block;
}

@media only screen and (max-width: 1200px) {
  .commom_pc1200 {
    display: none;
  }
}

.common_sp640 {
  display: none;
}

@media only screen and (max-width: 640px) {
  .common_sp640 {
    display: block !important;
  }
}

.mb_0 {
  margin-bottom: 0;
}

body {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

body ul {
  list-style: none;
}

body a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*
@media only screen and (min-width:960px){
  body a:hover{
    opacity: 0.7;
  }
}
*/
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
