@charset "utf-8";

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

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

/*  フォントサイズ
/* ==================================================== */
:root {
  --fs36: clamp(3rem, 2.6vw, 3.6rem);
  --fs28: clamp(2.4rem, 2.04vw, 2.8rem);
  --fs26: clamp(2.3rem, 1.9vw, 2.6rem);
  --fs25: clamp(2.2rem, 1.83vw, 2.5rem);
  --fs24: clamp(2.1rem, 1.75vw, 2.4rem);
  --fs22: clamp(2rem, 1.6vw, 2.2rem);
  --fs21: clamp(1.8rem, 1.5vw, 2.1rem);
  --fs20: clamp(1.8rem, 1.46vw, 2rem);
  --fs19: clamp(1.7rem, 1.39vw, 1.9rem);
  --fs18: clamp(1.6rem, 1.31vw, 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);
}
@media screen and (max-width: 767px) {
  :root {
    --fs21: min(5.6vw, 2.1rem);
    --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;
}
html,
body {
  width: 100%;
  height: 100%;
  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: fixed;
  top: 0;
  z-index: 979;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}
.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;
  height: 120px;
  padding: 0 0 0 4.3%;
  transition: all 0.5s ease-in-out;
}
.l-header-area .logo {
  position: relative;
  z-index: 6;
  transition: all 0.5s ease-in-out;
}
.l-header-area .logo a {
  display: block;
}
.l-header-area .logo figure {
  width: 196.71px;
  transition: all 0.5s ease-in-out;
}
.l-header-area .logo .nav-top-txt {
  display: none;
}
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-right: 10vw;
}
.header-nav .nav-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-nav .nav-parent > li.nav {
  padding: 20px;
  font-size: var(--fs16);
  font-weight: bold;
  transition: all 0.5s ease-in-out;
}
.header-nav .nav-parent > li a {
  text-align: center;
}
.header-nav .nav-parent > li a figure {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.header-nav .nav-parent > li.nav-01 a figure {
  margin: 0 auto 8px;
}
.header-nav .nav-parent > li.nav-01 figure img {
  width: 31.79px;
}
.header-nav .nav-parent > li.nav-02 a figure {
  margin: 0 auto 10px;
}
.header-nav .nav-parent > li.nav-02 figure img {
  width: 48.36px;
}
.header-nav .nav-parent > li.nav-03 a figure {
  margin: 0 auto 13px;
}
.header-nav .nav-parent > li.nav-03 figure img {
  width: 43.5px;
}
.header-nav .nav-parent > li.nav-04 a figure {
  margin: 0 auto 13px;
}
.header-nav .nav-parent > li.nav-04 figure img {
  width: 24.27px;
}
.header-nav .nav-parent > li.nav-05 a figure {
  margin: 0 auto 13px;
}
.header-nav .nav-parent > li.nav-05 figure img {
  width: 34.88px;
}
.header-nav .nav-parent > li.nav-06 a figure {
  margin: 0 auto 11px;
}
.header-nav .nav-parent > li.nav-06 figure img {
  width: 30.4px;
}
.header-nav .nav-parent > li.nav-07 {
  position: absolute;
  top: 0;
  right: 0;
  width: 125px;
  transition: all 0.5s ease-in-out;
}
.header-nav .nav-parent > li.nav-07 a[target="_blank"]:after {
  content: none;
}
.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-hamburger {
  display: none;
}
.recruit-btn {
  display: none;
}
.recruit-btn a[target="_blank"]:after {
  content: none;
}
/*スクロール ヘッダー*/
header.show .l-header-area {
  height: 100px;
}
header.show .l-header-area .logo figure {
  width: 180px;
}
header.show .header-nav .nav-parent > li.nav {
  font-size: var(--fs14);
}
header.show .header-nav .nav-parent > li a figure {
  margin-bottom: 6px;
}
header.show .header-nav .nav-parent > li.nav-07 {
  width: 110px;
}
header.show .header-nav .nav-parent > li.nav-07 a[target="_blank"]:after {
  content: none;
}
@media (max-width: 1180px) {
  .header-nav {
    padding-right: 124px;
  }
  .l-header-area {
    padding: 0 0 0 3%;
  }
  .l-header-area .logo {
    width: 19%;
  }
  .l-header-area .logo figure {
    width: 100%;
  }
  .header-nav .nav-parent > li.nav {
    padding: 20px 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: 24px 0 0 4.5%;
  }
  .l-header-area .logo {
    z-index: 991;
    width: 253.03px;
  }
  .header-nav {
    display: block;
    padding: 0;
  }
  .active .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    overflow-y: scroll;
    width: 100%;
    height: 100vh;
    padding: 88px 0 0;
    background-color: #fff;
  }
  .header-nav .nav-parent {
    display: none;
  }
  .header-nav .nav-parent.active {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    padding: 139px 0 68px;
    background-color: #fff;
  }
  .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: 209px;
    margin: auto;
    margin-bottom: 34px;
    padding: 0;
    font-size: var(--fs16);
  }
  .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 a figure {
    width: 60px !important;
    margin: 0 5px 0 0 !important;
    text-align: center;
  }
  .header-nav .nav-parent > li.nav-01 a figure img {
    width: 29.46px;
  }
  .header-nav .nav-parent > li.nav-02 a figure img {
    width: 44.82px;
  }
  .header-nav .nav-parent > li.nav-03 a figure img {
    width: 40.31px;
  }
  .header-nav .nav-parent > li.nav-04 a figure img {
    width: 22.49px;
  }
  .header-nav .nav-parent > li.nav-05 a figure img {
    width: 32.33px;
  }
  .header-nav .nav-parent > li.nav-06 a figure img {
    width: 28.17px;
  }
  .header-nav .nav-parent > li.nav-07 {
    display: none;
  }
  .header-nav .nav-parent > li a p {
    width: 140px;
  }
  .recruit-btn {
    position: fixed;
    top: 25px;
    right: 121px;
    z-index: 1;
    display: block;
    width: 213px;
  }
  .header-nav .nav-parent > li.sp-only-nav {
    display: block;
    max-width: 633px;
    margin: 68px auto 0;
  }
  .header-nav .nav-parent > li.sp-only-nav .sp-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header-nav .nav-parent > li.sp-only-nav .sp-box .nav-recruit-btn {
    width: 282px;
    margin-right: 56.8px;
    margin-right: 9%;
  }
  .header-nav .nav-parent > li.sp-only-nav .sp-box .nav-recruit-btn a[target="_blank"]:after {
    content: none;
  }
  .header-nav .nav-parent > li.sp-only-nav .sp-box .contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-nav .nav-parent > li.sp-only-nav .sp-box .contents figure {
    width: 66px;
    margin-right: 52px;
  }
  .header-nav .nav-parent > li.sp-only-nav .sp-box .contents ul li {
    margin-bottom: 17px;
    font-size: var(--fs13);
    font-weight: bold;
  }
  .header-nav .nav-parent > li.sp-only-nav .sp-box .contents ul li:last-child {
    font-weight: normal;
  }
  .header-hamburger {
    position: fixed;
    top: 42px;
    right: 35.2px;
    z-index: 998;
    display: block;
    width: 46.29px;
    height: 21.16px;
  }
  .header-hamburger:before {
    position: absolute;
    top: -14px;
    right: -11px;
    width: 70.51px;
    height: 73px;
    background-color: #fff;
    content: "";
  }
  .header-hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    -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%;
  }
  .header-hamburger:after {
    position: absolute;
    right: 4px;
    bottom: -26px;
    margin: auto;
    font-size: 1.2rem;
    font-weight: bold;
    content: "MENU";
    -webkit-transition: 0.5s;
            transition: 0.5s;
  }
  .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: 27px;
    left: 5.3%;
    z-index: 999;
  }
  .active .l-header-area .logo .nav-top-txt {
    display: block;
    padding-left: 100px;
    font-size: var(--fs13);
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) {
  .l-header-area {
    padding: 27px 0 0 5.3%;
  }
  .l-header-area .logo {
    width: 52vw;
    max-width: 196.71px;
  }
  .recruit-btn {
    display: none;
  }
  .active .header-nav {
    padding: 120px 0 0;
  }
  .header-nav .nav-parent > li.nav {
    margin-bottom: 26px;
  }
  .header-nav .nav-parent.active {
    position: relative;
    z-index: 2;
    padding: 42px 12% 95px;
  }
  .header-nav .nav-parent > li.sp-only-nav {
    max-width: 282px;
    margin: 53px auto 0;
  }
  .header-nav .nav-parent > li.sp-only-nav .sp-box {
    display: block;
  }
  .header-nav .nav-parent > li.sp-only-nav .sp-box .contents {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 27px;
  }
  .header-nav .nav-parent > li.sp-only-nav .sp-box .contents figure {
    width: 66px;
    margin-right: 0;
  }
  .header-nav .nav-parent > li.sp-only-nav .sp-box .contents ul li {
    margin-bottom: 10px;
  }
  .header-nav .nav-parent > li.sp-only-nav .sp-box .nav-recruit-btn {
    width: 100%;
    margin-right: 0;
  }
  .active .l-header-area .logo .nav-top-txt {
    padding-left: 35%;
  }
}

/*footer*/
footer {
  position: relative;
  z-index: 975;
  margin-top: 90px;
}
footer .pagetop {
  z-index: 991;
}
footer .pagetop a {
  position: relative;
  z-index: 3;
  display: inline-block;
  width: 55px;
  height: 55px;
  padding: 23px 18px 0;
  border: 1px solid #fff;
  border-radius: 15px;
  box-shadow: 3px 4px 0 rgb(170 170 170 / 16%);
  background: #f3b328 0 0 no-repeat padding-box;
}
footer .pagetop a:after {
  display: block;
  width: 15px;
  height: 15px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
footer .footer-nav {
  padding-top: 37px;
  padding-bottom: 74px;
  background-color: #f5f5f5;
}
footer .footer-nav .flex {
  -webkit-box-align: start;
  align-items: flex-start;
  -ms-flex-align: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer .footer-nav .flex .footer-index-area {
  padding-top: 10px;
  padding-left: 3.2vw;
}
footer .footer-nav .flex .footer-index-area .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  margin-bottom: 53px;
}
footer .footer-nav .flex .footer-index-area .footer-logo figure {
  width: 205.97px;
  margin-right: 29px;
}
footer .footer-nav .flex .footer-index-area .footer-logo p {
  font-size: var(--fs16);
  font-weight: bold;
  line-height: 1.7;
}
footer .footer-nav .flex .footer-index-area .footer-logo span {
  display: block;
  font-size: var(--fs14);
  font-weight: normal;
}
footer .footer-nav .flex .footer-index-area .index-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footer-nav .flex .footer-index-area .index-box ul li {
  display: block;
  margin-bottom: 8px;
  font-size: var(--fs13);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: normal;
}
footer .footer-nav .flex .footer-index-area .index-box ul li a {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
footer .footer-nav .flex .footer-index-area .index-box ul b {
  font-weight: bold;
}
/* 個別 */
footer .footer-nav .flex .footer-index-area .index-box ul:first-child {
  margin-right: 50px;
}
footer .footer-nav .flex .footer-index-area .index-box ul:first-child li {
  font-size: var(--fs15);
}
footer .footer-nav .flex .footer-index-area .index-box ul:nth-child(2) {
  margin-right: 41px;
}
footer .footer-nav .flex .footer-index-area .index-box ul:nth-child(3) {
  margin-right: 63px;
}
footer .footer-nav .flex .footer-index-area .index-box ul:nth-child(4) {
  margin-right: 50px;
}
footer .footer-nav .flex .footer-index-area .index-box ul:nth-child(4) li,
footer .footer-nav .flex .footer-index-area .index-box ul:nth-child(5) li {
  margin-bottom: 13px;
}
footer .footer-nav .flex .footer-contents-area {
  width: 192px;
  margin-right: 132px;
}
footer .footer-nav .flex .footer-contents-area a[target="_blank"]:after {
  content: none;
}
footer .footer-nav .flex .footer-contents-area .sns-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 35px;
}
footer .footer-nav .flex .footer-contents-area .insta-box {
  width: 60px;
}
footer .footer-nav .flex .footer-contents-area .youtube-box {
  width: 55px;
}
footer .footer-nav .flex .footer-contents-area .tiktok-box {
  width: 46px;
  margin: 0 25px;
}
footer .footer-nav .flex .footer-contents-area .link {
  width: 100%;
  margin-bottom: 15px;
}
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[target="_blank"]:after {
  content: 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 .flex {
    display: block;
    max-width: 778px;
    margin: auto;
  }
  footer .footer-nav .flex .footer-index-area {
    position: relative;
  }
  footer .footer-nav .flex .footer-contents-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 53px;
    margin-right: 0;
  }
  footer .footer-nav .flex .footer-contents-area .sns-flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
  footer .footer-nav .flex .footer-contents-area .link {
    width: 24.6%;
    margin: 0 10.5px;
  }
  footer .footer-nav .flex .footer-contents-area .insta-box {
    width: 70px;
  }
  footer .footer-nav .flex .footer-contents-area .youtube-box {
    width: 60px;
  }
  footer .footer-nav .flex .footer-contents-area .tiktok-box {
    width: 53px;
    margin: 0 30px;
  }
  footer .footer-nav .flex .footer-contents-area .link {
    width: 24.6%;
    margin: 0 10.5px;
  }
  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: 80px;
  }
  footer .pagetop a:after {
    width: 14px;
    height: 14px;
  }
  footer .pagetop a {
    width: 56px;
    height: 56px;
    padding: 24px 19px 0;
  }
  footer .footer-nav {
    padding-top: 34px;
    padding-bottom: 50px;
  }
  footer .footer-nav .flex {
    display: block;
  }
  footer .footer-nav .flex .footer-index-area {
    width: 100%;
    padding: 0;
  }
  footer .footer-nav .flex .footer-index-area .footer-logo {
    display: block;
    margin: 0;
  }
  footer .footer-nav .flex .footer-index-area .footer-logo p {
    font-size: var(--fs12);
  }
  footer .footer-nav .flex .footer-index-area .footer-logo span {
    font-size: var(--fs11);
  }
  footer .footer-nav .flex .footer-index-area .footer-logo figure {
    width: 57%;
    max-width: 179.45px;
    margin: 0 0 7px 0;
  }
  footer .footer-nav .flex .footer-index-area .index-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer-nav .flex .footer-index-area .index-box ul {
    width: 50%;
    margin-right: 0 !important;
    margin-bottom: 25px;
  }
  footer .footer-nav .flex .footer-index-area .index-box ul:first-child {
    width: 100%;
    margin-bottom: 15px;
  }
  footer .footer-nav .flex .footer-index-area .index-box ul li {
    margin-bottom: 9.5px;
  }
  footer .footer-nav .flex .footer-contents-area {
    display: block;
    width: 100%;
    margin-top: 0;
  }
  footer .footer-nav .flex .footer-contents-area .insta-box {
    width: 52px;
  }
  footer .footer-nav .flex .footer-contents-area .youtube-box {
    width: 48px;
  }
  footer .footer-nav .flex .footer-contents-area .tiktok-box {
    width: 41px;
    margin: 0 30px;
  }
  footer .footer-nav .flex .footer-contents-area .link {
    width: 61.9%;
    max-width: 200px;
    margin: 0 auto 17.5px;
  }
  footer .footer-relation {
    padding: 37px 0 96px;
  }
  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 .copyright {
    margin-top: 0;
    font-size: var(--fs12);
  }
}
@media screen and (max-width: 767px) {
  footer .pagetop {
    position: absolute;
    top: 20px;
    right: 15px;
    z-index: 991;
  }
}

/* 1200px */
.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,
  .inner-s {
    max-width: 732px;
    padding: 0 8.5%;
  }
}

/* ====================================================
contents-head
==================================================== */
.contents-head {
  margin: 165px auto 14.5px;
}
.contents-head .head-wrapper {
  position: relative;
}
.contents-head .head-tlt {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: auto 0;
}
.contents-head .head-tlt .mark {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 19.56%;
}
.contents-head .head-tlt h2 {
  -ms-flex-item-align: center;
  align-self: center;
}
.contents-head figure {
  width: 73.9%;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .contents-head {
    margin: 55px auto 14.5px;
  }
}
@media screen and (max-width: 767px) {
  .contents-head {
    margin: 55px auto 17.8px;
  }
  .contents-head .inner-m {
    padding: 0;
  }
  .contents-head .head-tlt {
    position: static;
    display: block;
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 0 8.6%;
  }
  .state .contents-head .head-tlt h2 {
    position: relative;
    z-index: 10;
  }
  .contents-head .head-tlt .mark {
    top: 0;
    right: 0;
    left: auto;
    z-index: 2;
    width: 45.33%;
    max-width: 170px;
  }
  .contents-head figure {
    width: 98.8% !important;
  }
}
/* ====================================================
パンくず
==================================================== */
.breadcrumb {
  width: 100%;
  margin-bottom: 51px;
}
.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.breadcrumb ul li {
  margin-right: 20px;
  font-size: var(--fs15);
  white-space: nowrap;
}
.breadcrumb ul li:last-child {
  margin-right: 0;
}
.breadcrumb ul li a {
  position: relative;
  display: inline-block;
  color: #1e7ac6;
}
.breadcrumb ul li a:after {
  position: absolute;
  top: 1px;
  right: -14px;
  font-size: var(--fs15);
  content: "/";
}
@media (max-width: 767px) {
  .breadcrumb {
    margin-bottom: 0;
  }
  .breadcrumb ul li,
  .breadcrumb ul li a:after {
    font-size: 10px;
  }
}
/* ====================================================
共通ボタン
==================================================== */
/*ボタンアニメーション*/
.common-btn_active {
  height: 70px;
}
.common-btn_active a {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%;
  padding: 0 0 0 14%;
  border: solid 1px #efc926;
  border-radius: 50px;
  box-shadow: 3px 3px 0 rgb(162 162 162 / 16%);
  background-color: #efc926;
  font-weight: bold;
  transition: 0.4s;
  transform: translateY(0px);
  opacity: 1;
}
.common-btn_active a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 0;
  background-color: #fff;
  content: "";
}
.common-btn_active a::after {
  position: absolute;
  top: 0;
  right: 27px;
  bottom: 0;
  z-index: 2;
  display: inline-block;
  width: 27px;
  height: 27px;
  margin: auto;
  background-image: url(../img/common/arrow_btn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.common-btn_active a span {
  position: relative;
  z-index: 2;
  line-height: 70px;
}
/* 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;
  }
}

/* ====================================================
モーダル関連　ファーストビュー
==================================================== */
.modal {
  position: fixed;
  top: 243px;
  right: 0;
  z-index: 979;
}
.active .modal {
  z-index: 975;
}
/* モーダルを開くボタン */
.modal__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  width: 83px;
  height: 178.5px;
  padding-top: 18px;
  border: solid 1px #fff;
  border-radius: 10px 0 0 10px;
  background-color: #1e7ac6;
  font-size: var(--fs15);
  font-weight: bold;
  color: #fff;
  cursor: pointer;

  writing-mode: vertical-rl;
}
.modal__trigger.contact {
  margin-top: 19px;
  background-color: #02b990;
}
.modal__trigger svg {
  margin-bottom: 12px;
}
/* モーダル本体 */
.modal__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 981;
  display: none;
  width: 100%;
  height: 100%;
}
.modal__layer {
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(51.24vw, 700px);
  height: 580px;
  padding: 0;
  border-radius: 26px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.modal__inner {
  position: relative;
  height: 100%;
  padding: 60px 0 0;
}
/* モーダルを閉じるボタン */
.modal__close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 23px;
  height: 23px;
  cursor: pointer;
  transition: opacity 0.6s;
}
.modal__close:hover {
  opacity: 0.6;
}
.modal__close:before,
.modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 1px;
  background: #000;
  content: "";
}
.modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/* モーダル内のコンテンツ */
.modal__content {
  text-align: center;
}
.modal__content h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 36px;
  font-size: var(--fs25);
  font-weight: bold;
  text-align: center;
}
.modal__content h2 span {
  position: absolute;
  top: -42px;
  left: -71px;
  z-index: -1;
  display: block;
  width: 103.39px;
}
.modal__content p.read {
  margin-bottom: 37px;
  font-size: var(--fs16);
  line-height: 1.8;
  text-align: center;
}
.modal__content .flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 475px;
  margin: auto;
  text-align: left;
}
.modal__content .flex a {
  position: relative;
  display: block;
  width: 46.3%;
  max-width: 220px;
  height: 53px;
  margin-bottom: 14px;
  padding-left: 5%;
  border-radius: 27px;
  background-color: #1e7ac6;
  font-size: var(--fs16);
  font-weight: bold;
  line-height: 53px;
  color: #fff;
}
.modal__content .flex a: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__content .flex a span {
  position: absolute;
  bottom: 0;
  bottom: -22px;
  left: 0;
  left: 11%;
  display: block;
  font-size: var(--fs13);
  font-weight: normal;
  line-height: normal;
  color: #000;
}
.modal__content .modal-line-btn {
  max-width: 244px;
  margin: 27px auto 0;
}
.modal__content .modal-line-btn a[target="_blank"]:after {
  content: none;
}
.modal__content .contact-btn {
  max-width: 350px;
  margin: auto;
}
.modal__content .contact-btn a {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  padding: 0 0 0 95px;
  border-radius: 48px;
  background-color: #1e7ac6;
  font-size: var(--fs16);
  font-weight: bold;
  line-height: 80px;
  text-align: left;
  color: #fff;
}
.modal__content .contact-btn a: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: "";
}
.modal__content .contact-btn a: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__container.modal__container_second {
  height: 500px;
}
.modal__container.modal__container_second .modal__content h2 {
  margin-bottom: 59px;
}
.modal__container.modal__container_second .modal__content .modal-line-btn {
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .modal__container {
    width: max(82.66vw, 310px);
    height: 540px;
  }
  .modal__inner {
    padding: 77px 7.7% 0;
  }
  .modal__close {
    top: 21.5px;
    right: 25px;
  }
  .modal__close:before,
  .modal__close:after {
    width: 32px;
    height: 2px;
  }
  .modal__content h2 {
    margin-bottom: 26px;
    font-size: var(--fs21);
  }
  .modal__content h2 span {
    top: -48px;
    left: -7px;
    width: 64.1px;
  }
  .modal__content p.read {
    margin-bottom: 24px;
    font-size: var(--fs14);
    line-height: 1.7;
    text-align: left;
  }
  .modal__content .flex a {
    width: 46.9%;
    max-width: 122px;
    height: 40px;
    margin-bottom: 15px;
    padding-left: 0;
    font-size: var(--fs14);
    line-height: 40px;
    text-align: center;
  }
  .modal__content .flex a:after {
    content: none;
  }
  .modal__content .flex a span {
    bottom: -19px;
    left: 14px;
    font-size: var(--fs12);
    white-space: nowrap;
  }
  .modal__content .modal-line-btn {
    max-width: 195px;
    margin: 40px auto 0;
  }
  .modal__container.modal__container_second {
    height: 462px;
  }
  .modal__container.modal__container_second .modal__content h2 {
    margin-bottom: 21px;
  }
  .modal__container.modal__container_second .modal__content h2 span {
    left: -56px;
  }
  .modal__container.modal__container_second .modal__content p.read {
    margin-bottom: 47px;
  }
  .modal__container.modal__container_second .modal__content .contact-btn {
    width: 100%;
    margin: auto;
  }
  .modal__container.modal__container_second .modal__content .contact-btn a {
    max-width: 260px;
    height: 65px;
    margin: auto;
    padding-left: 0;
    line-height: 65px;
    text-align: center;
  }
}

/* ==================================================== */
/*  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: 9.84px;
  height: 10.26px;
  margin: 0 0 2px 8px;
  background-image: url(../img/common/icon_target.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
