@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　Re:LIVEナビ　テンプレート設定(template-style.css)ver.1 2025.6.26
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*■■■■■■ HEADER ■■■■■■■*/
header {
  margin: 0;
  padding: 10px 0;
  background-color: #FFF;
}

.header-logo-box {
  margin: 0;
}
.header-logo-box a {
  margin: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /*上下のセンター*/
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start; /*左右のセンター*/
  gap: 15px;
  z-index: 399;
}
.header-logo-box a img {
  width: auto;
  height: 60px;
}

.logo-type {
  padding: 0;
  font-size: 3.4rem;
  color: #222;
  font-weight: 700;
  line-height: 1.2;
}
.logo-type small {
  font-size: 1.2rem;
  display: block;
}

/*ナビゲーション レイアウト(XS)*/
.nav.nav_list {
  overflow-y: scroll;
}

.nav_list {
  margin: 32px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /*上下のセンター*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /**/
}
.nav_list li {
  margin: x 0;
  position: relative;
  border-bottom: 1px solid #CCC;
}
.nav_list li a {
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 16px;
}
.nav_list li a:link, .nav_list li a:visited {
  color: #222;
}
.nav_list li a:hover, .nav_list li a:active {
  color: #FF0199;
}

.nav_list li a:before {
  margin-right: 4px;
  content: "● ";
  color: #9E99E5;
}

.nav_list li.has-child > a {
  display: block;
  position: relative;
}

.nav_list li.has-child > a:after {
  content: "";
  position: absolute;
  top: 25px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-color: #DDD;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 29;
}

/* デフォルトの矢印スタイル */
.nav_list li.has-child > a:before {
  margin-top: 5px;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-width: 1px 1px 0 0;
  border-color: #000;
  border-style: solid;
  position: absolute;
  right: 20px;
  top: 18px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* 初期状態で45度 */
  z-index: 30;
  -webkit-transition: margin-top 0.2s, right 0.2s, -webkit-transform 0.2s;
  transition: margin-top 0.2s, right 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, margin-top 0.2s, right 0.2s;
  transition: transform 0.2s, margin-top 0.2s, right 0.2s, -webkit-transform 0.2s; /* 回転のみをアニメーション対象に */
}

/* activeクラスが付与されたときのスタイル */
.nav_list li.has-child.active > a:before {
  margin-top: 3px; /* 矢印の位置を微調整 */
  right: 19px; /* 矢印の位置を微調整 */
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg); /* active時に135度に回転 */
}

/*第二階層（XS）*/
.nav_list li.has-child {
  display: block;
}

.nav_list li.has-child ul {
  margin: 0;
  padding: 5px 0;
  position: relative;
  background: #FFF;
  border-radius: 3px;
  top: 0;
  left: 0;
  z-index: 31;
}
.nav_list li.has-child ul li {
  padding: 0;
}
.nav_list li.has-child ul li a {
  font-size: 1.6rem;
  cursor: pointer;
  font-weight: 700;
}

/*ハンバーガーメニュー*/
.nav {
  position: fixed;
  right: -100vw; /* 右から出てくる */
  top: 10px;
  width: 320px; /* スマホに収まるサイズ */
  height: auto;
  padding-top: 70px;
  background-color: #fff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 400;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  -webkit-filter: drop-shadow(#999 0 0 0.3rem);
          filter: drop-shadow(#999 0 0 0.3rem);
}

.hamburger {
  padding-top: 0;
  margin-right: 0;
  position: fixed;
  right: 15px;
  top: 15px;
  width: 48px; /* クリックしやすい幅 */
  height: 48px; /* クリックしやすい高さ */
  border-radius: 24px;
  cursor: pointer;
  z-index: 401;
  background-color: #9E99E5;
  font-size: 0.9rem;
  text-align: center;
}

.nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: block;
}
.nav_item {
  text-align: center;
  padding: 0 14px;
}

.nav_item a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
}

.nav_item a:hover {
  background-color: #eee;
}

.hamburger_border {
  position: absolute;
  right: 14px;
  width: 20px;
  height: 2px;
  background-color: #FFF;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.hamburger_border_top {
  top: 17px;
}

.hamburger_border_center {
  top: 23px;
}

.hamburger_border_bottom {
  top: 29px;
}

/* 表示された時用のCSS */
.nav-open .nav {
  top: 10px;
  right: 10px;
  border-radius: 10px;
}

.nav-open .black_bg {
  opacity: 0.8;
  visibility: visible;
}

.nav-open .hamburger {
  background-color: #5E55D4;
}

.nav-open .hamburger_border_top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 22px;
}

.nav-open .hamburger_border_center {
  width: 0;
  left: 50%;
}

.nav-open .hamburger_border_bottom {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 22px;
}

.nav-open .hamburger_border {
  position: absolute;
  background-color: #FFF;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-open .hamburger_border_center {
  display: none;
}

/*■■■■■■ CONTENTS MAIN ■■■■■■■*/
.footer-flex-box {
  padding: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*■■■■■■ FOOTER ■■■■■■■*/
/*ロゴ*/
.logo-block {
  margin: auto;
  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;
}
.logo-block img {
  width: 180px;
  height: auto;
}

.corpo-name {
  margin: 15px auto 5px;
  display: block;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
}

.corop-adress {
  font-size: 1.6rem;
}
.corop-adress br {
  display: none;
}

.corpo-tel {
  margin: 5px 0 0;
  font-size: 2.8rem;
  font-weight: 800;
  color: #F380C5;
}

.btn-contact > a {
  margin: 15px 0 20px;
  padding: 6px 40px 8px;
  display: inline-block;
  background-color: #FF0199;
  font-size: 2rem;
  letter-spacing: 2px;
  line-heiht: 1;
  border-radius: 3rem;
  font-weight: 700;
  color: #FFF;
}

.btn-contact > a:link,
.btn-contact > a:visited {
  color: #FFF;
}

.btn-contact > a:hover,
.btn-contact > a:active {
  color: #FFF;
  background-color: #F380C5;
}

footer {
  margin: 0;
  padding: 40px 0;
  background-color: #000;
  background: -webkit-gradient(linear, left top, left bottom, from(#46418D), to(#232147));
  background: linear-gradient(to bottom, #46418D, #232147); /* グラデーション背景 */
  color: #FFF;
}

.copyright-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 80px;
}

.text-copyright {
  margin: auto;
  width: auto;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
}

/*■■■■■■■ Map 埋め込み ■■■■■■*/
.gglmap-box {
  display: block;
  width: 100%;
  height: 0;
  padding: 75% 0 0 0;
  margin: 0;
  position: relative;
}
.gglmap-box iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

/*■■■■■■■■■■■■■*/
/*■■■■■■■ トップに戻るボタン ■■■■■■*/
.pagetop {
  cursor: pointer;
  position: fixed;
  left: 16px;
  bottom: 16px;
  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: 48px;
  height: 48px;
  border-radius: 24px;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #9E99E5;
  /*   デフォルトは非表示 */
  opacity: 0;
}

.pagetop:hover {
  background: #5E55D4;
}

.pagetop:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-width: 6px 0 0 6px;
  border-color: #FFF;
  border-style: solid;
  position: absolute;
  bottom: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  /*■■■■■■ HEADER (XS) ■■■■■■■*/
  header {
    margin: 0;
    padding: 10px 0;
    background-color: #FFF;
  }
  .header-logo-box {
    margin: 0;
  }
  .header-logo-box a {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    height: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /*上下のセンター*/
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start; /*左右のセンター*/
    gap: 15px;
    z-index: 399;
  }
  .header-logo-box a img {
    width: auto;
    height: 60px;
  }
  .logo-type {
    padding: 0;
    font-size: 3.4rem;
    color: #222;
    font-weight: 700;
    line-height: 1.2;
  }
  .logo-type small {
    font-size: 1.2rem;
    display: block;
  }
  /*■■■■■■ FOOTER ■■■■■■■*/
  /*ロゴ*/
  .logo-block {
    margin: auto;
    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;
  }
  .logo-block img {
    width: 140px;
    height: auto;
  }
  .corop-adress {
    font-size: 1.6rem;
  }
  .corop-adress br {
    display: block;
  }
  /*フッターレイアウト(XS)*/
  .footer-flex-box {
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  /*Google Map(XS)*/
  .gglmap-box {
    margin: 40px auto 0;
  }
  /*フッター(XS)*/
  .copyright-block {
    padding: 0 0 0 50px;
    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: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 80px;
  }
  .text-copyright {
    margin: 10ps auto auto;
    width: 100%;
    text-align: center;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
  }
  .foot-logo-aflac {
    margin: auto auto 10px;
    display: inline-block;
  }
  .foot-logo-aflac img {
    width: 80px;
  }
  /*■■■■■■■ トップに戻るボタン ■■■■■■*/
  .pagetop {
    bottom: 16px;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*ヘッダー（SM）*/
  .corpo-type {
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: 10px;
    font-weight: 600;
  }
  /*ナビゲーション レイアウト(SM)*/
  .nav.nav_list {
    overflow-y: scroll;
  }
  .nav_list {
    margin: 32px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /*上下のセンター*/
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; /**/
  }
  .nav_list li {
    margin: x 0;
    position: relative;
  }
  .nav_list li a {
    font-size: 2rem;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 16px;
  }
  .nav_list li a:link, .nav_list li a:visited {
    color: #222;
  }
  .nav_list li a:hover, .nav_list li a:active {
    color: #222;
  }
  .nav_list li.has-child > a {
    display: block;
    position: relative;
  }
  .nav_list li.has-child > a:after {
    content: "";
    position: absolute;
    top: 25px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-color: #DDD;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 29;
  }
  /* デフォルトの矢印スタイル */
  .nav_list li.has-child > a:before {
    margin-top: 5px;
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-width: 1px 1px 0 0;
    border-color: #000;
    border-style: solid;
    position: absolute;
    right: 20px;
    top: 18px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); /* 初期状態で45度 */
    z-index: 30;
    -webkit-transition: margin-top 0.2s, right 0.2s, -webkit-transform 0.2s;
    transition: margin-top 0.2s, right 0.2s, -webkit-transform 0.2s;
    transition: transform 0.2s, margin-top 0.2s, right 0.2s;
    transition: transform 0.2s, margin-top 0.2s, right 0.2s, -webkit-transform 0.2s; /* 回転のみをアニメーション対象に */
  }
  /* activeクラスが付与されたときのスタイル */
  .nav_list li.has-child.active > a:before {
    margin-top: 3px; /* 矢印の位置を微調整 */
    right: 19px; /* 矢印の位置を微調整 */
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg); /* active時に135度に回転 */
  }
  /*第二階層（SM）*/
  .nav_list li.has-child {
    display: block;
  }
  .nav_list li.has-child ul {
    margin: 0;
    padding: 5px 0;
    position: relative;
    background: #FFF;
    border-radius: 3px;
    top: 0;
    left: 0;
    z-index: 31;
  }
  .nav_list li.has-child ul li {
    padding: 0;
  }
  .nav_list li.has-child ul li a {
    font-size: 1.6rem;
    cursor: pointer;
    font-weight: 700;
  }
  /*ハンバーガーメニュー*/
  .nav {
    position: fixed;
    right: -320px; /* 下から出てくる */
    top: 10px;
    width: 300px; /* スマホに収まるサイズ */
    height: 96vh;
    padding-top: 70px;
    background-color: #fff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    z-index: 400;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    padding-top: 0;
    margin-right: 0;
    position: fixed;
    right: 15px;
    top: 15px;
    width: 48px; /* クリックしやすい幅 */
    height: 48px; /* クリックしやすい高さ */
    border-radius: 24px;
    cursor: pointer;
    z-index: 300;
    background-color: #F380C5;
    border: 1px solid #FFF;
    font-size: 0.9rem;
    text-align: center;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: block;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    left: 13px;
    width: 20px;
    height: 2px;
    background-color: #FFF;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 10000;
  }
  .hamburger_border_top {
    top: 16px;
  }
  .hamburger_border_center {
    top: 22px;
  }
  .hamburger_border_bottom {
    top: 28px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .nav {
    top: 10px;
    left: 10px;
    border-radius: 10px;
  }
  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open .hamburger {
    background-color: #fff;
    border: 1px solid #ccc;
  }
  .nav-open .hamburger_border_top {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 22px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 22px;
  }
  .nav-open .hamburger_border {
    position: absolute;
    background-color: #000;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .nav-open .hamburger_border_center {
    display: none;
  }
  /*フッター(SM)*/
  /*Google Map(SM)*/
  .gglmap-box {
    margin: 40px auto 0;
  }
  /*フッターレイアウト(SM)*/
  .footer-flex-box {
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*ヘッダー（MD）*/
} /*//MD*/
/*------------(LG)------------*/
/*//LG*/
/*------------(XL)------------*/
/*//XL*/
/*----------特殊　320px~1024 ハンバーガーメニュー共有----------*/
/*------------(XS)------------*/
/*//(XXS)*/