@charset "UTF-8";

/*--------------------------------------------------------------
reset.min.css
リセット関係・clearfixなど

fonts.css
フォントアイコンを記載したcss

common.css
レイアウト、TOPのスタイルを記載したcss

sub.css
下層のレイアウトを記載したcss
--------------------------------------------------------------*/
/* ---------------------------------------------------------- */
/* Common */
* html body {
  background: url(null) fixed;
}

html {
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  background: var(--bk-color);
  color: var(--bk-color);
  position: relative;
  width: 100%;
  padding: 0;
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.4rem, 7vw, 1.75rem);
  line-height: clamp(2.9rem, -0.02rem + 14.6vw, 3.63rem);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ol,
ul,
menu {
  padding: 0;
}

a {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

@media (min-width: 751px) {

  /* 電話番号リンクをスマホのみ有効にする */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: auto;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.base {
  position: relative;
  z-index: 2;
}

.inner {
  width: 90%;
  margin: 0 auto;
}

.flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.grid_box {
  display: grid;
}

.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;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.dash {
  width: 30px;
  height: 1px;
  background: var(--wh-color);
  display: inline-block;
  vertical-align: super;
  margin: 0 10px;
}

.vertical .dash {
  width: 1px;
  height: 55px;
  margin: 10px auto 0;
  vertical-align: baseline;
}

.common_ttl_area h2 span {
  display: block;
}

.common_ttl_area h2 .en {
  font-size: clamp(3.5rem, -0.1rem + 18vw, 4.4rem);
  line-height: clamp(3.8rem, 19vw, 4.75rem);
}

.common_ttl_area h2 .ja {
  font-size: clamp(1.3rem, 0.1rem + 6vw, 1.6rem);
  letter-spacing: 0.35rem;
  margin-top: 0.8rem;
}

.common_ttl_area h2 .en.small {
  font-size: clamp(1.2rem, 6vw, 1.5rem);
  line-height: clamp(1.8rem, -0.2rem + 10vw, 2.3rem);
  font-weight: 300;
  letter-spacing: 0.1rem;
}

.month_box {
  width: 125px;
  height: 125px;
  margin: 0 auto;
  justify-content: center;
}

.month_box .rotate-loop {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  aspect-ratio: 1 / 1;
  transform-origin: center;
}

.month_box .month {
  width: 42px;
}

.deco {
  position: absolute;
}

.square-btn {
  max-width: 87%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.square-btn a {
  padding: clamp(2.7rem, 0.3rem + 12vw, 3.3rem) 5%;
  border: 2.5px solid var(--gr-color);
  background: var(--wh-color);
  color: var(--gr-color);
  font-size: clamp(1.3rem, 0.1rem + 6vw, 1.6rem);
  line-height: clamp(2rem, 10vw, 2.5rem);
  -webkit-appearance: none;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.3s;
  width: clamp(25rem, 0.2rem + 124vw, 31.2rem);
  border-radius: 50%;
  z-index: 2;
}

.square-btn a:hover {
  border-color: var(--gr-color);
  background: var(--gr-color);
  color: var(--wh-color);
}

.point-list .list-item {
  padding-left: 3rem;
}

.point-list .list-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-pagination-bullets {
  top: auto !important;
  bottom: -2% !important;
}

.swiper-pagination-bullet {
  background: var(--wh-color) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--lgt-gr-color) !important;
  opacity: 1 !important;
}

.swiper-pagination-fraction {
  position: absolute;
  right: 4%;
  bottom: 3.5rem;
  font-size: clamp(1.2rem, 6vw, 1.5rem);
  letter-spacing: 0.2rem;
  font-weight: bold;
  left: auto;
  top: auto;
  width: max-content;
  color: var(--gr-color);
}

.spnone {
  display: none !important;
}

.pcnone {
  display: block !important;
}

.tablet {
  display: none !important;
}

.ctr_cont_area {
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .tablet {
    display: block !important;
  }
}

@media (min-width: 1024px) {
  .spnone {
    display: block !important;
  }

  .pcnone {
    display: none !important;
  }

  .tablet {
    display: none !important;
  }
}

/* ---------------------------------------------------------- */
/* 背景 */
/* マスク */
.clip_mask {
  position: relative;
  z-index: 0;
  /* overflow: hidden;
  clip-path: inset(0 0 0 0); */
  width: 100%;
  margin: 0;
  /* background: liner-gradient(to right, #ebf2f5 0%, #f5f3de 100%); */
}

.clip_mask::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  mask-image: url(../img/mask_img_01.svg);
  mask-repeat: no-repeat;
  mask-position: 100% 0;
  mask-size: 100%;
  /* background-image: radial-gradient(rgb(255, 243, 198) 10%, rgbd(255, 255, 255, 0) 20%); */
  background-color: #fff;
  /* background-size: 15px 15px; */
  position: absolute;
  z-index: -1;
  top: -1px;
  left: 0;
}

.clip_mask::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  mask-image: url(../img/mask_img_01.svg);
  mask-repeat: no-repeat;
  mask-position: 0 100%;
  mask-size: 100%;
  /* background-image: radial-gradient(rgb(255, 243, 198) 10%, rgbd(255, 255, 255, 0) 20%); */
  background-color: #fff;
  /* background-size: 15px 15px; */
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: 0;
}

.clip_mask.clip_parallax::before {
  z-index: 3;
}

/* パララックス */
.clip_parallax {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
}

.clip_parallax .clip_parallax_bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  /* background: url("../img/image.jpg")center / cover no-repeat; */
  left: 0;
  top: 0;
  right: 0;
  bottom: auto;
  z-index: -1;
}

/* ------------------------------------------------------------ */
/* Pc Menu */
@media screen and (min-width: 768px) {
  .body_bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }

  .body_bg .swiper,
  .body_bg .swiper img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }

  .lft_cont_area {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: calc(100% / 2 - 200px);
    display: flex;
    align-content: center;
    justify-content: center;
    color: var(--wh-color);
  }

  .lft_cont_area .inner {
    display: flex !important;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    width: max(274px, 53%);
    height: 100%;
  }

  .lft_cont_area h1 {
    width: max(130px, 25%);
    position: absolute;
    top: 35px;
    left: 35px;
  }

  .lft_cont_area .month_box {
    width: 194px;
    height: 194px;
  }

  .lft_cont_area .month_box .month {
    width: 66px;
  }

  .lft_cont_area h2 {
    width: 100%;
    font-size: 5.6rem;
    line-height: 6rem;
    margin: 2.6rem auto 0.5rem;
  }

  .lft_cont_area h2 .month {
    width: max(92px, 18%);
  }

  .lft_cont_area h2 span {
    display: block;
  }

  .lft_cont_area p {
    font-size: 1.9rem;
    line-height: 3.1rem;
  }

  .rgt_cont_area {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: calc(100% / 2 - 200px);
  }

  .rgt_cont_area .menu_area {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: max-content;
    margin: -15% auto 0;
  }

  .rgt_cont_area .inner {
    display: flex !important;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    width: max(281px, 53%);
    height: 100%;
  }

  .rgt_cont_area .menu_list .list_ttl {
    width: 74px;
    margin-bottom: 2.7rem;
  }

  .rgt_cont_area .menu_list .list_item {
    margin-bottom: 1.75rem;
    font-size: 2.2rem;
    line-height: normal;
    max-width: 100%;
    color: var(--wh-color);
  }

  .rgt_cont_area .menu_list .list_item:last-of-type {
    margin-bottom: 0;
  }

  .ctr_cont_area {
    max-width: 400px;
    width: 100%;
    background: var(--wh-color);
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}

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

  .body_bg,
  .lft_cont_area,
  .rgt_cont_area {
    display: none !important;
  }
}

/* ---------------------------------------------------------- */
/* Animation */
/* フェードイン */
.FadeIn {
  opacity: 0;
  transition-duration: 1.2s;
  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);
}

/* ステッカー横 */
.StickerX {
  -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) 0.3s;
  transition-property: clip-path;
}

.StickerX.is-show {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

/* ステッカー縦 */
.StickerY {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1) 0.3s;
  transition-property: clip-path;
}

.StickerY.is-show {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

/* マトリックス */
.Matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
  display: block;
}

.Matrix .bg-wrap .inn {
  opacity: 0;
  transform: Matrix(1, 0, 0, 1, 0, 100);
  transition-duration: 1s;
  transition-delay: 0.2s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-block;
}

.Matrix.is-show .bg-wrap {
  opacity: 1;
  width: 100%;
}

.Matrix.is-show .bg-wrap .inn {
  opacity: 1;
  transform: Matrix(1, 0, 0, 1, 0, 0);
  display: inline-block;
  width: 100%;
}

/* フォーカス */
.FocusIn {
  opacity: 0;
}

.FocusIn.is-show {
  -webkit-animation: FocusIn 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.2s both;
  animation: FocusIn 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 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;
  }
}

/* 回転し続ける */
.rotate-loop {
  animation-name: rotate-loop;
  animation-duration: 22s;
  animation-iteration-count: infinite;
  /* 追加 */
  animation-timing-function: linear;
  /* 追加（一定速度にするため） */
}

@keyframes rotate-loop {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* 線 */
.line-anim {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.line-anim::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: -2px;
  background: var(--wh-color);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

a.is-highlight-active .line-anim::after,
a:hover .line-anim::after {
  width: 100%;
}

.in01 {
  transition-delay: 0.7s;
}

/* ---------------------------------------------------------- */
/* Fixed */
#fixed {
  display: block;
  margin: 0 auto;
  position: fixed;
  bottom: 3%;
  right: 0;
  z-index: 9997;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  transform: translateX(100%);
  width: max(87px, 27%);
  height: auto;
  aspect-ratio: 29 / 20;
}

#fixed.is-fixed {
  transform: translateX(0);
  right: 5%;
}

#fixed.is-hidden {
  transform: translateX(100%);
  right: 0;
}

#fixed a {
  background: url(../img/link_img_01.svg) center / 100% no-repeat;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  display: block;
}

#fixed a:hover {
  background: url(../img/link_img_02.svg) center / 100% no-repeat;
  transition: 0.5s;
}

@media only screen and (min-width: 1023px) and (max-width: 768px) {
  #fixed {
    right: 10%;
    bottom: 12%;
    transform: translateX(0);
    width: 18.4rem;
    aspect-ratio: 184 / 127;
  }

  #fixed.is-fixed {
    transform: translateX(0);
    right: 10%;
  }

  #fixed.is-hidden {
    transform: translateX(0);
    right: 10%;
  }
}

@media (min-width: 1024px) {
  #fixed {
    right: 10%;
    bottom: 17%;
    transform: translateX(0);
    width: 18.4rem;
    aspect-ratio: 184 / 127;
  }

  #fixed.is-fixed {
    transform: translateX(0);
    right: 10%;
  }

  #fixed.is-hidden {
    transform: translateX(0);
    right: 10%;
  }

  #fixed a {
    background-image: url(../img/pc_link_img_01.svg);
  }

  #fixed a:hover {
    background-image: url(../img/pc_link_img_02.svg);
  }
}

/* ---------------------------------------------------------- */
/* Hero */
.hero {
  height: 100%;
  width: 100%;
  aspect-ratio: 50 / 89;
  background: url(../img/hero_img_04.webp) bottom center / cover no-repeat;
  border: clamp(0.9rem, -0.7rem + 8vw, 1.3rem) solid var(--gr-color);
}

.hero .inner {
  height: 100%;
}

.hero .ttl_area {
  max-width: max(312px, 78%);
  margin: 0 auto;
  height: 100%;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  color: var(--wh-color);
}

.hero h2 {
  position: absolute;
  top: clamp(1.3rem, 0.1rem + 6vw, 1.6rem);
  left: clamp(1.5rem, -0.1rem + 8vw, 1.9rem);
  width: clamp(6.4rem, 32vw, 8rem);
}

.hero h3 {
  font-size: clamp(4.5rem, 0.1rem + 22vw, 5.6rem);
  line-height: clamp(4.9rem, 0.5rem + 22vw, 6rem);
  margin-top: clamp(2rem, 1.2rem + 4vw, 2.2rem);
}

.hero h3 span {
  display: block;
}

.hero p {
  font-size: clamp(1.5rem, -0.1rem + 8vw, 1.9rem);
  line-height: clamp(2.5rem, 0.1rem + 12vw, 3.1rem);
  margin-top: clamp(0.7rem, -0.5rem + 6vw, 1rem);
}

.hero .scroll-down {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 5%;
  transition-delay: 0.8s;
  width: 1px;
}

.hero .scroll-down::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 4;
  background-color: var(--wh-color);
  left: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 82px;
  animation: scroll-down 2.5s infinite;
}

@keyframes scroll-down {
  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 .deco-1 {
  width: clamp(11.2rem, 56vw, 14rem);
  position: relative;
  top: calc(-1 * clamp(0.2rem, -0.6rem + 4vw, 0.4rem));
  left: calc(-1 * clamp(5.3rem, -0.7rem + 30vw, 6.8rem));
}

@media (min-width: 768px) {
  .hero {
    height: 100%;
    width: 100%;
    aspect-ratio: 16 / 29;
  }
}

@media only screen and (min-width: 1023px) and (max-width: 768px) {}

@media (min-width: 1024px) {}

/* ---------------------------------------------------------- */
/* Event */
.event_cont {
  color: var(--gr-color);
  background: var(--lgt-gr-color);
  padding: clamp(7.2rem, 36vw, 9rem) 0 clamp(10rem, 50vw, 12.5rem);
}

.event_cont div {
  position: relative;
  z-index: 3;
}

.event_cont.clip_mask::before,
.event_cont.clip_mask::after {
  background: var(--gr-color);
}

.event_cont .ttl_area h2 {
  margin: 0 auto clamp(3.7rem, 0.1rem + 18vw, 4.6rem) !important;
}

.event_cont .ttl_area .date {
  width: clamp(20.9rem, 0.1rem + 104vw, 26.1rem);
  margin: 0 auto clamp(0.7rem, 0.614rem + 0.43vw, 1rem);
  font-size: clamp(3.5rem, 3.243rem + 1.29vw, 4.4rem);
  letter-spacing: 0.25rem;
}

.event_cont .txt_area {
  display: grid;
  grid-template-columns: var(--grid-h3-width) 1fr;
  width: 88%;
  margin: clamp(3.7rem, -3.5rem + 36vw, 5.5rem) auto 0;
  gap: clamp(2rem, 10vw, 2.5rem);
}

.event_cont .txt_area h3 {
  width: var(--grid-h3-width);
  /* font-size: clamp(1.5rem, 1.386rem + 0.57vw, 1.9rem);
  line-height: clamp(2.9rem, 2.7rem + 1vw, 3.6rem);
  margin-bottom: clamp(1.5rem, 1.386rem + 0.57vw, 1.9rem); */
}

.event_cont .txt_area p .att {
  display: block;
  font-size: clamp(1.2rem, 1.114rem + 0.43vw, 1.5rem);
  line-height: clamp(2.4rem, 2.2rem + 1vw, 3.1rem);
}

.event_cont .deco_box {
  width: 90%;
  margin: 0.5rem auto 0;
}

.event_cont .slide_area {
  padding: clamp(3.8rem, -0.2rem + 20vw, 4.8rem) 0 clamp(7.2rem, 36vw, 9rem);
}

.event_cont .slide_area p {
  font-size: clamp(1.2rem, 1.114rem + 0.43vw, 1.5rem);
  line-height: normal;
  letter-spacing: 0;
  margin: 0 auto clamp(1.1rem, -0.1rem + 6vw, 1.4rem);
}

.event_cont .event-swiper {
  padding-bottom: clamp(2.4rem, 1.971rem + 2.14vw, 3.9rem);
}

.event_cont .swiper-pagination-progressbar {
  width: 78% !important;
  top: auto !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 1.5px !important;
  margin: 0 auto;
  background: var(--lgt-gy-color) !important;
  position: absolute;
}

.event_cont .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--gy-color) !important;
}

.event_cont .point_area {
  background: url(../img/bg_img_01.svg) center / cover no-repeat;
  padding: clamp(2.6rem, 0.2rem + 12vw, 3.2rem) 0;
  margin-bottom: clamp(7.1rem, -0.1rem + 36vw, 8.9rem);
}

.event_cont .point_inner {
  width: max(349px, 87%);
  margin: 0 auto;
  background: var(--gr-color);
  color: var(--lgt-gr-color);
  border-radius: 1.25rem;
  padding: clamp(3.2rem, -1.2rem + 22vw, 4.3rem) 0 clamp(5.2rem, 26vw, 6.5rem);
}

.event_cont .point_cont {
  max-width: max-content;
  width: 90%;
  margin: 0 auto;
}

.event_cont .point_inner h3 {
  width: clamp(7.5rem, -0.1rem + 38vw, 9.4rem);
  margin: 0 auto;
  position: relative;
  padding-bottom: clamp(1.5rem, -0.5rem + 10vw, 2rem);
  margin-bottom: clamp(1.7rem, -0.7rem + 12vw, 2.3rem);
}

.event_cont .point_inner h3::before {
  content: "";
  height: 1px;
  width: clamp(2.2rem, -0.2rem + 12vw, 2.8rem);
  background: var(--lgt-gr-color);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.event_cont .point_inner li {
  position: relative;
  padding-left: 2rem;
  font-size: clamp(1.2rem, 6vw, 1.5rem);
  line-height: clamp(2rem, 10vw, 2.5rem);
  font-weight: 500;
}

.event_cont .point_inner li::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 12px;
  left: 0;
  background: var(--lgt-gr-color);
  border-radius: 100px;
}

.event_cont .point_inner li:not(:last-of-type) {
  margin-bottom: clamp(1.8rem, 1.686rem + 0.57vw, 2.2rem);
}

.event_cont .access_area {
  padding-bottom: clamp(6.4rem, 5.943rem + 2.29vw, 8rem);
}

.event_cont .access_inner {
  width: 80%;
  padding: 0 11% clamp(2rem, 1.8rem + 1vw, 2.7rem);
  margin: 0 auto;
}

.event_cont .access_area h3 {
  position: relative;
  left: -5%;
  width: clamp(6.7rem, 6.243rem + 2.29vw, 8.3rem);
  margin-bottom: clamp(1.1rem, 1.043rem + 0.29vw, 1.3rem);
}

.event_cont .access_area p {
  font-size: clamp(1.4rem, 1.3rem + 0.5vw, 1.75rem);
  line-height: clamp(2.4rem, 2.229rem + 0.86vw, 3rem);
}

.event_cont .access_area iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 25 / 16;
}

.event_cont .access_area a {
  text-align: center;
  display: block;
  width: max-content;
  border-bottom: 1px solid var(--gr-color);
  padding-bottom: 0.5rem;
  margin: clamp(1.1rem, 1.043rem + 0.29vw, 1.3rem) auto 0;
}

.event_cont .deco-1 {
  width: clamp(14.1rem, -0.3rem + 72vw, 17.7rem);
}

.event_cont .deco-2 {
  width: clamp(9.2rem, 46vw, 11.5rem);
}

.event_cont .deco-3 {
  width: clamp(7rem, 0.2rem + 34vw, 8.7rem);
  top: 7%;
  right: 4%;
}

@media only screen and (min-width: 1023px) and (max-width: 768px) {}

@media (min-width: 1024px) {}

/* ---------------------------------------------------------- */
/* About */
.about {
  color: var(--wh-color);
  background: var(--bk-color);
}

.about .ttl_area {
  min-height: 568px;
  aspect-ratio: 40 / 71;
  width: 100%;
  height: auto;
}

.about .ttl_area .ph {
  width: clamp(11.2rem, 10.4rem + 4vw, 14rem);
  margin-right: 0.6rem;
}

.about .ttl_area .ttl {
  justify-content: center;
  margin-bottom: clamp(2.8rem, 0.4rem + 12vw, 3.4rem);
}

.about .ttl_area .ttl h2 .en.large {
  font-size: clamp(2.8rem, 14vw, 3.5rem) !important;
  line-height: clamp(3.5rem, 0.3rem + 16vw, 4.3rem);
}

.about .ttl_area p {
  line-height: clamp(3.7rem, 3.443rem + 1.29vw, 4.6rem);
}

.about .ttl_area.clip_parallax .clip_parallax_bg {
  background: url(../img/about_img_01.webp) center / cover no-repeat;
}

.about .ttl_area,
.about .list_item {
  min-height: 100vh;
  min-height: 100svh;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.about .list_item {
  text-align: left;
}

.about .list_item:first-of-type.clip_parallax .clip_parallax_bg {
  background: url(../img/about_img_02.webp) center / cover no-repeat;
}

.about .list_item:nth-of-type(2).clip_parallax .clip_parallax_bg {
  background: url(../img/about_img_03.webp) center / cover no-repeat;
}

.about .list_item:last-of-type.clip_parallax .clip_parallax_bg {
  background: url(../img/about_img_04.webp) center / cover no-repeat;
}

.about .list_item h3 {
  margin: 0 auto clamp(4.3rem, 0.3rem + 20vw, 5.3rem);
  font-size: clamp(1.5rem, -0.1rem + 8vw, 1.9rem);
  letter-spacing: clamp(0.6rem, 0.2rem + 2vw, 0.7rem);
  line-height: clamp(4rem, 2rem + 10vw, 4.5rem);
}

.about .list_item p {
  width: max(271px, 68%);
  margin: 0 auto;
  line-height: clamp(3.1rem, -0.1rem + 16vw, 3.9rem);
}

@media only screen and (min-width: 1023px) and (max-width: 768px) {
  .about .clip_parallax .clip_parallax_bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    aspect-ratio: 400 / 701;
    height: 701px;
    width: 400px;
  }

  .about .ttl_area,
  .about .list_item {
    min-height: 710px;
  }
}

@media (min-width: 1024px) {
  .about .clip_parallax .clip_parallax_bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    aspect-ratio: 400 / 701;
    height: 701px;
    width: 400px;
  }

  .about .ttl_area,
  .about .list_item {
    min-height: 710px;
  }
}

/* ---------------------------------------------------------- */
/* About
.about {
  color: var(--wh-color);
  background: var(--bk-color);
  padding: clamp(16.4rem, 15.229rem + 5.86vw, 20.5rem) 0 clamp(14.1rem, 13.1rem + 5vw, 17.6rem);
}

.about.clip_mask::before {
  background: var(--gr-color);
}

.about .ttl_area {
  margin-bottom: clamp(15.4rem, 14.314rem + 5.43vw, 19.2rem);
}

.about .ttl_area .ph {
  width: clamp(11.2rem, 10.4rem + 4vw, 14rem);
  margin-right: 0.6rem;
}

.about .ttl_area .ttl {
  justify-content: center;
  margin-bottom: clamp(5.1rem, 4.757rem + 1.71vw, 6.3rem);
}

.about .ttl_area p {
  font-size: clamp(1.4rem, 1.286rem + 0.57vw, 1.8rem);
  line-height: clamp(3.7rem, 3.443rem + 1.29vw, 4.6rem);
}

.about ul {
  width: 86%;
  margin: 0 auto;
}

.about li {
  align-items: flex-start;
}

.about li:not(:last-of-type) {
  margin-bottom: clamp(7.8rem, 6.886rem + 4.57vw, 11rem);
}

.about li:nth-of-type(even) {
  flex-direction: row-reverse;
}

.about li h3 {
  width: clamp(3.1rem, 2.871rem + 1.14vw, 3.9rem);
}

.about li:nth-of-type(odd) h3 {
  margin-right: clamp(2.8rem, 2.6rem + 1vw, 3.5rem);
}

.about li:nth-of-type(even) h3 {
  margin-left: clamp(2.8rem, 2.6rem + 1vw, 3.5rem);
}

.about li p {
  width: clamp(19.1rem, 17.729rem + 6.86vw, 23.9rem);
  font-size: clamp(1.4rem, 1.3rem + 0.5vw, 1.75rem);
  line-height: clamp(2.8rem, 2.6rem + 1vw, 3.5rem);
  text-align: justify;
  flex: 1;
}

.about.clip_parallax .clip_parallax_bg {
  background: url(../img/about_img_01.webp) center / cover no-repeat;
}

@media only screen and (min-width: 1023px) and (max-width: 768px) {
  .about.clip_parallax .clip_parallax_bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    aspect-ratio: 400 / 701;
    height: 701px;
    width: 400px;
  }
}

@media (min-width: 1024px) {
  .about.clip_parallax .clip_parallax_bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    aspect-ratio: 400 / 701;
    height: 701px;
    width: 400px;
  }
}*/

/* ---------------------------------------------------------- */
/* Owners */
.owners {
  color: var(--lgt-gr-color);
  background: var(--gr-color);
  padding: clamp(9.9rem, 9.214rem + 3.43vw, 12.3rem) 0 clamp(6.6rem, 0.2rem + 32vw, 8.2rem);
}

.owners.clip_mask::before,
.owners.clip_mask::after {
  background: var(--lgt-gr-color);
}

.owners .inner {
  z-index: 3;
}

.owners .deco-1 {
  margin: clamp(0.8rem, 4vw, 1rem) 0 clamp(2.2rem, -0.2rem + 12vw, 2.8rem);
  width: clamp(11.2rem, 10.4rem + 4vw, 14rem);
  float: left;
}

.owners .owner01 {
  margin-bottom: clamp(7rem, 6.514rem + 2.43vw, 8.7rem);
}

.owners .owner02 {
  margin-bottom: 0.5rem;
}

.owners .owner_cont .bg_area {
  padding: clamp(2.3rem, 2.129rem + 0.86vw, 2.9rem) 0 0;
}

.owners .owner_cont .bg_area::before {
  content: "";
  background: var(--wh-color);
  width: 100%;
  height: calc(100% - 2.5rem);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
}

.owners .owner_cont .ttl_area {
  padding: 0 9% clamp(2.3rem, 2.129rem + 0.86vw, 2.9rem);
  margin-bottom: 0;
}

.owners .owner_cont .ttl_area h2 {
  position: absolute;
  top: -6rem;
  right: 6%;
}

.owners .owner_cont .ttl_area p {
  letter-spacing: 0.15rem;
  font-size: clamp(1.2rem, 6vw, 1.5rem);
  line-height: clamp(2rem, 1.857rem + 0.71vw, 2.5rem);
  color: var(--gr-color);
}

.owners .owner-swiper {
  /* padding-bottom: clamp(5.4rem, 4.914rem + 2.43vw, 7.1rem); */
  padding-bottom: 7rem;
}

.owners .txt_area {
  margin-top: clamp(3.2rem, 3rem + 1vw, 3.9rem);
}

.owners .deco-2 {
  width: clamp(8.3rem, 7.7rem + 3vw, 10.4rem);
  float: right;
}

@media only screen and (min-width: 1023px) and (max-width: 768px) {}

@media (min-width: 1024px) {}

/* ---------------------------------------------------------- */
/* Quality */
.quality {
  color: var(--wh-color);
  background: var(--bk-color);
  padding: clamp(21.4rem, 19.886rem + 7.57vw, 26.7rem) 0 clamp(9.2rem, 8.543rem + 3.29vw, 11.5rem);
}

.quality .ttl_area {
  margin-bottom: clamp(18rem, 16.771rem + 6.14vw, 22.3rem);
}

.quality .ttl_area h2 {
  font-weight: 400;
}

.quality .txt_area {
  margin-bottom: clamp(3.5rem, 3.243rem + 1.29vw, 4.4rem);
}

.quality .txt_area p {
  line-height: clamp(3rem, 2.771rem + 1.14vw, 3.8rem);
}

.quality li {
  align-items: flex-start;
  border: 1px solid var(--wh-color);
  padding: clamp(1.6rem, 1.486rem + 0.57vw, 2rem) 5%;
  border-radius: clamp(1.5rem, 1.386rem + 0.57vw, 1.9rem);
  letter-spacing: 0.3rem;
}

.quality li:not(:last-of-type) {
  margin-bottom: clamp(1.2rem, 1.114rem + 0.43vw, 1.5rem);
}

.quality li:nth-of-type(even) {
  flex-direction: row-reverse;
}

.quality.clip_parallax .clip_parallax_bg {
  background: url(../img/quality_img_01.webp) center / cover no-repeat;
}

.quality .award_area {
  background: var(--wh-color);
  color: var(--bk-color);
  padding: clamp(2.6rem, -0.2rem + 14vw, 3.3rem) 9% clamp(4.3rem, -0.1rem + 22vw, 5.4rem);
  width: max(360px, 90%);
  margin: clamp(5rem, -0.2rem + 26vw, 6.3rem) auto 0;
}

.quality .award_area h4 {
  font-size: clamp(1.5rem, -0.1rem + 8vw, 1.9rem);
  margin-top: clamp(0.25rem, 0.05rem + 1vw, 0.3rem);
}

.quality .award_area .main_ph {
  margin: clamp(2.1rem, -0.3rem + 12vw, 2.7rem) auto clamp(3rem, 15vw, 3.75rem);
}

@media only screen and (min-width: 1023px) and (max-width: 768px) {
  .quality.clip_parallax .clip_parallax_bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    aspect-ratio: 400 / 701;
    height: 701px;
    width: 400px;
  }
}

@media (min-width: 1024px) {
  .quality.clip_parallax .clip_parallax_bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    aspect-ratio: 400 / 701;
    height: 701px;
    width: 400px;
  }
}

/* ---------------------------------------------------------- */
/* Contact */
.contact {
  padding: clamp(5.2rem, 4.829rem + 1.86vw, 6.5rem) 0 clamp(7rem, 6.486rem + 2.57vw, 8.8rem);
  background: var(--wh-color);
  color: var(--gr-color);
}

.contact .ttl_area h2 {
  max-width: max-content;
  margin: 0 auto;
}

.contact .ttl_area h2 span {
  display: block;
}

/* .contact .ttl_area h2 .small {
  font-size: clamp(1.4rem, 1.314rem + 0.43vw, 1.7rem);
  letter-spacing: 0.2rem;
  line-height: clamp(2.5rem, 2.357rem + 0.71vw, 3rem);
} */

.contact .ttl_area h2 .en {
  font-size: clamp(3.1rem, -0.1rem + 16vw, 3.9rem);
  line-height: clamp(3.7rem, -0.3rem + 20vw, 4.7rem);
  margin-bottom: clamp(0.9rem, 0.1rem + 4vw, 1.1rem);
}

.contact .ttl_area h2 .ja {
  font-size: clamp(1.4rem, 7vw, 1.75rem);
  line-height: clamp(2.5rem, 0.1rem + 12vw, 3.1rem);
  letter-spacing: 0.2rem;
}

.contact .ttl_area .present {
  width: 90%;
  margin: 1rem auto 2.5rem;
}

.contact .tel_area {
  width: 88%;
  margin: clamp(2.5rem, 0.1rem + 12vw, 3.1rem) auto clamp(4.3rem, 0.3rem + 20vw, 5.3rem);
  background: var(--gr-color);
  padding: clamp(1.8rem, 1rem + 4vw, 2rem) 2%;
  border-radius: clamp(0.5rem, 0.1rem + 2vw, 0.6rem);
  color: var(--wh-color);
}

.contact .tel_area p span {
  display: block;
}

.contact .tel_area p {
  font-size: clamp(1.5rem, 1.386rem + 0.57vw, 1.9rem);
  line-height: normal;
}

.contact .tel_area p .large {
  font-size: clamp(2.2rem, 0.2rem + 10vw, 2.7rem);
}

.contact .tel_area p .small {
  font-size: clamp(1.3rem, 1.214rem + 0.43vw, 1.6rem);
}

.contact-list {
  padding: clamp(5.7rem, 5.3rem + 2vw, 7.1rem) 5%;
}

.contact .contact-list-01 {
  padding: 0;
}

.contact .contact-list-02 {
  background: var(--lgt-gr-color);
  padding: 0 0 clamp(6rem, 30vw, 7.5rem);
}

.contact .index {
  font-size: clamp(1.5rem, 1.386rem + 0.57vw, 1.9rem);
  margin-bottom: clamp(1.4rem, 1.314rem + 0.43vw, 1.7rem);
  letter-spacing: 0.2rem;
}

.contact .contact-list-01 .event_cont {
  padding: clamp(6rem, 5.571rem + 2.14vw, 7.5rem) 0 clamp(4rem, 3.714rem + 1.43vw, 5rem);
}

.contact .contact-list-01 .event_cont h3,
.contact .contact-list-01 .event_cont p {
  max-width: max-content;
  width: 100%;
  margin: 0 auto;
}

.contact .contact-list-01 .event_cont h3 {
  margin-bottom: 0.8rem;
}

.contact .contact-list-01 .event_cont .index_area span {
  display: block;
  max-width: max-content;
  margin: 0 auto;
}

.contact .contact-list-01 .event_cont h3 .en {
  font-size: clamp(2.3rem, 2.129rem + 0.86vw, 2.9rem);
  margin-bottom: 0.5rem;
}

.contact .contact-list-01 .event_cont h3 .ja {
  font-size: clamp(1.2rem, 1.114rem + 0.43vw, 1.5rem);
  letter-spacing: 0.1rem;
}

.contact .contact-list-01 .event_cont p {
  max-width: max-content;
  margin: 0 auto;
  font-size: clamp(1.2rem, 1.114rem + 0.43vw, 1.5rem);
  line-height: clamp(2.2rem, 2.086rem + 0.57vw, 2.6rem);
  letter-spacing: 0.1rem;
}

.contact .contact-list-01 .ph {
  margin-bottom: clamp(2.8rem, 2.6rem + 1vw, 3.5rem);
}

.contact .contact-list-02 .event_cont {
  padding-bottom: clamp(7rem, -1rem + 40vw, 9rem);
}

.contact .contact-list-02 .event_cont.clip_mask::after {
  display: none;
}

.contact .contact-list-03 .flex_box {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

label+.contact-list {
  padding: 5.2rem 0 2rem;
}

/* form#mail_form, dl, dt, dd */
form#mail_form * {
  box-sizing: border-box;
}

form#mail_form {
  width: 100%;
  font-optical-sizing: auto;
  font-style: normal;
}

form#mail_form dl {
  width: 100%;
  margin: 0 auto 2.5rem;
}

.contact form#mail_form .contact-list-02 dl {
  width: 90%;
}

form#mail_form .contact-list dl:last-of-type {
  margin-bottom: 0;
}

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 {
  width: 100%;
  letter-spacing: 0.18rem;
  margin-bottom: 1rem;
}

form#mail_form dl dd {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

form#mail_form dl.post dd {
  display: flex;
  justify-content: space-between;
}

form#mail_form dl.post dd input {
  width: 66%;
}

form#mail_form dl.post dd input {
  width: 66%;
}

form#mail_form dl.post dd .auto {
  width: 30%;
  background: var(--gr-color);
  color: var(--wh-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.3rem, 1.214rem + 0.43vw, 1.6rem);
  letter-spacing: 0.2rem;
}

form#mail_form dl dd.square-check-button {
  background: transparent;
}

form#mail_form dl dd.square-check-button ul {
  margin-top: 2rem;
}

form#mail_form .contact-list-01 dl dd {
  background: transparent;
}

form#mail_form dl dd.calendar::before {
  content: "";
  background: url(../img/icon_calendar_01.svg) center / cover no-repeat;
  width: 1.7rem;
  height: 1.7rem;
  position: absolute;
  z-index: 2;
  right: 3%;
  top: 1.5rem;
  margin: 0;
}

form#mail_form dl dd .pull-down {
  width: 100%;
}

form#mail_form dl dd .pull-down::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--gr-color);
  line-height: 1;
  width: 0.9rem;
  height: 0.9rem;
  border: 2px 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: 2.3rem;
  margin: 0;
}

form#mail_form dl .txt {
  display: block;
  font-weight: 300;
}

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-color);
  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 !important;
  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-color);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load-circle 1s linear infinite;
  animation: load-circle 1s 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,
form#mail_form select,
form#mail_form textarea {
  color: var(--gr-color);
}

form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"] {
  width: 100%;
  padding: 1.5rem 3%;
  border: 1px solid var(--gr-color);
  background: transparent;
  -webkit-appearance: none;
  letter-spacing: 0.15rem;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

form#mail_form input[type="radio"],
form#mail_form input[type="checkbox"] {
  margin: 0 1rem 0 0;
}

form#mail_form select {
  padding: 1.5rem 3%;
  border: 1px solid var(--gr-color);
  background: transparent;
  line-height: normal;
  letter-spacing: 0.15rem;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

form#mail_form textarea {
  display: block;
  width: 100%;
  height: 175px;
  padding: 1.5rem 3%;
  resize: vertical;
  border: 1px solid var(--gr-color);
  background: transparent;
  -webkit-appearance: none;
  letter-spacing: 0.15rem;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* ul, li */
form#mail_form ul {
  list-style-type: none;
  width: 100%;
  flex-wrap: wrap;
}

form#mail_form ul li {
  width: 100%;
}

form#mail_form ul li.col2,
form#mail_form dl.col2 {
  width: 48%;
  margin: 0 0 2.5rem;
}

/* カスタマイズ */
form#mail_form ul li label {
  cursor: pointer;
}

form#mail_form ul li label input {
  display: none;
  /* デフォルトのinputは非表示にする */
}

form#mail_form .rectangle-check-button ul li label span {
  font-size: clamp(1.2rem, 1.114rem + 0.43vw, 1.5rem);
  line-height: normal;
  letter-spacing: 0;
  border: 1px solid var(--wh-color);
  background: transparent;
  padding: clamp(1.5rem, 1.414rem + 0.43vw, 1.8rem) 7%;
  text-align: center;
  display: block;
  transition: 0.3s;
  position: relative;
  max-width: max-content;
  width: 90%;
  margin: 0 auto;
}

form#mail_form .contact-list-03 .rectangle-check-button ul li label span {
  max-width: 100%;
  width: 100%;
  border-color: var(--gr-color);
}

form#mail_form .rectangle-check-button ul li label input:checked+span {
  color: var(--bk-color);
  background: var(--wh-color);
  border: 1px solid var(--gr-color);
  transition: 0.3s;
}

form#mail_form .contact-list-03 .rectangle-check-button ul li label input:checked+span {
  color: var(--wh-color);
  background: var(--gr-color);
  border-color: var(--gr-color);
}

/* input design */
form#mail_form input[name="mail_address"],
form#mail_form input[name="mail_address_confirm"] {
  width: 100%;
}

/* button */
form#mail_form input[type="button"] {
  width: clamp(17rem, 15.8rem + 6vw, 21.2rem);
  padding: clamp(0.7rem, 0.471rem + 1.14vw, 1.5rem) 7%;
  background: var(--gr-color);
  color: var(--wh-color);
  font-size: clamp(1.5rem, 1.386rem + 0.57vw, 1.9rem);
  -webkit-appearance: none;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.5s;
  font-weight: 700;
  letter-spacing: 0.3rem;
}

form#mail_form input[type="button"]:hover {
  background: var(--bk-color);
  color: var(--wh-color);
}

form#mail_form .contact-list-01 dl dd span.error_blank,
form#mail_form .contact-list-01 dl dd span.error_format,
form#mail_form .contact-list-01 dl dd span.error_match {
  margin-top: 0 !important;
}

@media (max-width: 767px) {
  form#mail_form ul li label span {
    letter-spacing: 0.2rem;
  }

  form#mail_form ul li:not(:first-of-type) span {
    margin-top: 0;
  }

  form#mail_form input[type="button"] {
    padding: 1.6rem 3.3rem;
  }

  form#mail_form ul li.col2 {
    width: 100%;
  }

  form#mail_form dl dd.square-check-button ul li.col2:last-of-type {
    margin-bottom: 0;
  }

  form#mail_form .square-check-button ul li {
    margin-bottom: 1.6rem;
  }

  form#mail_form .square-check-button ul li label span {
    padding-left: 3.3rem;
  }

  form#mail_form .square-check-button ul li label span::after {
    width: 20px;
    height: 20px;
  }

  form#mail_form .square-check-button ul li label span::before {
    width: 9px;
    height: 6px;
    top: 12.5px;
    left: 5.5px;
  }

  form#mail_form dl dd .pull-down::before {
    top: 2rem;
  }
}

/* calendar */
.ui-widget-header {
  background: var(--bk-color) !important;
  color: var(--wh-color) !important;
  display: flex;
  text-align: center;
  justify-content: center;
  position: relative;
  padding: 1rem 0.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-color) !important;
  background: var(--wh-color);
  color: var(--bk-color);
  width: auto;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.ui-datepicker-calendar th {
  padding: 1rem !important;
}

.ui-datepicker td span,
.ui-datepicker td a {
  padding: 1rem !important;
  display: inline-block;
  line-height: normal;
}

.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-color) !important;
  border: 1px solid var(--bk-color) !important;
  background: var(--bk-color) !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/icon_pref-off.svg") !important;
}

.ui-datepicker-prev:hover {
  background-image: url("../img/icon_pref-on.svg") !important;
}

.ui-datepicker-next {
  background-image: url("../img/icon_next-off.svg") !important;
}

.ui-datepicker-next:hover {
  background-image: url("../img/icon_next-on.svg") !important;
}

.ui-state-disabled {
  opacity: 0.4;
}

/* ---------------------------------------------------------- */
/* Footer */
footer {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--bk-color);
  color: var(--wh-color);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

footer h2 {
  max-width: max-content;
  margin: 0 auto clamp(2rem, 1.857rem + 0.71vw, 2.5rem);
}

footer p span {
  display: block;
}

footer p .en {
  font-size: clamp(1.4rem, 1.3rem + 0.5vw, 1.75rem);
  line-height: clamp(2.4rem, 2.229rem + 0.86vw, 3rem);
  margin-bottom: clamp(1rem, 0.857rem + 0.71vw, 1.5rem);
  letter-spacing: 0.05rem;
}

footer p .ja {
  font-size: clamp(1.1rem, 1.014rem + 0.43vw, 1.4rem);
  line-height: clamp(2.5rem, 2.329rem + 0.86vw, 3.1rem);
  letter-spacing: 0.2rem;
}

footer small {
  width: 100%;
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
}

@media only screen and (min-width: 1023px) and (max-width: 768px) {
  footer {
    aspect-ratio: 40 / 71;
    min-height: auto;
    height: 100%;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  footer {
    aspect-ratio: 40 / 71;
    min-height: auto;
    height: 100%;
    width: 100%;
  }
}

/* ---------------------------------------------------------- */
/* Page-Thanks */
.page-thanks {
  background: var(--wh-color);
  color: var(--bk-color);
}

.page-thanks .main-cont {
  padding: clamp(9rem, 1.857rem + 35.71vw, 34rem) 0 clamp(11rem, 5.114rem + 29.43vw, 31.6rem);
}

.page-thanks .ttl_area {
  max-width: max-content;
  width: 100%;
  margin: 0 auto clamp(2rem, 1.571rem + 2.14vw, 3.5rem);
}

.page-thanks .ttl_area .ttl {
  font-size: clamp(1.5rem, 1.386rem + 0.57vw, 1.9rem);
  line-height: clamp(2.9rem, 2.7rem + 1vw, 3.6rem);
}

.page-thanks .txt_area {
  font-size: clamp(1.5rem, 1.443rem + 0.29vw, 1.7rem);
  line-height: clamp(3rem, 2.657rem + 1.71vw, 4.2rem);
}

.page-thanks .square-btn {
  margin-top: clamp(3rem, 2.714rem + 1.43vw, 4rem);
  max-width: 320px;
}