@charset "UTF-8";
/* ======================= VARIABLE ====== */
/*サイドバー系*/
/*グラデーション*/
/* ======================= IMPORT ====== */
/*=================

      mixin.scss

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

      common.scss

=======================*/
.common_wrap {
  padding: 0 1.5rem;
}

.common_wrap_s {
  padding: 0 1rem;
}

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

.common_inner_m {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}

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

.common_inner_ss {
  max-width: 768px;
  margin: 0 auto;
  position: relative;
}

.common_inner_sss {
  max-width: 576px;
  margin: 0 auto;
  position: relative;
}

.common_sec_title_wrap {
  margin: 0 0 5rem;
  text-align: center;
}

.common_sec_title_wrap .common_sec_title_en {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.75rem;
  color: #2273C3;
  line-height: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.common_sec_title_wrap .common_sec_title_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 3rem;
  color: #20476F;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 3.5rem;
  position: relative;
}

@media (max-width: 640px) {
  .common_sec_title_wrap .common_sec_title_ja {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.common_sec_title_wrap .common_sec_title_ja span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.common_sec_title_wrap .common_sec_title_ja:after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 1px;
  background-color: #2273C3;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -1.5rem;
}

.common_sec_title_wrap .common_sec_sub_title_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  color: #20476F;
  line-height: 2rem;
  margin: 0 0 1rem;
}

@media (max-width: 640px) {
  .common_sec_title_wrap .common_sec_sub_title_ja {
    font-size: 1.25rem;
    line-height: 1.625;
  }
}

.common_sec_title_wrap .common_sec_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #627384;
  line-height: 1.625;
}

.common_sec_title_wrap .common_sec_text span {
  color: #2273C3;
}

@-webkit-keyframes scroll-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes scroll-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.common_back_btn {
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 2.5rem;
}

.common_back_btn .common_back_btn_icon {
  width: 0.75rem;
  height: 0.75rem;
  background-image: url(../images/common/icon_back_arrow_m.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 0.5rem 0 0;
}

.common_back_btn .common_back_btn_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.25rem;
  letter-spacing: 0.025em;
}

@media only screen and (min-width: 960px) {
  .common_back_btn:hover .common_back_btn_icon {
    background-image: url(../images/common/icon_back_arrow_p.svg);
  }
  .common_back_btn:hover .common_back_btn_text {
    color: #20476F;
  }
}

/* ========================================
   original-like scroll animation
======================================== */
/* 元サイト寄せの初期状態 */
.js-inview {
  opacity: 0;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

/* 画面に入ったら再生 */
.js-inview.is-inview {
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

/* 下から */
.js-fade-up {
  -webkit-animation-name: scroll-fade-in;
  animation-name: scroll-fade-in;
}

/* 左から */
.js-fade-left {
  -webkit-animation-name: scroll-fade-in-left;
  animation-name: scroll-fade-in-left;
}

/* 右から */
.js-fade-right {
  -webkit-animation-name: scroll-fade-in-right;
  animation-name: scroll-fade-in-right;
}

/* 元サイトと同じ距離感 */
@keyframes scroll-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes scroll-fade-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes scroll-fade-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes scroll-fade-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes scroll-fade-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* 元サイトの delay 再現 */
.delay-0 {
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

.delay-1 {
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}

.delay-2 {
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}

.delay-3 {
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}

/* 念のため */
@media (prefers-reduced-motion: reduce) {
  .js-inview {
    opacity: 1;
    -webkit-animation: none !important;
    animation: none !important;
  }
}

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

      header.scss

=======================*/
/*スクロールバー*/
/* 上部の細いレール */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 4px;
  /* h-1 相当 */
  background: rgba(255, 255, 255, 0.18);
  /* bg-border/30 相当（好みで調整） */
}

/* 伸びるバー */
.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: -webkit-gradient(linear, left top, right top, from(#2273C3), to(#20476F));
  background: linear-gradient(to right, #2273C3, #20476F);
  /* 好みの色に */
  -webkit-transition: width 150ms ease-out;
  transition: width 150ms ease-out;
  /* duration-150 ease-out */
}

.header_wrap {
  width: 100%;
  height: 97px;
}

@media only screen and (max-width: 1024px) {
  .header_wrap {
    height: 86px;
  }
}

.pc_header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 97px;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(218, 224, 231, 0.3);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

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

.pc_header .pc_header_content {
  width: 100%;
  max-width: 1400px;
  height: 97px;
  margin: 0 auto;
  padding: 12px 24px;
  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;
  gap: 12px;
}

.pc_header .pc_header_content .pc_header_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.pc_header .pc_header_content .pc_header_logo img {
  height: 72px;
  width: auto;
  display: block;
}

.pc_header .pc_header_content .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: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.5rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
}

.pc_header .pc_header_content .pc_header_menu_list .pc_header_menu_link {
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.75em;
  color: rgba(32, 71, 111, 0.7);
  letter-spacing: 0.025em;
  line-height: 1rem;
}

@media only screen and (min-width: 960px) {
  .pc_header .pc_header_content .pc_header_menu_list .pc_header_menu_link:hover {
    color: #20476F;
  }
}

.pc_header .pc_header_content .pc_header_btn_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 0.75rem;
}

.pc_header .pc_header_content .pc_header_btn_block .pc_header_lang_list .pc_header_lang_item {
  display: none;
}

.pc_header .pc_header_content .pc_header_btn_block .pc_header_lang_list .pc_header_lang_item.active {
  display: block;
}

.pc_header .pc_header_content .pc_header_btn_block .pc_header_lang_list .pc_header_lang_item .pc_header_lang_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: .375rem;
  padding-left: .75rem;
  padding-right: .75rem;
  height: 2.25rem;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(32, 71, 111, 0.7);
  line-height: 1rem;
  background-color: #FFF;
  border-radius: 6px;
  white-space: nowrap;
}

.pc_header .pc_header_content .pc_header_btn_block .pc_header_lang_list .pc_header_lang_item .pc_header_lang_link img {
  width: 1rem;
  opacity: 0.75;
}

@media only screen and (min-width: 960px) {
  .pc_header .pc_header_content .pc_header_btn_block .pc_header_lang_list .pc_header_lang_item .pc_header_lang_link:hover {
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    color: #20476F;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    background-color: rgba(32, 71, 111, 0.05);
  }
  .pc_header .pc_header_content .pc_header_btn_block .pc_header_lang_list .pc_header_lang_item .pc_header_lang_link:hover img {
    opacity: 1;
  }
}

.pc_header .pc_header_content .pc_header_btn_block .pc_header_login_btn {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #2273C3;
  line-height: 1.25rem;
  letter-spacing: 0.025em;
  padding: 0.5rem 1.25rem;
  background-color: #FFF;
  border: 1px solid #2273C3;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 0.5rem;
  border-radius: 6px;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
}

@media only screen and (min-width: 960px) {
  .pc_header .pc_header_content .pc_header_btn_block .pc_header_login_btn:hover {
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    color: #FFF;
    background-color: #2273C3;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}

.pc_header .pc_header_content .pc_header_btn_block .pc_header_contact_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  /* gap-2 */
  white-space: nowrap;
  border-radius: 6px;
  /* rounded-md (8px - 2px) */
  height: 40px;
  /* h-10 */
  padding: 0.5rem 1.25rem;
  /* py-2 px-6 */
  background: #20476F;
  /* bg-primary */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #FFF;
  font-size: 0.875rem;
  /* text-sm */
  line-height: 1.25rem;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  /* shadow-soft */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 6px;
}

@media only screen and (min-width: 960px) {
  .pc_header .pc_header_content .pc_header_btn_block .pc_header_contact_btn:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    background: rgba(32, 71, 111, 0.9);
    /* hover:bg-primary/90 */
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
}

.sp_header {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .sp_header {
    display: block;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 86px;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(218, 224, 231, 0.3);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

.sp_header .sp_header_content {
  padding: 0.75rem 1.5rem;
  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;
}

.sp_header .sp_header_content .sp_header_logo {
  display: block;
  height: 62px;
}

.sp_header .sp_header_content .sp_header_logo img {
  height: 100%;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap {
  width: 44px;
  height: 44px;
  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;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn {
  width: 24px;
  /* svg width */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  /* 線と線の間隔 */
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn span {
  display: block;
  width: 100%;
  height: 2px;
  /* stroke-width="2" */
  background: #20476F;
  border-radius: 2px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap.is-open .sp_header_menu_btn span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap.is-open .sp_header_menu_btn span:nth-child(2) {
  opacity: 0;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap.is-open .sp_header_menu_btn span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.sp_header_menu {
  display: none;
  position: fixed;
  z-index: 100;
  top: 86px;
  left: 0;
  width: 100%;
  height: calc(100% - 86px);
  overflow-y: scroll;
  border-top: 1px solid rgba(218, 224, 231, 0.3);
  background-color: #FFF;
}

.sp_header_menu .sp_header_menu_inner {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list .sp_header_menu_item .sp_header_menu_link {
  display: block;
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: rgba(32, 71, 111, 0.8);
  line-height: 1.5rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_block {
  padding: 1rem 0 0 0;
  border-top: 1px solid rgba(218, 224, 231, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_block .sp_header_lang_list .sp_header_lang_item {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_block .sp_header_lang_list .sp_header_lang_item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_block .sp_header_lang_list .sp_header_lang_item .sp_header_lang_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.25rem;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_block .sp_header_lang_list .sp_header_lang_item .sp_header_lang_item_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.375rem;
  height: 2.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: .75rem;
  color: rgba(32, 71, 111, 0.7);
  line-height: 1rem;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  white-space: nowrap;
  padding: 0 0.75em;
  border-radius: 6px;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_block .sp_header_lang_list .sp_header_lang_item .sp_header_lang_item_link img {
  width: 1rem;
  opacity: 0.7;
}

@media only screen and (min-width: 960px) {
  .sp_header_menu .sp_header_menu_inner .sp_header_btn_block .sp_header_lang_list .sp_header_lang_item .sp_header_lang_item_link:hover {
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    color: #20476F;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    background-color: rgba(32, 71, 111, 0.05);
  }
  .sp_header_menu .sp_header_menu_inner .sp_header_btn_block .sp_header_lang_list .sp_header_lang_item .sp_header_lang_item_link:hover img {
    opacity: 1;
  }
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_block .sp_header_btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_block .sp_header_btn_list .sp_header_btn_item .sp_header_login_btn {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #2273C3;
  line-height: 1.25rem;
  padding: 0.5rem 1rem;
  background-color: #FFF;
  border: 1px solid #2273C3;
  border-radius: 6px;
  white-space: nowrap;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media only screen and (min-width: 960px) {
  .sp_header_menu .sp_header_menu_inner .sp_header_btn_block .sp_header_btn_list .sp_header_btn_item .sp_header_login_btn:hover {
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    color: #FFF;
    background-color: #2273C3;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_block .sp_header_btn_list .sp_header_btn_item .sp_header_application_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;
  gap: 0.5rem;
  /* gap-2 */
  white-space: nowrap;
  border-radius: 6px;
  /* rounded-md (8px - 2px) */
  height: 40px;
  /* h-10 */
  padding: 0.5rem 1.25rem;
  /* py-2 px-6 */
  background: #20476F;
  /* bg-primary */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #FFF;
  font-size: 0.875rem;
  /* text-sm */
  line-height: 1.25rem;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  /* shadow-soft */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  border-radius: 6px;
}

@media only screen and (min-width: 960px) {
  .sp_header_menu .sp_header_menu_inner .sp_header_btn_block .sp_header_btn_list .sp_header_btn_item .sp_header_application_btn:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    background: rgba(32, 71, 111, 0.9);
    /* hover:bg-primary/90 */
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
}

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

      footer.scss

=======================*/
footer {
  background-color: #20476F;
}

.footer_top_block {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer_top_block .footer_top_block_partners_title {
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 2rem;
}

@media only screen and (max-width: 840px) {
  .footer_top_block .footer_top_block_partners_title {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.footer_top_block .footer_top_block_partners_list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 0 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0 0 2rem;
}

.footer_top_block .footer_top_block_partners_list .footer_top_block_partners_item .footer_top_block_partners_link {
  display: block;
  text-align: center;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
}

@media only screen and (min-width: 960px) {
  .footer_top_block .footer_top_block_partners_list .footer_top_block_partners_item .footer_top_block_partners_link:hover {
    opacity: 0.8;
  }
}

.footer_top_block .footer_top_block_partners_list .footer_top_block_partners_item .footer_top_block_partners_link .footer_top_block_partners_link_img {
  padding: 0.75em;
  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: 10rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  /* shadow-soft */
  border-radius: 0.75rem;
  margin: 0 auto 0.75rem;
}

.footer_top_block .footer_top_block_partners_list .footer_top_block_partners_item .footer_top_block_partners_link .footer_top_block_partners_link_img img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer_top_block .footer_top_block_partners_list .footer_top_block_partners_item .footer_top_block_partners_link .footer_top_block_partners_link_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.25rem;
}

.footer_top_block .footer_top_block_text_wrap {
  text-align: center;
}

.footer_top_block .footer_top_block_text_wrap .footer_top_block_text01 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  font-style: italic !important;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.625;
  margin: 0 0 0.75rem;
}

.footer_top_block .footer_top_block_text_wrap .footer_top_block_text01 span {
  color: rgba(255, 255, 255, 0.4);
}

.footer_top_block .footer_top_block_text_wrap .footer_top_block_text02 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1rem;
}

.footer_bottom_block {
  padding: 4rem 0;
}

.footer_bottom_block .footer_bottom_menu_content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
  margin: 0 0 2rem;
  padding: 0 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 840px) {
  .footer_bottom_block .footer_bottom_menu_content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.footer_bottom_block .footer_bottom_menu_content .footer_bottom_logo_block {
  grid-column: span 2 / span 2;
}

@media only screen and (max-width: 840px) {
  .footer_bottom_block .footer_bottom_menu_content .footer_bottom_logo_block {
    grid-column: span 1 / span 1;
  }
}

.footer_bottom_block .footer_bottom_menu_content .footer_bottom_logo_block .footer_bottom_logo_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1rem;
}

@media only screen and (min-width: 960px) {
  .footer_bottom_block .footer_bottom_menu_content .footer_bottom_logo_block .footer_bottom_logo_link:hover .footer_bottom_logo_link_text {
    color: #2273C3;
  }
  .footer_bottom_block .footer_bottom_menu_content .footer_bottom_logo_block .footer_bottom_logo_link:hover .footer_bottom_logo_link_text span {
    color: #2273C3;
  }
}

.footer_bottom_block .footer_bottom_menu_content .footer_bottom_logo_block .footer_bottom_logo_link .footer_bottom_logo_link_img {
  display: block;
  width: 3rem;
}

.footer_bottom_block .footer_bottom_menu_content .footer_bottom_logo_block .footer_bottom_logo_link .footer_bottom_logo_link_img img {
  width: 100%;
}

.footer_bottom_block .footer_bottom_menu_content .footer_bottom_logo_block .footer_bottom_logo_link .footer_bottom_logo_link_text {
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  color: #FFF;
  line-height: 1.5rem;
}

.footer_bottom_block .footer_bottom_menu_content .footer_bottom_logo_block .footer_bottom_logo_link .footer_bottom_logo_link_text span {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 0.75rem;
  letter-spacing: 0.025em;
}

.footer_bottom_block .footer_bottom_menu_content .footer_bottom_logo_block .footer_bottom_logo_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.625;
  max-width: 28rem;
}

.footer_bottom_block .footer_bottom_menu_content .footer_bottom_logo_block .footer_bottom_logo_text a {
  color: #2273C3;
}

@media only screen and (min-width: 960px) {
  .footer_bottom_block .footer_bottom_menu_content .footer_bottom_logo_block .footer_bottom_logo_text a:hover {
    text-decoration: underline;
  }
}

.footer_bottom_block .footer_bottom_menu_content .footer_bottom_menu_block .footer_bottom_menu_block_title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #FFF;
  line-height: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.footer_bottom_block .footer_bottom_menu_content .footer_bottom_menu_block .footer_bottom_menu_list .footer_bottom_menu_item {
  margin: 0 0 0.75rem;
}

.footer_bottom_block .footer_bottom_menu_content .footer_bottom_menu_block .footer_bottom_menu_list .footer_bottom_menu_item:last-child {
  margin: 0 0 0;
}

.footer_bottom_block .footer_bottom_menu_content .footer_bottom_menu_block .footer_bottom_menu_list .footer_bottom_menu_item .footer_bottom_menu_link {
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

@media only screen and (min-width: 960px) {
  .footer_bottom_block .footer_bottom_menu_content .footer_bottom_menu_block .footer_bottom_menu_list .footer_bottom_menu_item .footer_bottom_menu_link:hover {
    color: #2273C3;
  }
}

.footer_bottom_copy_sub_menu {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 1rem;
}

@media only screen and (max-width: 840px) {
  .footer_bottom_copy_sub_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer_bottom_copy_sub_menu .footer_bottom_copy {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.25rem;
  letter-spacing: 0.025em;
}

.footer_bottom_copy_sub_menu .footer_bottom_sub_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.footer_bottom_copy_sub_menu .footer_bottom_sub_menu_list .footer_bottom_sub_menu_item .footer_bottom_sub_menu_link {
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.25rem;
}

@media only screen and (min-width: 960px) {
  .footer_bottom_copy_sub_menu .footer_bottom_sub_menu_list .footer_bottom_sub_menu_item .footer_bottom_sub_menu_link:hover {
    color: #2273C3;
  }
}

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

      content.scss

=======================*/
.contact_page {
  padding: 1rem 0 5rem;
  background-color: #FFF;
}

.contact_page .common_sec_text {
  max-width: 36rem;
  margin: 0 auto;
}

.contact_content {
  display: grid;
  grid-gap: 2.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .contact_content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.contact_content .contact_content_plan_block {
  grid-column: span 1 / span 1;
}

@media (max-width: 960px) {
  .contact_content .contact_content_plan_block {
    grid-column: initial;
  }
}

.contact_content .contact_content_input_block {
  grid-column: span 2 / span 2;
  background-color: #F8FAFB;
  border: 1px solid #DAE0E7;
  padding: 2.5rem;
}

@media (max-width: 960px) {
  .contact_content .contact_content_input_block {
    grid-column: initial;
  }
}

@media (max-width: 840px) {
  .contact_content .contact_content_input_block {
    padding: 2rem;
  }
}

.contact_content_block_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.25rem;
  color: #20476F;
  line-height: 1.75rem;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}

.contact_plan_list {
  display: grid;
  gap: 1.5rem;
}

.contact_plan_list .contact_plan_item {
  position: relative;
}

.contact_plan_list .contact_plan_item .contact_plan_item_input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact_plan_list .contact_plan_item .contact_plan_item_input:checked + .contact_plan_item_input_label {
  background-color: rgba(34, 115, 195, 0.05);
  border: 1px solid #2273C3;
}

.contact_plan_list .contact_plan_item .contact_plan_item_input_label {
  display: block;
  cursor: pointer;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #F8FAFB;
  border: 1px solid #DAE0E7;
  padding: 1.25rem;
}

.contact_plan_list .contact_plan_item .contact_plan_item_input_label .contact_plan_item_input_label_title_note {
  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;
  margin: 0 0 0.75rem;
}

.contact_plan_list .contact_plan_item .contact_plan_item_input_label .contact_plan_item_input_label_title_note .contact_plan_item_input_label_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #20476F;
  line-height: 1rem;
}

.contact_plan_list .contact_plan_item .contact_plan_item_input_label .contact_plan_item_input_label_title_note .contact_plan_item_input_label_note {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #2273C3;
  line-height: 1rem;
}

.contact_plan_list .contact_plan_item .contact_plan_item_input_label .contact_plan_item_input_label_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.625;
}

.contact_content_input_list {
  margin: 0 0 1.5rem;
}

.contact_content_input_list .contact_content_input_item {
  margin: 0 0 1.5rem;
  width: 100%;
}

.contact_content_input_list .contact_content_input_item:last-child {
  margin: 0 0 0;
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_flex_wrap {
  display: grid;
  grid-gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 840px) {
  .contact_content_input_list .contact_content_input_item .contact_content_input_item_flex_wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #20476F;
  line-height: 1.25rem;
  margin: 0 0 0.5rem;
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_title span {
  color: #2273C3;
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_input {
  padding: 0.5rem 0.75rem;
  background-color: #FFF;
  border: 1px solid #DAE0E7;
  border-radius: 6px;
  width: 100%;
  height: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #20476F;
  line-height: 1.25rem;
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_input::-webkit-input-placeholder {
  color: #627384;
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_input::-ms-input-placeholder {
  color: #627384;
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_input::placeholder {
  color: #627384;
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_input:focus {
  outline: 2px solid #20476F;
  outline-offset: 2px;
}

@media (max-width: 840px) {
  .contact_content_input_list .contact_content_input_item .contact_content_input_item_input {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_error_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: #EF4343;
  line-height: 1rem;
  margin: 0.5rem 0 0;
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_textarea {
  padding: 0.5rem 0.75rem;
  background-color: #FFF;
  border: 1px solid #DAE0E7;
  border-radius: 6px;
  width: 100%;
  min-height: 80px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #20476F;
  line-height: 1.25rem;
  resize: none;
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_textarea::-webkit-input-placeholder {
  color: #627384;
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_textarea::-ms-input-placeholder {
  color: #627384;
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_textarea::placeholder {
  color: #627384;
}

.contact_content_input_list .contact_content_input_item .contact_content_input_item_textarea:focus {
  outline: 2px solid #20476F;
  outline-offset: 2px;
}

@media (max-width: 840px) {
  .contact_content_input_list .contact_content_input_item .contact_content_input_item_textarea {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.contact_content_submit_btn {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 3rem;
  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;
  gap: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #FFF;
  line-height: 1.5rem;
  white-space: nowrap;
  border-radius: 6px;
  background-color: #2273C3;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.contact_content_submit_btn img {
  width: 1rem;
}

@media only screen and (min-width: 960px) {
  .contact_content_submit_btn:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    opacity: 0.9;
  }
}

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

      top.scss

=======================*/
/*fv*/
.top_fv {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  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: #fff;
  /* “bg-background” 相当。暗めならここを変更 */
  padding: 4rem 0 4rem;
}

@media only screen and (max-width: 640px) {
  .top_fv {
    padding: 4rem 0 1rem;
  }
}

.top_fv .top_fv_bg {
  position: absolute;
  inset: 0;
  /* ふわっとした薄いグラデ。必要なら色を調整 */
  background: radial-gradient(900px 520px at 70% 30%, rgba(34, 115, 195, 0.1), transparent 60%), radial-gradient(700px 460px at 30% 65%, rgba(32, 71, 111, 0.08), transparent 60%), -webkit-gradient(linear, left top, left bottom, from(white), color-stop(40%, rgba(255, 255, 255, 0.96)), to(white));
  background: radial-gradient(900px 520px at 70% 30%, rgba(34, 115, 195, 0.1), transparent 60%), radial-gradient(700px 460px at 30% 65%, rgba(32, 71, 111, 0.08), transparent 60%), linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.96) 40%, white 100%);
}

.top_fv .top_fv_grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(32, 71, 111, 0.08) 1px, transparent 1px), linear-gradient(rgba(32, 71, 111, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-transform: perspective(500px) rotateX(30deg);
  transform: perspective(500px) rotateX(30deg);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  /* これがあると少し“空間感”が出ます */
  opacity: 1;
  pointer-events: none;
}

.top_fv .top_fv_blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 9999px;
  -webkit-filter: blur(48px);
  filter: blur(48px);
  /* blur-3xl 相当（好みで 40〜80px） */
  pointer-events: none;
  -webkit-animation: pulseSoft 6s ease-in-out infinite;
  animation: pulseSoft 6s ease-in-out infinite;
}

.top_fv .top_fv_blob.top_fv_blob--a {
  top: 33%;
  right: 25%;
  background: linear-gradient(135deg, rgba(34, 115, 195, 0.1), rgba(34, 115, 195, 0));
}

.top_fv .top_fv_blob.fv_blob--b {
  width: 400px;
  height: 400px;
  bottom: 25%;
  left: 25%;
  background: linear-gradient(45deg, rgba(32, 71, 111, 0.08), rgba(32, 71, 111, 0));
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* ブロブの“ふわふわ” */
@-webkit-keyframes pulseSoft {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .9;
  }
  50% {
    -webkit-transform: translate3d(0, -8px, 0) scale(1.06);
    transform: translate3d(0, -8px, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes pulseSoft {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .9;
  }
  50% {
    -webkit-transform: translate3d(0, -8px, 0) scale(1.06);
    transform: translate3d(0, -8px, 0) scale(1.06);
    opacity: 1;
  }
}

/* 全体の配置（bottom-4 left-1/2 -translate-x-1/2） */
.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  /* bottom-4 = 1rem */
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-animation: bounce 1s infinite;
  animation: bounce 1s infinite;
}

@media only screen and (max-width: 640px) {
  .scroll-indicator {
    display: none;
  }
}

/* マウスの外枠（w-5 h-8 rounded-full border-2 border-primary/20） */
.scroll-indicator__mouse {
  width: 20px;
  /* w-5 */
  height: 32px;
  /* h-8 */
  border-radius: 9999px;
  border: 2px solid rgba(32, 71, 111, 0.2);
  /* primary/20 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 8px;
  /* pt-2 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 中のドット（w-1 h-2 bg-accent/60） */
.scroll-indicator__dot {
  width: 4px;
  /* w-1 */
  height: 8px;
  /* h-2 */
  background: rgba(34, 115, 195, 0.6);
  /* accent/60 */
  border-radius: 9999px;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    -webkit-transform: none;
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    -webkit-transform: none;
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.top_fv_content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.top_fv_content .top_fv_content_wrap {
  margin: 0 auto;
  max-width: 56rem;
}

.top_fv_content .top_fv_content_wrap .top_fv_content_sub_text {
  -webkit-animation: fade-in .6s ease-out forwards;
  animation: fade-in .6s ease-out forwards;
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #2273C3;
  line-height: 1.25rem;
  letter-spacing: 0.3em;
  margin: 0 0 0.5rem;
}

.top_fv_content .top_fv_content_wrap .top_fv_content_title {
  -webkit-animation: slide-up .6s ease-out forwards;
  animation: slide-up .6s ease-out forwards;
  background: linear-gradient(135deg, #20476F, #2273C3);
  color: #20476F;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  margin-bottom: 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: -.025em;
}

@media only screen and (max-width: 840px) {
  .top_fv_content .top_fv_content_wrap .top_fv_content_title {
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media only screen and (max-width: 640px) {
  .top_fv_content .top_fv_content_wrap .top_fv_content_title {
    font-size: 3rem;
    line-height: 1;
  }
}

.top_fv_content .top_fv_content_wrap .top_fv_content_sub_title {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
  -webkit-animation: slide-up .6s ease-out forwards;
  animation: slide-up .6s ease-out forwards;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 2.25rem;
  color: #20476F;
  line-height: 2.5rem;
  letter-spacing: -.025em;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 840px) {
  .top_fv_content .top_fv_content_wrap .top_fv_content_sub_title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media only screen and (max-width: 640px) {
  .top_fv_content .top_fv_content_wrap .top_fv_content_sub_title {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.top_fv_content .top_fv_content_wrap .top_fv_content_sub_title span {
  display: inline-block;
  background: linear-gradient(135deg, #20476F, #2273C3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top_fv_content .top_fv_content_wrap .top_fv_content_sub_title_en {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation: slide-up .6s ease-out forwards;
  animation: slide-up .6s ease-out forwards;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-style: italic !important;
  font-size: 1.5rem;
  color: rgba(32, 71, 111, 0.6);
  line-height: 2rem;
  margin: 0 0 0.5rem;
}

@media only screen and (max-width: 640px) {
  .top_fv_content .top_fv_content_wrap .top_fv_content_sub_title_en {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.top_fv_content .top_fv_content_wrap .top_fv_content_message {
  -webkit-animation-delay: 0.22s;
  animation-delay: 0.22s;
  -webkit-animation: slide-up .6s ease-out forwards;
  animation: slide-up .6s ease-out forwards;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  color: #2273C3;
  line-height: 1.75rem;
  margin: 0 0 1.5rem;
}

@media only screen and (max-width: 640px) {
  .top_fv_content .top_fv_content_wrap .top_fv_content_message {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.top_fv_content .top_fv_content_wrap .top_fv_content_btn_wrap {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation: slide-up .6s ease-out forwards;
  animation: slide-up .6s ease-out forwards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 1.25rem;
}

@media only screen and (max-width: 640px) {
  .top_fv_content .top_fv_content_wrap .top_fv_content_btn_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.top_fv_content .top_fv_content_wrap .top_fv_content_btn_wrap .top_fv_contact_btn {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  /* shadow-soft */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  border-radius: 6px;
  background-color: #20476F;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #FFF;
  line-height: 1.5rem;
  padding: 1.5rem 2rem;
}

.top_fv_content .top_fv_content_wrap .top_fv_content_btn_wrap .top_fv_contact_btn img {
  width: 0.75rem;
  margin: 0 0 0 0.5rem;
}

@media only screen and (min-width: 960px) {
  .top_fv_content .top_fv_content_wrap .top_fv_content_btn_wrap .top_fv_contact_btn:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    background: rgba(32, 71, 111, 0.9);
    /* hover:bg-primary/90 */
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
}

.top_fv_content .top_fv_content_wrap .top_fv_content_btn_wrap .top_fv_detail_btn {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #20476F;
  line-height: 1.5rem;
  padding: 1.5rem 2rem;
  background-color: #FFF;
  border: 1px solid rgba(32, 71, 111, 0.3);
  border-radius: 6px;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 2.75rem;
}

@media only screen and (min-width: 960px) {
  .top_fv_content .top_fv_content_wrap .top_fv_content_btn_wrap .top_fv_detail_btn:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    background: rgba(32, 71, 111, 0.05);
    /* hover:bg-primary/90 */
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*about*/
.top_about {
  padding: 7rem 0;
  background-color: #FFF;
}

.top_about_box_wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 640px) {
  .top_about_box_wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.top_about_box_wrap .top_about_box {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  padding: 2.5rem;
  background-color: #F8FAFB;
  border: 1px solid #DAE0E7;
}

.top_about_box_wrap .top_about_box .top_about_box_icon {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  background-color: #20476F;
  width: 3.5rem;
  height: 3.5rem;
  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 2rem;
}

.top_about_box_wrap .top_about_box .top_about_box_icon img {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.top_about_box_wrap .top_about_box .top_about_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.25rem;
  color: #20476F;
  line-height: 1.75rem;
  letter-spacing: 0.025em;
  margin: 0 0 1rem;
}

.top_about_box_wrap .top_about_box .top_about_box_title span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.top_about_box_wrap .top_about_box .top_about_box_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #627384;
  line-height: 1.625;
  margin: 0 0 1rem;
}

.top_about_box_wrap .top_about_box .top_about_box_link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

.top_about_box_wrap .top_about_box .top_about_box_link_list .top_about_box_link_item .top_about_box_link_link {
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: 0.875rem;
  color: #2273C3;
  line-height: 1.25rem;
}

@media only screen and (min-width: 960px) {
  .top_about_box_wrap .top_about_box .top_about_box_link_list .top_about_box_link_item .top_about_box_link_link:hover {
    color: rgba(34, 115, 195, 0.8);
  }
}

.top_about_box_wrap .top_about_box .top_about_box_message {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(98, 115, 132, 0.7);
  font-style: italic !important;
  line-height: 1.25rem;
}

@media only screen and (min-width: 960px) {
  .top_about_box_wrap .top_about_box:hover {
    border: 1px solid rgba(34, 115, 195, 0.5);
  }
  .top_about_box_wrap .top_about_box:hover .top_about_box_icon {
    background-color: #2273C3;
  }
}

/*demo*/
.top_demo {
  padding: 7rem 0;
  background-color: rgba(243, 245, 247, 0.3);
}

.top_demo_video_wrap {
  margin: 0 auto 4rem;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(32, 71, 111, 0.5);
  border: 1px solid #DAE0E7;
  border-radius: 0.5em;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.top_demo_video_wrap video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@-webkit-keyframes scroll-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes scroll-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.top_demo_box_wrap {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media only screen and (max-width: 840px) {
  .top_demo_box_wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 640px) {
  .top_demo_box_wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.top_demo_box_wrap .top_demo_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 0.5rem;
  background-color: #F8FAFB;
  border: 1px solid #DAE0E7;
  padding: 1.5rem;
}

.top_demo_box_wrap .top_demo_box .top_demo_box_icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(34, 115, 195, 0.1);
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 0.5rem;
}

.top_demo_box_wrap .top_demo_box .top_demo_box_icon img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.top_demo_box_wrap .top_demo_box .top_demo_box_detail .top_demo_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #20476F;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.top_demo_box_wrap .top_demo_box .top_demo_box_detail .top_demo_box_title span {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.top_demo_box_wrap .top_demo_box .top_demo_box_detail .top_demo_box_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.25rem;
}

.top_demo_text {
  margin: 2.5rem 0 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(98, 115, 132, 0.6);
  line-height: 1.5;
}

/*foryou*/
.top_foryou {
  padding: 7rem 0;
  background-color: rgba(243, 245, 247, 0.2);
  overflow: hidden;
  position: relative;
}

.top_foryou_text {
  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;
  gap: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-style: italic !important;
  font-size: 0.875rem;
  color: rgba(34, 115, 195, 0.8);
  line-height: 1.25rem;
  margin: 1rem 0 0;
}

.top_foryou_text img {
  width: 1.25rem;
}

.top_foryou_box_wrap {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media only screen and (max-width: 960px) {
  .top_foryou_box_wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 640px) {
  .top_foryou_box_wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.top_foryou_box_wrap .top_foryou_box {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
  background-color: #F8FAFB;
  border: 1px solid #DAE0E7;
}

.top_foryou_box_wrap .top_foryou_box .top_foryou_box_icon {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 3rem;
  height: 3rem;
  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 1.25rem;
  background-color: #20476F;
}

.top_foryou_box_wrap .top_foryou_box .top_foryou_box_icon img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.top_foryou_box_wrap .top_foryou_box .top_foryou_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  color: #20476F;
  line-height: 1.75rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.top_foryou_box_wrap .top_foryou_box .top_foryou_box_title span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.top_foryou_box_wrap .top_foryou_box .top_foryou_box_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.25rem;
  margin: 0 0 1rem;
}

.top_foryou_box_wrap .top_foryou_box .top_foryou_box_list .top_foryou_box_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.5rem 0 0;
}

.top_foryou_box_wrap .top_foryou_box .top_foryou_box_list .top_foryou_box_item .top_foryou_box_item_icon {
  width: 1rem;
  height: 1rem;
  margin: 0.125rem 0 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.top_foryou_box_wrap .top_foryou_box .top_foryou_box_list .top_foryou_box_item .top_foryou_box_item_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.top_foryou_box_wrap .top_foryou_box .top_foryou_box_list .top_foryou_box_item .top_foryou_box_item_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #627384;
}

@media only screen and (min-width: 960px) {
  .top_foryou_box_wrap .top_foryou_box:hover {
    border: 1px solid rgba(34, 115, 195, 0.5);
  }
  .top_foryou_box_wrap .top_foryou_box:hover .top_foryou_box_icon {
    background-color: #2273C3;
  }
}

.top_foryou_message_block {
  margin: 5rem auto 0;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation: scroll-fade-in .6s ease-out forwards;
  animation: scroll-fade-in .6s ease-out forwards;
  text-align: center;
  max-width: 768px;
}

.top_foryou_message_block .top_foryou_message_sub_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;
  gap: 0.75em;
  margin: 0 0 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(34, 115, 195, 0.7);
  line-height: 1rem;
  letter-spacing: 0.2em;
}

.top_foryou_message_block .top_foryou_message_sub_title img {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.top_foryou_message_block .top_foryou_message_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-style: italic !important;
  font-size: 1rem;
  color: #627384;
  line-height: 1.625;
  margin-bottom: 0.75rem;
}

.top_foryou_message_block .top_foryou_message_title span {
  color: #20476F;
}

.top_foryou_message_block .top_foryou_message_sub_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(98, 115, 132, 0.6);
  line-height: 1rem;
  margin: 0 0 1.5rem;
}

.top_foryou_message_block .top_foryou_message_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(98, 115, 132, 0.7);
  line-height: 1.625;
}

.top_foryou_message_block .top_foryou_message_text .text_accent {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #2273C3;
}

.top_foryou_message_block .top_foryou_message_text .text_primary {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #20476F;
}

/*top_simulator*/
.top_simulator {
  padding: 5rem 0;
  background: linear-gradient(180deg, #FFFFFF, #F3F5F7);
}

.top_simulator_icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(34, 115, 195, 0.1);
  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 auto 1rem;
}

.top_simulator_icon img {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.top_simulator_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 2.25rem;
  color: #16385A;
  line-height: 2.5rem;
  margin: 0 0 0.75rem;
}

@media only screen and (max-width: 640px) {
  .top_simulator_title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.top_simulator_title span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.top_simulator_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #627384;
  line-height: 1.5;
  margin: 0 0 3rem;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

@media only screen and (max-width: 840px) {
  .roi-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* left card */
.roi-card {
  background-color: #F8FAFB;
  border: 1px solid #DAE0E7;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.roi-card .roi-card-inner {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}

.roi-card .roi-card-inner .roi-block .roi-label {
  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;
}

.roi-card .roi-card-inner .roi-block .roi-label .roi-label-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #16385A;
  line-height: 1.25rem;
}

.roi-card .roi-card-inner .roi-block .roi-label .roi-label-val {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  color: #2273C3;
  line-height: 2rem;
}

.roi-card .roi-card-inner .roi-block .radix-slider {
  position: relative;
  width: 100%;
  height: 44px;
  /* thumb 20px + 余白 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: visible;
  /* 実体：range input（透明で全体に被せる） */
  /* track */
  /* thumb */
}

.roi-card .roi-card-inner .roi-block .radix-slider .radix-slider__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  height: 44px;
}

.roi-card .roi-card-inner .roi-block .radix-slider .radix-slider__track {
  position: relative;
  width: 100%;
  height: 8px;
  /* h-2 */
  background: #EFF2F5;
  border-radius: 9999px;
  overflow: hidden;
  /* filled range */
}

.roi-card .roi-card-inner .roi-block .radix-slider .radix-slider__track .radix-slider__range {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #20476F;
  border-radius: 9999px;
}

.roi-card .roi-card-inner .roi-block .radix-slider .radix-slider__thumb {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  width: 20px;
  /* w-5 */
  height: 20px;
  /* h-5 */
  border-radius: 9999px;
  background: #FFF;
  border: 2px solid #20476F;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 0%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  pointer-events: auto;
  /* ドラッグはinputが受ける */
  cursor: -webkit-grab;
  cursor: grab;
}

.roi-card .roi-card-inner .roi-block .radix-slider .radix-slider__thumb.active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.radix-slider__input:active ~ .radix-slider__thumb,
.radix-slider__input:focus-visible ~ .radix-slider__thumb {
  -webkit-transform: translate(-50%, -50%) scale(1.08);
  transform: translate(-50%, -50%) scale(1.08);
}

/* focus-visible ring（inputがフォーカスされたらthumbにリング） */
.radix-slider__input:focus-visible ~ .radix-slider__thumb {
  -webkit-box-shadow: 0 0 0 3px #FFF, 0 0 0 5px #20476F;
  box-shadow: 0 0 0 3px #FFF, 0 0 0 5px #20476F;
  /* 外側リング */
}

/* right result card */
.roi-result {
  background: #20476F;
  color: #FFF;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.roi-result .roi-result-head {
  padding: 1.5rem;
}

.roi-result .roi-result-head .roi-result-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.roi-result .roi-result-head .roi-result-title img {
  width: 1.25rem;
}

.roi-result .roi-result-body {
  padding: 0 1.5rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}

.roi-result .roi-result-body .roi-row {
  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;
}

.roi-result .roi-result-body .roi-row .roi-row-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 0.5rem;
  opacity: 0.8;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.roi-result .roi-result-body .roi-row .roi-row-label img {
  opacity: 0.7;
  width: 1rem;
}

.roi-result .roi-result-body .roi-row .roi-row-value {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.roi-result .roi-result-body .roi-row .roi-row-value .text_en {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roi-result .roi-result-body .roi-row--divider {
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.roi-result .roi-result-body .roi-row-value--accent {
  color: #2273C3;
  font-size: 1.5rem;
  line-height: 2rem;
}

.roi-result .roi-result-body .roi-total {
  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;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 0 -0.5rem;
}

.roi-result .roi-result-body .roi-total .roi-total-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
}

.roi-result .roi-result-body .roi-total .roi-total-label img {
  width: 1.25rem;
}

.roi-result .roi-result-body .roi-total .roi-total-value {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.top_simulator_comment {
  margin: 1.5rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: #627384;
  line-height: 1rem;
}

/*philosophy*/
.top_philosophy {
  padding: 7rem 0;
  overflow: hidden;
  position: relative;
  background-color: #FFF;
}

.top_philosophy .top_philosophy_border {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25rem;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(#2273C3), to(transparent));
  background: linear-gradient(to bottom, transparent, #2273C3, transparent);
}

.top_philosophy_box_wrap {
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
  -webkit-animation: 0.6s ease-out 0s 1 normal forwards running scroll-fade-in;
  animation: 0.6s ease-out 0s 1 normal forwards running scroll-fade-in;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid #DAE0E7;
  margin: 0 0 4rem;
}

@media only screen and (max-width: 960px) {
  .top_philosophy_box_wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.top_philosophy_box_wrap .top_philosophy_box {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  padding: 3rem;
  border-bottom: 1px solid #DAE0E7;
}

.top_philosophy_box_wrap .top_philosophy_box:nth-of-type(2n) {
  border-left: 1px solid #DAE0E7;
}

@media only screen and (max-width: 960px) {
  .top_philosophy_box_wrap .top_philosophy_box:nth-of-type(2n) {
    border-left: none;
  }
}

.top_philosophy_box_wrap .top_philosophy_box:nth-last-child(2) {
  border-bottom: none;
}

@media only screen and (max-width: 960px) {
  .top_philosophy_box_wrap .top_philosophy_box:nth-last-child(2) {
    border-bottom: 1px solid #DAE0E7;
  }
}

.top_philosophy_box_wrap .top_philosophy_box:last-child {
  border-bottom: none;
}

.top_philosophy_box_wrap .top_philosophy_box .top_philosophy_box_icon {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  background-color: #20476F;
  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: 4rem;
  height: 4rem;
  margin: 0 0 2rem;
}

.top_philosophy_box_wrap .top_philosophy_box .top_philosophy_box_icon img {
  display: block;
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.top_philosophy_box_wrap .top_philosophy_box .top_philosophy_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  color: #20476F;
  line-height: 2rem;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
}

.top_philosophy_box_wrap .top_philosophy_box .top_philosophy_box_title span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.top_philosophy_box_wrap .top_philosophy_box .top_philosophy_box_sub_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #2273C3;
  line-height: 1.25rem;
  letter-spacing: 0.025em;
  margin: 0 0 1.5rem;
}

.top_philosophy_box_wrap .top_philosophy_box .top_philosophy_box_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #627384;
  line-height: 1.625;
}

@media only screen and (min-width: 960px) {
  .top_philosophy_box_wrap .top_philosophy_box:hover {
    background-color: rgba(243, 245, 247, 0.3);
  }
  .top_philosophy_box_wrap .top_philosophy_box:hover .top_philosophy_box_icon {
    background-color: #2273C3;
  }
}

.top_philosophy_letter_box {
  margin: 0 auto 4rem;
  background-color: rgba(248, 250, 251, 0.5);
  border: 1px solid rgba(218, 224, 231, 0.5);
  max-width: 56rem;
  padding: 3.5rem;
  position: relative;
}

@media only screen and (max-width: 840px) {
  .top_philosophy_letter_box {
    padding: 2.5rem;
  }
}

.top_philosophy_letter_box .top_philosophy_letter_box_sub_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.75rem;
  color: #2273C3;
  line-height: 1rem;
  letter-spacing: 0.2em;
}

.top_philosophy_letter_box .top_philosophy_letter_box_sub_text img {
  width: 1.25rem;
}

.top_philosophy_letter_box .top_philosophy_letter_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.875rem;
  font-style: italic !important;
  color: #20476F;
  line-height: 2.25rem;
  letter-spacing: -0.025em;
  margin: 0 0 2rem;
}

@media only screen and (max-width: 840px) {
  .top_philosophy_letter_box .top_philosophy_letter_box_title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.top_philosophy_letter_box .top_philosophy_letter_box_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #627384;
  line-height: 2;
  margin: 0 0 1.5rem;
}

.top_philosophy_letter_box .top_philosophy_letter_box_text .text_accent {
  font-weight: 500 !important;
  color: #2273C3;
}

.top_philosophy_letter_box .top_philosophy_letter_box_text .text_primary {
  font-weight: 500 !important;
  color: #20476F;
}

.top_philosophy_letter_box .top_philosophy_letter_box_text_border {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  font-style: italic !important;
  color: rgba(32, 71, 111, 0.9);
  line-height: 2;
  margin: 0 0 1.5rem;
  padding: 0 0 0 1.5rem;
  border-left: 2px solid rgba(34, 115, 195, 0.5);
}

.top_philosophy_letter_box .top_philosophy_letter_box_text_border span {
  color: #2273C3;
  font-weight: 500 !important;
}

.top_philosophy_letter_box .top_philosophy_letter_box_respect_link {
  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;
  padding: 2rem 0 0;
  margin: 2.5rem 0 0;
  border-top: 1px solid rgba(218, 224, 231, 0.3);
}

.top_philosophy_letter_box .top_philosophy_letter_box_respect_link .top_philosophy_letter_box_respect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  font-style: italic !important;
  color: rgba(34, 115, 195, 0.7);
  line-height: 1.2rem;
}

.top_philosophy_letter_box .top_philosophy_letter_box_respect_link .top_philosophy_letter_box_respect img {
  width: 1rem;
}

.top_philosophy_letter_box .top_philosophy_letter_box_respect_link .top_philosophy_letter_box_link {
  display: block;
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.25rem;
}

@media only screen and (min-width: 960px) {
  .top_philosophy_letter_box .top_philosophy_letter_box_respect_link .top_philosophy_letter_box_link:hover {
    color: #2273C3;
  }
}

.top_philosophy_letter_box .top_philosophy_letter_box_bg_top_left {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  border-top: 2px solid rgba(34, 115, 195, 0.3);
  border-left: 2px solid rgba(34, 115, 195, 0.3);
}

.top_philosophy_letter_box .top_philosophy_letter_box_bg_top_right {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-top: 2px solid rgba(34, 115, 195, 0.3);
  border-right: 2px solid rgba(34, 115, 195, 0.3);
}

.top_philosophy_letter_box .top_philosophy_letter_box_bg_bottom_left {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  border-bottom: 2px solid rgba(34, 115, 195, 0.3);
  border-left: 2px solid rgba(34, 115, 195, 0.3);
}

.top_philosophy_letter_box .top_philosophy_letter_box_bg_bottom_right {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-bottom: 2px solid rgba(34, 115, 195, 0.3);
  border-right: 2px solid rgba(34, 115, 195, 0.3);
}

.top_philosophy_list {
  -webkit-animation-delay: 250ms;
  animation-delay: 250ms;
  -webkit-animation: scroll-fade-in .6s ease-out forwards;
  animation: scroll-fade-in .6s ease-out forwards;
  max-width: 768px;
  margin: 0 auto;
}

.top_philosophy_list.mt_4rem {
  margin: 4rem auto 0;
}

.top_philosophy_list .top_philosophy_item {
  margin: 0 0 4rem;
  text-align: center;
}

.top_philosophy_list .top_philosophy_item:last-child {
  margin: 0 0 0;
}

.top_philosophy_list .top_philosophy_item .top_philosophy_item_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;
  gap: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(34, 115, 195, 0.7);
  line-height: 1rem;
  letter-spacing: 0.2em;
  margin: 0 0 1rem;
}

.top_philosophy_list .top_philosophy_item .top_philosophy_item_title.big {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #20476F;
  letter-spacing: 0;
}

.top_philosophy_list .top_philosophy_item .top_philosophy_item_title img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.top_philosophy_list .top_philosophy_item .top_philosophy_item_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #627384;
  line-height: 1.625;
}

.top_philosophy_list .top_philosophy_item .top_philosophy_item_text.italic {
  font-style: italic !important;
}

.top_philosophy_list .top_philosophy_item .top_philosophy_item_text .text_accent {
  color: #2273C3;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-style: italic !important;
}

.top_philosophy_list .top_philosophy_item .top_philosophy_item_text .text_primary {
  color: #20476F;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-style: italic !important;
}

.top_philosophy_list .top_philosophy_item .top_philosophy_item_note {
  margin: 0.75rem 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(98, 115, 132, 0.6);
  line-height: 1rem;
}

/*faq*/
.top_faq {
  padding: 6rem 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(236, 242, 248, 0.2)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(236, 242, 248, 0.2));
}

.top_faq_title_wrap {
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
  -webkit-animation: scroll-fade-in .6s ease-out forwards;
  animation: scroll-fade-in .6s ease-out forwards;
  margin-bottom: 4rem;
  text-align: center;
}

.top_faq_title_wrap .top_faq_title_en {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(34, 115, 195, 0.1);
  border: 1px solid rgba(34, 115, 195, 0.2);
  border-radius: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #2273C3;
  line-height: 1.25rem;
  margin: 0 0 1.5rem;
}

.top_faq_title_wrap .top_faq_title_en img {
  display: block;
  width: 1rem;
}

.top_faq_title_wrap .top_faq_title_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2.25rem;
  color: #16385A;
  line-height: 2.5rem;
  margin: 0 0 1rem;
}

@media only screen and (max-width: 840px) {
  .top_faq_title_wrap .top_faq_title_ja {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.top_faq_title_wrap .top_faq_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  color: #627384;
  line-height: 1.75rem;
}

.top_faq_list .top_faq_item {
  background-color: #F8FAFB;
  border: 1px solid #DAE0E7;
  border-radius: 12px;
  -webkit-transition-property: -webkit-box-shadow;
  transition-property: -webkit-box-shadow;
  transition-property: box-shadow;
  transition-property: box-shadow, -webkit-box-shadow;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  margin: 0 0 1rem;
}

.top_faq_list .top_faq_item.active {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  /* shadow-soft */
}

.top_faq_list .top_faq_item:last-child {
  margin: 0;
}

.top_faq_list .top_faq_item .top_faq_q_block {
  padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  position: relative;
  cursor: pointer;
}

.top_faq_list .top_faq_item .top_faq_q_block:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url(../images/top/icon_faq_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.top_faq_list .top_faq_item .top_faq_q_block.active:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.top_faq_list .top_faq_item .top_faq_q_block .top_faq_q_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #16385A;
  line-height: 1.5;
}

.top_faq_list .top_faq_item .top_faq_q_block .top_faq_q_title span {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media only screen and (min-width: 960px) {
  .top_faq_list .top_faq_item .top_faq_q_block:hover:after {
    background-image: url(../images/top/icon_faq_arrow_b.svg);
  }
  .top_faq_list .top_faq_item .top_faq_q_block:hover .top_faq_q_title {
    color: #2273C3;
    text-decoration: underline;
  }
}

.top_faq_list .top_faq_item .top_faq_a_block {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.top_faq_list .top_faq_item .top_faq_a_block .top_faq_a_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.625;
  margin: 0 0 1rem;
}

.top_faq_list .top_faq_item .top_faq_a_block .top_faq_a_text a {
  color: #2273C3;
}

@media only screen and (min-width: 960px) {
  .top_faq_list .top_faq_item .top_faq_a_block .top_faq_a_text a:hover {
    text-decoration: underline;
  }
}

.top_faq_list .top_faq_item .top_faq_a_block .top_faq_a_ai_btn {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #FFF;
  border-radius: 6px;
  border: 1px solid #DAE0E7;
  padding: 0 0.75rem;
  height: 2.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #16385A;
  line-height: 1.25rem;
  margin: 0.5rem 0 0;
}

.top_faq_list .top_faq_item .top_faq_a_block .top_faq_a_ai_btn .top_faq_a_ai_btn_img {
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url(../images/top/icon_ai.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

@media only screen and (min-width: 960px) {
  .top_faq_list .top_faq_item .top_faq_a_block .top_faq_a_ai_btn:hover {
    background-color: #2273C3;
    color: #FFF;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    /* shadow-soft */
  }
  .top_faq_list .top_faq_item .top_faq_a_block .top_faq_a_ai_btn:hover .top_faq_a_ai_btn_img {
    background-image: url(../images/top/icon_ai_w.svg);
  }
}

.top_faq_list .top_faq_item .top_faq_a_block .top_faq_a_ai_generating_btn {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #FFF;
  border-radius: 6px;
  border: 1px solid #DAE0E7;
  padding: 0 0.75rem;
  height: 2.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.25rem;
  margin: 0.5rem 0 0;
}

.top_faq_list .top_faq_item .top_faq_a_block .top_faq_a_ai_generating_btn img {
  display: block;
  width: 1rem;
  opacity: 0.9;
}

.top_faq_list .top_faq_item .top_faq_a_block .top_faq_a_ai_answer_box {
  padding: 1rem;
  background-color: rgba(34, 115, 195, 0.05);
  border: 1px solid rgba(34, 115, 195, 0.2);
  border-radius: 8px;
  margin: 1rem 0 0;
}

.top_faq_list .top_faq_item .top_faq_a_block .top_faq_a_ai_answer_box .top_faq_a_ai_answer_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #2273C3;
  line-height: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
}

.top_faq_list .top_faq_item .top_faq_a_block .top_faq_a_ai_answer_box .top_faq_a_ai_answer_box_title img {
  width: 1rem;
}

.top_faq_list .top_faq_item .top_faq_a_block .top_faq_a_ai_answer_box .top_faq_a_ai_answer_box_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #16385A;
  line-height: 1.625;
}

.top_faq_cpntact_text {
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation: scroll-fade-in .6s ease-out forwards;
  animation: scroll-fade-in .6s ease-out forwards;
  margin: 3rem 0 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #627384;
  line-height: 1.5;
}

.top_faq_cpntact_text a {
  color: #2273C3;
}

@media only screen and (min-width: 960px) {
  .top_faq_cpntact_text a:hover {
    text-decoration: underline;
  }
}

/*message*/
.top_message {
  background: #050b14;
}

.space-section {
  position: relative;
  overflow: hidden;
  background: #0a1628;
}

/* Layer: gradient */
.space-gradient {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#0a1628), color-stop(#0f1f3a), to(#1a0a2e));
  background: linear-gradient(to bottom, #0a1628, #0f1f3a, #1a0a2e);
  z-index: 0;
}

/* Layer: glows */
.glow {
  position: absolute;
  border-radius: 9999px;
  -webkit-filter: blur(110px);
  filter: blur(110px);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  /* blurの描画安定 */
  z-index: 1;
  pointer-events: none;
}

.glow.purple {
  width: 620px;
  height: 620px;
  left: 20%;
  top: -120px;
  background: rgba(88, 28, 135, 0.2);
}

.glow.blue {
  width: 520px;
  height: 520px;
  right: 18%;
  bottom: -160px;
  background: rgba(30, 58, 138, 0.2);
}

.glow.indigo {
  width: 820px;
  height: 420px;
  left: 50%;
  top: 50%;
  background: rgba(49, 46, 129, 0.12);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-filter: blur(130px);
  filter: blur(130px);
}

@media (max-width: 640px) {
  .glow.purple {
    width: 520px;
    height: 520px;
    left: 10%;
    top: -160px;
  }
  .glow.blue {
    width: 440px;
    height: 440px;
    right: 8%;
    bottom: -180px;
  }
  .glow.indigo {
    width: 640px;
    height: 360px;
  }
}

/* Layer: stars */
.stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* ちらつき抑制 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  contain: layout paint;
}

@-webkit-keyframes twinkle {
  0%, 100% {
    opacity: .25;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: .25;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }
}

.star {
  position: absolute;
  border-radius: 9999px;
  background: rgba(255, 255, 255, var(--a, 1));
  width: var(--s, 2px);
  height: var(--s, 2px);
  -webkit-animation: twinkle var(--d, 3s) ease-in-out infinite;
  animation: twinkle var(--d, 3s) ease-in-out infinite;
  -webkit-animation-delay: var(--dl, 0s);
  animation-delay: var(--dl, 0s);
  /* サブピクセルのにじみを少し抑える */
  will-change: opacity, transform;
}

/* Layer: subtle overlay */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(rgba(0, 0, 0, 0.18)), to(transparent));
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.18), transparent);
  pointer-events: none;
}

.top_message_content {
  padding: 5rem 0;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 840px) {
  .top_message_content {
    padding: 4rem 0;
  }
}

.top_message_content .top_message_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.875rem;
  color: #FFF;
  line-height: 2.25rem;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}

@media only screen and (max-width: 640px) {
  .top_message_content .top_message_title {
    font-size: 1.5rem;
    line-height: 1.625;
  }
}

.top_message_content .top_message_content_top {
  text-align: center;
  padding: 0 0 2.5rem;
  margin: 0 0 1.5rem;
  border-bottom: 1px solid #ffffff1a;
}

.top_message_content .top_message_content_top .top_message_content_top_text01 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.625;
  color: #fffc;
  margin: 0 0 1rem;
}

.top_message_content .top_message_content_top .top_message_content_top_text01 span {
  color: #2273C3;
}

.top_message_content .top_message_content_top .top_message_content_top_text02 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.625;
  color: #fff9;
  margin: 0 0 1rem;
}

.top_message_content .top_message_content_top .top_message_content_top_text02 span {
  color: #2273C3;
}

.top_message_content .top_message_content_top .top_message_content_top_text03 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-style: italic !important;
  font-size: 1.125rem;
  color: #2273C3;
  line-height: 1.75rem;
}

.top_message_content .top_message_content_bottom {
  text-align: center;
}

.top_message_content .top_message_content_bottom .top_message_content_bottom_title_en {
  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;
  gap: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.75rem;
  color: #ffffffb3;
  line-height: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.top_message_content .top_message_content_bottom .top_message_content_bottom_title_en span {
  color: rgba(34, 115, 195, 0.7);
}

.top_message_content .top_message_content_bottom .top_message_content_bottom_title_en img {
  width: 1.25rem;
}

.top_message_content .top_message_content_bottom .top_message_content_bottom_title_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  font-style: italic !important;
  color: #fff9;
  line-height: 1.625;
}

.top_message_content .top_message_content_bottom .top_message_content_bottom_sub_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: .875rem;
  color: #fff6;
  line-height: 1.25rem;
  margin: 0 0 0.75rem;
}

.top_message_content .top_message_content_bottom .top_message_content_bottom_text01 {
  margin: 0 0 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: #ffffff4d;
  line-height: 1rem;
}

.top_message_content .top_message_content_bottom .top_message_content_bottom_text02 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #ffffff80;
  line-height: 1.25rem;
}

.top_message_content .top_message_content_bottom .top_message_content_bottom_text02 span {
  color: #2273C3;
}

/*top_mail_form*/
.top_mail_form {
  padding: 4rem 0;
  background-color: rgba(243, 245, 247, 0.5);
}

.top_mail_form .top_mail_form_icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(34, 115, 195, 0.1);
  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;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.top_mail_form .top_mail_form_icon img {
  display: block;
  width: 1.5rem;
}

.top_mail_form .top_mail_form_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.875rem;
  color: #16385A;
  line-height: 2.25rem;
  margin: 0 0 0.75rem;
}

@media only screen and (max-width: 840px) {
  .top_mail_form .top_mail_form_title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.top_mail_form .top_mail_form_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #627384;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.top_mail_form .top_mail_form_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 0.75rem;
  margin: 0 auto;
  max-width: 28rem;
}

@media only screen and (max-width: 640px) {
  .top_mail_form .top_mail_form_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.top_mail_form .top_mail_form_wrap .top_mail_form_input {
  padding: 0.5rem 0.75rem;
  background-color: #FFF;
  border: 1px solid #DAE0E7;
  border-radius: 6px;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #20476F;
  height: 2.5rem;
}

.top_mail_form .top_mail_form_wrap .top_mail_form_input:placeholder {
  color: #627384;
}

.top_mail_form .top_mail_form_wrap .top_mail_form_input:focus {
  outline: 2px solid #20476F;
  outline-offset: 2px;
}

.top_mail_form .top_mail_form_wrap .top_mail_form_submit_btn {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #FFF;
  line-height: 1.25rem;
  padding: 0.5rem 1rem;
  background-color: #2273C3;
  border-radius: 6px;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 2.5rem;
}

@media only screen and (max-width: 640px) {
  .top_mail_form .top_mail_form_wrap .top_mail_form_submit_btn {
    width: 100%;
  }
}

/*top_contact*/
.top_contact {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  /* py-28 */
  background: linear-gradient(to right, rgba(32, 71, 111, 0.02) 1px, transparent 1px), linear-gradient(to bottom, rgba(32, 71, 111, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.top_contact_content_top {
  -webkit-animation: scroll-fade-in .6s ease-out forwards;
  animation: scroll-fade-in .6s ease-out forwards;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

.top_contact_content_top .top_contact_title_ja {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 3rem;
  color: #20476F;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}

@media only screen and (max-width: 840px) {
  .top_contact_content_top .top_contact_title_ja {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.top_contact_content_top .top_contact_title_ja span {
  display: inline-block;
  background: linear-gradient(135deg, #20476F, #2273C3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top_contact_content_top .top_contact_title_en {
  text-align: center;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-style: italic !important;
  font-size: 1.5rem;
  color: #627384;
  line-height: 2rem;
  margin: 0 0 2rem;
}

.top_contact_content_bottom {
  text-align: center;
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
  -webkit-animation: scroll-fade-in .6s ease-out forwards;
  animation: scroll-fade-in .6s ease-out forwards;
}

.top_contact_content_bottom .top_contact_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  color: #627384;
  line-height: 1.625;
  margin: 0 0 3rem;
}

.top_contact_content_bottom .top_contact_link {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  /* shadow-soft */
  padding: 1.5rem 2.5rem;
  background-color: #2273C3;
  border-radius: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #FFF;
  line-height: 1.5rem;
  border-radius: 6px;
  height: 2.75rem;
  margin-bottom: 3.5rem;
}

@media only screen and (min-width: 960px) {
  .top_contact_content_bottom .top_contact_link:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    background: rgba(34, 115, 195, 0.9);
    /* hover:bg-primary/90 */
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
}

.top_contact_content_bottom .top_contact_link img {
  display: block;
  width: 0.875rem;
}

.top_contact_point_list {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}

.top_contact_point_list .top_contact_point_item {
  padding: 0 0 0 1.25rem;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.25rem;
  letter-spacing: 0.025em;
}

.top_contact_point_list .top_contact_point_item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #2273C3;
}

/*fixed*/
.top_fixed_btn_wrap {
  position: fixed;
  z-index: 40;
  right: 1.5rem;
  bottom: 6rem;
}

.top_fixed_btn_wrap.js-float-fade-init {
  opacity: 0;
  -webkit-transform: translateY(16px);
  transform: translateY(16px);
  -webkit-transition: opacity .35s ease, -webkit-transform .35s ease;
  transition: opacity .35s ease, -webkit-transform .35s ease;
  transition: opacity .35s ease, transform .35s ease;
  transition: opacity .35s ease, transform .35s ease, -webkit-transform .35s ease;
  pointer-events: none;
  /* 非表示中はクリック不可に */
}

.top_fixed_btn_wrap.js-float-fade-init.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: auto;
}

.top_fixed_btn_wrap .top_fixed_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;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #20476F;
}

.top_fixed_btn_wrap .top_fixed_btn img {
  display: block;
  width: 1rem;
}

@media only screen and (min-width: 960px) {
  .top_fixed_btn_wrap .top_fixed_btn:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.top_fixed_furansowa_btn_wrap {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
}

.top_fixed_furansowa_btn_wrap .top_fixed_furansowa_btn {
  -webkit-animation: chatbot-button-appear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation: chatbot-button-appear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  border-radius: 60px;
  background-color: #2273C3;
  padding: 0.75rem 1rem;
}

@media only screen and (min-width: 960px) {
  .top_fixed_furansowa_btn_wrap .top_fixed_furansowa_btn:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    background-color: rgba(34, 115, 195, 0.9);
  }
}

.top_fixed_furansowa_btn_wrap .top_fixed_furansowa_btn .top_fixed_furansowa_btn_img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #ffffff4d;
}

.top_fixed_furansowa_btn_wrap .top_fixed_furansowa_btn .top_fixed_furansowa_btn_img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_fixed_furansowa_btn_wrap .top_fixed_furansowa_btn .top_fixed_furansowa_btn_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #FFF;
  line-height: 1.25rem;
  white-space: nowrap;
  padding: 0 0.25rem 0 0;
}

.top_fixed_furansowa_chat_wrap {
  display: none;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  overflow: hidden;
  background-color: #F8FAFB;
  border: 1px solid #DAE0E7;
  border-radius: 1rem;
  width: 360px;
  max-width: calc(100vw - 48px);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.top_fixed_furansowa_chat_wrap .top_fixed_furansowa_chat_name_block {
  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;
  padding: 1rem;
  background-color: #2273C3;
}

.top_fixed_furansowa_chat_wrap .top_fixed_furansowa_chat_name_block .top_fixed_furansowa_chat_icon_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

.top_fixed_furansowa_chat_wrap .top_fixed_furansowa_chat_name_block .top_fixed_furansowa_chat_icon_name .top_fixed_furansowa_chat_icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  background-color: #FFF;
  overflow: hidden;
}

.top_fixed_furansowa_chat_wrap .top_fixed_furansowa_chat_name_block .top_fixed_furansowa_chat_icon_name .top_fixed_furansowa_chat_icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_fixed_furansowa_chat_wrap .top_fixed_furansowa_chat_name_block .top_fixed_furansowa_chat_icon_name .top_fixed_furansowa_chat_name_wrap .top_fixed_furansowa_chat_name {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.top_fixed_furansowa_chat_wrap .top_fixed_furansowa_chat_name_block .top_fixed_furansowa_chat_icon_name .top_fixed_furansowa_chat_name_wrap .top_fixed_furansowa_chat_job {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: #FFF;
  line-height: 1rem;
  opacity: 0.8;
}

.top_fixed_furansowa_chat_wrap .top_fixed_furansowa_chat_name_block .top_fixed_furansowa_chat_close_btn {
  -webkit-animation-duration: .2s;
  animation-duration: .2s;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem;
  border-radius: 50%;
}

.top_fixed_furansowa_chat_wrap .top_fixed_furansowa_chat_name_block .top_fixed_furansowa_chat_close_btn .top_fixed_furansowa_chat_close_btn_icon {
  width: 1rem;
}

.top_fixed_furansowa_chat_wrap .top_fixed_furansowa_chat_name_block .top_fixed_furansowa_chat_close_btn .top_fixed_furansowa_chat_close_btn_icon img {
  display: block;
  width: 100%;
}

@media only screen and (min-width: 960px) {
  .top_fixed_furansowa_chat_wrap .top_fixed_furansowa_chat_name_block .top_fixed_furansowa_chat_close_btn:hover {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    background-color: rgba(255, 255, 255, 0.2);
  }
}

@-webkit-keyframes chatbot-pulse {
  0%, 100% {
    -webkit-box-shadow: 0 0 0 0 rgba(34, 115, 195, 0.4);
    box-shadow: 0 0 0 0 rgba(34, 115, 195, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 0 0 12px rgba(34, 115, 195, 0);
    box-shadow: 0 0 0 12px rgba(34, 115, 195, 0);
  }
}

@keyframes chatbot-pulse {
  0%, 100% {
    -webkit-box-shadow: 0 0 0 0 rgba(34, 115, 195, 0.4);
    box-shadow: 0 0 0 0 rgba(34, 115, 195, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 0 0 12px rgba(34, 115, 195, 0);
    box-shadow: 0 0 0 12px rgba(34, 115, 195, 0);
  }
}

@-webkit-keyframes chatbot-slide-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.95);
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

@keyframes chatbot-slide-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.95);
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

@-webkit-keyframes chatbot-slide-down {
  from {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.95);
    transform: translateY(20px) scale(0.95);
  }
}

@keyframes chatbot-slide-down {
  from {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.95);
    transform: translateY(20px) scale(0.95);
  }
}

@-webkit-keyframes chatbot-message-in {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px) scale(0.95);
    transform: translateX(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
  }
}

@keyframes chatbot-message-in {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px) scale(0.95);
    transform: translateX(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
  }
}

@-webkit-keyframes chatbot-message-in-user {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px) scale(0.95);
    transform: translateX(10px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
  }
}

@keyframes chatbot-message-in-user {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px) scale(0.95);
    transform: translateX(10px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
  }
}

@-webkit-keyframes chatbot-typing-wave {
  0%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

@keyframes chatbot-typing-wave {
  0%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

@-webkit-keyframes chatbot-avatar-wiggle {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  75% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

@keyframes chatbot-avatar-wiggle {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  75% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

@-webkit-keyframes chatbot-button-appear {
  from {
    opacity: 0;
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}

@keyframes chatbot-button-appear {
  from {
    opacity: 0;
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}

@-webkit-keyframes chatbot-quick-question {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes chatbot-quick-question {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fortune-daikichi {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #fff2b3;
  }
  50% {
    background-color: #fff7cc;
  }
  75% {
    background-color: #fff2b3;
  }
  100% {
    background-color: #F8FAFB;
  }
}

@keyframes fortune-daikichi {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #fff2b3;
  }
  50% {
    background-color: #fff7cc;
  }
  75% {
    background-color: #fff2b3;
  }
  100% {
    background-color: #F8FAFB;
  }
}

@-webkit-keyframes fortune-kichi {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #c1f3d4;
  }
  50% {
    background-color: #d6f7e2;
  }
  75% {
    background-color: #c1f3d4;
  }
  100% {
    background-color: #F8FAFB;
  }
}

@keyframes fortune-kichi {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #c1f3d4;
  }
  50% {
    background-color: #d6f7e2;
  }
  75% {
    background-color: #c1f3d4;
  }
  100% {
    background-color: #F8FAFB;
  }
}

@-webkit-keyframes fortune-chukichi {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #c2f0f0;
  }
  50% {
    background-color: #d6f5f5;
  }
  75% {
    background-color: #c2f0f0;
  }
  100% {
    background-color: #F8FAFB;
  }
}

@keyframes fortune-chukichi {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #c2f0f0;
  }
  50% {
    background-color: #d6f5f5;
  }
  75% {
    background-color: #c2f0f0;
  }
  100% {
    background-color: #F8FAFB;
  }
}

@-webkit-keyframes fortune-shokichi {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #c2e1f0;
  }
  50% {
    background-color: #d6ebf5;
  }
  75% {
    background-color: #c2e1f0;
  }
  100% {
    background-color: #F8FAFB;
  }
}

@keyframes fortune-shokichi {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #c2e1f0;
  }
  50% {
    background-color: #d6ebf5;
  }
  75% {
    background-color: #c2e1f0;
  }
  100% {
    background-color: #F8FAFB;
  }
}

@-webkit-keyframes fortune-suekichi {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #e0d1f0;
  }
  50% {
    background-color: #ebe0f5;
  }
  75% {
    background-color: #e0d1f0;
  }
  100% {
    background-color: #F8FAFB;
  }
}

@keyframes fortune-suekichi {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #e0d1f0;
  }
  50% {
    background-color: #ebe0f5;
  }
  75% {
    background-color: #e0d1f0;
  }
  100% {
    background-color: #F8FAFB;
  }
}

@-webkit-keyframes fortune-kyo {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #d1d9e0;
  }
  50% {
    background-color: #e0e6eb;
  }
  75% {
    background-color: #d1d9e0;
  }
  100% {
    background-color: #F8FAFB;
  }
}

@keyframes fortune-kyo {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #d1d9e0;
  }
  50% {
    background-color: #e0e6eb;
  }
  75% {
    background-color: #d1d9e0;
  }
  100% {
    background-color: #F8FAFB;
  }
}

@-webkit-keyframes fortune-daikyo {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #c2c2d6;
  }
  50% {
    background-color: #d1d1e0;
  }
  75% {
    background-color: #c2c2d6;
  }
  100% {
    background-color: #F8FAFB;
  }
}

@keyframes fortune-daikyo {
  0% {
    background-color: #F8FAFB;
  }
  25% {
    background-color: #c2c2d6;
  }
  50% {
    background-color: #d1d1e0;
  }
  75% {
    background-color: #c2c2d6;
  }
  100% {
    background-color: #F8FAFB;
  }
}

.chatbot-slide-up {
  -webkit-animation: chatbot-slide-up 0.25s ease-out forwards;
  animation: chatbot-slide-up 0.25s ease-out forwards;
}

.chatbot-slide-down {
  -webkit-animation: chatbot-slide-down 0.25s ease-out forwards;
  animation: chatbot-slide-down 0.25s ease-out forwards;
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_detail {
  padding: 1rem;
  overflow: hidden;
  height: 300px;
  position: relative;
  --radix-scroll-area-corner-width: 0px;
  --radix-scroll-area-corner-height: 0px;
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_detail .top_fixed_furansowa_chat_block_wrap {
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overflow: hidden scroll;
  width: 100%;
  height: 100%;
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_detail .top_fixed_furansowa_chat_block_wrap .top_fixed_furansowa_chat_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_detail .top_fixed_furansowa_chat_block_wrap .top_fixed_furansowa_chat_block:last-child {
  margin: 0 0 0;
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_detail .top_fixed_furansowa_chat_block_wrap .top_fixed_furansowa_chat_block .top_fixed_furansowa_chat_block_icon {
  background-color: #FFF;
  border: 1px solid #DAE0E7;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_detail .top_fixed_furansowa_chat_block_wrap .top_fixed_furansowa_chat_block .top_fixed_furansowa_chat_block_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

@media only screen and (min-width: 960px) {
  .top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_detail .top_fixed_furansowa_chat_block_wrap .top_fixed_furansowa_chat_block .top_fixed_furansowa_chat_block_icon:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_detail .top_fixed_furansowa_chat_block_wrap .top_fixed_furansowa_chat_block .top_fixed_furansowa_chat_block_text {
  -webkit-animation-duration: .2s;
  animation-duration: .2s;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 1rem;
  background-color: #F3F5F7;
  border-radius: 1rem 1rem 1rem 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #16385A;
  line-height: 1.25rem;
  max-width: 75%;
}

@media only screen and (min-width: 960px) {
  .top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_detail .top_fixed_furansowa_chat_block_wrap .top_fixed_furansowa_chat_block .top_fixed_furansowa_chat_block_text:hover {
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    /* shadow-soft */
  }
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_detail .top_fixed_furansowa_chat_block_wrap .top_fixed_furansowa_chat_block.user {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_detail .top_fixed_furansowa_chat_block_wrap .top_fixed_furansowa_chat_block.user .top_fixed_furansowa_chat_block_icon {
  border: none;
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_detail .top_fixed_furansowa_chat_block_wrap .top_fixed_furansowa_chat_block.user .top_fixed_furansowa_chat_block_text {
  background-color: #2273C3;
  border-radius: 1rem 1rem 6px 1rem;
  color: #FFF;
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_faq {
  padding: 0 1rem 0.5rem;
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_faq .top_fixed_furansowa_chat_faq_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: #627384;
  line-height: 1rem;
  margin: 0 0 0.5rem;
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_faq .top_fixed_furansowa_chat_faq_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_faq .top_fixed_furansowa_chat_faq_list .top_fixed_furansowa_chat_faq_item .top_fixed_furansowa_chat_faq_btn {
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
  -webkit-animation: chatbot-quick-question 0.3s ease-out forwards;
  animation: chatbot-quick-question 0.3s ease-out forwards;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.375rem 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: #20476F;
  line-height: 1rem;
  background-color: #EFF2F5;
  border-radius: 40px;
}

@media only screen and (min-width: 960px) {
  .top_fixed_furansowa_chat_detail_block .top_fixed_furansowa_chat_faq .top_fixed_furansowa_chat_faq_list .top_fixed_furansowa_chat_faq_item .top_fixed_furansowa_chat_faq_btn:hover {
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    /* shadow-soft */
  }
}

.top_fixed_furansowa_chat_input_block {
  border-top: 1px solid #DAE0E7;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.top_fixed_furansowa_chat_input_block .top_fixed_furansowa_chat_input_voice_btn {
  -webkit-animation-duration: .2s;
  animation-duration: .2s;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  white-space: nowrap;
  background-color: #FFF;
  border: 1px solid #DAE0E7;
  border-radius: 6px;
}

.top_fixed_furansowa_chat_input_block .top_fixed_furansowa_chat_input_voice_btn .top_fixed_furansowa_chat_input_voice_icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  background-image: url(../images/top/icon_voice.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media only screen and (min-width: 960px) {
  .top_fixed_furansowa_chat_input_block .top_fixed_furansowa_chat_input_voice_btn:hover {
    background-color: #2273C3;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    /* shadow-soft */
  }
  .top_fixed_furansowa_chat_input_block .top_fixed_furansowa_chat_input_voice_btn:hover .top_fixed_furansowa_chat_input_voice_icon {
    background-image: url(../images/top/icon_voice_w.svg);
  }
}

.top_fixed_furansowa_chat_input_block .top_fixed_furansowa_chat_input {
  -webkit-animation-duration: .2s;
  animation-duration: .2s;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  width: 100%;
  height: 2.5rem;
  border-radius: 6px;
  border: 1px solid #DAE0E7;
  padding: 0.5rem 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #16385A;
  line-height: 1.25rem;
}

@media only screen and (max-width: 840px) {
  .top_fixed_furansowa_chat_input_block .top_fixed_furansowa_chat_input {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.top_fixed_furansowa_chat_input_block .top_fixed_furansowa_chat_input:focus {
  outline: 2px solid #20476F;
  outline-offset: 2px;
}

.top_fixed_furansowa_chat_input_block .top_fixed_furansowa_chat_input::-webkit-input-placeholder {
  color: #627384;
}

.top_fixed_furansowa_chat_input_block .top_fixed_furansowa_chat_input::-ms-input-placeholder {
  color: #627384;
}

.top_fixed_furansowa_chat_input_block .top_fixed_furansowa_chat_input::placeholder {
  color: #627384;
}

.top_fixed_furansowa_chat_input_block .top_fixed_furansowa_chat_input_submit_btn {
  opacity: 0.5;
  pointer-events: none;
  -webkit-animation-duration: .2s;
  animation-duration: .2s;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #2273C3;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  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;
}

.top_fixed_furansowa_chat_input_block .top_fixed_furansowa_chat_input_submit_btn img {
  display: block;
  width: 1rem;
  height: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.top_fixed_furansowa_chat_input_block .top_fixed_furansowa_chat_input_submit_btn.active {
  opacity: 1;
  pointer-events: auto;
}

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

      policy.scss

=======================*/
.policy_page {
  padding: 2rem 0 5rem;
  background-color: #FFF;
}

.policy_content {
  max-width: 848px;
  width: 100%;
  margin: 0 auto;
}

.policy_page_title {
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  color: #20476F;
  line-height: 2.5rem;
  letter-spacing: -0.025em;
  margin: 0 0 2rem;
}

@media (max-width: 840px) {
  .policy_page_title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.policy_block_wrap .policy_block {
  margin: 0 0 2rem;
}

.policy_block_wrap .policy_block:last-child {
  margin: 0 0 0;
}

.policy_block_wrap .policy_block .policy_block_title {
  font-family: "Anton", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #20476F;
  line-height: 1.75rem;
  margin: 0 0 1rem;
}

.policy_block_wrap .policy_block .policy_block_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #627384;
  line-height: 1.5;
}

.policy_block_wrap .policy_block .policy_block_text.mb_1rem {
  margin: 0 0 1rem;
}

.policy_block_wrap .policy_block .policy_block_text a {
  color: #2273C3;
}

@media only screen and (min-width: 960px) {
  .policy_block_wrap .policy_block .policy_block_text a:hover {
    text-decoration: underline;
  }
}

.policy_block_wrap .policy_block .policy_decimal_list {
  list-style: decimal;
  list-style-position: inside;
}

.policy_block_wrap .policy_block .policy_decimal_list .policy_decimal_item {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #627384;
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.policy_block_wrap .policy_block .policy_decimal_list .policy_decimal_item:last-child {
  margin: 0 0 0;
}

.policy_block_wrap .policy_block .policy_decimal_list .policy_decimal_item a {
  color: #2273C3;
}

@media only screen and (min-width: 960px) {
  .policy_block_wrap .policy_block .policy_decimal_list .policy_decimal_item a:hover {
    text-decoration: underline;
  }
}

.policy_block_wrap .policy_block .policy_decimal_list .policy_decimal_item strong {
  font-weight: 700;
}

.policy_block_wrap .policy_block .policy_decimal_list .policy_decimal_item ul {
  margin: 0.5rem 0 0 1.5rem;
}

.policy_block_wrap .policy_block .policy_disc_list {
  list-style-type: disc;
  list-style-position: inside;
}

.policy_block_wrap .policy_block .policy_disc_list .policy_disc_item {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #627384;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}

.policy_block_wrap .policy_block .policy_disc_list .policy_disc_item:last-child {
  margin: 0 0 0;
}

.policy_date {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.2rem;
  margin: 3rem 0 0;
}

.policy_date.center {
  text-align: center;
}

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

      logo.scss

=======================*/
.logo_header_block {
  padding: 1.5rem;
  background-color: #FFF;
  border-bottom: 1px solid #DAE0E7;
}

.logo_header_block .logo_header_inner {
  max-width: 1400px;
  margin: 0 auto;
}

.logo_header_block .logo_header_inner .logo_header_back_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
}

.logo_header_block .logo_header_inner .logo_header_back_btn .logo_header_back_btn_icon {
  width: 0.75rem;
  height: 0.75rem;
  background-image: url(../images/common/icon_back_arrow_m.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.logo_header_block .logo_header_inner .logo_header_back_btn .logo_header_back_btn_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.25rem;
}

@media only screen and (min-width: 960px) {
  .logo_header_block .logo_header_inner .logo_header_back_btn:hover .logo_header_back_btn_icon {
    background-image: url(../images/common/icon_back_arrow_p.svg);
  }
  .logo_header_block .logo_header_inner .logo_header_back_btn:hover .logo_header_back_btn_text {
    color: #20476F;
  }
}

.logo_content {
  padding: 5rem 0;
  background-color: #FFF;
}

.logo_img_wrap {
  width: 288px;
  height: 288px;
  border-radius: 0.5rem;
  background-color: #20476F;
  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 auto 4rem;
}

.logo_img_wrap .logo_img {
  width: 192px;
}

.logo_img_wrap .logo_img img {
  width: 100%;
}

.logo_list {
  margin: 0 0 3rem;
}

.logo_list .logo_item {
  margin: 0 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
}

.logo_list .logo_item:last-child {
  margin: 0 0 0;
}

.logo_list .logo_item .logo_item_icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(34, 115, 195, 0.1);
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.logo_list .logo_item .logo_item_icon img {
  display: block;
  width: 1.25rem;
}

.logo_list .logo_item .logo_item_detail .logo_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.25rem;
  color: #20476F;
  line-height: 1.75rem;
  margin: 0 0 1rem;
}

.logo_list .logo_item .logo_item_detail .logo_item_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #627384;
  line-height: 1.625;
}

.logo_philosophy {
  border-top: 1px solid #DAE0E7;
  border-bottom: 1px solid #DAE0E7;
  padding: 3rem 0;
  margin: 0 0 3rem;
}

.logo_philosophy .logo_philosophy_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;
  gap: 0.75rem;
  margin: 0 0 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: #2273C3;
  line-height: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.logo_philosophy .logo_philosophy_title img {
  display: block;
  width: 1rem;
}

.logo_philosophy .logo_philosophy_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-style: italic !important;
  font-size: 1rem;
  line-height: 1.625;
}

.logo_philosophy .logo_philosophy_text span {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-style: normal !important;
  color: #20476F;
}

.logo_relation_link {
  margin: 0 0 5rem;
}

.logo_relation_link .logo_relation_link_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #20476F;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
}

.logo_relation_link .logo_relation_link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.logo_relation_link .logo_relation_link_list .logo_relation_link_item .logo_relation_link_link {
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #2273C3;
  line-height: 1.5;
  text-decoration: underline;
}

@media only screen and (min-width: 960px) {
  .logo_relation_link .logo_relation_link_list .logo_relation_link_item .logo_relation_link_link:hover {
    color: #20476F;
  }
}

.logo_back_bottom_block {
  text-align: center;
}

.logo_back_bottom_block .logo_back_bottom_link {
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
}

.logo_back_bottom_block .logo_back_bottom_link .logo_back_bottom_link_icon {
  width: 0.75rem;
  height: 0.75rem;
  background-image: url(../images/common/icon_back_arrow_a.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.logo_back_bottom_block .logo_back_bottom_link .logo_back_bottom_link_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #2273C3;
  line-height: 1.5;
}

@media only screen and (min-width: 960px) {
  .logo_back_bottom_block .logo_back_bottom_link:hover .logo_back_bottom_link_icon {
    background-image: url(../images/common/icon_back_arrow_p.svg);
  }
  .logo_back_bottom_block .logo_back_bottom_link:hover .logo_back_bottom_link_text {
    color: #20476F;
  }
}

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

      community.scss

=======================*/
.community_sec_title_wrap {
  text-align: center;
  margin: 0 0 2.5rem;
}

.community_sec_title_wrap .community_sec_title {
  font-family: "Anton", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.875rem;
  color: #20476F;
  line-height: 2.25rem;
}

@media (max-width: 840px) {
  .community_sec_title_wrap .community_sec_title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.community_sec_title_wrap .community_sec_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #627384;
  line-height: 1.5;
  max-width: 36rem;
  margin: 1rem auto 0;
}

.community_title_sec {
  padding: 6rem 0;
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(32, 71, 111, 0.05)), color-stop(#FFF), to(rgba(34, 115, 195, 0.05)));
  background: linear-gradient(to bottom right, rgba(32, 71, 111, 0.05), #FFF, rgba(34, 115, 195, 0.05));
  text-align: center;
}

@media (max-width: 840px) {
  .community_title_sec {
    padding: 4rem 0;
  }
}

.community_title_sec .community_sub_title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(32, 71, 111, 0.1);
  margin: 0 0 1.5rem;
  border-radius: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: .875rem;
  color: #20476F;
  line-height: 1.25rem;
}

.community_title_sec .community_sub_title img {
  display: block;
  width: 1rem;
}

.community_title_sec .community_title {
  font-family: "Anton", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
  color: #20476F;
  line-height: 1;
  margin: 0 0 1.5rem;
}

@media (max-width: 840px) {
  .community_title_sec .community_title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.community_title_sec .community_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  color: #627384;
  line-height: 1.75rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (max-width: 840px) {
  .community_title_sec .community_text {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.community_title_sec .community_title_contact_btn {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #FFF;
  line-height: 1.25rem;
  padding: 0 2rem;
  height: 2.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  background-color: #20476F;
  border-radius: 6px;
}

.community_title_sec .community_title_contact_btn img {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 0.75rem;
  margin: 0 0 0 0.5rem;
}

@media only screen and (min-width: 960px) {
  .community_title_sec .community_title_contact_btn:hover {
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    /* shadow-soft */
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
}

.community_admin {
  background-color: #FFF;
  padding: 5rem 0;
}

@media (max-width: 840px) {
  .community_admin {
    padding: 4rem 0;
  }
}

.community_admin_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 840px) {
  .community_admin_list {
    gap: 2.5rem;
  }
}

.community_admin_list .community_admin_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 1.5rem;
}

@media (max-width: 840px) {
  .community_admin_list .community_admin_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
}

.community_admin_list .community_admin_item_img_title {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
}

.community_admin_list .community_admin_item_img_title .community_admin_item_img {
  display: block;
  width: 10rem;
  height: 10rem;
  margin: 0 0 0.75rem;
}

.community_admin_list .community_admin_item_img_title .community_admin_item_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  border-radius: 50%;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  /* shadow-soft */
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
}

@media only screen and (min-width: 960px) {
  .community_admin_list .community_admin_item_img_title .community_admin_item_img img:hover {
    opacity: 0.9;
  }
}

.community_admin_list .community_admin_item_img_title .community_admin_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #20476F;
  line-height: 1.5;
}

.community_admin_list .community_admin_item_detail {
  text-align: left;
}

.community_admin_list .community_admin_item_detail .community_admin_item_text {
  max-width: 20rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.25rem;
  margin: 0 0 0.75rem;
}

@media (max-width: 840px) {
  .community_admin_list .community_admin_item_detail .community_admin_item_text {
    text-align: center;
  }
}

.community_admin_list .community_admin_item_detail .community_admin_item_sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.75rem;
}

@media (max-width: 840px) {
  .community_admin_list .community_admin_item_detail .community_admin_item_sns_list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.community_admin_list .community_admin_item_detail .community_admin_item_sns_list .community_admin_item_sns_item .community_admin_item_sns_link {
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  padding: 0.375rem 0.75rem;
  background-color: rgba(32, 71, 111, 0.1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.375rem;
  border-radius: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.75rem;
  color: #20476F;
  line-height: 1rem;
}

.community_admin_list .community_admin_item_detail .community_admin_item_sns_list .community_admin_item_sns_item .community_admin_item_sns_link img {
  display: block;
  width: 0.875rem;
  vertical-align: middle;
}

@media only screen and (min-width: 960px) {
  .community_admin_list .community_admin_item_detail .community_admin_item_sns_list .community_admin_item_sns_item .community_admin_item_sns_link:hover {
    background-color: rgba(32, 71, 111, 0.2);
  }
}

.community_can {
  padding: 6rem 0;
  background-color: #FFF;
}

@media (max-width: 840px) {
  .community_can {
    padding: 4rem 0;
  }
}

.community_can_box_wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (max-width: 840px) {
  .community_can_box_wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.community_can_box_wrap .community_can_box {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  padding: 1.5rem;
  background-color: #F8FAFB;
  border: 1px solid rgba(218, 224, 231, 0.5);
  border-radius: 1rem;
}

.community_can_box_wrap .community_can_box .community_can_box_icon {
  background-color: rgba(32, 71, 111, 0.1);
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  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 1rem;
}

.community_can_box_wrap .community_can_box .community_can_box_icon img {
  display: block;
  height: 1.25rem;
  width: auto;
}

.community_can_box_wrap .community_can_box .community_can_box_title {
  font-family: "Anton", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.125rem;
  color: #20476F;
  line-height: 1.75rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.community_can_box_wrap .community_can_box .community_can_box_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.625;
}

@media only screen and (min-width: 960px) {
  .community_can_box_wrap .community_can_box:hover {
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    /* shadow-soft */
    border: 1px solid rgba(34, 115, 195, 0.3);
  }
}

.community_event {
  padding: 6rem 0;
  background-color: rgba(243, 245, 247, 0.3);
}

@media (max-width: 840px) {
  .community_event {
    padding: 4rem 0;
  }
}

.community_event_list .community_event_item {
  margin: 0 0 1rem;
}

.community_event_list .community_event_item .community_event_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 1rem;
  padding: 1.25rem;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #F8FAFB;
  border: 1px solid rgba(218, 224, 231, 0.5);
}

.community_event_list .community_event_item .community_event_link .community_event_link_date {
  text-align: center;
  width: 4rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.25rem;
  color: #20476F;
  line-height: 1.75rem;
}

.community_event_list .community_event_item .community_event_link .community_event_link_date span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: #627384;
  line-height: 1rem;
}

.community_event_list .community_event_item .community_event_link .community_event_link_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
  color: #20476F;
  line-height: 1.5;
}

.community_event_list .community_event_item .community_event_link .community_event_link_title span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  color: #627384;
  line-height: 1.25rem;
}

@media only screen and (min-width: 960px) {
  .community_event_list .community_event_item .community_event_link:hover {
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    /* shadow-soft */
    border: 1px solid rgba(32, 71, 111, 0.3);
  }
}

.community_step {
  padding: 6rem 0;
  background-color: #FFF;
}

@media (max-width: 840px) {
  .community_step {
    padding: 4rem 0;
  }
}

.community_step_list {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  /* shadow-soft */
  padding: 2rem;
  background-color: #F8FAFB;
  border: 1px solid rgba(218, 224, 231, 0.5);
  border-radius: 1rem;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 1.5rem;
}

@media (max-width: 840px) {
  .community_step_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.community_step_list .community_step_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.community_step_list .community_step_item .community_step_item_num {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #20476F;
  border-radius: 50%;
  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;
}

.community_step_list .community_step_item .community_step_item_num span {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
}

.community_step_list .community_step_item .community_step_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #20476F;
  line-height: 1.5;
}

.community_step_list .community_step_item_arrow {
  width: 1rem;
}

@media (max-width: 840px) {
  .community_step_list .community_step_item_arrow {
    display: none;
  }
}

.community_step_list .community_step_item_arrow img {
  width: 100%;
}

.community_contact {
  padding: 6rem 0;
  background-color: #FFF;
}

@media (max-width: 840px) {
  .community_contact {
    padding: 4rem 0;
  }
}

.community_contact_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 1rem;
}

@media (max-width: 640px) {
  .community_contact_btn_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.community_contact_btn_wrap .community_contact_btn {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  /* shadow-soft */
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #20476F;
  padding: 0 2rem;
  height: 2.75rem;
  border-radius: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  color: #FFF;
  line-height: 1.25rem;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
}

.community_contact_btn_wrap .community_contact_btn img {
  display: block;
  width: 0.875rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 0 0 0.5rem;
}

@media only screen and (min-width: 960px) {
  .community_contact_btn_wrap .community_contact_btn:hover {
    background-color: rgba(32, 71, 111, 0.9);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
}

.community_contact_btn_wrap .community_detail_btn {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variant: 0.875rem;
  color: #20476F;
  line-height: 1.25rem;
  padding: 0 2rem;
  height: 2.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 6px;
  border: 1px solid rgba(32, 71, 111, 0.3);
}

@media only screen and (min-width: 960px) {
  .community_contact_btn_wrap .community_detail_btn:hover {
    color: #FFF;
    background-color: rgba(32, 71, 111, 0.05);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
}

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

      notfound.scss

=======================*/
.notfound {
  min-height: 100vh;
  padding: 6rem 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;
  background-color: #F3F5F7;
}

@media (max-width: 840px) {
  .notfound {
    padding: 4rem 0;
  }
}

.notfound .notfound_content {
  text-align: center;
}

.notfound .notfound_content .notfound_title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.25rem;
  color: #20476F;
  line-height: 2.5rem;
  margin: 0 0 1rem;
}

.notfound .notfound_content .notfound_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.25rem;
  color: #627384;
  line-height: 1.75rem;
  margin: 0 0 1rem;
}

.notfound .notfound_content .notfound_link {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #20476F;
  line-height: 1.5;
  text-decoration: underline;
}

@media only screen and (min-width: 960px) {
  .notfound .notfound_content .notfound_link:hover {
    color: rgba(32, 71, 111, 0.9);
  }
}

/* ======================= 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;
  letter-spacing: 0.01em;
  color: #16385A;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

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;
}

.fe_r {
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.fe_m {
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 500 !important;
  font-style: normal !important;
}

.fe_anton {
  font-family: "Anton", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.fe_r_i {
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
}

.fe_m_i {
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 500 !important;
  font-style: italic !important;
}

.fe_b {
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
}
