@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* ------------------------------------------ */
/* 共通：基本・レイアウト指定 */
* html body {
  background: url(null) fixed;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  color: var(--bw-clr);
  background: var(--ju-clr);
  font-size: 16px;
  line-height: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0;
  font-style: normal;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
}
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
:root {
  --ju-clr: #F5EED8;
  --yl-clr: #F9E178;
  --yl2-clr: #E2B755;
  --bw-clr: #9F654B;
  --gr-clr: #639774;
  --wh-clr: #FFF;
  --bk-clr: #000;
  --rd-clr: #D56E3F;
}
/* ------------------------------------------ */
/* Background */
.mask-bg {
  position: relative;
  z-index: 2;
}
.mask-bg::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("../img/mask_img_02.svg");
  mask-image: url("../img/mask_img_02.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 0 100%;
  mask-position: 0 100%;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: 0;
  background: var(--ju-clr);
}
/* ------------------------------------------ */
/* Img */
img {
  width: 100%;
}
/* ------------------------------------------ */
/* Link */
a {
  cursor: pointer;
  line-height: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}
@media (min-width: 751px) {
  /* 電話番号リンクをスマホのみ有効にする */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------------ */
/* Common layouts */
.wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
}
.inner {
  width: 90%;
  margin: 0 auto;
}
.base {
  width: 100%;
  height: auto;
  position: relative;
}
.flex-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.center {
  text-align: center;
}
.deco {
  position: absolute;
  z-index: -1;
}
/* ------------------------------------------ */
/* fontface */
/* NotoSansJP <weight>: Use a value from 100 to 900 */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.font-bold {
  font-weight: 700;
}
/* ------------------------------------------ */
/* ttl  txt */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}
.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;
  overflow: hidden;
}
/* ------------------------------------------ */
/* ローディング */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: var(--bw-clr);
  text-align: center;
  transition: 1s;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader {
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background: var(--ju-clr);
  border-radius: 100%;
  position: absolute;
  left: 45%;
  top: 46%;
  transform: translate(-50%, -50%);
  margin: auto;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0)
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
/* ------------------------------------------ */
/* アニメーション */
/* フェードイン */
.FadeIn {
  opacity: 0;
  transition-duration: .8s;
}
.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);
}
/* 下へ */
.InDw {
  opacity: 0;
  transform: translate(0, -60px);
  -webkit-transform: translate(0, -60px);
  transition: 1s;
}
.InDw.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.lft {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: .8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.StickerX.rgt {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  transition: .8s cubic-bezier(0.37, 0, 0.63, 1);
  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);
  transition-property: clip-path;
}
.StickerY.is-show {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
/* 線 */
.line-anim {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.line-anim::after {
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  background: var(--bw-clr);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
a.is-highlight-active .line-anim::after, a:hover .line-anim::after {
  width: 100%;
}
/* オープニングアニメーション */
.op-animation-comp section, .op-animation-comp footer {
  opacity: 0;
}
.op-animation-comp.is-show section, .op-animation-comp.is-show footer {
  transition-delay: 2.5s;
  transition-duration: 0.5s;
  opacity: 1;
}
/* 表示までの時間 */
.in01 {
  animation-delay: 1s !important;
  transition-delay: 1s !important;
}
.in02 {
  animation-delay: 1.3s !important;
  transition-delay: 1.3s !important;
}
.in03 {
  animation-delay: 1.6s !important;
  transition-delay: 1.6s !important;
}
.in04 {
  animation-delay: 1.9s !important;
  transition-delay: 1.9s !important;
}
/* ------------------------------------------ */
/* hero */
.hero {
  background: url("../img/hero_img_01.jpg")center / cover no-repeat;
  color: var(--wh-clr);
  width: 100%;
  height: 100%;
  aspect-ratio: 40 / 71;
  text-align: center;
}
.hero .inner {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  justify-content: center;
}
.hero .itsubo_logo {
  width: max(91px, 28%);
  position: absolute;
  top: 17px;
  left: 19px;
}
.hero .ttl-box .event_logo {
  width: max(270px, 84%);
}
.hero .ttl-box h1 {
  margin: 0 auto 30%;
}
.hero .ttl-box .day {
  width: max(281px, 88%);
}
/* ------------------------------------------ */
/* intro */
.intro {
  background: var(--gr-clr);
  color: var(--wh-clr);
  padding: 90px 0 132px;
  text-align: center;
}
.intro .event_logo {
  width: max(225px, 70%);
}
.intro h2 {
  font-size: 18px;
  line-height: 29px;
  letter-spacing: 1.8px;
  margin: 45px auto 35px;
  font-weight: 500;
}
.intro p {
  font-size: 18px;
  line-height: 29px;
  letter-spacing: 5.22px;
  font-weight: 500;
}
.intro p .deco {
  max-width: 53px;
}
.intro p .deco.deco-1 {
  right: 0;
  top: -15px;
}
.intro p .deco.deco-2 {
  left: 0;
  bottom: -30px;
}
/* ------------------------------------------ */
/* check */
.check {
  background: var(--ju-clr);
  color: var(--bk-clr);
  padding: 41px 0 0;
}
.check.mask-bg::before {
  background: var(--gr-clr);
}
.check .pic-1 {
  max-width: 103px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 114px;
  z-index: -1;
}
.check .check_main.ttl-box {
  background: var(--rd-clr);
  padding: 15px 24px 15px 20px;
  display: flex;
  border-radius: 0 100px 100px 0;
  width: max-content;
}
.check .check_main.ttl-box img {
  max-width: 121px;
}
.check .ttl {
  max-width: clamp(13rem, 3.857rem + 45.71vw, 21rem);
}
.check_item {
  padding: 23px 0;
  text-align: center;
}
.check_item .inner {
  width: 85%;
  position: relative;
  z-index: 2;
}
.check_item .ttl-box, .check_item .txt-box, .check_item .seminar-box {
  text-align: left;
}
.check_item .ttl-box .flag {
  width: 148px;
}
.check_item .ttl-box h2 {
  justify-content: flex-start;
  font-size: 15px;
  line-height: 25px;
  width: 260px;
  margin: 0;
  letter-spacing: 1.5px;
  color: var(--bw-clr);
  font-weight: 700;
}
.check_item .ttl-box .num {
  max-width: 42px;
  margin: 0 8% 0 0;
  position: relative;
  top: -5px;
}
.check_item .txt-box {
  margin: 16px auto 10px;
}
.check_item.seven .txt-box {
  margin-bottom: 30px;
}
.check_item .txt-box p {
  font-size: 12px;
  line-height: 23px;
}
.check_item .seminar-box {
  margin: 15px auto;
}
.check_item .seminar-item {
  z-index: 3;
}
.check_item .seminar-item:first-of-type {
  margin-bottom: 30px;
}
.check_item .seminar-item:last-of-type {
  margin-bottom: 15px;
}
.check_item .seminar-item h4 {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 22px;
}
.check_item .seminar-item h4::before {
  content: "";
  background: var(--rd-clr);
  display: inline-block;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 0;
  border-radius: 100px;
}
.check_item .seminar-item .txt {
  font-size: 11px;
  line-height: 20px;
}
.check_item .seminar-item .fuki {
  font-size: 12px;
  line-height: 15px;
  background: var(--yl-clr);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: 71px;
  height: auto;
  text-align: center;
  justify-content: center;
  position: absolute;
  right: 0;
  z-index: -1;
}
.check_item .seminar-item:first-of-type .fuki {
  top: -40px;
}
.check_item .seminar-item:last-of-type .fuki {
  top: -20px;
}
.check_item .att {
  font-size: 11px;
  line-height: 20px;
  font-weight: 300;
  text-align: justify;
  display: inline-block;
}
.check_item .btn {
  font-size: 12px;
  line-height: 23px;
  max-width: max-content;
  margin: 27px auto 0;
  background: var(--rd-clr);
  color: var(--wh-clr);
  padding: 10px 25px;
  display: block;
  border-radius: 100px;
  font-weight: 500;
}
.check_item.one {
  padding-bottom: 0;
  z-index: 2;
}
.check_item.two.mask-bg::before {
  background: var(--yl2-clr);
}
.check_item.two .txt-box p {
  width: 54%;
}
.check_item.two .txt-box .ph {
  width: 55%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10%;
  margin: auto 0;
  z-index: -1;
}
.check_item.two h3 {
  font-size: 13px;
  line-height: 25px;
  max-width: max-content;
  margin: 23px 0 0;
  background: var(--rd-clr);
  color: var(--wh-clr);
  padding: 5px 15px;
}
.check_item.two .att {
  text-decoration: underline;
}
.check_item.two .pic-2 {
  position: absolute;
  bottom: -96px;
  left: 0;
  max-width: 239px;
  width: 100%;
}
.check_item.three .ttl-box {
  margin-bottom: 27px;
}
.check_item .craft_ttl-box {
  text-align: left;
}
.check_item .craft_ttl-box h4 {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 22px;
}
.check_item .craft_ttl-box h4::before {
  content: "";
  background: url(../img/common_img_08.svg) center / cover no-repeat;
  display: inline-block;
  margin-right: 5px;
  width: 18px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 0;
}
.check_item .craft_ttl-box p {
  font-size: 12px;
  line-height: 23px;
  margin-bottom: 10px;
}
.check_item .craft_main {
  margin-bottom: 30px;
}
.check_item .craft_plan {
  margin-bottom: 43px;
}
.check_item .craft_plan_ttl-box {
  margin-bottom: 13px;
}
.check_item .craft_plan_ttl-box h4 {
  background: var(--rd-clr);
  color: var(--wh-clr);
  padding: 3px 10px;
  width: max-content;
  margin: 0 auto;
  font-size: 13px;
  letter-spacing: 1.3px;
}
.check_item .craft_plan_ttl-box p {
  margin-top: 7px;
  font-size: 11px;
  line-height: 20px;
}
.check_item .craft_plan_ttl-box .fuki {
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 15px;
  position: absolute;
  top: -24px;
  right: 0;
  z-index: -1;
  background: var(--yl-clr);
  border-radius: 50%;
  width: 73px;
  height: auto;
  aspect-ratio: 1 / 1;
}
.check_item .craft_plan .craft_item {
  margin-bottom: 22px;
  flex-wrap: nowrap;
}
.check_item .craft_plan .craft_item .ph {
  width: 50%;
}
.check_item .craft_plan .craft_item .txt {
  margin-left: 2%;
  flex: 1;
  width: 50%;
}
.check_item .craft_plan .craft_item.item-1 .txt {
  max-width: 105px;
}
.check_item .craft_plan .craft_item.item-2 .txt {
  max-width: 119px;
}
.check_item .craft_plan .craft_item.item-3 .txt {
  max-width: 107px;
}
.check_item .craft_plan .craft_item.item-4 .txt {
  max-width: 116px;
}
.check_item .craft_plan .craft_item.item-5 .txt {
  max-width: 119px;
}
.check_item.six p.small {
  font-size: 11px;
  line-height: 20px;
  text-align: justify;
  margin: 20px 0 15px;
}
.check_item.six {
  padding-bottom: 0;
}
.check_item.six .txt-box {
  margin-bottom: 25px;
}
.check_item.six .ph-2 {
  margin-bottom: -20%;
  width: 92%;
  position: relative;
  right: -23%;
}
.check_item.seven {
  padding: 0 0 75px;
}
.check_item.seven .ttl-box .fuki {
  background: var(--rd-clr);
  color: var(--wh-clr);
  width: 45px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  line-height: 23px;
}
.check_item.seven.mask-bg::before {
  background: var(--gr-clr);
}
.check_item.seven .price-box .txt {
  max-width: 178px;
}
.check_item.seven .price-box .txt p {
  background: var(--rd-clr);
  color: var(--wh-clr);
  padding: 3px 10px;
  width: max-content;
  margin: 0 0 24px 25%;
  font-size: 13px;
  letter-spacing: 1.3px;
  transform: scale(-1, 1);
}
.check_item.seven .price-box .ph {
  width: 70%;
  position: absolute;
  right: -20%;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.check_item.seven .pic-8 {
  width: 21%;
  right: 9%;
  position: absolute;
  z-index: 2;
}
.craft_castanet {
  flex-wrap: nowrap;
}
.craft_castanet .craft_ttl-box {
  max-width: 162px;
  width: 60%;
}
.craft_castanet .craft_ttl-box .fuki {
  background: var(--bw-clr);
  color: var(--wh-clr);
  width: 45px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -15px;
  right: 0;
}
.craft_castanet .ph {
  max-width: 107px;
  flex: 1;
}
.craft_castanet .pic {
  position: absolute;
}
.check_item.three {
  padding-top: 55px;
  z-index: 2;
}
.check_item.three .pic.pic-6 {
  max-width: 211px;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: -28px;
  z-index: -1;
}
.check_item.four {
  padding: 23px 0 0;
}
.check_item.four::before {
  transform: scale(-1, 1);
  background: var(--yl-clr);
}
.check_item.four .ph {
  max-width: 312px;
  width: 115%;
  margin-top: 10px;
}
.check_item.five {
  padding-bottom: 0;
}
.check_message {
  background: var(--yl2-clr);
  color: var(--wh-clr);
  padding: 45px 0 0;
  text-align: center;
}
.check_message .inner {
  max-width: 250px;
}
.check_message .ttl-box .ttl {
  max-width: 92px;
  margin-bottom: 20px;
}
.check_message .check_message_item {
  margin-bottom: 47px;
}
.check_message .check_message_item:last-of-type {
  margin-bottom: 11px;
}
.check_message .check_message_item:first-of-type .ttl {
  max-width: 106px;
}
.check_message .check_message_item:last-of-type .ttl {
  max-width: 52px;
}
.check_message .check_message_item .fuki {
  max-width: 59px;
  position: absolute;
  top: -5px;
  right: 0;
}
.check_message .item_ttl-box {
  margin-bottom: 10px;
}
.check_message .item_txt-box p {
  font-size: 12px;
  line-height: 23px;
  text-align: justify;
}
.check_message .att {
  font-size: 11px;
  line-height: 20px;
  text-align: justify;
  text-decoration: underline;
  font-weight: 300;
}
.check_message .ph-box {
  font-size: 11px;
  line-height: 20px;
  text-align: justify;
  text-decoration: underline;
  font-weight: 300;
  max-width: 175px;
  margin: 0 auto;
  position: relative;
  top: 30px;
  z-index: 3;
}
.check_message .ph-box .pic {
  max-width: 18px;
  position: absolute;
  top: 16px;
}
.check_message .ph-box .pic-3 {
  left: -9px;
}
.check_message .ph-box .pic-4 {
  right: -9px;
  transform: scale(-1, 1);
}
.check_message .pic-5 {
  position: absolute;
  z-index: 3;
  top: -127px;
  right: -33px;
  max-width: 158px;
  width: 100%;
}
/* ------------------------------------------ */
/* map */
.map {
  background: var(--gr-clr);
  color: var(--wh-clr);
  padding: 45px 0 65px;
}
.map .ttl-box {
  text-align: center;
  margin: 0 auto 26px;
}
.map .ttl-box h2 img {
  max-width: 52px;
  margin-bottom: 16px;
}
.map .ttl-box span {
  display: block;
}
.map .ttl-box .small {
  font-size: 14px;
  font-weight: 500;
}
.map .ttl-box .large {
  font-size: 18px;
  margin-top: 5px;
}
.map .img-box h3 {
  max-width: 145px;
  margin-bottom: -50px;
  left: -13%;
  position: relative;
  z-index: 2;
}
.map .img-box .pic {
  width: 100%;
}
.map .access-box {
  margin-top: 10px;
}
.map .access-box h3 {
  max-width: 145px;
  margin-bottom: -10px;
  position: relative;
  left: -13%;
  z-index: 2;
}
.map .access-box .access iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 8 / 7;
}
.map .access-box .access p {
  font-size: 12px;
  line-height: 20px;
  margin-top: 8px;
}
.map .access-box .access p .large {
  font-size: 14px;
  line-height: 25px;
  display: block;
  margin-bottom: 10px;
}
.map .access-box .access a {
  display: block;
  max-width: max-content;
  width: 100%;
  margin: -15px 0 0 auto;
  text-decoration: underline;
  font-size: 11px;
}
.map .access-box .ph {
  width: 115%;
  max-width: 115%;
  position: relative;
  left: -6%;
}
.map .pic-7 {
  max-width: 195px;
  position: absolute;
  bottom: -50px;
  left: -10%;
}

/* ------------------------------------------ */
/* end */
.end {
  background: url("../img/end_img_01.jpg")center bottom / cover no-repeat;
  min-height: 568px;
  width: 100%;
  height: 100%;
  aspect-ratio: 40 / 71;
}
.end.mask-bg::before {
  -webkit-mask-image: url(../img/mask_img_03.svg);
  mask-image: url(../img/mask_img_03.svg);
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  background: var(--gr-clr);
  bottom: auto;
  top: -1px;
}
.end .ttl-box {
  width: min(58px, 18%);
  margin: 0 auto;
  padding-top: 20%;
}
.end .ttl {
  max-width: 90px;
  margin: 0 auto;
}
/* ------------------------------------------ */
/* Contact */
#resv {
  background: var(--ju-clr);
  color: var(--bw-clr);
  padding: 102px 0 65px;
}
#resv #formBox {
  width: 90%;
  margin: auto;
  border: 2px solid var(--bw-clr);
  position: relative;
  text-align: center;
  padding-bottom: 12%;
}
#resv #formBox iframe {
  width: 90%;
  height: 760px;
  aspect-ratio: 3/9;
}
#resv .subttl {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 185px;
  width: 100%;
  font-size: 14px;
  top: -50px;
  font-weight: 500;
}
#resv .subttl::before, #resv .subttl::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: 0;
  background: url("../img/resv_img_01.svg")center / 100% no-repeat;
  width: 13px;
  height: 17px;
}
#resv .subttl::before {
  left: -5px;
}
#resv .subttl::after {
  right: -5px;
  transform: scale(-1, 1);
}
#resv .mainttl {
  text-align: center;
  max-width: 192px;
  width: 100%;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 15px;
  background: var(--ju-clr);
  font-size: 26px;
  letter-spacing: 2px;
}
#resv strong {
  display: block;
  color: var(--bw-clr);
  max-width: 650px;
  width: 90%;
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  text-align: justify;
  margin: 40px auto 35px;
}
#resv strong .ta-center {
  text-align: center;
  display: block;
  font-size: 14px;
}
#resv strong .left {
  text-align: left;
  display: block;
}
#resv strong .red {
  color: var(--rd-clr);
  border-bottom: 1px solid var(--rd-clr);
}
#resv #formBox .cancel-form {
  margin: 37px auto 0;
}
#resv #formBox .cancel-form .inBox p.read {
  font-size: 12px;
  line-height: 27px;
  font-weight: 500;
}
#resv #formBox .cancel-form .inBox .red-txt {
  color: var(--rd-clr);
  border-bottom: 1px solid var(--rd-clr);
}
/* アコーディオン全体 */
.accordion-area {
  list-style: none;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid var(--bw-clr);
}
/* アコーディオンタイトル */
.accordion-area .title {
  position: relative;
  /* +マークの位置基準とするためrelative指定 */
  cursor: pointer;
  transition: all .5s ease;
  text-align: center;
  font-size: 12px;
  padding: 5% 30px 5% 3%;
}
/* アイコンの＋と× */
.accordion-area .title::before, .accordion-area .title::after {
  position: absolute;
  content: '';
  width: 14px;
  height: 1px;
  background-color: var(--bw-clr);
}
.accordion-area .title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.accordion-area .title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
/* 　closeというクラスがついたら形状変化　 */
.accordion-area .title.close::before {
  transform: rotate(45deg);
}
.accordion-area .title.close::after {
  transform: rotate(-45deg);
}
/* アコーディオンで現れるエリア */
.accordion-area .box {
  display: none;
}
/* ------------------------------------------ */
/* Fixed */
#fixed {
  position: fixed;
  right: 0;
  bottom: 5%;
  z-index: 997;
  transition: 0.5s;
  transform: translateX(100%);
  width: 54px;
  height: 54px;
  aspect-ratio: 1 / 1;
  border-radius: 100px;
  background: var(--bk-clr);
  color: var(--wh-clr);
  font-size: 11px;
  font-weight: 500;
  line-height: 34.531px;
  text-align: center;
  justify-content: center;
}
#fixed.is-fixed {
  transform: translateX(0);
  right: 5%;
}
#fixed.is-hide {
  transform: translateX(100%);
  right: 0;
}
#fixed a {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
#fixed a:last-child {
  border-right: none;
}
#fixed p {
  position: relative;
  top: -2px;
}
#fixed .arw {
  width: 7px;
  height: 7px;
  border: 1px solid var(--wh-clr);
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transform-origin: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}
/* ------------------------------------------ */
/* Footer */
footer {
  padding: 23px 0 15px;
  background: var(--bk-clr);
  color: var(--wh-clr);
}
footer h5 {
  max-width: 154px;
  margin-bottom: 15px;
}
footer h6 {
  font-size: 13px;
}
footer p {
  font-size: 12px;
  line-height: normal;
  margin: 10px 0 30px;
}
footer small {
  font-size: 11px;
  display: block;
}
@media screen and (min-width: 480px) {
  /* スマートフォン横 */
  /* ------------------------------------------ */
  /* 共通 */
  .wrapper {
    max-width: 320px;
  }
}
@media screen and (min-width: 680px) {}
@media screen and (min-width: 768px) {
  /* タブレット縦 / スマートフォン横 */
}
@media screen and (min-width: 1025px) {
  /* デスクトップ/タブレット横 */
  /* ------------------------------------------ */
  /* 共通 */
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  /* ------------------------------------------ */
  /* Pc Menu */
  body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: url(../img/pc_fixed_img_01.jpg) center / cover no-repeat;
    background-attachment: fixed;
  }
  .pc_lft-cont {
    width: 50%;
    display: flex !important;
    align-content: space-between;
    justify-content: flex-start;
  }
  .pc_lft-cont .inner {
    width: 50%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    padding: 45px 43px 45px 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .pc_lft-cont h2 {
    width: min(170px, 15vw);
    position: absolute;
    top: 45px;
    left: 43px;
  }
  .pc_lft-cont .ttl {
    width: 100%;
    height: 100%;
    width: min(482px, 66%);
    aspect-ratio: 492 / 353;
    margin: 15% 0 0 43px;
  }
  .pc_rgt-cont {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .pc_menu-cont {
    flex: 1;
    display: flex !important;
    align-items: space-between;
    justify-content: flex-start;
  }
  .pc_menu-cont .inner {
    width: calc(50% - 320px);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: var(--wh-clr);
    padding: 45px 43px;
    height: max-content;
  }
  .pc_menu-cont .menu_area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: max-content;
    margin: 0 auto;
    background: var(--wh-clr);
    border-radius: 10px;
  }
  .pc_menu-cont .menu_list {
    padding: 65px 40px;
  }
  .pc_menu-cont .menu_list .list_item {
    margin-bottom: 31px;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 1px;
    max-width: 100%;
    color: var(--bk-color);
  }
  .pc_menu-cont .menu_list .list_item:last-of-type {
    margin-bottom: 0;
  }
  .pc_menu-cont .menu_list .list_item.one {
    max-width: 95px;
    width: 100%;
  }
  .pc_menu-cont .menu_list .list_item.two {
    max-width: 29px;
    width: 30%;
  }
  .pc_menu-cont .menu_list .list_item.three {
    max-width: 53px;
    width: 55%;
  }
  .pc_menu-cont .menu_list .list_item.four {
    max-width: 87px;
    width: 91%;
  }
}