@charset "UTF-8";
/*----------------------------------
  base
----------------------------------*/
:root {
  --color01: #333333;
  --color02: #f8f5ed;
  --color03: #dad5c7;
  --color04: #ff7326;
  --color05: #ff8900;
  --thin: 100;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semiBold: 600;
  --bold: 700;
  --font1: "Zen Kaku Gothic New", sans-serif;
  --font2: "Poppins", sans-serif;
  --spacing: 0;
  --transition: all 0.5s ease;
  --opacity: 0.6;
}

body {
  color: var(--color01);
  font-family: var(--font1);
  letter-spacing: var(--spacing);
  overflow-x: hidden;
  padding-top: 86px;
}

main {
  box-sizing: border-box;
  font-size: 16px;
}

.container {
  overflow-x: hidden;
}

img {
  height: auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/*----------------------------------
  parts
----------------------------------*/
.content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
}

.section-title {
  font-size: 32px;
  font-weight: var(--bold);
  line-height: 1.43;
  letter-spacing: 0.01em;
}

.section-title span {
  color: var(--color05);
  display: block;
  font-family: var(--font2);
  font-size: 14px;
  font-weight: var(--regular);
}

.section-title__vertical {
  font-feature-settings: initial;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.section-title__vertical span {
  color: var(--color05);
  display: block;
  font-family: var(--font2);
  font-size: 14px;
  font-weight: var(--regular);
}

.section-text {
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.005em;
}

.text-color {
  color: var(--color05);
}

.grecaptcha-badge {
  visibility: hidden;
}

/*----------------------------------
  header
----------------------------------*/
header {
  background-color: #fff;
  height: 86px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
}

.header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-left: 3.66%;
  height: 100%;
  width: 86.6%;
}

/* header-logo */
.header-logo {
  max-width: 154px;
  height: 100%;
  width: 13.02876%;
}

.header-logo__link {
  background-image: url(../images/common/logo.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: 100%;
  overflow: hidden;
  text-indent: 100%;
  width: 100%;
  white-space: nowrap;
}

/* header-menu */
.header-menu__items {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.header-menu__item:not(:last-child) {
  margin-right: clamp(10px, 1.83vw, 25px);
}

.header-menu__link {
  display: block;
  font-weight: var(--bold);
  transition: var(--transition);
  white-space: nowrap;
}

.header-menu__link:hover {
  color: var(--color04);
}

/*----------------------------------
  footer
----------------------------------*/
footer {
  background-color: var(--color02);
  border-radius: 100px 100px 0 0;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
}

footer::after {
  background-image: url(../images/common/footer-deco.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  position: absolute;
  top: 0;
  right: -2%;
  padding-top: 28.111%;
  width: 20.278%;
  z-index: 1;
}

.footer-logo {
  max-width: 154px;
  height: 46px;
}

.footer-logo__link {
  background-image: url(../images/common/logo.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: 100%;
  overflow: hidden;
  text-indent: 100%;
  width: 100%;
  white-space: nowrap;
}

.footer-address {
  font-weight: var(--medium);
  line-height: 2;
  margin-top: 16px;
}

.footer-info {
  font-weight: var(--medium);
  line-height: 2;
  margin-top: 16px;
}

.footer-info span {
  font-weight: var(--bold);
}

.footer-sns {
  display: flex;
  margin-top: 20px;
}

.footer-sns__icon {
  max-width: 32px;
  margin-right: 20px;
  width: 100%;
}

.footer-facility__logos {
  display: flex;
  margin-top: 30px;
}

.footer-facility__logo {
  max-width: 208px;
}

.footer-facility__logo img {
  border-radius: 10px;
}

.footer-copyright {
  margin-top: 40px;
}

.footer-copyright__text {
  font-weight: var(--medium);
  text-align: center;
}

/*----------------------------------
  subpage-header
----------------------------------*/
.subpage-header {
  background-color: var(--color02);
  padding-top: 60px;
  padding-bottom: 60px;
}

.path {
  font-size: 14px;
  font-weight: var(--medium);
}

.path-link {
  padding-right: 1em;
  position: relative;
  transition: 0.3s ease;
}

.path-link:hover {
  color: var(--color05);
}

.path-link::before,
.path-link::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0.25em;
  width: 0.57em;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 0.5px) 50%;
}

.path-link::before {
  transform: rotate(25deg);
}

.path-link::after {
  transform: rotate(-25deg);
}

.subpage-title {
  font-size: 32px;
  font-weight: var(--bold);
  line-height: 1.43;
  margin-top: 10px;
}

/*----------------------------------
  contact
----------------------------------*/
.contact-side {
  position: fixed;
  right: 0;
  bottom: 50px;
  z-index: 9;
}

.contact-side__btn__link {
  align-items: center;
  border-radius: 15px 0 0 15px;
  display: flex;
  color: #fff;
  background-color: var(--color04);
  font-weight: var(--bold);
  font-feature-settings: initial;
  justify-content: center;
  padding-top: 4em;
  padding-bottom: 2.625em;
  position: relative;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  width: 3.5em;
}

.contact-side__btn__icon {
  background-color: #fff;
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.993 18.794"><path d="M2087.1,3490.794a3.1,3.1,0,0,1-3.1-3.1v-12.6a3.1,3.1,0,0,1,3.1-3.1h16.794a3.1,3.1,0,0,1,3.1,3.1v12.6a3.1,3.1,0,0,1-3.1,3.1Zm-1.1-3.1a1.1,1.1,0,0,0,1.1,1.1h16.794a1.1,1.1,0,0,0,1.1-1.1v-10.674l-8.923,6.245a1,1,0,0,1-1.146,0l-8.923-6.245Zm9.5-6.469,9.4-6.579a1.1,1.1,0,0,0-1-.647H2087.1a1.1,1.1,0,0,0-1,.647Z" transform="translate(-2084 -3472)" fill="%230fff"/></svg>');
  mask-image: url('data:image/svg+xml;utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.993 18.794"><path d="M2087.1,3490.794a3.1,3.1,0,0,1-3.1-3.1v-12.6a3.1,3.1,0,0,1,3.1-3.1h16.794a3.1,3.1,0,0,1,3.1,3.1v12.6a3.1,3.1,0,0,1-3.1,3.1Zm-1.1-3.1a1.1,1.1,0,0,0,1.1,1.1h16.794a1.1,1.1,0,0,0,1.1-1.1v-10.674l-8.923,6.245a1,1,0,0,1-1.146,0l-8.923-6.245Zm9.5-6.469,9.4-6.579a1.1,1.1,0,0,0-1-.647H2087.1a1.1,1.1,0,0,0-1,.647Z" transform="translate(-2084 -3472)" fill="%230fff"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  top: 2.1em;
  left: 50%;
  transform: translateX(-50%);
  height: 1.175em;
  width: 1.44em;
}

.contact-side__btn__link:hover {
  background-color: #fff;
  border-top: 1px solid var(--color04);
  border-left: 1px solid var(--color04);
  border-bottom: 1px solid var(--color04);
  color: var(--color04);
}

.contact-side__btn__link:hover .contact-side__btn__icon {
  background-color: var(--color04);
}

/*----------------------------------
  swiper
----------------------------------*/
.swiper-slide {
  width: auto;
}

/*----------------------------------
  modal
----------------------------------*/
.open-modal {
  cursor: pointer;
}

.hidden {
  overflow: hidden;
}

.hidden .container {
  position: relative;
}

.hidden .container::after {
  background-color: rgba(51, 51, 51, 0.85);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
}

.modal-container {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: right;
  transform: translateX(50%);
  align-items: center;
  z-index: 208001;
  transition: all 0.5s 0s ease;
}

.modal-wrap {
  height: auto;
  height: 100vh;
  position: relative;
  transform: translateX(100%);
  width: 90.2635%;
}

.modal-wrap.show {
  transform: translateX(0);
}

.modal-content {
  background-color: #fff;
  border: none;
  border-radius: 25px 0 0 25px;
  max-width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  height: 100%;
  width: 100%;
}

.modal-wrap.show .modal-item {
  border-radius: 25px 0 0 25px;
  display: block;
}

.modal-item {
  display: none;
}

.modal-inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

.modal-close {
  cursor: pointer;
  height: 25px;
  position: absolute;
  right: 25px;
  top: 20px;
  width: 25px;
  z-index: 99;
}

.modal-close::before,
.modal-close::after {
  background-color: var(--color04);
  content: "";
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*----------------------------------
  Media Query
----------------------------------*/
/* tb */
@media not all and (min-width: 1025px) {
  /* base */
  body {
    padding-top: 50px;
  }

  /* header */
  header {
    height: 50px;
  }

  header .pc {
    display: none;
  }

  header .sp {
    display: block;
  }

  .header {
    margin-left: auto;
    margin-right: auto;
    width: 86.666%;
  }

  /* header-logos */
  .header-logo {
    max-width: 100px;
    height: 100%;
    width: 100%;
  }

  /* header-menu */
  .header-menu {
    min-width: auto;
    width: 100vw;
  }

  .header-menu__items {
    background-color: var(--color02);
    display: block;
    height: 100%;
    padding-top: 25px;
    opacity: 0;
    padding-bottom: 253px;
    position: fixed;
    left: 0;
    top: 50px;
    overflow-x: hidden;
    overflow-y: auto;
    transition: var(--transition);
    transform: translateX(100%);
    visibility: hidden;
    width: 100%;
    z-index: 99;
  }

  .header.open .header-menu__items {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    width: 100%;
  }

  .header-menu__item {
    margin-left: auto;
    margin-right: auto;
    width: 86.666%;
  }

  .header-menu__item:not(:last-child) {
    margin-right: auto;
  }

  .header-menu__link {
    background-image: repeating-linear-gradient(90deg, #707070, #707070 2px, transparent 2px, transparent 6px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
    font-size: 16px;
    line-height: 1.5;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .header-menu__contact .header-menu__link {
    align-items: center;
    background-image: none;
    background-color: var(--color04);
    border-radius: 10px;
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: var(--medium);
    height: 3.85em;
    margin-top: 30px;
    position: relative;
    justify-content: center;
    width: 100%;
  }

  .header-menu__contact__icon {
    margin-left: 0.642em;
    position: relative;
  }

  .header-menu__contact__icon::after {
    background-color: #fff;
    content: "";
    -webkit-mask-image: url('data:image/svg+xml;utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.97 17.723"><path d="M-4856.518,3485.437a1,1,0,0,1-.013-1.415l7.093-7.229-7.085-7.087a1,1,0,0,1,0-1.415,1,1,0,0,1,1.413,0l7.788,7.787a1,1,0,0,1,.006,1.407l-7.787,7.937a.992.992,0,0,1-.713.3h0A.987.987,0,0,1-4856.518,3485.437Zm-9.482-7.964a1,1,0,0,1-1-1,1,1,0,0,1,1-1h11a1,1,0,0,1,1,1,1,1,0,0,1-1,1Z" transform="translate(4867 -3468)" fill="%230fff"/></svg>');
    mask-image: url('data:image/svg+xml;utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.97 17.723"><path d="M-4856.518,3485.437a1,1,0,0,1-.013-1.415l7.093-7.229-7.085-7.087a1,1,0,0,1,0-1.415,1,1,0,0,1,1.413,0l7.788,7.787a1,1,0,0,1,.006,1.407l-7.787,7.937a.992.992,0,0,1-.713.3h0A.987.987,0,0,1-4856.518,3485.437Zm-9.482-7.964a1,1,0,0,1-1-1,1,1,0,0,1,1-1h11a1,1,0,0,1,1,1,1,1,0,0,1-1,1Z" transform="translate(4867 -3468)" fill="%230fff"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 1em;
    width: 1.125em;
  }

  .header-menu__tel {
    font-size: 14px;
    font-weight: var(--bold);
    margin-top: 24px;
  }

  .header-menu__tel .text-color {
    color: var(--color04);
    font-size: 16px;
  }

  .header-menu__time {
    font-size: 14px;
    font-weight: var(--medium);
    margin-top: 10px;
  }

  .header-menu__time strong {
    font-weight: var(--bold);
  }

  /* toggle-btn */
  header .toggle-btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: var(--transition);
    z-index: 99;
    width: 30px;
    height: 19px;
  }

  .toggle-btn__hum {
    background-color: var(--color04);
    border-radius: 10px;
    display: block;
    height: 1px;
    transition: var(--transition);
    width: 30px;
  }

  .toggle-btn__hum:nth-child(2) {
    margin-bottom: 8px;
    margin-top: 8px;
  }

  .open .toggle-btn__hum {
    transform: translateY(1px) rotate(-28deg);
  }

  .open .toggle-btn__hum:nth-child(2) {
    display: none;
  }

  .open .toggle-btn__hum:nth-child(3) {
    transform: translateY(0) rotate(28deg);
  }
}

/* sp */
@media not all and (min-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* base */
  body {
    padding-top: 50px;
  }

  main {
    font-size: 14px;
  }

  /* parts */
  .content {
    padding-left: 0;
    padding-right: 0;
    width: 86.666%;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .section-title span {
    font-size: 12px;
  }

  .section-title__vertical span {
    font-size: 12px;
  }

  .section-text {
    line-height: 2;
    letter-spacing: 0;
  }

  /* footer */
  footer {
    border-radius: 50px 50px 0 0;
    padding-top: 50px;
    padding-bottom: 30px;
  }

  footer::after {
    top: 20.882%;
    right: -3.967%;
    padding-top: 48.111%;
    width: 41.333%;
  }

  .footer-logo {
    max-width: 110px;
    height: 35px;
  }

  .footer-address {
    font-size: 14px;
    line-height: 1.85;
    margin-top: 15px;
  }

  .footer-info {
    font-size: 14px;
    line-height: 1.85;
    margin-top: 15px;
  }

  .footer-sns {
    margin-top: 16px;
  }

  .footer-sns__icon {
    max-width: 30px;
    margin-right: 15px;
  }

  .footer-facility__logo {
    max-width: 150px;
  }

  .footer-copyright {
    margin-top: 40px;
  }

  .footer-copyright__text {
    font-size: 14px;
  }

  /* subpage-header */
  .subpage-header {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .path {
    font-size: 12px;
  }

  .subpage-title {
    font-size: 24px;
    margin-top: 5px;
  }

  /* modal */
  .modal-wrap {
    height: auto;
    height: 100vh;
    position: relative;
    width: 100%;
  }

  .modal-content {
    background-color: transparent;
    border: none;
    border-radius: 0;
    max-width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    height: 100%;
    width: 100%;
  }

  .modal-wrap.show .modal-item {
    border-radius: 25px 0 0 25px;
    display: block;
  }

  .modal-item {
    display: none;
  }

  .modal-inner {
    background-color: #fff;
    border-radius: 0 0 25px 25px;
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .modal-close {
    cursor: pointer;
    height: 25px;
    position: absolute;
    right: 25px;
    top: 20px;
    width: 25px;
    z-index: 99;
  }

  .modal-close::before,
  .modal-close::after {
    background-color: var(--color04);
    content: "";
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
  }

  .modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .modal-close__bottom {
    cursor: pointer;
    color: #fff;
    font-size: 12px;
    font-weight: var(--bold);
    line-height: 1.4;
    padding-top: 40px;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
  }

  .modal-close__bottom::before,
  .modal-close__bottom::after {
    background-color: #fff;
    content: "";
    height: 20px;
    position: absolute;
    left: 50%;
    top: 20px;
    width: 2px;
  }

  .modal-close__bottom::before {
    transform: translateX(-50%) rotate(45deg);
  }

  .modal-close__bottom::after {
    transform: translateX(-50%) rotate(-45deg);
  }
}
