@charset "UTF-8";
/* ------------------------------------------------------------ */
/* 全デバイス/画面サイズに共通 かつ
　　479：スマートフォン縦：基本・レイアウト指定 */
/* ------------------------------------------------------------ */
* html body {
  background: url(null) fixed;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  background: var(--wh-clr);
  color: var(--bk-clr);
  font-size: 16px;
  line-height: normal;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1rem;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
}
main {
  background: var(--wh-clr);
}
@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    display: block;
  }
}
a {
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}
:root {
  --wh-clr: #fff;
  --bk-clr: #000;
  --ylw-clr: #F4F25A;
  --gy-clr: #717171;
  --gr-clr2: #5F5F5F;
  --gr-clr3: #525252;
  --lgy-clr: #EAEAEA;
  --bl-clr: #5B7580;
  --ylw-clr2: #ACA885;
}
.felipa-regular {
  font-family: "Felipa", serif;
  font-weight: 400;
  font-style: normal;
}
.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.noto-sans-jp-regular {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.noto-sans-jp-bold {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.noto-sans-jp-medium {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.castoro-titling-regular {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
.vertical {
  /*ブロックの進行方向*/
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /*文字の向き*/
  /*-webkit-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;*/
  margin: 0 0 0 auto;
  overflow: hidden;
}
.inner {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
}
.base {
  position: relative;
  z-index: 2;
  margin-bottom: -1px;
}
.flex-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
picture {
  display: block;
}
.dli-arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 0.1em;
  background: currentColor;
}
.dli-arrow-right::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}
/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}
/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 101%;
  max-width: 101%;
}
/* ------------------------------------------------------------ */
/* 全体格納 */
.wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
/* ------------------------------------------------------------ */
/* animation */
/* フェードイン */
.FadeIn {
  opacity: 0;
  transition: 1s;
  transition-delay: 0.5s;
}
.FadeIn.is-show {
  opacity: 1;
}
/* 上へ */
.InUp {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  transition: 1s;
}
.InUp.is-show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* 左へ */
.InLft {
  opacity: 0;
  transform: translate(60px, 0);
  -webkit-transform: translate(60px, 0);
  transition: 1s;
}
.InLft.is-show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* 右へ */
.InRgt {
  opacity: 0;
  transform: translate(-60px, 0);
  -webkit-transform: translate(-60px, 0);
  transition: 1s;
}
.InRgt.is-show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* シール左へ */
.StickerLft {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.StickerLft.is-show {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}
/* シール右へ */
.StickerRgt {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.StickerRgt.is-show {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}
/* シール下へ */
.StickerBtm {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  transition: 1.5s cubic-bezier(0.37, 0, 0.63, 1) 0.5s;
  transition-property: clip-path;
}
.StickerBtm.is-show {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}
/* 文字がぬるりと現れる */
.matrix .bg-wrap {
  display: flex;
  overflow: hidden;
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 100%;
  margin: 0;
  opacity: 0;
}
.matrix.is-show .bg-wrap {
  opacity: 1;
}
.matrix.is-show .bg-wrap .inn {
  transform: translateY(5em);
  animation: textanimation 1s forwards 0.3s;
}
@keyframes textanimation {
  0% {
    transform: translateY(5em);
  }
  100% {
    transform: translateY(0);
  }
}
/* フォーカス */
.FocusIn {
  opacity: 0;
}
.FocusIn.is-show {
  -webkit-animation: FocusIn 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) 0.2s both;
  animation: FocusIn 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) 0.2s both;
}
@-webkit-keyframes FocusIn {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes FocusIn {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
/* 表示までの時間 */
.in01 {
  animation-delay: .3s !important;
  transition-delay: .3s !important;
}
.in02 {
  animation-delay: .6s !important;
  transition-delay: .6s !important;
}
/* 背景固定 */
.clip_mask {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  position: relative;
  z-index: 2;
  width: 100%;
}
.clip_mask .clip_bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: auto;
  z-index: -1;
}
/* ------------------------------------------------------------ */
/* loading */
.site_loading {
  width: 100%;
  height: 100vh;
  height: 100svh;
  transition: all 1s;
  background: var(--wh-clr);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.site_loading.is-active {
  opacity: 0;
  visibility: hidden;
}
.site_loading .site_loading_ttl .logo {
  max-width: 250px;
  width: 100%;
  margin: auto;
  text-align: center;
}
.site_loading .inner {
  width: 90%;
}
.site_loading-inview {
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ------------------------------------------------------------ */
/* hero */
.hero {
  background: var(--wh-clr);
  color: var(--bk-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  padding-top: clamp(4.3rem, 1.014rem + 16.43vw, 15.8rem);
}
.hero .logo {
  max-width: 123px;
  width: 20%;
  position: absolute;
  left: 4.5rem;
  top: 4.5rem;
  z-index: 2;
}
.hero .inner {
  width: 100%;
}
.hero .ttl-box {
  text-align: center;
  position: relative;
  z-index: 3;
  margin-bottom: 2.3rem;
}
.hero .ttl-box span, .hero .ttl-box img {
  display: block;
}
.hero .ttl-box .top {
  width: min(980px, 68%);
  margin: 0 auto;
}
.hero .ttl-box .btm {
  width: min(378px, 26%);
  margin: 4.1rem auto 5rem;
}
.hero .ttl-box h2 {
  font-size: clamp(1.3rem, 0.871rem + 2.14vw, 2.8rem);
  line-height: clamp(2.7rem, 1.9rem + 4vw, 5.5rem);
  letter-spacing: 0.59rem;
}
.hero .img-area {
  width: 100%;
  z-index: 2;
}
.hero .img-area .fuki-box {
  max-width: clamp(15.3rem, 12.157rem + 15.71vw, 26.3rem);
  width: 18%;
  position: absolute;
  top: -18rem;
  right: 8%;
  z-index: -1;
}
.hero .img-area .fuki-box img {
  width: 100%;
}
.hero .img-area .main-img {
  width: 100%;
}
.hero .matrix.is-show .bg-wrap .inn {
  transform: translateY(10em);
}
/* ------------------------------------------------------------ */
/* intro */
.intro {
  padding: 17.3rem 0 36.6rem;
}
.intro .inner {
  width: min(990px, 85%);
}
.intro .flex-box {
  align-items: flex-start;
}
.intro h2 {
  width: 141px;
  position: sticky;
  top: 11rem;
  left: 0;
  padding: 1.5rem 0;
}
.intro h2 img {
  width: 100%;
}
.intro p {
  font-size: clamp(1.5rem, 1.471rem + 0.14vw, 1.6rem);
  line-height: clamp(3.3rem, 2.586rem + 3.57vw, 5.8rem);
  margin-left: 14%;
  flex: 1;
}
.intro .clip_bg {
  background: url("../img/intro_img_02.jpg") center / cover no-repeat;
}
/* ------------------------------------------------------------ */
/* point */
.point {
  padding: 26.5rem 0 12.7rem;
}
.point .inner {
  width: min(1440px, 100%);
}
.point .point_item img {
  margin: 0;
}
.point .txt-box h2 .en {
  font-size: clamp(3rem, 2.286rem + 3.57vw, 5.5rem);
  margin-bottom: 2rem;
}
.point .txt-box h2 .ja {
  font-size: clamp(1.3rem, 1.043rem + 1.29vw, 2.2rem);
  display: block;
}
.point .txt-box h2 span {
  display: block;
  width: max-content;
}
.point .txt-box p {
  font-size: clamp(1.5rem, 1.471rem + 0.14vw, 1.6rem);
  line-height: clamp(3.5rem, 3.129rem + 1.86vw, 4.8rem);
  margin-top: 4rem;
}
.point .txt-box p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  height: 11.7rem;
  width: 0.1rem;
  background: var(--bk-clr);
}
.point .txt-box p::before {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  transition: 0.5s cubic-bezier(0.37, 0, 0.63, 1) 0.5s;
  transition-property: clip-path;
}
.point .txt-box p.is-show::before {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.point .item-1, .point .item-2 {
  text-align: right;
}
.point .item-1 {
  margin-bottom: 10.8rem;
}
.point .item-1 .main-img {
  width: min(868px, 58%);
}
.point .item-1 .txt-box {
  width: min(400px, 31%);
  margin: 0 5% 0 0;
  text-align: left;
}
.point .item-1 .txt-box p {
  padding-top: 18rem;
}
.point .item-1 .sub-img {
  width: min(679px, 45%);
  margin-top: 15rem;
}
.point .item-2 {
  margin-bottom: -2.2rem;
}
.point .item-2 .main-img {
  width: min(815px, 55%);
}
.point .item-2 .txt-box p {
  padding-top: 2.7rem;
}
.point .item-2 .txt-box {
  width: min(330px, 30%);
  margin: 0 6% 0 0;
  text-align: left;
}
.point .item-2 .txt-box p {
  padding-top: 25rem;
}
.point .item-2 .txt-box p::before {
  transform: rotate(10deg);
  height: 21rem;
}
.point .item-2 .sub-img {
  width: min(425px, 30%);
  margin: 7rem 6% 0 0;
}
.point .item-3 {
  margin-bottom: 11.7rem;
}
.point .item-3 .flex-box {
  flex-direction: row-reverse;
  align-items: flex-start;
}
.point .item-3 .main-img {
  width: min(868px, 58%);
  margin-top: 13rem;
}
.point .item-3 .txt-box {
  width: min(275px, 23%);
  margin: 0 0 0 12%;
  text-align: left;
}
.point .item-3 .txt-box p {
  padding-top: 25rem;
}
.point .item-3 .txt-box p::before {
  transform: rotate(-15deg);
  height: 21rem;
  left: 45%;
}
.point .item-4 {
  text-align: center;
}
.point .item-4 .flex-box {
  align-items: flex-start;
}
.point .item-4 .main-img {
  width: min(815px, 58%);
  margin: 0 auto;
}
.point .item-4 .txt-box {
  width: min(815px, 58%);
  margin: 5rem auto 0;
  text-align: left;
}
.point .item-4 .txt-box p {
  margin: 0 -5% 0 0;
  padding-top: 20rem;
}
.point .item-4 .txt-box p::before {
  transform: rotate(-60deg);
  top: 8rem;
  left: -12rem;
  height: 18rem;
}
.point .clip_bg {
  background: url("../img/point_img_07.jpg") center / cover no-repeat;
}
/* ------------------------------------------------------------ */
/* material */
.material {
  padding: 10.5rem 0 17.3rem;
}
.material .inner {
  width: min(1170px, 81%);
}
.material .flex-box {
  align-items: flex-start;
  justify-content: flex-start;
}
.material .txt-box {
  margin-left: 9%;
}
.material h2 {
  width: 83px;
}
.material h2 img {
  width: 100%;
}
.material h3 {
  font-size: clamp(2.2rem, 1.829rem + 1.86vw, 3.5rem);
  letter-spacing: 0.2rem;
}
.material h4 {
  font-size: clamp(1.8rem, 1.629rem + 0.86vw, 2.4rem);
  line-height: clamp(3.4rem, 2.714rem + 3.43vw, 5.8rem);
  letter-spacing: 0.28rem;
  margin: 3.5rem 0 3.4rem;
  animation-delay: 0.3s;
}
.material p {
  font-size: clamp(1.5rem, 1.471rem + 0.14vw, 1.6rem);
  line-height: clamp(3.5rem, 3.214rem + 1.43vw, 4.5rem);
  letter-spacing: 0.1rem;
  flex: 1;
  animation-delay: 0.3s;
}
.material .clip_bg {
  background: url("../img/material_img_02.jpg") center / cover no-repeat;
}
/* ------------------------------------------------------------ */
/* plan */
.plan {
  background: var(--wh-clr);
  padding: 15.6rem 0 12.6rem;
}
.plan .inner {
  width: 90%;
  background: var(--wh-clr);
}
.plan .grid-box {
  display: grid;
  grid-template-rows: 250px 1fr; /* tate */
  grid-template-columns: 345px 1fr; /* yoko */
  max-width: max-content;
  width: 100%;
  margin: 0 auto;
}
.plan .txt-box {
  grid-row: 1;
  grid-column: 1;
}
.plan .txt-box h2 {
  font-size: clamp(2.2rem, 1.686rem + 2.57vw, 4rem);
  margin-bottom: 2rem;
}
.plan .txt-box p {
  font-size: clamp(1.5rem, 1.414rem + 0.43vw, 1.8rem);
  line-height: clamp(3rem, 2.857rem + 0.71vw, 3.5rem);
}
.plan p.data {
  font-size: 1.3rem;
  line-height: 3.2rem;
  grid-row: 2;
  grid-column: 1;
  letter-spacing: 0.05rem;
}
.plan picture {
  flex: 1;
  grid-row: 1 / span 3;
  grid-column: 2 / span 3;
  max-width: 859px;
}
.plan .FocusIn {
  animation-delay: 0.5s;
}
/* ------------------------------------------------------------ */
/* sale */
.sale {
  padding: 17rem 0 15.5rem;
  color: var(--wh-clr);
}
.sale .inner {
  max-width: 841px;
}
.sale .ttl-box {
  max-width: 841px;
  text-align: center;
}
.sale .ttl-box h2 {
  font-size: clamp(1.3rem, 1.1rem + 1vw, 2rem);
  line-height: clamp(3rem, 2.6rem + 2vw, 4.4rem);
  letter-spacing: 0.1rem;
}
.sale .ttl-box h3 {
  font-size: clamp(1.6rem, 1.2rem + 2vw, 3rem);
  line-height: clamp(3.5rem, 2.9rem + 3vw, 5.6rem);
  letter-spacing: 0.3rem;
  margin: 9.2rem auto 8.6rem;
}
.sale .ttl-box p {
  font-size: clamp(1.3rem, 1.1rem + 1vw, 2rem);
  line-height: clamp(3.5rem, 3.129rem + 1.86vw, 4.8rem);
}
.sale .overview h3 {
  font-size: clamp(1.6rem, 1.486rem + 0.57vw, 2rem);
  letter-spacing: 0.15rem;
  text-align: center;
  margin-top: 17.4rem;
}
.sale .overview .price {
  margin: 13.3rem auto 10.1rem;
}
.sale .overview .data h4 {
  font-size: 1.8rem;
  line-height: 4.8rem;
  margin-bottom: 2rem;
}
.sale .overview .data ul {
  align-items: flex-start;
}
.sale .overview .data ul::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  width: 1px;
  background: var(--wh-clr);
}
.sale .overview .data li {
  font-size: clamp(1.5rem, 1.471rem + 0.14vw, 1.6rem);
  line-height: clamp(2.8rem, 2.343rem + 2.29vw, 4.4rem);
  width: min(360px, 43%);
}
.sale .matrix .bg-wrap {
  margin: 0 auto;
}
.sale .clip_bg {
  background: url("../img/sale_img_02.jpg") center / cover no-repeat;
}
/* ------------------------------------------------------------ */
/* access */
.access {
  padding: 14.6rem 0 23.2rem;
  background: var(--gr-clr2);
  color: var(--wh-clr);
}
.access .ttl-box {
  margin-bottom: 9.5rem;
}
.access h2 {
  font-size: 2.4rem;
  letter-spacing: 0.9rem;
  text-align: center;
}
.access .inner {
  width: min(1120px, 77%);
}
.access .data_list li:not(:last-of-type) {
  margin-bottom: 3rem;
}
.access .data_list li p {
  font-size: clamp(1.2rem, 1.029rem + 0.86vw, 1.8rem);
  border: 1px solid var(--wh-clr);
  max-width: max-content;
  background: var(--gr-clr2);
  min-width: 125px;
  min-width: 156px;
  text-align: center;
  position: relative;
  padding: 8px 0;
}
.access .data_list li p::before {
  content: "";
  background: var(--gr-clr2);
  width: 120%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: -10%;
  top: 0;
  margin: 0 auto;
}
.access .data_list li::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 100%;
  height: 10px;
  background: url(../img/access_img_04.svg) center / 181px repeat-X;
}
.access .data_list li img {
  width: min(224px, 20%);
  background: #5F5F5F;
  padding: 0 10px;
}
.access p.att {
  font-size: clamp(1.3rem, 1.214rem + 0.43vw, 1.6rem);
  text-align: center;
  margin: 13rem auto 11.2rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
}
.access .map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 224 / 125;
}
.access .map .txt-box {
  margin-top: 3.8rem;
}
.access .map p {
  font-size: clamp(1.3rem, 1.214rem + 0.43vw, 1.6rem);
  font-weight: 300;
}
.access .map a {
  font-size: clamp(1.4rem, 1.286rem + 0.57vw, 1.8rem);
  display: flex;
  align-items: center;
}
.access .map a img {
  width: 14px;
  margin-left: 0.8rem;
}
.access .matrix .bg-wrap {
  margin: 0 auto;
}
/* ------------------------------------------------------------ */
/* calendar */
.ui-widget-header {
  background: var(--bl-clr) !important;
  color: var(--wh-clr) !important;
  display: flex;
  text-align: center;
  justify-content: center;
  position: relative;
  padding: 1rem 0.5rem;
  font-size: 1.5rem;
}
.ui-icon-circle-triangle-w, .ui-icon-circle-triangle-e {
  display: none !important;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
  border: none !important;
  background: none !important;
}
.ui-widget.ui-widget-content {
  z-index: 100 !important;
  border: 1px solid var(--bk-clr) !important;
  background: var(--wh-clr);
  color: var(--bk-clr);
  font-size: 1.3rem;
  width: auto;
}
.ui-datepicker-calendar th {
  padding: 1rem !important;
}
.ui-datepicker td span, .ui-datepicker td a {
  padding: 1rem !important;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active {
  color: var(--wh-clr) !important;
  border: 1px solid var(--bk-clr) !important;
  background: var(--bk-clr) !important;
}
.ui-datepicker-prev, .ui-datepicker-prev:hover, .ui-datepicker-next, .ui-datepicker-next:hover {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 16px;
  height: 16px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 16px !important;
}
.ui-datepicker-prev, .ui-datepicker-prev:hover {
  left: 0.5rem;
}
.ui-datepicker-next, .ui-datepicker-next:hover {
  right: 0.5rem;
}
.ui-datepicker-prev {
  background-image: url("../img/contact_icon_pref_off.svg") !important;
}
.ui-datepicker-prev:hover {
  background-image: url("../img/contact_icon_pref_on.svg") !important;
}
.ui-datepicker-next {
  background-image: url("../img/contact_icon_next_off.svg") !important;
}
.ui-datepicker-next:hover {
  background-image: url("../img/contact_icon_next_on.svg") !important;
}
.ui-state-disabled {
  opacity: 0.4;
}
.contact {
  background: var(--gr-clr3);
  color: var(--wh-clr);
  padding: 14.6rem 0 15.5rem;
}
.contact .inner {
  max-width: 1000px;
  width: 90%;
}
.contact-cont .ttl-box {
  width: 100%;
  margin-bottom: 13.6rem;
  text-align: center;
}
.contact-cont .ttl-box h2 {
  font-size: clamp(1.9rem, 1.443rem + 2.29vw, 3.5rem);
  margin-bottom: 7.7rem;
}
.contact-cont .ttl-box .txt-box {
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 100%;
  margin: 0 auto;
}
.contact-cont .ttl-box .txt-box .small {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  display: block;
}
.contact-cont .ttl-box .txt-box .tel-box {
  max-width: 384px;
  width: 100%;
  margin: 0 auto;
  display: inline-block;
}
.contact-cont .input-area {
  width: 100%;
  background: var(--wh-clr);
  color: #000;
  padding: 7.5rem 7.5rem 8.3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  border-radius: 0.5rem;
}
.contact-cont .att-box {
  max-width: 552px;
  width: 100%;
  margin: 0 auto 5.2rem;
  border: 1px solid var(--bk-clr);
  border-left: none;
  border-right: none;
  padding: 2.5rem 0;
  font-size: 1.2rem;
  line-height: 2.2rem;
}
.contact-list {
  padding: 6.5rem;
  background: var(--lgy-clr);
}
.contact-list-01 {
  margin-bottom: 2rem;
}
.contact-list-02 {
  margin-bottom: 3.2rem;
}
/* form#mail_form, dl, dt, dd */
form#mail_form * {
  box-sizing: border-box;
  letter-spacing: 0.1rem;
}
form#mail_form {
  width: 100%;
}
form#mail_form dl {
  width: 100%;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
}
form#mail_form dl.flex-start {
  align-items: flex-start;
}
form#mail_form .contact-list-01 dl {
  margin: 0 auto;
}
form#mail_form dl:after, form#mail_form dl dt:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
form#mail_form dl dt {
  max-width: 240px;
  width: 40%;
  font-size: 1.4rem;
  line-height: 2.5rem;
  font-weight: 600;
}
form#mail_form dl dt .dummy-required {
  background: var(--bl-clr);
  color: var(--wh-clr);
  font-size: 1.1rem;
  padding: 0.2rem 0.5rem;
  margin-left: 1rem;
}
form#mail_form dl dd {
  width: 100%;
  font-size: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  flex: 1;
}
form#mail_form dl .calendar {
  width: 100%;
}
form#mail_form dl .calendar::before {
  content: "";
  background: url("../img/icon_calendar.svg") center / cover no-repeat;
  width: 1.6rem;
  height: 1.8rem;
  position: absolute;
  z-index: 2;
  right: 3%;
  top: -0.5rem;
  bottom: 0;
  margin: auto 0;
}
form#mail_form dl .time::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--bk-clr);
  line-height: 1;
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  position: absolute;
  z-index: 2;
  right: 3.5%;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
form#mail_form dl dt i {
  float: left;
  position: relative;
  top: -2px;
}
/* span.required, span.optional */
form#mail_form dl dt span.required, form#mail_form dl dt span.optional {
  display: inline-block;
  font-size: 85%;
  color: var(--wh-clr);
  padding: 0.4rem 1rem;
}
form#mail_form dl dt span.required {
  display: none;
}
form#mail_form dl dt span.optional {
  display: none;
}
/* error message */
form#mail_form dl dd span.error_blank, form#mail_form dl dd span.error_format, form#mail_form dl dd span.error_match {
  display: block;
  color: #ff0000;
  margin-top: 5px;
  font-size: 1.4rem;
  width: 100%;
}
/* loading */
div.loading-layer {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
}
span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid var(--wh-clr);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load-circle 1.0s linear infinite;
  animation: load-circle 1.0s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -3rem;
  margin-left: -3rem;
}
@-webkit-keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* input, select, textarea */
form#mail_form input[type="text"], form#mail_form input[type="email"], form#mail_form input[type="tel"] {
  width: 100%;
  padding: 1.3rem 3%;
  border: 1px solid var(--bk-clr);
  background: var(--wh-clr);
  -webkit-appearance: none;
  font-size: 1.3rem;
  font-family: inherit;
  line-height: normal;
  flex: 1;
}
form#mail_form input[type="text"]:focus, form#mail_form input[type="email"]:focus, form#mail_form input[type="tel"]:focus, form#mail_form textarea:focus {
  box-shadow: 0px 0px 5px #55ccff;
  border: 1px solid #55ccff;
  background: var(--wh-clr);
}
form#mail_form ul li input[type="radio"], form#mail_form ul li input[type="checkbox"] {
  margin: 0 1rem 0 0;
}
form#mail_form select {
  padding: 1.3rem 3%;
  border: 1px solid var(--bk-clr);
  background: var(--wh-clr);
  font-size: 1.3rem;
  font-family: inherit;
  line-height: normal;
  color: #000 !important;
}
form#mail_form textarea {
  display: block;
  width: 100%;
  height: 175px;
  padding: 1.3rem 3%;
  resize: vertical;
  border: 1px solid var(--bk-clr);
  background: var(--wh-clr);
  -webkit-appearance: none;
  font-size: 1.3rem;
  font-family: inherit;
  line-height: normal;
}
/* ul, li */
form#mail_form ul {
  list-style-type: none;
  width: 100%;
  display: flex;
}
form#mail_form ul li:not(:last-of-type) {
  margin-right: 5%;
}
/* ドメイン */
form#mail_form .domain-box {
  padding: 4.5rem 6.5rem;
  border: 1px solid var(--bk-clr);
}
form#mail_form .domain-box h3 {
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}
form#mail_form .domain-box p {
  font-size: 1.4rem;
  line-height: 2.6rem;
  text-align: justify;
  letter-spacing: 0.2rem;
}
/* カスタマイズ */
form#mail_form ul li:not(:last-of-type) span {
  margin-bottom: 0;
}
form#mail_form ul li label input {
  display: none; /* デフォルトのinputは非表示にする */
}
form#mail_form ul li label span {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
  padding: 0 0 0 2.5rem;
  display: block;
  position: relative;
}
form#mail_form ul li label span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border: 1px solid var(--bk-clr);
  background: var(--wh-clr);
  border-radius: 100px;
  width: 16px;
  height: 16px;
}
form#mail_form ul li label span::after {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: var(--bl-clr);
  border-radius: 100px;
  width: 8px;
  height: 8px;
  opacity: 0;
}
form#mail_form ul li label input:checked + span::after {
  opacity: 1;
}
/* input design */
form#mail_form input[name="postal"] {
  width: calc(100% - 110px);
  margin-right: 2%;
}
form#mail_form input[name="mail_address"], form#mail_form input[name="mail_address_confirm"] {
  width: 100%;
}
form#mail_form input[name="postal"] + div.auto {
  display: inline-block;
  padding: 1.3rem 3%;
  border: 1px solid #848484;
  background: #848484;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: normal;
  color: var(--wh-clr);
  text-decoration: none;
  flex: 1;
  text-align: center;
  cursor: pointer;
  max-width: 126px;
  transition: 0.3s;
}
/* button */
form#mail_form p#form_submit {
  padding: 6.8rem 0 0;
  text-align: center;
}
form#mail_form input[type="button"] {
  padding: 2.8rem 6.7rem;
  border: 1px solid var(--bl-clr);
  background: var(--bl-clr);
  font-size: 1.9rem;
  letter-spacing: 0.8rem;
  color: var(--wh-clr);
  font-family: inherit;
  -webkit-appearance: none;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.5s;
  border-radius: 3px;
}
form#mail_form input[type="button"]:hover {
  opacity: 0.6;
}
#thanks {
  color: var(--bk-clr);
  background: var(--wh-clr);
  padding: 28.7rem 0 34.2rem;
}
#thanks .inner {
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 90%;
  text-align: justify;
}
#thanks h1 {
  font-size: 2rem;
  line-height: 4rem;
  margin: 0 auto 3rem;
  text-align: center;
}
#thanks p {
  font-size: 1.5rem;
  line-height: 3.3rem;
  text-align: justify;
}
#thanks a {
  display: block;
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 100%;
  margin: 0 auto;
}
#thanks .bak_btn a {
  color: var(--wh-clr);
  background: var(--bl-clr);
  padding: 1.3rem 6rem;
  border: 1px solid var(--bl-clr);
  font-size: 1.3rem;
  font-family: inherit;
  -webkit-appearance: none;
  cursor: pointer;
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 100%;
  margin: 4rem auto 0;
  transition: 0.5s;
}
#thanks .bak_btn a:hover {
  opacity: 0.6;
}
/* ------------------------------------------------------------ */
/* footer */
footer {
  background: #f7f7f7;
  color: #231815;
  padding: 16.4rem 0;
}
footer .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
footer .logo {
  max-width: 292px;
}
footer p {
  font-size: 1.5rem;
  line-height: 3rem;
  padding-left: 5%;
}
footer p span {
  display: inline-block;
}
footer p .bold {
  margin-bottom: 1rem;
}
/* ------------------------------------------------------------ */
/* menu_btn */
.menu_btn {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 990;
  -webkit-transition: all .5s;
  transition: all .5s;
  transform: translateY(100%);
}
.menu_btn.is-btn-fixed {
  transform: translateY(0%);
}
.menu_btn.is-btn-hide {
  transform: translateY(100%);
}
.menu_btn .col02 {
  flex-wrap: nowrap;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.menu_btn .col02 a {
  width: calc(100% / 2 - 1px);
  background: var(--bl-clr);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.menu_btn .col02 a:last-of-type {
  margin-right: 0;
}
.menu_btn a:hover {
  opacity: 0.7;
}
.menu_btn .col02 a img {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
.menu_btn .col02 a picture {
  width: 100%;
}
@media screen and (max-width: 1155px) {
  /* ------------------------------------------------------------ */
  /* hero */
  .hero .img-area .fuki-box {
    top: -6rem;
  }
  /* ------------------------------------------------------------ */
  /* point */
  .point .item-4 .txt-box p::before {
    top: 11rem;
    left: -10rem;
    height: 15rem;
  }
}
@media screen and (max-width: 798px) {}
@media screen and (max-width: 599px) {
  /* ------------------------------------------------------------ */
  /* 基本・レイアウト指定 */
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .vertical {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
  /* ------------------------------------------------------------ */
  /* loading */
  .site_loading .site_loading_ttl .logo {
    max-width: 160px;
  }
  /* ------------------------------------------------------------ */
  /* animation */
  .in01, .in02 {
    animation-delay: 0s !important;
    transition-delay: 0s !important;
  }
  /* ------------------------------------------------------------ */
  /* 全体格納 */
  .wrapper {
    overflow: hidden;
  }
  /* ------------------------------------------------------------ */
  /* hero */
  .hero {
    background: none;
    display: block;
  }
  .hero .logo {
    width: 25%;
    position: initial;
    margin: 0 auto;
  }
  .hero .ttl-box {
    margin: 5.8rem auto 13rem;
  }
  .hero .ttl-box .top {
    width: 84%;
  }
  .hero .ttl-box .btm {
    width: 49%;
    margin: 1.9rem auto 5.4rem;
  }
  .hero .ttl-box h2 {
    letter-spacing: 0.27rem;
  }
  .hero .img-area .fuki-box {
    width: 47%;
    top: -10rem;
    right: 5%
  }
  .hero .scrolldown {
    position: absolute;
    height: 94px;
    width: 7px;
    left: 5%;
    bottom: 30%;
    z-index: 2;
  }
  .hero .scrolldown::after {
    content: '';
    display: inline-block;
    position: absolute;
    background-color: var(--bk-clr);
    right: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 94px;
    animation: fix_scroll 2.5s infinite;
  }
  @keyframes fix_scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    50.1% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }
  .hero .scrolldown::before {
    content: '';
    display: inline-block;
    position: absolute;
    background-color: var(--bk-clr);
    right: 0;
    bottom: 0;
    width: 7px;
    height: 7px;
    border-radius: 100px;
  }
  .hero .scrolldown img {
    position: absolute;
    top: 0;
    left: -1rem;
    margin: 0;
    height: auto;
    width: 7px;
  }
  /* ------------------------------------------------------------ */
  /* intro */
  .intro {
    padding: 9rem 0;
  }
  .intro .inner {
    width: 90%;
  }
  .intro .flex-box {
    display: block;
  }
  .intro h2 {
    width: 100px;
    margin: 0 auto 9rem;
    position: initial;
  }
  .intro p {
    margin-left: 0;
  }
  .intro .clip_bg {
    background: url("../img/sp_intro_img_02.jpg") center / cover no-repeat;
  }
  /* ------------------------------------------------------------ */
  /* point */
  .point {
    padding: 8rem 0 6.7rem;
  }
  .point .flex-box {
    display: block;
  }
  .point .txt-box h2 .en {
    margin-bottom: 1.3rem;
  }
  .point .txt-box p::before {
    display: none;
  }
  .point .point_item::before {
    content: "";
    position: absolute;
    height: 22rem;
    width: 0.1rem;
    background: var(--bk-clr);
  }
  .point .item-1::before {
    top: 12rem;
    left: 10%;
  }
  .point .item-2::before {
    top: -8rem;
    right: 45%;
    height: 7.8rem;
    transform: rotate(-15deg);
  }
  .point .item-3::before {
    top: -8rem;
    right: 0;
    left: 0;
    height: 7.8rem;
    margin: 0 auto;
    transform: rotate(15deg);
  }
  .point .item-4::before {
    top: -10rem;
    left: 17%;
    height: 8rem;
  }
  .point .point_item::before {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
    transition: 0.5s cubic-bezier(0.37, 0, 0.63, 1) 0.5s;
    transition-property: clip-path;
  }
  .point .point_item.is-show::before {
    webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
  .point .item-1 .txt-box p, .point .item-2 .txt-box p, .point .item-3 .txt-box p, .point .item-4 .txt-box p {
    padding: 0;
  }
  .point .item-1 .txt-box {
    width: 90%;
    margin: 0 0 0 auto;
  }
  .point .item-1 .main-img {
    width: 92%;
    margin: 2.8rem 0 2.8rem auto;
  }
  .point .item-1 .sub-img {
    width: 66%;
    margin: 2.6rem 7% 0 0;
  }
  .point .item-2 {
    margin-bottom: 10.8rem;
  }
  .point .item-2 .txt-box {
    width: 90%;
    margin: 0 auto;
  }
  .point .item-2 .main-img {
    width: 84%;
    margin: 2.5rem 0 2.8rem;
  }
  .point .item-2 .sub-img {
    width: 54%;
  }
  .point .item-3 .txt-box {
    width: 100%;
    margin: 0;
  }
  .point .item-3 .txt-box h2 {
    padding-left: 5%;
  }
  .point .item-3 .main-img {
    width: 88%;
    margin: 2.5rem 0 2.1rem;
  }
  .point .item-3 .txt-box p {
    width: 90%;
    margin: 0 auto;
  }
  .point .item-4 .txt-box {
    width: 90%;
  }
  .point .item-4 .main-img {
    width: 100%;
    margin: 2.5rem 0 2.8rem;
  }
  .point .item-4 .txt-box p {
    margin: 0;
  }
  .point .clip_bg {
    background: url("../img/sp_point_img_07.jpg") center / cover no-repeat;
  }
  /* ------------------------------------------------------------ */
  /* material */
  .material {
    padding: 9rem 0 5.7rem;
  }
  .material .inner {
    width: 90%;
  }
  .material .flex-box {
    display: block;
  }
  .material h2 {
    width: 66px;
    margin: 0 auto 6rem;
  }
  .material .txt-box {
    margin: 0;
  }
  .material h3 {
    letter-spacing: 0.11rem;
  }
  .material h4 {
    letter-spacing: 0.22rem;
    margin: 3.3rem 0 2.7rem;
  }
  .material p {
    letter-spacing: 0.18rem;
  }
  .material .clip_bg {
    background: url("../img/sp_material_img_02.jpg") center / cover no-repeat;
  }
  /* ------------------------------------------------------------ */
  /* plan */
  .plan {
    padding: 6.7rem 0 3.7rem;
  }
  .plan .inner {
    width: 100%;
  }
  .plan .grid-box {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .plan .txt-box {
    order: 1;
    width: 90%;
    margin: 0 auto;
  }
  .plan picture {
    order: 2;
    max-width: 95%;
    flex: auto;
    margin: 4rem auto 3.1rem;
  }
  .plan p.data {
    order: 3;
    max-width: max-content;
    margin: 0 auto;
  }
  .plan .txt-box h2 {
    margin-bottom: 2.1rem;
  }
  .plan .txt-box p {
    letter-spacing: 0.15rem;
  }
  .plan p.data {
    width: 100%;
  }
  .plan .FocusIn {
    animation-delay: 0s;
  }
  /* ------------------------------------------------------------ */
  /* sale */
  .sale {
    padding: 8.2rem 0 7.8rem;
  }
  .sale .ttl-box h3 {
    margin: 5rem auto;
  }
  .sale .overview h3 {
    letter-spacing: 0.24rem;
    margin-top: 6.7rem;
  }
  .sale .overview picture {
    width: 90%;
    margin: 5.6rem auto 2.8rem;
  }
  .sale .overview .price {
    margin: 0;
    width: 100%;
  }
  .sale .overview .data {
    width: 90%;
    margin: 0 auto;
  }
  .sale .overview .data ul {
    display: block;
  }
  .sale .overview .data ul::before {
    display: none;
  }
  .sale .overview .data li {
    width: 100%;
  }
  .sale .overview .data h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  .sale .clip_bg {
    background: url("../img/sp_sale_img_02.jpg") center / cover no-repeat;
  }
  /* ------------------------------------------------------------ */
  /* access */
  .access {
    padding: 5.5rem 0;
  }
  .access .inner {
    width: 100%;
  }
  .access .ttl-box {
    margin-bottom: 4rem;
  }
  .access h2 {
    font-size: 1.6rem;
    letter-spacing: 0.18rem;
    text-align: center;
  }
  .access .data_list {
    width: 95%;
    margin: 0 auto;
  }
  .access .data_list li::before {
    background-size: 80px;
  }
  .access .data_list li:not(:last-of-type) {
    margin-bottom: 1.2rem;
  }
  .access .data_list li p {
    min-width: 85px;
    padding: 3px 5px;
  }
  .access .data_list li img {
    width: 135px;
  }
  .access p.att {
    width: 95%;
    margin: 3.4rem auto 4.5rem;
    line-height: 2.4rem;
  }
  .access .map .txt-box {
    display: block;
    margin-top: 2.2rem;
  }
  .access .map p {
    line-height: 3rem;
    text-align: center;
  }
  .access .map a {
    letter-spacing: 0;
    width: max-content;
    margin: 2.1rem auto 0;
  }
  /* ------------------------------------------------------------ */
  /* contact */
  .contact {
    padding: 9.2rem 0 3.42rem;
  }
  .contact-cont .ttl-box {
    margin-bottom: 9rem;
  }
  .contact-cont .ttl-box h2 {
    margin-bottom: 3.4rem;
  }
  .contact-cont .ttl-box .txt-box .small {
    display: block;
    margin-bottom: 1.5rem;
  }
  .contact-cont .ttl-box .txt-box .tel-box {
    max-width: 227px;
  }
  .contact-cont .input-area {
    padding: 5rem 8%;
  }
  .contact-cont .att-box {
    margin: 0 auto 3.5rem;
  }
  .contact-list {
    padding: 0;
    background: var(--wh-clr);
  }
  .contact-list-01 {
    margin-bottom: 4rem;
  }
  .contact-list-02 {
    margin-bottom: 5.5rem;
  }
  form#mail_form .contact-list-01 dl dt {
    margin-bottom: 2.5rem;
  }
  form#mail_form ul {
    flex-wrap: wrap;
  }
  form#mail_form ul li {
    width: 100%;
  }
  form#mail_form ul li:not(:last-of-type) {
    margin: 0 0 1.5rem 0;
  }
  form#mail_form dl {
    margin: 0 auto 2.5rem;
    flex-wrap: wrap;
    display: block;
  }
  form#mail_form dl dt {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1rem;
    line-height: 2.3rem;
  }
  form#mail_form dl dd {
    max-width: 100%;
    width: 100%;
  }
  form#mail_form dl dd.calendar::before {
    width: 1.2rem;
    height: 1.3rem;
  }
  form#mail_form p#form_submit {
    padding: 4.2rem 0 0;
  }
  form#mail_form .domain-box {
    padding: 4rem 8%;
  }
  form#mail_form input[name="postal"] + div.auto {
    max-width: 110px;
  }
  form#mail_form input[type="button"] {
    padding: 1.8rem 3.7rem;
    font-size: 1.6rem;
    letter-spacing: 0.4rem;
  }
  #thanks {
    padding: 8.8rem 0 12.1rem;
  }
  #thanks h1 {
    font-size: 1.6rem;
    line-height: 3.5rem;
    letter-spacing: 0;
  }
  #thanks p {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
  /* ------------------------------------------------------------ */
  /* footer */
  footer {
    padding: 8.1rem 0;
  }
  footer .inner {
    flex-wrap: wrap;
  }
  footer .logo {
    max-width: 134px;
    margin-bottom: 2.5rem;
  }
  footer p .bold {
    font-size: 1.5rem;
  }
  footer p {
    width: 100%;
    padding: 0;
    text-align: center;
    font-size: 1.4rem;
  }
}