@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Zetta:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
@keyframes cloudMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-20px);
  }
}
@keyframes cloudFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}
@keyframes cloudMove02 {
  from {
    transform: scale(-1, 1) translateX(0);
  }
  to {
    transform: scale(-1, 1) translateX(-20px);
  }
}
@keyframes cloudFloat02 {
  from {
    transform: scale(-1, 1) translateY(0);
  }
  to {
    transform: scale(-1, 1) translateY(-20px);
  }
}
@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;
  color: var(--title);
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .note {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}

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

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

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

main.panelactive {
  display: none;
}

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

.para {
  width: 100%;
  aspect-ratio: 2803/1359;
  background: transparent;
  z-index: 3;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #fff !important;
  -webkit-mask-image: url(../img/para_mask.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/para_mask.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-top: -5vw;
}
@media screen and (max-width: 1024px) {
  .para {
    background-attachment: unset;
  }
}
.para._02 {
  margin-top: -3vw;
}

.para_img {
  aspect-ratio: 3;
}
@media screen and (max-width: 1024px) {
  .para_img {
    aspect-ratio: 2;
  }
}

.title_circle {
  aspect-ratio: 312/297;
  background-image: url(../img/circle01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 200px;
  margin: auto;
  margin-bottom: 60px;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .title_circle {
    max-width: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .title_circle {
    margin-bottom: 30px;
  }
}
.title_circle .ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1024px) {
  .title_circle .ja {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.title_circle .en {
  font-weight: bold;
  color: var(--main);
}
.title_circle.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.bg_txt {
  z-index: 1;
}
.bg_txt span {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 6.7708333333vw;
  color: var(--light);
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition-duration: 0.5s;
  transition-property: transform, opacity;
}
@media screen and (max-width: 1024px) {
  .bg_txt span {
    font-size: 10vw;
  }
}
.bg_txt.is-show span {
  opacity: 1;
  transform: translateY(0);
}
.bg_txt.is-show span:nth-of-type(2) {
  transition-delay: 0.4s;
}
.bg_txt.is-show span:nth-of-type(3) {
  transition-delay: 0.6s;
}
.bg_txt.is-show span:nth-of-type(4) {
  transition-delay: 0.8s;
}
.bg_txt.is-show span:nth-of-type(5) {
  transition-delay: 1s;
}
.bg_txt.is-show span:nth-of-type(6) {
  transition-delay: 1.2s;
}
.bg_txt.is-show span:nth-of-type(7) {
  transition-delay: 1.4s;
}
.bg_txt.is-show span:nth-of-type(8) {
  transition-delay: 1.6s;
}
.bg_txt.is-show span:nth-of-type(9) {
  transition-delay: 1.8s;
}
.bg_txt.is-show span:nth-of-type(10) {
  transition-delay: 2s;
}
.bg_txt.is-show span:nth-of-type(11) {
  transition-delay: 2.2s;
}
.bg_txt.is-show span:nth-of-type(12) {
  transition-delay: 2.4s;
}
.bg_txt.is-show span:nth-of-type(13) {
  transition-delay: 2.6s;
}
.bg_txt.is-show span:nth-of-type(14) {
  transition-delay: 2.8s;
}
.bg_txt.is-show span:nth-of-type(15) {
  transition-delay: 3s;
}

.title01 {
  margin-bottom: 90px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title01 {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .title01 {
    margin-bottom: 30px;
  }
}
.title01 .en {
  display: block;
  text-transform: capitalize;
  font-family: "Lexend Zetta", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--main);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 16px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1024px) {
  .title01 .en {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .title01 .en {
    margin-bottom: 8px;
  }
}
.title01 .ja {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3.6rem;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.7;
  color: var(--title);
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .title01 .ja {
    font-size: clamp(12px, 1.8rem, 1.8rem);
  }
}
.title01.is-show::after {
  width: 50px;
  transition-delay: 1.5s;
  transition: all 1s;
}
@media screen and (max-width: 1024px) {
  .title01.is-show::after {
    width: 25px;
  }
}
.title01.is-show .ja {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}
.title01.is-show .en {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}

.title02 {
  position: relative;
  color: var(--title);
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title02 {
    margin-bottom: 30px;
  }
}
.title02::before, .title02::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/circle01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 14px;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .title02::before, .title02::after {
    width: 7px;
  }
}
.title02::before {
  left: -30px;
}
@media screen and (max-width: 1024px) {
  .title02::before {
    left: -15px;
  }
}
.title02::after {
  right: -30px;
}
@media screen and (max-width: 1024px) {
  .title02::after {
    right: -15px;
  }
}
.title02 span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3rem;
  letter-spacing: 0.15em;
  text-transform: capitalize;
}
@media screen and (max-width: 1024px) {
  .title02 span {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
.title02.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.title03 {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .title03 {
    margin: auto;
    margin-bottom: 30px;
  }
}
.title03 .en {
  display: block;
  text-transform: capitalize;
  font-family: "Lexend Zetta", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--main);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 16px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 16px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1024px) {
  .title03 .en {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .title03 .en {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .title03 .en {
    margin-bottom: 8px;
  }
}
.title03 .ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3rem;
  letter-spacing: 0.15em;
  writing-mode: vertical-lr;
  text-align: center;
  display: block;
  letter-spacing: 0.2em;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .title03 .ja {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}

.title04 {
  position: relative;
  color: var(--title);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
  letter-spacing: 0.15em;
  border-bottom: dotted 5px var(--title02);
  text-align: center;
  padding: 10px 0px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title04 {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .title04 {
    padding: 5px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .title04 {
    margin-bottom: 30px;
  }
}
.title04.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.title_deco01 {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title_deco01 {
    margin-bottom: 30px;
  }
}
.title_deco01::after {
  content: "";
  display: block;
  aspect-ratio: 252/92;
  background-image: url(../img/title_deco02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 180px;
  height: auto;
  z-index: 1;
  margin: auto;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .title_deco01::after {
    width: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .title_deco01::after {
    margin-top: 5px;
  }
}
.title_deco01 .ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.4rem;
  color: var(--title);
  letter-spacing: 0.15em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .title_deco01 .ja {
    font-size: clamp(12px, 1.7rem, 1.7rem);
  }
}

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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  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;
  position: relative;
  transition: all 0.3s;
  border: solid 1px var(--main);
}
@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: 1;
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 22px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .btn.btn01::before {
    width: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .btn.btn01::before {
    height: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .btn.btn01::before {
    right: 11px;
  }
}
.btn.btn01:hover {
  background-color: var(--white) !important;
  color: var(--main);
  transition: all 0.3s;
}
.btn.btn01:hover::before {
  background-color: var(--main);
}
.btn.btn01.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}
.btn.facebook {
  border-radius: 6px;
  background: repeating-linear-gradient(-45deg, #bae84a, #bae84a 20px, #d4f17e 20px, #d4f17e 40px);
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .btn.facebook {
    border-radius: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .btn.facebook {
    margin-bottom: 30px;
  }
}
.btn.facebook:hover {
  background-image: none;
  background-color: var(--main);
  opacity: 1;
}
.btn.pdf {
  color: var(--white);
  letter-spacing: 0.15em;
  padding: 0px 30px;
  border-radius: 999px;
  padding: 20px;
  position: relative;
  transition: all 0.3s;
  border: solid 1px #e6e944;
  background-color: #e6e944;
}
@media screen and (max-width: 1024px) {
  .btn.pdf {
    padding: 0px 15px;
  }
}
@media screen and (max-width: 1024px) {
  .btn.pdf {
    padding: 10px;
  }
}
.btn.pdf::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 22px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .btn.pdf::before {
    width: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .btn.pdf::before {
    height: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .btn.pdf::before {
    right: 11px;
  }
}
.btn.pdf:hover {
  background-color: var(--white) !important;
  color: #e6e944;
  transition: all 0.3s;
}
.btn.pdf:hover::before {
  background-color: #e6e944;
}
.btn.parent {
  aspect-ratio: 464/212;
  width: 500px;
  height: auto;
  background-image: url(../img/btn01_border.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .btn.parent {
    width: 250px;
  }
}
.btn.parent span {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .btn.parent span {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.btn.parent::before, .btn.parent::after {
  content: "";
  display: block;
  position: absolute;
  width: 40%;
  height: auto;
}
.btn.parent::before {
  aspect-ratio: 192/152;
  background-image: url(../img/leaf01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  bottom: -20px;
  left: -5%;
}
@media screen and (max-width: 1024px) {
  .btn.parent::before {
    bottom: -10px;
  }
}
.btn.parent::after {
  aspect-ratio: 186/146;
  background-image: url(../img/leaf02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  top: -20px;
  right: -5%;
}
@media screen and (max-width: 1024px) {
  .btn.parent::after {
    top: -10px;
  }
}
.btn.parent:hover {
  background-image: url(../img/btn01_border_hover.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: var(--txt-Color);
  transition: all 0.3s;
  opacity: 1;
}
.btn.parent:hover span {
  color: var(--txt-Color);
  transition: all 0.3s;
}
.btn.parent:hover::before {
  transform: rotate(-4deg);
  transition: all 0.3s;
}
.btn.parent:hover::after {
  transform: rotate(4deg);
  transition: all 0.3s;
}

.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;
  max-width: 1200px;
  margin-bottom: 60px !important;
  border: solid #ddd 1px !important;
}
@media screen and (max-width: 1024px) {
  .tablepress {
    max-width: 600px;
  }
}
.tablepress thead th {
  background-color: var(--main) !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: var(--main);
  color: var(--white);
  border-top: solid 1px #ddd;
}
@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;
  }
}
.tablepress tbody td.column-2 a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-7 td.column-1,
  .tablepress.tablepress-id-7 td.column-2,
  .tablepress.tablepress-id-7 td.column-3 {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-7 td.column-3 {
    border-top: none;
    padding: 0;
  }
  .tablepress.tablepress-id-7 td.column-3 .wp-caption {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .tablepress.tablepress-id-7 td.column-3 .wp-caption img {
    aspect-ratio: 3/2;
    width: 80%;
    height: auto;
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .tablepress.tablepress-id-7 td.column-3 .wp-caption img {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-7 td.column-3 .wp-caption-text {
    text-align: center;
  }
}
.tablepress.tablepress-id-8 th.column-1, .tablepress.tablepress-id-8 th.column-2 {
  width: 50% !important;
}
.tablepress.tablepress-id-8 td.column-1, .tablepress.tablepress-id-8 td.column-2 {
  width: 50% !important;
  width: 50% !important;
  background-color: var(--white);
  color: unset;
  font-weight: normal;
  padding: 15px;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-8 td.column-1, .tablepress.tablepress-id-8 td.column-2 {
    padding: 7.5px;
  }
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-8 td.column-1, .tablepress.tablepress-id-8 td.column-2 {
    display: table-cell;
  }
}

.tablepress-table-name {
  background-color: unset;
  color: var(--title);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 30px;
}
@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: 15px;
  }
}
.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 {
  background-color: #f0fcec;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .tablepress-table-description {
    max-width: 600px;
  }
}
@media screen and (max-width: 1024px) {
  .tablepress-table-description {
    margin-bottom: 20px;
  }
}

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

.mv {
  position: relative;
  overflow: unset;
}
@media screen and (max-width: 1024px) {
  .mv {
    padding-top: 30px;
  }
}
.mv::after {
  content: "";
  display: block;
  aspect-ratio: 3080/300;
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: -5vw;
  z-index: 1;
  background-color: var(--white);
}
.mv .swiper {
  width: 100%;
  margin: auto;
}
.mv .swiper .swiper-button-next,
.mv .swiper .swiper-button-prev {
  color: var(--title);
}
.mv .swiper .swiper-button-next::after,
.mv .swiper .swiper-button-prev::after {
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .mv .swiper .swiper-button-next::after,
  .mv .swiper .swiper-button-prev::after {
    font-size: clamp(12px, 1.2rem, 1.2rem);
  }
}
.mv .deco._f-01 {
  aspect-ratio: 815/331;
  background-image: url(../img/flower01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 23%;
  height: auto;
  position: absolute;
  right: 5%;
  bottom: -4vw;
  z-index: 2;
  animation: yurari_2deg 2s ease-in-out infinite alternate;
}
.mv .deco._b-01 {
  aspect-ratio: 1;
  background-image: url(../img/bird01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10%;
  height: auto;
  position: absolute;
  left: 5%;
  bottom: -4vw;
  z-index: 2;
}

.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(--white);
}
@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%;
}

body {
  position: relative;
}
body::before, body::after {
  content: "";
  display: block;
  aspect-ratio: 789/720;
  background-image: url(../img/deco01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30%;
  height: auto;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  body::before, body::after {
    width: 40%;
    top: 70px;
  }
}
body::before {
  left: 0;
}
body::after {
  right: 0;
  transform: scale(-1, 1);
}
body.home main {
  overflow: hidden;
}
.f-news {
  position: relative;
}
.f-news::before {
  content: "";
  display: block;
  aspect-ratio: 864/120;
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-image: url(../img/bg02.png);
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.f-news .news {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  position: relative;
}
@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 .content {
  width: 75%;
  background: #fff;
  padding: 60px 40px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  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: 30px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .news .content {
    border-radius: 10px;
  }
}
.f-news .news .news-list01 {
  padding: 40px;
  background-color: var(--white);
}
@media screen and (max-width: 1024px) {
  .f-news .news .news-list01 {
    padding: 20px;
  }
}
.f-news .news .news-list01 li {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .f-news .news .news-list01 li {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .news .news-list01 li {
    flex-direction: column;
  }
}
.f-news .news .news-list01 li .date-cat {
  min-width: 240px;
  margin-bottom: 0;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1024px) {
  .f-news .news .news-list01 li .date-cat {
    min-width: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .news .news-list01 li .date-cat {
    margin-bottom: 10px;
  }
}
.f-news .news .news-list01 li .date {
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.f-news .news .news-list01 li .news-cat.news {
  display: flex;
  margin-bottom: unset;
  width: -moz-fit-content;
  width: fit-content;
}
.f-news .news .news-list01 li .news-txt a:hover {
  color: var(--main);
  opacity: 1;
}

.f-introduction {
  position: relative;
  background-image: url(../img/bg02.png);
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: center;
  padding-top: 0;
  padding-bottom: 10vw;
}
.f-introduction .deco._cloud01 {
  aspect-ratio: 1768/1145;
  width: 18%;
  height: auto;
  position: absolute;
  top: -7vw;
  right: 10%;
  background-image: url(../img/cloud02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.8;
  transform: scale(-1, 1);
  animation: cloudFloat 6s ease-in-out infinite alternate;
  z-index: 1;
}
.f-introduction .greeting {
  width: 100%;
  position: relative;
  padding-bottom: 200px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-introduction .greeting {
    padding-bottom: 100px;
  }
}
.f-introduction .greeting .deco._cloud02 {
  aspect-ratio: 1768/1145;
  width: 20%;
  height: auto;
  position: absolute;
  bottom: 5vw;
  left: 12%;
  background-image: url(../img/cloud02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: cloudFloat 6s ease-in-out infinite alternate;
}
.f-introduction .greeting .circle-text {
  width: 15vw;
  height: 15vw;
  animation: rotate 15s linear infinite;
  position: absolute;
  top: 0;
  left: 3%;
  z-index: 10;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.f-introduction .greeting .box {
  justify-content: space-between;
}
.f-introduction .greeting .box .img {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-introduction .greeting .box .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-introduction .greeting .box .img img {
  aspect-ratio: 573/436;
  width: 100%;
  height: auto;
  border-radius: 0 20px 20px 0;
}
.f-introduction .greeting .box .txtArea {
  width: 60%;
  margin-top: 6vw;
  margin-left: -10%;
  display: flex;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-introduction .greeting .box .txtArea {
    width: 90%;
    margin-left: unset;
    margin-top: unset;
    margin: auto;
  }
}
.f-introduction .greeting .box .txtArea::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/leaf01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10vw;
  height: auto;
  position: absolute;
  top: -3vw;
  right: 0;
  z-index: 1;
  animation: yurari_2deg 2s ease-in-out infinite alternate;
}
.f-introduction .greeting .box .txtArea::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/flower02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10vw;
  height: auto;
  position: absolute;
  bottom: 0vw;
  left: 0;
  z-index: 1;
  animation: yurari_2deg 2s ease-in-out infinite alternate;
}
.f-introduction .greeting .box .txtArea .txt {
  background: #fff;
  padding: 60px 40px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  border-radius: 20px;
  border-radius: 20px 0 0 20px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 60px;
  padding-left: 25%;
  padding-right: 10%;
  line-height: 2.5;
}
@media screen and (max-width: 1024px) {
  .f-introduction .greeting .box .txtArea .txt {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .greeting .box .txtArea .txt {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .greeting .box .txtArea .txt {
    padding: 30px;
  }
}
.f-introduction .greeting .box .txtArea .txt span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  border-bottom: dotted 6px var(--main);
}
@media screen and (max-width: 1024px) {
  .f-introduction .greeting .box .txtArea .txt span {
    font-size: clamp(12px, 1.1rem, 1.1rem);
  }
}
.f-introduction .goals {
  display: flex;
  gap: 6%;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals {
    margin-bottom: 40px;
  }
}
.f-introduction .goals .deco._cloud03 {
  aspect-ratio: 1768/1145;
  width: 20%;
  height: auto;
  position: absolute;
  bottom: -5vw;
  right: -3%;
  background-image: url(../img/cloud02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: cloudMove 3s linear infinite, cloudFloat 6s ease-in-out infinite alternate;
}
.f-introduction .goals .titleArea {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: -60px;
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals .titleArea {
    margin-top: -30px;
  }
}
.f-introduction .goals .box {
  justify-content: space-between;
}
.f-introduction .goals .box .img {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals .box .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-introduction .goals .box .img img {
  aspect-ratio: 1/0.90332;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals .box .img img {
    border-radius: 10px;
  }
}
.f-introduction .goals .box .txtArea {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals .box .txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-introduction .goals .lead {
  margin-bottom: 30px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals .lead {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals .lead {
    margin: auto;
    margin-bottom: 30px;
  }
}
.f-introduction .goals .lead br {
  display: none;
}
.f-introduction .goals .lead span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--main);
  padding: 5px 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 1s ease forwards;
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals .lead span {
    padding: 2.5px 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals .lead span {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals .lead span {
    margin-bottom: 5px;
  }
}
.f-introduction .goals .lead span:nth-of-type(1) {
  animation-delay: 1s;
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals .lead span:nth-of-type(1) {
    margin: auto;
    margin-bottom: 10px;
  }
}
.f-introduction .goals .lead span:nth-of-type(2) {
  margin-left: 3vw;
  animation-delay: 2s;
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals .lead span:nth-of-type(2) {
    margin-left: unset;
    margin: auto;
    margin-bottom: 10px;
  }
}
.f-introduction .goals .lead span:nth-of-type(3) {
  margin-left: 6vw;
  animation-delay: 3s;
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals .lead span:nth-of-type(3) {
    margin-left: unset;
    margin: auto;
    margin-bottom: 10px;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .goals .txt {
    text-align: center;
  }
}
.f-introduction .english {
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-introduction .english {
    margin-bottom: 40px;
  }
}
.f-introduction .english .deco._cloud04 {
  aspect-ratio: 1768/1145;
  width: 20%;
  height: auto;
  position: absolute;
  bottom: -8vw;
  left: -6%;
  background-image: url(../img/cloud02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.7;
  transform: scale(-1, 1);
  animation: cloudFloat 6s ease-in-out infinite alternate;
}
.f-introduction .english .lead {
  width: 80%;
  background: #fff;
  padding: 60px 40px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  border-radius: 20px;
  margin: auto;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-introduction .english .lead {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .english .lead {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .english .lead {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .english .lead {
    margin-bottom: 30px;
  }
}
.f-introduction .english .lead::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/en01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15%;
  height: auto;
  position: absolute;
  top: -5vw;
  left: -3vw;
  z-index: 1;
}
.f-introduction .english .lead::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/en02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 12%;
  height: auto;
  position: absolute;
  bottom: -3vw;
  right: -3vw;
  z-index: 1;
}
.f-introduction .english__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .f-introduction .english__list {
    flex-direction: column;
  }
}
.f-introduction .english__item {
  width: 47%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .f-introduction .english__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-introduction .english__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .f-introduction .english__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.f-introduction .english__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .f-introduction .english__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.f-introduction .english__item .title {
  background-color: var(--main);
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: -30px;
  border-radius: 10px;
  color: var(--white);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-introduction .english__item .title {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .english__item .title {
    margin-bottom: -15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .english__item .title {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .english__item .title {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.f-introduction .english__item .content {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .f-introduction .english__item .content {
    border-radius: 10px;
  }
}
.f-introduction .english__item .img img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
}
.f-introduction .english__item .txt {
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .f-introduction .english__item .txt {
    padding: 15px;
  }
}
.f-introduction .physical .title {
  background-color: var(--main);
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
  border-radius: 10px;
  color: var(--white);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-introduction .physical .title {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .physical .title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .physical .title {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .physical .title {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.f-introduction .physical .box {
  justify-content: space-between;
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-introduction .physical .box {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .physical .box {
    margin-bottom: 30px;
  }
}
.f-introduction .physical .box .img {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .f-introduction .physical .box .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-introduction .physical .box .img img {
  height: 100%;
}
.f-introduction .physical .box .txtArea {
  width: 47%;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .f-introduction .physical .box .txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .physical .box .txtArea {
    padding: 15px;
  }
}
.f-introduction .physical .merit {
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .f-introduction .physical .merit {
    padding: 10px;
  }
}
.f-introduction .physical .merit__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--main);
  border-bottom: dotted 2px var(--main);
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .f-introduction .physical .merit__title {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-introduction .physical .merit__title {
    padding: 5px;
  }
}
.f-introduction .physical .merit__txt {
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .f-introduction .physical .merit__txt {
    padding: 5px;
  }
}

.f-life {
  position: relative;
  padding-top: 0;
}
.f-life::before {
  content: "";
  display: block;
  aspect-ratio: 3080/300;
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
  width: 100%;
  height: auto;
  position: absolute;
  top: -9vw;
  left: 0;
  z-index: 1;
}
.f-life::after {
  content: "";
  display: block;
  aspect-ratio: 3080/300;
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -4vw;
  left: 0;
  z-index: 1;
  transform: scale(1, -1);
}
.f-life .deco._01 {
  aspect-ratio: 1;
  width: 20%;
  height: auto;
  position: absolute;
  top: -13vw;
  left: 1%;
  background-image: url(../img/flag01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  opacity: 0.7;
  transform: rotate(-15deg);
}
.f-life .deco._02 {
  aspect-ratio: 1;
  width: 20%;
  height: auto;
  position: absolute;
  top: -13vw;
  right: 1%;
  background-image: url(../img/flag01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  opacity: 0.7;
  transform: rotate(15deg);
}
.f-life .wrap {
  position: relative;
  z-index: 2;
}
.f-life .safety__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .f-life .safety__list {
    flex-direction: column;
  }
}
.f-life .safety__item {
  width: 22%;
}
@media screen and (max-width: 1024px) {
  .f-life .safety__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-life .safety__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .f-life .safety__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.f-life .safety__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .f-life .safety__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.f-life .safety__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .f-life .safety__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.f-life .safety__item.is-show:nth-of-type(4) {
  animation-delay: 0.8s;
}
@media screen and (max-width: 1024px) {
  .f-life .safety__item.is-show:nth-of-type(4) {
    animation-delay: unset;
  }
}
.f-life .safety__item .img {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .f-life .safety__item .img {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-life .safety__item .img {
    margin-bottom: 10px;
  }
}
.f-life .safety__item .img img {
  aspect-ratio: 3/2;
}
.f-life .safety__item .title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .f-life .safety__item .title {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.f-life .event__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
@media screen and (max-width: 1024px) {
  .f-life .event__list {
    flex-direction: column;
  }
}
.f-life .event__item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .f-life .event__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-life .event__item .img img {
  aspect-ratio: 3/2;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-life .event__item .img img {
    border-radius: 5px;
  }
}
.f-life .event__item .img .title {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: var(--main);
  color: var(--white);
  margin-left: 20px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-life .event__item .img .title {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-life .event__item .img .title {
    border-radius: 4px;
  }
}
@media screen and (max-width: 1024px) {
  .f-life .event__item .img .title {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-life .event__item .img .title {
    margin-top: -10px;
  }
}

.f-support {
  position: relative;
  background-image: url(../img/bg02.png);
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: center;
  padding-top: 14vw;
  padding-bottom: 10vw;
}
.f-support .deco._bird01 {
  aspect-ratio: 166/64;
  width: 20%;
  height: auto;
  position: absolute;
  top: 2vw;
  right: 3%;
  background-image: url(../img/bird02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 3;
  opacity: 0.9;
}
.f-support .deco._cloud01 {
  aspect-ratio: 1768/1145;
  width: 18%;
  height: auto;
  position: absolute;
  top: 7vw;
  left: 4%;
  background-image: url(../img/cloud02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.8;
  transform: scale(-1, 1);
  animation: cloudMove02 3s linear infinite, cloudFloat02 6s ease-in-out infinite alternate;
}
.f-support .deco._cloud02 {
  aspect-ratio: 1768/1145;
  width: 18%;
  height: auto;
  position: absolute;
  bottom: 20vw;
  right: 0%;
  background-image: url(../img/cloud02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.8;
  animation: cloudMove 3s linear infinite, cloudFloat 6s ease-in-out infinite alternate;
}
.f-support .support {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-support .support {
    margin-bottom: 40px;
  }
}
.f-support .support__content {
  display: flex;
  gap: 80px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-support .support__content {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .f-support .support__content {
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .f-support .support__content {
    margin-bottom: 30px;
  }
}
.f-support .support__content .titleArea {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: -60px;
}
@media screen and (max-width: 1024px) {
  .f-support .support__content .titleArea {
    margin-top: -30px;
  }
}
.f-support .support__content .box {
  justify-content: space-between;
}
.f-support .support__content .box .item._txt {
  width: 65%;
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .f-support .support__content .box .item._txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-support .support__content .box .item._txt {
    padding-top: 15px;
  }
}
.f-support .support__content .box .item._img {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .f-support .support__content .box .item._img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-support .support__content .box .item._img img {
  aspect-ratio: 1/0.90332;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .f-support .support__content .box .item._img img {
    border-radius: 10px;
  }
}
.f-support .support__content .box .item .txt span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.15em;
  border-bottom: dotted 4px var(--main);
}
@media screen and (max-width: 1024px) {
  .f-support .support__content .box .item .txt span {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-support .support__content .box .item .txt {
    text-align: center;
  }
  .f-support .support__content .box .item .txt span {
    text-align: center;
  }
}
.f-support .support__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .f-support .support__list {
    flex-direction: column;
  }
}
.f-support .support__item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .f-support .support__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-support .support__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .f-support .support__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.f-support .support__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .f-support .support__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.f-support .support__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .f-support .support__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.f-support .support__item .img {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .f-support .support__item .img {
    margin-bottom: 5px;
  }
}
.f-support .support__item .img img {
  width: 70%;
  margin: auto;
}
.f-support .support__item .title {
  background-color: var(--main);
  color: var(--white);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 30px;
  padding: 0px 20px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-support .support__item .title {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-support .support__item .title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-support .support__item .title {
    padding: 0px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-support .support__item .title {
    border-radius: 5px;
  }
}
.f-support .support__item .txt {
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-support .support__item .txt {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-support .support__item .txt {
    border-radius: 5px;
  }
}
.f-support .event {
  position: relative;
}
.f-support .event::before {
  content: "";
  display: block;
  aspect-ratio: 176/421;
  background-image: url(../img/bloon01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10%;
  height: auto;
  position: absolute;
  top: -7vw;
  left: -8%;
  z-index: 1;
  opacity: 0.7;
  animation: cloudFloat 4s ease-in-out infinite alternate;
}

.f-guide {
  position: relative;
  background-size: auto auto;
  background-color: #fff; /* ベース色 */
  background-image: repeating-linear-gradient(135deg, #f5fef8, #f5fef8 6px, #fff 6px, #fff 18px);
  padding-top: 15vw;
  margin-top: -15vw;
  padding-bottom: 21vw;
  margin-bottom: -15vw;
}
.f-guide::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/leaf08.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 12%;
  height: auto;
  position: absolute;
  top: 0vw;
  right: 0%;
  z-index: 3;
}
.f-guide::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/leaf01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 12%;
  height: auto;
  position: absolute;
  top: 10vw;
  left: 0%;
  z-index: 3;
  transform: scale(-1, 1);
}
.f-guide .flow {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-guide .flow {
    margin-bottom: 40px;
  }
}
.f-guide .flow .lead {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--white);
  padding: 20px;
  margin: auto;
  margin-bottom: 60px;
  border: solid 6px var(--main);
}
@media screen and (max-width: 1024px) {
  .f-guide .flow .lead {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-guide .flow .lead {
    margin-bottom: 30px;
  }
}
.f-guide .flow .lead p {
  margin-bottom: 0;
}
.f-guide .flow__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .f-guide .flow__list {
    flex-direction: column;
  }
}
.f-guide .flow__item {
  width: 22%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-guide .flow__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-guide .flow__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .f-guide .flow__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.f-guide .flow__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .f-guide .flow__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.f-guide .flow__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .f-guide .flow__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.f-guide .flow__item.is-show:nth-of-type(4) {
  animation-delay: 0.8s;
}
@media screen and (max-width: 1024px) {
  .f-guide .flow__item.is-show:nth-of-type(4) {
    animation-delay: unset;
  }
}
.f-guide .flow__item .img {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--main);
  width: auto;
  height: 100px;
  margin: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .f-guide .flow__item .img {
    height: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .f-guide .flow__item .img {
    margin-bottom: 10px;
  }
}
.f-guide .flow__item .title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: var(--main);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .f-guide .flow__item .title {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.f-guide .flow__item .txt {
  background-color: var(--white);
  background-color: #f0fcec;
  padding: 16px;
}
@media screen and (max-width: 1024px) {
  .f-guide .flow__item .txt {
    padding: 8px;
  }
}
.f-guide .flow__item svg {
  width: 7%;
  position: absolute;
  top: 15%;
  right: -10%;
}
.f-guide .flow__item svg path {
  fill: var(--main);
}
@media screen and (max-width: 1024px) {
  .f-guide .flow__item svg {
    display: block;
    position: unset;
    transform: rotate(90deg);
    width: 15px;
    height: auto;
    margin: auto;
  }
}
.f-guide .flow__item:last-of-type svg {
  display: none;
}
.f-guide .faq__list {
  background: #fff;
  padding: 60px 40px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .f-guide .faq__list {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-guide .faq__list {
    border-radius: 10px;
  }
}

.f-recruit {
  position: relative;
  padding-top: 15vw;
  margin-top: -15vw;
  padding-bottom: 21vw;
  margin-bottom: -15vw;
}
.f-recruit::before, .f-recruit::after {
  content: "";
  display: block;
  position: absolute;
  height: auto;
  aspect-ratio: 1;
  z-index: 4;
}
.f-recruit::before {
  background-image: url(../img/flower03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 15%;
  top: 3vw;
  right: 2%;
}
.f-recruit::after {
  background-image: url(../img/flower02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 12%;
  bottom: 10vw;
  left: 2%;
}
.f-recruit .deco._01 {
  aspect-ratio: 1;
  width: 5%;
  height: auto;
  position: absolute;
  top: 20vw;
  left: 8%;
  background-image: url(../img/deco01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
  opacity: 0.5;
}
.f-recruit .deco._02 {
  aspect-ratio: 1;
  width: 5%;
  height: auto;
  position: absolute;
  bottom: 19vw;
  right: 11%;
  background-image: url(../img/deco02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
  opacity: 0.7;
}
.f-recruit .box {
  justify-content: space-between;
}
.f-recruit .box .item {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .f-recruit .box .item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-recruit .box .item img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .box .item img {
    border-radius: 5px;
  }
}
.f-recruit .box .item .txt {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .box .item .txt {
    margin-bottom: 15px;
  }
}
.f-recruit .box .item .txt span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.15em;
  border-bottom: dotted 4px var(--main);
}
@media screen and (max-width: 1024px) {
  .f-recruit .box .item .txt span {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-recruit .box .item .txt {
    text-align: center;
  }
  .f-recruit .box .item .txt span {
    text-align: center;
  }
}

.f-contact {
  background-image: url(../img/bg02.png);
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: center;
  padding-top: 15vw;
  margin-top: -15vw;
  position: relative;
}
.f-contact .deco._cloud01 {
  aspect-ratio: 1768/1145;
  width: 18%;
  height: auto;
  position: absolute;
  top: 10vw;
  right: 4%;
  background-image: url(../img/cloud02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.8;
}
.f-contact .deco._cloud02 {
  aspect-ratio: 1768/1145;
  width: 18%;
  height: auto;
  position: absolute;
  top: 40%;
  left: 0%;
  background-image: url(../img/cloud02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.8;
}
.f-contact .box {
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-contact .box {
    margin-bottom: 40px;
  }
}
.f-contact .box .item {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .f-contact .box .item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-contact .contact__content {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .f-contact .contact__content {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-contact .contact__content {
    padding: 20px;
  }
}

.header {
  position: fixed;
  z-index: 11;
}
.header .logo {
  width: 100%;
}
.header .logo__img {
  display: block;
}
@media screen and (max-width: 1024px) {
  .header .logo__img {
    display: none;
  }
}
.header_navArea {
  display: flex;
}
.header.scrolled {
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 3;
}
.header.scrolled .header-sub-box {
  display: none;
}
.header.scrolled .header-box01 {
  margin-bottom: 0;
}
.header.scrolled .header-content02 {
  display: none;
  width: 90%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  border-radius: 999px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .header.scrolled .header-content02 {
    display: none;
  }
}
.header.scrolled .header-menu > li a {
  font-size: 1.4rem;
  padding: 0 20px;
  font-weight: 600;
  border-right: none;
}
@media screen and (max-width: 1200px) {
  .header.scrolled .header-menu > li a {
    font-size: 1.2rem;
    padding: 0 16px;
  }
}
.header .menu-header-menu-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header-menu li a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  color: unset;
  padding: 0 1.5625vw;
  letter-spacing: 0.15em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .header .header-menu li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.header .header-menu li a span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2rem;
  color: var(--main);
  text-align: center;
  margin: auto;
  text-transform: capitalize;
}
@media screen and (max-width: 1024px) {
  .header .header-menu li a span {
    font-size: clamp(12px, 0.6rem, 0.6rem);
  }
}

.header-sub-box {
  display: flex;
}
@media screen and (max-width: 1600px) {
  .header-sub-box {
    justify-content: end;
  }
}
.header-sub-box .g-nav-tel-pc a {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-nav-tel-pc a {
    font-size: clamp(12px, 1.2rem, 1.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-nav-tel-pc a {
    gap: 8px;
  }
}
.header-sub-box .g-nav-tel-pc a::before {
  content: "";
  display: block;
  aspect-ratio: 685/1165;
  -webkit-mask-image: url(../img/icon_tel02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_tel02.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--main);
  width: 18px;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-nav-tel-pc a::before {
    width: 9px;
  }
}
.header-sub-box .g-nav-tel-pc:hover a {
  color: var(--main);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  gap: 10px;
  border-radius: 999px;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-sub-nav02 .g-sub-nav-list li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a::before {
  content: "";
  display: block;
  background-color: var(--white);
  height: auto;
  z-index: 1;
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a:hover {
  background-color: var(--white) !important;
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:first-of-type a {
  background-color: var(--main);
  border: solid 2px var(--main);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:first-of-type a::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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 20px;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-sub-nav02 .g-sub-nav-list li:first-of-type a::before {
    width: 10px;
  }
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:first-of-type a:hover {
  color: var(--main);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:first-of-type a:hover::before {
  background-color: var(--main);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:nth-of-type(2) a {
  background-color: var(--deep);
  border: solid 2px var(--deep);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:nth-of-type(2) a::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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 20px;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-sub-nav02 .g-sub-nav-list li:nth-of-type(2) a::before {
    width: 10px;
  }
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:nth-of-type(2) a:hover {
  color: var(--deep);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:nth-of-type(2) a:hover::before {
  background-color: var(--deep);
}

.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 {
    width: 100%;
    margin-bottom: 0;
  }
}
.fix_nav .fix_nav_list li a {
  border-radius: 10px 0 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px 10px;
  text-align: center;
  letter-spacing: 0.15em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4rem;
  writing-mode: vertical-lr;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li a {
    gap: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li a {
    padding: 5px 5px;
  }
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li a {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li a {
    writing-mode: unset;
    border-radius: 10px 10px 0 0;
  }
}
.fix_nav .fix_nav_list li a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  z-index: 1;
  background-color: #fff;
}
.fix_nav .fix_nav_list li a:hover {
  background-color: var(--white) !important;
}
.fix_nav .fix_nav_list li:nth-of-type(1) a {
  border: solid 2px var(--main);
  background-color: var(--main);
}
.fix_nav .fix_nav_list li:nth-of-type(1) a::before {
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.fix_nav .fix_nav_list li:nth-of-type(1) a:hover {
  color: var(--main);
}
.fix_nav .fix_nav_list li:nth-of-type(1) a:hover::before {
  background-color: var(--main);
}
.fix_nav .fix_nav_list li:nth-of-type(2) a {
  border: solid 2px var(--deep);
  background-color: var(--deep);
}
.fix_nav .fix_nav_list li:nth-of-type(2) a::before {
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.fix_nav .fix_nav_list li:nth-of-type(2) a:hover {
  color: var(--deep);
}
.fix_nav .fix_nav_list li:nth-of-type(2) a:hover::before {
  background-color: var(--deep);
}

.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: 70px;
}
.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: 70px;
  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-nav-wrap .mobile-menu-list {
  width: 100%;
}
.mobile-nav-wrap .mobile-menu-list > li a span {
  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", sans-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;
  background-color: #eefdfe !important;
}
#loading::before, #loading::after {
  content: "";
  display: block;
  aspect-ratio: 1768/1145;
  background-image: url(../img/cloud01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30%;
  height: auto;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #loading::before, #loading::after {
    width: 40%;
    top: 70px;
  }
}
#loading::before {
  left: 0;
  top: 0;
}
#loading::after {
  bottom: 0;
  right: 0;
  transform: scale(-1, -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: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease-out;
  cursor: pointer;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 12;
  transform: translateX(200px);
}
.pc-btn::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-color: var(--main);
  width: 150%;
  height: 150%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  top: -40%;
  left: -20%;
  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;
}
.pc-btn.active::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  top: -31%;
  left: 0%;
}

#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: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  border-bottom: solid 1px #ddd;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-nav-wrap .pc-nav-menu-list li a {
    gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-nav-wrap .pc-nav-menu-list li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list li a span {
  color: var(--main);
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list li a:hover {
  color: var(--main);
  transition: all 0.3s;
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list .sub-menu {
  padding-left: 20px;
  padding-bottom: 10px;
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list .sub-menu li a {
  border-bottom: none;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#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: 47%;
}
#pc-nav .pc-sub-nav-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--main);
  border: solid 1px var(--main);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
  white-space: nowrap;
  padding: 20px;
  transition: all 0.3s;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-sub-nav-list li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
#pc-nav .pc-sub-nav-list li a::before {
  content: "";
  display: block;
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
  width: 20px;
  height: 20px;
  z-index: 1;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-sub-nav-list li a::before {
    width: 10px;
  }
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-sub-nav-list li a::before {
    height: 10px;
  }
}
#pc-nav .pc-sub-nav-list li a:hover {
  background-color: var(--white);
  color: var(--main);
  transition: all 0.3s;
}
#pc-nav .pc-sub-nav-list li a:hover::before {
  background-color: var(--main);
}
#pc-nav .pc-sub-nav-list li a::before {
  content: "";
  display: block;
  background-color: var(--white);
  height: auto;
  z-index: 1;
}
#pc-nav .pc-sub-nav-list li a:hover {
  background-color: var(--white) !important;
}
#pc-nav .pc-sub-nav-list li:first-of-type a {
  background-color: var(--main);
  border: solid 2px var(--main);
}
#pc-nav .pc-sub-nav-list li:first-of-type a::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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 20px;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-sub-nav-list li:first-of-type a::before {
    width: 10px;
  }
}
#pc-nav .pc-sub-nav-list li:first-of-type a:hover {
  color: var(--main);
}
#pc-nav .pc-sub-nav-list li:first-of-type a:hover::before {
  background-color: var(--main);
}
#pc-nav .pc-sub-nav-list li:nth-of-type(2) a {
  background-color: var(--deep);
  border: solid 2px var(--deep);
}
#pc-nav .pc-sub-nav-list li:nth-of-type(2) a::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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 20px;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-sub-nav-list li:nth-of-type(2) a::before {
    width: 10px;
  }
}
#pc-nav .pc-sub-nav-list li:nth-of-type(2) a:hover {
  color: var(--deep);
}
#pc-nav .pc-sub-nav-list li:nth-of-type(2) a:hover::before {
  background-color: var(--deep);
}
#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-head {
  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 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: var(--main);
}
@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;
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--main);
  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 {
  opacity: 0.8;
}

.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);
  }
}
.sec:first-of-type {
  padding-top: 0;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .sec:first-of-type {
    margin-top: 50px;
  }
}

.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 {
  width: 100%;
  background: linear-gradient(to top, #e6fcfe 0%, #fff 100%);
}
@media screen and (max-width: 1024px) {
  .contact-band {
    background-attachment: unset;
  }
}
.contact-band-inner {
  width: 90%;
  background-color: rgba(255, 255, 255, 0.7);
  margin: auto;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .contact-band-inner {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-inner {
    border-radius: 10px;
  }
}
.contact-band-inner::before {
  content: "";
  display: block;
  aspect-ratio: 139/62;
  background-image: url(../img/cloud03.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15%;
  height: auto;
  position: absolute;
  top: -3vw;
  right: 0%;
  z-index: 1;
  opacity: 0.6;
}
.contact-band-inner::after {
  content: "";
  display: block;
  aspect-ratio: 139/62;
  background-image: url(../img/cloud03.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15%;
  height: auto;
  position: absolute;
  top: -1vw;
  left: 2%;
  z-index: 1;
  opacity: 0.6;
  transform: scale(-1, 1);
}
.contact-band .box {
  max-width: 1000px;
  margin: auto;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .contact-band .box {
    max-width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .box {
    margin-top: 30px;
  }
}
.contact-band .box .contact-band-btn {
  width: 50%;
  max-width: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .contact-band .box .contact-band-btn {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .box .contact-band-btn {
    gap: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .box .contact-band-btn {
    margin-bottom: 0;
  }
}
.contact-band .box .contact-band-btn::after {
  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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
  width: 24px;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .contact-band .box .contact-band-btn::after {
    width: 12px;
  }
}
.contact-band .box .contact-band-btn:hover::after {
  background-color: var(--main);
}
.contact-band .box .contact-band-tel-block {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .contact-band .box .contact-band-tel-block {
    width: 100%;
    margin-bottom: 20px;
  }
}
.contact-band .box .cf-tel-number {
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .contact-band .box .cf-tel-number {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .box .cf-tel-number {
    gap: 8px;
  }
}
.contact-band .box .cf-tel-number::before {
  content: "";
  display: block;
  aspect-ratio: 957/1503;
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--main);
  width: 24px;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .contact-band .box .cf-tel-number::before {
    width: 12px;
  }
}
.contact-band .box .cf-tel-number:hover {
  color: var(--main);
}

.recruit .recommend {
  padding-bottom: 10vw;
  position: relative;
}
.recruit .recommend::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/flower03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 15%;
  height: auto;
  position: absolute;
  top: 0;
  right: 2%;
  z-index: 1;
}
.recruit .recommend::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/flower02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 15%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 2%;
  z-index: 1;
}
.recruit .recommend__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .recruit .recommend__list {
    flex-direction: column;
  }
}
.recruit .recommend__item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .recruit .recommend__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.recruit .recommend__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .recruit .recommend__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.recruit .recommend__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .recruit .recommend__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.recruit .recommend__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .recruit .recommend__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.recruit .recommend__item:nth-of-type(2) {
  margin-top: 5vw;
}
@media screen and (max-width: 1024px) {
  .recruit .recommend__item:nth-of-type(2) {
    margin-top: 0;
  }
}
.recruit .recommend__item .content {
  aspect-ratio: 1;
  background-color: var(--base);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 350px;
  margin: auto;
}
.recruit .recommend__item .title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--deep);
}
@media screen and (max-width: 1024px) {
  .recruit .recommend__item .title {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.recruit .recommend__item .img img {
  width: 60%;
  margin: auto;
}
.recruit .workplace {
  background-size: auto auto;
  background-color: #fff; /* ベース色 */
  background-image: repeating-linear-gradient(135deg, #f5fef8, #f5fef8 6px, #fff 6px, #fff 18px);
  position: relative;
  padding-top: 0;
}
.recruit .workplace::before {
  content: "";
  display: block;
  aspect-ratio: 3080/300;
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-size: auto auto;
  background-color: #fff; /* ベース色 */
  background-image: repeating-linear-gradient(135deg, #f5fef8, #f5fef8 6px, #fff 6px, #fff 18px);
  width: 100%;
  height: auto;
  position: absolute;
  top: -9vw;
  left: 0;
  z-index: -1;
}
.recruit .workplace__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__list {
    flex-direction: column;
  }
}
.recruit .workplace__item {
  width: 30%;
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item {
    margin-bottom: 15px;
  }
}
.recruit .workplace__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.recruit .workplace__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.recruit .workplace__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.recruit .workplace__item.is-show:nth-of-type(4) {
  animation-delay: 0.8s;
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item.is-show:nth-of-type(4) {
    animation-delay: unset;
  }
}
.recruit .workplace__item.is-show:nth-of-type(5) {
  animation-delay: 1s;
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item.is-show:nth-of-type(5) {
    animation-delay: unset;
  }
}
.recruit .workplace__item.is-show:nth-of-type(6) {
  animation-delay: 1.2s;
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item.is-show:nth-of-type(6) {
    animation-delay: unset;
  }
}
.recruit .workplace__item .content {
  padding: 0px 20px;
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item .content {
    padding: 0px 10px;
  }
}
.recruit .workplace__item .title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  background-color: var(--main);
  color: var(--white);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 10px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item .title {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item .title {
    padding: 0px 5px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item .title {
    margin-top: -10px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit .workplace__item .title {
    margin: auto;
    margin-top: 10px;
    margin-bottom: 16px;
  }
}
.recruit .recruit_flow {
  position: relative;
  padding-top: 0;
  padding-bottom: 10vw;
}
.recruit .recruit_flow::before {
  content: "";
  display: block;
  aspect-ratio: 3080/300;
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
  width: 100%;
  height: auto;
  position: absolute;
  top: -9vw;
  left: 0;
  z-index: 1;
}
.recruit .recruit_flow .inner {
  position: relative;
  z-index: 2;
}
.recruit .recruit_flow__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .recruit .recruit_flow__list {
    flex-direction: column;
  }
}
.recruit .recruit_flow__item {
  width: 30%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .recruit .recruit_flow__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.recruit .recruit_flow__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .recruit .recruit_flow__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.recruit .recruit_flow__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .recruit .recruit_flow__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.recruit .recruit_flow__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .recruit .recruit_flow__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.recruit .recruit_flow__item .img {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--main);
  width: auto;
  height: 100px;
  margin: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .recruit .recruit_flow__item .img {
    height: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit .recruit_flow__item .img {
    margin-bottom: 10px;
  }
}
.recruit .recruit_flow__item .title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  background-color: var(--main);
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  padding: 6px;
}
@media screen and (max-width: 1024px) {
  .recruit .recruit_flow__item .title {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .recruit .recruit_flow__item .title {
    border-radius: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit .recruit_flow__item .title {
    padding: 3px;
  }
}
.recruit .recruit_flow__item svg {
  width: 7%;
  position: absolute;
  top: 15%;
  right: -10%;
}
.recruit .recruit_flow__item svg path {
  fill: var(--main);
}
@media screen and (max-width: 1024px) {
  .recruit .recruit_flow__item svg {
    display: block;
    position: unset;
    transform: rotate(90deg);
    width: 15px;
    height: auto;
    margin: auto;
  }
}
.recruit .recruit_flow__item:last-of-type svg {
  display: none;
}
.recruit .recruit_faq {
  background-size: auto auto;
  background-color: #fff; /* ベース色 */
  background-image: repeating-linear-gradient(135deg, #f5fef8, #f5fef8 6px, #fff 6px, #fff 18px);
  position: relative;
  padding-top: 0;
  padding-bottom: 10vw;
}
.recruit .recruit_faq::before {
  content: "";
  display: block;
  aspect-ratio: 3080/300;
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-size: auto auto;
  background-color: #fff; /* ベース色 */
  background-image: repeating-linear-gradient(135deg, #f5fef8, #f5fef8 6px, #fff 6px, #fff 18px);
  width: 100%;
  height: auto;
  position: absolute;
  top: -9vw;
  left: 0;
  z-index: -1;
}
.recruit .faq__list {
  background: #fff;
  padding: 60px 40px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .recruit .faq__list {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit .faq__list {
    border-radius: 10px;
  }
}
.recruit .recruitment {
  position: relative;
  padding-top: 0;
  padding-bottom: 10vw;
}
.recruit .recruitment::before {
  content: "";
  display: block;
  aspect-ratio: 3080/300;
  -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;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
  width: 100%;
  height: auto;
  position: absolute;
  top: -9vw;
  left: 0;
  z-index: 1;
}
.recruit .recruitment .inner {
  position: relative;
  z-index: 2;
}

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

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

.single-office-post .office__header {
  position: relative;
}
.single-office-post .office__header::before {
  content: "";
  display: block;
  width: 100%;
  height: 30%;
  background-color: var(--base);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.single-office-post .office__header .title {
  background-color: var(--main);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  padding: 20px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office__header .title {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .single-office-post .office__header .title {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .single-office-post .office__header .title {
    margin-bottom: 30px;
  }
}
.single-office-post .office__header .img {
  width: 70%;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office__header .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.single-office-post .office .feature {
  position: relative;
}
.single-office-post .office .feature::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--base);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.single-office-post .office .feature .bg_txt {
  position: absolute;
  top: 0;
  left: 2%;
}
.single-office-post .office .feature .bg_txt span {
  color: var(--main);
  opacity: 0.1;
}
.single-office-post .office .feature__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .feature__list {
    flex-direction: column;
  }
}
.single-office-post .office .feature__item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .feature__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.single-office-post .office .feature__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .feature__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.single-office-post .office .feature__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .feature__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.single-office-post .office .feature__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .feature__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.single-office-post .office .feature__item .img {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .feature__item .img {
    margin-bottom: 5px;
  }
}
.single-office-post .office .feature__item .img img {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
}
.single-office-post .office .feature__item .title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--main);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .feature__item .title {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.single-office-post .office .day {
  position: relative;
}
.single-office-post .office .day .bg_txt {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 20px;
  right: 2%;
  opacity: 0.5;
  z-index: -1;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .day .bg_txt {
    top: 10px;
  }
}
.single-office-post .office .day .bg_txt span {
  font-size: 10.4166666667vw;
}
.single-office-post .office .info {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .info {
    background-attachment: unset;
  }
}
.single-office-post .office .info::before {
  content: "";
  display: block;
  background-color: rgba(87, 188, 211, 0.9);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.single-office-post .office .info .bg_txt {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  opacity: 0.1;
  z-index: 1;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .info .bg_txt {
    top: 10px;
  }
}
.single-office-post .office .info .inner {
  position: relative;
  z-index: 2;
}
.single-office-post .office .info .title01 .ja,
.single-office-post .office .info .title01 .en {
  color: var(--white);
}
.single-office-post .office .info .title01::after {
  background-color: var(--white);
}
.single-office-post .office .info .box {
  justify-content: space-between;
}
.single-office-post .office .info .box .item {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .info .box .item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.single-office-post .office .info .box .item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .info .box .item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.single-office-post .office .info .box .item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .info .box .item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.single-office-post .office .info .box .item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .info .box .item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.single-office-post .office .info .box .item._table .txt {
  font-size: 1.8rem;
  color: var(--white);
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .info .box .item._table .txt {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.single-office-post .office .info .box .item._table .content {
  background-color: var(--white);
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .info .box .item._table .content {
    padding: 10px;
  }
}
.single-office-post .office .preparing {
  padding: 100px;
}
@media screen and (max-width: 1024px) {
  .single-office-post .office .preparing {
    padding: 50px;
  }
}
.single-office-post .office .preparing .txt {
  text-align: center;
}

.width1200 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.com-timeline01 {
  position: relative;
}

.com-timeline01 .timeline {
  width: 40px;
  margin: 50px auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: radial-gradient(#bae84a 30%, transparent 30%);
  background-size: 10px 10px;
  background-repeat: no-repeat space;
  background-position: center;
}

.com-timeline01 .timeline .sun {
  max-width: 40px;
  margin: 0 auto;
  position: absolute;
  width: 50px;
  left: 0;
  right: 0;
  top: -50px;
}

.com-timeline01 .timeline .sun svg {
  width: 100%;
  fill: var(--main);
}

.com-timeline01 .timeline .moon {
  max-width: 40px;
  margin: 0 auto;
  position: absolute;
  width: 50px;
  left: 0;
  right: 0;
  bottom: -50px;
  margin: 0 auto;
}

.com-timeline01 .timeline .moon svg {
  width: 100%;
  fill: var(--main);
}

.com-timeline01-list {
  margin-bottom: 60px;
}

.com-timeline01-list li {
  margin-bottom: 40px;
}

.com-timeline01-list li:last-of-type {
  margin-bottom: 0;
}

.com-timeline01-img-wrap {
  width: 50%;
  padding: 0 40px;
}

.com-timeline01-img-wrap img {
  height: 270px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}

.com-timeline01-list li:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.com-timeline01-content {
  width: 50%;
  padding: 0 40px;
  margin-top: 20px;
}

.com-timeline01-content .list li {
  margin-bottom: 0;
}

.com-timeline01-time {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--main);
  letter-spacing: 0.1em;
  border-bottom: 3px solid var(--main);
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.com-timeline01-time svg {
  margin-right: 5px;
}

.com-timeline01-head {
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 20px;
}

.com-timeline01-list .flow-txt {
  line-height: 2em;
}

.com-timeline01-wrap .flow-other .flow-other-inner {
  padding: 20px;
  background-color: #fff6df;
  text-align: center;
  border-radius: 15px;
}

.com-timeline01-wrap .flow-other .flow-other-inner p {
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .width1200 {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1024px) {
  .com-timeline01-time {
    font-size: 1.8rem;
  }
  .com-timeline01-head {
    font-size: 2rem;
  }
}
@media screen and (max-width: 820px) {
  .com-timeline01 .timeline {
    width: 30px;
    margin: auto 0;
    height: calc(100% - 70px);
  }
  .com-timeline01 .timeline .sun {
    max-width: 30px;
    top: -40px;
  }
  .com-timeline01 .timeline .moon {
    max-width: 30px;
    bottom: -40px;
  }
  .com-timeline01-list li {
    margin-bottom: 20px;
  }
  .com-timeline01-list li:nth-of-type(2n) {
    flex-direction: row;
  }
  .com-timeline01-content {
    width: 50%;
    padding-right: 0;
    margin-top: 40px;
  }
  .com-timeline01-img-wrap {
    width: 50%;
    padding-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .com-timeline01-img-wrap {
    width: 100%;
  }
  .com-timeline01-content {
    width: 100%;
    margin-top: 20px;
  }
  .com-timeline01-head {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .com-timeline01-list li:last-of-type {
    margin-bottom: 40px;
  }
  .com-timeline01 .timeline {
    margin-top: 30px;
    height: calc(100% - 30px);
  }
}
@media screen and (max-width: 450px) {
  .com-timeline01-img-wrap img {
    height: 50vw;
  }
}
.faq__list li {
  margin-bottom: 10px;
}

._q {
  padding-left: 35px;
  padding-right: 35px;
  background-repeat: no-repeat;
  background-size: 30px auto;
  font-size: 1.6rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
@media screen and (max-width: 1024px) {
  ._q {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
._q::before {
  content: "Q";
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--main);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  ._q::before {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  ._q::before {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  ._q::before {
    height: 15px;
  }
}
@media screen and (max-width: 1024px) {
  ._q::before {
    top: 4px;
  }
}
._q:hover {
  opacity: 0.7;
  cursor: pointer;
}

._a {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  padding-left: 35px;
  font-size: 1.6rem;
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  ._a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
._a::before {
  content: "A";
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  ._a::before {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  ._a::before {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  ._a::before {
    height: 15px;
  }
}
@media screen and (max-width: 1024px) {
  ._a::before {
    top: 4px;
  }
}

.plus {
  display: inline-block;
  vertical-align: 0.3em;
  color: var(--main);
  line-height: 1;
  width: 1em;
  height: 3px;
  background: currentColor;
  border-radius: 0.1em;
  position: absolute;
  top: 10px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .plus {
    top: 5px;
  }
}
.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;
}
.plus.active:before {
  transform: rotate(0deg);
}

@media screen and (max-width: 1024px) {
  ._q,
  ._a {
    padding-left: 28px;
    padding-right: 28px;
    background-repeat: no-repeat;
    background-size: 25px auto;
    background-position: top 1px left 0;
    font-size: 1.2rem;
  }
  .faq__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.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;
}

.footer {
  position: relative;
  padding-top: 0;
  background: linear-gradient(to bottom, #e6fcfe 0%, #f7f4ee 100%);
}
@media screen and (max-width: 1024px) {
  .footer {
    margin-bottom: 35px;
  }
}
.footer::before {
  content: "";
  display: block;
  aspect-ratio: 842/127;
  background-image: url(../img/footer_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.footer-inner {
  position: relative;
  z-index: 2;
  margin: auto;
}
.footer-logo img {
  max-width: 260px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .footer-logo img {
    max-width: 130px;
  }
}

.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: 1.5s;
}
.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;
  }
}
.contact .bnr_tel {
  background-size: auto auto;
  background-color: #fff; /* ベース色 */
  background-image: repeating-linear-gradient(135deg, #f5fef8, #f5fef8 6px, #fff 6px, #fff 18px);
  padding: 20px;
  margin-bottom: 60px;
}
@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);
  }
}