@charset "UTF-8";
:root {
  --text: #1E3135;
  --primary: #009FAF;
  --primary95: rgba(0, 159, 175, .95);
  --primary80: rgba(0, 159, 175, .8);
  --primary60: rgba(0, 159, 175, .6);
  --primary50: rgba(0, 159, 175, .5);
  --primary40: rgba(0, 159, 175, .4);
  --primary30: rgba(0, 159, 175, .3);
  --primary15: rgba(0, 159, 175, 0.15);
  --primary10: rgba(0, 159, 175, 0.1);
  --primary8: rgba(0, 159, 175, 0.08);
  --primary5: rgba(0, 159, 175, 0.05);
  --accent: #EC6951;
  --accent30: rgba(236, 105, 81, .3);
  --accent10: rgba(236, 105, 81, .1);
  --wh: #ffffff;
  --wh60: rgba(255, 255, 255, .6);
  --wh70: rgba(255, 255, 255, .7);
  --bk: #000;
  --bk2: #333;
  --red: #E83328;
  --red2: #B2292C;
  --gray: #ccc;
  --gray2: #8B8A8A;
  --gray3: #f9f9f9;
  --gray4: #B5B5B5;
  --gray5: #f5f5f5;
  --gray6_40: rgba(225, 225, 225, .4);
  --yellow: #FFF79C;
  --green: #B2E2E7;
}

/*
  @mixin f-style($size) {
    @if $size == small {
      font-size: 1.3rem;
      line-height: 1.8;
    } @else if $size == h1 {
    }
  }
*/
/* import */
/* -------------------------------------------------------- */
/* reset */
/* -------------------------------------------------------- */
a, abbr, acronym, address, applet, article, aside, audio, b,
big, blockquote, body, canvas, caption, center, cite, code, dd,
del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

article {
  padding-bottom: 200px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  article {
    padding-bottom: 100px;
  }
}

figure {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: bold;
}

/* base settings */
/* -------------------------------------------------------- */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

*,
:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

button {
  border: none;
}

body {
  position: relative;
  margin: 0;
  background-color: var(--wh);
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
}

a {
  color: var(--text);
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a img:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* common setting
-------------------------------------------------- */
body img {
  width: 100%;
  height: auto;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.main_width {
  margin: 0 auto;
  width: calc(100% - 60px);
  max-width: 1120px;
}
@media only screen and (max-width: 767px) {
  .main_width {
    width: calc(100% - 40px);
  }
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/*
.btn {
  a {
    position: relative;
    padding: 20px 120px;
//    padding: 20px 12vw;
    color: var(--wh);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    background: var(--base-color-nv);
    display: inline-block;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, .25);
    border-radius: 8px;
    @media only screen and (max-width: variable.$breakpoint_tablet_less) {
      padding: 20px;
    }
    @media only screen and (max-width: variable.$breakpoint_sp) {
      padding: 14px 10px;
      width: 100%;
    }
    &:hover {
      background: #6284BB;
      box-shadow: none;
    }
  }
}
*/
.btn_orange a {
  position: relative;
  padding: 8px;
  background: var(--accent30);
  border-radius: 28px;
  display: inline-block;
}
@media only screen and (max-width: 1024px) {
  .btn_orange a {
    padding: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .btn_orange a {
    padding: 4px;
  }
}
.btn_orange a span {
  padding: 12px 50px 12px 20px;
  color: var(--wh);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--accent);
  border: 2px solid var(--wh);
  border-radius: 25px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .btn_orange a span {
    padding: 4px 25px 6px 10px;
    font-size: 0.8rem;
    border: 1px solid var(--wh);
  }
}
.btn_orange a::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 17px;
  background: url(../img/common/icn_arrow_w.svg) no-repeat 0 0/contain;
  top: calc(50% - 8px);
  right: 20px;
}
@media only screen and (max-width: 767px) {
  .btn_orange a::after {
    width: 5px;
    height: 10px;
    top: calc(50% - 5px);
    right: 15px;
  }
}
.btn_orange a:hover {
  opacity: 0.7;
}
.btn_orange.green a {
  background: none;
}
.btn_orange.green a span {
  background: var(--primary);
}

/* wp editor */
/* -------------------------------------------------- */
.post_content {
  overflow: hidden;
}
.post_content a {
  color: var(--accent-color-bl);
  word-break: break-all;
}
.post_content a:hover {
  text-decoration: underline;
}

.wp-block-image img {
  width: initial;
  width: auto;
}

.post_content ul {
  margin-left: 1.5em;
  list-style-type: inherit;
}

.post_content ol {
  margin-left: 1.5em;
  list-style-type: decimal;
}

.wp-block-image figcaption {
  margin-bottom: 1em;
  margin-top: 1em;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media only screen and (min-width: 768px) {
  .wp-block-image figcaption {
    font-size: 1.6rem;
  }
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* parts */
/* -------------------------------------------------------- */
#pagetop {
  font-size: 1px;
  line-height: 0;
  overflow: hidden;
  float: right;
}
#pagetop a {
  text-decoration: none;
}
#pagetop img {
  width: 50px;
  height: 50px;
  vertical-align: bottom;
}
@media only screen and (max-width: 767px) {
  #pagetop img {
    width: 40px;
    height: 40px;
  }
}

#pagetop.f_fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  #pagetop.f_fixed {
    bottom: 15px;
    right: 15px;
  }
}

.gmap iframe {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .gmap {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
  }
  .gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

.youtube {
  width: 100%;
}
@media only screen and (max-width: 1120px) {
  .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

.hero .bubble {
  position: relative;
  margin-bottom: 20px;
  padding: 0 20px 2px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .hero .bubble {
    margin-bottom: 10px;
  }
}
.hero .bubble::after {
  position: absolute;
  content: "";
  width: 29px;
  height: 26px;
  bottom: -20px;
  left: 59%;
}
@media only screen and (max-width: 767px) {
  .hero .bubble::after {
    width: 14.5px;
    height: 13px;
    bottom: -10px;
    left: 60%;
  }
}
.hero .bubble span {
  font-size: 3.2rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .hero .bubble span {
    font-size: 1.6rem;
  }
}

/* bread_crumb */
/* ------------------------------------ */
.crumb {
  margin: 0 auto;
  padding: 40px 0 35px;
  width: calc(100% - 60px);
  max-width: 1120px;
  color: var(--text-color-bk);
  font-size: 1.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) and (orientation: portrait) {
  .crumb {
    padding: 20px 0 17px;
    width: calc(100% - 30px);
  }
}

.crumb span {
  margin: 0 5px;
}
.crumb span:first-of-type {
  margin: 0 5px 0 0;
}
.crumb span a {
  color: #666;
  text-decoration: none;
  -webkit-transition: none;
  transition: none;
}
.crumb span a:hover {
  text-decoration: underline;
}

/* header */
/* -------------------------------------------------------- */
#header {
  width: 100%;
  padding: 0 100px 0 32px;
  height: 100px;
  background: var(--wh);
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  #header {
    padding: 28px 0 28px 20px;
    height: 72px;
  }
}
#header .h_inner {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 4;
}
#header .h_inner .h_logo {
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_logo {
    padding: 0;
  }
}
#header .h_inner .h_logo img {
  width: auto;
  max-width: 519px;
  height: 62px;
}
@media only screen and (max-width: 1024px) {
  #header .h_inner .h_logo img {
    height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_logo img {
    height: 34px;
  }
}
#header .h_inner .h_right .gnav {
  padding: 0;
}
@media only screen and (max-width: 1120px) {
  #header .h_inner .h_right .gnav {
    width: 50vw;
  }
}
@media only screen and (max-width: 768px) {
  #header .h_inner .h_right .gnav {
    display: none;
  }
}
#header .h_inner .h_right .gnav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 18px;
}
#header .h_inner .h_right .gnav ul li.h_tel {
  max-width: 322px;
}
#header .h_inner .h_right .gnav ul li.h_mail {
  max-width: 271px;
}
#header .h_inner .aagnav {
  padding: 0;
}
@media only screen and (max-width: 1120px) {
  #header .h_inner .aagnav {
    width: 50vw;
  }
}
@media only screen and (max-width: 767px) {
  #header .h_inner .aagnav {
    display: none;
  }
}
#header .h_inner .aagnav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 18px;
  /*
          li {
            position: relative;
            a, span {
              padding: 20px 0;
              cursor: pointer;
            }
            .child {
              position: absolute;
  //            top: 65px;
  //            left: 0;
  //            right: 0;
              margin: 0 auto;
              transition: all 0.5s;
  //            margin-left: -32%;
              transform: translateX(-2%);
              width: 680px;
              overflow: hidden;
              background: var(--base-color-l-gray);
              opacity: 0;
              display: none;
              @media only screen and (max-width: 1200px) {
                transform: translateX(-20%);
              }
              &.active {
                top: 38px;
                display: flex;
                align-items: flex-start;
                flex-wrap: wrap;
                opacity: 1;
              }
              li {
                width: calc(100% / 3);
                @media only screen and (max-width: 1200px) {
                  width: calc(100% / 2);
                }
                a {
                  padding: 20px 15px;
                  font-size: 1.4rem;
                  font-weight: 500;
                  display: inline-block;
                  &:hover {
                    opacity: .7;
                  }
                }
              }
            }
          }
          */
}
#header .h_inner .aagnav ul li.h_tel {
  max-width: 322px;
}
#header .h_inner .aagnav ul li.h_mail {
  max-width: 271px;
}
#header .menu_button {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 31px;
  top: 23px;
  right: 38px;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  z-index: 99999;
}
@media only screen and (max-width: 540px) {
  #header .menu_button {
    top: 10px;
    right: 20px;
  }
}
#header .menu_button::after {
  position: absolute;
  content: "メニュー";
  width: 48px;
  bottom: -20px;
  left: -5px;
  font-size: 1.2rem;
  font-weight: 700;
}
#header .menu_button span {
  display: block;
  width: 36px;
  height: 5px;
  background: var(--bk);
  border-radius: 10px;
}
#header .menu_button span + span {
  margin-top: 6.5px;
}
#header .menu_button.close::after {
  content: "閉じる";
  color: var(--wh);
  left: 0;
}
#header .menu_button.close span {
  position: relative;
  background: var(--wh);
}
#header .menu_button.close span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 3px;
}
#header .menu_button.close span:nth-of-type(2) {
  display: none;
}
#header .menu_button.close span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -1px;
}
#header .menu_button.close span + span {
  margin-top: 0;
}
#header .nav_content {
  position: fixed;
  padding: 0;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  -webkit-overflow-scrolling: touch;
  background: var(--primary95);
  z-index: 2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  right: -120%;
  z-index: 99998;
}
#header .nav_content.active {
  right: 0;
}
@media only screen and (max-width: 767px) {
  #header .nav_content {
    width: 100%;
    overflow-y: auto;
  }
}
#header .nav_content .hum_nav {
  position: absolute;
  margin: 0 auto;
  width: calc(100% - 48px);
  height: 100vh;
  padding: 0 0 55px;
  top: 100px;
  left: 24px;
  -webkit-transform: none;
          transform: none;
  border-top: 1px solid var(--wh70);
  /*
        .ham_box {
          &_head {
            position: relative;
            color: var(--wh);
            font-size: 2.2rem;
            border-bottom: 2px solid #fff;
            margin-bottom: 0;
            padding: 16px 0;
            border-bottom: 1px solid #fff;
            &::after {
              position: absolute;
              content: '';
  //            width: 26px;
  //            height: 15px;
              width: 20px;
              height: 20px;
              border-bottom: 2px solid #fff;
              border-right: 2px solid #fff;
              transform: rotate(45deg);
              top: calc(50% - 15px);
              right: 10px;
              display: inline-block;
            }

            &.active {
              display: block;
              border-bottom: none;
              &::after {
                transform: rotate(-135deg);
                top: calc(50% - 5px);
              }
            }
          }
          &_body {
            display: none;
            ul {
              border-bottom: 1px solid #fff;
              li {
                padding-bottom: 24px;
                color: var(--base-color-wh);
                padding-left: 24px;
              }
            }
          }
        }
        dl {
          margin-bottom: 32px;
          dt {
            padding-bottom: 8px;
            padding: 16px 0;
            border-bottom: 1px solid #fff;
            a {
              font-size: 2rem;
            }
          }
        }
        .sns {
          ul {
            margin: 0 auto;
            width: calc(100% - 32px);
            display: flex;
            justify-content: space-between;
          }
        }
        */
}
#header .nav_content .hum_nav ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--wh70);
}
#header .nav_content .hum_nav ul li a, #header .nav_content .hum_nav ul li span {
  position: relative;
  width: 100%;
  color: var(--wh);
  font-size: 2rem;
  display: block;
}
#header .nav_content .hum_nav ul li a::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 16px;
  background: url(../img/common/icn_arrow_w.svg) no-repeat 0 0/contain;
  top: calc(50% - 8px);
  right: 0;
}
#header .nav_content .hum_nav ul li span::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 17px;
  background: var(--wh);
  top: calc(50% - 8px);
  right: 7.5px;
}
#header .nav_content .hum_nav ul li span::after {
  position: absolute;
  content: "";
  width: 17px;
  height: 2px;
  background: var(--wh);
  top: calc(50% - 1px);
  right: 0;
}
#header .nav_content .hum_nav ul li.toggle .child {
  display: none;
}
#header .nav_content .hum_nav ul li.toggle.active span::before {
  content: none;
}
#header .nav_content .hum_nav ul li.toggle.active ul.child {
  padding-top: 10px;
  display: block;
}
#header .nav_content .hum_nav ul li.toggle.active ul.child li {
  border-bottom: none;
}
#header .nav_content .hum_nav ul li.toggle.active ul.child li a {
  padding-left: 1em;
}
#header .nav_content .hum_nav ul.external {
  margin-top: 60px;
  border-top: 1px solid var(--wh70);
}
#header .nav_content .hum_nav ul.external li a {
  padding-left: 24px;
  font-size: 1.4rem;
}
#header .nav_content .hum_nav ul.external li a::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/common/icn_external_w.svg) no-repeat 0 0/contain;
  top: calc(50% - 7px);
  left: 0;
}
#header.h_fixed {
  position: fixed;
  top: 0;
  z-index: 9999;
}

/*
.jigyo {
  #header {
    position: fixed;
    z-index: 9999;
  }

  .hero {
    @media only screen and (max-width: variable.$breakpoint_sp) {
      padding-top: 72px;
    }
  }
}
*/
/* footer */
/* -------------------------------------------------------- */
footer {
  background: var(--primary15);
}
footer a {
  color: var(--base-color-wh);
}
footer a:hover {
  opacity: 0.7;
}
footer .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 540px) {
  footer .footer {
    display: block;
  }
}
footer .footer .f_nav_wrap {
  padding: 36px 0;
  width: 65%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 540px) {
  footer .footer .f_nav_wrap {
    width: 100%;
  }
}
footer .footer .f_nav_wrap .f_inner {
  margin: 0 auto;
  width: 56%;
}
@media only screen and (max-width: 1024px) {
  footer .footer .f_nav_wrap .f_inner {
    width: 90%;
  }
}
@media only screen and (max-width: 540px) {
  footer .footer .f_nav_wrap .f_inner {
    width: 94%;
  }
}
footer .footer .f_nav_wrap #f_logo {
  margin: 0 auto 40px;
  width: 240px;
}
@media only screen and (max-width: 540px) {
  footer .footer .f_nav_wrap .f_nav {
    margin: 0 auto;
    width: 94%;
  }
}
footer .footer .f_nav_wrap .f_nav dl {
  margin-bottom: 14px;
  width: 50%;
  line-height: 1.8;
}
@media only screen and (max-width: 540px) {
  footer .footer .f_nav_wrap .f_nav dl {
    width: 100%;
  }
}
footer .footer .f_nav_wrap .f_nav dl dt {
  position: relative;
  padding-left: 32px;
}
footer .footer .f_nav_wrap .f_nav dl dt::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/common/icn_arrow01.svg) no-repeat 0 0/contain;
  top: calc(50% - 8px);
  left: 0;
}
footer .footer .f_nav_wrap .f_nav dl dd {
  position: relative;
  padding-left: 48px;
}
footer .footer .f_nav_wrap .f_nav dl dd::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 11px;
  background: url(../img/common/icn_arrow02.svg) no-repeat 0 0/contain;
  top: calc(50% - 5px);
  left: 32px;
}
footer .footer .f_nav_wrap .f_nav.f_nav01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footer .f_nav_wrap .f_nav.f_nav02 dl {
  width: 100%;
}
footer .footer .f_nav_wrap .f_nav.f_nav02 dl dt a {
  position: relative;
  padding-right: 20px;
}
footer .footer .f_nav_wrap .f_nav.f_nav02 dl dt a::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background: url(../img/common/icn_external.svg) no-repeat 0 0/contain;
  top: calc(50% - 6px);
  right: 0;
}
footer .footer .f_contact {
  width: 35.5%;
  max-width: 512px;
  background: var(--primary);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 540px) {
  footer .footer .f_contact {
    width: 100%;
  }
}
footer .footer .f_contact .f_inner {
  margin: 0 auto;
  width: 72%;
}
@media only screen and (max-width: 540px) {
  footer .footer .f_contact .f_inner {
    margin: 20px auto;
    width: 100%;
  }
}
footer .footer .f_contact .f_inner .ttl {
  margin-bottom: 15px;
  color: var(--wh);
  font-size: 4.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  footer .footer .f_contact .f_inner .ttl {
    font-size: 2.4rem;
  }
}
footer .footer .f_contact .f_inner p {
  color: var(--wh);
}
footer .footer .f_contact .f_inner ul {
  margin-top: 56px;
}
@media only screen and (max-width: 540px) {
  footer .footer .f_contact .f_inner ul {
    margin: 30px auto;
    width: 80%;
  }
}
footer .copyright {
  padding: 5px 0;
  color: #252525;
  background: var(--wh);
  font-size: 1.4rem;
  text-align: center;
}

/* p_head */
/* -------------------------------------------------------- */
/*
.p_head{
  background: url(../img/common/bg.png) repeat center 0 / cover;
  h1 {
    height: 330px;
    display: flex;
    align-items: center;
    color: var(--base-color-wh);
    font-family: "freestyle-script";
    font-size: 10.4rem;
    @media only screen and (max-width: variable.$breakpoint_sp) {
      height: 240px;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      font-size: 6.4rem;
    }
    span {
      margin-left: 8px;
      color: var(--base-color-wh);
      font-family: "Honoka-Shin-Maru-Gothic_R";
      font-size: 3.2rem;
      display: block;
      @media only screen and (max-width: variable.$breakpoint_sp2) {
        margin-left: 0;
        font-size: 1.6rem;
      }
    }
  }
}
*/
/* p_contact */
/* -------------------------------------------------------- */
/*
.p_contact {
  padding-bottom: 60px;
//  background: var(--base-color-wh);
  background: url(../img/common/p_contact_bg.jpg) no-repeat center center / cover;
  @media only screen and (max-width: variable.$breakpoint_sp2) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  h2 {
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    color: var(--base-color-nv);
    font-family: "freestyle-script";
    font-size: 10.4rem;
    @media only screen and (max-width: variable.$breakpoint_sp2) {
      margin-bottom: 16px;
      font-size: 6.4rem;
      flex-direction: column;
      line-height: 1;
    }
    span {
      margin-left: 8px;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 3.2rem;
      font-weight: 500;
      display: block;
      @media only screen and (max-width: variable.$breakpoint_sp2) {
        font-size: 1.6rem;
      }
    }
  }
  p.lead {
    margin-bottom: 40px;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
    @media only screen and (max-width: variable.$breakpoint_sp2) {
      margin-bottom: 20px;
      font-size: 1.6rem;
      text-align: left;
    }
  }
  .box {
    border-top: 2px solid var(--base-color-bk);
    display: flex;
    @media only screen and (max-width: variable.$breakpoint_sp2) {
      border-top: none;
      justify-content: space-between;
    }
    .telbox {
      padding-top: 40px;
      width: 50%;
      text-align: center;
      @media only screen and (max-width: variable.$breakpoint_sp2) {
        padding-top: 20px;
        padding-bottom: 20px;
        width: 48%;
        border: 1px solid var(--base-color-bk);
        border-radius: 8px;
      }
      .tel {
        @media only screen and (max-width: variable.$breakpoint_sp2) {
          padding-bottom: 8px;
        }
        a {
          position: relative;
          font-family: "D-DIN-PRO-700-Bold";
          font-size: 3.2rem;
          font-weight: 700;
          @media only screen and (max-width: variable.$breakpoint_sp2) {
            font-size: 1.8rem;
            letter-spacing: 0.05em;
          }
          &::before {
            position: absolute;
            content: '';
            width: 32px;
            height: 32px;
            background: url(../img/common/icn_tel.svg) no-repeat 0 0 / contain;
            top: 2px;
            left: -40px;
            @media only screen and (max-width: variable.$breakpoint_sp2) {
              width: 18px;
              height: 18px;
              left: -20px;
            }
          }
        }
      }
      .open {
        font-size: 1.8rem;
        @media only screen and (max-width: variable.$breakpoint_sp2) {
          font-size: 1.2rem;
        }
        span {
          font-family: "SD-DIN-PRO-400-Regular";
          letter-spacing: 0.05em;
        }
      }
      .close {
        font-size: 1.8rem;
        @media only screen and (max-width: variable.$breakpoint_sp2) {
          font-size: 1.2rem;
        }
      }
    }
    .mailbox {
      padding-top: 40px;
      width: 50%;
      text-align: center;
      border-left: 2px solid var(--base-color-bk);
      @media only screen and (max-width: variable.$breakpoint_sp2) {
        padding-top: 20px;
        border-left: none;
        width: 48%;
        border: 1px solid var(--base-color-bk);
        border-radius: 8px;
      }
      p {
        position: relative;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        @media only screen and (max-width: variable.$breakpoint_sp2) {
          font-size: 1.2rem;
        }
        &::before,
        &::after {
          content: '';
          width: 20px;
          height: 2px;
          background: var(--base-color-bk);
          border-radius: 1px;
          @media only screen and (max-width: variable.$breakpoint_sp2) {
            width: 26px;
          }
        }
        &::before {
          margin-right: 10px;
          transform: rotate(60deg);
          @media only screen and (max-width: variable.$breakpoint_sp2) {
            margin-right: 5px;
            margin-left: 15px;
            margin-top: 10px;
          }
        }
        &::after {
          margin-left: 10px;
          transform: rotate(-60deg);
          @media only screen and (max-width: variable.$breakpoint_sp2) {
            margin-left: 5px;
            margin-right: 15px;
            margin-top: 10px;
          }
        }
      }
      .mail {
        @media only screen and (max-width: variable.$breakpoint_sp2) {
          transform: translateX(10px);
        }
        a {
          position: relative;
          font-size: 2rem;
          span {
            @media only screen and (max-width: variable.$breakpoint_sp2) {
              font-size: 1.4rem;
              line-height: 1.2;
              text-align: left;
              display: inline-block;
            }
          }
          &::before {
            position: absolute;
            content: '';
            width: 33px;
            height: 27px;
            background: url(../img/common/icn_mail.svg) no-repeat 0 0 / contain;
            top: 2px;
            left: -40px;
            @media only screen and (max-width: variable.$breakpoint_sp2) {
              width: 17px;
              height: 14px;
              top: -5px;
              left: -24px;
            }
          }
        }
      }
    }
  }
}
*/
/* post_area */
/* -------------------------------------------------------- */
.post_area {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 36px 2vw;
}
@media only screen and (max-width: 767px) {
  .post_area {
    margin-bottom: 50px;
    display: block;
  }
}
.post_area .rank_box {
  margin: 0 auto;
  width: 100%;
  max-width: 350px;
}
@media only screen and (max-width: 767px) {
  .post_area .rank_box {
    margin: 0 auto 20px;
  }
}
.post_area .rank_box .rank {
  position: relative;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 43px;
}
@media only screen and (max-width: 1024px) {
  .post_area .rank_box .rank {
    gap: 0 22px;
  }
}
@media only screen and (max-width: 767px) {
  .post_area .rank_box .rank {
    margin-bottom: 20px;
  }
}
.post_area .rank_box .rank::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: 10px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .post_area .rank_box .rank::after {
    bottom: 0;
  }
}
.post_area .rank_box .rank.rank01::after {
  background: #F0D875;
}
.post_area .rank_box .rank.rank02::after {
  background: #BABABA;
}
.post_area .rank_box .rank.rank03::after {
  background: #DD9B75;
}
.post_area .rank_box .rank .icn {
  width: 100px;
  height: 100px;
}
@media only screen and (max-width: 1024px) {
  .post_area .rank_box .rank .icn {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .post_area .rank_box .rank .icn {
    width: 50px;
    height: 50px;
  }
}
.post_area .rank_box .rank p {
  color: var(--bk);
  font-size: clamp(2.6rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.post_area .post_box {
  margin: 0 auto;
  width: 100%;
  max-width: 350px;
  min-height: 410px;
  background: var(--wh);
  -webkit-box-shadow: 2px 4px 15px rgba(37, 37, 37, 0.1);
          box-shadow: 2px 4px 15px rgba(37, 37, 37, 0.1);
  border-radius: 5px;
}
.post_area .post_box a {
  padding: 10px 0px 16px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px 0;
}
@media only screen and (max-width: 1024px) {
  .post_area .post_box a {
    margin: 0 auto 20px;
  }
}
.post_area .post_box a .cat span {
  margin-left: 10px;
  margin-top: 5px;
  padding: 2px 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--wh);
  font-size: 1.3rem;
  background: var(--primary);
  border-radius: 25px;
  display: inline-block;
}
.post_area .post_box a figure {
  overflow: hidden;
}
.post_area .post_box a .ttl {
  padding: 0 16px;
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 29px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post_area .post_box a .date {
  padding: 0 16px;
  width: 100%;
  color: var(--gray2);
  font-weight: 500;
  font-size: clamp(1.8rem, 2vw, 2rem);
  text-align: right;
}
.post_area .post_box a:hover {
  opacity: 0.7;
}
.post_area .post_box a:hover figure img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.post_voice_area {
  margin: 84px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 36px 2vw;
}
@media only screen and (max-width: 767px) {
  .post_voice_area {
    margin: 48px auto;
    grid-template-columns: 1fr;
  }
}
.post_voice_area .voice_box {
  margin: 0 auto;
  width: 100%;
}
.post_voice_area .voice_box a {
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 343px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: var(--wh);
  border-radius: 5px;
  -webkit-box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.1), 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
          box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.1), 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
}
@media only screen and (max-width: 540px) {
  .post_voice_area .voice_box a {
    -webkit-box-shadow: 0px 8px 16px -2px rgba(12, 12, 13, 0.1), 0px 2px 2px -2px rgba(12, 12, 13, 0.05);
            box-shadow: 0px 8px 16px -2px rgba(12, 12, 13, 0.1), 0px 2px 2px -2px rgba(12, 12, 13, 0.05);
  }
}
.post_voice_area .voice_box a figure {
  width: 100%;
  aspect-ratio: 760/428;
  overflow: hidden;
}
.post_voice_area .voice_box a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_voice_area .voice_box a p {
  padding-left: 16px;
  padding-right: 16px;
}
.post_voice_area .voice_box a p.ttl {
  padding-top: 20px;
  padding-bottom: 30px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 1024px) {
  .post_voice_area .voice_box a p.ttl {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.post_voice_area .voice_box a p.name {
  margin-bottom: 16px;
  width: 100%;
  color: var(--text);
  font-size: 1.4rem;
  text-align: right;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1024px) {
  .post_voice_area .voice_box a p.name {
    margin-bottom: 8px;
  }
}
.post_voice_area .voice_box a p.link {
  position: relative;
  margin-bottom: 16px;
  padding-right: 38px;
  width: 100%;
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right;
}
.post_voice_area .voice_box a p.link::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 12px;
  background: url(../img/common/icn_arrow02.svg) no-repeat 0 0/contain;
  top: calc(50% - 6px);
  right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post_voice_area .voice_box a:hover {
  opacity: 0.7;
}
.post_voice_area .voice_box a:hover figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.btnbox a {
  position: relative;
  margin: 0 auto;
  padding: 10px 60px 10px 46px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 60px;
  color: var(--wh);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.05em;
  background: var(--primary);
}
@media only screen and (max-width: 767px) {
  .btnbox a {
    font-size: 1.6rem;
  }
}
.btnbox a.or {
  background: #EC6852;
}
.btnbox a::after {
  position: absolute;
  content: "";
  width: 19px;
  height: 10px;
  right: 20px;
  top: calc(50% - 5px);
  background: url(../img/common/icn_arrow_w.svg) no-repeat 0 0/contain;
}
.btnbox a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* news_list recruit_list */
/* -------------------------------------------------------- */
/*
.recruit_list,
.news_list {
  .box {
    margin-bottom: 20px;
    a {
      display: flex;
      box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, .25);
      border-radius: 16px;
      @media only screen and (max-width: variable.$breakpoint_sp2) {
        display: block;
      }  
      &:hover {
        color: var(--base-color-d-gray);
        box-shadow: none;
      }
      figure {
        width: 180px;
        font-size: 0;
        line-height: 1;
        border-radius: 16px 0 0 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--base-color-m-gray);
        @media only screen and (max-width: variable.$breakpoint_sp2) {
          width: 100%;
          border-radius: 16px 16px 0 0;
        } 
        img {
          border-radius: 16px 0 0 16px;
          @media only screen and (max-width: variable.$breakpoint_sp2) {
            border-radius: 16px 16px 0 0;
          } 
        }
      }
      .txt {
        padding: 9px 16px;
        width: calc(100% - 180px);
        line-height: 1;
        background: var(--base-color-wh);
        border-radius: 0 16px 16px 0;
        @media only screen and (max-width: variable.$breakpoint_sp2) {
          border-radius: 0 0 16px 16px;
          width: 100%;
        }
        .info {
          margin-bottom: 10px;
          display: flex;
          @media only screen and (max-width: variable.$breakpoint_sp2) {
            display: block;
          } 
          .date {
            margin-right: 16px;
            margin-top: 2px;
            font-size: 1.4rem;
            @media only screen and (max-width: variable.$breakpoint_sp2) {
              margin-bottom: 10px;
            } 
          }
          .cat_list {
            span {
              margin-right: 16px;
              margin-bottom: 10px;
              padding: 4px 16px;
              font-size: 1.2rem;
              display: inline-block;
              background: var(--base-color-wh);
              border: 2px solid var(--base-color-bk);
              border-radius: 19px;
            }
          }
        }
        p {
          margin-bottom: 38px;
          font-size: 1.8rem;
          font-weight: 700;
          line-height: 1.5;
          @media only screen and (max-width: variable.$breakpoint_sp2) {
            margin-bottom: 10px;
            font-size: 1.6rem;
          } 
        }
      }
    }
  }
}
*/
/* page-numbers */
/* ------------------------------------ */
.page-numbers_wrap {
  margin: 150px auto 0;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 70px;
}
@media only screen and (max-width: 1024px) {
  .page-numbers_wrap {
    margin: 70px auto 0;
    gap: 0 30px;
  }
}
.page-numbers_wrap .prev_next {
  width: 18%;
  max-width: 80px;
}
@media only screen and (max-width: 1024px) {
  .page-numbers_wrap .prev_next {
    max-width: 40px;
  }
}
.page-numbers_wrap .prev_next .prev a,
.page-numbers_wrap .prev_next .next a {
  width: 80px;
  height: 80px;
  background: url(../img/common/icn_next.svg) no-repeat 0 0/contain;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .page-numbers_wrap .prev_next .prev a,
  .page-numbers_wrap .prev_next .next a {
    width: 40px;
    height: 40px;
  }
}
.page-numbers_wrap .prev_next .prev a:hover,
.page-numbers_wrap .prev_next .next a:hover {
  opacity: 0.7;
}
.page-numbers_wrap .prev_next .prev a {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.page-numbers_wrap .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 60px;
}
@media only screen and (max-width: 1024px) {
  .page-numbers_wrap .pagination {
    gap: 0 30px;
  }
}
.page-numbers_wrap .pagination li a,
.page-numbers_wrap .pagination li .current {
  padding: 0;
  line-height: 1.5;
  font-size: clamp(1.8rem, 2vw, 3.2rem);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-numbers_wrap .pagination li a {
  color: var(--bk);
}
.page-numbers_wrap .pagination li a:hover,
.page-numbers_wrap .pagination li .current {
  color: var(--primary);
}

/* column_categories */
/* -------------------------------------------------------- */
.column_categories {
  padding-top: 100px;
  margin-bottom: 160px;
}
@media only screen and (max-width: 767px) {
  .column_categories {
    padding-top: 50px;
    margin-bottom: 80px;
  }
}
.column_categories .post_cat {
  position: relative;
}
.column_categories .post_cat::before {
  position: absolute;
  content: "";
  width: 60%;
  height: 100%;
  background: var(--primary15);
  top: 48px;
  left: 0;
  z-index: -1;
}
.column_categories .post_cat .main_width {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 67px 2vw;
}
@media only screen and (max-width: 540px) {
  .column_categories .post_cat .main_width {
    grid-template-columns: 1fr 1fr;
    gap: 20px 2vw;
  }
}
.column_categories .post_cat .cat_box {
  margin: 0 auto;
  width: 28vw;
  max-width: 300px;
  aspect-ratio: 1.5/1;
}
@media only screen and (max-width: 540px) {
  .column_categories .post_cat .cat_box {
    width: 42vw;
    max-width: 150px;
  }
}
.column_categories .post_cat .cat_box figure {
  position: relative;
  height: 100%;
  -webkit-filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.25));
}
.column_categories .post_cat .cat_box figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.column_categories .post_cat .cat_box figure figcaption {
  position: absolute;
  width: 100%;
  height: 42%;
  color: var(--bk);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.46;
  letter-spacing: 0.05em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  bottom: 8px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .column_categories .post_cat .cat_box figure figcaption {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 540px) {
  .column_categories .post_cat .cat_box figure figcaption {
    font-size: 2.6vw;
  }
}

/* rinen */
/* -------------------------------------------------------- */
/*
.rinen {
  padding: 80px 0;
  display: block;
  background: url(../img/company/rinen_bg.png) no-repeat center 0 / cover;
  @media only screen and (max-width: variable.$breakpoint_sp) {
    padding: 40px 0;
    height: 240px;
  }
  .inner {
    margin: 0 auto;
    width: 84%;
    max-width: 570px;
    h2 {
      margin-bottom: 36px;
      color: var(--base-color-wh);
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 2.8rem;
      font-weight: 500;
      justify-content: center;
      @media only screen and (max-width: variable.$breakpoint_sp) {
        font-size: 2rem;
      }
    }
    p {
      color: var(--base-color-wh);
      font-size: 2.4rem;
      line-height: 1.8;
      letter-spacing: 0.08em;
      text-align: left;
      @media only screen and (max-width: variable.$breakpoint_sp) {
        font-size: 1.4rem;
        letter-spacing: 0;
      }
    }
  }
}
*/
/* outline */
/* -------------------------------------------------------- */
/*
.outline {
  margin: 80px auto 0;
  padding: 80px 0;
  background: var(--base-color-wh);
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, .25);
  border-radius: 50px;
  @media only screen and (max-width: variable.$breakpoint_sp) {
    margin: 40px auto 0;
    padding: 40px 10px;
  }
  h2 {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    @media only screen and (max-width: variable.$breakpoint_sp) {
      margin-bottom: 20px;
    }
    span {
      position: relative;
      padding-top: 5px;
      color: var(--accent-color-bl);
      font-size: 2.8rem;
      font-weight: 500;
      display: inline-block;
      z-index: 2;
      @media only screen and (max-width: variable.$breakpoint_sp) {
        font-size: 2rem;
      }
      &::before {
        position: absolute;
        content: '';
        width: 48px;
        height: 48px;
        background: var(--accent-color-l-sky);
        border-radius: 50%;
        top: 0;
        left: -24px;
        z-index: -1;
        @media only screen and (max-width: variable.$breakpoint_sp) {
          content: none;
        }
      }
    }
  }
  h3 {
    margin: 40px 0;
    color: var(--accent-color-bl);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    @media only screen and (max-width: variable.$breakpoint_sp) {
      margin: 40px 0 20px;
    }
  }
  .inner {
    margin: 0 auto;
    padding: 32px 0;
    width: calc(100% - 200px);
    max-width: 800px;
    @media only screen and (max-width: variable.$breakpoint_sp) {
      padding: 0;
      width: 100%;
    }
    dl {
      padding: 5px 0;
      line-height: 1.8;
      display: flex;
      dt {
        width: 136px;
        @media only screen and (max-width: variable.$breakpoint_sp) {
          width: 100px;
          font-size: 1.4rem;
        }
      }
      dd {
        width: calc(100% - 136px);
        @media only screen and (max-width: variable.$breakpoint_sp) {
          width: calc(100% - 100px);
          font-size: 1.4rem;
        }
      }
    }
  }
}
*/
/* form */
/* -------------------------------------------------------- */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: rgba(184, 184, 184, 0.8);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(184, 184, 184, 0.8);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: rgba(184, 184, 184, 0.8);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: rgba(184, 184, 184, 0.8);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
input::placeholder,
textarea::placeholder {
  color: rgba(184, 184, 184, 0.8);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 540px) {
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 1.6rem;
  }
  input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 1.6rem;
  }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 1.6rem;
  }
  input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-size: 1.6rem;
  }
  input::placeholder,
  textarea::placeholder {
    font-size: 1.6rem;
  }
}

input {
  outline: none;
  border: none;
}

.form {
  /*
    .form-radio-field{
      margin: 0 .5em;
    }
  */
  /* radio button */
  /* check button */
}
.form .form_head p.lead {
  margin-bottom: 80px;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .form .form_head p.lead {
    margin-bottom: 24px;
    font-size: 1.6rem;
    text-align: left;
  }
}
.form .form_head ul {
  margin-left: 5.952vw;
  margin-bottom: 32px;
}
@media only screen and (max-width: 540px) {
  .form .form_head ul {
    margin-left: 0;
    margin-bottom: 24px;
  }
}
.form .form_head ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 38px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.form .form_head ul li span {
  color: var(--accent-color-bl);
}
.form .form_head ul li::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 24px;
  background: url(../img/common/icn_check.svg) no-repeat 0 0/contain;
  top: -2px;
  left: 0;
}
.form .form_head .telbox {
  margin: 0 auto 32px;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .form .form_head .telbox {
    margin: 0 auto 88px;
  }
}
.form .form_head .telbox .tel a {
  position: relative;
  font-family: "D-DIN-PRO-700-Bold";
  font-size: 3.2rem;
  letter-spacing: 0.05em;
}
.form .form_head .telbox .tel a::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/common/icn_tel.svg) no-repeat 0 0/contain;
  top: 2px;
  left: -40px;
}
.form .form_head .telbox .open {
  margin-bottom: 5px;
  font-size: 1.8rem;
}
.form .form_head .telbox .open span {
  font-family: "SD-DIN-PRO-400-Regular";
  letter-spacing: 0.05em;
}
.form .form_head .telbox .close {
  font-size: 1.8rem;
}
.form .form_body {
  margin: 0 auto;
  padding: 80px 0;
  background: var(--base-color-l-gray);
  border-radius: 50px;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  .form .form_body {
    padding: 40px 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 16px;
  }
}
.form .form_body .inner {
  margin: 0 auto;
  width: calc(100% - 164px);
}
@media only screen and (max-width: 540px) {
  .form .form_body .inner {
    width: calc(100% - 16px);
  }
}
.form .itembox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form .itembox dl {
  width: 48%;
}
.form dl {
  margin-bottom: 46px;
}
.form dl dt {
  margin-bottom: 8px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form dl dt.mb {
  margin-bottom: 15px;
}
.form dl dt span {
  margin-right: 4px;
  padding: 3px 6px;
  color: var(--base-color-wh);
  font-size: 1.2rem;
  background-color: var(--accent-color-red);
  display: inline-block;
  border-radius: 9px;
}
.form input, .form textarea {
  padding: 13px 10px 15px;
  width: 100%;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 500;
}
.form textarea {
  height: 144px;
}
.form .wpcf7-list-item {
  margin: 0 0.5em;
  display: block;
}
.form .wpcf7-list-item label {
  margin-bottom: 10px;
  display: block;
}
.form input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
}
.form input[type=radio] + span {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 2em;
}
.form input[type=radio] + span::before,
.form input[type=radio] + span::after {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid var(--base-color-d-gray);
  border-radius: 50%;
  background: #fff;
  width: 19px;
  height: 19px;
  top: 2px;
  left: 0;
  margin-right: 0.5em;
}
.form input[type=radio] + span::after {
  content: "";
  opacity: 0;
  width: 13px;
  height: 13px;
  top: 5px;
  left: 3px;
  border: none;
  background: var(--base-color-nv);
}
.form input[type=radio]:checked + span::after {
  opacity: 1;
}
.form input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
}
.form input[type=checkbox] + span {
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
  cursor: pointer;
  padding-left: 30px;
}
.form input[type=checkbox] + span:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid var(--base-color-d-gray);
  display: inline-block;
  margin-right: 0.5em;
  top: 3px;
  left: 0;
}
.form input[type=checkbox]:checked + span:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 19px;
  background: url(../img/common/form_check.svg) no-repeat 0 0/contain;
  top: 0;
  left: 0;
  z-index: 2;
}
.form p.note {
  padding-left: 30px;
  font-size: 1.4rem;
  font-weight: 500;
}
.form p.note a {
  color: var(--accent-color-bl);
}
.form p.note a:hover {
  text-decoration: underline;
}
.form input[type=submit] {
  padding: 0;
  width: 100%;
  height: 64px;
  color: var(--base-color-wh);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--base-color-nv);
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
@media only screen and (max-width: 540px) {
  .form input[type=submit] {
    padding: 14px 10px;
    width: 100%;
  }
}
.form input[type=submit]:hover {
  background: #6284BB;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.thanks {
  text-align: center;
}
.thanks h1 {
  margin-bottom: 50px;
  font-size: 3.2rem;
  font-style: 500px;
}
@media only screen and (max-width: 540px) {
  .thanks h1 {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    text-align: left;
  }
}
.thanks p {
  margin-bottom: 50px;
  font-size: 2rem;
  line-height: 1.5;
  text-align: left;
  display: inline-block;
}
@media only screen and (max-width: 540px) {
  .thanks p {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}
.thanks .btn a {
  padding: 0;
  width: 345px;
  height: 60px;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  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;
}
@media only screen and (max-width: 540px) {
  .thanks .btn a {
    width: 100%;
  }
}
.thanks .btn a i {
  margin: 0 12px;
  width: 40px;
  display: block;
}
.thanks .btn a span {
  margin: 0 12px;
  display: block;
}
.thanks .btn.facebook a {
  margin: 0 auto 50px;
  font-family: "SD-DIN-PRO-700-Bold";
  background: var(--accent-color-facebook);
}
@media only screen and (max-width: 540px) {
  .thanks .btn.facebook a {
    margin: 0 auto 32px;
  }
}
.thanks .btn.facebook a i {
  height: 41px;
  background: url(../img/common/icn_facebook.png) no-repeat 0 0/contain;
}
.thanks .btn.instagram a {
  margin: 0 auto 50px;
  font-family: "SD-DIN-PRO-700-Bold";
  background: var(--accent-color-instagram);
}
@media only screen and (max-width: 540px) {
  .thanks .btn.instagram a {
    margin: 0 auto 32px;
  }
}
.thanks .btn.instagram a i {
  height: 41px;
  background: url(../img/common/icn_instagram.png) no-repeat 0 0/contain;
}
.thanks .btn.x a {
  margin: 0 auto;
  font-family: "SD-DIN-PRO-700-Bold";
  background: var(--base-color-bk);
}
.thanks .btn.x a i {
  height: 37px;
  background: url(../img/common/icn_x.png) no-repeat 0 0/contain;
}

/* contactform */
/* -------------------------------------------------------- */
/*
.contactform {
  padding: 80px 0;
  background: var(--base-color-wh);
  @media only screen and (max-width: variable.$breakpoint_sp) {
    padding: 40px 0;
  }
  .form_head {
    margin: 0 auto 30px;
    max-width: calc(100% - 266px);
    text-align: center;
    @media only screen and (max-width: variable.$breakpoint_sp) {
      max-width: auto;
      max-width: initial;
    }
    h2 {
      position: relative;
      margin-bottom: 40px;
      padding-top: 20px;
      font-size: 3.2rem;
      font-weight: 700;
      display: inline-block;
      z-index: 2;
      @media only screen and (max-width: variable.$breakpoint_sp) {
        font-size: 2.4rem;
      }
      &::before {
        position: absolute;
        content: '';
        width: 80px;
        height: 80px;
        background: var(--accent-color-nikoniko-ye);
        border-radius: 50%;
        top: 0;
        left: -26px;
        z-index: -1;
        @media only screen and (max-width: variable.$breakpoint_sp) {
          width: 72px;
          height: 72px;
        }
      }
    }
    p.lead {
      margin-bottom: 1em;
      font-size: 1.6rem;
      line-height: 1.5;
      text-align: left;
    }
    .telbox {
      margin: 40px auto;
      .freedial {
        a {
          position: relative;
          font-family: "D-DIN-PRO-700-Bold";
          font-size: 3.2rem;
          font-weight: 700;
          &::before {
            position: absolute;
            content: '';
            width: 48px;
            height: 48px;
            background: url(../img/common/icn_freedial_bk.svg) no-repeat 0 0 / contain;
            top: -8px;
            left: -58px;
          }
        }
      }
      .tel {
        a {
          padding-left: 50px;
          font-size: 3.8rem;
          &::before {
            width: 48px;
            height: 48px;
            background: url(../img/common/icn_tel02_bk.svg) no-repeat 0 0 / contain;
            top: -10px;
//            left: -50px;
            left: 0;
          }
        }
      }
      .open {
        margin-top: 10px;
        dl {
          display: flex;
          align-items: flex-start;
          justify-content: center;
          dt {
            position: relative;
            font-weight: 400;
            &::before {
              position: absolute;
              content: '';
              width: 24px;
              height: 24px;
              background: url(../img/common/icn_clock_bk.svg) no-repeat 0 0 / contain;
              top: 0;
              left: -30px;
            }
          }
          dd {
            padding-left: 15px;
            font-weight: 400;
            text-align: left;
          }
        }
        &.open02 {
          dl {
            position: relative;
            margin: 0 auto;
            padding-left: 36px;
            width: 240px;
            display: flex;
            justify-content: initial;
            flex-wrap: wrap;
            transform: translateX(24px);
            &::before {
              position: absolute;
              content: '';
              width: 24px;
              height: 24px;
              background: url(../img/common/icn_clock_bk.svg) no-repeat 0 0 / contain;
              top: 0;
              left: 0;
            }
            dt {
              padding-right: 15px;
              &::before {
                content: none;
              }
            }
            dd {
              padding-left: 0;
            }
          }
        }
      }
    }
  }

  input[type="submit"] {
    &:hover {
      background: #4D74B4;
    }
  }
}
*/
/* overview */
/* -------------------------------------------------------- */
/*
.overview_box {
  padding: 40px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  @media only screen and (max-width: variable.$breakpoint_tablet_less) {
    display: block;
  }
  .txt {
    width: 460px;
    @media only screen and (max-width: variable.$breakpoint_tablet_less) {
      margin-bottom: 40px;
      width: 100% !important;
    }
    dl {
      margin-bottom: 16px;
      display: flex;
      @media only screen and (max-width: variable.$breakpoint_sp) {
        width: 100%;
        &:not(.non) {
          flex-wrap: wrap;
        }
      }
      dt {
        padding-top: 20px;
        padding-left: 20px;
        width: 136px;
        font-size: 2rem;
        font-weight: 500;
        @media only screen and (max-width: variable.$breakpoint_sp) {
          width: 100%;
        }
        &.shop {
          width: 100%;
          background: url(../img/common/icn_shop.svg) no-repeat 0 0 / 40px 40px;
        }
//        &.clock {
//          background: url(../img/common/icn_clock.svg) no-repeat 0 0 / 40px 40px;
//        }
        &.person {
          background: url(../img/common/icn_person.svg) no-repeat 0 0 / 40px 40px;
        }
        &.map {
          background: url(../img/common/icn_map.svg) no-repeat 0 0 / 40px 40px;
        }
        &.station {
          background: url(../img/common/icn_station.svg) no-repeat 0 0 / 40px 40px;
        }
        &.parking {
          background: url(../img/common/icn_parking.svg) no-repeat 0 0 / 40px 40px;
        }
        &.freedial {
          background: url(../img/common/icn_freedial.svg) no-repeat 0 0 / 40px 40px;
        }
        &.tel {
          background: url(../img/common/icn_tel02.svg) no-repeat 0 0 / 40px 40px;
        }
        &.fax {
          background: url(../img/common/icn_fax.svg) no-repeat 0 0 / 40px 40px;
        }
        &.comment {
          background: url(../img/common/icn_comment.svg) no-repeat 0 0 / 40px 40px;
        }
        &.car {
          background: url(../img/common/icn_car.svg) no-repeat 0 0 / 40px 40px;
        }
        &.instagram {
          background: url(../img/common/icn_instagram.svg) no-repeat 0 0 / 40px 40px;
        }
        &.mobile {
          background: url(../img/common/icn_mobile.svg) no-repeat 0 0 / 40px 40px;
        }
      }
      dd {
        padding-top: 20px;
        width: calc(100% - 136px);
        font-size: 1.8rem;
        word-break: break-all;
        @media only screen and (max-width: variable.$breakpoint_sp) {
          padding-top: 10px;
          width: 100%;
        }
        span {
          font-family: "SD-DIN-PRO-400-Regular";
          letter-spacing: 0.05em;
          .link {
            font-size: 2.4rem;
            transform: translateY(-5px);
            display: inline-block;
          }
        }
        &.ml {
          @media only screen and (max-width: variable.$breakpoint_sp) {
            margin-left: 1em;
          }
        }
        dl {
          margin-bottom: 0;
          dt {
            padding-top: 0;
            width: 120px;
            font-size: 1.8rem;
          }
          dd {
            padding-top: 0;
            width: calc(100% - 120px);
          }
        }
      }
      &.non {
        dt {
          @media only screen and (max-width: variable.$breakpoint_sp) {
            margin-right: 16px;
            width: 100px;
          }
        }
        dd {
          line-height: 1.55;
          @media only screen and (max-width: variable.$breakpoint_sp) {
            padding-top: 20px;
            width: calc(100% - 116px);
            line-height: 1.5;
          }
        }
      }
    }

    .clock_wrap {
      margin-bottom: 16px;
      padding-top: 20px;
      background: url(../img/common/icn_clock.svg) no-repeat 0 0 / 40px 40px;
      .clock {
        display: flex;
        .c_key {
          padding-left: 20px;
          width: 136px;
          font-size: 2rem;
          font-weight: 500;
        }
        .c_val {
          width: calc(100% - 136px);
          font-size: 1.8rem;
          word-break: break-all;
          span {
            font-family: "SD-DIN-PRO-400-Regular";
            letter-spacing: 0.05em;
          }
          .c_valbox {
            display: flex;
            .val01 {
              width: 120px;
              font-weight: 500;
            }
            .val02 {
              width: calc(100% - 120px);
            }
          }
        }
      }
    }
    p.btn_txt {
      position: relative;
      margin-bottom: 8px;
      font-size: 1.8rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      &::before,
      &::after {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--base-color-bk);
        border-radius: 1px;
      }
      &::before {
        margin-right: 10px;
        transform: rotate(60deg);
      }
      &::after {
        margin-left: 10px;
        transform: rotate(-60deg);
      }
    }
    .btn {
      a {
        padding: 19px 10px;
        width: 100%;
        background: var(--accent-color-red);
        @media only screen and (max-width: variable.$breakpoint_sp) {
          margin-bottom: 54px;
          padding: 23px 10px;
          width: 100%;
          text-align: center;
        }
        &:hover {
          background: #FA5454;
        }
      }
    } 
  }
  .gmap_wrap {
    width: 495px;
    @media only screen and (max-width: variable.$breakpoint_tablet_less) {
      width: 100%;
    }
    .gmap {
      width: 495px;
      @media only screen and (max-width: variable.$breakpoint_tablet_less) {
        width: 100%;
      }
      iframe {
        height: 322px;
      }
    }
    p {
      margin-top: 6px;
      line-height: 1.5;
      font-weight: 500;
    }
  }
}
*/
/*  supervisor_box  */
/*=============================================*/
.supervisor_box {
  position: relative;
  margin: 100px auto 0;
  padding: 40px 0 60px 70px;
  width: 892px;
  background: var(--primary5);
}
@media only screen and (max-width: 767px) {
  .supervisor_box {
    margin: 60px auto 0;
    padding: 50px 20px;
    width: 100%;
  }
}
.supervisor_box figure {
  position: absolute;
  width: 44%;
  bottom: -60px;
  right: 0;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .supervisor_box figure {
    min-width: 135px;
    bottom: -30px;
  }
}
.supervisor_box .txt_base {
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 46px;
}
@media only screen and (max-width: 1024px) {
  .supervisor_box .txt_base {
    padding: 0;
    gap: 0 20px;
  }
}
.supervisor_box .txt_base .info p {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  .supervisor_box .txt_base .info p {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}
.supervisor_box .txt_base .name {
  font-size: 7rem;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  .supervisor_box .txt_base .name {
    font-size: 4rem;
  }
}
.supervisor_box .txt_base .name ruby rt {
  margin-bottom: 5px;
  font-size: 2rem;
}
@media only screen and (max-width: 1024px) {
  .supervisor_box .txt_base .name ruby rt {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .supervisor_box .txt_base .name ruby rt {
    font-size: 1.4rem;
  }
}
.supervisor_box dl {
  margin-bottom: 40px;
}
.supervisor_box dl dt {
  padding-bottom: 10px;
  line-height: 1.8;
}
.supervisor_box dl dt span {
  padding: 1px 10px 3px;
  color: var(--wh);
  font-weight: 700;
  letter-spacing: 0.2em;
  background: var(--primary);
}
.supervisor_box dl dd {
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .supervisor_box dl dd {
    font-size: 1.4rem;
  }
}
.supervisor_box dl dd p {
  padding-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .supervisor_box dl dd p {
    font-size: 1.4rem;
  }
}
.supervisor_box dl dd dl {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.supervisor_box dl dd dl dt {
  margin-right: 1em;
}
.supervisor_box dl dd ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.supervisor_books {
  margin: 160px auto 180px;
  width: 76%;
  max-width: 1088px;
}
@media only screen and (max-width: 1024px) {
  .supervisor_books {
    margin: 80px auto 120px;
    width: 90%;
  }
}