@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #000000;
  --black-color02: #383e45;
  --black-color03: #393e46;
  --white-color: #fff;
  --gray-color: #ccc;
  --primary-color: #00c4cc;
  --accent-color: #0d7f85;
}

body {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  min-height: 100vh;
}




/* ===========================
  header
=========================== */
.header {
  background-color: #173A72;
}

.header__inner {
  max-width: 750px;
  margin: 0 auto;
}

.header__logo {
  width: 100%;
  height: auto;
  display: block;
}

/* 全セクション共通スタイル */
[class*="__inner"] {
  max-width: 750px;
  margin: 0 auto;
}

[class*="__img"] {
  width: 750px;
  height: auto;
  display: block;
}

/* whyセクション */
.why__inner {
  position: relative;
}

.cta-1_link {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 80%;
  height: auto;
}

.cta-1__img {
  width: 100%;
  height: auto;
}

/* cta-2セクション */
.cta-2__inner {
  position: relative;
}

.cta-2_link {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 90%;
  height: auto;
}

.cta-2__img {
  width: 100%;
  height: auto;
}

/* frame ctaセクション */
.frame__inner {
  position: relative;
}

.cta-3_link {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 80%;
  height: auto;
}

.cta-3__img {
  width: 100%;
  height: auto;
}

/* cta-lastセクション */

.cta-last__inner {
  position: relative;
}

.cta-last__img {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: block;
}

.cta-last_link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 90%;
  height: auto;
}

.cta-last__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================
  worries-title スライダー
=========================== */
.worries-title__inner {
  background-image: linear-gradient(0deg, #fff 0%, #F1F7FF 100%);
  padding: 56.5px 0 72.5px;
}

.worries-title__img{
  padding-bottom: 40px;
}

.worries-title__slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider1,
.slider2 {
  width: 100%;
  overflow: visible;
}

.slider1 .swiper-wrapper,
.slider2 .swiper-wrapper {
  transition-timing-function: linear !important;
}

.slider1 .swiper-slide,
.slider2 .swiper-slide {
  width: auto;
}

.worries-title__card-image {
  width: 270px;
  height: 310px;
  display: block;
}

.worries-title__inner2 {
  background-image: linear-gradient(0deg, #BADCFF 0%, #DEF0FF 23%, #D3EFFF 100%);
  padding: 24px 0 48px;
}

.worries-title__img2 {
  padding-bottom: 48px;
}

.worries-title__card-image2 {
  width: 270px;
  height: 310px;
  display: block;
}

/* ===========================
  アコーディオン
=========================== */
.store-section {
  background-color: #EEF6FF;
  padding: 40px 0;
}

.store-section__inner {
  max-width: 750px;
  margin: 0 auto;
}

.store-item {
  margin-bottom: 10px;
}

.store-item:last-child {
  margin-bottom: 0;
}

.store-item__label {
  position: relative;
  cursor: pointer;
  display: block;
}

.store-item__label img {
  width: 100%;
  height: auto;
  display: block;
}

.store-item__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  pointer-events: none;
}

.store-item__content {
  display: none;
  overflow: hidden;
  margin-top: 10px;
}

.store-item__content img {
  width: 100%;
  height: auto;
  display: block;
}

.store-item .store-item__content {
  display: block;
}

/* ===========================
  フローティングバナー
=========================== */
.floating-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  padding: 10px 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, bottom 0.3s;
}

.floating-banner.is-visible {
  opacity: 1;
  visibility: visible;
}

.floating-banner.is-above-footer {
  position: absolute;
  bottom: auto;
}

.floating-banner__link {
  display: block;
  max-width: 750px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.floating-banner__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ===========================
  フッター
=========================== */
.footer {
  background-color: #173A72;
  padding: 30px 20px;
  text-align: center;
}

.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 20px;
}

.footer__link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__separator {
  color: #fff;
  margin: 0 10px;
  font-size: 14px;
}

.footer__copyright {
  color: #fff;
  font-size: 12px;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  padding: 20px;
  overflow: auto;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
  background-color: #ceecfa;
}
.modal.active {
  visibility: visible;
  opacity: 1;
}
.modal.active .sp_modal_close {
  visibility: visible;
  opacity: 1;
}
.modal::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal_body {
  display: inline-block;
  vertical-align: middle;
  width: 98%;
  max-width: 600px;
  position: relative;
  background-color: transparent;
  border-radius: 0;
  padding: 50px 12px 30px;
}

.modal_close_btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.modal_close_btn::before,
.modal_close_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}
.modal_close_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal_close_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal_close_btn:hover::before,
.modal_close_btn:hover::after {
  background-color: #666;
}

.modal_inner {
  max-width: 146.8em;
  margin-left: auto;
  margin-right: auto;
}

.modal_close {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: unset;
  border: none;
  box-shadow: none;
  border-radius: 0;
  width: 10em;
  margin-left: auto;
  display: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .modal_close {
    display: block;
  }
}

.modal_contents {
  text-align: left;
}

/* .modal_branch_area {
  position: relative;
  z-index: 1;
}
.modal_branch_area::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: -1;
}
.modal_branch_area span 
  display: inline-block;
  background-color: #ceecfa;
  padding-right: 0.5em;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.03em;
} */

.modal_branch_lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5em;
  row-gap: 1.6em;
  margin-top: 1.2em;
  margin-bottom: 2.4em;
}

.modal_branch_list_name {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
  padding-left: 1em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .modal_branch_list_name {
    font-size: 1.4em;
  }
}
.modal_branch_list_name::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

.modal_branch_button {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.03em;
  height: 2em;
  border-radius: 5em;
  background-color: #ffdc00;
  border: 0.09375em solid #ff0000;
  padding: 0.2em 0.8em;
  transition: filter 0.3s ease;
  position: relative;
  box-shadow: 0 0.1875em 0.3125em rgba(0, 0, 0, 0.4);
  margin-top: 0.5em;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.modal_branch_button:hover {
  filter: brightness(1.1);
}
.modal_branch_button:hover::before {
  transform: translate(0.15em, -50%) rotate(-45deg);
}
.modal_branch_button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  aspect-ratio: 1/1;
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 0.125em solid #000;
  border-right: 0.125em solid #000;
  width: 0.4em;
  transition: transform 0.3s ease;
}
.modal_branch_button.-web {
  color: #023c77;
}
.modal_branch_button span.lg {
  font-size: 1.0625em;
}

.modal_cta {
  max-width: 36.625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .modal_cta {
    max-width: 66.8em;
    margin-bottom: 3em;
  }
}

.modal_region_band {
  background: linear-gradient(to right, #00379B, #3770D9);
  color: #fff;
  text-align: center;
  font-size: 1.15em;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.4em 0;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  width: 100%;
  border-radius: 0;
}
.modal_region_band:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .modal_region_band {
    font-size: 1.3em;
    padding: 0.4em 0;
    margin-top: 2em;
    margin-bottom: 1em;
  }
}

.modal_cta_img2{
  margin-top: 60px;
}
/* ===========================
  SP表示用スタイル
=========================== */
@media (max-width: 750px) {
  /* 全セクション共通スタイル */
  [class*="__img"] {
    width: 100%;
    max-width: 750px;
  }
}



