@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300..700&family=Great+Vibes&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rampart+One&family=Zen+Old+Mincho:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");
@keyframes yurari {
  0% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes yurari_2deg {
  0% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}
@keyframes yurari_1deg {
  0% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
@keyframes yurari_10deg {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(-7deg);
  }
}
@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  40% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  80% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes passing-bar {
  0% {
    transform: scaleX(0) translateX(-100%);
  }
  50% {
    transform: scaleX(1) translateX(0);
  }
  51% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(101%);
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes mask-bg {
  0% {
    transform: translate(0, 101%);
  }
  40%, 60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: calc(100% - 20px);
    width: 100%;
    opacity: 1;
  }
}
@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: calc(100% - 20px);
    height: 100%;
    opacity: 1;
  }
}
p,
a,
li,
dt,
dd,
th,
td {
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  p,
  a,
  li,
  dt,
  dd,
  th,
  td {
    line-height: 1.8;
  }
}

.display_w600 {
  display: none;
}
@media screen and (max-width: 600px) {
  .display_w600 {
    display: block;
  }
}

.f_en {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.note {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .note {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.less_1300 {
  display: none;
}
@media screen and (max-width: 1300px) {
  .less_1300 {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .less_1300 {
    display: none;
  }
}

main.panelactive {
  display: none;
}

#mobile-nav {
  display: none;
}
#mobile-nav.panelactive {
  display: block;
}

.parallax-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  position: relative;
}
.parallax-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(37, 49, 60, 0.3);
  z-index: 1;
}

.parallax-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  filter: brightness(1.2) contrast(1.2);
  transition: filter 0.3s ease;
}

.para_wrap {
  position: relative;
}
.para_wrap::before {
  content: "";
  display: block;
  aspect-ratio: 3;
  background-color: #fff;
  width: 100%;
  height: auto;
  position: absolute;
  top: -3px;
  z-index: -1;
}

.para {
  width: 100%;
  aspect-ratio: 600/356;
  background: transparent;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .para {
    aspect-ratio: 2;
    background-attachment: unset;
  }
}
.para::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 0;
  top: 0;
}
.para._01 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #fff !important;
}
@media screen and (max-width: 1024px) {
  .para._01 {
    background-attachment: unset;
  }
}
.para._01::after {
  background-image: url(../img/wave_blue.png);
  background-repeat: repeat-x;
  background-size: 100%;
  background-position: center;
  transform: scale(1, -1);
}
.para._02 {
  background: url(../img/para_02.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 1024px) {
  .para._02 {
    background-attachment: unset;
  }
}
.para._02::after {
  content: "";
  display: block;
  aspect-ratio: 2000/44;
  background-image: url(../img/wave.png);
  background-repeat: repeat-x;
  background-size: 100%;
  background-position: center;
  background-position: top;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -3px;
  z-index: 3;
  transform: scale(1, -1);
}
.para._03 {
  background: url(../img/para_03.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 1024px) {
  .para._03 {
    background-attachment: unset;
    aspect-ratio: 1.5;
  }
}
.para_img {
  aspect-ratio: 3;
}
@media screen and (max-width: 1024px) {
  .para_img {
    aspect-ratio: 2;
  }
}

.bg_txt {
  color: var(--light_navy02);
  position: relative;
  z-index: 2;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 11.9791666667vw;
  text-transform: capitalize;
  position: absolute;
  top: -5.2083333333vw;
  opacity: 0;
  transform: translate(10%, 0);
  transition: 0.8s;
}
.bg_txt.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.title01 {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
  position: relative;
  transition: color 0ms 450ms;
  font-size: 3.6rem;
  color: var(--title);
  font-weight: 700;
  letter-spacing: 0.15em;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .title01 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .title01 {
    font-size: clamp(12px, 1.8rem, 1.8rem);
  }
}
.title01 .en {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  text-transform: capitalize;
  font-size: clamp(16px, 3.6458333333vw, 7rem);
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .title01 .en {
    font-size: clamp(12px, 6.8359375vw, 3.5rem);
  }
}
.title01 .ja {
  display: block;
  font-size: 2rem;
  text-align: center;
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .title01 .ja {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.title01::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: var(--gold);
  position: relative;
  z-index: 10;
  margin: auto;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .title01::after {
    height: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .title01::after {
    margin-top: 15px;
  }
}
.title02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .title02 {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .title02 {
    margin-bottom: 50px;
  }
}
.title02 .ja {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--white);
  font-size: clamp(16px, 2.0833333333vw, 4rem);
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .title02 .ja {
    font-size: clamp(12px, 3.90625vw, 2rem);
  }
}
.title02::before, .title02::after {
  content: "";
  display: block;
  aspect-ratio: 1969/76;
  -webkit-mask-image: url(../img/line01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/line01.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  width: 200px;
  height: auto;
  background-color: var(--gold);
}
@media screen and (max-width: 1024px) {
  .title02::before, .title02::after {
    width: 100px;
  }
}

.title03 {
  width: 350px;
  height: auto;
  aspect-ratio: 630/185;
  background-image: url(../img/title_deco01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: auto;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .title03 {
    width: 175px;
  }
}
@media screen and (max-width: 1024px) {
  .title03 {
    margin-bottom: 30px;
  }
}
.title03 .ja {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .title03 .ja {
    font-size: clamp(12px, 1.1rem, 1.1rem);
  }
}
@media screen and (max-width: 1024px) {
  .title03 .ja {
    bottom: 14px;
  }
}
.title04 {
  color: var(--txt);
  font-size: 2rem;
  font-weight: 600;
  width: 100%;
  padding: 10px 20px;
  margin-bottom: 40px;
  border-left: 10px solid var(--txt);
  border-bottom: solid 1px var(--txt);
}
@media screen and (max-width: 1024px) {
  .title04 {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .title04 {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .title04 {
    margin-bottom: 20px;
  }
}

.title05 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--title);
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title05 {
    font-size: clamp(12px, 2rem, 2rem);
  }
}
@media screen and (max-width: 1024px) {
  .title05 {
    margin-bottom: 30px;
  }
}

.title06 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 80px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title06 {
    margin-bottom: 40px;
  }
}
.title06 span {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--title);
  position: relative;
  z-index: 2;
  background-color: var(--white);
  padding: 0px 40px;
}
@media screen and (max-width: 1024px) {
  .title06 span {
    font-size: clamp(12px, 2rem, 2rem);
  }
}
@media screen and (max-width: 1024px) {
  .title06 span {
    padding: 0px 20px;
  }
}
.title06::before {
  content: none;
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--title);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .title06 {
    margin-bottom: 30px;
  }
}

.title07 {
  width: 100%;
  font-size: 2.4rem;
  font-weight: 700;
  background-color: var(--title);
  color: var(--white);
  text-align: center;
  padding: 15px 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .title07 {
    font-size: clamp(12px, 1.2rem, 1.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .title07 {
    padding: 7.5px 10px;
  }
}

.title08 {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0;
  border-left: 6px solid var(--orange);
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title08 {
    margin-bottom: 30px;
  }
}
.title08 .en {
  display: none;
}
.title08 .ja {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  margin-left: 0;
  margin-top: -14px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .title08 .ja {
    padding: 5px 15px;
  }
}
@media screen and (max-width: 1024px) {
  .title08 .ja {
    margin-top: -7px;
  }
}
.title08 .ja .txt {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--navy);
  color: #565d6b;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .title08 .ja .txt {
    font-size: 1.6rem;
  }
}
.title08.is-show .ja::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transform-origin: left center;
}

.title_en {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .title_en {
    margin-bottom: 30px;
  }
}
.title_en .en {
  display: block;
  font-size: 11rem;
  font-weight: bold;
  color: rgba(255, 165, 0, 0.1);
  color: var(--light_orange02);
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .title_en .en {
    font-size: clamp(12px, 5.5rem, 5.5rem);
  }
}
@media screen and (max-width: 500px) {
  .title_en .en {
    font-size: 4rem;
  }
}
.title_en .ja {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--main);
  margin: auto;
  margin-top: -40px;
}
@media screen and (max-width: 1024px) {
  .title_en .ja {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .title_en .ja {
    margin-top: -20px;
  }
}
.title_en.is-show span {
  opacity: 1;
  transform: translateY(0);
}
.title_en.is-show span:nth-of-type(2) {
  transition-delay: 0.2s;
}
.title_en.is-show span:nth-of-type(3) {
  transition-delay: 0.3s;
}
.title_en.is-show span:nth-of-type(4) {
  transition-delay: 0.4s;
}
.title_en.is-show span:nth-of-type(5) {
  transition-delay: 0.5s;
}
.title_en.is-show span:nth-of-type(6) {
  transition-delay: 0.6s;
}
.title_en.is-show span:nth-of-type(7) {
  transition-delay: 0.7s;
}
.title_en.is-show span:nth-of-type(8) {
  transition-delay: 0.8s;
}
.title_en.is-show span:nth-of-type(9) {
  transition-delay: 0.9s;
}
.title_en.is-show span:nth-of-type(10) {
  transition-delay: 1s;
}
.title_en.is-show span:nth-of-type(11) {
  transition-delay: 1.1s;
}
.title_en.is-show span:nth-of-type(12) {
  transition-delay: 1.2s;
}
.title_en.is-show span:nth-of-type(13) {
  transition-delay: 1.3s;
}
.title_en.is-show span:nth-of-type(14) {
  transition-delay: 1.4s;
}
.title_en.is-show span:nth-of-type(15) {
  transition-delay: 1.5s;
}

.title_bg {
  color: var(--light);
  font-size: 8.3333333333vw;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0;
  white-space: nowrap;
  line-height: 1.3;
  clip-path: inset(0 100% 0 0);
  transition: 2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
@media screen and (max-width: 1024px) {
  .title_bg {
    color: var(--light);
  }
}
.title_bg.is-show {
  clip-path: inset(0);
}

.bg_en {
  color: var(--gray);
  font-size: 8.3333333333vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  writing-mode: vertical-lr;
  position: absolute;
  top: 5%;
  bottom: 0;
  left: 0;
  clip-path: inset(0 0 100% 0);
  transition: 2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.bg_en.is-show {
  clip-path: inset(0);
}

.bg_en_row {
  color: var(--gray);
  font-size: 9.375vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

.sec__head {
  width: 85%;
  margin: auto;
  position: relative;
}

.deco_txt {
  color: var(--main);
  color: #1e3b71;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  line-height: 1;
  letter-spacing: 0.2em;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: -17px;
}
@media screen and (max-width: 1024px) {
  .deco_txt {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.deco_txt.is-show {
  clip-path: inset(0);
}

button {
  background-color: var(--gold);
  border: solid 1px var(--gold);
  color: var(--white);
  letter-spacing: 0.15em;
  padding: 0px 50px;
  border-radius: 999px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  button {
    padding: 0px 25px;
  }
}
button::before {
  content: "";
  display: block;
  aspect-ratio: 610/1222;
  -webkit-mask-image: url(../img/icon_arrow.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_arrow.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--white);
  width: 6px;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  z-index: 1;
}

.btn.btn01 {
  background-color: var(--gold) !important;
  border: solid 1px var(--gold);
  color: var(--white);
  letter-spacing: 0.15em;
  padding: 0px 30px;
  border-radius: 999px;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .btn.btn01 {
    padding: 0px 15px;
  }
}
@media screen and (max-width: 1024px) {
  .btn.btn01 {
    padding: 10px;
  }
}
.btn.btn01::before {
  content: "";
  display: block;
  aspect-ratio: 610/1222;
  -webkit-mask-image: url(../img/icon_arrow.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_arrow.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--white);
  width: 8px;
  height: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 22px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .btn.btn01::before {
    width: 4px;
  }
}
@media screen and (max-width: 1024px) {
  .btn.btn01::before {
    height: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .btn.btn01::before {
    right: 11px;
  }
}
.btn.btn01:hover {
  background-color: var(--white) !important;
  color: var(--gold);
}
.btn.btn01:hover::before {
  background-color: var(--gold);
}

.btn02 {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  position: relative;
  max-width: unset;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 10px 40px;
  background-color: var(--main);
  border-radius: 999px;
  border: solid 1px var(--main);
}
@media screen and (max-width: 1024px) {
  .btn02 {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .btn02 {
    padding: 5px 20px;
  }
}
.btn02::before {
  content: "";
  display: block;
  aspect-ratio: 135/110;
  background-image: url(../img/icon-arrow-navy.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-position: center center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .btn02::before {
    width: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .btn02::before {
    height: 10px;
  }
}
.btn02:hover {
  color: var(--main);
  background-color: var(--white);
}
.btn02:hover::before {
  background-image: url(../img/icon-arrow-main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateX(5px);
  transition: all 0.3s;
}

.link {
  display: flex;
  gap: 16px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .link {
    gap: 8px;
  }
}
.link::after {
  content: "";
  display: block;
  aspect-ratio: 610/1222;
  -webkit-mask-image: url(../img/icon_arrow.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_arrow.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--gold);
  width: 8px;
  height: 16px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .link::after {
    width: 4px;
  }
}
@media screen and (max-width: 1024px) {
  .link::after {
    height: 8px;
  }
}
.link:hover {
  color: var(--gold);
  transition: all 0.3s;
}

.bg_white {
  background-color: #fff;
}

.inner {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .inner {
    width: 90%;
  }
}

.box {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .box {
    flex-direction: column;
  }
}

.deco {
  display: block;
  position: absolute;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .table_wrap {
    overflow: auto;
  }
}

.tablepress {
  background: #fff;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box !important;
  border: none !important;
}
.tablepress thead th {
  color: var(--main) !important;
  background-color: unset !important;
  border-right: 1px solid #ddd !important;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .tablepress thead th {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .tablepress thead th {
    white-space: nowrap;
  }
}
.tablepress tbody tr:first-of-type td.column-1,
.tablepress tbody tr:first-of-type td.column-2 {
  border-top: none !important;
}
.tablepress tbody td {
  font-size: 1.6rem;
  border-right: none !important;
}
@media screen and (max-width: 1024px) {
  .tablepress tbody td {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.tablepress tbody td.column-1 {
  width: 30%;
  background-color: unset;
  color: var(--light_navy);
  border-top: solid 1px var(--light_navy);
}
@media screen and (max-width: 1600px) {
  .tablepress tbody td.column-1 {
    display: block;
    width: 100%;
    margin-bottom: 0;
  }
}
.tablepress tbody td.column-2 {
  width: 70%;
  border-top: solid 1px #ddd;
}
@media screen and (max-width: 1600px) {
  .tablepress tbody td.column-2 {
    display: block;
    width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .tablepress tbody td.column-2 {
    border-top: none;
    padding-top: 0;
  }
}
.tablepress tbody td.column-2 a:hover {
  opacity: 0.7;
}
.tablepress.tablepress-id-7 td.column-1 {
  color: var(--light_navy02);
  border-top: solid 1px var(--light_navy02);
}

.tablepress-table-name {
  background-color: unset;
  color: var(--main);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--main);
  text-align: center;
  display: block;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .tablepress-table-name {
    font-size: clamp(12px, 1.2rem, 1.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .tablepress-table-name {
    margin-bottom: 30px;
  }
}
.tablepress-table-name span {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--main);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .tablepress-table-name span {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .tablepress-table-name span {
    margin-bottom: 10px;
  }
}

.tablepress-table-description {
  font-size: 1.6rem;
  margin-bottom: 60px;
  background-color: unset;
  line-height: 1.8;
  border: solid 1px var(--main);
  background-color: #fff;
  position: relative;
  z-index: 2;
  border-radius: 0;
}
@media screen and (max-width: 1024px) {
  .tablepress-table-description {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .tablepress-table-description {
    margin-bottom: 30px;
  }
}
.tablepress-table-description a {
  text-decoration: underline;
  color: var(--main);
}
.tablepress-table-description.tablepress-table-description-id-8, .tablepress-table-description.tablepress-table-description-id-9 {
  text-align: left;
}

table {
  width: 100%;
  border: solid 1px #ddd;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  table {
    margin-bottom: 30px;
  }
}
table th,
table td {
  border: solid 1px #ddd;
  font-size: 1.8rem;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  table th,
  table td {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  table th,
  table td {
    padding: 5px;
  }
}

.video-box.overlay {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

#yt_player  {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.player-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mv {
  padding-bottom: 0;
  position: relative;
  padding-top: 0;
}
.mv__content video,
.mv__content iframe {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 560/315;
}
@media screen and (max-width: 600px) {
  .mv__content video,
  .mv__content iframe {
    aspect-ratio: 600/850;
  }
}

.slider__deco {
  display: block;
  width: 90%;
  height: 960px;
  position: absolute;
  top: -132px;
  left: 5%;
  z-index: 1;
  border: solid 3px var(--main);
}
@media screen and (max-width: 1200px) {
  .slider__deco {
    top: -120px;
  }
}
@media screen and (max-width: 1024px) {
  .slider__deco {
    width: 95%;
    height: 560px;
    top: -66px;
    left: 2.5%;
  }
}
@media screen and (max-width: 360px) {
  .slider__deco {
    height: 350px;
  }
}

.slider__wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.slider__wrap .slider {
  width: 100%;
  height: auto;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.slider__wrap .slider::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.1);
}

.scroll {
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: absolute;
  left: 5%;
  bottom: 25%;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--txt);
}
@media screen and (max-width: 1024px) {
  .scroll {
    width: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .scroll {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .scroll {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  .scroll {
    display: none;
  }
}
.scroll::after {
  content: "";
  right: 3px;
  width: 1px;
  height: 60px;
  background: var(--txt);
  animation: sdl03 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl03 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
iframe {
  width: 100%;
}

.txt__ciracle {
  aspect-ratio: 1;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 30px;
  bottom: -50px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .txt__ciracle {
    width: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .txt__ciracle {
    right: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .txt__ciracle {
    bottom: -25px;
  }
}
.txt__ciracle::before {
  content: "";
  display: block;
  background-image: url(../img/txt_circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  animation: roll 30s linear infinite;
  opacity: 70%;
}

.loop_wrap {
  display: flex;
  width: 100%;
  height: 9.375vw;
  overflow: hidden;
  margin-bottom: -1.5625vw;
  position: relative;
  z-index: 3;
}
.loop_wrap .txt {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 9.375vw;
  font-weight: 600;
  overflow: hidden;
  color: var(--gray);
  letter-spacing: 0.1em;
}
.loop_wrap .txt:nth-of-type(odd) {
  animation: loop 80s -40s linear infinite;
}
.loop_wrap .txt:nth-of-type(even) {
  animation: loop2 80s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
body.home {
  background-color: var(--main);
}
body.home main {
  overflow: hidden;
}

.f-news {
  padding-top: 0;
  position: relative;
}
.f-news .deco {
  position: absolute;
  z-index: 1;
  background-color: var(--gold);
  background-color: var(--light_gold);
  background-color: var(--light_navy);
}
.f-news .deco._01 {
  aspect-ratio: 1072/789;
  -webkit-mask-image: url(../img/deco01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/deco01.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  width: 20%;
  height: auto;
  top: -3.125vw;
  left: -2.6041666667vw;
}
.f-news .deco._02 {
  aspect-ratio: 697/826;
  -webkit-mask-image: url(../img/deco02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/deco02.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  width: 18%;
  height: auto;
  top: 23%;
  right: -2.6041666667vw;
}
.f-news .news {
  background-color: var(--white);
  margin-top: -100px;
  margin-bottom: 80px;
  padding: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-news .news {
    margin-top: -50px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .news {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .news {
    padding: 20px;
  }
}
.f-news .news .content {
  margin: auto;
}
.f-news .news .title01 .en,
.f-news .news .title01 .ja {
  color: var(--main);
}
.f-news .news-list01 li {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .f-news .news-list01 li {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .news-list01 li {
    flex-direction: column;
  }
}
.f-news .news-list01 li .date-cat {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .f-news .news-list01 li .date-cat {
    margin-bottom: 10px;
  }
}
.f-news .news-list01 li .date {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--main);
}
.f-news .news-list01 li .news-cat.news {
  margin-top: unset;
  margin-bottom: unset;
  padding: unset;
}
.f-news .news-list01 li .news-txt a:hover {
  color: var(--main);
  opacity: 1;
}
.f-news .insta .title01 {
  margin-bottom: 0;
}
.f-news .insta .title01 .en {
  color: var(--white);
}
.f-news .insta .content {
  padding: 100px;
}
@media screen and (max-width: 1024px) {
  .f-news .insta .content {
    padding: 0;
  }
}
.f-news #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,
.f-news #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,
.f-news #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,
.f-news .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,
.f-news .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,
.f-news .sb_instagram_header.sbi_medium .sbi_header_text h3 {
  color: var(--white);
}
@media screen and (max-width: 700px) {
  .f-news #sb_instagram #sbi_images {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.f-news #sb_instagram .sbi_follow_btn a,
.f-news #sb_instagram #sbi_load .sbi_load_btn {
  background: var(--white) !important;
}
.f-news #sb_instagram .sbi_follow_btn a span,
.f-news #sb_instagram #sbi_load .sbi_load_btn span {
  color: var(--main) !important;
}
.f-news #sb_instagram .sbi_follow_btn a:hover,
.f-news #sb_instagram #sbi_load .sbi_load_btn:hover {
  border: solid 1px var(--main) !important;
  background-color: var(--main) !important;
  box-shadow: unset !important;
  color: var(--white) !important;
}
.f-news #sb_instagram .sbi_follow_btn a:hover span,
.f-news #sb_instagram #sbi_load .sbi_load_btn:hover span {
  color: var(--white) !important;
}
.f-news .sbi_carousel {
  background-color: var(--white);
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-news .sbi_carousel {
    margin-bottom: 30px;
  }
}
.f-news #sb_instagram svg:not(:root).svg-inline--fa path {
  fill: var(--main) !important;
}

.f-greeting {
  position: relative;
  background-color: var(--light_navy);
}
.f-greeting::before, .f-greeting::after {
  content: "";
  display: block;
  aspect-ratio: 1072/789;
  -webkit-mask-image: url(../img/deco01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/deco01.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  aspect-ratio: 68/245;
  -webkit-mask-image: url(../img/deco15.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/deco15.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100%;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/deco17.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/deco17.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100%;
  width: 20%;
  height: auto;
  position: absolute;
  z-index: 1;
  background-color: var(--gold);
  background-color: var(--light_gold);
}
.f-greeting::before {
  top: -3.125vw;
  left: 5.2083333333vw;
  transform: scale(-1, 1) rotate(45deg);
}
.f-greeting::after {
  bottom: -2.6041666667vw;
  right: 2.6041666667vw;
  transform: scale(1, -1) rotate(-135deg);
}
.f-greeting .inner {
  position: relative;
  z-index: 2;
}
.f-greeting .title01 .en,
.f-greeting .title01 .ja {
  color: var(--white);
}
.f-greeting .greeting__txt {
  width: 70%;
  margin: auto;
  margin-top: 13.0208333333vw;
  margin-bottom: 10.4166666667vw;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt {
    width: 100%;
    margin-top: 12vw;
    margin-bottom: 12vw;
  }
}
.f-greeting .greeting__txt::before {
  content: "";
  display: block;
  aspect-ratio: 835/163;
  background-image: url(../img/frame01_top.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: auto;
  position: absolute;
  top: -9.8958333333vw;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt::before {
    top: -12vw;
  }
}
.f-greeting .greeting__txt::after {
  content: "";
  display: block;
  aspect-ratio: 835/108;
  background-image: url(../img/frame01_bottom.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -6.7708333333vw;
  left: 0;
  z-index: 1;
}
.f-greeting .greeting__txt .txt {
  background-image: url(../img/frame01_center.png);
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  line-height: 3;
  text-align: center;
  color: var(--main);
  padding: 0px 20px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt {
    padding: 0px 10px;
  }
}
.f-greeting .commitment {
  position: relative;
  padding: 200px 0;
  padding: 200px 0px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment {
    padding: 100px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment {
    padding: 50px 0;
  }
}
.f-greeting .commitment .bg_txt {
  top: -8.8541666667vw;
  right: 1.0416666667vw;
}
.f-greeting .commitment .titleArea {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment .titleArea {
    margin-bottom: 30px;
  }
}
.f-greeting .commitment__item {
  display: flex;
  align-items: center;
  margin-right: -10%;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment__item {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment__item {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment__item {
    flex-direction: column-reverse;
    margin-right: unset;
  }
}
.f-greeting .commitment__item .img {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment__item .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-greeting .commitment__item .img img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
}
.f-greeting .commitment__item .content {
  width: 40%;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: -10%;
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
  padding: 20px;
  opacity: 0;
  transform: translate(-10%, 0);
  transition: 0.8s;
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment__item .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment__item .content {
    padding: 10px;
  }
}
.f-greeting .commitment__item .content.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment__item .content {
    margin-right: unset;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .f-greeting .commitment__item .content {
    width: 90%;
    margin: auto;
    margin-top: -10%;
  }
}
.f-greeting .commitment__item .content .title {
  border-left: 6px solid var(--gold);
  padding: 0px 20px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment__item .content .title {
    padding: 0px 10px;
  }
}
.f-greeting .commitment__item .content .title__ja {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment__item .content .title__ja {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
.f-greeting .commitment__item .content .title__en {
  color: var(--gold);
  font-weight: 700;
}
.f-greeting .commitment__item:nth-of-type(odd) {
  flex-direction: row-reverse;
  margin-right: unset;
  margin-left: -10%;
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment__item:nth-of-type(odd) {
    flex-direction: column-reverse;
    margin-left: unset;
  }
}
.f-greeting .commitment__item:nth-of-type(odd) .content {
  margin-right: unset;
  margin-left: -10%;
  opacity: 0;
  transform: translate(10%, 0);
  transition: 0.8s;
}
.f-greeting .commitment__item:nth-of-type(odd) .content.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment__item:nth-of-type(odd) .content {
    margin-left: unset;
  }
}
.f-greeting .commitment__item:nth-of-type(odd) .content .title {
  border-left: 6px solid var(--gold);
  padding: 0px 20px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment__item:nth-of-type(odd) .content .title {
    padding: 0px 10px;
  }
}
.f-greeting .commitment__item:nth-of-type(odd) .content .title__ja {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .f-greeting .commitment__item:nth-of-type(odd) .content .title__ja {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
.f-greeting .commitment__item:nth-of-type(odd) .content .title__en {
  color: var(--gold);
  font-weight: 700;
}

.f-cafe {
  position: relative;
  margin-bottom: 5.2083333333vw;
  /* 位置調整 */
}
.f-cafe .deco {
  position: absolute;
  z-index: 1;
  background-color: var(--gold);
  background-color: var(--light_gold);
  background-color: var(--light_navy);
}
.f-cafe .deco._01 {
  aspect-ratio: 1072/789;
  -webkit-mask-image: url(../img/deco01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/deco01.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  width: 30%;
  height: auto;
  top: 9.375vw;
  right: 0vw;
  transform: scale(-1, 1);
}
.f-cafe .deco._02 {
  aspect-ratio: 697/826;
  -webkit-mask-image: url(../img/deco02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/deco02.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  width: 22%;
  height: auto;
  bottom: 0;
  left: 2.6041666667vw;
}
.f-cafe .bg_txt {
  top: -8.8541666667vw;
  left: 1.5625vw;
  opacity: 0;
  transform: translate(-10%, 0);
  transition: 0.8s;
}
.f-cafe .bg_txt.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.f-cafe .swiper-container {
  width: 100%;
  padding: 0 10%;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 100px;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-cafe .swiper-container {
    margin-bottom: 50px;
  }
}
.f-cafe .swiper-slide {
  padding: 40px 20px;
  width: 80%;
}
.f-cafe .swiper-slide a {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  position: relative;
}
.f-cafe .swiper-slide a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: var(--light_navy);
  opacity: 0.5;
  transition: all 0.3s;
}
.f-cafe .swiper-slide a img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.f-cafe .swiper-slide a .title {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .f-cafe .swiper-slide a .title {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
.f-cafe .swiper-slide a button {
  display: block;
  position: relative;
  z-index: 2;
  margin: auto;
}
.f-cafe .swiper-slide a:hover::before {
  opacity: 0;
  transition: all 0.3s;
}
.f-cafe .swiper-slide a:hover button {
  background-color: var(--white);
  color: var(--gold);
}
.f-cafe .swiper-slide a:hover button::before {
  background-color: var(--gold);
}
.f-cafe .swiper-button-next,
.f-cafe .swiper-button-prev {
  color: var(--light_gold);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 40px;
  height: 40px;
  background: unset;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .f-cafe .swiper-button-next,
  .f-cafe .swiper-button-prev {
    width: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-cafe .swiper-button-next,
  .f-cafe .swiper-button-prev {
    height: 20px;
  }
}
.f-cafe .swiper-button-next::after,
.f-cafe .swiper-button-prev::after {
  font-size: 4rem;
}
@media screen and (max-width: 1024px) {
  .f-cafe .swiper-button-next::after,
  .f-cafe .swiper-button-prev::after {
    font-size: clamp(12px, 2rem, 2rem);
  }
}
.f-cafe .swiper-button-next {
  right: 10px;
}
.f-cafe .swiper-button-prev {
  left: 10px;
}
.f-cafe .swiper-pagination-bullet {
  background: var(--white);
  opacity: 1;
}
.f-cafe .swiper-pagination-bullet-active {
  background: var(--gold);
}
.f-cafe .btn {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-cafe .btn {
    margin-bottom: 30px;
  }
}
.f-cafe .cake {
  width: 70%;
  margin: auto;
  position: relative;
  z-index: 2;
  padding: 40px;
  background-color: var(--white);
}
@media screen and (max-width: 1024px) {
  .f-cafe .cake {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-cafe .cake {
    width: 90%;
  }
}
.f-cafe .cake a {
  text-decoration: underline;
}

.f-typeB {
  position: relative;
  padding-top: 15.625vw;
}
.f-typeB .bg_txt {
  right: 0;
}
.f-typeB .title01 .ja,
.f-typeB .title01 .en {
  color: var(--white);
}
.f-typeB .bnr {
  background-color: var(--white);
  display: flex;
}
@media screen and (max-width: 1024px) {
  .f-typeB .bnr {
    flex-direction: column;
  }
}
.f-typeB .bnr .img {
  width: 50%;
  aspect-ratio: 3/2;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .f-typeB .bnr .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-typeB .bnr .img img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  transition: all 0.3s;
}
.f-typeB .bnr .txtArea {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-typeB .bnr .txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-typeB .bnr .txtArea .txt {
  font-size: clamp(16px, 1.5625vw, 3rem);
  letter-spacing: 0.2em;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .f-typeB .bnr .txtArea .txt {
    font-size: clamp(12px, 2.9296875vw, 1.5rem);
  }
}
.f-typeB .bnr:hover {
  background-color: var(--light_gold);
}
.f-typeB .bnr:hover .img img {
  transform: scale(1.05);
  transition: all 0.3s;
}
.f-typeB .bnr:hover button {
  background-color: var(--white);
  color: var(--gold);
}
.f-typeB .bnr:hover button::before {
  background-color: var(--gold);
}

.f-info {
  background-color: var(--white);
  background-image: url(../img/bg01_20.png);
  background-repeat: repeat;
  background-size: 80%;
  background-position: center;
}
.f-info .title01 .en,
.f-info .title01 .ja {
  color: var(--main);
}
.f-info .title02 .ja {
  color: var(--main);
}
.f-info .table__wrap {
  background-color: var(--white);
  padding: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-info .table__wrap {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-info .table__wrap {
    margin-bottom: 40px;
  }
}
.f-info .box {
  justify-content: space-between;
}
.f-info .item {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .f-info .item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-info .item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .f-info .item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.f-info .item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .f-info .item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.f-info .item._table {
  background-color: var(--white);
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .f-info .item._table {
    padding: 10px;
  }
}
.f-info .item iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .f-info .item iframe {
    aspect-ratio: 3/2;
    width: 100%;
    height: auto;
  }
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 0;
}
.marquee .marquee-content {
  display: inline-block;
  animation: marquee 35s linear infinite;
}
.marquee .marquee-content p {
  display: inline-block;
  margin: 0;
  padding: 0 1rem;
  font-size: 18rem;
  line-height: 1.3em;
  color: var(--bg);
  font-weight: 200;
}
@media screen and (max-width: 1024px) {
  .marquee .marquee-content p {
    font-size: clamp(12px, 9rem, 9rem);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.header {
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 50px;
  }
}
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
}
.header.scrolled .logo a {
  color: var(--main);
}
.header.scrolled .header-menu > li a {
  color: var(--main);
}
.header .logo {
  max-width: unset;
  width: unset;
}
.header .logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .header .logo a {
    gap: 6px;
  }
}
@media screen and (max-width: 1024px) {
  .header .logo a {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1200px) {
  .header .logo a {
    font-size: 10px;
  }
}
.header .logo a img {
  max-width: 260px;
}
@media screen and (max-width: 1200px) {
  .header .logo a img {
    max-width: 300px;
  }
}
@media screen and (max-width: 500px) {
  .header .logo a img {
    max-width: 200px;
  }
}
.header .header-content02 {
  max-width: 1920px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  margin: auto;
}
.header .header-content02 .header-box01 {
  width: 100%;
  height: 100%;
}
.header .header-content02 .header-box01 .header-box-inner01 {
  height: 100%;
}
.header .header-box01 .header-box-inner01 {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .header .header-box01 .header-box-inner01 {
    margin-top: unset;
  }
}
.header .headerNavArea {
  height: 100%;
  width: unset;
  justify-content: end;
  display: flex;
}
.header .bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.header .bg-overlay.open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.header .menu-header-menu-container {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .header .menu-header-menu-container {
    width: 100%;
  }
}
.header .header-menu {
  background-color: unset;
  justify-content: space-around;
  width: 100%;
  margin: auto;
}
.header .header-menu > li {
  flex: 1;
  padding: 0;
}
.header .header-menu > li:last-of-type {
  border-right: none;
}
.header .header-menu > li a {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .header .header-menu > li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1500px) {
  .header .header-menu > li a {
    font-size: 1.4rem;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1300px) {
  .header .header-menu > li a {
    font-size: 1.3rem;
    padding: 0 10px;
  }
}
@media screen and (max-width: 1200px) {
  .header .header-menu > li a {
    font-size: 1.2rem;
  }
}
.header .header-menu > li a .en {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--gray);
}
@media screen and (max-width: 1024px) {
  .header .header-menu > li a .en {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.header .header-menu > li a .en:first-letter {
  color: var(--blue);
}
.header .header-menu > li a:hover {
  opacity: 1;
  color: var(--gold);
}

.header-sub-box {
  z-index: 10;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 1024px) {
  .header-sub-box {
    top: unset;
    bottom: 0;
    width: 100%;
  }
}
.header-sub-box .g-nav-tel-pc a {
  aspect-ratio: 1;
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  background-color: var(--gold);
  border: solid 1px var(--gold);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.header-sub-box .g-nav-tel-pc a::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon_tel.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_tel.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  aspect-ratio: 140/209;
  background-color: var(--white);
  width: 15px;
  height: auto;
}
.header-sub-box .g-nav-tel-pc a:hover {
  transform: scale(1.05);
  transition: all 0.3s;
  background-color: var(--white);
}
.header-sub-box .g-nav-tel-pc a:hover::before {
  background-color: var(--gold);
}
.header-sub-box .g-sub-nav02 {
  height: 100%;
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-sub-nav02 .g-sub-nav-list {
    flex-direction: row;
    justify-content: center;
  }
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-sub-nav02 .g-sub-nav-list li {
    width: 47%;
  }
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a {
  aspect-ratio: 1;
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  background-color: var(--gold);
  border: solid 1px var(--gold);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon_mail.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_mail.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  aspect-ratio: 218/146;
  background-color: var(--white);
  width: 25px;
  height: auto;
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a:hover {
  transform: scale(1.05);
  transition: all 0.3s;
  background-color: var(--white);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a:hover::before {
  background-color: var(--gold);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:first-of-type a::before {
  height: 17px;
}

.mobile-btn #hamburger {
  border-radius: 50%;
}
.mobile-btn #hamburger span {
  background-color: var(--light_navy);
}
.mobile-btn #hamburger span:nth-of-type(1) {
  top: 20px;
}
.mobile-btn #hamburger span:nth-of-type(2) {
  top: 28px;
}
.mobile-btn #hamburger.active span:nth-of-type(1) {
  width: 45%;
  top: 20px;
  transform: translateY(5px) translateX(-4px) rotate(-45deg);
}
.mobile-btn #hamburger.active span:nth-of-type(2) {
  top: 28px;
  opacity: 1;
  transform: translateY(-3px) rotate(45deg);
}

.fix_nav {
  position: fixed;
  top: 30%;
  right: 0px;
  z-index: 9;
}
@media screen and (max-width: 1024px) {
  .fix_nav {
    top: unset;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.fix_nav.scrolled .sns-sub-nav li a {
  color: var(--txt);
}
.fix_nav.scrolled .sns-sub-nav li a svg {
  display: block;
}
.fix_nav.scrolled .sns-sub-nav li a svg path {
  fill: var(--txt);
}
@media screen and (max-width: 1024px) {
  .fix_nav.scrolled .sns-sub-nav li a svg path {
    fill: var(--white);
  }
}
.fix_nav.scrolled.is-hidden {
  display: none;
}
@media screen and (max-width: 1024px) {
  .fix_nav.scrolled.is-hidden {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .fix_nav .sns-icon-wrap {
    margin-bottom: 0;
    background-color: var(--txt);
    padding: 10px 0;
  }
}
@media screen and (max-width: 1024px) {
  .fix_nav .sns-icon-list {
    width: 90%;
    margin: auto;
  }
}
.fix_nav .sns-sub-nav {
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .fix_nav .sns-sub-nav {
    flex-direction: row;
  }
}
@media screen and (max-width: 1024px) {
  .fix_nav .sns-sub-nav li {
    flex: 1;
  }
}
.fix_nav .sns-sub-nav li a {
  font-size: 30px;
}
@media screen and (max-width: 1024px) {
  .fix_nav .sns-sub-nav li a {
    color: var(--white) !important;
    font-size: 24px;
  }
}
.fix_nav .sns-sub-nav li a svg {
  display: block;
  width: auto;
  height: 30px;
}
@media screen and (max-width: 1024px) {
  .fix_nav .sns-sub-nav li a svg {
    height: 24px;
  }
  .fix_nav .sns-sub-nav li a svg path {
    fill: var(--white);
  }
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.fix_nav .fix_nav_list li {
  background-color: var(--navy) !important;
  border: solid 1px var(--navy);
  padding: 10px 0 10px 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li {
    padding: 5px;
    margin-bottom: 0;
    width: 100%;
  }
}
.fix_nav .fix_nav_list li a {
  border: solid 1px var(--white);
  border-right: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  height: auto;
  color: var(--white);
  padding: 20px 20px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li a {
    gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li a {
    padding: 10px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li a {
    aspect-ratio: unset;
    width: 100%;
    padding: 10px;
    gap: 10px;
    writing-mode: unset;
    flex-direction: row;
    border: solid 1px var(--white);
  }
  .fix_nav .fix_nav_list li a br {
    display: none;
  }
}
.fix_nav .fix_nav_list li a::before {
  content: "";
  display: block;
  width: 30px;
  height: auto;
  aspect-ratio: 1;
  background-image: url(../img/icon-reserve-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li a::before {
    width: 15px;
  }
}
.fix_nav .fix_nav_list li a:hover {
  transition: all 0.3s;
  background-color: var(--white) !important;
  color: var(--navy);
}
.fix_nav .fix_nav_list li a:hover::before {
  background-image: url(../img/icon-reserve-navy.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.fix_nav .fix_nav_list li:nth-of-type(2) a::before {
  aspect-ratio: 1;
  background-image: url(../img/icon-mail-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.fix_nav .fix_nav_list li:nth-of-type(2) a:hover {
  background-color: #fff;
}
.fix_nav .fix_nav_list li:nth-of-type(2) a:hover::before {
  aspect-ratio: 1;
  background-image: url(../img/icon-mail-navy.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.sp-header-inner .logo {
  width: -moz-fit-content;
  width: fit-content;
}
.sp-header-inner .logo a {
  font-size: 1.8rem;
}
@media screen and (max-width: 400px) {
  .sp-header-inner .logo a {
    font-size: 1.6rem;
  }
}

.sp-header02 {
  background: #fff;
  position: relative;
  z-index: 2;
  height: 50px;
}
.sp-header02 .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  color: var(--white);
  font-family: "Arvo", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .sp-header02 .logo a {
    font-size: clamp(12px, 2rem, 2rem);
  }
}

.sp-header-icon-list {
  width: 60px;
  display: flex;
  flex-wrap: nowrap;
}
.sp-header-icon-list li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  padding: 5px;
  background-image: none;
  background-color: var(--light_navy);
}

.mobile-logo {
  height: 51px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-logo a {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--txt);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .mobile-logo a {
    gap: 5px;
  }
}
.mobile-logo a p {
  color: var(--txt);
  letter-spacing: 0.2em;
  font-size: 2rem;
}

.mobile-sub-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 1.4rem;
  background-color: unset;
  border: solid 2px var(--white);
  color: var(--white);
  border-radius: 0;
  text-transform: uppercase;
  position: relative;
}

.mobile-nav-wrap .mobile-menu-list {
  width: 100%;
}
.mobile-nav-wrap .mobile-menu-list > li a .en {
  display: none;
}

.mobile-sns-sub-nav .fa-brands,
.mobile-sns-sub-nav .fab {
  color: var(--white) !important;
}

@media screen and (max-width: 1024px) {
  .btn__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}
.btn__list li {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .btn__list li {
    margin-bottom: 0;
    width: 90%;
  }
}
.btn__list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  height: auto;
  background-color: var(--white) !important;
  color: var(--main);
  padding: 20px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 1024px) {
  .btn__list li a {
    gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .btn__list li a {
    padding: 10px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .btn__list li a {
    aspect-ratio: unset;
    width: 100%;
    padding: 10px;
    gap: 10px;
    writing-mode: unset;
  }
  .btn__list li a br {
    display: none;
  }
}
.btn__list li a::before {
  content: "";
  display: block;
  width: 20px;
  height: auto;
}
.btn__list li a:hover {
  transition: all 0.3s;
  background-color: var(--white) !important;
  color: var(--blue02);
}
.btn__list li:nth-of-type(1) a::before {
  aspect-ratio: 1;
  background-image: url(../img/icon-reserve-main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.btn__list li:nth-of-type(1) a:hover {
  background-color: var(--light);
}
.btn__list li:nth-of-type(1) a:hover::before {
  aspect-ratio: 1;
  background-image: url(../img/icon-reserve-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.fix_nav_sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .fix_nav_sp {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    width: 96%;
    margin: auto;
  }
}
.fix_nav_sp li {
  width: 49%;
  background-image: url(../img/bg_blue.png);
  background-repeat: repeat;
  background-size: 100%;
  background-position: center;
  border-radius: 10px 10px 0 0;
}
.fix_nav_sp li .head {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4rem;
  font-size: 10px;
  color: var(--blue);
  background-color: unset;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .fix_nav_sp li .head {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.fix_nav_sp li a {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  color: var(--blue);
}
@media screen and (max-width: 1024px) {
  .fix_nav_sp li a {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.fix_nav_sp li:nth-of-type(2) {
  background-image: url(../img/bg_yellow.png);
  background-repeat: repeat;
  background-size: 100%;
  background-position: center;
}
.fix_nav_sp li:nth-of-type(2) .head {
  color: var(--orange02);
}
.fix_nav_sp li:nth-of-type(2) a {
  color: var(--orange02);
}

#loading {
  position: relative;
}
#loading::before, #loading::after {
  content: "";
  display: block;
  aspect-ratio: 506/295;
  background-image: url(../img/guide_02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20%;
  height: auto;
  opacity: 70%;
}
#loading::before {
  position: absolute;
  left: 0;
  top: 0;
}
#loading::after {
  position: absolute;
  right: 0;
  bottom: 0;
}

.spin-wrap {
  width: 20%;
  height: auto;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .spin-wrap {
    width: 40%;
  }
}
.spin-wrap .logo {
  font-weight: 700;
  letter-spacing: 0.2em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--white);
  font-size: 4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  transition: all 0.3s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  max-width: unset;
}
@media screen and (max-width: 1024px) {
  .spin-wrap .logo {
    font-size: clamp(12px, 2rem, 2rem);
  }
}

.loaded {
  display: none;
}

.pc-btn {
  width: 120px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease-out;
  cursor: pointer;
  position: relative;
  z-index: 11;
}
.pc-btn::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-color: var(--main);
  width: 70px;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  border-radius: 50%;
}
.pc-btn .pc-btn-txt {
  position: relative;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .pc-btn .pc-btn-txt {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.pc-btn.scrolled {
  transform: translateX(0);
}
@media screen and (max-width: 1024px) {
  .pc-btn.scrolled {
    display: none;
  }
}
.pc-btn.active {
  position: fixed;
  top: 47px;
  right: 0px;
}

#hamburger_pc {
  position: relative;
  width: 30px;
  height: 14px;
  margin-left: auto;
  margin-right: auto;
}
#hamburger_pc span {
  transition: all 0.4s ease-out;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 0px;
}
#hamburger_pc span:nth-of-type(1) {
  top: 0;
}
#hamburger_pc span:nth-of-type(2) {
  bottom: 0;
}
#hamburger_pc.active span:nth-of-type(1) {
  transform: translateY(4px) rotate(-45deg);
}
#hamburger_pc.active span:nth-of-type(2) {
  transform: translateY(-7px) rotate(45deg);
}

#pc-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;
  background-color: var(--white);
  transition: all 0.3s;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 40px;
  transform: translateX(100%);
  z-index: 10;
}
#pc-nav.open {
  transform: translateX(0);
}
#pc-nav .pc-logo {
  width: 50%;
  margin-bottom: 50px;
}
#pc-nav .pc-nav-wrap .menu-header-menu-container {
  transform: unset;
  width: 100%;
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list {
  width: 100%;
  margin-bottom: 60px;
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list li a {
  display: block;
  font-size: 2rem;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: var(--title);
  font-weight: 700;
  border-bottom: solid 1px var(--gray);
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-nav-wrap .pc-nav-menu-list li a {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
#pc-nav .pc-sub-nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  margin-bottom: 30px;
}
#pc-nav .pc-sub-nav-list li {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 20px;
}
#pc-nav .pc-sub-nav-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--main);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  white-space: nowrap;
  padding: 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-sub-nav-list li a {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
#pc-nav .pc-sub-nav-list li a::after {
  content: "";
  display: block;
  background-image: url(../img/icon_arrow-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-position: center;
  width: 20px;
  height: 20px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-sub-nav-list li a::after {
    width: 10px;
  }
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-sub-nav-list li a::after {
    height: 10px;
  }
}
#pc-nav .pc-sub-nav-list li a span {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--txt);
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-sub-nav-list li a span {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
#pc-nav .pc-sub-nav-list li a:hover {
  background-color: var(--red);
  color: var(--white);
  transition: all 0.3s;
}
#pc-nav .pc-menu-tel {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
#pc-nav .pc-menu-tel-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
#pc-nav .pc-menu-tel-box:nth-of-type(2) .pc-menu-tel-head {
  background-color: #83cede;
}
#pc-nav .pc-menu-tel-head {
  color: #fff;
  margin-bottom: 0;
  background-color: #b4d260;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-head {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
#pc-nav .pc-menu-tel-number {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  display: flex !important;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-number {
    font-size: clamp(12px, 1.4rem, 1.4rem);
  }
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-number {
    gap: 5px;
  }
}
#pc-nav .pc-menu-tel-number::before {
  content: "";
  display: block;
  background-image: url(../img/icon-tel-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 30px;
  background-position: center;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-number::before {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-number::before {
    height: 15px;
  }
}
#pc-nav .pc-menu-tel-number:hover {
  color: var(--green);
  transition: all 0.3s;
}
#pc-nav .pc-menu-tel-number:hover svg path:first-of-type {
  stroke: var(--green);
}
#pc-nav .pc-menu-tel-number:hover svg path:nth-of-type(2) {
  fill: var(--green);
}

.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 9999;
  animation: byeShutter 2s forwards;
}
.shutter::before, .shutter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.shutter::before {
  background: var(--main);
  width: 0;
  height: 1px;
  animation: shutterOpen1 2s forwards;
}
.shutter::after {
  width: 120%;
  height: 0;
  margin-left: -10%;
  background-color: #f3f3f3;
  animation: shutterOpen2 2s forwards;
}
.shutter .logo img {
  width: 20%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterOpen1 {
  0% {
    width: 0;
    height: 0px;
  }
  50% {
    width: 100%;
    height: 0px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes shutterOpen2 {
  60% {
    width: 120%;
    height: 0;
    transform: rotate(5deg);
  }
  90% {
    width: 120%;
    height: 100%;
    transform: rotate(-5deg);
  }
  100% {
    width: 120%;
    height: 100%;
    transform: rotate(-5deg);
  }
}
.sub__head {
  margin-top: 100px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .sub__head {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .sub__head {
    flex-direction: column;
  }
}
.sub__head .titleArea {
  display: flex;
  align-items: center;
  width: 90%;
  height: 25vw;
  border-radius: 10px;
  overflow: hidden;
  padding-left: 2%;
  margin-left: 5%;
  margin-bottom: 60px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .sub__head .titleArea {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .sub__head .titleArea {
    margin-bottom: 30px;
  }
}
.sub__head .titleArea::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .sub__head .titleArea {
    aspect-ratio: 3;
    width: 95%;
    margin-left: 2.5%;
  }
}
.sub__head .titleArea .title02 {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.sub__head .titleArea .title02 .en {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .sub__head .titleArea .title02 .en {
    margin-bottom: 8px;
  }
}
.sub__head .titleArea .title02 .ja .txt {
  color: var(--white);
}

@media screen and (max-width: 1024px) {
  .sec .title02::before, .sec .title02::after {
    max-width: 60px;
  }
}
.sec .title02 .ja {
  color: var(--main);
}

.note {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .note {
    margin-bottom: 30px;
  }
}

.archive-info-wrap {
  width: 85%;
  margin: auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .archive-info-wrap {
    margin-bottom: 50px;
  }
}

.archive-info-img {
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .archive-info-img {
    border-radius: 3px;
  }
}
.archive-info-img img {
  border-radius: 0;
  background-color: var(--bg);
}

.contact-band {
  background-color: var(--light_navy);
}
.contact-band-inner {
  width: 80%;
  margin: auto;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  z-index: 1;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .contact-band-inner {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-inner {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-inner {
    padding: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-inner {
    width: 90%;
  }
}
.contact-band-btn {
  width: 47%;
  font-size: clamp(16px, 1.1458333333vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  max-width: unset;
  background-color: var(--gold);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 0;
}
@media screen and (max-width: 1024px) {
  .contact-band-btn {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-btn {
    font-size: clamp(12px, 2.1484375vw, 1.1rem);
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-btn {
    gap: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-btn {
    max-width: 360px;
  }
}
.contact-band-btn::before, .contact-band-btn::after {
  border-color: var(--white) !important;
}
.contact-band-btn:hover {
  border: solid 1px var(--main);
  background-color: var(--white);
  color: var(--main);
}
.contact-band-tel-block {
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: unset;
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .contact-band-tel-block {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-tel-block {
    max-width: 360px;
  }
}
.contact-band-tel-box:nth-of-type(1) .cf-cb-head, .contact-band-tel-box:nth-of-type(2) .cf-cb-head {
  padding: 10px 40px;
  background-image: url(../img/bg_blue.png);
  background-repeat: repeat;
  background-size: 100%;
  background-position: center;
  color: var(--txt);
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .contact-band-tel-box:nth-of-type(1) .cf-cb-head, .contact-band-tel-box:nth-of-type(2) .cf-cb-head {
    padding: 5px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-tel-box:nth-of-type(1) .cf-cb-head, .contact-band-tel-box:nth-of-type(2) .cf-cb-head {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.contact-band-tel-box:nth-of-type(2) .cf-cb-head {
  background-image: url(../img/bg_yellow.png);
  background-repeat: repeat;
  background-size: 100%;
  background-position: center;
}
.contact-band .cf-cb-txt {
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-cb-txt {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-cb-txt {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-cb-txt {
    text-align: center;
  }
}
.contact-band .cf-tel-number {
  font-size: 4rem;
  letter-spacing: 0.1em;
  color: var(--white);
  display: flex !important;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-tel-number {
    font-size: clamp(12px, 2rem, 2rem);
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-tel-number {
    gap: 5px;
  }
}
.contact-band .cf-tel-number:hover {
  color: var(--gold);
}
.contact-band .cf-tel-number:hover .contact-band-tel-icon path {
  stroke: var(--gold);
}
.contact-band .cf-tel-number:hover .contact-band-tel-icon path:nth-of-type(2) {
  fill: var(--gold);
}

.swiper-container.carousel {
  padding: 0;
  overflow: hidden;
}
.swiper-container.carousel .swiper-wrapper {
  transition-timing-function: linear !important;
}
.swiper-container.carousel .swiper-slide {
  aspect-ratio: 384/290;
  width: 20%;
  flex-shrink: 0;
  text-align: center;
}
.swiper-container.carousel .swiper-slide img {
  aspect-ratio: 384/290;
  width: 100%;
  height: auto;
  display: block;
}

.typeb .sub-header {
  height: 35vw;
}
.typeb .sub-header-txt {
  letter-spacing: 0.2em;
  color: var(--white);
  background-color: var(--light_navy02);
}
.typeb .title01::after {
  background-color: var(--light_navy02);
}
.typeb .title01 .en {
  color: var(--light_navy02);
  display: block;
  margin: auto;
  text-align: center;
  color: var(--light_navy02);
}
.typeb .title01 .ja {
  color: var(--main);
}
.typeb .title02::before, .typeb .title02::after {
  content: "";
  display: block;
  -webkit-mask-image: unset;
          mask-image: unset;
  background-color: var(--light_navy02);
  aspect-ratio: unset;
  height: 2px;
}
.typeb .title02 .ja {
  color: var(--light_navy02);
}
.typeb .btn.btn01 {
  background-color: var(--light_navy02) !important;
  border: solid 1px var(--light_navy02);
  color: var(--light_navy04);
}
.typeb .btn.btn01:hover {
  background-color: var(--white) !important;
  color: var(--light_navy);
}
.typeb .btn.btn01:hover::before {
  background-color: var(--light_navy);
}
.typeb .sec._02, .typeb .sec._04, .typeb .sec._07 {
  background-size: auto auto;
  background-color: #fff;
  background-image: repeating-linear-gradient(130deg, transparent, transparent 3px, #ebf0f3 3px, #ebf0f3 6px);
}
@media screen and (max-width: 1024px) {
  .typeb .sec._02, .typeb .sec._04, .typeb .sec._07 {
    background-image: repeating-linear-gradient(130deg, transparent, transparent 2px, #ebf0f3 2px, #ebf0f3 4px);
  }
}
.typeb .sec._03, .typeb .sec._05 {
  background-color: var(--light_navy02);
}
.typeb .sec._03 .title01 .en, .typeb .sec._05 .title01 .en {
  color: var(--white);
}
.typeb .sec._03 .title01 .ja, .typeb .sec._05 .title01 .ja {
  color: var(--white);
}
.typeb .sec._03 .title02::before, .typeb .sec._03 .title02::after, .typeb .sec._05 .title02::before, .typeb .sec._05 .title02::after {
  content: "";
  display: block;
  -webkit-mask-image: unset;
          mask-image: unset;
  background-color: var(--white);
  aspect-ratio: unset;
  height: 2px;
}
.typeb .sec._03 .title02 .ja, .typeb .sec._05 .title02 .ja {
  color: var(--white);
}
.typeb ._news {
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .typeb ._news {
    padding-bottom: 50px;
  }
}
.typeb ._news .inner {
  background-color: var(--white);
  padding: 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .typeb ._news .inner {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._news .inner {
    flex-direction: column;
  }
}
.typeb ._news .title01 {
  margin-bottom: 30px;
}
.typeb ._news .titleArea {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .typeb ._news .titleArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._news .titleArea {
    margin-bottom: 50px;
  }
}
.typeb ._news .content {
  width: 75%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .typeb ._news .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.typeb .news-list01 {
  width: 100%;
  margin-bottom: 0;
}
.typeb .news-list01 li {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .typeb .news-list01 li {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .typeb .news-list01 li {
    gap: 10px;
  }
}
.typeb .news-list01 li .news-cat a {
  background-color: var(--light_navy02);
  border: solid 1px var(--light_navy02);
}
.typeb ._about .about {
  margin-bottom: 130px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .typeb ._about .about {
    margin-bottom: 65px;
  }
}
.typeb ._about .about::before, .typeb ._about .about::after {
  content: "";
  display: block;
  aspect-ratio: 2786/2171;
  -webkit-mask-image: url(../img/deco20.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/deco20.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--light_navy03);
  width: 20%;
  height: auto;
  position: absolute;
  z-index: 1;
  opacity: 0.3;
}
.typeb ._about .about::before {
  top: 5%;
  left: 0%;
}
.typeb ._about .about::after {
  bottom: -15.625vw;
  right: -5%;
}
.typeb ._about .about .content {
  width: 70%;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .typeb ._about .about .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.typeb ._about .about .lead {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  width: 100%;
  padding: 40px 20px;
  font-size: 2.2rem;
  line-height: 2.5;
  color: var(--light_navy);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .typeb ._about .about .lead {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._about .about .lead {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._about .about .lead {
    font-size: clamp(12px, 1.1rem, 1.1rem);
  }
}
.typeb .philosophy__txtArea {
  width: 70%;
  margin: auto;
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .typeb .philosophy__txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb .philosophy__txtArea {
    margin-bottom: 50px;
  }
}
.typeb .philosophy__txtArea::before, .typeb .philosophy__txtArea::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 20%;
  height: auto;
  position: absolute;
  background-color: var(--light_navy03);
  z-index: 1;
  opacity: 50%;
}
.typeb .philosophy__txtArea::before {
  top: -1.5625vw;
  left: -1.5625vw;
}
.typeb .philosophy__txtArea::after {
  bottom: -1.5625vw;
  right: -1.5625vw;
}
.typeb .philosophy__txt {
  background-color: var(--white);
  text-align: center;
  color: var(--light_navy);
  line-height: 2.5;
  font-size: 2rem;
  padding: 40px 20px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .typeb .philosophy__txt {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .typeb .philosophy__txt {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb .philosophy__txt {
    margin-bottom: 30px;
  }
}
.typeb .philosophy .box {
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .typeb .philosophy .box {
    margin-bottom: 30px;
  }
}
.typeb .philosophy .box ._txt {
  width: 65%;
  margin-top: 60px;
  margin-right: -15%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .typeb .philosophy .box ._txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.typeb .philosophy .box ._img {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .typeb .philosophy .box ._img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.typeb .philosophy__list {
  background-color: var(--white);
  padding: 60px;
}
@media screen and (max-width: 1024px) {
  .typeb .philosophy__list {
    padding: 30px;
  }
}
.typeb .philosophy__item {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .typeb .philosophy__item {
    margin-bottom: 20px;
  }
}
.typeb .philosophy__item .title {
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--light_navy02);
  font-size: 1.1em;
}
.typeb ._training .training__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .typeb ._training .training__list {
    flex-direction: column;
  }
}
.typeb ._training .training__item {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .typeb ._training .training__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.typeb ._training .training__item .img img {
  aspect-ratio: 3/2;
  height: auto;
}
.typeb ._training .training__item .content {
  width: 90%;
  margin: auto;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .typeb ._training .training__item .content {
    margin-top: -15px;
  }
}
.typeb ._training .training__item .content .title {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  background-color: var(--gold);
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
}
@media screen and (max-width: 1024px) {
  .typeb ._training .training__item .content .title {
    padding: 5px 15px;
  }
}
.typeb ._training .training__item .content .txt {
  color: var(--white);
}
.typeb ._training-flow .training-flow__txt {
  text-align: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .typeb ._training-flow .training-flow__txt {
    margin-bottom: 60px;
  }
}
.typeb ._training-flow .training-flow__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .typeb ._training-flow .training-flow__list {
    flex-direction: column;
  }
}
.typeb ._training-flow .training-flow__item {
  width: 30%;
  background-color: var(--white);
  padding: 0px 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .typeb ._training-flow .training-flow__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._training-flow .training-flow__item {
    padding: 0px 15px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._training-flow .training-flow__item {
    margin-bottom: 60px;
  }
}
.typeb ._training-flow .training-flow__item .step {
  background-color: var(--light_navy02);
  border-radius: 50%;
  aspect-ratio: 1;
  width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
  margin-top: -80px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .typeb ._training-flow .training-flow__item .step {
    width: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._training-flow .training-flow__item .step {
    margin-top: -40px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._training-flow .training-flow__item .step {
    margin-bottom: 15px;
  }
}
.typeb ._training-flow .training-flow__item .step p {
  line-height: 1;
  margin-bottom: 0;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
}
.typeb ._training-flow .training-flow__item .step .txt {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .typeb ._training-flow .training-flow__item .step .txt {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.typeb ._training-flow .training-flow__item .step .num {
  font-size: 6rem;
}
@media screen and (max-width: 1024px) {
  .typeb ._training-flow .training-flow__item .step .num {
    font-size: clamp(12px, 3rem, 3rem);
  }
}
.typeb ._training-flow .training-flow__item .title {
  font-size: 1.2em;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--light_navy02);
  font-weight: 700;
}
.typeb ._training-flow .training-flow__item svg {
  width: 5%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -10%;
}
.typeb ._training-flow .training-flow__item:last-of-type svg {
  display: none;
}
.typeb ._typeB-flow .typeB-flow__list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .typeB-flow__list {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .typeB-flow__list {
    margin-bottom: 40px;
  }
}
.typeb ._typeB-flow .typeB-flow__item {
  width: 30%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .typeB-flow__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .typeB-flow__item {
    margin-bottom: 60px;
  }
}
.typeb ._typeB-flow .typeB-flow__item .img {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .typeB-flow__item .img {
    margin-bottom: 15px;
  }
}
.typeb ._typeB-flow .typeB-flow__item .img img {
  width: 40%;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .typeB-flow__item .img img {
    width: 30%;
  }
}
.typeb ._typeB-flow .typeB-flow__item .content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}
.typeb ._typeB-flow .typeB-flow__item .title {
  font-size: 1.2em;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--white);
  font-weight: 700;
}
.typeb ._typeB-flow .typeB-flow__item .txt {
  background-color: var(--white);
  padding: 20px;
  color: var(--light_navy);
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .typeB-flow__item .txt {
    padding: 10px;
  }
}
.typeb ._typeB-flow .typeB-flow__item svg {
  width: 5%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -10%;
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .typeB-flow__item svg {
    left: 0;
    right: 0;
    top: unset;
    bottom: -30px;
    margin: auto;
    transform: rotate(90deg);
  }
}
.typeb ._typeB-flow .typeB-flow__item:last-of-type svg {
  display: none;
}
.typeb ._typeB-flow .faq__list {
  background-color: var(--white);
  padding: 30px 30px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__list {
    padding: 15px 15px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__list {
    border-radius: 5px;
  }
}
.typeb ._typeB-flow .faq__item ._q {
  padding-left: 40px;
  padding-right: 40px;
  font-size: 1.6rem;
  color: var(--main);
  padding-bottom: 16px;
  margin-top: 10px;
  margin-bottom: 16px;
  border-bottom: dotted #ddd 1px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__item ._q {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__item ._q {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__item ._q {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__item ._q {
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__item ._q {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__item ._q {
    margin-bottom: 8px;
  }
}
.typeb ._typeB-flow .faq__item ._q::before {
  content: "";
  display: block;
  -webkit-mask-image: url(../img/icon_q.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_q.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  width: 30px;
  height: 30px;
  background-color: var(--light_navy02);
  z-index: 1;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__item ._q::before {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__item ._q::before {
    height: 15px;
  }
}
.typeb ._typeB-flow .faq__item ._q:hover {
  opacity: 0.7;
  cursor: pointer;
}
.typeb ._typeB-flow .faq__item ._a {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  padding-left: 40px;
  padding-right: 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__item ._a {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__item ._a {
    padding-right: 15px;
  }
}
.typeb ._typeB-flow .faq__item ._a::before {
  content: "";
  display: block;
  -webkit-mask-image: url(../img/icon_a.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_a.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  width: 30px;
  height: 30px;
  background-color: var(--gold);
  z-index: 1;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__item ._a::before {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__item ._a::before {
    height: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .typeb ._typeB-flow .faq__item ._a::before {
    top: 3px;
  }
}
.typeb ._typeB-flow .faq__item .plus {
  display: block;
  vertical-align: 0.3em;
  color: var(--light_navy02);
  line-height: 1;
  width: 1em;
  height: 3px;
  background: currentColor;
  border-radius: 0.1em;
  position: absolute;
  top: 6px;
  right: 0;
}
.typeb ._typeB-flow .faq__item .plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.typeb ._typeB-flow .faq__item .plus.active::before {
  transform: rotate(0deg);
}
.typeb .infomation .box {
  justify-content: space-between;
}
.typeb .infomation .box .item {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .typeb .infomation .box .item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.typeb .infomation .box .item._table {
  background-color: var(--white);
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .typeb .infomation .box .item._table {
    padding: 10px;
  }
}
.typeb .contact-band .title01 .ja,
.typeb .contact-band .title01 .en {
  color: var(--white);
}
.typeb .contact-band .btn.btn01 {
  background-color: var(--gold) !important;
  border: solid 1px var(--gold) !important;
}
.typeb .contact-band .btn.btn01:hover {
  background-color: var(--white) !important;
  color: var(--gold);
}
.typeb .contact-band .btn.btn01:hover::before {
  background-color: var(--gold) !important;
}

.workstyle .point .inner {
  width: 85%;
}
.workstyle .point__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .workstyle .point__list {
    flex-direction: column;
  }
}
.workstyle .point__item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .workstyle .point__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.workstyle .point__item .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .workstyle .point__item .img {
    margin-bottom: 10px;
  }
}
.workstyle .point__item .img img {
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .workstyle .point__item .img img {
    border-radius: 4px;
  }
}
.workstyle .point__item .title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--title);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .workstyle .point__item .title {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.workstyle .flow {
  background-color: var(--bg);
}
.workstyle .flow__list {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px 80px;
}
@media screen and (max-width: 1024px) {
  .workstyle .flow__list {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle .flow__list {
    padding: 20px 40px;
  }
}
.workstyle .flow__item {
  display: flex;
  justify-content: center;
}
.workstyle .flow__item p {
  margin-bottom: 0;
}
.workstyle .flow__item .time {
  width: 120px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--title);
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .workstyle .flow__item .time {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.workstyle .flow__item .line {
  width: 50px;
  color: var(--main);
  position: relative;
}
.workstyle .flow__item .line::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 7px;
  z-index: 1;
  background-color: var(--main);
}
.workstyle .flow__item .content__list {
  width: 100%;
  line-height: 1.5;
  padding-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .workstyle .flow__item .content__list {
    padding-bottom: 15px;
  }
}
.workstyle .flow__item .content__item {
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .workstyle .flow__item .content__item {
    margin-bottom: 8px;
  }
}
.workstyle .flow__item .content__item .title {
  font-size: 1.8rem;
  color: var(--title);
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .workstyle .flow__item .content__item .title {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.workstyle .flow__item .content__item .txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .workstyle .flow__item .content__item .txt {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.workstyle .flow__item:first-of-type .line::before {
  top: 10px;
}
.workstyle .flow__item:last-of-type .line::before {
  height: 15px;
}
.workstyle .voice__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item {
    margin-bottom: 30px;
  }
}
.workstyle .voice__item .img {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.workstyle .voice__item .img img {
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item .img img {
    border-radius: 3px;
  }
}
.workstyle .voice__item .content {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.workstyle .voice__item .content .name {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--title);
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item .content .name {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.workstyle .voice__item .content .faq__list {
  background-color: var(--white);
  padding: 40px 20px;
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item .content .faq__list {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item .content .faq__list {
    border-radius: 3px;
  }
}
.workstyle .voice__item .content .faq__list ._q {
  font-size: 1.6rem;
  padding-bottom: 10px;
  padding-left: 35px;
  position: relative;
  border-bottom: 1px solid var(--gray);
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item .content .faq__list ._q {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item .content .faq__list ._q {
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item .content .faq__list ._q {
    padding-left: 17.5px;
  }
}
.workstyle .voice__item .content .faq__list ._q:last-of-type {
  margin-bottom: 0;
}
.workstyle .voice__item .content .faq__list ._q::before {
  content: "Q";
  color: var(--main);
  font-weight: 700;
  font-size: 1.8rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item .content .faq__list ._q::before {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.workstyle .voice__item .content .faq__list ._q:hover {
  opacity: 0.7;
  cursor: pointer;
}
.workstyle .voice__item .content .faq__list ._a {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  font-size: 1.6rem;
  padding-left: 35px;
  position: relative;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item .content .faq__list ._a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item .content .faq__list ._a {
    padding-left: 17.5px;
  }
}
.workstyle .voice__item .content .faq__list ._a::before {
  content: "A";
  color: var(--red);
  font-weight: 700;
  font-size: 1.8rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .workstyle .voice__item .content .faq__list ._a::before {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.workstyle .voice__item .content .faq__list .plus {
  display: inline-block;
  vertical-align: 0.3em;
  color: var(--title);
  line-height: 1;
  width: 12px;
  height: 3px;
  background: currentColor;
  border-radius: 0.1em;
  position: absolute;
  top: 18px;
  right: 0;
}
.workstyle .voice__item .content .faq__list .plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.workstyle .voice__item .content .faq__list .plus.active:before {
  transform: rotate(0deg);
}

.single .single-info-wrap {
  width: 85%;
  margin: auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .single .single-info-wrap {
    margin-bottom: 50px;
  }
}
.single .search-box input[type=text] {
  background-color: var(--bg) !important;
}
.single .page-nav div span {
  color: var(--title);
}
.single .page-nav div img {
  background-color: var(--bg);
}
.single .page-nav div:hover {
  background-color: var(--bg);
}
.single .page-nav div:hover .link-over {
  background-color: unset;
}

.post-categories li a {
  background-color: var(--gold);
  border: solid 1px var(--gold);
  color: var(--white);
  border-radius: 0;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.post-categories li a:hover {
  background-color: var(--gold);
  color: var(--white);
}
.post-categories li a.news {
  background-color: var(--yellow);
  border: solid 1px var(--yellow);
}
.post-categories li a.news:hover {
  background-color: #fff;
  color: var(--yellow);
}
.post-categories li a.lunch {
  background-color: var(--green);
  border: solid 1px var(--green);
}
.post-categories li a.lunch:hover {
  background-color: #fff;
  color: var(--green);
}
.post-categories li a.childcare {
  background-color: var(--blue);
  border: solid 1px var(--blue);
}
.post-categories li a.childcare:hover {
  background-color: #fff;
  color: var(--blue);
}
.post-categories li a.column {
  background-color: var(--pink);
  border: solid 1px var(--pink);
}
.post-categories li a.column:hover {
  background-color: #fff;
  color: var(--pink);
}

.single-info-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--title);
}
@media screen and (max-width: 1024px) {
  .single-info-title {
    font-size: clamp(12px, 1.2rem, 1.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .single-info-title {
    font-size: 1.6rem;
  }
}

.single-info-article h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .single-info-article h2 {
    font-size: clamp(12px, 1.2rem, 1.2rem);
  }
}

.single-info-article h3 {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .single-info-article h3 {
    font-size: clamp(12px, 1rem, 1rem);
  }
}

.single-info-catch-img img {
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .single-info-catch-img img {
    border-radius: 4px;
  }
}

.gallery-list a img {
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .gallery-list a img {
    border-radius: 2px;
  }
}

@media screen and (max-width: 1024px) {
  .single-interview-post #breadcrumbs ul {
    padding-bottom: 10px;
  }
}
.single-interview-post .interview {
  width: 90%;
  margin: auto;
  margin-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview {
    margin-bottom: 50px;
  }
}
.single-interview-post .interview__head {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 10.4166666667vw;
}
.single-interview-post .interview__head._img {
  aspect-ratio: 2.5;
}
.single-interview-post .interview__head._img .profile {
  position: absolute;
  bottom: -10.4166666667vw;
  left: 2%;
  z-index: 2;
}
.single-interview-post .interview__head._img .profile .message {
  color: var(--white);
}
.single-interview-post .interview__head .img {
  position: absolute;
  left: 0;
  top: 0;
  position: relative;
}
.single-interview-post .interview__head .img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.single-interview-post .interview__head .img img {
  aspect-ratio: 2.5;
  height: auto;
}
.single-interview-post .interview__head .profile {
  padding-left: 5%;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__head .profile {
    padding-right: 5%;
  }
}
.single-interview-post .interview__head .profile li {
  font-weight: 700;
  color: var(--title);
}
.single-interview-post .interview__head .profile li.message {
  font-size: 2.0833333333vw;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--title);
  margin-bottom: 4.1666666667vw;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__head .profile li.message {
    font-size: 3vw;
  }
}
.single-interview-post .interview__head .profile li.name {
  width: 360px;
  font-size: 1.5625vw;
  letter-spacing: 0.15em;
  border-bottom: solid 2px var(--title);
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__head .profile li.name {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__head .profile li.name {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__head .profile li.name {
    font-size: 1.5rem;
  }
}
.single-interview-post .interview__head .profile li.name::before {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: var(--main);
  z-index: 1;
}
.single-interview-post .interview__content {
  width: 90%;
  margin: auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__content {
    margin-bottom: 50px;
  }
}
.single-interview-post .interview__content__detail .box {
  padding: 20px;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__content__detail .box {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__content__detail .box {
    margin-bottom: 20px;
  }
}
.single-interview-post .interview__content__detail .box .lead {
  font-size: 1.5625vw;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--title);
  border-bottom: dotted 2px #ddd;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__content__detail .box .lead {
    font-size: 3vw;
  }
}
.single-interview-post .interview__content__detail .box ._q {
  display: flex;
  gap: 10px;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__content__detail .box ._q {
    gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__content__detail .box ._q {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.single-interview-post .interview__content__detail .box:nth-of-type(even) {
  background-color: rgba(246, 246, 246, 0.6);
}
.single-interview-post .interview__content__detail .box._img .img {
  width: 47%;
  aspect-ratio: 3/2;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__content__detail .box._img .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.single-interview-post .interview__content__detail .box._img .img .noimg {
  width: 50%;
}
.single-interview-post .interview__content__detail .box._img .content {
  width: 47%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__content__detail .box._img .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.single-interview-post .interview__content__detail .box._img .content p {
  width: 100%;
}
.single-interview-post .interview__content__detail .box.img_num_2, .single-interview-post .interview__content__detail .box.img_num_4, .single-interview-post .interview__content__detail .box.img_num_6 {
  flex-direction: row-reverse !important;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__content__detail .box.img_num_2, .single-interview-post .interview__content__detail .box.img_num_4, .single-interview-post .interview__content__detail .box.img_num_6 {
    flex-direction: column !important;
  }
}
.single-interview-post .interview__content__detail .box._noimg {
  padding: 30px 20px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__content__detail .box._noimg {
    padding: 15px 10px;
  }
}
.single-interview-post .interview__content__detail .box._noimg .titleArea {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__content__detail .box._noimg .titleArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.single-interview-post .interview__content__detail .box._noimg .titleArea .lead {
  border-bottom: none;
}
.single-interview-post .interview__content__detail .box._noimg .txtArea {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__content__detail .box._noimg .txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__content__detail .box._noimg .txtArea {
    margin-bottom: 0;
  }
}
.single-interview-post .interview__content__detail .box._noimg .txtArea p {
  width: 100%;
}
.single-interview-post .interview__list .q {
  display: flex;
  gap: 10px;
  font-size: 2rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--txt);
  margin-top: 60px;
  margin-bottom: 60px;
  border-bottom: dotted 2px var(--gray);
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__list .q {
    gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__list .q {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__list .q {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__list .q {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__list .q {
    padding-bottom: 10px;
  }
}
.single-interview-post .interview__list .q::before {
  content: "Q";
  display: block;
  font-size: 2rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__list .q::before {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.single-interview-post .interview__list .a {
  display: flex;
  gap: 10px;
  font-size: 2rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__list .a {
    gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__list .a {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__list .a {
    margin-bottom: 30px;
  }
}
.single-interview-post .interview__list .a::before {
  content: "A";
  display: block;
  font-size: 2rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #ce0212;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__list .a::before {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.single-interview-post .interview__list .img {
  padding-left: 20px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__list .img {
    padding-left: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__list .img {
    margin-bottom: 50px;
  }
}
.single-interview-post .interview__list .img img {
  aspect-ratio: 2;
  height: auto;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview__list .img img {
    border-radius: 5px;
  }
}
.single-interview-post .interview .schedule {
  background-color: var(--bg);
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .schedule {
    padding: 20px;
  }
}
.single-interview-post .interview .schedule .title {
  font-size: 2.6rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .schedule .title {
    font-size: clamp(12px, 1.3rem, 1.3rem);
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .schedule .title {
    margin-bottom: 30px;
  }
}
.single-interview-post .interview .schedule__item {
  display: flex;
}
.single-interview-post .interview .schedule__item p {
  margin-bottom: 0;
}
.single-interview-post .interview .schedule__item .time {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--title);
  letter-spacing: 0.2em;
  width: 120px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .schedule__item .time {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .schedule__item .time {
    width: 80px;
  }
}
.single-interview-post .interview .schedule__item .line {
  width: 50px;
  color: var(--main);
  position: relative;
}
.single-interview-post .interview .schedule__item .line::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 7px;
  z-index: 1;
  background-color: var(--main);
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .schedule__item .line::before {
    left: 5px;
  }
}
.single-interview-post .interview .schedule__item .content {
  width: calc(100% - 200px);
  line-height: 1.5;
  padding-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .schedule__item .content {
    padding-bottom: 15px;
  }
}
.single-interview-post .interview .schedule__item:first-of-type .line::before {
  top: 10px;
}
.single-interview-post .interview .schedule__item:last-of-type .line::before {
  height: 15px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .other .page-nav {
    display: block;
  }
}
.single-interview-post .interview .other .prev-link {
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .other .prev-link {
    width: 100%;
    margin-bottom: 15px;
  }
}
.single-interview-post .interview .other .prev-link a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .other .prev-link a {
    padding: 7.5px;
  }
}
.single-interview-post .interview .other .prev-link a:hover {
  background-color: var(--bg);
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .other .img {
    width: 30%;
  }
}
.single-interview-post .interview .other .title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--title);
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .other .title {
    font-size: clamp(12px, 1.1rem, 1.1rem);
  }
}
.single-interview-post .interview .other .content {
  width: calc(100% - 150px);
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .other .content {
    width: 70%;
    padding: 20px;
  }
}
.single-interview-post .interview .other .content p {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--title);
}
.single-interview-post .interview .other .content p.name {
  border-bottom: solid 1px var(--title);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .other .content p.name {
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .single-interview-post .interview .other .content p.name {
    margin-bottom: 5px;
  }
}

.recruit-single .inner {
  width: 85%;
  background-color: var(--bg);
  padding: 80px 40px;
}
@media screen and (max-width: 1024px) {
  .recruit-single .inner {
    padding: 40px 20px;
  }
}
.recruit-single-time {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--txt-gray);
}
.recruit-single-img {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .recruit-single-img {
    margin-bottom: 30px;
  }
}
.recruit-single .recruit-single-content p {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .recruit-single .recruit-single-content p {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.recruit-single .form__wrap {
  background-color: var(--white);
  padding: 80px 40px;
}
@media screen and (max-width: 1024px) {
  .recruit-single .form__wrap {
    padding: 40px 20px;
  }
}
.recruit-single .entry-btn a {
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .recruit-single .entry-btn a {
    font-size: clamp(12px, 1.1rem, 1.1rem);
  }
}

.archive-time-cat time,
.single-info-date-cat time {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  color: var(--txt-gray);
}
@media screen and (max-width: 1024px) {
  .archive-time-cat time,
  .single-info-date-cat time {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.archive-time-cat a,
.single-info-date-cat a {
  background-color: var(--gold);
  border: solid 1px var(--gold);
  color: var(--white);
  border-radius: 0;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.archive-time-cat a:hover,
.single-info-date-cat a:hover {
  background-color: var(--gold);
  color: var(--white);
}
.archive-time-cat span a,
.single-info-date-cat span a {
  background-color: var(--gold);
  border: solid 1px var(--gold);
  color: var(--white);
  border-radius: 0;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.archive-time-cat span a:hover,
.single-info-date-cat span a:hover {
  background-color: var(--gold);
  color: var(--white);
}

.archive-info-title a {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .archive-info-title a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}

.search-btn {
  background-color: unset;
  border: none;
  padding: unset;
  border-radius: unset;
}

.post-type-archive-cafe-post {
  background-color: var(--main);
}
.post-type-archive-cafe-post .subHeader {
  margin-top: 100px;
  position: relative;
  min-height: 370px;
  height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light_navy);
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .subHeader {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .subHeader {
    height: 15vh;
    min-height: 200px;
  }
}
.post-type-archive-cafe-post .subHeader .deco {
  position: absolute;
  -webkit-mask-image: url(../img/sub_title_deco.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/sub_title_deco.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  aspect-ratio: 1;
  background-color: var(--light_gold);
  width: 8%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .subHeader .deco {
    width: 12%;
  }
}
.post-type-archive-cafe-post .subHeader .deco._01 {
  top: 0;
  left: 0;
}
.post-type-archive-cafe-post .subHeader .deco._02 {
  top: 0;
  right: 0;
  transform: scale(-1, 1);
}
.post-type-archive-cafe-post .subHeader .deco._03 {
  bottom: 0;
  right: 0;
  transform: scale(-1, -1);
}
.post-type-archive-cafe-post .subHeader .deco._04 {
  bottom: 0;
  left: 0;
  transform: scale(1, -1);
}
.post-type-archive-cafe-post .subHeader .title01 {
  margin: unset;
}
.post-type-archive-cafe-post .subHeader .title01::after {
  content: "";
  display: none;
}
.post-type-archive-cafe-post main {
  overflow: hidden;
}
.post-type-archive-cafe-post .sec {
  position: relative;
}
.post-type-archive-cafe-post .sec::before, .post-type-archive-cafe-post .sec::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  background-color: var(--gold);
  background-color: var(--light_gold);
  background-color: var(--light_navy);
  opacity: 50%;
}
.post-type-archive-cafe-post .sec::before {
  aspect-ratio: 1072/789;
  -webkit-mask-image: url(../img/deco01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/deco01.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  width: 18%;
  height: auto;
  top: 10%;
  left: -2.6041666667vw;
}
.post-type-archive-cafe-post .sec::after {
  aspect-ratio: 697/826;
  -webkit-mask-image: url(../img/deco02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/deco02.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  width: 18%;
  height: auto;
  bottom: 5%;
  right: -2.6041666667vw;
}
.post-type-archive-cafe-post .sec .inner {
  background-color: var(--white);
  position: relative;
  z-index: 2;
}
.post-type-archive-cafe-post .titleArea .content {
  display: flex;
  padding: 60px 60px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .titleArea .content {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .titleArea .content {
    padding: 30px 30px;
  }
}
.post-type-archive-cafe-post .titleArea .content .img {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .titleArea .content .img {
    width: 60%;
    margin: auto;
  }
}
.post-type-archive-cafe-post .titleArea .content .title {
  width: 100%;
}
.post-type-archive-cafe-post .titleArea .content .title::before {
  content: "";
  display: block;
  aspect-ratio: 348/29;
  -webkit-mask-image: url(../img/title_deco01_top.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/title_deco01_top.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--main);
  width: 40%;
  height: auto;
  z-index: 1;
  margin: auto;
}
.post-type-archive-cafe-post .titleArea .content .title span {
  font-size: clamp(16px, 1.5625vw, 3rem);
  letter-spacing: 0.2em;
  color: var(--main);
  text-align: center;
  display: block;
  position: relative;
  line-height: 3;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .titleArea .content .title span {
    font-size: clamp(12px, 2.9296875vw, 1.5rem);
  }
}
.post-type-archive-cafe-post .titleArea .content .title span::before, .post-type-archive-cafe-post .titleArea .content .title span::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: var(--main);
}
.post-type-archive-cafe-post .titleArea .content .title span::before {
  top: 0;
}
.post-type-archive-cafe-post .titleArea .content .title span::after {
  bottom: 0;
}
.post-type-archive-cafe-post .menu__list {
  padding: 60px 60px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .menu__list {
    padding: 30px 30px;
  }
}
.post-type-archive-cafe-post .menu__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .menu__item {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .menu__item {
    margin-bottom: 30px;
  }
}
.post-type-archive-cafe-post .menu__item:last-of-type {
  margin-bottom: 0;
}
.post-type-archive-cafe-post .menu__item .img {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .menu__item .img {
    width: 60%;
    margin: auto;
    margin-bottom: 30px;
  }
}
.post-type-archive-cafe-post .menu__item .img img {
  aspect-ratio: 1;
  height: auto;
}
.post-type-archive-cafe-post .menu__item .content {
  width: 67%;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .menu__item .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.post-type-archive-cafe-post .menu__item .content .title {
  border-bottom: solid 1px var(--main);
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .menu__item .content .title {
    margin-bottom: 20px;
  }
}
.post-type-archive-cafe-post .menu__item .content .title .ja {
  font-size: clamp(16px, 1.4583333333vw, 2.8rem);
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .menu__item .content .title .ja {
    font-size: clamp(12px, 2.734375vw, 1.4rem);
  }
}
.post-type-archive-cafe-post .menu__item .content .txt {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .menu__item .content .txt {
    margin-bottom: 20px;
  }
}
.post-type-archive-cafe-post .menu__item .content .price__list {
  width: 70%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .menu__item .content .price__list {
    width: 100%;
    margin-bottom: 20px;
  }
}
.post-type-archive-cafe-post .menu__item .content .price__item {
  display: flex;
  justify-content: space-between;
  border-bottom: dotted #ddd 1px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-cafe-post .menu__item .content .price__item {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .post-type-archive-cafe-post .menu__item .content .price__item {
    flex-direction: column;
  }
}
.post-type-archive-cafe-post .menu__item .content .price__item .price {
  white-space: nowrap;
  margin-left: auto;
}
.post-type-archive-cafe-post .menu__item .content .note {
  font-size: 0.8em;
  text-align: right;
}

main.panelactive {
  display: none;
}

#mobile-nav {
  display: none;
}
#mobile-nav.panelactive {
  display: block;
}

@media screen and (max-width: 1024px) {
  .sns-sub-nav {
    justify-content: center;
  }
}
.sns-sub-nav li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sns-sub-nav .twiiter svg {
  display: block;
  width: auto;
  height: 24px;
}
.sns-sub-nav .twiiter svg path {
  fill: #fff;
}

.footer {
  position: relative;
  margin: auto;
  z-index: 2;
}
.footer-inner {
  align-items: center;
}
.footer-logo-address {
  width: 100%;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .footer-logo-address {
    margin-bottom: 40px;
  }
}
.footer-logo a {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--white);
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .footer-logo a {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.footer-address-title {
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  display: flex;
  flex-direction: column;
  padding: 20px 0px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .footer-address-title {
    padding: 10px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-address-title {
    margin-bottom: 15px;
  }
}
.footer-address-title .en {
  font-size: 3rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .footer-address-title .en {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
.footer-address-title .ja {
  color: var(--white);
  font-weight: 700;
}
.footer-menu li a {
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer-menu li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .footer-menu li a {
    border-bottom: dotted 1px #ddd;
  }
}
.footer-menu li a:hover {
  color: var(--gold);
  transition: all 0.3s;
}
.footer-nav-wrap {
  margin: auto;
}
.footer-nav {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer-nav {
    flex-direction: column;
  }
}
.footer-nav .left,
.footer-nav .right {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .footer-nav .left,
  .footer-nav .right {
    width: 100%;
    margin-bottom: 20px;
  }
}

.footer__bnr__area {
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .footer__bnr__area {
    padding-bottom: 40px;
  }
}
.footer__bnr__area::before {
  content: "";
  display: block;
  aspect-ratio: 2558/200;
  background-image: url(../img/bg04.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -5px;
  z-index: -1;
}

.footer__bnr {
  display: block;
  aspect-ratio: 3;
  width: 600px;
  height: auto;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .footer__bnr {
    width: 300px;
  }
}
.footer__bnr::before {
  content: "";
  display: block;
  background-color: var(--main);
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 6px;
  right: -6px;
  z-index: -1;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .footer__bnr::before {
    top: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__bnr::before {
    right: -3px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__bnr::before {
    border-radius: 5px;
  }
}
.footer__bnr::after {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .footer__bnr::after {
    border-radius: 5px;
  }
}
.footer__bnr .bg_img {
  aspect-ratio: 3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .footer__bnr .bg_img {
    border-radius: 5px;
  }
}
.footer__bnr .txtArea {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
}
.footer__bnr .txtArea .logo {
  width: 60%;
  margin: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .footer__bnr .txtArea .logo {
    margin-bottom: 10px;
  }
}
.footer__bnr .txtArea .txt {
  background-color: var(--main);
  border-radius: 999px;
  color: #fff;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0px 20px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .footer__bnr .txtArea .txt {
    padding: 0px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__bnr .txtArea .txt {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.footer__bnr .txtArea .note {
  aspect-ratio: 179/144;
  width: 190px;
  height: auto;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4rem;
  position: absolute;
  top: -70px;
  right: -110px;
  background-image: url(../img/deco_07.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  text-align: center;
  margin-bottom: 0;
  padding-top: 40px;
  transform: rotate(10deg);
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .footer__bnr .txtArea .note {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
@media screen and (max-width: 1024px) {
  .footer__bnr .txtArea .note {
    padding-top: 30px;
    width: 130px;
    font-size: 10px !important;
    right: -70px;
  }
}
.footer__bnr .txtArea .note span {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4rem;
  color: red;
}
@media screen and (max-width: 1024px) {
  .footer__bnr .txtArea .note span {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
@media screen and (max-width: 1024px) {
  .footer__bnr .txtArea .note span {
    font-size: 10px !important;
  }
}
.footer__bnr:hover::before {
  top: 0;
  right: 0;
  transition: all 0.3s;
}
.footer__bnr:hover::after {
  background-color: rgba(0, 0, 0, 0.2);
}
.footer__bnr:hover .txt {
  background-color: var(--main);
}
.footer__bnr:hover .note {
  transform: rotate(15deg);
  transition: all 0.3s;
}

.copyright {
  width: 90%;
  margin: auto;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .copyright {
    padding-top: 10px;
  }
}
.copyright p {
  color: var(--white);
}

.js-fadeUp {
  opacity: 0;
}
.js-fadeUp.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeDown {
  opacity: 0;
}
.js-fadeDown.is-show {
  animation-name: fadeDownAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeIn {
  opacity: 0;
}
.js-fadeIn.is-show {
  animation-name: fadeInAnime;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-fadeIn70 {
  opacity: 0;
}
.js-fadeIn70.is-show {
  animation-name: fadeInAnime70;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}

@keyframes fadeInAnime70 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}
.js-fadeIn60 {
  opacity: 0;
}
.js-fadeIn60.is-show {
  animation-name: fadeInAnime60;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInAnime60 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.6;
  }
}
.js-fadeIn40 {
  opacity: 0;
}
.js-fadeIn40.is-show {
  animation-name: fadeInAnime40;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}

@keyframes fadeInAnime40 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.4;
  }
}
.js-fadeInRight {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}
.js-fadeInRight.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-fadeInRight10 {
  opacity: 0;
  transform: translate(10%, 0);
  transition: 0.8s;
}
.js-fadeInRight10.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-fadeInLeft {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2.5s ease-in-out;
}
.js-fadeInLeft.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-diagonal {
  transform: translate(-30%, 30%);
  transition: 1s;
}
.js-diagonal.is-show {
  transform: translate(0, 0);
}

.js-diagonal_leftTop_rightBottom {
  opacity: 0;
  transform: translate(-30%, -30%);
  transition: 3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .js-diagonal_leftTop_rightBottom {
    transition: 1s ease-in-out;
  }
}
.js-diagonal_leftTop_rightBottom.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

.js-diagonal_rightToLeft {
  transform: translate(30%, 30%);
  transition: 1s;
}
.js-diagonal_rightToLeft.is-show {
  transform: translate(0, 0);
}

.js-UpDown {
  opacity: 0;
}
.js-UpDown.is-show {
  animation-name: slideTextY-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes slideTextY-100 {
  from {
    transform: translateY(-100%); /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
.js-leftToRight {
  transform: scale(0, 1); /*X方向0、Y方向1*/
}
.js-leftToRight.is-show {
  animation-name: fadeInLeftToRight;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes fadeInLeftToRight {
  from {
    transform: scale(0, 1); /*X方向0、Y方向1*/
    transform-origin: left;
  }
  to {
    transform: scale(1, 1); /*X方向にスケール拡大*/
    transform-origin: left;
  }
}
.js-scaleUp {
  transform: scale(0, 0); /*X方向0、Y方向1*/
}
.js-scaleUp.is-show {
  animation-name: scaleUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}

@keyframes scaleUp {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 90%;
  }
}
.js-rotate {
  transform: rotate(-5deg);
  opacity: 0;
}
.js-rotate.is-show {
  animation-name: fadeInRotate;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes fadeInRotate {
  from {
    transform: rotate(5deg);
    opacity: 0;
  }
  to {
    transform: rotate(0deg);
    opacity: 1;
  }
}
#booking-package {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 1024px) {
  #booking-package {
    font-size: 12px !important;
  }
}

.start_booking_package {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 1300px) {
  .start_booking_package {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .start_booking_package .calendarHeader {
    align-items: center;
  }
}
.start_booking_package .calendarHeader .calendarData {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 400px) {
  .start_booking_package .calendarHeader .calendarData {
    font-size: 12px;
  }
}
.start_booking_package .arrowLeft,
.start_booking_package .arrowRight {
  display: flex;
  align-items: center;
}
.start_booking_package .arrowLeft span,
.start_booking_package .arrowRight span {
  display: flex;
  align-items: center;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .start_booking_package .arrowLeft span,
  .start_booking_package .arrowRight span {
    font-size: 10px;
  }
}
.start_booking_package .arrowLeft span::after,
.start_booking_package .arrowRight span::after {
  content: "月";
}

#booking-package_inputFormPanel .title_in_form {
  padding-bottom: 30px !important;
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .title_in_form {
    padding-bottom: 15px !important;
  }
}
#booking-package_inputFormPanel .row {
  display: flex;
  justify-content: space-between;
  padding: 0 !important;
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .row {
    flex-direction: column;
  }
}
#booking-package_inputFormPanel .row.total_amount {
  display: none !important;
}
#booking-package_inputFormPanel .name {
  width: 40%;
  color: var(--main);
  font-weight: 700 !important;
  padding: 10px 15px;
  display: flex !important;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .name {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .name {
    margin-bottom: 0;
  }
}
#booking-package_inputFormPanel .name a {
  font-weight: 700 !important;
  text-decoration: underline;
}
#booking-package_inputFormPanel .name a:hover {
  cursor: pointer;
}
#booking-package_inputFormPanel .name.required {
  color: var(--gold) !important;
  background-color: unset !important;
  font-size: 1.6rem;
  font-weight: 700 !important;
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .name.required {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
#booking-package_inputFormPanel .name.required::after {
  content: "必須";
  background-color: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  margin-left: 10px;
  padding: 5px 10px;
  position: unset;
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .name.required::after {
    font-size: 10px;
    padding: 3px 10px;
  }
}
#booking-package_inputFormPanel .value {
  width: 60%;
  font-size: 1.6rem;
  padding: 25px 15px;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .value {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .value {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .value {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  #booking-package_inputFormPanel .value {
    padding: 10px 15px;
  }
}
#booking-package_inputFormPanel .value .bookingDate {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
#booking-package_inputFormPanel .value .bookingDate::before {
  content: "";
  display: block;
  background-color: var(--white);
  width: 5px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
#booking-package_inputFormPanel .value .bookingTime {
  display: none;
}
#booking-package_inputFormPanel .cartPanel {
  margin-top: 30px !important;
}
#booking-package_inputFormPanel .cartPanel .book_now_button {
  padding: 15px 20px;
  background: var(--main);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 300px;
  margin: 0 auto;
  border: 1px solid var(--main);
  margin: 0 auto;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .cartPanel .book_now_button {
    padding: 7.5px 10px;
  }
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .cartPanel .book_now_button {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .cartPanel .book_now_button {
    width: 150px;
  }
}
#booking-package_inputFormPanel .cartPanel .book_now_button:hover {
  background: #3ec559;
  transition: all 0.3s;
}
#booking-package_inputFormPanel .bottomBarPanel .return_form_button {
  padding: 15px 20px;
  background: var(--white);
  color: var(--main);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 300px;
  margin: 0 auto;
  border: 1px solid var(--main);
  margin: 0 auto;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .bottomBarPanel .return_form_button {
    padding: 7.5px 10px;
  }
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .bottomBarPanel .return_form_button {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .bottomBarPanel .return_form_button {
    width: 150px;
  }
}
#booking-package_inputFormPanel .bottomBarPanel .return_form_button:hover {
  transition: all 0.3s;
  background: #3ec559;
  color: var(--white);
}

#booking-package input[type=text],
#booking-package textarea {
  background-color: #f3f3f3;
  border-radius: 5px;
  font-size: 1.4rem;
  padding: 10px 15px;
  width: 100%;
  color: #1a1a1a;
  border: none !important;
}

.contact .bnr_tel {
  background-size: auto auto;
  background-color: #fff;
  background-image: repeating-linear-gradient(130deg, transparent, transparent 3px, #ebf0f3 3px, #ebf0f3 6px);
  padding: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .contact .bnr_tel {
    background-image: repeating-linear-gradient(130deg, transparent, transparent 2px, #ebf0f3 2px, #ebf0f3 4px);
  }
}
@media screen and (max-width: 1024px) {
  .contact .bnr_tel {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .contact .bnr_tel {
    margin-bottom: 30px;
  }
}
.contact .bnr_tel .txt {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--main);
}
.contact .bnr_tel .cf-tel-number {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 4rem;
  letter-spacing: 0.1em;
  color: var(--main);
  display: flex !important;
}
@media screen and (max-width: 1024px) {
  .contact .bnr_tel .cf-tel-number {
    font-size: clamp(12px, 2rem, 2rem);
  }
}
.contact .bnr_tel .cf-tel-number svg path:nth-of-type(1) {
  stroke: var(--main);
}
.contact .bnr_tel .cf-tel-number svg path:nth-of-type(2) {
  fill: var(--main);
}

.contact-form01 {
  border: none !important;
}
.contact-form01 tbody {
  border: none !important;
}
.contact-form01 th,
.contact-form01 td {
  border: none;
  border-bottom: #ddd solid 1px;
}
.contact-form01 th {
  background-color: unset;
  color: var(--main);
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .contact-form01 th {
    border-bottom: unset;
    text-align: left;
  }
}
.contact-form01 td {
  text-align: left;
}
.contact-form01 tr:last-of-type th,
.contact-form01 tr:last-of-type td {
  border: none;
}

.wpcf7-list-item-label {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .wpcf7-list-item-label {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}

@media screen and (max-width: 600px) {
  .wpcf7-list-item {
    display: block;
    margin: 0;
  }
}

.wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
}

.wpcf7-submit {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .wpcf7-submit {
    font-size: clamp(12px, 1rem, 1rem);
  }
}

input[type=text],
textarea,
input[type=email],
input[type=tel] {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  input[type=text],
  textarea,
  input[type=email],
  input[type=tel] {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}

@media screen and (max-width: 1024px) {
  .privacy-check {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    margin-bottom: 30px;
  }
}
.privacy-check a {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .privacy-check a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}