@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Maru+Gothic:wght@300;400;500;700;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);
  }
}

@media screen and (max-width: 1024px) {
  #page-top {
    bottom: 65px;
  }
}

.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;
  aspect-ratio: 832/316;
  -webkit-mask-image: url(../img/mask.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/mask.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  position: relative;
  z-index: 2;
}

.parallax-wrap img {
  aspect-ratio: 832/316;
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  overflow: hidden;
}

.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;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .title01 {
    margin-bottom: 30px;
  }
}
.title01 .ja {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  color: var(--txt);
  letter-spacing: 0.2em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .title01 .ja {
    font-size: clamp(12px, 2rem, 2rem);
  }
}
.title01 .en {
  display: block;
  text-transform: capitalize;
  font-size: 2rem;
  font-weight: 900;
  color: var(--beige03);
  line-height: 1;
  text-align: center;
  margin: auto;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .title01 .en {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .title01 .en {
    margin-bottom: 8px;
  }
}
.title01.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.title02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 3rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 60px;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .title02 {
    gap: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .title02 {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .title02 {
    margin-bottom: 30px;
  }
}
.title02.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}
.title02::before, .title02::after {
  content: "";
  aspect-ratio: 47/12;
  display: block;
  width: 35px;
  height: auto;
  -webkit-mask-image: url(../img/title_deco02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/title_deco02.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--yellow);
}
@media screen and (max-width: 1024px) {
  .title02::before, .title02::after {
    width: 17.5px;
  }
}
.title02::before {
  transform: scale(1, -1);
}

.title03 {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
  position: relative;
  transition: color 0ms 450ms;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .title03 {
    margin-bottom: 30px;
  }
}
.title03 .ja {
  display: block;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  color: var(--txt);
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .title03 .ja {
    font-size: clamp(12px, 1.8rem, 1.8rem);
  }
}
.title03 .en {
  display: block;
  text-transform: capitalize;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin: auto;
  color: var(--txt);
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .title03 .en {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .title03 .en {
    margin-bottom: 8px;
  }
}
.title03.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.title04 {
  aspect-ratio: 519/111;
  width: 500px;
  height: auto;
  background-image: url(../img/title_deco04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding-top: 10px;
  margin: auto;
  margin-bottom: 60px;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .title04 {
    width: 250px;
  }
}
@media screen and (max-width: 1024px) {
  .title04 {
    font-size: clamp(12px, 1.2rem, 1.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .title04 {
    padding-top: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .title04 {
    margin-bottom: 30px;
  }
}
.title04.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.title05 {
  width: 500px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  margin: auto;
  margin-bottom: 60px;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .title05 {
    width: 250px;
  }
}
@media screen and (max-width: 1024px) {
  .title05 {
    font-size: clamp(12px, 1.2rem, 1.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .title05 {
    margin-bottom: 30px;
  }
}
.title05::after {
  content: "";
  display: block;
  aspect-ratio: 1560/63;
  -webkit-mask-image: url(../img/line02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/line02.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--main);
  width: 100%;
  height: auto;
  margin: auto;
  z-index: 1;
}
.title05.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.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 {
  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 {
  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: 1024/770;
  -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: 10px;
  height: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 22px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .btn.btn01::before {
    width: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .btn.btn01::before {
    height: 4px;
  }
}
@media screen and (max-width: 1024px) {
  .btn.btn01::before {
    right: 11px;
  }
}
.btn.btn01:hover {
  background-color: var(--white) !important;
  color: var(--main);
}
.btn.btn01:hover::before {
  background-color: var(--main);
}
.btn.btn01.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.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;
}
@media screen and (max-width: 1024px) {
  .link {
    gap: 8px;
  }
}
.link::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 30px;
  height: 30px;
  background-image: url(../img/icon-arrow-green-hover.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .link::before {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .link::before {
    height: 15px;
  }
}
.link .btn-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: unset;
  left: 10px;
}
@media screen and (max-width: 1024px) {
  .link .btn-arrow {
    left: 5px;
  }
}
.link .btn-arrow path {
  fill: var(--green);
}

.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(--main);
  border-top: solid 1px var(--main);
}
@media screen and (max-width: 1024px) {
  .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: 1024px) {
  .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-1 {
  background-color: unset !important;
}
.tablepress.tablepress-id-1 > :not(caption) > * > * {
  border: none !important;
}
.tablepress.tablepress-id-1 tbody tr {
  border-bottom: solid 1px #ddd;
}
.tablepress.tablepress-id-1 tbody td {
  font-size: 1.6rem;
  border-right: none !important;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-1 tbody td {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.tablepress.tablepress-id-1 tbody td.column-1 {
  width: 30%;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-1 tbody td.column-1 {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-1 tbody td.column-1 {
    display: block;
    margin-bottom: 0;
  }
}
.tablepress.tablepress-id-1 tbody td.column-2 {
  width: 70%;
  background-color: unset !important;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-1 tbody td.column-2 {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-1 tbody td.column-2 {
    border-top: none;
    padding-top: 0;
  }
}
.tablepress.tablepress-id-2 > :not(caption) > * > * {
  border: none !important;
}
.tablepress.tablepress-id-2 tr {
  border-bottom: solid 1px #ddd !important;
}
.tablepress.tablepress-id-2 tbody td {
  text-align: left;
}
.tablepress.tablepress-id-2 tbody td.column-1 {
  width: 30%;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-2 tbody td.column-1 {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-2 tbody td.column-1 {
    display: block;
    margin-bottom: 0;
    background-color: var(--main);
    color: var(--white);
    padding: 5px;
    margin-top: 10px;
    border-radius: 5px;
  }
}
.tablepress.tablepress-id-2 tbody td.column-2 {
  width: unset;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-2 tbody td.column-2 {
    display: block;
    margin-bottom: 0;
    padding: 5px 0 0;
  }
}
.tablepress.tablepress-id-2 tbody td.column-3 {
  width: unset;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-2 tbody td.column-3 {
    display: block;
    margin-bottom: 0;
    padding: 0 0 5px;
  }
}

.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;
  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-2 {
  text-align: left;
  padding-bottom: 0;
  margin-bottom: 0;
}
.tablepress-table-description.tablepress-table-description-id-2 span {
  display: inline-block;
  color: var(--main);
  margin-right: 16px;
}
@media screen and (max-width: 1024px) {
  .tablepress-table-description.tablepress-table-description-id-2 span {
    margin-right: 8px;
  }
}

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

.slider__wrap {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  margin-top: 120px;
}
@media screen and (max-width: 1024px) {
  .slider__wrap {
    margin-top: 60px;
  }
}
.slider__wrap::before {
  content: "";
  display: block;
  aspect-ratio: 470/436;
  background-image: url(../img/deco03.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  top: -40px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .slider__wrap::before {
    top: -20px;
  }
}
.slider__wrap::after {
  content: "";
  display: block;
  aspect-ratio: 544/371;
  background-image: url(../img/deco01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  bottom: -6%;
  z-index: 1;
}
.slider__wrap .slider {
  display: block;
  aspect-ratio: 960/400;
  -webkit-mask-image: url(../img/shape01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/shape01.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  width: 95%;
  height: auto;
  margin: auto;
}

.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(--bg);
}
body.home main {
  overflow: hidden;
}
body:not(.home) {
  background-color: var(--white);
}
body:not(.home) .footer {
  background-color: var(--bg);
}

.f-news {
  position: relative;
  padding-bottom: 14vw;
}
.f-news::before {
  content: "";
  display: block;
  aspect-ratio: 832/44;
  -webkit-mask-image: url(../img/wave01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/wave01.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--white);
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -1vw;
  z-index: 1;
}
.f-news .news {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-news .news {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .news {
    margin-bottom: 40px;
  }
}
.f-news .news .titleArea {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .f-news .news .titleArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-news .news .titleArea .title01 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .f-news .news .titleArea .title01 {
    gap: 5px;
  }
}
.f-news .news .titleArea .title01 .ja {
  font-size: 3rem;
}
@media screen and (max-width: 1024px) {
  .f-news .news .titleArea .title01 .ja {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
.f-news .news .titleArea .title01::before, .f-news .news .titleArea .title01::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/title05.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 15px;
  height: auto;
  margin: auto;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .f-news .news .titleArea .title01::before, .f-news .news .titleArea .title01::after {
    width: 7.5px;
  }
}
.f-news .news .content {
  width: 75%;
  padding: 40px;
  background-color: var(--white);
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .f-news .news .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .news .content {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .news .content {
    border-radius: 10px;
  }
}
.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-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  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 .bnr {
  display: block;
  padding: 10px;
  max-width: 800px;
  margin: auto;
  margin-bottom: 80px;
  aspect-ratio: 800/280;
  height: auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-news .bnr {
    padding: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .bnr {
    max-width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .bnr {
    margin-bottom: 40px;
  }
}
.f-news .bnr::before {
  content: "";
  display: block;
  aspect-ratio: 800/280;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-news .bnr::before {
    border-radius: 5px;
  }
}
.f-news .bnr .box {
  overflow: hidden;
  background-color: var(--white);
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .f-news .bnr .box {
    flex-direction: row;
  }
}
.f-news .bnr .box .img {
  width: 50%;
  aspect-ratio: 3/2;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .f-news .bnr .box .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .bnr .box .img {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (max-width: 400px) {
  .f-news .bnr .box .img {
    max-height: 300px;
  }
}
.f-news .bnr .box .img img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: all 0.3s;
}
.f-news .bnr .box .txtArea {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .f-news .bnr .box .txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-news .bnr .box .txtArea::before {
  content: "";
  display: block;
  width: 40px;
  height: auto;
  z-index: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .f-news .bnr .box .txtArea::before {
    width: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .bnr .box .txtArea::before {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 400px) {
  .f-news .bnr .box .txtArea::before {
    width: 15px;
  }
}
.f-news .bnr .box .txtArea .title01 {
  margin-top: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .f-news .bnr .box .txtArea .title01 {
    margin-bottom: 10px;
  }
}
.f-news .bnr .box .txtArea .title01 .ja {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .f-news .bnr .box .txtArea .title01 .ja {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 400px) {
  .f-news .bnr .box .txtArea .title01 .ja {
    font-size: 10px;
  }
}
.f-news .bnr .box .txtArea .title01::after {
  display: none;
}
.f-news .bnr .box .txtArea .txt {
  margin-bottom: 0;
  color: var(--white);
  padding: 0px 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .f-news .bnr .box .txtArea .txt {
    padding: 0px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .bnr .box .txtArea .txt {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
@media screen and (max-width: 400px) {
  .f-news .bnr .box .txtArea .txt {
    font-size: 10px;
  }
}
.f-news .bnr:hover .box {
  transition: all 0.3s;
}
.f-news .bnr:hover .img img {
  transform: scale(1.02);
  transition: all 0.3s;
}
.f-news .parent {
  position: relative;
}
.f-news .parent .deco._leaf01 {
  background-image: url(../img/leaf01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 1;
  width: 10%;
  height: auto;
  top: -20%;
}
.f-news .parent .deco._leaf02 {
  background-image: url(../img/leaf02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 1;
  width: 6%;
  height: auto;
  bottom: -20%;
  right: 0;
}
.f-news .parent .bnr::before {
  background-image: url(../img/frame02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.f-news .parent .bnr .txtArea::before {
  aspect-ratio: 554/538;
  -webkit-mask-image: url(../img/bnr_icon-02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/bnr_icon-02.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--orange_deep01);
}
.f-news .parent .bnr .txtArea .txt {
  background-color: var(--orange_deep01);
}
.f-news .parent .bnr:hover .box {
  background-color: var(--orange_light02);
}
.f-news .insta {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-news .insta {
    margin-bottom: 40px;
  }
}
.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(--txt);
}
@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(--main) !important;
}
.f-news #sb_instagram .sbi_follow_btn a span,
.f-news #sb_instagram #sbi_load .sbi_load_btn span {
  color: var(--white) !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-news .ouchien {
  position: relative;
}
.f-news .ouchien .deco._leaf03 {
  background-image: url(../img/leaf03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 1;
  width: 8%;
  height: auto;
  right: 0;
  bottom: -20%;
}
.f-news .ouchien .deco._leaf04 {
  background-image: url(../img/leaf04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 1;
  width: 3%;
  height: auto;
  top: -10%;
  left: 10%;
}
.f-news .ouchien .bnr::before {
  background-image: url(../img/frame01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.f-news .ouchien .bnr .txtArea::before {
  aspect-ratio: 511/523;
  -webkit-mask-image: url(../img/bnr_icon-01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/bnr_icon-01.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--green);
}
.f-news .ouchien .bnr .txtArea .txt {
  background-color: var(--green);
}
.f-news .ouchien .bnr:hover .box {
  background-color: var(--green_light);
}
.f-news .movie {
  position: relative;
}
.f-news .movie::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/leaf02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5%;
  height: auto;
  position: absolute;
  top: 30%;
  left: -5%;
  z-index: 1;
}
.f-news .movie iframe {
  position: relative;
  z-index: 2;
  display: block;
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  max-width: 700px;
  margin: auto;
}

.f-education {
  background-color: var(--white);
  position: relative;
}
.f-education::before {
  content: "";
  display: block;
  aspect-ratio: 1224/264;
  background-image: url(../img/bg_cloud01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 90%;
  height: auto;
  position: absolute;
  top: -10%;
  left: 5%;
  z-index: 1;
}
.f-education::after {
  content: "";
  display: block;
  aspect-ratio: 832/44;
  -webkit-mask-image: url(../img/wave01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/wave01.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff8dc;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -1vw;
  z-index: 1;
}
.f-education .title01 {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .f-education .title01 {
    margin-bottom: 50px;
  }
}
.f-education .goal {
  margin-bottom: 80px;
  border: solid 10px var(--beige);
  background-color: var(--white);
  border-radius: 20px;
  max-width: 800px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-education .goal {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .f-education .goal {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-education .goal {
    max-width: 400px;
  }
}
.f-education .goal::before {
  content: "";
  display: block;
  aspect-ratio: 367/412;
  background-image: url(../img/flower01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15%;
  height: auto;
  position: absolute;
  bottom: -10%;
  left: -7%;
  z-index: 1;
  opacity: 0.8;
}
.f-education .goal::after {
  content: "";
  display: block;
  aspect-ratio: 562/420;
  background-image: url(../img/chow02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15%;
  height: auto;
  position: absolute;
  top: 5%;
  right: -8%;
  z-index: 1;
  opacity: 0.8;
}
.f-education .goal .title04 {
  margin-top: -50px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .f-education .goal .title04 {
    margin-top: -25px;
  }
}
@media screen and (max-width: 1024px) {
  .f-education .goal .title04 {
    margin-bottom: 10px;
  }
}
.f-education .goal__list {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-education .goal__list {
    margin-bottom: 30px;
  }
}
.f-education .goal__item .txt {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border-bottom: dotted 8px var(--beige);
}
@media screen and (max-width: 1024px) {
  .f-education .goal__item .txt {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.f-education .education {
  max-width: 1000px;
}
@media screen and (max-width: 1024px) {
  .f-education .education {
    max-width: 500px;
  }
}
.f-education .education__item {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-education .education__item {
    margin-bottom: 40px;
  }
}
.f-education .education__item .box {
  justify-content: space-between;
}
.f-education .education__item .box .txtArea {
  width: 65%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-education .education__item .box .txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-education .education__item .box .txtArea::before {
  content: "";
  display: block;
  aspect-ratio: 532/210;
  background-image: url(../img/tree03.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30%;
  height: auto;
  position: absolute;
  bottom: -20px;
  left: -10%;
  z-index: 1;
  opacity: 80%;
}
@media screen and (max-width: 1024px) {
  .f-education .education__item .box .txtArea::before {
    bottom: -10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-education .education__item .box .txtArea::before {
    position: unset;
  }
}
.f-education .education__item .box .img {
  width: 30%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-education .education__item .box .img {
    width: 70%;
    margin: auto;
  }
}
.f-education .education__item .box .img::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/circle05.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 40%;
  height: auto;
  position: absolute;
  top: -10%;
  right: -20%;
  z-index: 0;
  opacity: 0.3;
}
.f-education .education__item .box .img img {
  border-radius: 20px;
  aspect-ratio: 1383/1114;
  -webkit-mask-image: url(../img/shape02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/shape02.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
@media screen and (max-width: 1024px) {
  .f-education .education__item .box .img img {
    border-radius: 10px;
  }
}
.f-education .education__item:nth-of-type(even) .box {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .f-education .education__item:nth-of-type(even) .box {
    flex-direction: column;
  }
}
.f-education .education__item:nth-of-type(even) .box .img::before {
  right: unset;
  top: 12vw;
  left: -20%;
}
.f-education .education__item:nth-of-type(even) .box .txtArea::before {
  aspect-ratio: 467/246;
  background-image: url(../img/tree04.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30%;
  height: auto;
  position: absolute;
  bottom: -30%;
  left: unset;
  right: -10%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-education .education__item:nth-of-type(even) .box .txtArea::before {
    position: unset;
    margin-left: auto;
  }
}
.f-education .education__item .title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 30px;
  border-bottom: dotted 2px var(--beige);
}
@media screen and (max-width: 1024px) {
  .f-education .education__item .title {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-education .education__item .title {
    font-size: clamp(12px, 1.2rem, 1.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-education .education__item .title {
    margin-bottom: 15px;
  }
}
.f-education .education__item .title::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/cicle02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-education .education__item .title::before {
    width: 10px;
  }
}

.f-activity {
  position: relative;
}
.f-activity .deco._01 {
  aspect-ratio: 1285/568;
  background-image: url(../img/branch01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 25%;
  height: auto;
  position: absolute;
  top: -1%;
  left: 0%;
  z-index: 2;
}
.f-activity .deco._02 {
  aspect-ratio: 1670/696;
  background-image: url(../img/branch02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30%;
  height: auto;
  position: absolute;
  top: 3%;
  right: 0%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-activity .deco._02 {
    top: 0;
  }
}
.f-activity .features__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .f-activity .features__list {
    flex-direction: column;
  }
}
.f-activity .features__item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .f-activity .features__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-activity .features__item.is-show:nth-of-type(1) {
  animation-delay: 0.3s;
}
@media screen and (max-width: 1024px) {
  .f-activity .features__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.f-activity .features__item.is-show:nth-of-type(2) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .f-activity .features__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.f-activity .features__item.is-show:nth-of-type(3) {
  animation-delay: 0.9s;
}
@media screen and (max-width: 1024px) {
  .f-activity .features__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.f-activity .features__item.is-show:nth-of-type(4) {
  animation-delay: 1.2s;
}
@media screen and (max-width: 1024px) {
  .f-activity .features__item.is-show:nth-of-type(4) {
    animation-delay: unset;
  }
}
.f-activity .features__item.is-show:nth-of-type(5) {
  animation-delay: 1.5s;
}
@media screen and (max-width: 1024px) {
  .f-activity .features__item.is-show:nth-of-type(5) {
    animation-delay: unset;
  }
}
@media screen and (max-width: 1024px) {
  .f-activity .features__item .img {
    width: 80%;
    margin: auto;
  }
}
.f-activity .features__item .img img {
  aspect-ratio: 1383/1114;
  -webkit-mask-image: url(../img/shape02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/shape02.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.f-activity .features__item .content {
  position: relative;
  z-index: 2;
}
.f-activity .features__item .title {
  font-size: 1.0416666667vw;
  font-weight: 700;
  letter-spacing: 0.15em;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5208333333vw 1.5625vw;
  background-color: var(--main);
  color: var(--white);
  border-radius: 10px;
  margin: auto;
  margin-top: -40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .f-activity .features__item .title {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-activity .features__item .title {
    margin-top: -20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-activity .features__item .title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-activity .features__item .title {
    font-size: 4vw;
  }
}
.f-activity .event {
  position: relative;
}
.f-activity .event__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  position: relative;
  z-index: 2;
}
.f-activity .event__item {
  width: 47%;
  display: flex;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .f-activity .event__item {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .f-activity .event__item {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-activity .event__item {
    margin-bottom: 15px;
  }
}
.f-activity .event__item .img {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .f-activity .event__item .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .f-activity .event__item .img {
    margin-bottom: -20px;
  }
}
.f-activity .event__item .img img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
}
.f-activity .event__item .content {
  width: 50%;
  padding: 1.0416666667vw;
}
@media screen and (max-width: 1024px) {
  .f-activity .event__item .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-activity .event__item .content {
    margin-bottom: 0;
  }
}
.f-activity .event__item .content .title {
  background-color: var(--main);
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  padding: 0px 20px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-activity .event__item .content .title {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-activity .event__item .content .title {
    padding: 0px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-activity .event__item .content .title {
    border-radius: 5px;
  }
}

.f-preschool {
  position: relative;
  background-color: var(--white);
  background-size: auto auto;
  background-size: auto auto;
  background-color: #fff;
  background-image: repeating-linear-gradient(130deg, transparent, transparent 3px, #f8f7e8 3px, #f8f7e8 6px);
}
@media screen and (max-width: 1024px) {
  .f-preschool {
    background-image: repeating-linear-gradient(130deg, transparent, transparent 2px, #f8f7e8 2px, #f8f7e8 4px);
  }
}
.f-preschool::before {
  content: "";
  display: block;
  aspect-ratio: 832/44;
  -webkit-mask-image: url(../img/wave01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/wave01.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff8dc;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: -1vw;
  z-index: 2;
  transform: scale(-1, -1);
}
.f-preschool::after {
  content: "";
  display: block;
  aspect-ratio: 2000/36;
  -webkit-mask-image: url(../img/wave02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/wave02.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff8dc;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -1vw;
  z-index: 1;
}
.f-preschool .deco._flag {
  width: 100%;
  opacity: 80%;
}
.f-preschool .deco._flag::before, .f-preschool .deco._flag::after {
  content: "";
  display: block;
  aspect-ratio: 1073/519;
  width: 25%;
  height: auto;
  background-image: url(../img/flag01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  top: 0;
}
.f-preschool .deco._flag::before {
  left: 0%;
}
.f-preschool .deco._flag::after {
  right: 0%;
  transform: scale(-1, 1);
}
.f-preschool .deco._mount {
  aspect-ratio: 2315/188;
  background-image: url(../img/mount01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 90%;
  height: auto;
  position: absolute;
  bottom: -1vw;
  left: 5%;
  z-index: 1;
}
.f-preschool .pre {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .f-preschool .pre {
    margin-bottom: 50px;
  }
}
.f-preschool .pre .leadArea {
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-preschool .pre .leadArea {
    margin-bottom: 40px;
  }
}
.f-preschool .pre .leadArea::before {
  content: "";
  display: block;
  position: absolute;
  width: 15%;
  height: auto;
  aspect-ratio: 339/189;
  background-image: url(../img/pre02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-position: bottom;
  top: 30%;
  left: 0;
}
.f-preschool .pre .leadArea::after {
  content: "";
  display: block;
  position: absolute;
  width: 20%;
  height: auto;
  aspect-ratio: 699/371;
  background-image: url(../img/pre01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-position: bottom;
  top: 0%;
  right: 0;
}
.f-preschool .pre .leadArea .img {
  width: 30%;
  margin: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .f-preschool .pre .leadArea .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-preschool .pre .leadArea .img {
    margin-bottom: 15px;
  }
}
.f-preschool .pre .leadArea .img img {
  aspect-ratio: 1383/1114;
  -webkit-mask-image: url(../img/shape02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/shape02.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.f-preschool .pre .leadArea .txt {
  width: 65%;
  font-size: 1.8rem;
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .f-preschool .pre .leadArea .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-preschool .pre .leadArea .txt {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.f-preschool .pre .listArea {
  position: relative;
}
.f-preschool .pre__item {
  background-color: var(--white);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .f-preschool .pre__item {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-preschool .pre__item {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-preschool .pre__item {
    margin-bottom: 15px;
  }
}
.f-preschool .pre__item .title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-bottom: dotted 5px var(--beige);
  border-bottom: dotted 5px #cce5ae;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .f-preschool .pre__item .title {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-preschool .pre__item .title {
    gap: 5px;
  }
}
.f-preschool .pre__item .title::before {
  content: "";
  display: block;
  aspect-ratio: 200/145;
  background-image: url(../img/pre03.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-preschool .pre__item .title::before {
    width: 8px;
  }
}
.f-preschool .event {
  position: relative;
}
.f-preschool .event::before, .f-preschool .event::after {
  content: "";
  display: block;
  position: absolute;
  height: auto;
}
.f-preschool .event::before {
  aspect-ratio: 604/426;
  background-image: url(../img/event02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20%;
  top: 10%;
  left: -10%;
}
.f-preschool .event::after {
  aspect-ratio: 417/476;
  background-image: url(../img/event01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 10%;
  top: 0;
  right: 0;
}
.f-preschool .event .title04 {
  margin-top: 0;
  margin-bottom: 0px;
  background-image: unset;
  -webkit-mask-image: url(../img/title_deco04.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/title_deco04.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #cce5ae;
  background-color: var(--green);
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .f-preschool .event .title04 {
    margin-bottom: 0px;
  }
}
.f-preschool .event__pdf {
  display: block;
  width: 70%;
  margin: auto;
  border: solid 5px var(--beige);
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-preschool .event__pdf {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-preschool .event__pdf {
    margin-bottom: 30px;
  }
}
.f-preschool .event .btn.btn01 {
  background-color: var(--green);
  border: solid 1px var(--green);
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  .f-preschool .event .btn.btn01 {
    max-width: 250px;
  }
}
.f-preschool .event .btn.btn01:hover {
  background-color: var(--white);
  color: var(--green);
}
.f-preschool .event .btn.btn01:hover::before {
  background-color: var(--green);
}

.f-guide .tab-panel-b {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-guide .tab-panel-b {
    margin-bottom: 40px;
  }
}
.f-guide .table__wrap {
  background-color: var(--white);
  border-radius: 40px;
  padding: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-guide .table__wrap {
    border-radius: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-guide .table__wrap {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-guide .table__wrap {
    margin-bottom: 40px;
  }
}
.f-guide .pdf_dl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background-color: var(--main);
  color: var(--white);
  max-width: 400px;
  border-radius: 10px;
  padding: 10px 30px;
  font-size: 2rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .f-guide .pdf_dl {
    gap: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .f-guide .pdf_dl {
    max-width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .f-guide .pdf_dl {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-guide .pdf_dl {
    padding: 5px 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-guide .pdf_dl {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.f-guide .pdf_dl::before {
  content: "";
  display: block;
  aspect-ratio: 768/1024;
  -webkit-mask-image: url(../img/icon-pdf.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon-pdf.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  width: 20px;
  height: auto;
  background-color: var(--white);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-guide .pdf_dl::before {
    width: 10px;
  }
}

.f-recruit {
  position: relative;
  background-color: var(--white);
  background-size: auto auto;
  background-size: auto auto;
  background-color: #fff;
  background-image: repeating-linear-gradient(130deg, transparent, transparent 3px, #f8f7e8 3px, #f8f7e8 6px);
  margin-top: -5vw;
  margin-bottom: -5vw;
  padding-bottom: 12.25vw;
}
@media screen and (max-width: 1024px) {
  .f-recruit {
    background-image: repeating-linear-gradient(130deg, transparent, transparent 2px, #f8f7e8 2px, #f8f7e8 4px);
  }
}
.f-recruit::before {
  content: "";
  display: block;
  aspect-ratio: 394/309;
  background-image: url(../img/leaf10.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 18%;
  height: auto;
  position: absolute;
  top: -3vw;
  left: 2vw;
  z-index: 2;
}
.f-recruit .title_flower {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-align: center;
  margin: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .title_flower {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .title_flower {
    margin-bottom: 30px;
  }
}
.f-recruit .title_flower::before {
  content: "";
  display: block;
  aspect-ratio: 420/173;
  background-image: url(../img/flower03.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 80px;
  height: auto;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-recruit .title_flower::before {
    width: 40px;
  }
}
.f-recruit .to_seeker {
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .to_seeker {
    margin-bottom: 40px;
  }
}
.f-recruit .to_seeker .img {
  width: 30%;
  margin: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .to_seeker .img {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .to_seeker .img {
    width: 80%;
    margin: auto;
    margin-bottom: 15px;
  }
}
.f-recruit .to_seeker .img img {
  aspect-ratio: 1383/1114;
  -webkit-mask-image: url(../img/shape02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/shape02.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.f-recruit .to_seeker .txtArea {
  width: 65%;
}
@media screen and (max-width: 1024px) {
  .f-recruit .to_seeker .txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-recruit .from_field__list {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__list {
    margin-bottom: 40px;
  }
}
.f-recruit .from_field__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item {
    margin-bottom: 20px;
  }
}
.f-recruit .from_field__item .img {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-recruit .from_field__item .img img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item .img img {
    border-radius: 5px;
  }
}
.f-recruit .from_field__item .txtArea {
  width: 57%;
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-top: 50px;
  margin-left: -10%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item .txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item .txtArea {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item .txtArea {
    padding: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item .txtArea {
    margin-top: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item .txtArea {
    margin-left: unset;
  }
}
.f-recruit .from_field__item .txtArea::before {
  content: "";
  display: block;
  aspect-ratio: 242/189;
  background-image: url(../img/leaf08.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15%;
  height: auto;
  position: absolute;
  right: -50px;
  bottom: -50px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item .txtArea::before {
    right: -25px;
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item .txtArea::before {
    bottom: -25px;
  }
}
.f-recruit .from_field__item .txtArea .name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--txt);
  border-bottom: 5px solid var(--beige);
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item .txtArea .name {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.f-recruit .from_field__item .faq__item {
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item .faq__item {
    margin-bottom: 10px;
  }
}
.f-recruit .from_field__item .faq__item:last-of-type {
  margin-bottom: 0;
}
.f-recruit .from_field__item ._q {
  padding-left: 35px;
  background-repeat: no-repeat;
  font-size: 1.6rem;
  padding-bottom: 10px;
  border-bottom: 1px dotted var(--beige);
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item ._q {
    padding-left: 17.5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item ._q {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item ._q {
    padding-bottom: 5px;
  }
}
.f-recruit .from_field__item ._q:hover {
  opacity: 0.7;
  cursor: pointer;
}
.f-recruit .from_field__item ._q .plus {
  display: inline-block;
  vertical-align: 0.3em;
  color: var(--beige);
  line-height: 1;
  width: 1em;
  height: 3px;
  background: currentColor;
  border-radius: 0.1em;
  position: absolute;
  top: 15px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item ._q .plus {
    top: 10px;
  }
}
.f-recruit .from_field__item ._q .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;
}
.f-recruit .from_field__item ._q .plus.active:before {
  transform: rotate(0deg);
}
.f-recruit .from_field__item ._a {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  padding-left: 35px;
  font-size: 1.6rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item ._a {
    padding-left: 17.5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .from_field__item ._a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.f-recruit .flow {
  position: relative;
}
.f-recruit .flow::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/leaf03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 7%;
  height: auto;
  position: absolute;
  top: 0;
  left: -2vw;
  z-index: 1;
  transform: rotate(-38deg);
}
.f-recruit .flow__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6%;
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__list {
    flex-direction: column;
  }
}
.f-recruit .flow__item {
  width: 20%;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item {
    margin-bottom: 20px;
  }
}
.f-recruit .flow__item.is-show:nth-of-type(1) {
  animation-delay: 0.3s;
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.f-recruit .flow__item.is-show:nth-of-type(2) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.f-recruit .flow__item.is-show:nth-of-type(3) {
  animation-delay: 0.9s;
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.f-recruit .flow__item.is-show:nth-of-type(4) {
  animation-delay: 1.2s;
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item.is-show:nth-of-type(4) {
    animation-delay: unset;
  }
}
.f-recruit .flow__item.is-show:nth-of-type(5) {
  animation-delay: 1.5s;
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item.is-show:nth-of-type(5) {
    animation-delay: unset;
  }
}
.f-recruit .flow__item svg {
  width: 10%;
  position: absolute;
  top: 20%;
  right: -16%;
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item svg {
    display: block;
    position: unset;
    transform: rotate(90deg);
    width: 16px;
    margin: auto;
  }
}
.f-recruit .flow__item svg path {
  fill: var(--main);
}
.f-recruit .flow__item:last-of-type svg {
  display: none;
}
.f-recruit .flow__item .img {
  aspect-ratio: 1;
  width: 70%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--main);
  margin: auto;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item .img {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item .img {
    width: 40%;
  }
}
.f-recruit .flow__item .img img {
  width: auto;
  height: 45%;
}
.f-recruit .flow__item .title {
  font-size: 20px;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-align: center;
  color: var(--main);
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item .title {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item .title {
    font-size: 14px;
  }
}
.f-recruit .flow__item .txt {
  background-color: var(--white);
  background-color: #fffcee;
  font-size: 1.4rem;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item .txt {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item .txt {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .flow__item .txt {
    background-color: var(--white);
  }
}
.f-recruit .recrit_info {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .recrit_info {
    margin-bottom: 40px;
  }
}
.f-recruit .recrit_info::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/leaf03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 7%;
  height: auto;
  position: absolute;
  top: 0;
  right: -2vw;
  z-index: 1;
  transform: rotate(38deg);
}
.f-recruit .movie {
  position: relative;
}
.f-recruit .movie::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/leaf08.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 7%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0vw;
  z-index: 1;
}
.f-recruit .movie iframe {
  display: block;
  width: 70%;
  aspect-ratio: 3/2;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .f-recruit .movie iframe {
    width: 100%;
    margin-bottom: 20px;
  }
}

.f-overview {
  background-color: var(--white);
  margin-top: -5vw;
  margin-bottom: -5vw;
  padding-bottom: 12.25vw;
  position: relative;
}
.f-overview::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/leaf01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10%;
  height: auto;
  position: absolute;
  top: -1vw;
  right: 6vw;
  z-index: 2;
}
.f-overview::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/leaf02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4%;
  height: auto;
  position: absolute;
  top: 10vw;
  left: 10vw;
  z-index: 2;
  transform: rotate(57deg);
}
.f-overview .deco._01 {
  aspect-ratio: 1;
  background-image: url(../img/leaf13.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4%;
  height: auto;
  position: absolute;
  bottom: 4vw;
  left: 10vw;
  z-index: 2;
  transform: rotate(55deg);
}
.f-overview .title04 {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .f-overview .title04 {
    margin-bottom: 20px;
  }
}
.f-overview .table__wrap,
.f-overview .feed__wrap {
  background-color: var(--white);
  border-radius: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-overview .table__wrap,
  .f-overview .feed__wrap {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-overview .table__wrap,
  .f-overview .feed__wrap {
    margin-bottom: 30px;
  }
}
.f-overview .map__list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-overview .map__list {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .f-overview .map__list {
    margin-bottom: 40px;
  }
}
.f-overview .map__item {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .f-overview .map__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-overview .map__item iframe {
  display: flex;
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
}
.f-overview .info_open {
  position: relative;
}
.f-overview .info_open::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/leaf02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4%;
  height: auto;
  position: absolute;
  top: 2vw;
  right: 10vw;
  z-index: 2;
}
.f-overview .news-list01 li {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .f-overview .news-list01 li {
    gap: 10px;
  }
}
.f-overview .news-list01 li:last-of-type {
  border-bottom: 1px solid #d1dee8;
}

.f-contact {
  background-color: var(--white);
  margin-top: -5vw;
  margin-bottom: -5vw;
}
.f-contact .bnr__list {
  max-width: 500px;
  margin: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__list {
    max-width: 250px;
  }
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__list {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__list {
    max-width: unset;
    width: 100%;
    padding: 10px;
  }
}
.f-contact .bnr__item {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__item {
    margin-bottom: 30px;
  }
}
.f-contact .bnr__item:nth-of-type(1) {
  background-color: var(--green);
  padding: 10px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__item:nth-of-type(1) {
    padding: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__item:nth-of-type(1) {
    border-radius: 5px;
  }
}
.f-contact .bnr__item:nth-of-type(1) a {
  display: block;
  border: dotted 5px var(--white);
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__item:nth-of-type(1) a {
    border-radius: 3px;
  }
}
.f-contact .bnr__item:nth-of-type(1) a .title {
  font-size: 3rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__item:nth-of-type(1) a .title {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__item:nth-of-type(1) a .title {
    margin-bottom: 5px;
  }
}
.f-contact .bnr__item:nth-of-type(1) a .txt {
  font-size: 1.4rem;
  color: var(--white);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__item:nth-of-type(1) a .txt {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.f-contact .bnr__item:nth-of-type(1) a:hover {
  background-color: var(--white);
  border: dotted 5px var(--green);
}
.f-contact .bnr__item:nth-of-type(1) a:hover .title {
  color: var(--green);
}
.f-contact .bnr__item:nth-of-type(1) a:hover .txt {
  color: var(--green);
}
.f-contact .bnr__item:nth-of-type(2) a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__item:nth-of-type(2) a {
    gap: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__item:nth-of-type(2) a {
    font-size: clamp(12px, 2rem, 2rem);
  }
}
.f-contact .bnr__item:nth-of-type(2) 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%;
  background-color: var(--main);
  width: 24px;
  margin-top: 6px;
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__item:nth-of-type(2) a::before {
    width: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .f-contact .bnr__item:nth-of-type(2) a::before {
    margin-top: 3px;
  }
}
.f-contact .bnr__item:nth-of-type(2) a:hover {
  color: var(--main);
}

.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 {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
}
.header.scrolled {
  background-color: white;
  border-radius: 999px;
  width: 95%;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: 16px;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .header.scrolled {
    width: 100%;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
  }
}
.header.scrolled .logo a {
  color: var(--main);
}
.header.scrolled .g-sub-nav {
  display: none;
}
.header .logo {
  max-width: 180px;
  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-inner {
  max-width: 1920px;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .header .header-inner {
    display: none;
  }
}
.header .g-menu-a-list {
  width: 100%;
}
.header .g-menu-a-list li {
  position: relative;
  padding: 0 0.5208333333vw;
}
.header .g-menu-a-list li::before {
  content: "";
  display: block;
  width: 1px;
  height: 50%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--txt);
  background-color: #ddd;
  z-index: 1;
}
.header .g-menu-a-list li .menu-image-title {
  font-size: 0.8333333333vw;
  text-align: center;
  line-height: 1.4;
}
.header .g-menu-a-list li .g-menu-icon-img-wrap::before {
  content: "";
  display: block;
  width: auto;
  height: 25px;
  background-color: var(--main);
  z-index: 1;
  margin: auto;
}
.header .g-menu-a-list li:hover .menu-image-title {
  color: var(--main);
  transition: all 0.3s;
}
.header .g-menu-a-list li:nth-of-type(1) .g-menu-icon-img-wrap::before {
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon-home.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon-home.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.header .g-menu-a-list li:nth-of-type(2) .g-menu-icon-img-wrap::before {
  aspect-ratio: 896/1024;
  -webkit-mask-image: url(../img/icon-news.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon-news.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.header .g-menu-a-list li:nth-of-type(3) .g-menu-icon-img-wrap::before {
  aspect-ratio: 990/1044;
  -webkit-mask-image: url(../img/icon-education.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon-education.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.header .g-menu-a-list li:nth-of-type(4) .g-menu-icon-img-wrap::before {
  aspect-ratio: 897/1024;
  -webkit-mask-image: url(../img/icon-active.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon-active.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.header .g-menu-a-list li:nth-of-type(5) .g-menu-icon-img-wrap::before {
  aspect-ratio: 1249/1025;
  -webkit-mask-image: url(../img/icon-preschool.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon-preschool.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.header .g-menu-a-list li:nth-of-type(6) .g-menu-icon-img-wrap::before {
  aspect-ratio: 897/1138;
  -webkit-mask-image: url(../img/icon-guide.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon-guide.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.header .g-menu-a-list li:nth-of-type(7) .g-menu-icon-img-wrap::before {
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon-recruit.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon-recruit.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.header .g-menu-a-list li:nth-of-type(8) .g-menu-icon-img-wrap::before {
  aspect-ratio: 898/1152;
  -webkit-mask-image: url(../img/icon-overview.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon-overview.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.header .g-menu-a-list li:nth-of-type(9) .g-menu-icon-img-wrap::before {
  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%;
}
.header .g-menu-a-list li:nth-of-type(10) .g-menu-icon-img-wrap::before {
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon-parent.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon-parent.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.header .g-menu-icon-img-wrap img {
  display: none;
}
.header .g-sub-nav-list.flex li:first-of-type a {
  background-color: unset;
  color: var(--txt);
  border: unset;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.header .g-sub-nav-list.flex li:first-of-type a::before {
  content: "";
  display: block;
  width: auto;
  height: 20px;
  background-color: var(--main);
  z-index: 1;
  margin: auto;
  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%;
}
.header .header-box01 {
  width: 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;
}
@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(--txt);
}
.header .header-menu .sub-menu a {
  color: #fff;
}
.header .header-menu .sub-menu a:hover {
  color: var(--txt);
}

.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 {
  margin-bottom: 0;
  background-color: var(--main);
  border: solid 1px var(--main);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5208333333vw;
  padding: 6px 1.5625vw;
  color: var(--white);
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.15em;
  font-size: clamp(16px, 1.0416666667vw, 2rem);
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-nav-tel-pc a {
    font-size: clamp(12px, 1.953125vw, 1rem);
  }
}
.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: 1;
  background-color: var(--white);
  width: 0.78125vw;
  height: auto;
}
.header-sub-box .g-nav-tel-pc a:hover {
  transform: scale(1.05);
  transition: all 0.3s;
  background-color: var(--white);
  color: var(--main);
}
.header-sub-box .g-nav-tel-pc a:hover::before {
  background-color: var(--main);
}
.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 {
  margin-bottom: 0;
  background-color: var(--main);
  border: solid 1px var(--main);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
}
.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 span {
  background-color: var(--main);
}
.mobile-btn #hamburger span:nth-of-type(1) {
  top: 20px;
}
.mobile-btn #hamburger span:nth-of-type(2) {
  top: 28px;
}
.mobile-btn #hamburger span:nth-of-type(3) {
  display: none;
}
.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;
  display: none;
}
@media screen and (max-width: 1024px) {
  .fix_nav {
    top: unset;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.fix_nav.scrolled {
  display: block;
}
.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 .fix_nav_list {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.fix_nav .fix_nav_list li {
  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-right: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: auto;
  color: var(--white);
  padding: 20px 10px;
  text-align: center;
  letter-spacing: 0.15em;
  writing-mode: vertical-lr;
  border-radius: 10px 0 0 10px;
}
@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 5px;
  }
}
@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(--main);
    border-radius: 6px;
  }
  .fix_nav .fix_nav_list li a br {
    display: none;
  }
}
.fix_nav .fix_nav_list li a::before {
  content: "";
  display: block;
  height: auto;
  z-index: 1;
}
.fix_nav .fix_nav_list li a:hover {
  transition: all 0.3s;
  background-color: var(--white) !important;
}
.fix_nav .fix_nav_list li a:hover::before {
  background-color: var(--white);
}
.fix_nav .fix_nav_list li:nth-of-type(1) a {
  background-color: var(--orange02);
  border: solid 1px var(--orange02);
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li:nth-of-type(1) a {
    border: solid 1px var(--orange02);
  }
}
.fix_nav .fix_nav_list li:nth-of-type(1) a::before {
  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%;
  background-color: var(--white);
  width: 16px;
}
.fix_nav .fix_nav_list li:nth-of-type(1) a:hover {
  color: var(--orange02);
}
.fix_nav .fix_nav_list li:nth-of-type(1) a:hover::before {
  background-color: var(--orange02);
}
.fix_nav .fix_nav_list li:nth-of-type(2) a {
  background-color: var(--orange03);
  border: solid 1px var(--orange03);
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li:nth-of-type(2) a {
    border: solid 1px var(--orange03);
  }
}
.fix_nav .fix_nav_list li:nth-of-type(2) a::before {
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon-glass.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon-glass.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--white);
  width: 16px;
}
.fix_nav .fix_nav_list li:nth-of-type(2) a:hover {
  color: var(--orange02);
}
.fix_nav .fix_nav_list li:nth-of-type(2) a:hover::before {
  background-color: var(--orange03);
}

.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 {
  color: var(--txt);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  letter-spacing: 0.2em;
  font-size: 2rem;
  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-nav-wrap .mobile-menu-list .sub-menu li {
  margin-bottom: 10px;
}
.mobile-nav-wrap .mobile-menu-list .sub-menu li a {
  background-color: var(--bg);
  color: var(--main);
}

.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 {
  content: "";
  display: block;
  background-image: url(../img/bg01.png);
  background-repeat: repeat;
  background-size: 50%;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 30%;
  z-index: 1;
}

.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;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: var(--txt);
  font-size: 4rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  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(--txt);
  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-header {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .sub-header {
    margin-top: 50px;
  }
}

#breadcrumbs {
  background-color: var(--white);
}

.parent-page {
  background-color: var(--white);
}

.sec .title02 .ja {
  color: var(--gold);
}

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

.border {
  border: solid 1px var(--main);
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .border {
    padding: 10px;
  }
}

hr {
  color: #ddd;
}

.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(--bg);
}
.contact-band-inner {
  width: 85%;
  margin: auto;
  padding: 10px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@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 .timetable {
  width: 47%;
  padding: 20px;
  background-color: var(--white);
}
@media screen and (max-width: 1024px) {
  .contact-band .timetable {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .timetable {
    padding: 10px;
  }
}
.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;
  }
}
.contact-band-tel-box {
  width: 100%;
}
.contact-band .btn.btn01 {
  margin-bottom: 0;
  background-color: var(--main);
  border: solid 1px var(--main);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5208333333vw;
  padding: 6px 1.5625vw;
  color: var(--white);
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.15em;
  font-size: clamp(16px, 1.0416666667vw, 2rem);
  max-width: 720px;
  margin-bottom: 60px;
  padding: 20px 20px;
  font-size: clamp(16px, 1.5625vw, 3rem);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .contact-band .btn.btn01 {
    font-size: clamp(12px, 1.953125vw, 1rem);
  }
}
.contact-band .btn.btn01::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: 1;
  background-color: var(--white);
  width: 0.78125vw;
  height: auto;
}
.contact-band .btn.btn01:hover {
  transform: scale(1.05);
  transition: all 0.3s;
  background-color: var(--white);
  color: var(--main);
}
.contact-band .btn.btn01:hover::before {
  background-color: var(--main);
}
@media screen and (max-width: 1024px) {
  .contact-band .btn.btn01 {
    max-width: 360px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .btn.btn01 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .btn.btn01 {
    padding: 10px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .btn.btn01 {
    font-size: clamp(12px, 2.9296875vw, 1.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .btn.btn01 {
    gap: 10px;
  }
}
.contact-band .btn.btn01::before {
  position: unset;
  margin: unset;
}
@media screen and (max-width: 1024px) {
  .contact-band .btn.btn01 {
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .contact-band .btn.btn01::before {
    width: 10px;
    height: auto;
  }
}
.contact-band .cf-cb-txt {
  color: var(--txt);
}

.doctor .sec:first-of-type {
  position: relative;
}
.doctor .sec:first-of-type .deco {
  display: block;
  position: absolute;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 1;
}
.doctor .sec:first-of-type .deco._01 {
  width: 20%;
  top: -5%;
  left: -2%;
  background-color: #eee9e0;
  background-color: var(--beige01);
}
.doctor .sec:first-of-type .deco._01::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 40%;
  height: auto;
  border-radius: 50%;
  background-color: var(--beige02);
  position: absolute;
  top: 65%;
  left: 60%;
  opacity: 50%;
  z-index: -1;
}
.doctor .sec:first-of-type .deco._02 {
  width: 10%;
  bottom: 22%;
  right: 6%;
  background-color: var(--beige02);
  opacity: 36%;
}
.doctor .sec:first-of-type .deco._02::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 30%;
  height: auto;
  border-radius: 50%;
  background-color: var(--beige02);
  position: absolute;
  top: -7%;
  left: 70%;
  opacity: 60%;
  z-index: 1;
}
.doctor .sec:nth-of-type(2) {
  background-color: var(--beige04);
}
.doctor .greet .content {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.doctor .greet .txt {
  text-align: center;
  line-height: 3;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .doctor .greet .txt {
    margin-bottom: 30px;
  }
}
.doctor .greet .name {
  width: 360px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .doctor .greet .name {
    width: 180px;
  }
}
.doctor .career .box {
  justify-content: space-between;
}
.doctor .career .box .item {
  width: 47%;
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .doctor .career .box .item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .doctor .career .box .item {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .doctor .career .box .item {
    border-radius: 5px;
  }
}
.doctor .career .box .item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .doctor .career .box .item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.doctor .career .box .item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .doctor .career .box .item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.doctor .career .special {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .doctor .career .special {
    margin-top: 15px;
  }
}
.doctor .career .special .title {
  color: var(--main);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .doctor .career .special .title {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  .doctor .career .special .title {
    margin-bottom: 15px;
  }
}
.doctor .career .special img {
  width: 50%;
  margin: auto;
}
.doctor .contact-band {
  background-color: var(--white);
}

.medical .index .medical__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .medical .index .medical__menu {
    gap: 5px;
  }
}
.medical .index .medical__item {
  border: solid 1px var(--beige03);
  width: calc(50% - 10px);
}
.medical .index .medical__item a {
  color: var(--main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .medical .index .medical__item a {
    padding: 5px;
  }
}
.medical .index .medical__item a:hover {
  background-color: var(--beige04);
  transition: all 0.3s;
}
.medical .plastic-surgery,
.medical .med–surg,
.medical .skin,
.medical .dental {
  background-color: var(--bg);
  padding-bottom: 0;
}
.medical .plastic-surgery .symptoms,
.medical .med–surg .symptoms,
.medical .skin .symptoms,
.medical .dental .symptoms {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  padding: 20px;
  margin: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms,
  .medical .med–surg .symptoms,
  .medical .skin .symptoms,
  .medical .dental .symptoms {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms,
  .medical .med–surg .symptoms,
  .medical .skin .symptoms,
  .medical .dental .symptoms {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms,
  .medical .med–surg .symptoms,
  .medical .skin .symptoms,
  .medical .dental .symptoms {
    margin-bottom: 30px;
  }
}
.medical .plastic-surgery .symptoms .lead,
.medical .med–surg .symptoms .lead,
.medical .skin .symptoms .lead,
.medical .dental .symptoms .lead {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms .lead,
  .medical .med–surg .symptoms .lead,
  .medical .skin .symptoms .lead,
  .medical .dental .symptoms .lead {
    margin-bottom: 20px;
  }
}
.medical .plastic-surgery .symptoms .lead::before,
.medical .med–surg .symptoms .lead::before,
.medical .skin .symptoms .lead::before,
.medical .dental .symptoms .lead::before {
  content: "";
  display: block;
  width: 0%;
  height: 10px;
  position: absolute;
  bottom: 6px;
  left: 0;
  background-color: #f6bc71;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms .lead::before,
  .medical .med–surg .symptoms .lead::before,
  .medical .skin .symptoms .lead::before,
  .medical .dental .symptoms .lead::before {
    height: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms .lead::before,
  .medical .med–surg .symptoms .lead::before,
  .medical .skin .symptoms .lead::before,
  .medical .dental .symptoms .lead::before {
    bottom: 3px;
  }
}
.medical .plastic-surgery .symptoms .lead span,
.medical .med–surg .symptoms .lead span,
.medical .skin .symptoms .lead span,
.medical .dental .symptoms .lead span {
  font-size: clamp(16px, 1.5625vw, 3rem);
  color: var(--main);
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms .lead span,
  .medical .med–surg .symptoms .lead span,
  .medical .skin .symptoms .lead span,
  .medical .dental .symptoms .lead span {
    font-size: clamp(12px, 2.9296875vw, 1.5rem);
  }
}
.medical .plastic-surgery .symptoms .lead.is-show::before,
.medical .med–surg .symptoms .lead.is-show::before,
.medical .skin .symptoms .lead.is-show::before,
.medical .dental .symptoms .lead.is-show::before {
  width: 100%;
  transition: all 1s ease-in-out;
}
.medical .plastic-surgery .symptoms__list,
.medical .med–surg .symptoms__list,
.medical .skin .symptoms__list,
.medical .dental .symptoms__list {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.medical .plastic-surgery .symptoms__item,
.medical .med–surg .symptoms__item,
.medical .skin .symptoms__item,
.medical .dental .symptoms__item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms__item,
  .medical .med–surg .symptoms__item,
  .medical .skin .symptoms__item,
  .medical .dental .symptoms__item {
    gap: 8px;
  }
}
.medical .plastic-surgery .symptoms__item::before,
.medical .med–surg .symptoms__item::before,
.medical .skin .symptoms__item::before,
.medical .dental .symptoms__item::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20px;
  height: 20px;
  border: solid 3px var(--beige03);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms__item::before,
  .medical .med–surg .symptoms__item::before,
  .medical .skin .symptoms__item::before,
  .medical .dental .symptoms__item::before {
    width: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms__item::before,
  .medical .med–surg .symptoms__item::before,
  .medical .skin .symptoms__item::before,
  .medical .dental .symptoms__item::before {
    height: 10px;
  }
}
.medical .plastic-surgery .symptoms__item p,
.medical .med–surg .symptoms__item p,
.medical .skin .symptoms__item p,
.medical .dental .symptoms__item p {
  font-size: 1.8rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms__item p,
  .medical .med–surg .symptoms__item p,
  .medical .skin .symptoms__item p,
  .medical .dental .symptoms__item p {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.medical .plastic-surgery .symptoms__item .check,
.medical .med–surg .symptoms__item .check,
.medical .skin .symptoms__item .check,
.medical .dental .symptoms__item .check {
  width: 20px;
  position: absolute;
  top: 6px;
  left: 2px;
  z-index: 1;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms__item .check,
  .medical .med–surg .symptoms__item .check,
  .medical .skin .symptoms__item .check,
  .medical .dental .symptoms__item .check {
    width: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms__item .check,
  .medical .med–surg .symptoms__item .check,
  .medical .skin .symptoms__item .check,
  .medical .dental .symptoms__item .check {
    top: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .symptoms__item .check,
  .medical .med–surg .symptoms__item .check,
  .medical .skin .symptoms__item .check,
  .medical .dental .symptoms__item .check {
    left: 1px;
  }
}
.medical .plastic-surgery .symptoms__item .check__tick,
.medical .med–surg .symptoms__item .check__tick,
.medical .skin .symptoms__item .check__tick,
.medical .dental .symptoms__item .check__tick {
  fill: none;
  stroke: var(--main);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1 0;
  stroke-dashoffset: 1.05;
}
.medical .plastic-surgery .symptoms__item.is-show:nth-of-type(1) .check,
.medical .med–surg .symptoms__item.is-show:nth-of-type(1) .check,
.medical .skin .symptoms__item.is-show:nth-of-type(1) .check,
.medical .dental .symptoms__item.is-show:nth-of-type(1) .check {
  opacity: 1;
  transition: all 0.3s;
  transition-delay: 0.4s;
}
.medical .plastic-surgery .symptoms__item.is-show:nth-of-type(2) .check,
.medical .med–surg .symptoms__item.is-show:nth-of-type(2) .check,
.medical .skin .symptoms__item.is-show:nth-of-type(2) .check,
.medical .dental .symptoms__item.is-show:nth-of-type(2) .check {
  opacity: 1;
  transition: all 0.3s;
  transition-delay: 0.8s;
}
.medical .plastic-surgery .symptoms__item.is-show:nth-of-type(3) .check,
.medical .med–surg .symptoms__item.is-show:nth-of-type(3) .check,
.medical .skin .symptoms__item.is-show:nth-of-type(3) .check,
.medical .dental .symptoms__item.is-show:nth-of-type(3) .check {
  opacity: 1;
  transition: all 0.3s;
  transition-delay: 1.2s;
}
.medical .plastic-surgery .symptoms__item.is-show:nth-of-type(4) .check,
.medical .med–surg .symptoms__item.is-show:nth-of-type(4) .check,
.medical .skin .symptoms__item.is-show:nth-of-type(4) .check,
.medical .dental .symptoms__item.is-show:nth-of-type(4) .check {
  opacity: 1;
  transition: all 0.3s;
  transition-delay: 1.6s;
}
.medical .plastic-surgery .symptoms__item.is-show:nth-of-type(5) .check,
.medical .med–surg .symptoms__item.is-show:nth-of-type(5) .check,
.medical .skin .symptoms__item.is-show:nth-of-type(5) .check,
.medical .dental .symptoms__item.is-show:nth-of-type(5) .check {
  opacity: 1;
  transition: all 0.3s;
  transition-delay: 2s;
}
.medical .plastic-surgery .content,
.medical .med–surg .content,
.medical .skin .content,
.medical .dental .content {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content,
  .medical .med–surg .content,
  .medical .skin .content,
  .medical .dental .content {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content,
  .medical .med–surg .content,
  .medical .skin .content,
  .medical .dental .content {
    padding: 20px;
  }
}
.medical .plastic-surgery .content .explanatory,
.medical .med–surg .content .explanatory,
.medical .skin .content .explanatory,
.medical .dental .content .explanatory {
  font-size: 1.8rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .explanatory,
  .medical .med–surg .content .explanatory,
  .medical .skin .content .explanatory,
  .medical .dental .content .explanatory {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .explanatory,
  .medical .med–surg .content .explanatory,
  .medical .skin .content .explanatory,
  .medical .dental .content .explanatory {
    margin-bottom: 20px;
  }
}
.medical .plastic-surgery .content hr,
.medical .med–surg .content hr,
.medical .skin .content hr,
.medical .dental .content hr {
  margin: 0;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content hr,
  .medical .med–surg .content hr,
  .medical .skin .content hr,
  .medical .dental .content hr {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content hr,
  .medical .med–surg .content hr,
  .medical .skin .content hr,
  .medical .dental .content hr {
    margin-bottom: 30px;
  }
}
.medical .plastic-surgery .content .titleArea,
.medical .med–surg .content .titleArea,
.medical .skin .content .titleArea,
.medical .dental .content .titleArea {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .titleArea,
  .medical .med–surg .content .titleArea,
  .medical .skin .content .titleArea,
  .medical .dental .content .titleArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.medical .plastic-surgery .content .listArea,
.medical .med–surg .content .listArea,
.medical .skin .content .listArea,
.medical .dental .content .listArea {
  width: 75%;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .listArea,
  .medical .med–surg .content .listArea,
  .medical .skin .content .listArea,
  .medical .dental .content .listArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.medical .plastic-surgery .content .menu__item,
.medical .plastic-surgery .content .facilities__item,
.medical .med–surg .content .menu__item,
.medical .med–surg .content .facilities__item,
.medical .skin .content .menu__item,
.medical .skin .content .facilities__item,
.medical .dental .content .menu__item,
.medical .dental .content .facilities__item {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .menu__item,
  .medical .plastic-surgery .content .facilities__item,
  .medical .med–surg .content .menu__item,
  .medical .med–surg .content .facilities__item,
  .medical .skin .content .menu__item,
  .medical .skin .content .facilities__item,
  .medical .dental .content .menu__item,
  .medical .dental .content .facilities__item {
    gap: 5px;
  }
}
.medical .plastic-surgery .content .menu__item::before,
.medical .plastic-surgery .content .facilities__item::before,
.medical .med–surg .content .menu__item::before,
.medical .med–surg .content .facilities__item::before,
.medical .skin .content .menu__item::before,
.medical .skin .content .facilities__item::before,
.medical .dental .content .menu__item::before,
.medical .dental .content .facilities__item::before {
  content: "";
  display: block;
  background-color: var(--beige03);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 14px;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .menu__item::before,
  .medical .plastic-surgery .content .facilities__item::before,
  .medical .med–surg .content .menu__item::before,
  .medical .med–surg .content .facilities__item::before,
  .medical .skin .content .menu__item::before,
  .medical .skin .content .facilities__item::before,
  .medical .dental .content .menu__item::before,
  .medical .dental .content .facilities__item::before {
    margin-top: 7px;
  }
}
.medical .plastic-surgery .content .note,
.medical .med–surg .content .note,
.medical .skin .content .note,
.medical .dental .content .note {
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .note,
  .medical .med–surg .content .note,
  .medical .skin .content .note,
  .medical .dental .content .note {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .note,
  .medical .med–surg .content .note,
  .medical .skin .content .note,
  .medical .dental .content .note {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .note,
  .medical .med–surg .content .note,
  .medical .skin .content .note,
  .medical .dental .content .note {
    text-align: left;
  }
}
.medical .plastic-surgery .content .gallery,
.medical .med–surg .content .gallery,
.medical .skin .content .gallery,
.medical .dental .content .gallery {
  width: 30%;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .gallery,
  .medical .med–surg .content .gallery,
  .medical .skin .content .gallery,
  .medical .dental .content .gallery {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .gallery,
  .medical .med–surg .content .gallery,
  .medical .skin .content .gallery,
  .medical .dental .content .gallery {
    margin-top: 10px;
  }
}
.medical .plastic-surgery .content .Laser,
.medical .med–surg .content .Laser,
.medical .skin .content .Laser,
.medical .dental .content .Laser {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .Laser,
  .medical .med–surg .content .Laser,
  .medical .skin .content .Laser,
  .medical .dental .content .Laser {
    margin-top: 10px;
  }
}
.medical .plastic-surgery .content .Laser .title,
.medical .med–surg .content .Laser .title,
.medical .skin .content .Laser .title,
.medical .dental .content .Laser .title {
  color: var(--main);
  border-bottom: solid 1px var(--main);
}
.medical .plastic-surgery .content .Laser .box,
.medical .med–surg .content .Laser .box,
.medical .skin .content .Laser .box,
.medical .dental .content .Laser .box {
  justify-content: space-between;
}
.medical .plastic-surgery .content .Laser .box .txt,
.medical .med–surg .content .Laser .box .txt,
.medical .skin .content .Laser .box .txt,
.medical .dental .content .Laser .box .txt {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .Laser .box .txt,
  .medical .med–surg .content .Laser .box .txt,
  .medical .skin .content .Laser .box .txt,
  .medical .dental .content .Laser .box .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.medical .plastic-surgery .content .Laser .box .img,
.medical .med–surg .content .Laser .box .img,
.medical .skin .content .Laser .box .img,
.medical .dental .content .Laser .box .img {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .medical .plastic-surgery .content .Laser .box .img,
  .medical .med–surg .content .Laser .box .img,
  .medical .skin .content .Laser .box .img,
  .medical .dental .content .Laser .box .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.medical .plastic-surgery {
  position: relative;
}
.medical .plastic-surgery::before {
  content: "";
  display: block;
  -webkit-mask-image: url(../img/line.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/line.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  aspect-ratio: 1291/212;
  width: 100%;
  height: auto;
  position: absolute;
  top: 20%;
  left: 0%;
  background-color: var(--beige03);
  z-index: 1;
  opacity: 0.3;
}
.medical .dental {
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .medical .dental {
    padding-bottom: 50px;
  }
}
.medical .dental .box {
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .medical .dental .box {
    margin-top: 10px;
  }
}
.medical .dental .box .item._img {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .medical .dental .box .item._img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.medical .dental .box .item._txt {
  width: 65%;
}
@media screen and (max-width: 1024px) {
  .medical .dental .box .item._txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.medical .dental .box .item._txt .txt {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .medical .dental .box .item._txt .txt {
    margin-bottom: 20px;
  }
}
.medical .dental .box .item._txt .title {
  color: var(--main);
  font-size: 2rem;
  letter-spacing: 0.15em;
  border-bottom: solid 1px var(--main);
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .medical .dental .box .item._txt .title {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .medical .dental .box .item._txt .title {
    margin-bottom: 10px;
  }
}

.first .sec:nth-of-type(3) {
  background-color: var(--bg);
}
.first .first_time {
  padding-bottom: 0;
}
.first .first_time .txt {
  width: 80%;
  font-size: 1.8rem;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .first .first_time .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .first .first_time .txt {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.first .flow__list {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .first .flow__list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  .first .flow__list {
    flex-wrap: wrap;
  }
}
.first .flow__item {
  width: 20%;
  background-color: var(--beige04);
  border-radius: 10px;
  padding: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .first .flow__item {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .first .flow__item {
    padding: 10px;
  }
}
@media screen and (max-width: 600px) {
  .first .flow__item {
    width: 100%;
    margin-bottom: 40px;
  }
}
.first .flow__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .first .flow__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.first .flow__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .first .flow__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.first .flow__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .first .flow__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.first .flow__item.is-show:nth-of-type(4) {
  animation-delay: 0.8s;
}
@media screen and (max-width: 1024px) {
  .first .flow__item.is-show:nth-of-type(4) {
    animation-delay: unset;
  }
}
.first .flow__item.is-show:nth-of-type(5) {
  animation-delay: 1s;
}
@media screen and (max-width: 1024px) {
  .first .flow__item.is-show:nth-of-type(5) {
    animation-delay: unset;
  }
}
.first .flow__item .img {
  background-color: var(--white);
  border-radius: 50%;
  aspect-ratio: 1;
  width: 80%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .first .flow__item .img {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .first .flow__item .img {
    width: 40%;
  }
}
.first .flow__item .img img {
  width: auto;
  height: 43%;
}
.first .flow__item .txt {
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .first .flow__item .txt {
    text-align: center;
  }
}
.first .flow__item svg {
  width: 1.0416666667vw;
  fill: var(--main);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -17%;
}
@media screen and (max-width: 1024px) {
  .first .flow__item svg {
    width: 18px;
    left: 0;
    right: 0;
    top: unset;
    bottom: -35px;
    transform: rotate(90deg);
  }
}
.first .flow__item:last-of-type svg {
  display: none;
}
.first .faq__list {
  width: 95%;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .first .faq__list {
    width: 100%;
    margin-bottom: 20px;
  }
}
.first .faq__item {
  margin-bottom: 10px;
}
.first .faq__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .first .faq__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.first .faq__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .first .faq__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.first .faq__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .first .faq__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.first .faq__item.is-show:nth-of-type(4) {
  animation-delay: 0.8s;
}
@media screen and (max-width: 1024px) {
  .first .faq__item.is-show:nth-of-type(4) {
    animation-delay: unset;
  }
}
.first .faq__item.is-show:nth-of-type(5) {
  animation-delay: 1s;
}
@media screen and (max-width: 1024px) {
  .first .faq__item.is-show:nth-of-type(5) {
    animation-delay: unset;
  }
}
.first .faq ._q {
  padding-left: 35px;
  background-repeat: no-repeat;
  background-size: 30px auto;
  font-size: 1.6rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--main);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .first .faq ._q {
    padding-left: 17.5px;
  }
}
@media screen and (max-width: 1024px) {
  .first .faq ._q {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.first .faq ._q:hover {
  opacity: 0.7;
  cursor: pointer;
}
.first .faq ._q::before {
  content: "Q";
  position: absolute;
  left: 0;
  color: var(--main);
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .first .faq ._q::before {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.first .faq ._a {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  padding-left: 35px;
  background-repeat: no-repeat;
  background-size: 30px auto;
  font-size: 1.6rem;
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .first .faq ._a {
    padding-left: 17.5px;
  }
}
@media screen and (max-width: 1024px) {
  .first .faq ._a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.first .faq ._a::before {
  content: "A";
  position: absolute;
  left: 0;
  color: var(--txt);
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .first .faq ._a::before {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.first .faq .plus {
  display: inline-block;
  vertical-align: 0.3em;
  color: var(--main);
  line-height: 1;
  width: 1em;
  height: 3px;
  background: var(--main);
  border-radius: 0.1em;
  position: absolute;
  right: 0;
  top: 16px;
}
@media screen and (max-width: 1024px) {
  .first .faq .plus {
    top: 8px;
  }
}
.first .faq .plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main);
  border-radius: inherit;
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.first .faq .plus.active:before {
  transform: rotate(0deg);
}
.first .contact-band {
  background-color: var(--white);
}

.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(--main);
  border: solid 1px var(--main);
  color: var(--white);
  border-radius: 0;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.post-categories li a:hover {
  background-color: var(--main);
  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;
}
@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;
  }
}

.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-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  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 .job-table tr {
  padding: 20px 0px;
}
@media screen and (max-width: 1024px) {
  .recruit-single .job-table tr {
    padding: 10px 0px;
  }
}
.recruit-single .job-table th,
.recruit-single .job-table td {
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .recruit-single .job-table th,
  .recruit-single .job-table td {
    padding: 10px;
  }
}
.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-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.15em;
  font-size: 1.4rem;
  color: var(--main);
}
@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(--main);
  border: solid 1px var(--main);
  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(--main);
  color: var(--white);
}
.archive-time-cat span a,
.single-info-date-cat span a {
  background-color: var(--main);
  border: solid 1px var(--main);
  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(--main);
  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;
}

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;
  background-color: var(--main);
  background-color: unset;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-bottom: 60px;
  }
}
.footer::before {
  content: "";
  display: block;
  aspect-ratio: 832/44;
  -webkit-mask-image: url(../img/wave01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/wave01.png);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff8dc;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: -4vw;
  z-index: 1;
}
.footer::after {
  content: "";
  display: block;
  aspect-ratio: 467/246;
  background-image: url(../img/tree04.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15%;
  height: auto;
  position: absolute;
  right: 3vw;
  top: -8vw;
  z-index: 1;
}
.footer-inner {
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo-address {
  width: 30%;
  margin-bottom: 80px;
  min-width: 410px;
}
@media screen and (max-width: 1024px) {
  .footer-logo-address {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-logo-address {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-logo-address {
    min-width: 205px;
  }
}
.footer-logo-address p,
.footer-logo-address a {
  color: var(--txt);
}
.footer-logo a {
  display: block;
  font-size: clamp(16px, 2.0833333333vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: var(--white);
  text-align: left;
  margin: auto;
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .footer-logo a {
    font-size: clamp(12px, 3.90625vw, 2rem);
  }
}
.footer-logo a span {
  font-size: clamp(16px, 0.8333333333vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .footer-logo a span {
    font-size: clamp(12px, 1.5625vw, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .footer-logo a {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .footer-logo a span {
    text-align: center;
  }
}
.footer-menu > li a {
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  color: var(--txt);
}
@media screen and (max-width: 1024px) {
  .footer-menu > li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.footer-menu > li a:hover {
  color: var(--txt);
  transition: all 0.3s;
}
.footer-menu > li.menu-item-has-children a {
  padding-bottom: 0;
  margin-bottom: 0;
}
.footer-menu .sub-menu {
  margin-left: 1.5em;
}
.footer-menu .sub-menu > li a {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .footer-menu .sub-menu > li a {
    gap: 5px;
  }
}
.footer-menu .sub-menu > li a::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: var(--bg);
}
@media screen and (max-width: 1024px) {
  .footer-menu .sub-menu > li a::before {
    width: 4px;
  }
}
.footer-nav-wrap {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .footer-nav-wrap {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer-nav {
  width: 100%;
}
.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;
  }
}

.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: 1s 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 {
  opacity: 0;
  transform: translate(30%, 30%);
  transition: 1s;
}
.js-diagonal_rightToLeft.is-show {
  opacity: 1;
  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, #f8f7e8 3px, #f8f7e8 6px);
  padding: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .contact .bnr_tel {
    background-image: repeating-linear-gradient(130deg, transparent, transparent 2px, #f8f7e8 2px, #f8f7e8 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;
    padding-bottom: 0;
  }
}
.contact-form01 td {
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .contact-form01 td {
    padding: 10px;
  }
}
.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);
  }
}