@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(--ylw-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: 1.7rem;
  line-height: 3rem;
}

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

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

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.light {
  font-weight: 300;
}

.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, 3.243rem + 1.29vw, 4.4rem);
  line-height: clamp(4rem, 3.714rem + 1.43vw, 5rem);
}

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

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

.deco {
  position: absolute;
}

.square-btn {
  max-width: 87%;
  width: 100%;
  margin: 0 auto;
}

.square-btn a {
  padding: clamp(1.6rem, 1.486rem + 0.57vw, 2rem) 5%;
  border: 1px solid var(--gr-color);
  background: var(--gr-color);
  color: var(--wh-color);
  font-size: clamp(1.3rem, 1.214rem + 0.43vw, 1.6rem);
  line-height: normal;
  -webkit-appearance: none;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  border-radius: 100px;
  z-index: 2;
}

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

.square-btn a::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  padding: clamp(1.6rem, 1.486rem + 0.57vw, 2rem) 5%;
  border: 1px solid var(--gr-color);
  background: var(--ylw-color);
  margin: 0 auto;
  transition: 0.3s;
  width: 100%;
  border-radius: 100px;
  z-index: -1;
  position: absolute;
  right: -7px;
  bottom: -7px;
}

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

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

.bg-wh .square-btn a::before {
  background: var(--wht-color);
}

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

.bg-gy .square-btn a {
  border: 1px solid var(--gy-color);
  background: var(--ylw-color);
  color: var(--gy-color);
}

.bg-gy .square-btn a:hover {
  border-color: var(--ylw-color);
  background: var(--gy-color);
  color: var(--ylw-color);
}

.bg-gy .square-btn a::before {
  border: 1px solid var(--ylw-color);
  background: var(--gy-color);
}

.bg-gy .square-btn a:hover::before {
  border: 1px solid var(--ylw-color);
  background: var(--ylw-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: 0 !important;
}

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

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

.swiper-pagination-fraction {
  position: absolute;
  right: 4%;
  bottom: 4.5rem;
  font-size: 1.2rem;
  line-height: normal;
  letter-spacing: 0.2rem;
  font-weight: bold;
  left: auto;
  top: auto;
  width: max-content;
}

.spnone {
  display: none !important;
}

.pcnone {
  display: block !important;
}

.tablet {
  display: none !important;
}

@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/image.jpg"); */
  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: -1;
  bottom: 0;
  left: 0;
}

/* パララックス */
.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(--ylw-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(180px, 66%);
  }

  .lft_cont_area h2 {
    font-size: 3.4rem;
    line-height: 4.1rem;
    margin: 2.8rem auto 1.2rem;
  }

  .lft_cont_area p {
    font-size: 1.4rem;
    line-height: 3rem;
  }

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

  .rgt_cont_area .menu_area {
    display: flex !important;
    align-items: space-between;
    justify-content: flex-start;
  }

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

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

  .rgt_cont_area .menu_list .list_item {
    margin-bottom: 1.75rem;
    font-size: 2.2rem;
    line-height: normal;
    max-width: 100%;
    color: var(--ylw-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;
  }
}

/* 線 */
.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(--ylw-color);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

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

/* ---------------------------------------------------------- */
/* Fixed */
#fixed {
  display: block;
  margin: 0 auto;
  position: fixed;
  bottom: 1%;
  right: 0;
  z-index: 9997;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  transform: translateX(100%);
  width: clamp(11rem, 6.029rem + 24.86vw, 28.4rem);
  height: auto;
  aspect-ratio: 284 / 225;
}

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

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

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

#fixed a:hover {
  background: url(../img/pc_link_img_02.webp) center / cover no-repeat;
  transition: 0.5s;
}

@media only screen and (min-width: 1023px) and (max-width: 768px) {
  #fixed {
    bottom: 5%;
  }
}

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

/* ---------------------------------------------------------- */
/* Hero */
.hero {
  /*min-height: 100vh;
  min-height: 100svh;
  height: 100vh;*/
  height: 100%;
  width: 100%;
  aspect-ratio: 40 / 71;
  background: url(../img/hero_img_01.webp) bottom / cover no-repeat;
}

.hero .inner {
  height: 100%;
  padding: clamp(4.3rem, 3.986rem + 1.57vw, 5.4rem) 0
    clamp(4.9rem, 4.586rem + 1.57vw, 6rem);
}

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

.hero h2 {
  width: clamp(13.6rem, 12.629rem + 4.86vw, 17rem);
  margin: 0 auto;
}

.hero h3 {
  font-size: clamp(3.1rem, 2.871rem + 1.14vw, 3.9rem);
  line-height: clamp(3.7rem, 3.414rem + 1.43vw, 4.7rem);
}

.hero p {
  font-size: clamp(1.3rem, 1.214rem + 0.43vw, 1.6rem);
  line-height: clamp(2.7rem, 2.5rem + 1vw, 3.4rem);
}

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

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

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

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

/* ---------------------------------------------------------- */
/* Event */
.event {
  color: var(--gr-color);
}

.event .bg-ylw {
  background: var(--ylw-color);
  padding: clamp(6.2rem, 5.743rem + 2.29vw, 7.8rem) 0
    clamp(10.2rem, 9.686rem + 2.57vw, 12rem);
}

.event .bg-ylw.clip_mask::before {
  background: var(--gy-color);
}

.event .bg-wh {
  background: var(--wh-color);
}

.event .bg-wh.clip_mask::before {
  background: var(--gr-color);
}

.event .bg-gy {
  background: var(--gy-color);
  color: var(--ylw-color);
  margin-bottom: -1px;
}

.event .bg-gy.clip_mask::before {
  background: var(--wh-color);
}

.event_cont.clip_mask::before {
  mask-image: url(../img/mask_img_01.svg);
  mask-position: 100% 0;
}

.event_cont {
  padding-bottom: clamp(7.9rem, 7.329rem + 2.86vw, 9.9rem);
}

.event01 {
  padding-top: clamp(6rem, 5.571rem + 2.14vw, 7.5rem);
}

.event02 {
  padding-top: clamp(2.6rem, 2.429rem + 0.86vw, 3.2rem);
}

.event03 {
  padding-top: clamp(6rem, 5.571rem + 2.14vw, 7.5rem);
}

.event .ttl_area h2 {
  margin: 0 auto clamp(3.9rem, 3.614rem + 1.43vw, 4.9rem);
}

.event .ttl_area .date {
  max-width: max-content;
  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 .ttl_area .date .slash {
  display: inline-block;
  height: clamp(3rem, 2.714rem + 1.43vw, 4rem);
  width: 1px;
  background: var(--gr-color);
  transform: rotate(25deg);
  margin: 0 1.5rem;
}

.event .ttl_area .date .small {
  font-size: clamp(1.9rem, 1.757rem + 0.71vw, 2.4rem);
  margin-left: 0.3rem;
}

.event .ttl_area .date .fuki {
  width: clamp(7.5rem, 6.929rem + 2.86vw, 9.5rem);
  position: absolute;
  position: absolute;
  left: -20%;
  top: -140%;
}

.event .ttl_area .anytime {
  width: max-content;
  margin: 0 auto;
  font-weight: 500;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.event .ttl_area .anytime::before {
  content: "";
  width: 100%;
  height: 9px;
  aspect-ratio: 29 / 1;
  background: url(../img/event_img_11.svg) center / cover no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.event .bg-gy .ttl_area .anytime::before {
  background: url(../img/event_img_12.svg) center / cover no-repeat;
}

.event .ttl_area .other {
  font-weight: 500;
}

.event .ttl_area .hyphen {
  display: inline-block;
  height: 1px;
  width: clamp(0.95rem, 0.879rem + 0.36vw, 1.2rem);
  background: var(--gr-color);
  margin: 0 0.5rem 0 1rem;
  vertical-align: super;
}

.event .txt_area {
  width: 90%;
  margin: clamp(2.5rem, 2.186rem + 1.57vw, 3.6rem) auto 0;
  padding: 12% 5% 8% 12%;
}

.event .txt_area::before,
.event .txt_area::after {
  content: "";
  background: var(--gr-color);
  position: absolute;
}

.event .bg-gy .txt_area::before,
.event .bg-gy .txt_area::after {
  background: var(--ylw-color);
}

.event .txt_area::before {
  height: calc(100% - 10px);
  width: 1px;
  bottom: 0;
  left: 0;
}

.event .txt_area::after {
  height: 1px;
  width: calc(100% - 10px);
  top: 0;
  right: 0;
}

.event .txt_area h3 {
  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 .txt_area p {
  font-size: clamp(1.4rem, 1.286rem + 0.57vw, 1.8rem);
  line-height: clamp(2.8rem, 2.6rem + 1vw, 3.5rem);
}

.event .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 .txt_area .deco {
  z-index: 2;
}

.event01 .txt_area .deco-1 {
  width: max(65px, 20%);
  right: -5%;
  top: -6%;
}

.event01 .deco-2 {
  width: max(136px, 43%);
  margin-left: 5%;
}

.event02 .txt_area .deco-1 {
  width: max(74px, 23%);
  right: 0;
  top: -11%;
}

.event02 .txt_area .deco-2 {
  width: max(35px, 11%);
  right: 0;
  top: 20%;
}

.event03 .deco-1 {
  width: max(102px, 32%);
  float: right;
  margin: -5% 8% 0 0;
}

.event .slide_area {
  padding: clamp(4.8rem, 4.457rem + 1.71vw, 6rem) 0
    clamp(4.5rem, 4.186rem + 1.57vw, 5.6rem);
}

.event01 .slide_area {
  padding-top: 0.5rem;
}

.event03 .slide_area {
  padding-top: clamp(2.8rem, 2.6rem + 1vw, 3.5rem);
}

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

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

.event .swiper-pagination-progressbar {
  width: 78% !important;
  top: auto !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 1.5px !important;
  margin: 0 auto;
  background: #aeaeae !important;
}

.event .bg-gy .swiper-pagination-progressbar {
  background: var(--wh-color) !important;
}

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

.event
  .bg-gy
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: #a5a5a5 !important;
}

.event .point_area {
  background: url(../img/bg_img_01.svg) center / cover no-repeat;
  padding: clamp(5.8rem, 5.371rem + 2.14vw, 7.3rem) 0;
  margin-bottom: clamp(4.6rem, 4.257rem + 1.71vw, 5.8rem);
}

.event #event02 .point_area,
.event #event03 .point_area {
  margin-top: clamp(4.6rem, 4.257rem + 1.71vw, 5.8rem);
}

.event .bg-gy .point_area {
  background-image: url(../img/bg_img_02.svg);
}

.event .point_inner {
  width: 80%;
  margin: 0 auto;
  background: var(--ylw-color);
  border-radius: 1.25rem;
  padding: clamp(3rem, 2.857rem + 0.71vw, 3.5rem) 0;
}

.event .bg-wh .point_inner {
  background: var(--wh-color);
}

.event .bg-gy .point_inner {
  background: var(--gy-color);
}

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

.event .point_inner h3 {
  width: clamp(5.9rem, 5.471rem + 2.14vw, 7.4rem);
  margin: 0 0 clamp(1rem, 0.943rem + 0.29vw, 1.2rem) -5%;
}

.event .point_inner li {
  position: relative;
  padding-left: 2rem;
  font-size: clamp(1.2rem, 1.114rem + 0.43vw, 1.5rem);
  line-height: clamp(2.2rem, 2.029rem + 0.86vw, 2.8rem);
  font-weight: 500;
}

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

.event .bg-gy .point_inner li::before {
  background: var(--ylw-color);
}

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

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

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

.event .bg-wh .access_inner {
  background: var(--wh-color);
}

.event .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 .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 .access_area iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 25 / 16;
}

.event .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 .bg-gy .access_area a {
  border-color: var(--ylw-color);
}

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

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

/* ---------------------------------------------------------- */
/* About */
.about {
  color: var(--ylw-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 .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 {
    background: url(../img/about_img_01.webp) center / cover no-repeat;
  } */

  .about.clip_parallax .clip_parallax_bg {
    /* display: none; */
    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 {
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    aspect-ratio: 400 / 701;
    height: 701px;
    width: 400px;
  }
}

/* ---------------------------------------------------------- */
/* Owners */
.owners {
  background: var(--pk-color);
  color: var(--gr-color);
  padding: clamp(9.9rem, 9.214rem + 3.43vw, 12.3rem) 0
    clamp(10.6rem, 9.829rem + 3.86vw, 13.3rem);
}

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

.owners.clip_mask::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  mask-repeat: no-repeat;
  mask-position: 0 100%;
  mask-size: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
}

.owners.clip_mask::before,
.owners.clip_mask::after {
  content: "";
  mask-image: url(../img/mask_img_01.svg);
  background: var(--gr-color);
}

.owners.clip_mask::before {
  mask-position: 100% 0;
}

.owners.clip_mask::after {
  mask-position: 0 100%;
  bottom: -1px;
}

.owners .ttl_area {
  padding-bottom: clamp(6rem, 5.429rem + 2.86vw, 8rem);
  margin-bottom: clamp(3.3rem, 3.071rem + 1.14vw, 4.1rem);
}

.owners .deco-1 {
  left: 0;
  bottom: 0;
  width: clamp(11.2rem, 10.4rem + 4vw, 14rem);
}

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

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

.owners .owner_cont .bg_area {
  /* background: var(--wh-color);
  border-radius: 19px; */
  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, 1.114rem + 0.43vw, 1.5rem);
  line-height: clamp(2rem, 1.857rem + 0.71vw, 2.5rem);
}

.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);
  font-size: clamp(1.4rem, 1.3rem + 0.5vw, 1.75rem);
  line-height: clamp(2.8rem, 2.6rem + 1vw, 3.5rem);
}

.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(--ylw-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 .txt_area {
  margin-bottom: clamp(3.5rem, 3.243rem + 1.29vw, 4.4rem);
}

.quality .txt_area p {
  font-size: clamp(1.4rem, 1.3rem + 0.5vw, 1.75rem);
  line-height: clamp(3rem, 2.771rem + 1.14vw, 3.8rem);
}

.quality li {
  align-items: flex-start;
  border: 1px solid var(--ylw-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;
  font-size: clamp(1.4rem, 1.3rem + 0.5vw, 1.75rem);
}

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

@media only screen and (min-width: 1023px) and (max-width: 768px) {
  /* .quality {
    background: url(../img/quality_img_01.webp) center / cover no-repeat;
  } */

  .quality.clip_parallax .clip_parallax_bg {
    /* display: none; */
    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(--lgt-gy-color);
  color: var(--gr-color);
}

.contact .bg-gy {
  color: var(--ylw-color);
}

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

.contact .ttl_area h2 .en {
  font-size: clamp(3.1rem, 2.871rem + 1.14vw, 3.9rem);
  line-height: clamp(3.7rem, 3.414rem + 1.43vw, 4.7rem);
  margin-bottom: clamp(0.9rem, 0.843rem + 0.29vw, 1.1rem);
}

.contact .ttl_area h2 .ja {
  font-size: clamp(1.4rem, 1.3rem + 0.5vw, 1.75rem);
  line-height: clamp(2.5rem, 2.329rem + 0.86vw, 3.1rem);
}

.contact .tel_area {
  width: 88%;
  margin: clamp(2.5rem, 2.329rem + 0.86vw, 3.1rem) auto 0;
  background: var(--gr-color);
  padding: clamp(1.2rem, 1.114rem + 0.43vw, 1.5rem) 5%;
  border-radius: clamp(2rem, 1.857rem + 0.71vw, 2.5rem);
  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.4rem, 2.229rem + 0.86vw, 3rem);
  letter-spacing: 0.3rem;
}

.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 .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.bg-gy {
  color: var(--ylw-color);
}

.contact .contact-list-01 .event01 {
  background: var(--ylw-color);
}

.contact .contact-list-01 .event02 {
  background: var(--wh-color);
}

.contact .contact-list-01 .event03 {
  background: #232323;
}

.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 .fuki {
  position: absolute;
  top: -3.5rem;
  left: -4rem;
  transform: rotate(-19deg);
  padding: 0 1.5rem;
  font-size: clamp(1.9rem, 1.786rem + 0.57vw, 2.3rem);
}

.contact .contact-list-01 .event_cont .fuki::before,
.contact .contact-list-01 .event_cont .fuki::after {
  content: "";
  position: absolute;
  top: 0;
  background: var(--gr-color);
  height: 100%;
  width: 1px;
}

.contact .contact-list-01 .event_cont.bg-gy .fuki::before,
.contact .contact-list-01 .event_cont.bg-gy .fuki::after {
  background: var(--ylw-color);
}

.contact .contact-list-01 .event_cont .fuki::before {
  left: 0;
  transform: rotate(-30deg);
}

.contact .contact-list-01 .event_cont .fuki::after {
  right: 0;
  transform: rotate(30deg);
}

.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 .event03 .ph {
  margin-bottom: clamp(2.5rem, 2.329rem + 0.86vw, 3.1rem);
}

.contact .contact-list-02 {
  background: var(--ylw-color);
}

.contact .contact-list-03 {
  background: var(--wh-color);
}

.contact .contact-list-04 {
  background: var(--gy-color);
}

.contact .contact-list-05 .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;
}

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%;
  font-size: 1.8rem;
  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 .bg-gy dl dd.calendar::before {
  background-image: url(../img/icon_calendar_02.svg);
}

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 .bg-gy dl dd .pull-down::before {
  color: var(--ylw-color);
}

form#mail_form dl .txt {
  display: block;
  font-size: 1.6rem;
  line-height: 2.2rem;
  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;
  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-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 .bg-gy input,
form#mail_form .bg-gy select,
form#mail_form .bg-gy textarea {
  color: var(--ylw-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;
  font-size: 1.5rem;
  line-height: normal;
  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;
  font-size: 1.5rem;
  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;
  font-size: 1.5rem;
  line-height: normal;
  letter-spacing: 0.15rem;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

form#mail_form .bg-gy input[type="text"],
form#mail_form .bg-gy input[type="email"],
form#mail_form .bg-gy input[type="tel"],
form#mail_form .bg-gy select,
form#mail_form .bg-gy textarea {
  border-color: var(--ylw-color);
}

/* 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(--gr-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-05 .rectangle-check-button ul li label span {
  max-width: 100%;
  width: 100%;
}

form#mail_form .rectangle-check-button ul li.bg-gy label span {
  border-color: var(--ylw-color);
}

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

form#mail_form .rectangle-check-button ul li.bg-gy label input:checked + span {
  color: var(--gy-color);
  background: var(--ylw-color);
  border-color: var(--ylw-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);
}

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

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

  form#mail_form dl dt,
  form#mail_form .square-check-button ul li label span {
    font-size: 1.5rem;
  }

  form#mail_form input[type="text"],
  form#mail_form input[type="email"],
  form#mail_form input[type="tel"],
  form#mail_form select,
  form#mail_form textarea {
    font-size: 1.3rem;
  }

  form#mail_form input[type="button"] {
    font-size: 1.4rem;
    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;
  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-color) !important;
  background: var(--wh-color);
  color: var(--bk-color);
  font-size: 1.3rem;
  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(--ylw-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;
}
