@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #000000;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

span {
  display: inline-block;
}

.container {
  width: 100%;
  display: flex;
  justify-content: right;
}

.multiple-column {
  display: flex;
}
.multiple-column-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.inner {
  width: 77vw;
  box-sizing: border-box;
}

@media screen and (min-width: 1441px) {
  .inner {
    max-width: 75vw;
  }
}
@media screen and (max-width: 1280px) {
  .inner {
    padding-right: 40px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1024px) {
  .inner {
    max-width: 1440px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    padding: 0 20px;
  }
}
.text-btn__wrapper {
  max-width: 430px;
}
.text-btn__wrapper-desc {
  font-weight: 400;
  line-height: 1.8;
}

.inview.contents-fadeup {
  opacity: 0;
  transition-duration: 1s;
  transform: translateY(20px);
}

.inview.contents-fadeup.active {
  opacity: 1;
  transform: translateY(0px);
}

.subpage-section__outer {
  margin-top: 12vh;
}

.subpage-top {
  display: flex;
  width: 100%;
  height: 100%;
}
.subpage-top__inner {
  width: 77vw;
  box-sizing: border-box;
}

.subpage-fv {
  position: relative;
  width: 100%;
  padding-top: 3.5%;
  padding-right: 3.4%;
  box-sizing: border-box;
}
.subpage-fv__bg {
  max-width: 1120px;
  width: 100%;
  aspect-ratio: 1120/661;
  max-height: 100%;
}
.subpage-fv__bg-wrapper {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.subpage-fv__bg-wrapper::after {
  content: "";
  top: 0;
  right: 0;
  position: absolute;
  width: 50.5vw;
  height: 39.1vw;
  background: linear-gradient(to right, #FF9158, #FFBB1E);
  z-index: -1;
}

@media screen and (min-width: 1441px) {
  .subpage-top {
    -moz-column-gap: 4vw;
         column-gap: 4vw;
  }
  .subpage-top .container {
    width: 75%;
  }
  .subpage-top__inner {
    width: 75vw;
  }
  .subpage-fv__bg {
    max-width: none;
  }
}
@media screen and (max-width: 1024px) {
  .subpage-top {
    display: block;
  }
  .subpage-top__inner {
    width: 100%;
  }
  .subpage-fv {
    margin-top: 33px;
    position: relative;
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    padding-left: 3.75%;
  }
  .subpage-fv__bg-wrapper::after {
    background: transparent;
  }
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fff;
  text-align: center;
}

#loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loading .kvArea {
  width: 100%;
}

#loading .kvArea .img_box {
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
}

#loading .kvArea .img_box img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  #loading .kvArea .img_box {
    max-width: 150px;
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
  opacity: 1;
}

@keyframes fadeUpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
.subpage-sub__heading {
  line-height: 1.555;
  font-size: clamp(18px, 4.8vw, 24px);
}

@media screen and (min-width: 1441px) {
  .subpage-sub__heading {
    font-size: clamp(24px, 1.6vw, 32px);
  }
}
.subpage-inner {
  max-width: 1274px;
  box-sizing: border-box;
  width: 100%;
  padding-right: 40px;
  padding-left: 23vw;
}

@media screen and (min-width: 1441px) {
  .subpage-inner {
    max-width: none;
    width: 100%;
    padding-left: calc(25vw + 60px);
  }
}
@media screen and (max-width: 1024px) {
  .subpage-inner {
    max-width: 1440px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .subpage-inner {
    padding: 0 20px;
  }
}
.subpage-intro {
  margin-top: 64px;
}
.subpage-intro__inner {
  max-width: 1274px;
  box-sizing: border-box;
  width: 100%;
  padding-right: 40px;
  padding-left: 23vw;
}
.subpage-intro__heading {
  max-width: 703px;
  width: 100%;
  position: relative;
  font-size: clamp(30px, 8vw, 40px);
  line-height: 1;
}
.subpage-intro__desc {
  max-width: 422px;
  width: 100%;
  margin-top: 64px;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (min-width: 1441px) {
  .subpage-intro__inner {
    max-width: none;
    box-sizing: border-box;
    width: 75%;
    padding-right: 40px;
    padding-left: calc(25% + 4vw);
  }
  .subpage-intro__heading {
    font-size: clamp(40px, 2.77vw, 54px);
  }
  .subpage-intro__desc {
    min-width: 480px;
    max-width: none;
    font-size: clamp(16px, 1.1vw, 20px);
  }
}
@media screen and (max-width: 1024px) {
  .subpage-intro__inner {
    max-width: 1440px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .subpage-intro__inner {
    padding: 0 20px;
  }
  .subpage-intro__desc {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .subpage-intro__heading {
    font-size: 30px;
  }
}
.subpage-nav__wrapper {
  margin-top: 65px;
}
.subpage-nav__list {
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.subpage-nav__item {
  display: flex;
  justify-content: center;
  width: 206px;
  height: 59px;
  border-radius: 10px;
  border: 1px solid #F8B41E;
  transition: background-color 1s ease;
}
.subpage-nav__item:hover {
  background: linear-gradient(to bottom, #FF9158, #FFBB1E);
  color: #ffffff;
}
.subpage-nav__item:hover .subpage-nav__link::after {
  border-bottom: solid 3px #ffffff;
  border-right: solid 3px #fFffff;
}
.subpage-nav__br--service {
  display: none;
}
.subpage-nav__sp-br {
  display: none;
}
.subpage-nav__link {
  display: block;
  padding-top: 11px;
  font-size: clamp(12px, 3.2vw, 16px);
  font-weight: 400;
  position: relative;
}
.subpage-nav__link::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 0;
  border-bottom: solid 3px #F8B41E;
  border-right: solid 3px #F8B41E;
  transform: rotate(45deg);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
}

@media screen and (min-width: 1441px) {
  .subpage-nav__item {
    width: 14.5vw;
    aspect-ratio: 208/61;
  }
}
@media (max-width: 768px) {
  .subpage-nav__list {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .subpage-nav__item {
    height: 75px;
  }
  .subpage-nav__sp-br {
    display: block;
  }
  .subpage-nav__link {
    line-height: 1.3;
  }
  .subpage-nav__link::after {
    content: "";
    width: 5px;
    height: 5px;
    border: 0;
    border-bottom: solid 3px #F8B41E;
    border-right: solid 3px #F8B41E;
    transform: rotate(45deg);
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: rotate(45deg) translateX(-50%);
  }
}
.section__heading--primary {
  font-size: clamp(72px, 19.2vw, 110px);
  line-height: 1;
  font-family: "Kanit", serif;
  letter-spacing: 0.05em;
  color: #F8B41E;
  margin-top: 1.8vw;
}
.section__heading--sub {
  font-size: 2.4rem;
  line-height: 1;
}
.section__heading--fourth {
  font-size: 2.4rem;
  font-size: clamp(1.8rem, 1.4vw, 2rem);
  font-weight: bold;
  color: #092846;
  position: relative;
  padding-left: 1.5vw;
}
.section__heading--fourth::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #F8B41E;
}
.section__outer {
  margin-top: 16vh;
}
.section__btn {
  margin-top: 28px;
}
.section__btn--link {
  position: relative;
  display: inline-block;
  padding: 22px 82px;
  border-radius: 10px;
  border: 1px solid #000000;
  height: auto;
  background-color: transparent;
  transition: background-color 1s ease;
  cursor: pointer;
}
.section__btn--link::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #000000;
  border-radius: 50%;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.section__btn--link:hover {
  background-color: #000000;
  color: #ffffff;
}
.section__btn--link:hover::after {
  background-color: #ffffff;
}

@media (min-width: 1441px) {
  .section__heading--primary {
    font-size: clamp(110px, 7.63vw, 176px);
    letter-spacing: 0.05em;
  }
  .section__heading--sub {
    font-size: clamp(24px, 1.66vw, 33px);
  }
  .section__heading--fourth {
    font-size: clamp(2.4rem, 1.6vw, 2.6rem);
    font-weight: bold;
    color: #092846;
    position: relative;
    padding-left: 1.5vw;
  }
  .section__heading--fourth::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #F8B41E;
  }
  .section__btn {
    margin-top: 2.9vw;
  }
  .section__btn--link {
    position: relative;
    display: inline-block;
    padding: 22px 82px;
    border-radius: 10px;
    border: 1px solid #000000;
    height: auto;
    background-color: transparent;
    transition: background-color 1s ease;
    font-size: clamp(16px, 1.1vw, 18px);
  }
  .section__btn--link::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background-color: #000000;
    border-radius: 50%;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  .section__btn--link:hover {
    background-color: #000000;
    color: #ffffff;
  }
  .section__btn--link:hover::after {
    background-color: #ffffff;
  }
}
@media (max-width: 1025px) {
  .section__heading--fourth {
    padding-left: 2.5vw;
  }
}
@media (max-width: 480px) {
  .section__heading--primary {
    margin-top: 16px;
    font-size: 7.2rem;
  }
  .section__heading--sub {
    font-size: 2rem;
  }
  .section__heading--fourth {
    padding-left: 3.5vw;
  }
  .section__outer {
    margin-top: 80px;
  }
}
.content-block__desc {
  max-width: 430px;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (min-width: 1441px) {
  .content-block__desc {
    max-width: 530px;
    font-weight: 400;
    line-height: 2;
    font-size: clamp(16px, 1.1vw, 18px);
  }
}
@media (max-width: 480px) {
  .content-block__desc {
    font-size: 1.6rem;
  }
}
.subpage-primary__heading {
  font-size: clamp(22px, 5.86vw, 32px);
  position: relative;
  padding-left: 2vw;
}
.subpage-primary__heading::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #000000;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 1441px) {
  .subpage-primary__heading {
    font-size: clamp(32px, 2.2vw, 43px);
  }
}
@media (max-width: 768px) {
  .subpage-primary__heading {
    padding-left: 4vw;
  }
}
.drawer__input, .drawer__toggle {
  display: none;
}

@media (max-width: 1024px) {
  .drawer__toggle {
    display: flex;
    background-color: #F8B41E;
    height: 48px;
    width: 56px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3000;
    cursor: pointer;
  }
  .drawer__toggle span,
  .drawer__toggle span:before,
  .drawer__toggle span:after {
    content: "";
    display: block;
    height: 1px;
    width: 32px;
    background: #ffffff;
    transition: 0.5s;
    position: absolute;
  }
  .drawer__toggle span::before {
    bottom: 12px;
  }
  .drawer__toggle span::after {
    top: 12px;
  }
  #drawer_input:checked ~ .header-menu {
    left: 0;
  }
  #drawer_input:checked ~ .drawer__toggle span {
    background: rgba(255, 255, 255, 0);
  }
  #drawer_input:checked ~ .drawer__toggle span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #drawer_input:checked ~ .drawer__toggle span::after {
    top: 0;
    transform: rotate(-45deg);
  }
}
.header {
  width: 19vw;
  padding-left: 2vw;
  padding-right: 2vw;
}
.header__container {
  padding-top: 40px;
}
.header__wrapper {
  position: fixed;
  width: 15vw;
  padding-top: 34px;
  padding-left: 2vw;
  padding-right: 2vw;
}
.header__logo {
  display: block;
  width: 60%;
  margin: 0 auto;
}

@media screen and (min-width: 1441px) {
  .header {
    width: 18vw;
  }
  .header__wrapper {
    width: 16vw;
    padding-left: 1vw;
    padding-right: 1vw;
  }
}
@media (max-width: 1280px) {
  .header__wrapper {
    width: 17vw;
    padding-left: 0.5vw;
    padding-right: 0.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .header__container {
    padding-left: 20px;
    padding-top: 10px;
    max-width: none;
    width: 100%;
    display: block;
  }
  .header__wrapper {
    position: static;
    padding-top: 0;
    max-width: 100%;
    width: 100%;
  }
  .header__logo {
    position: relative;
    z-index: 12000;
    display: block;
    width: 120px;
    margin: 0;
  }
  .header__logo img {
    width: 100%;
    height: 100%;
  }
  .header__menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /* メニューを画面の外に飛ばす */
    z-index: 2000;
    background: rgb(255, 255, 255);
    transition: 0.5s;
    display: flex;
    justify-content: center;
  }
  .header__copyright {
    display: block;
    text-align: center;
    margin-top: 26px;
    font-size: clamp(12px, 3.2vw, 14px);
    font-weight: 400;
  }
}
@media (max-width: 845px) {
  .header__logo {
    width: 16vw;
  }
}
@media screen and (max-width: 480px) {
  .header__container {
    padding-left: 0;
  }
  .header__logo {
    width: 16vw;
  }
}
.header-menu__item input:checked + label .header-menu__item-label--plus::before {
  display: none;
}

.header-menu__submenu {
  display: none;
}

.header-menu__item input:checked ~ .header-menu__submenu {
  display: block;
}

.header-menu__list {
  margin-top: 51px;
}
.header-menu__item {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #F8B41E;
  box-sizing: border-box;
  cursor: pointer;
}
.header-menu__item--second {
  padding-top: 0px;
}
.header-menu__item--none {
  display: none;
}
.header-menu__item-toggle {
  display: none;
}
.header-menu__item-label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 1.8rem;
  align-items: center;
}
.header-menu__item-label--contact {
  position: relative;
  text-align: center;
  display: block;
  height: 100%;
  width: 100%;
}
.header-menu__item-label--contact::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  /* 必須：疑似要素のためのコンテンツ */
  display: block;
  /* ブロック要素にする */
  width: 24px;
  /* 幅 */
  height: 20px;
  /* 高さ */
  background-image: url(../second-img/mail.svg);
  background-size: cover;
  /* 画像を要素に合わせてリサイズ */
}
.header-menu__item-label--plus {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.header-menu__item-label--plus::before, .header-menu__item-label--plus::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #F8B41E;
}
.header-menu__item-label--plus::before {
  width: 1px;
  height: 20px;
}
.header-menu__item-label--plus::after {
  width: 20px;
  height: 1px;
}
.header-menu__submenu {
  padding-top: 30px;
  margin-top: 26px;
  padding-left: 17px;
  border-top: 1px solid #F8B41E;
}
.header-menu__submenu-item {
  margin-top: 23px;
}
.header-menu__submenu-item:first-child {
  margin-top: 0;
}
.header-menu__submenu-item-link {
  font-size: 1.4rem;
}

@media screen and (min-width: 1441px) {
  .header-menu {
    margin-top: 60px;
  }
  .header-menu__item {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .header-menu__item-label {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .header-menu__item-label--plus {
    padding-left: 20%;
  }
  .header-menu__submenu-item-link {
    font-size: 1.4rem;
  }
}
@media (max-width: 1024px) {
  .header-menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /* メニューを画面の外に飛ばす */
    z-index: 2000;
    background: rgb(255, 255, 255);
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-menu__list {
    margin-top: 0;
  }
  .header-menu__item {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
    text-align: center;
    display: block;
  }
  .header-menu__item-label {
    margin-top: 31px;
    display: block;
    text-align: center;
    font-size: clamp(16px, 4.2vw, 20px);
  }
  .header-menu__item-label--plus {
    display: none;
  }
  .header-menu__submenu {
    display: block;
    border-top: none;
    margin-top: 0;
    padding-left: 0;
    padding-top: 0;
  }
  .header-menu__submenu-item {
    margin-top: 32px;
  }
  .header-menu__submenu-item:first-child {
    margin-top: 32px;
  }
  .header-menu__submenu-item-link {
    font-size: clamp(16px, 4.2vw, 20px);
  }
}
@media screen and (max-width: 480px) {
  .header-menu {
    display: block;
    padding-top: 80px;
  }
  .header-menu__item-label {
    margin-top: 25px;
  }
  .header-menu__item-label--news {
    margin-bottom: 25px;
  }
  .header-menu__item-label--contact {
    display: inline;
  }
  .header-menu__item-label--contact::before {
    left: -27px;
    width: 19px;
    height: 19px;
    transform: translateY(none);
  }
  .header-menu__submenu-item {
    margin-top: 25px;
  }
  .header-menu__submenu-item:first-child {
    margin-top: 25px;
  }
}
.contact__outer {
  margin-top: 16vh;
}
.contact__inner {
  width: 77vw;
  box-sizing: border-box;
}
.contact__wrapper {
  position: relative;
  padding-top: 30px;
  padding-left: 24px;
  padding-bottom: 54px;
  background-color: #F8F8F8;
  border-radius: 50px 0 0 50px;
}
.contact__wrapper::after {
  content: "";
  background-size: cover;
  position: absolute;
  width: 16vw;
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 40;
  top: 30px;
  right: 40px;
  background-image: url(../second-img/illustration1.png);
}

.contact-contents {
  margin-top: 37px;
}
.contact-contents__wrapper--sp {
  display: flex;
}
.contact-contents__column {
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 0;
  padding-top: 8px;
  border-left: 1px solid #000000;
}
.contact-contents__column:first-child {
  padding-left: 0;
  border-left: none;
}
.contact-contents__text--large {
  font-family: "Kanit", serif;
  font-weight: 400;
  font-size: 3.2rem;
}
.contact-contents__text--small {
  margin-top: 9px;
  font-size: 1.2rem;
}
.contact-contents__tel-number {
  font-family: "Kanit", serif;
  font-weight: 400;
}
.contact-contents__btn--link {
  width: 284px;
  height: 60px;
  box-sizing: border-box;
  position: relative;
  display: block;
  border-radius: 10px;
  background: linear-gradient(to bottom, #FF9158, #FFBB1E);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  transition: background-color 1s ease;
}
.contact-contents__btn--link::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.contact-contents__btn path {
  transition: fill 0.1s ease;
  fill: #ffffff;
}
.contact-contents__btn--link:hover {
  background: black;
}
.contact-contents__btn--link:hover::after {
  background-color: #ffffff;
}
.contact-contents__btn--link:hover path {
  fill: #ffffff;
  /* hover時にSVGの色を赤に変更 */
}
.contact-contents__btn-wrapper {
  margin-left: 32px;
}

@media screen and (min-width: 1441px) {
  .contact__inner {
    max-width: none;
    width: 75vw;
    padding-left: 0;
  }
  .contact-contents__column {
    padding-right: 2.1vw;
    padding-left: 2.1vw;
  }
  .contact-contents__text--large {
    font-size: clamp(32px, 2.2vw, 43px);
  }
  .contact-contents__text--small {
    margin-top: 1.1vw;
    font-size: clamp(12px, 0.8vw, 16px);
  }
  .contact-contents__tel-number {
    font-size: clamp(32px, 2.2vw, 43px);
  }
  .contact-contents__btn-wrapper {
    margin-left: 2.1vw;
  }
  .contact-contents__btn-text {
    font-size: clamp(16px, 1.11vw, 20px);
  }
  .contact-contents__btn--link {
    width: 324px;
    aspect-ratio: 284/60;
    height: auto;
  }
}
@media screen and (max-width: 1280px) {
  .contact__wrapper::after {
    top: -20%;
  }
  .contact-contents__column {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .contact__inner {
    padding-left: 40px;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contact .multiple-column {
    display: block;
  }
  .contact__wrapper::after {
    width: 23vw;
    top: -15%;
  }
  .contact-contents__column:nth-child(3) {
    border-left: none;
  }
  .contact-contents__btn {
    margin-top: 30px;
    border-left: none;
    padding-left: 0;
  }
  .contact-contents__btn-wrapper {
    margin-left: 0;
  }
  .contact-contents__btn-wrapper::after {
    width: 110px;
    top: -20%;
  }
}
@media (max-width: 600px) {
  .contact__wrapper {
    border-radius: 0;
    padding-top: 28px;
    padding-left: 20px;
    padding-bottom: 41px;
  }
  .contact__wrapper::after {
    width: 120px;
    right: 20px;
  }
  .contact__inner {
    padding-left: 0;
  }
  .contact-contents__wrapper--sp {
    display: block;
  }
  .contact-contents__text--small {
    line-height: 2;
  }
  .contact-contents__column {
    padding-left: 0;
    padding-right: 0;
  }
  .contact-contents__column--first {
    padding-bottom: 24px;
    display: flex;
    -moz-column-gap: 16px;
         column-gap: 16px;
    align-items: center;
    border-bottom: 1px solid #000000;
  }
  .contact-contents__column--second {
    border-left: none;
  }
  .contact-contents__tel-number {
    margin-top: 15px;
  }
  .contact-contents__open-time {
    margin-top: 3px;
  }
  .contact-contents__btn {
    margin-top: 21px;
  }
}
.footer {
  margin-top: 16vh;
  width: 100%;
}
.footer__wrapper {
  box-sizing: border-box;
  padding-top: 35px;
  padding-bottom: 56px;
  width: 100%;
}
.footer__inner {
  width: 100%;
  -moz-column-gap: 105px;
       column-gap: 105px;
  align-items: center;
}
.footer__contents {
  max-width: 445px;
  width: 100%;
}
.footer__contents-logo {
  display: block;
  width: 10vw;
  padding-left: 3vw;
  padding-right: 3vw;
}
.footer__contents-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__contents-text {
  margin-top: 40px;
}
.footer__contents-text--address {
  margin-top: 16px;
  font-weight: 400;
}
.footer__contents-text--address-num {
  margin-right: 16px;
}
.footer__contents-text--address:first-child {
  margin-top: 0;
}
.footer__contents-text--time {
  margin-left: 12px;
}
.footer__contents-text--holiday {
  margin-left: 11px;
}
.footer__menu {
  max-width: 488px;
  width: 100%;
  padding-top: 25px;
  flex-shrink: 0;
}
.footer__menu-list {
  margin-top: 40px;
  -moz-column-gap: 4.7%;
       column-gap: 4.7%;
}
.footer__menu-list:first-child {
  margin-top: 0;
}
.footer__copyright {
  margin-top: 7px;
  display: block;
  text-align: right;
  font-size: 1.4rem;
  font-weight: 400;
  padding-right: 56px;
}

@media screen and (min-width: 1441px) {
  .footer {
    margin-top: 6vw;
  }
  .footer__menu-item, .footer__contents-text {
    font-size: clamp(16px, 1.1vw, 18px);
  }
  .footer__inner {
    -moz-column-gap: 0;
         column-gap: 0;
    justify-content: space-between;
    align-items: center;
  }
  .footer__contents {
    max-width: none;
    width: 50%;
  }
  .footer__contents-logo {
    width: 10vw;
    padding-left: 3vw;
    padding-right: 3vw;
    max-width: none;
  }
  .footer__contents-logo img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .footer__menu {
    max-width: none;
    width: 50%;
  }
}
@media (max-width: 1300px) {
  .footer {
    text-align: center;
  }
  .footer .inner {
    display: flex;
    justify-content: center;
  }
  .footer__inner {
    display: block;
  }
  .footer__contents {
    margin: 0 auto;
  }
  .footer__contents-logo {
    margin: 0 auto;
  }
  .footer__menu {
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
  }
  .footer__menu-list {
    justify-content: center;
  }
  .footer__copyright {
    margin-top: 40px;
    text-align: center;
    display: block;
    padding-right: 0;
  }
}
@media screen and (max-width: 1280px) {
  .footer__contents-logo {
    width: 18vw;
  }
}
@media (max-width: 580px) {
  .footer {
    margin-top: 32px;
  }
  .footer .multiple-column {
    display: block;
  }
  .footer .inner {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .footer__menu {
    margin-top: 66px;
    padding-top: 0;
  }
  .footer__wrapper {
    padding-top: 0;
  }
  .footer__menu-list {
    margin-top: 24px;
  }
  .footer__menu-item {
    margin-top: 24px;
  }
  .footer__contents-text {
    font-size: 1.2rem;
    margin-top: 36px;
  }
  .footer__contents-text--address {
    text-align: center;
    margin-top: 20px;
  }
  .footer__contents-text--address-num {
    margin-right: 0;
    margin-bottom: 20px;
    display: block;
  }
  .footer__contents-logo {
    width: 30vw;
  }
  .footer__copyright {
    font-size: 1.2rem;
    margin-top: 58px;
  }
}/*# sourceMappingURL=common.css.map */