@charset "utf-8";

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

/*  フォント
/* ==================================================== */
/* ==================================================== */

/*  フォントサイズ
/* ==================================================== */
:root {
  --fs72: clamp(7rem, 5.2vw, 7.2rem);
  --fs48: clamp(4.3rem, 3.5vw, 4.8rem);
  --fs47: clamp(4.2rem, 3.4vw, 4.7rem);
  --fs42: clamp(4rem, 3vw, 4.2rem);
  --fs38: clamp(3.5rem, 2.7vw, 3.8rem);
  --fs32: clamp(3rem, 2.3vw, 3.2rem);
  --fs28: clamp(2.3rem, 2.04vw, 2.8rem);
  --fs27: clamp(2.3rem, 1.97vw, 2.7rem);
  --fs25: clamp(2.3rem, 1.83vw, 2.5rem);
  --fs24: clamp(2.2rem, 1.756vw, 2.4rem);
  --fs23: clamp(2.1rem, 1.68vw, 2.3rem);
  --fs22: clamp(2rem, 1.6vw, 2.2rem);
  --fs21: clamp(1.8rem, 1.53vw, 2.1rem);
  --fs20: clamp(1.7rem, 1.4vw, 2rem);
  --fs18: clamp(1.5rem, 1.3vw, 1.8rem);
  --fs17: clamp(1.5rem, 1.2vw, 1.7rem);
  --fs16: clamp(15px, calc(15px + (16 - 15) * ((100vw - 768px) / (1366 - 768))), 16px);
  --fs15: clamp(14px, calc(14px + (15 - 14) * ((100vw - 768px) / (1366 - 768))), 15px);
  --fs14: clamp(13px, calc(13px + (14 - 13) * ((100vw - 768px) / (1366 - 768))), 14px);
  --fs13: clamp(12px, calc(12px + (13 - 12) * ((100vw - 768px) / (1366 - 768))), 13px);
  --fs12: clamp(11px, calc(11px + (12 - 11) * ((100vw - 768px) / (1366 - 768))), 12px);
}
@media screen and (max-width: 767px) {
  :root {
    --fs53: min(14.1vw, 5.3rem);
    --fs30: min(8vw, 3rem);
    --fs29: min(7.7vw, 2.9rem);
    --fs28: min(7.4vw, 2.8rem);
    --fs26: min(6.9vw, 2.6rem);
    --fs24: min(6.4vw, 2.4rem);
    --fs21: min(5.6vw, 2.1rem);
    --fs20: min(5.3vw, 2rem);
    --fs19: min(5.06vw, 1.9rem);
    --fs18: min(4.8vw, 1.8rem);
    --fs17: min(4.5vw, 1.7rem);
    --fs16: min(4.26vw, 1.6rem);
    --fs15: min(4vw, 1.5rem);
    --fs14: min(3.7vw, 1.4rem);
    --fs13: min(3.46vw, 1.3rem);
    --fs12: min(3.2vw, 1.2rem);
    --fs11: min(2.96vw, 1.1rem);
    --fs10: min(2.6vw, 1rem);
  }
}
/* ==================================================== */

/*  基本
/* ==================================================== */
html {
  overflow-x: hidden !important;
}
html,
body {
  width: 100%;
  height: 100%;
  background-color: #fdf9ed;
  font-size: 62.5%;
}
body {
  position: relative;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: var(--fs15);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #000;

  -webkit-font-smoothing: antialiased;
}
body.active {
  /*ハンバーガーメニューを開いたら背景固定*/
  position: fixed;
  width: 100%;
}
main {
  display: block;
}
main figure {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
a:hover {
  transition: opacity 0.3s ease;
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  a a[href^="tel"] {
    pointer-events: none;
  }
  a:hover {
    transition: opacity 0.3s ease;
    opacity: 0.7;
  }
}
img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  /*IEでimgタグのsrcにsvgを指定した時に崩れる防止*/
  width: 100%;
  height: auto;
}
sup {
  position: relative;
  top: -0.1em;
  font-size: 70%;
  vertical-align: top;
}
sub {
  position: relative;
  bottom: -0.1em;
  font-size: 70%;
  vertical-align: bottom;
}

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

/*  全ページ共通（common）クラス
/* ==================================================== */
.flex {
  display: -webkit-box;
  display:    -moz-box;
  display: -webkit-flexbox;
  display:    -moz-flexbox;
  display:     -ms-flexbox;
  display: -webkit-flex;
  display:    -moz-flex;
  display:         flex;

  -js-display: flex;
}
.c-pc-only {
  display: inline-block !important;
}
.c-tab-only {
  display: none !important;
}
.c-sp-only {
  display: none !important;
}
.c-tab-over {
  display: inline-block !important;
}
.c-tab-less {
  display: none !important;
}
.clear {
  clear: both !important;
}
.c-justify {
  text-align: justify;
  text-justify: inter-ideograph;
  text-justify: inter-character;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-pc-only {
    display: none !important;
  }
  .c-tab-only {
    display: inline-block !important;
  }
  .c-sp-only {
    display: none !important;
  }
  .c-tab-over {
    display: inline-block !important;
  }
  .c-tab-less {
    display: inline-block !important;
  }
}
@media screen and (max-width: 767px) {
  .c-pc-only {
    display: none !important;
  }
  .c-tab-only {
    display: none !important;
  }
  .c-sp-only {
    display: inline-block !important;
  }
  .c-tab-over {
    display: none !important;
  }
  .c-tab-less {
    display: inline-block !important;
  }
}

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

/*  全ページ共通レイアウト
/* ==================================================== */
/*header*/
header {
  /* position: absolute; */
  position: fixed;
  top: 0;
  z-index: 993;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 0;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
}
.l-header-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 1.46% 0 1.3%;
}
.l-header-area .logo {
  position: relative;
  z-index: 6;
  width: 27%;
}
.l-header-area .logo a {
  -webkit-box-align: start;
  align-items: flex-start;
  -ms-flex-align: start;
}
.l-header-area .logo p {
  padding: 7px 14px;
  border-radius: 4px;
  background-color: #efc71e;
  font-size: var(--fs15);
  font-size: min(1vw, 1.5rem);
  font-weight: bold;
  color: #fff;
}
.l-header-area .logo figure {
  width: 15vw;
  max-width: 206px;
  margin-right: 7%;
}
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  -ms-flex-align: start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 73%;
}
.header-nav .nav-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 14px;
}
.header-nav .nav-parent .up-nav {
  width: 100%;
}
.header-nav .nav-parent .up-nav .flex {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 13px;
  font-size: 1.3rem;
  font-weight: 500;
}
.header-nav .nav-parent .up-nav .flex p:last-child {
  position: relative;
  margin-left: 23px;
}
.header-nav .nav-parent .up-nav .flex p:last-child:before {
  position: absolute;
  top: 3px;
  left: -11px;
  width: 1px;
  height: 74%;
  background-color: #000;
  content: "";
}
.header-nav .nav-parent .up-nav .flex p a[target="_blank"]:after {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin: 0 0 3px 3px;
  background-image: url(../img/common/header_target.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.header-nav .nav-parent .up-nav .flex p:last-child a:after {
  display: inline-block;
  width: 22.18px;
  height: 21.13px;
  margin: 0 0 2px 5px;
  background-image: url(../img/common/icon_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.header-nav .nav-parent > li.nav {
  padding: 0 23px 0;
  font-size: var(--fs18);
  font-weight: bold;
  transition: all 0.5s ease-in-out;
}
.header-nav .nav-parent > li.nav-04 {
  padding-right: 0;
}
.header-nav .nav-parent > li a {
  text-align: center;
}
.header-nav .nav-parent > li.header-nav-parent {
  position: relative;
}
.header-nav .nav-parent > li.header-nav-parent a {
  padding-bottom: 20px;
}
.header-nav .nav-parent > li.header-nav-parent .header-nav-child {
  position: absolute;
  top: 50px;
  left: 50%;
  display: none;
  width: 200px;
  padding: 30px;
  background-color: #000;
  text-align: center;
  color: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header-nav .nav-parent > li.header-nav-parent .header-nav-child.open {
  display: block;
}
.header-nav .nav-parent > li.sp-only-nav {
  display: none;
}
.header-nav .entry-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 2.8%;
}
.header-nav .entry-btn a {
  display: block;
  width: 8.3vw;
  max-width: 114px;
}
.header-nav .entry-btn a:last-child {
  margin-left: 6px;
}
.header-hamburger {
  display: none;
}
@media (max-width: 1180px) {
  .header-nav .nav-parent .up-nav .flex {
    margin-bottom: 0;
  }
  .l-header-area .logo figure {
    width: 17vw;
    margin-right: 5%;
  }
  .l-header-area .logo p {
    padding: 4px 9px;
  }
  .header-nav .nav-parent > li.nav {
    padding: 13px;
    font-size: var(--fs15);
  }
}
@media (max-width: 1024px) {
  header {
    position: relative;
    background-color: transparent;
  }
  .l-header-area {
    position: relative;
    z-index: 4;
    height: auto;
    padding: 30px 0 0 2.6%;
  }
  .l-header-area .logo {
    z-index: 991;
    width: auto;
  }
  .l-header-area .logo a {
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
  }
  .l-header-area .logo figure {
    width: 136px;
    max-width: none;
    margin-right: 7px;
  }
  .l-header-area .logo p {
    padding: 3px 12px;
    font-size: var(--fs14);
  }
  .header-nav {
    width: auto;
  }
  .header-nav .entry-btn {
    display: none;
  }
  .header-nav .nav-parent {
    display: none;
  }
  .header-nav .nav-parent .up-nav {
    display: none;
  }
  .header-nav .nav-parent > li.header-nav-parent a {
    padding: 10px 0 0;
  }
  .header-nav .nav-parent > li.header-nav-parent .menu_parent__wrapper .menu_parent {
    position: relative;
  }
  .header-nav .nav-parent > li.header-nav-parent .menu_parent__wrapper .menu_parent:before,
  .header-nav .nav-parent > li.header-nav-parent .menu_parent__wrapper .menu_parent:after {
    position: absolute;
    top: 50%;
    right: -8px;
    display: block;
    width: 12px;
    height: 1px;
    border: none;
    background: #000;
    content: "";
    -webkit-transition: all 0.4s;
            transition: all 0.4s;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .header-nav .nav-parent > li.header-nav-parent .menu_parent__wrapper .menu_parent:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .header-nav .nav-parent > li.header-nav-parent .menu_parent__wrapper .menu_parent.open {
    margin-bottom: 0;
  }
  .header-nav .nav-parent > li.header-nav-parent .menu_parent__wrapper .menu_parent.open:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  .header-nav .nav-parent > li.header-nav-parent .header-nav-child {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 0 0 20px;
    background-color: #fff;
    text-align: left;
    color: #000;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header-nav .nav-parent > li.nav {
    max-width: 183.94px;
    margin: auto;
    margin-bottom: 33px;
    padding: 0;
    font-size: clamp(1.4rem, 4.5vw, 1.7rem);
  }
  .header-nav .nav-parent > li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    text-align: left;
  }
  .header-nav .nav-parent > li.nav a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: inline-block;
    width: 10.88px;
    height: 11.14px;
    margin: auto;
    background-image: url(../img/common/arrow_b.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    content: "";
  }
  .header-nav .nav-parent > li.sp-only-nav {
    display: block;
    max-width: 183.94px;
    margin: 0 auto 33px;
  }
  .header-nav .nav-parent > li.btn-box {
    max-width: 271.19px;
    margin: 45px auto 44px;
  }
  .header-nav .nav-parent > li.btn-box figure {
    width: 100%;
    margin-bottom: 16px;
  }
  .header-nav .nav-parent > li.sns-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: none;
    margin: 0 auto 31px;
  }
  .header-nav .nav-parent > li.sns-list .insta {
    width: 62px;
  }
  .header-nav .nav-parent > li.sns-list .tiktok {
    width: 47.48px;
    margin: 0 30px;
  }
  .header-nav .nav-parent > li.sns-list .youtube {
    width: 52.7px;
  }
  .header-nav .nav-parent > li.sns-list a::after {
    display: none;
  }
  .header-nav .nav-parent > li.link-list {
    max-width: 205px;
    margin-bottom: 0;
  }
  .header-nav .nav-parent > li.link-list p {
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: bold;
  }
  .header-nav .nav-parent > li.link-list p.line-link a[target="_blank"]:after {
    width: 22.18px;
    height: 21.13px;
    margin: 0 0 3px 8px;
    background-image: url(../img/common/icon_line.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  .header-hamburger {
    position: fixed;
    top: 42px;
    right: 25.7px;
    z-index: 998;
    display: block;
    width: 29.49px;
    height: 17.53px;
  }
  .header-hamburger:before {
    position: absolute;
    top: -19px;
    right: -14px;
    width: 54px;
    height: 54px;
    border: solid 2px #efc925;
    border-radius: 50%;
    background-color: #fff;
    content: "";
  }
  .header-hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 20px;
    background-color: #efc925;
    -webkit-transition: 0.5s;
            transition: 0.5s;
  }
  .header-hamburger span:first-of-type {
    top: 0;
  }
  .header-hamburger span:nth-of-type(2) {
    top: 50%;
  }
  .header-hamburger span:last-of-type {
    top: 100%;
  }

  .active .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    overflow-y: scroll;
    width: 100%;
    height: 100vh;
    padding: 120px 0 0;
    background-color: #fff;
  }
  .active .l-header-area {
    padding: 0;
  }
  .header-nav .nav-parent.active {
    position: fixed;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    padding: 0 8.6% 95px;
    background-color: #fff;
  }
  .active .header-nav .nav-parent > li a {
    display: block;
  }
  .active .header-nav .nav-parent > li.nav a:after {
    display: inline-block;
    width: 16.49px;
    height: 12.41px;
    margin: 8px 0 0 0;
    background-image: url(../img/common/arrow_02.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    content: "";
  }
  .header-hamburger.active:after {
    content: none;
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
  .header-hamburger.active span:first-of-type {
    top: 50%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header-hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header-hamburger.active span:last-of-type {
    top: 50%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .active .l-header-area .logo {
    position: fixed;
    top: 30px;
    left: 2.6%;
    z-index: 999;
  }
}
/* スクロールした時のヘッダー */
header.show {
  position: fixed;
  padding-bottom: 20px;
  background-color: #fff;
}

/*footer*/
footer {
  position: relative;
  z-index: 991;
}
footer:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 996;
  z-index: 5;
  display: block;
  width: 100%;
  height: 19px;
  background-image: url(../img/common/footer_entry_bottom.svg);
  background-repeat: repeat-x;
  background-size: cover;
  content: "";
}
footer .pagetop {
  z-index: 998;
}
footer .pagetop a {
  display: block;
  width: 64.81px;
}

footer .footer-nav {
  padding-top: min(4.3vw, 60px);
  padding-bottom: 64px;
  background-color: #fff;
}
footer .footer-nav .flex {
  -webkit-box-align: start;
  align-items: flex-start;
  -ms-flex-align: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 917.5px;
  margin: auto;
}
footer .footer-nav .flex .footer-left {
  width: 29.6%;
  max-width: 271.91px;
}
footer .footer-nav .flex .footer-left .footer-logo {
  margin-bottom: 26px;
}
footer .footer-nav .flex .footer-left .footer-logo figure {
  width: 100%;
}
footer .footer-nav .flex .footer-left .footer-logo span {
  margin-left: 28px;
  font-size: var(--fs13);
}
footer .footer-nav .flex .footer-left .footer-logo p {
  font-size: var(--fs18);
  font-weight: bold;
}
footer .footer-nav .flex .footer-left .footer-logo p span {
  margin-right: 8px;
  font-size: var(--fs16);
}
footer .footer-nav .flex .footer-left .official-link {
  width: 192px;
  margin-bottom: 18px;
  margin-left: 28px;
}
footer .footer-nav .flex .footer-left .official-link a {
  display: block;
}
footer .footer-nav .flex .footer-left .official-link a:after {
  content: none;
}
footer .footer-nav .flex .footer-left .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 28px;
}
footer .footer-nav .flex .footer-left .sns-list .sns.insta {
  width: 55.44px;
  margin-right: 23px;
}
footer .footer-nav .flex .footer-left .sns-list .sns.tiktok {
  width: 43.33px;
  margin-right: 22px;
}
footer .footer-nav .flex .footer-left .sns-list .sns.youtube {
  width: 48.39px;
}
footer .footer-nav .flex .footer-left .sns-list .sns a:after {
  display: none;
}
footer .footer-nav .flex .footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: space-evenly;
  width: 536.61px;
  margin-top: 53px;
}
footer .footer-nav .flex .footer-right ul {
  margin-right: 2em;
  font-size: var(--fs14);
}
footer .footer-nav .flex .footer-right ul:last-child {
  margin-right: 0;
}
footer .footer-nav .flex .footer-right ul li {
  margin-bottom: 1em;
  letter-spacing: normal;
}
footer .footer-nav .flex .footer-right ul li b {
  font-weight: bold;
}
footer .footer-nav .flex .footer-right ul li:before {
  display: inline-block;
  width: 6.07px;
  height: 9.71px;
  margin: 0 11px 3px 0;
  background-image: url(../img/common/arrow_01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
footer .footer-relation {
  position: relative;
  padding: 37px 0 98px;
  background-color: #efc81e;
  font-weight: bold;
  color: #fff;
}
footer .footer-relation:before {
  position: absolute;
  top: -16px;
  left: 0;
  display: block;
  width: 100%;
  height: 18.84px;
  background-image: url(../img/common/footer_repeat.webp);
  background-repeat: repeat-x;
  background-size: contain;
  content: "";
}
footer .footer-relation .relation-inner {
  padding-right: 55px;
  padding-left: 45px;
}
footer .footer-relation .relation-inner .flex {
  -webkit-box-align: end;
  align-items: flex-end;
  -ms-flex-align: end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer .footer-relation .relation-inner .flex ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footer-relation .relation-inner .flex ul li {
  margin-right: 29px;
  font-size: var(--fs15);
}
footer .footer-relation .relation-inner .flex ul li a {
  display: block;
}
footer .footer-relation .relation-inner .flex ul li a::after {
  display: none;
}
footer .footer-relation .relation-inner .flex ul li:first-child figure {
  width: 143.87px;
}
footer .footer-relation .relation-inner .flex ul li:nth-child(2) figure {
  width: 143.87px;
}
footer .footer-relation .relation-inner .flex ul li:nth-child(3) figure {
  width: 143.87px;
}
footer .footer-relation .relation-inner .flex ul li:last-child figure {
  width: 232.87px;
}
footer .footer-relation .relation-inner .flex .copyright {
  font-size: 1.2rem;
  font-weight: 400;
}
@media (max-width: 1180px) {
  footer .footer-nav {
    padding-top: 37px;
    padding-bottom: 74px;
  }
  footer .footer-nav .flex {
    width: 100%;
    max-width: none;
    margin: auto;
  }
  footer .footer-nav .flex .footer-left {
    width: 300px;
    max-width: none;
  }
  footer .footer-nav .flex .footer-left .footer-logo figure {
    width: 100%;
    max-width: 250px;
    margin-bottom: 13px;
  }
  footer .footer-nav .flex .footer-left .footer-logo span {
    display: inline-block;
    margin-bottom: 5px;
    margin-left: 0;
  }
  footer .footer-nav .flex .footer-left .official-link {
    width: 57%;
    max-width: 192px;
    margin-left: 0;
  }
  footer .footer-nav .flex .footer-left .sns-list {
    margin-left: 0;
  }

  footer .footer-relation {
    padding: 37px 0 52px;
  }
  footer .footer-relation .relation-inner .flex {
    display: block;
  }
  footer .footer-relation .relation-inner .flex ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  footer .footer-relation .relation-inner .flex ul li:last-child {
    margin-right: 0;
  }
  footer .footer-relation .relation-inner .flex .copyright {
    margin-top: 30px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  footer {
    margin-top: 0;
  }
  footer:before {
    content: none;
  }
  footer .footer-nav {
    padding: 40px 0 77px;
  }
  footer .footer-nav .flex {
    display: block;
  }
  footer .footer-nav .flex .footer-left {
    width: 100%;
    max-width: none;
  }
  footer .footer-nav .flex .footer-left .footer-logo figure {
    width: 55.66%;
    margin-bottom: 13px;
  }
  footer .footer-nav .flex .footer-left .footer-logo span {
    margin-left: 0;
  }
  footer .footer-nav .flex .footer-right {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 55px;
  }
  footer .footer-nav .flex .footer-right ul {
    width: 40%;
    margin-right: 0;
  }
  footer .footer-nav .flex .footer-right ul:nth-of-type(2) {
    width: 60%;
    margin-right: 0;
  }
  footer .footer-nav .flex .footer-right ul li {
    margin-bottom: 0;
    padding-left: 1em;
    font-size: var(--fs13);
    text-indent: -1em;
  }
  footer .footer-nav .flex .footer-right ul li:before {
    margin: 0 5px 3px 0;
  }
  footer .footer-nav .flex .footer-right ul:nth-child(3) li:last-child {
    margin-bottom: 0;
    font-size: var(--fs12);
    white-space: nowrap;
  }
  footer .footer-nav .flex .footer-right ul li a {
    display: inline-block;
    padding: 5px 0 5px 12px;
  }
  footer .footer-relation {
    padding: 37px 0 30px;
  }
  footer .footer-relation .relation-inner {
    padding: 0 8.6%;
  }
  footer .footer-relation .relation-inner .flex ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
  footer .footer-relation .relation-inner .flex ul li {
    width: 46%;
    margin: 0 0 15px 0;
    font-size: var(--fs13);
  }
  footer .footer-relation .relation-inner .flex ul li:last-child {
    width: 100%;
  }
  footer .footer-relation .relation-inner .flex ul li a::after {
    display: none;
  }
  footer .footer-relation .relation-inner .flex .copyright {
    margin-top: 0;
    font-size: var(--fs12);
  }
}

/* 1600px */
.inner-max {
  max-width: 1683px;
  margin: 0 auto;
  padding: 0 41.5px;
}
.inner {
  max-width: 1283px;
  margin: 0 auto;
  padding: 0 41.5px;
}
/* 1140px */
.inner-m {
  max-width: 1223px;
  margin: 0 auto;
  padding: 0 41.5px;
}
/* 1020px */
.inner-s {
  max-width: 1103px;
  margin: 0 auto;
  padding: 0 41.5px;
}
@media (max-width: 1024px) {
  /* 840px */
  .inner {
    max-width: 923px;
    margin: 0 auto;
    padding: 0 41.5px;
  }
}
@media screen and (max-width: 767px) {
  .inner,
  .inner-m {
    max-width: 600px;
    padding: 0 5.3%;
  }
}

/* ====================================================
contents-head
==================================================== */
main.contents {
  padding-top: 175px;
}
.contents-head .contents-tlt {
  width: 87vw;
  margin: 0 auto 25px;
}
.contents-head .contents-tlt h1 {
  margin-bottom: 4px;
  font-size: var(--fs42);
  font-weight: bold;
}
.contents-head .contents-tlt h1 span {
  font-size: var(--fs28);
}
.contents-head .contents-tlt .tlt-en {
  width: 100%;
}
.contents-head .full-img {
  position: relative;
  width: 100%;
}
.contents-head .full-img .mark {
  position: absolute;
  top: -109px;
  right: 2.8%;
  width: 16.92vw;
}
@media screen and (max-width: 1024px) {
  main.contents {
    padding-top: 52px;
  }
}
@media screen and (max-width: 767px) {
  .contents-head .contents-tlt {
    width: 100%;
    margin: 0 auto 23px;
    padding: 0 5.3%;
  }
  .contents-head .contents-tlt h1 {
    font-size: var(--fs28);
  }
  .contents-head .contents-tlt h1 span {
    display: block;
    font-size: var(--fs20);
    line-height: 1.3;
  }
  .contents-head .full-img .mark {
    top: -70px;
    width: 29.936vw;
  }
  .contents-head .full-img figure {
    overflow: hidden;
    width: 100%;
    height: 180.5px;
  }
  .contents-head .full-img figure img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
  }
}
/* ====================================================
entry-area
==================================================== */
.entry-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  height: 634px;
  background-color: #fdf9ec;
  background-image: url(../img/common/footer_entry_bg.svg);
  background-repeat: repeat-y;
  background-size: contain;
}
.entry-area:before {
  position: absolute;
  top: -16px;
  left: 0;
  display: block;
  width: 100%;
  height: 19px;
  background-image: url(../img/common/footer_entry_top.svg);
  background-repeat: repeat-x;
  background-size: cover;
  content: "";
}
.entry-area .entry-inner {
  width: 100%;
  max-width: 1153px;
  margin: auto;
  padding: 0 41.5px;
}
.entry-area .entry-inner .box {
  position: relative;
  width: 100%;
  padding: 45px 0 27px;
  border: solid 6px #efc925;
  border-radius: 269px;
  background-color: #fff;
}
.entry-area .entry-inner .box .entry_mark {
  position: absolute;
  top: -33px;
  right: 0;
  left: 0;
  width: 151.95px;
  margin: 0 auto;
}
.entry-area .entry-inner .box .tlt {
  margin-bottom: 18px;
}
.entry-area .entry-inner .box .tlt h2 {
  font-size: var(--fs32);
  font-weight: bold;
  text-align: center;
}
.entry-area .entry-inner .box .tlt .tlt-en {
  width: 51.65px;
  margin: auto;
}
.entry-area .entry-inner .box p {
  margin-bottom: 26px;
  font-size: var(--fs15);
  line-height: 1.8;
  text-align: center;
}
.entry-area .entry-inner .box .flex {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  gap: 32px;
}
.entry-area .entry-inner .box .flex a {
  display: block;
  width: 320.71px;
  transition: 0.4s;
  transform: translateY(0px);
}
.entry-area .entry-inner .box .flex a:hover {
  transform: translateY(-5px);
  opacity: 1;
}
.entry-area .entry-inner .box .entry-line-link {
  margin: 29px 0 0 0;
  font-size: var(--fs16);
  font-weight: 500;
  text-align: center;
}
.entry-area .entry-inner .box .entry-line-link a[target="_blank"]:after {
  width: 37.26px;
  height: 35.51px;
  margin: 0 0 3px 8px;
  background-image: url(../img/common/icon_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  .entry-area .entry-inner .box {
    border-radius: 100px;
  }
  .entry-area .entry-inner .box .flex {
    display: block;
  }
  .entry-area .entry-inner .box .flex a {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .entry-area {
    height: auto;
    padding: 110px 0 50px;
    background-size: auto;
  }
  .entry-area .entry-inner {
    padding: 0 5.3%;
  }
  .entry-area .entry-inner .box {
    padding: 55px 0 50px;
    border-radius: 126px;
  }
  .entry-area .entry-inner .box .entry_mark {
    width: 35.35%;
    max-width: 151.95px;
  }
  .entry-area .entry-inner .box .tlt {
    margin-bottom: 25px;
  }
  .entry-area .entry-inner .box .tlt h2 {
    font-size: var(--fs23);
  }
  .entry-area .entry-inner .box p {
    margin-bottom: 40px;
    font-size: var(--fs14);
    letter-spacing: normal;
  }
  .entry-area .entry-inner .box .flex a {
    width: 100%;
    max-width: 253.48px;
  }
  .entry-area .entry-inner .box .entry-line-link {
    margin: 21px 0 0 0;
    font-size: var(--fs14);
  }
  .entry-area .entry-inner .box .entry-line-link a[target="_blank"]:after {
    width: 32px;
    height: 31px;
  }
}
/* ====================================================
fix-banner
==================================================== */
.fix-banner {
  position: fixed;
  right: 0;
  bottom: 15px;
  z-index: 992;
  width: 29.4vw;
  max-width: 402px;
}
@media screen and (max-width: 767px) {
  .fix-banner {
    top: auto;
    bottom: 10px;
    width: 83.4%;
  }
}

/* ====================================================
パンくず
==================================================== */
.breadcrumb {
  width: 100%;
  margin-top: 9px;
}
.breadcrumb .inner {
  width: 87vw;
  max-width: none;
  margin: auto;
  padding: 0;
}
.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumb ul li {
  margin-right: 28px;
  font-size: 1.4rem;
  white-space: nowrap;
}
.breadcrumb ul li:last-child {
  margin-right: 0;
  opacity: 0.5;
}
.breadcrumb ul li a {
  position: relative;
  display: inline-block;
  font-weight: 500;
}
.breadcrumb ul li a:after {
  position: absolute;
  top: 1px;
  right: -22px;
  font-size: 1.4rem;
  content: "＞";
}
@media (max-width: 767px) {
  .breadcrumb {
    margin-bottom: 0;
  }
  .breadcrumb .inner {
    width: 100%;
    padding: 0 5.3%;
  }
  .breadcrumb ul li {
    margin-right: 20px;
    font-weight: 500;
  }
  .breadcrumb ul li,
  .breadcrumb ul li a:after {
    font-size: 12px;
  }
  .breadcrumb ul li:first-child {
    width: 11px;
  }
  .breadcrumb ul li a:after {
    right: -18px;
  }
}
/* ====================================================
共通ボタン
==================================================== */
/*ボタンアニメーション*/
.common-btn_active {
  position: relative;
  width: 213.35px;
  height: 50px;
}
.common-btn_active a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: auto;
  background-image: url(../img/common/common-btn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.4s;
  transform: translateY(0px);
  opacity: 1;
}
.common-btn_active span {
  font-size: var(--fs16);
  font-weight: bold;
  color: #fff;
}
/* hover */
.common-btn_active a:hover {
  transform: translateY(-5px);
}
@media screen and (max-width: 767px) {
  /* .common-btn_active {
    max-width: 265px !important;
    height: 60px;
    margin: auto;
  }
  .common-btn_active a span {
    line-height: 60px;
  } */
}

/*ボタンアニメーション*/
.common-btn_active_2 {
  position: relative;
  width: 171.18px;
  height: 41.14px;
  transition: 0.4s;
  transform: translateY(0px);
}
.common-btn_active_2:after {
  position: absolute;
  top: 0;
  right: 21px;
  bottom: 0;
  display: block;
  width: 12.79px;
  height: 14px;
  margin: auto;
  background-image: url(../img/common/arrow_04.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
.common-btn_active_2 a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: auto;
  background-image: url(../img/common/common-btn_02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
}
.common-btn_active_2 span {
  font-size: var(--fs15);
  font-weight: 500;
  color: #fff;
}
/* hover */
.common-btn_active_2:hover {
  transform: translateY(-5px);
}

/* ==================================================== */
/*  contact-area
/* ==================================================== */
.contact-area .inner .contact-wrapper {
  position: relative;
  padding: 62px 6.3% 65px;
  border-radius: 32px;
  background-color: #f5f5f5;
  background-image: url(../img/common/contact_bg.svg);
  background-repeat: repeat;
  background-size: auto;
}
.contact-area .inner .contact-wrapper .contact-img {
  position: absolute;
  top: -51px;
  right: max(-3.8vw, -53px);
  width: 32.1vw;
  max-width: 439.17px;
}
.contact-area .tlt-box {
  position: relative;
  margin-bottom: 55px;
}
.contact-area .tlt-box .tlt {
  width: 50.5%;
  max-width: 525.5px;
  margin-left: 135px;
}
.contact-area .tlt-box .mark {
  position: absolute;
  top: -80px;
  left: 10px;
  width: 10vw;
  max-width: 137.9px;
}
.contact-area .contact-txt {
  margin-bottom: 31px;
  font-size: var(--fs17);
  line-height: 1.7;
}
.contact-area .contact-txt a {
  text-decoration: underline;
}
/* モーダル関連　フッター */
.modal-footer {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 39px 0 47px;
  border-radius: 20px;
  background-color: #fff;
}
.modal-footer .modal__trigger {
  position: relative;
  display: block;
  width: 350px;
  height: 80px;
  margin: 0 10.5% 0 0;
  padding: 0 0 0 95px;
  border-radius: 48px;
  box-shadow: 3px 3px 0 rgb(162 162 162 / 16%);
  font-size: var(--fs16);
  line-height: 80px;
  transition: 0.4s;
  transform: translateY(0px);

  writing-mode: initial;
}
/* hover */
.modal-footer .modal__trigger:hover {
  transform: translateY(-5px);
}
.modal-footer .modal__trigger.contact {
  margin: 0;
}
.modal-footer .modal__trigger:after {
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  z-index: 2;
  display: inline-block;
  width: 12.71px;
  height: 12.91px;
  margin: auto;
  background-image: url(../img/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.modal-footer .modal__trigger:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 31px;
  z-index: 2;
  display: inline-block;
  width: 37.11px;
  height: 41.35px;
  margin: auto;
  background-image: url(../img/common/icon_modal_01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.modal-footer .modal__trigger.contact:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 31px;
  z-index: 2;
  display: inline-block;
  width: 37.11px;
  height: 26.11px;
  margin: auto;
  background-image: url(../img/common/icon_modal_02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
@media (max-width: 1024px) {
  .modal-footer {
    padding: 29px 3% 34px;
  }
  .modal-footer .modal__trigger {
    width: 300px;
    margin-right: 5%;
    padding: 0 0 0 65px;
    font-size: min(1.5vw, 1.6rem);
  }
  .modal-footer .modal__trigger.contact {
    padding: 0 0 0 81px;
  }
  .modal-footer .modal__trigger:before {
    top: -4px;
    left: 20px;
    width: 32.06px;
    height: 35.72px;
  }
  .contact-area .contact-txt {
    margin-bottom: 37px;
  }
  .contact-area .inner .contact-wrapper {
    padding: 41px 6.3% 50px;
  }
  .contact-area .tlt-box {
    margin-bottom: 43px;
  }
  .contact-area .tlt-box .tlt {
    width: 49%;
    margin-left: 99px;
  }
  .contact-area .tlt-box .mark {
    top: -54px;
    left: -3px;
    width: 9.4vw;
  }
}
@media (max-width: 767px) {
  .modal {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: auto;
  }
  .modal__trigger {
    width: 47.5%;
    height: 69.8px;
    padding: 0 0 0 10px;
    border-radius: 10px 10px 0 0;
    line-height: 1.3;

    writing-mode: horizontal-tb;
  }
  .modal__trigger.contact {
    width: 47.5%;
    margin: 0;
    padding: 0 0 0 13px;
  }
  .modal__trigger svg {
    width: 31.79px;
    margin-right: 8%;
    margin-bottom: 0;
    transform: rotate(332deg);
  }
  .modal__trigger.contact svg {
    width: 29.78px;
    transform: initial;
  }
  .modal-footer {
    display: block;
    padding: 33px 3.5%;
  }
  .modal-footer .modal__trigger {
    width: 100%;
    max-width: 265px;
    height: 60px;
    margin: 0 auto 20px;
    padding: 0 !important;
    font-size: var(--fs15);
    line-height: 60px;
    text-align: center;
  }
  .modal-footer .modal__trigger:before {
    top: -4px;
    left: 4%;
    width: 24.07px;
    height: 26.82px;
  }
  .modal-footer .modal__trigger.contact {
    margin: 0 auto;
  }
  .modal-footer .modal__trigger.contact:before {
    top: -4px;
    left: 7%;
    width: 25.57px;
    height: 17.99px;
  }
  .contact-area .inner .contact-wrapper {
    padding: 72px 3.8% 40px;
  }
  .contact-area .inner .contact-wrapper .contact-img {
    top: -93px;
    right: -10px;
    width: 56.9vw;
    max-width: 213.69px;
  }
  .contact-area .contact-txt {
    width: 85%;
    margin: 0 auto 28px;
    font-size: var(--fs15);
    line-height: 1.8;
  }
  .contact-area .tlt-box {
    width: 85%;
    margin: 0 auto 28px;
  }
  .contact-area .tlt-box .mark {
    top: -96px;
    left: -10px;
    width: 31%;
    max-width: 75.83px;
  }
  .contact-area .tlt-box .tlt {
    width: 180.91px;
    margin-left: 0;
  }
}
/* ==================================================== */
/*  リンクアイコン
/* ==================================================== */
a[target="_blank"]:after {
  display: inline-block;
  width: 12.1px;
  height: 12.1px;
  margin: 0 0 3px 8px;
  background-image: url(../img/common/icon_target.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.white a[target="_blank"]:after {
  display: inline-block;
  width: 12.1px;
  height: 12.1px;
  margin: 0 0 0 10px;
  background-image: url(../img/common/icon_target_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
