@charset "UTF-8";

@font-face {
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  font-family: 'Noto Sans JP';
  src: url("../fonts/NotoSansJP-Regular.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-weight: 600;
  font-style: normal;
  font-family: 'Noto Sans JP';
  src: url("../fonts/NotoSansJP-SemiBold.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  font-family: 'Damion';
  src: url("../fonts/Damion-Regular.woff") format("woff");
}

:root {
  --font-ja-noto:
    'Noto Sans JP', sans-serif;
  --font-en-damion:
    'Damion', cursive;

  --color-yellow-lt: #FEF1D7;
  --color-yellow-grad: linear-gradient(#FEF1D7, #FFC774);
  --color-orange-dp: #F57C00;
  --color-orange-nm: #F6A450;
  --color-orange-grad: linear-gradient(#FF9900, #EF6E0B);
  --color-gray-dp: #aaaaaa;
  --color-gray-nm: #D1D1D1;
  --color-gray-lt: #eeeeee;
  --color-black: #333333;
  --color-white: #ffffff;
  --color-green-grad: linear-gradient(#0FE265, #0A9845);

  --shadow-pc: 0.3rem 0.3rem 0 var(--color-black);
  --shadow-sp: 0.4rem 0.5rem 0 var(--color-black);

  --border-black-pc: 0.3rem solid var(--color-black);
  --border-black-sp: 0.4rem solid var(--color-black);
}

@media screen and (min-width: 751px) {
  .pc-none {
    display: none;
  }
}

/* @media screen and (max-width: 1080px) and (min-width: 751px) {
  .tab-none {
    display: none;
  }
} */

@media screen and (max-width: 750px) {
  .sp-none {
    display: none;
  }
}

/*---------- basic ----------*/

html,
body {
  font-size: 62.5%;
  font-family: var(--font-ja-noto);
  font-weight: 400;
  background: var(--color-white);
  color: var(--color-black);
}

@media screen and (max-width: 1920px) {

  html,
  body {
    font-size: 0.5208vw;
    /*1rem = 10px*/
  }
}

@media screen and (max-width: 750px) {

  html,
  body {
    font-size: 1.3333vw;
    /*1rem = 10px*/
  }
}

section {
  position: relative;
}

.container {
  overflow: hidden;
  font-size: 1.6rem;
  line-height: 1.625;
}

.inner {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

img,
video {
  max-width: 100%;
  vertical-align: top;
}

::placeholder {
  color: var(--color-gray-dp);
}

/*---------- animation ----------*/

.is-fade-up {
  opacity: 0;
  transform: translateY(20px)
}

.is-fade-up.is-show,
.is-show .is-fade-up {
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.is-fade-slide {
  opacity: 0;
  transform: translateX(-20px)
}

.is-fade-slide.is-show,
.is-show .is-fade-slide {
  animation: fadeSlide 0.8s ease both;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateX(-20px)
  }

  100% {
    opacity: 1;
    transform: translateX(0)
  }
}

.is-scale-up {
  opacity: 0;
  transform: translateY(20px) scale(0.5);
  transform-origin: bottom center;
}

.is-scale-up.is-show,
.is-show .is-scale-up {
  animation: scaleUp 1s cubic-bezier(0.52, -0.41, 0.48, 1.34) both;
}

@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.5);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.is-scale-in {
  opacity: 0;
  transform: translateY(20px) scale(0.5);
}

.is-scale-in.is-show,
.is-show .is-scale-in {
  animation: scaleIn 0.7s cubic-bezier(0.65, 0.05, 0.36, 1) both;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.is-flip-in {
  opacity: 0;
  transform: rotateY(90deg);
}

.is-flip-in.is-show,
.is-show .is-flip-in {
  animation: flipIn 0.8s ease both;
}

@keyframes flipIn {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }

  100% {
    opacity: 1;
    transform: rotateY(0);
  }
}

/*---------- ttl  ----------*/

.ttl {
  font-size: 3.9rem;
  font-weight: 600;
  position: relative;
}

.ttl__en {
  font-family: var(--font-en-damion);
  position: absolute;
  font-weight: 400;
  color: var(--color-orange-dp);
  transform: rotate(-8deg);
}

/*---------- head-txt  ----------*/

.head-txt {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  padding: 0.4rem 3.7rem 1rem;
  line-height: 1.45;
  position: relative;
  letter-spacing: 0;
}

.head-txt:before,
.head-txt:after {
  border-top: 0.3rem solid var(--color-orange-dp);
  border-bottom: 0.3rem solid var(--color-orange-dp);
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1.8rem;
}

.head-txt:before {
  left: 0;
  border-left: 0.3rem solid var(--color-orange-dp);
}

.head-txt:after {
  right: 0;
  border-right: 0.3rem solid var(--color-orange-dp);
}

.head-txt__bbl {
  background-color: var(--color-white);
  border: var(--border-black-pc);
  box-shadow: var(--shadow-pc);
  padding: 0 1.9rem 0.3rem 2.2rem;
  border-radius: 3rem;
  vertical-align: text-bottom;
  display: inline-block;
  line-height: 1.4;
  margin-right: 0.8rem;
}

.head-txt__strong {
  font-size: 2.8rem;
  color: var(--color-orange-dp);
}

.head-txt-wrap {
  text-align: center;
}

/*---------- main-btn ----------*/

.main-btn {
  width: 53.6rem;
  height: 8.8rem;
  background-image: var(--color-orange-grad);
  border-radius: 1rem;
  outline: var(--border-black-pc);
  outline-offset: -0.1rem;
  box-shadow: 0.4rem 0.4rem 0 var(--color-black);
  position: relative;
  overflow: hidden;
}

.main-btn:after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  animation: shiny 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }

  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }

  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}

.main-btn>a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-btn__bbl {
  width: 9.8rem;
  background-color: var(--color-white);
  height: 100%;
  border-radius: 0.65rem 0 0 0.65rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-btn__bbl:before {
  content: "▶";
  color: var(--color-white);
  position: absolute;
  top: 46%;
  left: 9rem;
  transform: scaleY(0.8) translateY(-50%);
  font-size: 2.2rem;
}

.main-btn__bbl-txt {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-orange-dp);
  line-height: 1;
  padding-bottom: 0.3rem;
}

.main-btn__txt {
  font-size: 1.4rem;
  color: var(--color-white);
  padding-left: 0.8rem;
}

.main-btn__txt-strong {
  font-size: 2.8rem;
  font-weight: 600;
  padding-left: 0.6rem;
  vertical-align: middle;
  padding-bottom: 0.7rem;
  display: inline-block;
}

.main-btn>a>img {
  width: 0.9rem;
  margin-right: 2.1rem;
}

/*---------- sub-btn ----------*/

.sub-btn {
  width: 27.7rem;
  height: 5.9rem;
  outline: var(--border-black-pc);
  outline-offset: -0.1rem;
  border-radius: 3rem;
  background-image: var(--color-orange-grad);
  position: relative;
  box-shadow: 0.4rem 0.4rem 0 var(--color-black);
}

.sub-btn>a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  color: var(--color-white);
  font-weight: 600;
  padding-bottom: 0.5rem;
}

.sub-btn>a>img {
  width: 0.75rem;
  position: absolute;
  right: 1.5rem;
}

/*---------- small-btns ----------*/

.small-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.9rem;
}

.small-btns__btn {
  width: 14.8rem;
  height: 4.4rem;
  outline: var(--border-black-pc);
  outline-offset: -0.1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-pc);
}

.small-btns__btn.is-line {
  background: var(--color-green-grad);
}

.small-btns__btn.is-contact {
  background: var(--color-orange-grad);
}

.small-btns__btn>a {
  color: var(--color-white);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.04rem;
  padding-bottom: 0.2rem;
  padding-left: 0.4rem;
  font-weight: 600;
}

.small-btns__btn>a>img {
  width: 0.6rem;
  margin-top: 0.2rem;
  margin-left: 1.3rem;
}

/*---------- page-top ----------*/

.page-top {
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  width: 6.1rem;
  transition: transform 0.2s ease;
  z-index: 50;
}

/*---------- header ----------*/

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.header__inner {
  max-width: 140rem;
  margin: 0.8rem auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5rem;
  border: var(--border-black-pc);
  display: flex;
  justify-content: space-between;
  padding: 1.3rem 9.9rem 1.7rem 9.8rem;
}

.header__logo {
  width: 8rem;
  margin-top: 0.2rem;
}

.header__menu-wrap {
  display: flex;
}

.header__menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.35rem;
  padding-top: 0.3rem;
  padding-right: 4.5rem;
}

.header__menu-item>a {
  padding: 1rem;
}

.header__menu-item-char {
  display: none;
}

.header__menu-item-img {
  display: none;
}

.header__hamb {
  display: none;
}

.header__sub-menu-list {
  display: none;
}

/*---------- footer ----------*/

.footer__inner {
  display: flex;
  justify-content: space-between;
}

.footer__upper {
  border-top: 0.6rem solid var(--color-orange-dp);
  border-bottom: 0.6rem solid var(--color-orange-dp);
  background-image: url(../img/common/bg-block-orange.png);
  background-position: top center;
  padding: 6rem 0 8rem;
  background-size: 6.4rem;
}

.footer__block:nth-of-type(1) {
  padding-left: 6rem;
}

.footer__block:nth-of-type(2) {
  padding-right: 15.8rem;
}

.footer__logo {
  width: 10rem;
}

.footer__tel {
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: 0.03rem;
}

.footer__hour {
  font-size: 1.4rem;
  margin-top: -0.4rem;
}

.footer__btns {
  margin-top: 2.8rem;
}

.footer__menu-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem 6.8rem;
  max-height: 24rem;
}

.footer__menu-item>a {
  padding: 0.5rem 1rem;
}

.footer__lower {
  text-align: center;
  font-family: var(--font-en-damion);
  font-size: 2.4rem;
  letter-spacing: 0.12rem;
  padding: 3.1rem 0 4rem;
}

/*---------- contact ----------*/

.contact {
  background-image: url(../img/index/cta-bg-pc.jpg);
  background-position: top center;
  background-size: cover;
  text-align: center;
  padding: 5.7rem 0 8rem;
}

.contact__ttl {
  font-size: 4rem;
}

.contact__ttl-en {
  bottom: -4.2rem;
  left: 0;
  right: 0;
  letter-spacing: 0.1rem;
}

.contact__head-txt {
  margin-top: 6.8rem;
  line-height: 1.6;
  padding-bottom: 0.5rem;
}

.contact__btns {
  margin-top: 3.5rem;
}

.contact__btn {
  margin: 0 auto;
  width: 67.7rem;
  height: 9.8rem;
}

.contact__btn .main-btn__bbl {
  width: 10.8rem;
}

.contact__btn .main-btn__bbl:before {
  left: 10.1rem;
}

.contact__btn .main-btn__bbl-txt {
  font-size: 2.6rem;
}

.contact__btn .main-btn__txt {
  font-size: 2rem;
  padding-left: 0;
  padding-right: 1.4rem;
}

.contact__btn .main-btn__txt-strong {
  font-size: 3rem;
  padding-bottom: 0.8rem;
}

.contact__btn>a>img {
  width: 1.1rem;
  margin-right: 1.7rem;
}

.contact__btn-sub {
  display: inline-block;
  width: 32.7rem;
  height: 7.8rem;
  border-radius: 1rem;
  outline: var(--border-black-pc);
  outline-offset: -0.1rem;
  box-shadow: 0.4rem 0.4rem 0 var(--color-black);
  margin-right: 1.9rem;
  margin-top: 2rem;
  vertical-align: top;
}

.contact__btn-sub.is-line {
  background-image: var(--color-green-grad);
}

.contact__btn-sub.is-tel {
  margin-right: 0;
  background-image: var(--color-yellow-grad);
}

.contact__btn-sub>a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
}

.contact__btn-sub.is-line>a {
  color: var(--color-white);
}

.contact__btn-sub.is-tel>a {
  color: var(--color-black);
  padding-bottom: 0.4rem;
}

.contact__btn-hour {
  font-size: 1.4rem;
  display: block;
  margin-top: -0.4rem;
}

.contact__btn-sub>a>img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.4rem;
  width: 0.87rem;
}

.contact__note {
  text-align: right;
  padding-right: 25.8rem;
  margin-top: 2.2rem;
}

/*---------- sub-logo-elem ----------*/

.sub-logo-elem {
  margin-top: 20rem;
  background-color: var(--color-gray-lt);
  padding: 0 0 8.1rem;
}

.sub-logo-elem:before {
  content: "";
  width: 100%;
  height: 20rem;
  position: absolute;
  top: -20rem;
  background-image: url(../img/common/bg-tri-black-pc.png);
  background-size: cover;
  background-position: center;
}

.sub-logo-elem__inner {
  text-align: center;
}

.sub-logo-elem__ttl {
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  background-color: var(--color-white);
  padding: 0.3rem 2.6rem 0.8rem;
  border-radius: 3rem;
}

.sub-logo-elem__ttl-deco {
  position: absolute;
  width: 2.8rem;
  top: -0.5rem;
}

.sub-logo-elem__ttl-deco.is-left {
  left: -2.1rem;
}

.sub-logo-elem__ttl-deco.is-right {
  right: -2.1rem;
}

.sub-logo-elem__txt {
  text-align: left;
  padding: 0 6rem;
  margin-top: 3.5rem;
}

.sub-logo-elem__txt-strong {
  font-weight: 600;
}

.sub-logo-elem__list {
  margin-top: 3.8rem;
  padding: 0 6rem;
  display: flex;
  justify-content: space-between;
  gap: 0 4rem;
}

.sub-logo-elem__item {
  width: calc(100% - 4rem);
  border: var(--border-black-pc);
  box-shadow: var(--shadow-pc);
  border-radius: 2rem;
  background-color: var(--color-white);
  position: relative;
}

.sub-logo-elem__item:first-child:before,
.sub-logo-elem__item:last-child:before {
  content: "";
  width: 2rem;
  height: 2rem;
  background-size: 100%;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
}

.sub-logo-elem__item:first-child:before {
  right: -3.3rem;
  background-image: url(../img/sub/logo-elem-plus.svg);
}

.sub-logo-elem__item:last-child:before {
  left: -3.1rem;
  background-image: url(../img/sub/logo-elem-equal.svg);
}

.sub-logo-elem__item-ttl {
  margin-top: 2.2rem;
  font-size: 2rem;
  font-weight: 600;
}

.sub-logo-elem__item-ttl>img {
  display: block;
  width: 1.5rem;
  margin: 0.4rem auto 0;
  transform: scaleY(1.2);
}

.sub-logo-elem__item>img {
  padding: 0 2.5rem;
}

.sub-logo-elem__item-txt {
  background-color: var(--color-yellow-lt);
  padding: 2.5rem;
  text-align: left;
  border-radius: 0 0 2rem 2rem;
}

/*---------- sub-contact ----------*/

.sub-contact {
  background-image: url(../img/sub/sub-cta-bg-pc.jpg);
  background-position: top center;
  background-size: cover;
  text-align: center;
  padding: 8rem 0 10rem;
}

.sub-contact__ttl {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 600;
  padding: 0.3rem 3rem 0.6rem;
  background-color: var(--color-white);
}

.sub-contact__ttl>img {
  width: 6.4rem;
  vertical-align: text-bottom;
  margin-right: 1rem;
}

.sub-contact__head-txt {
  margin-top: 5.6rem;
  font-size: 2rem;
  line-height: 1.6;
}

.sub-contact__head-txt .head-txt__bbl {
  font-size: 2rem;
  padding: 0 1.7rem 0.1rem 2rem;
  vertical-align: baseline;
  line-height: 1.7;
}

.sub-contact__point-list {
  margin: 3.9rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: var(--border-black-pc);
  max-width: 68rem;
  box-shadow: var(--shadow-pc);
  border-radius: 2rem;
  padding: 3.2rem 6rem 4.2rem;
  background-color: var(--color-white);
}

.sub-contact__point-item {
  position: relative;
}

.sub-contact__point-item+.sub-contact__point-item:before {
  content: "";
  width: 1px;
  height: 65%;
  display: block;
  background-color: var(--color-gray-dp);
  position: absolute;
  left: -5.2rem;
  top: 2.6rem;
}

.sub-contact__point-item>img {
  width: 5.2rem;
}

.sub-contact__point-item-txt {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 1.2rem;
}

.sub-contact__point-item-txt-strong {
  display: block;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  color: var(--color-orange-dp);
}

.sub-contact__txt {
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
  padding: 0 26rem;
  margin-top: 6.2rem;
  letter-spacing: 0.05rem;
}

.sub-contact__txt>img {
  width: 1rem;
  vertical-align: middle;
  margin-right: 0.5rem;
  padding-bottom: 0.3rem;
}

.sub-contact .contact__btns {
  margin-top: 1.8rem;
}

@media (hover: hover) and (pointer: fine) {

  /*---------- main-btn ----------*/

  .main-btn:hover {
    box-shadow: none;
    transform: translate(0.4rem, 0.4rem);
  }

  /*---------- sub-btn ----------*/

  .sub-btn:hover {
    box-shadow: none;
    transform: translate(0.4rem, 0.4rem);
  }

  /*---------- small-btns ----------*/

  .small-btns__btn:hover {
    box-shadow: none;
    transform: translate(0.3rem, 0.3rem);
  }

  /*---------- page-top ----------*/

  .page-top:hover {
    transform: translateY(-1rem);
  }

  /*---------- header ----------*/
  .header__logo>a:hover,
  .header__menu-item>a:hover {
    opacity: 0.8;
  }

  /*---------- footer ----------*/

  .footer__logo>a:hover,
  .footer__menu-item>a:hover,
  .footer__tel:hover {
    opacity: 0.8;
  }

  /*---------- contact ----------*/

  .contact__btn-sub:hover {
    box-shadow: none;
    transform: translate(0.4rem, 0.4rem);
  }

}

@media screen and (max-width: 1080px) {

  /*---------- main-btn ----------*/

  .main-btn {
    border: var(--border-black-pc);
    outline: none;
  }

  /*---------- sub-btn ----------*/

  .sub-btn {
    border: var(--border-black-pc);
    outline: none;
  }

  /*---------- small-btns ----------*/

  .small-btns__btn {
    border: var(--border-black-pc);
    outline: none;
  }

  /*---------- contact ----------*/

  .contact__btn-sub {
    border: var(--border-black-pc);
    outline: none;
  }

}

@media screen and (max-width: 750px) {

  /*---------- basic ----------*/

  .container {
    font-size: 2.5rem;
    line-height: 1.68;
    letter-spacing: -0.1rem;
  }

  /*---------- ttl  ----------*/

  .ttl {
    font-size: 4.8rem;
    text-align: center;
  }

  .ttl__en {
    letter-spacing: 0;
  }

  /*---------- head-txt  ----------*/

  .head-txt {
    font-size: 3rem;
    display: block;
  }

  .head-txt:before,
  .head-txt:after {
    border-top: 0.4rem solid var(--color-orange-dp);
    border-bottom: 0.4rem solid var(--color-orange-dp);
  }

  .head-txt:before {
    border-left: 0.4rem solid var(--color-orange-dp);
  }

  .head-txt:after {
    border-right: 0.4rem solid var(--color-orange-dp);
  }

  .head-txt__bbl {
    padding: 0 1.9rem 0.3rem 2rem;
  }

  .head-txt__strong {
    font-size: 3.4rem;
  }

  .head-txt-wrap {
    padding: 0 7.4rem;
  }

  /*---------- main-btn ----------*/

  .main-btn {
    width: calc(100% - 6.6rem);
    height: 12.7rem;
    border: none;
    outline: var(--border-black-sp);
    box-shadow: 0.5rem 0.6rem 0 var(--color-black);
    border-radius: 1.5rem;
  }

  .main-btn__bbl {
    width: 12.8rem;
    border-radius: 1.2rem 0 0 1.2rem;
  }

  .main-btn__bbl:before {
    left: 12.4rem;
  }

  .main-btn__bbl-txt {
    font-size: 3.6rem;
    line-height: 1;
    padding-bottom: 0.7rem;
  }

  .main-btn__txt {
    font-size: 2.2rem;
  }

  .main-btn__txt-strong {
    font-size: 3.4rem;
    padding-bottom: 1rem;
    letter-spacing: 0.05rem;
  }

  /*---------- sub-btn ----------*/

  .sub-btn {
    width: 39rem;
    height: 8.7rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5rem;
    border: none;
    outline: var(--border-black-sp);
  }

  .sub-btn>a {
    font-size: 2.5rem;
    padding-bottom: 1rem;
    letter-spacing: 0;
  }

  .sub-btn>a>img {
    width: 1rem;
    right: 2.7rem;
    top: 48%;
    transform: translateY(-50%);
  }

  /*---------- small-btn ----------*/

  .small-btns__btn {
    width: 47%;
    height: 8rem;
    outline: var(--border-black-sp);
    border: none;
    border-radius: 1.8rem;
    box-shadow: var(--shadow-sp);
    position: relative;
  }

  .small-btns__btn>a {
    font-size: 3rem;
    letter-spacing: 0.1rem;
    padding-right: 3.2rem;
    padding-bottom: 0.7rem;
  }

  .small-btns__btn>a>img {
    width: 1.2rem;
    margin-top: 0;
    margin-left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2.8rem;
  }

  /*---------- page-top ----------*/

  .page-top {
    width: 9rem;
    right: 3rem;
    bottom: 3rem;
  }

  /*---------- header ----------*/

  .header__inner {
    background-color: initial;
    border: none;
    padding: 2rem 3rem 2rem 3rem;
  }

  .header__logo {
    width: 11.2rem;
    position: relative;
    z-index: 100;
  }

  .header__logo img {
    width: 100%;
  }

  .header__hamb {
    display: block;
    position: relative;
    z-index: 100;
  }

  .header__hamb-lines {
    width: 7.2rem;
    height: 4rem;
    position: relative;
  }

  .header__hamb-line {
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--color-black);
    right: 0;
    transition: all 0.4s ease;
  }

  .header__hamb-line:nth-of-type(1) {
    top: 0;
  }

  .is-open .header__hamb-line:nth-of-type(1) {
    transform: rotate(30deg);
    top: 45%;
    width: 105%;
  }

  .header__hamb-line:nth-of-type(2) {
    top: 50%;
    width: 70%;
  }

  .is-open .header__hamb-line:nth-of-type(2) {
    opacity: 0;
  }

  .header__hamb-line:nth-of-type(3) {
    bottom: 0;
  }

  .is-open .header__hamb-line:nth-of-type(3) {
    transform: rotate(-30deg);
    top: 45%;
    width: 105%;
  }

  .header__hamb-txt {
    display: block;
    text-align: center;
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
    font-size: 2rem;
    font-weight: 600;
  }

  .header__hamb-txt.is-menu {
    letter-spacing: 0.35rem;
  }

  .is-open .header__hamb-txt.is-menu {
    opacity: 0;
  }

  .header__hamb-txt.is-close {
    opacity: 0;
    letter-spacing: 0.2rem;
  }

  .is-open .header__hamb-txt.is-close {
    opacity: 1;
  }

  .header__menu-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
    padding-top: 9rem;
  }

  .header__menu-wrap:before {
    content: "";
    background-image: url(../img/index/avoid-pg.png);
    background-position: bottom center;
    background-repeat: repeat no-repeat;
    background-size: 150%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.8;
  }

  .header__menu-wrap.is-open {
    right: 0;
  }

  .header__menu-list {
    flex-direction: column;
    padding: 0 7rem;
  }

  .header__menu-item {
    width: 100%;
  }

  .header__menu-item+.header__menu-item {
    border-top: 1px solid var(--color-gray-dp);
  }

  .header__menu-item>a {
    font-size: 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.3rem;
  }

  .header__menu-item-char {
    font-family: var(--font-en-damion);
    font-size: 6rem;
    letter-spacing: 0.3rem;
    display: inline-block;
    color: var(--color-orange-dp);
  }

  .header__menu-item-txt {
    padding-left: 3.2rem;
    letter-spacing: 0.2rem;
  }

  .header__menu-item-img {
    display: block;
    width: 1.2rem;
  }

  .header__btns {
    display: flex;
    margin-top: 7rem;
    padding: 0 8.1rem 0 7.6rem;
    gap: 0;
    justify-content: space-between;
  }

  .header__sub-menu-list {
    display: flex;
    justify-content: center;
    margin-top: 6.5rem;
    font-size: 2.4rem;
    gap: 4.5rem;
  }

  /*---------- footer ----------*/

  .footer__upper {
    padding: 7.2rem 0 11.2rem;
  }

  .footer__inner {
    flex-direction: column-reverse;
  }

  .footer__block:nth-of-type(1) {
    margin-top: 7.2rem;
    position: relative;
  }

  .footer__block:nth-of-type(1),
  .footer__block:nth-of-type(2) {
    padding: 0 6.5rem;
  }

  .footer__menu-list {
    gap: 1.4rem 5.2rem;
    max-height: 35rem;
  }

  .footer__logo {
    width: 11.8rem;
    margin-left: 0.8rem;
  }

  .footer__logo img {
    width: 100%;
  }

  .footer__tel {
    font-size: 3.6rem;
    margin-left: 1rem;
  }

  .footer__hour {
    font-size: 2.1rem;
    margin-left: 1.1rem;
    letter-spacing: 0.1rem;
  }

  .footer__btns {
    position: absolute;
    top: 0.4rem;
    right: 8rem;
    flex-direction: column-reverse;
    width: 26.3rem;
    margin-top: 0;
    gap: 2.9rem 0;
  }

  .footer__btn {
    width: 100%;
    height: 6.4rem;
    border-radius: 1.2rem;
  }

  .footer__btn>a {
    font-size: 2.2rem;
    padding-right: 0.3rem;
    padding-bottom: 0.4rem;
  }

  .footer__btn>a>img {
    right: 0.9rem;
    width: 0.8rem;
  }

  .footer__lower {
    padding: 4.8rem 0;
  }

  /*---------- contact ----------*/

  .contact {
    background-image: url(../img/index/cta-bg-sp.jpg);
    padding: 7rem 3rem 10.8rem;
  }

  .contact__ttl {
    font-size: 4.8rem;
  }

  .contact__ttl-en {
    bottom: -5.6rem;
  }

  .contact__head-txt {
    margin: 9.9rem 4.4rem 0;
    padding: 0.4rem 2.2rem 0;
  }

  .contact__btns {
    margin-top: 5.9rem;
  }

  .contact__btn {
    width: calc(100% - 0.6rem);
    height: 12.7rem;
  }

  .contact__btn .main-btn__bbl {
    width: 12.5rem;
  }

  .contact__btn .main-btn__bbl-txt {
    font-size: 3.6rem;
  }

  .contact__btn .main-btn__bbl:before {
    left: 12.1rem;
  }

  .contact__btn .main-btn__txt {
    font-size: 2.2rem;
    padding-right: 0;
  }

  .contact__btn .main-btn__txt-strong {
    font-size: 3.4rem;
    padding-bottom: 0.5rem;
    padding-left: 0.2rem;
  }

  .contact__btn>a>img {
    width: 1.2rem;
    margin-right: 2rem;
  }

  .contact__btn-sub {
    width: 33.2rem;
    height: 10.9rem;
    border: none;
    outline: var(--border-black-sp);
  }

  .contact__btn-sub>a {
    font-size: 2.8rem;
    letter-spacing: 0;
  }

  .contact__btn-hour {
    font-size: 2.2rem;
    margin-top: -0.8rem;
  }

  .contact__note {
    padding-right: 0;
    letter-spacing: -0.1rem;
  }

  /*---------- sub-logo-elem ----------*/

  .sub-logo-elem {
    margin-top: 23rem;
    padding: 0 0 10rem;
  }

  .sub-logo-elem:before {
    height: 23rem;
    top: -23rem;
    background-image: url(../img/common/bg-tri-black-sp.png);
  }

  .sub-logo-elem__ttl {
    font-size: 3.2rem;
    padding: 0.4rem 2.6rem 0.7rem;
  }

  .sub-logo-elem__ttl-deco {
    width: 3.2rem;
    top: -0.35rem;
  }

  .sub-logo-elem__ttl-deco.is-left {
    left: -2.6rem;
  }

  .sub-logo-elem__ttl-deco.is-right {
    right: -2.6rem;
  }

  .sub-logo-elem__txt {
    padding: 0 3rem;
    margin-top: 4.5rem;
  }

  .sub-logo-elem__list {
    margin-top: 4rem;
    padding: 0 3rem;
    flex-direction: column;
    gap: 7rem 0;
  }

  .sub-logo-elem__item {
    width: 100%;
  }

  .sub-logo-elem__item-ttl {
    margin-top: 3rem;
    font-size: 3rem;
  }

  .sub-logo-elem__item-ttl>img {
    width: 3rem;
    margin: 1rem auto 0;
  }

  .sub-logo-elem__item>img {
    padding: 0 8rem;
  }

  .sub-logo-elem__item-txt {
    padding: 3rem;
  }

  .sub-logo-elem__item:first-child:before,
  .sub-logo-elem__item:last-child:before {
    width: 3.5rem;
    height: 3.6rem;
    transform: translateX(-50%);
    left: 50%;
  }

  .sub-logo-elem__item:first-child:before {
    top: 53.7rem;
  }

  .sub-logo-elem__item:last-child:before {
    top: -5.5rem;
    transform: translateX(-50%) rotate(90deg);
  }

  /*---------- sub-contact ----------*/

  .sub-contact {
    padding: 9rem 3rem 10.8rem;
    background-image: url(../img/sub/sub-cta-bg-sp.jpg);
  }

  .sub-contact__ttl {
    display: block;
    font-size: 3.3rem;
    padding: 0.5rem 3rem 0.6rem;
  }

  .sub-contact__ttl>img {
    width: 7.8rem;
    margin-right: 1.2rem;
    vertical-align: sub;
  }

  .sub-contact .head-txt-wrap {
    padding: 0 4.4rem;
  }

  .sub-contact__head-txt {
    margin-top: 5.8rem;
    font-size: 2.8rem;
  }

  .sub-contact__head-txt .head-txt__bbl {
    font-size: 2.8rem;
    padding: 0 2rem 0.1rem 2rem;
    letter-spacing: 0.2rem;
  }

  .sub-contact__point-list {
    margin: 4.2rem auto 0;
    max-width: 100%;
    padding: 3.4rem 5.5rem 3.8rem;
    border: var(--border-black-sp);
    box-shadow: var(--shadow-sp);
  }

  .sub-contact__point-item>img {
    width: 7.6rem;
  }

  .sub-contact__point-item-txt {
    font-size: 2.6rem;
    margin-top: 0.8rem;
    line-height: 1.3;
  }

  .sub-contact__point-item-txt-strong {
    font-size: 3rem;
  }

  .sub-contact__txt {
    padding: 0;
    margin-top: 4.7rem;
    font-size: 2.7rem;
  }

  .sub-contact__txt>img {
    width: 1.2rem;
    margin-right: 0.8rem;
  }

  .sub-contact .contact__btns {
    margin-top: 2.8rem;
  }

}