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

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

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

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

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

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

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

main.panelactive {
  display: none;
}

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

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

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

.title_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 3.6458333333vw;
  line-height: 1;
  color: var(--main);
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title_ja {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .title_ja {
    font-size: 7vw;
    padding-right: 10px;
  }
}

.title01 {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
  overflow: hidden;
  position: relative;
  transition: color 0ms 450ms;
}
@media screen and (max-width: 1024px) {
  .title01 {
    margin-bottom: 30px;
  }
}
.title01 .ja {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 3.6458333333vw;
  line-height: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .title01 .ja {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .title01 .ja {
    font-size: 25px;
  }
}
.title01 .en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: var(--txt);
  padding: 10px 20px;
  margin: auto;
  margin-top: 30px;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .title01 .en {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .title01 .en {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .title01 .en {
    margin-top: 15px;
  }
}
.title01::after {
  background: linear-gradient(135deg, #ec6400 0%, #f7ad09 100%);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, 101%);
}
.title01.is-show .en {
  opacity: 1;
  transition: all 1s;
  transition-delay: 1.2s;
}
.title01.is-show .ja {
  opacity: 1;
  transition: all 1s;
  transition-delay: 1.2s;
}
.title01.is-show::after {
  animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
}

@keyframes mask-bg {
  0% {
    transform: translate(-101%, 0);
  }
  40%, 60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(101%, 0);
  }
}
.title02 {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title02 {
    margin-bottom: 30px;
  }
}
.title02 .en {
  color: var(--light_orange);
  font-size: 5.2083333333vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  margin: auto;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
@media screen and (max-width: 1024px) {
  .title02 .en {
    font-size: 10vw;
  }
}
.title02 .ja {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  margin: auto;
  margin-top: -14px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .title02 .ja {
    padding: 5px 15px;
  }
}
@media screen and (max-width: 1024px) {
  .title02 .ja {
    margin-top: -7px;
  }
}
.title02 .ja .txt {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--white);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .title02 .ja .txt {
    font-size: clamp(12px, 2.5rem, 2.5rem);
  }
}
.title02 .ja::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #ffa500 0%, #ff7e20 100%);
  z-index: 1;
}
.title02 .ja::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 80px;
  height: auto;
  background-image: url(../img/dot01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  position: absolute;
  right: -50px;
  bottom: -50px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .title02 .ja::after {
    width: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .title02 .ja::after {
    right: -25px;
  }
}
@media screen and (max-width: 1024px) {
  .title02 .ja::after {
    bottom: -25px;
  }
}
.title02.is-show .en {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.title02.is-show .ja::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transform-origin: left center;
}

.title03 {
  font-size: 2.8rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title03 {
    font-size: clamp(12px, 1.4rem, 1.4rem);
  }
}
@media screen and (max-width: 1024px) {
  .title03 {
    margin-bottom: 30px;
  }
}
.title03 .en,
.title03 .ja {
  display: block;
}
.title03 .en {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--main);
  font-size: 5rem;
  line-height: 1;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
@media screen and (max-width: 1024px) {
  .title03 .en {
    font-size: clamp(12px, 2.5rem, 2.5rem);
  }
}
.title03 .ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--light02);
  margin-bottom: 20px;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .title03 .ja {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
@media screen and (max-width: 1024px) {
  .title03 .ja {
    gap: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .title03 .ja {
    margin-bottom: 10px;
  }
}
.title03 .ja::before {
  content: "";
  display: block;
  background-image: url(../img/icon-bone-01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1024px) {
  .title03 .ja::before {
    width: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .title03 .ja::before {
    height: 10px;
  }
}
.title03.is-show .en {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.title03.is-show .ja {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.title04 {
  color: var(--txt);
  font-size: 2rem;
  font-weight: 600;
  width: 100%;
  padding: 10px 20px;
  margin-bottom: 40px;
  border-left: 10px solid var(--txt);
  border-bottom: solid 1px var(--txt);
}
@media screen and (max-width: 1024px) {
  .title04 {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .title04 {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .title04 {
    margin-bottom: 20px;
  }
}

.title05 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--main);
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title05 {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .title05 {
    margin-bottom: 30px;
  }
}

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

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

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

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

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

.btn.btn01 {
  position: relative;
  max-width: 400px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .btn.btn01 {
    padding: 15px;
  }
}
.btn.btn01 .btn_txt {
  color: var(--main);
  font-weight: bold;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
  transition: color 0.4s ease-out;
}
@media screen and (max-width: 1024px) {
  .btn.btn01 .btn_txt {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.btn.btn01 .btn_arrow {
  display: block;
  width: 0.7142857143vw;
  position: relative;
}
.btn.btn01 .btn_arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -30px;
  background: var(--main);
  width: 1px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .btn.btn01 .btn_arrow::after {
    left: -15px;
  }
}
.btn.btn01 .btn_arrow svg path {
  fill: var(--main);
}
.btn.btn01 .border {
  content: "";
  position: absolute;
  opacity: 0;
}
.btn.btn01 .border.top, .btn.btn01 .border.bottom {
  width: calc(100% - 20px);
  width: 100%;
}
.btn.btn01 .border.top {
  border-top: 2px solid var(--main);
  right: 0;
  top: 0;
}
.btn.btn01 .border.bottom {
  border-bottom: 2px solid var(--main);
  left: 0;
  bottom: 0;
}
.btn.btn01 .border.right, .btn.btn01 .border.left {
  height: calc(100% - 20px);
  height: 100%;
}
.btn.btn01 .border.right {
  border-right: 2px solid var(--main);
  right: 0;
  top: 0;
}
.btn.btn01 .border.left {
  border-left: 2px solid var(--main);
  left: 0;
  bottom: 0;
}
.btn.btn01.is-show .border {
  opacity: 1;
}
.btn.btn01.is-show .border.top, .btn.btn01.is-show .border.bottom {
  animation: stroke-width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn.btn01.is-show .border.right, .btn.btn01.is-show .border.left {
  animation: stroke-height 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn02 {
  font-size: 1.6rem;
  color: var(--navy);
  position: relative;
  max-width: unset;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  margin-left: auto;
  margin-right: 0;
  padding-right: 40px;
  line-height: 40px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .btn02 {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .btn02 {
    padding-right: 20px;
  }
}
.btn02::before {
  content: "";
  display: block;
}
.btn02::before {
  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);
}
.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;
}

main {
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .home main {
    margin-top: 5px;
  }
}

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

.tablepress {
  background: #fff;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box !important;
  border: none;
}
.tablepress thead th {
  color: var(--main) !important;
  color: #fff !important;
  background-color: var(--bg_green02) !important;
  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 td {
  font-size: 1.6rem;
  border-right: 1px solid #ddd !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);
}
@media screen and (max-width: 1024px) {
  .tablepress tbody td.column-1 {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .tablepress tbody td.column-1 {
    display: block;
    margin-bottom: 0;
  }
}
.tablepress tbody td.column-2 {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .tablepress tbody td.column-2 {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .tablepress tbody td.column-2 {
    display: block;
    margin-bottom: 0;
  }
}
.tablepress.tablepress-id-11, .tablepress.tablepress-id-17 {
  background-color: var(--white) !important;
  margin-bottom: 30px;
  border: none !important;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-11, .tablepress.tablepress-id-17 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .tablepress.tablepress-id-11, .tablepress.tablepress-id-17 {
    border: solid 1px #ddd !important;
  }
}
.tablepress.tablepress-id-11 tbody td, .tablepress.tablepress-id-17 tbody td {
  border-bottom: solid 1px #ddd !important;
  border-right: none !important;
  font-size: 1.6rem;
  font-weight: 500;
  background-color: var(--white) !important;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-11 tbody td, .tablepress.tablepress-id-17 tbody td {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 600px) {
  .tablepress.tablepress-id-11 tbody td, .tablepress.tablepress-id-17 tbody td {
    display: block;
    width: 100%;
  }
}
.tablepress.tablepress-id-11 tbody td.column-1, .tablepress.tablepress-id-17 tbody td.column-1 {
  font-size: 1.6rem;
  font-weight: 700;
  background-color: var(--white) !important;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-11 tbody td.column-1, .tablepress.tablepress-id-17 tbody td.column-1 {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 600px) {
  .tablepress.tablepress-id-11 tbody td.column-1, .tablepress.tablepress-id-17 tbody td.column-1 {
    display: block;
    width: 100%;
    background-color: var(--main) !important;
    color: var(--white);
  }
}

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

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

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

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

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

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

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

.slider__wrap {
  padding-top: 0px;
  padding-bottom: 0 !important;
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .slider__wrap {
    padding-bottom: 50px;
  }
}
.slider__wrap .deco {
  display: block;
  aspect-ratio: 302/201;
  width: 55%;
  height: auto;
  position: absolute;
  right: -15%;
  bottom: 0%;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .slider__wrap .deco {
    bottom: 25%;
    right: -30%;
    width: 65%;
  }
}
.slider__wrap .deco__content {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider__wrap .deco__content .item {
  display: block;
  position: absolute;
  height: auto;
  opacity: 0;
  transition: 0.3s cubic-bezier(0.37, 0, 0.63, 1);
}
.slider__wrap .deco__content .item._1 {
  aspect-ratio: 68/30;
  width: 22.5165562914%;
  top: 53%;
  background-image: url(../img/s_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(50%, 0);
  transition-delay: 0.1s;
}
.slider__wrap .deco__content .item._2 {
  aspect-ratio: 120/44;
  width: 39.7350993377%;
  top: 46%;
  left: 6%;
  background-image: url(../img/s_02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(50%, 0);
  transition-delay: 0.2s;
}
.slider__wrap .deco__content .item._3 {
  aspect-ratio: 70/44;
  width: 23.178807947%;
  top: 38%;
  left: 7%;
  background-image: url(../img/s_03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(50%, -18%);
  transition-delay: 0.3s;
}
.slider__wrap .deco__content .item._4 {
  aspect-ratio: 99/34;
  width: 32.7814569536%;
  top: 75%;
  left: 11%;
  background-image: url(../img/s_04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(50%, 18%);
  transition-delay: 0.4s;
}
.slider__wrap .deco__content .item._5 {
  aspect-ratio: 139/30;
  width: 46.0264900662%;
  top: 58%;
  left: 14%;
  background-image: url(../img/s_05.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(50%, 0);
  transition-delay: 0.5s;
}
.slider__wrap .deco__content .item._6 {
  aspect-ratio: 81/57;
  width: 26.821192053%;
  top: 17%;
  left: 19%;
  background-image: url(../img/s_06.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(50%, -20%);
  transition-delay: 0.6s;
}
.slider__wrap .deco__content .item._7 {
  aspect-ratio: 154/51;
  width: 50.9933774834%;
  top: 75%;
  left: 22%;
  background-image: url(../img/s_07.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(50%, -18%);
  transition-delay: 0.7s;
}
.slider__wrap .deco__content .item._8 {
  aspect-ratio: 231/106;
  width: 76.4900662252%;
  top: 1%;
  left: 23%;
  background-image: url(../img/s_08.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(50%, -18%);
  transition-delay: 0.8s;
}
.slider__wrap .deco__content .item._9 {
  aspect-ratio: 154/52;
  width: 50.9933774834%;
  top: 35%;
  left: 37%;
  background-image: url(../img/s_09.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(50%, 0);
  transition-delay: 0.9s;
}
.slider__wrap .deco__content .item._10 {
  aspect-ratio: 126/28;
  width: 41.7218543046%;
  top: 58%;
  left: 43%;
  background-image: url(../img/s_10.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(50%, 0);
  transition-delay: 1s;
}
.slider__wrap .deco__content .item._11 {
  aspect-ratio: 116/48;
  width: 38.4105960265%;
  top: 23%;
  left: 44%;
  background-image: url(../img/s_11.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(50%, -18%);
  transition-delay: 1.1s;
}
.slider__wrap .slider {
  width: calc(100% - 120px);
  margin-right: auto;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .slider__wrap .slider {
    width: 100%;
  }
}
.slider__wrap .slider::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.25);
}
.slider__wrap .loop_wrap {
  display: flex;
  width: 100%;
  height: 9.375vw;
  overflow: hidden;
  margin-top: -1.5625vw;
  position: relative;
  z-index: -1;
}
.slider__wrap .loop_wrap .txt {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 7.8125vw;
  font-weight: 600;
  overflow: hidden;
  color: #fff8eb;
}
.slider__wrap .loop_wrap .txt:nth-of-type(odd) {
  animation: loop 60s -30s linear infinite;
}
.slider__wrap .loop_wrap .txt:nth-of-type(even) {
  animation: loop2 60s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.slider__wrap .catch__wrap {
  position: absolute;
  top: 58%;
  right: 28%;
  z-index: 2;
}
.slider__wrap .catch__wrap .catch__item {
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
}
.slider__wrap .catch__wrap .catch__item::after {
  content: "";
  background-image: url(../img/line03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 789/91;
  width: 90%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: scale(0, 0);
  transform-origin: left bottom;
}
.slider__wrap .catch__wrap .catch__item:nth-of-type(2) {
  margin-left: 20%;
}
.slider__wrap .catch__wrap .catch__item:nth-of-type(2)::after {
  content: "";
  background-image: url(../img/line05.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 789/61;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.5vw;
  margin: auto;
  transform: scale(0, 0);
  transform-origin: left bottom;
}
.slider__wrap .catch__wrap .catch {
  display: flex;
  align-items: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.125vw;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  margin-left: auto;
  position: relative;
  z-index: 3;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .slider__wrap .catch__wrap .catch {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .slider__wrap .catch__wrap .catch {
    font-size: 7.5vw;
  }
}
.slider__wrap .catch__wrap .catch .f_m {
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4.1666666667vw;
  color: var(--white);
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .slider__wrap .catch__wrap .catch .f_m {
    font-size: 10vw;
  }
}
.slider__wrap .catch__wrap .catch .f_l {
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4.6875vw;
  color: var(--white);
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .slider__wrap .catch__wrap .catch .f_l {
    font-size: 11.25vw;
  }
}
.slider__wrap .catch__wrap .catch span {
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: var(--txt);
  text-align: right;
  display: block;
}
@media screen and (max-width: 1024px) {
  .slider__wrap .catch__wrap .catch span {
    font-size: 1.2rem;
  }
}
.slider__wrap.load_complete .deco__content .item {
  transform: translate(0, 0);
  opacity: 60%;
}
.slider__wrap.load_complete .deco__content .item._3 {
  opacity: 70%;
}
.slider__wrap.load_complete .deco__content .item._4 {
  opacity: 75%;
}
.slider__wrap.load_complete .deco__content .item._10 {
  opacity: 80%;
}
.slider__wrap.load_complete .deco__content .item._11 {
  opacity: 85%;
}
.slider__wrap.load_complete .catch__item {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
.slider__wrap.load_complete .catch__item::after {
  transform: scale(1, 1);
  transition: all 0.3s;
  transition-delay: 0.5s;
}
.slider__wrap.load_complete .catch__item:nth-of-type(2) {
  animation-name: fadeUpAnime;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
.slider__wrap.load_complete .catch__item:nth-of-type(2)::after {
  transform: scale(1, 1);
  transition: all 0.8s;
  transition-delay: 1.5s;
}

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

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

.f-message {
  padding-top: 200px;
  margin-top: -100px;
  margin-bottom: 10%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-message {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .f-message {
    margin-top: -50px;
  }
}
@media screen and (max-width: 820px) {
  .f-message {
    margin-bottom: 80vw;
  }
}
.f-message::before {
  content: "";
  display: block;
  background: linear-gradient(135deg, #ffa500 0%, #ff7e20 100%);
  width: 90%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .f-message .inner {
    width: 80%;
  }
}
@media screen and (max-width: 820px) {
  .f-message .inner {
    width: 90%;
  }
}
.f-message .box {
  width: 90%;
  justify-content: space-between;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .f-message .box {
    flex-direction: row;
  }
}
@media screen and (max-width: 820px) {
  .f-message .box {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .f-message .box {
    width: 95%;
    margin-left: 5%;
  }
}
.f-message .box .item._txt {
  width: 50%;
}
@media screen and (max-width: 820px) {
  .f-message .box .item._txt {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 30px;
  }
}
.f-message .box .item._img {
  width: 50%;
  margin-top: 10%;
  margin-right: -5%;
  position: relative;
}
@media screen and (max-width: 820px) {
  .f-message .box .item._img {
    width: 100%;
  }
}
.f-message .box .item._img .img__wrap {
  position: absolute;
}
@media screen and (max-width: 820px) {
  .f-message .box .item._img .img__wrap {
    width: 80%;
    right: 0;
  }
}
.f-message .box .item._img .img__wrap::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 30%;
  height: auto;
  background-image: url(../img/dot01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  position: absolute;
  right: -50px;
  bottom: -50px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .f-message .box .item._img .img__wrap::after {
    right: -25px;
  }
}
@media screen and (max-width: 1024px) {
  .f-message .box .item._img .img__wrap::after {
    bottom: -25px;
  }
}
.f-message .box .item._img .img {
  overflow: hidden;
  position: relative;
}
.f-message .box .item._img .img img {
  opacity: 0;
}
.f-message .box .item._img .img::before {
  content: "";
  display: block;
  background: linear-gradient(135deg, #ff3846 0%, #b8000d 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0);
}
.f-message .box .item._img .img.is-show img {
  opacity: 1;
  transition: all 0.45s;
  transition-delay: 1.2s;
}
.f-message .box .item._img .img.is-show::before {
  animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
}
.f-message .content p {
  font-size: 1.1458333333vw;
  color: var(--white);
  line-height: 2.1;
  letter-spacing: 0.05em;
  filter: blur(5px);
  transform: translateY(3%);
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .f-message .content p {
    font-size: 1.2rem;
  }
}
.f-message .content p span {
  font-size: 1.7708333333vw;
  font-weight: 700;
  background-color: var(--white);
  color: var(--main);
  padding: 5px 0px;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateY(3%);
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .f-message .content p span {
    padding: 2.5px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .f-message .content p span {
    font-size: 1.8rem;
  }
}
.f-message .content p.is-show {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0%);
  transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.f-message .content p.is-show span {
  opacity: 1;
  transform: translateY(0%);
  transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.f-about {
  position: relative;
}
.f-about .deco._01 {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  top: -2%;
}
.f-about .deco._01 img {
  aspect-ratio: 406/496;
  width: 30%;
  height: auto;
  position: absolute;
  top: 10%;
  left: -10%;
  z-index: -1;
  transform: scale(-1, 1);
  opacity: 70%;
}
.f-about .bg_en {
  bottom: unset;
  top: 5vw;
  left: unset;
  right: -41vw;
  transform: rotate(90deg);
}
.f-about .inner {
  position: relative;
}
.f-about .title_ja {
  margin-left: auto;
  margin-right: 0;
}
.f-about .business {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-about .business {
    margin-bottom: 40px;
  }
}
.f-about .business .title02 {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .f-about .business .title02 {
    margin-right: 10px;
  }
}
.f-about .business .title02 .ja {
  margin-right: 0;
}
.f-about .business .content {
  width: 98%;
  margin-left: 0;
}
.f-about .business .content .title {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  color: var(--main);
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .f-about .business .content .title {
    font-size: clamp(12px, 2rem, 2rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-about .business .content .title {
    margin-bottom: 15px;
  }
}
.f-about .business__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
@media screen and (max-width: 1024px) {
  .f-about .business__list {
    flex-direction: column;
  }
}
.f-about .business__item {
  width: 30%;
  background: #fff;
  padding: 80px 40px;
  margin-bottom: 80px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .f-about .business__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .business__item {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .business__item {
    margin-bottom: 40px;
  }
}
.f-about .business__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .f-about .business__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.f-about .business__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .f-about .business__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.f-about .business__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .f-about .business__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.f-about .business__item.is-show:nth-of-type(4) {
  animation-delay: 0.8s;
}
@media screen and (max-width: 1024px) {
  .f-about .business__item.is-show:nth-of-type(4) {
    animation-delay: unset;
  }
}
.f-about .business__item.is-show:nth-of-type(5) {
  animation-delay: 1s;
}
@media screen and (max-width: 1024px) {
  .f-about .business__item.is-show:nth-of-type(5) {
    animation-delay: unset;
  }
}
.f-about .business__img {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .f-about .business__img {
    margin-bottom: 15px;
  }
}
.f-about .business__img img {
  width: auto;
  height: 120px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .f-about .business__img img {
    height: 60px;
  }
}
.f-about .business__title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--main);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .f-about .business__title {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.f-about .work {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-about .work {
    margin-bottom: 40px;
  }
}
.f-about .work .deco._02 {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  top: -30%;
}
.f-about .work .deco._02 img {
  aspect-ratio: 560/496;
  width: 50%;
  height: auto;
  position: absolute;
  top: 10%;
  right: -5%;
  z-index: -1;
  opacity: 70%;
}
.f-about .work .title02 {
  margin-left: -50px;
}
@media screen and (max-width: 1024px) {
  .f-about .work .title02 {
    margin-left: -2%;
  }
}
.f-about .work .title02 .ja,
.f-about .work .title02 .en {
  margin-left: 0;
}
.f-about .work .title02 .ja::after {
  right: unset;
  left: -50px;
}
@media screen and (max-width: 1024px) {
  .f-about .work .title02 .ja::after {
    left: -25px;
  }
}
.f-about .work__list {
  width: 98%;
  display: flex;
  gap: 60px 6%;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .f-about .work__list {
    flex-direction: column;
  }
}
.f-about .work__item {
  width: 47%;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--white);
}
@media screen and (max-width: 1024px) {
  .f-about .work__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .work__item {
    border-radius: 3px;
  }
}
.f-about .work__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .f-about .work__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.f-about .work__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .f-about .work__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.f-about .work__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .f-about .work__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.f-about .work__item.is-show:nth-of-type(4) {
  animation-delay: 0.8s;
}
@media screen and (max-width: 1024px) {
  .f-about .work__item.is-show:nth-of-type(4) {
    animation-delay: unset;
  }
}
.f-about .work__item.is-show:nth-of-type(5) {
  animation-delay: 1s;
}
@media screen and (max-width: 1024px) {
  .f-about .work__item.is-show:nth-of-type(5) {
    animation-delay: unset;
  }
}
.f-about .work__content {
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .f-about .work__content {
    padding: 10px;
  }
}
.f-about .work__title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .f-about .work__title {
    font-size: clamp(12px, 1.1rem, 1.1rem);
  }
}
.f-about .number {
  position: relative;
}
.f-about .number .deco._03 {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  top: -20%;
}
.f-about .number .deco._03 img {
  aspect-ratio: 406/496;
  width: 30%;
  height: auto;
  position: absolute;
  top: 10%;
  left: 0%;
  z-index: -1;
  transform: scale(-1, 1);
  opacity: 60%;
}
.f-about .number .title02 {
  margin-right: -50px;
}
@media screen and (max-width: 1024px) {
  .f-about .number .title02 {
    margin-right: -2%;
  }
}
.f-about .number .title02 .ja,
.f-about .number .title02 .en {
  margin-right: 0;
}
.f-about .number__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6%;
}
@media screen and (max-width: 1024px) {
  .f-about .number__list {
    flex-direction: column;
  }
}
.f-about .number__item {
  width: 47%;
  padding: 30px 20px;
  background: #fff;
  padding: 80px 40px;
  margin-bottom: 80px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-about .number__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .number__item {
    padding: 15px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .number__item {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .number__item {
    margin-bottom: 40px;
  }
}
.f-about .number__item__content {
  position: relative;
  z-index: 2;
}
.f-about .number__item__title {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  color: var(--main);
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-about .number__item__title {
    font-size: clamp(12px, 2rem, 2rem);
  }
}
.f-about .number__item__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 70%;
  height: auto;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.f-about .number__item__img img {
  max-height: 70%;
  width: auto;
  height: 100%;
}
.f-about .number__item .info-data p {
  font-size: 3.6458333333vw;
  font-weight: 700;
  color: var(--main);
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.f-about .number__item .info-data p span {
  font-size: 10.4166666667vw;
  font-weight: 700;
  color: var(--main);
}
.f-about .number__item .graphArea {
  padding-top: 10%;
}
.f-about .number__item .data__list {
  position: relative;
  z-index: 2;
}
.f-about .number__item .data__item {
  display: flex;
}
.f-about .number__item .data__item .label {
  width: 120px;
  font-size: 2rem;
  color: #895600;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .f-about .number__item .data__item .label {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-about .number__item .data__item .label {
    width: 80px;
  }
}
.f-about .number__item .data__item .bar__area {
  width: calc(100% - 170px);
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .f-about .number__item .data__item .bar__area {
    width: calc(100% - 130px);
  }
}
.f-about .number__item .data__item .bar__area .bar {
  display: flex;
  background-color: var(--main);
  height: 100%;
}
.f-about .number__item .data__item .bar__area .bar.red {
  background-color: var(--red);
}
.f-about .number__item .data__item .bar__area.is-show .bar {
  animation: stretch 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes stretch {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.f-about .number__item .data__item .unit {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  color: #895600;
}
@media screen and (max-width: 1024px) {
  .f-about .number__item .data__item .unit {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.f-about .number__item .data__item .unit .num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .f-about .number__item .data__item .unit .num {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.f-about .number__item .data__item .unit .num.red {
  color: var(--red);
}

.swiper-wrapper {
  transition-timing-function: linear;
}
.swiper-slide {
  aspect-ratio: 3/2;
  height: 320px !important; /* 高さを指定 */
  width: auto !important;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .swiper-slide {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .swiper-slide {
    height: 160px !important; /* 高さを指定 */
  }
}
.swiper-slide img {
  height: 100%;
}

.kari {
  width: 90%;
  padding: 200px 0px;
  background: linear-gradient(135deg, #ffa500 0%, #ff7e20 100%);
  margin: auto;
  margin-top: -350px;
}
@media screen and (max-width: 1024px) {
  .kari {
    padding: 100px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .kari {
    margin-top: -175px;
  }
}

.f-interview {
  width: 90%;
  padding: 200px 0px;
  background: linear-gradient(135deg, #ffa500 0%, #ff7e20 100%);
  margin: auto;
  margin-top: -350px;
  padding-top: 450px;
}
@media screen and (max-width: 1024px) {
  .f-interview {
    padding: 100px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .f-interview {
    margin-top: -175px;
  }
}
@media screen and (max-width: 1024px) {
  .f-interview {
    padding-top: 225px;
  }
}
.f-interview .deco_txt {
  color: var(--white);
  right: unset;
  left: -50px;
}
@media screen and (max-width: 1024px) {
  .f-interview .deco_txt {
    right: unset;
    left: -10px;
  }
}
.f-interview .title_ja {
  color: var(--white);
  margin-bottom: 0;
}
.f-interview .interview {
  position: relative;
}
.f-interview .interview__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .f-interview .interview__list {
    flex-direction: column;
  }
}
.f-interview .interview__item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .f-interview .interview__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-interview .interview__item:nth-of-type(1) {
  margin-top: 120px;
}
@media screen and (max-width: 1024px) {
  .f-interview .interview__item:nth-of-type(1) {
    margin-top: 0px;
  }
}
.f-interview .interview__item:nth-of-type(2) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .f-interview .interview__item:nth-of-type(2) {
    margin-top: 0px;
  }
}
.f-interview .interview__item a {
  aspect-ratio: 515/787;
  position: relative;
}
.f-interview .interview__item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.f-interview .interview .content {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 15px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-interview .interview .content {
    padding: 5px 7.5px;
  }
}
.f-interview .interview .content .message {
  width: 90%;
  font-size: 1.1458333333vw;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--white);
  border-bottom: solid 2px var(--light_orange);
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.f-interview .interview .content .message::before {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
  background: var(--red);
}
.f-interview .interview .content .profile .job {
  display: flex;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .f-interview .interview .content .profile .job {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.f-interview .interview .content .profile .job .name {
  color: var(--white);
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .f-interview .interview .content .profile .job .name {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.f-interview .interview .content .profile .year {
  color: var(--white);
  font-weight: 600;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .f-interview .interview .content .profile .year {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.f-interview .interview .content .btn_arrow {
  position: absolute;
  bottom: 10px;
  right: 15px;
}
@media screen and (max-width: 1024px) {
  .f-interview .interview .content .btn_arrow {
    bottom: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-interview .interview .content .btn_arrow {
    right: 7.5px;
  }
}

.f-blog {
  padding-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .f-blog {
    padding-bottom: 100px;
  }
}
.f-blog .btn {
  margin: auto;
  margin-left: auto;
}

.f-recruit {
  position: relative;
}
.f-recruit .bg_01,
.f-recruit .bg_02 {
  z-index: -1;
  overflow: hidden;
  position: absolute;
}
.f-recruit .bg_01::before,
.f-recruit .bg_02::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.f-recruit .bg_01 {
  right: 0;
  top: -5%;
  aspect-ratio: 15/7;
  width: 80%;
}
.f-recruit .bg_01 img {
  aspect-ratio: 15/7;
  height: auto;
}
.f-recruit .recruit {
  position: relative;
}
.f-recruit .recruit .title_ja {
  color: var(--white);
  margin-left: auto;
}
.f-recruit .recruit .deco_txt {
  color: var(--white);
}
.f-recruit .recruit-feed01 > li {
  background-color: var(--main);
  border-radius: 0;
}
.f-recruit .recruit-feed01 h3 {
  color: var(--white);
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--white);
}

.bnr {
  padding: 200px 0px;
}
@media screen and (max-width: 1024px) {
  .bnr {
    padding: 100px 0px;
  }
}
.bnr .inner {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .bnr .inner {
    width: 100%;
    margin-bottom: 20px;
  }
}
.bnr .inner::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 9.2857142857vw;
  height: 9.2857142857vw;
  position: absolute;
  top: -2.5714285714vw;
  left: -2.8571428571vw;
  z-index: -1;
  background: linear-gradient(135deg, #ff3846 0%, #b8000d 100%);
}
.bnr a {
  display: block;
  aspect-ratio: 2;
  position: relative;
  overflow: hidden;
}
.bnr a img {
  aspect-ratio: 2;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.bnr a .content {
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 5%;
  z-index: 2;
}
.bnr a .content .title_ja {
  color: var(--white);
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .bnr a .content .title_ja {
    margin-bottom: 10px;
  }
}
.bnr a .content .subtitle {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(135deg, #ff3846 0%, #b8000d 100%);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 5px 10px;
}
@media screen and (max-width: 1024px) {
  .bnr a .content .subtitle {
    padding: 2.5px 5px;
  }
}
.bnr a .storker_link_arrow {
  position: absolute;
  z-index: 51;
  height: 4.5714285714vw;
  width: 4.5714285714vw;
  bottom: 0;
  right: 0;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff3846 0%, #b8000d 100%);
}

.f-parent .bnr {
  aspect-ratio: 3 !important;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-parent .bnr {
    flex-direction: column;
  }
}
.f-parent .bnr::after {
  content: "";
  display: block;
  background-image: url(../img/icon-arrow-white.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 60px;
}
@media screen and (max-width: 1024px) {
  .f-parent .bnr::after {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-parent .bnr::after {
    height: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-parent .bnr::after {
    right: 30px;
  }
}
@media screen and (max-width: 600px) {
  .f-parent .bnr::after {
    right: 15px;
  }
}
.f-parent .bnr .img {
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .f-parent .bnr .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-parent .bnr .img {
    margin-bottom: 0;
  }
}
.f-parent .bnr .img img {
  aspect-ratio: 3/2;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .f-parent .bnr .img img {
    aspect-ratio: 2;
    width: 100%;
    height: auto;
  }
}
.f-parent .bnr .content {
  width: 50%;
  background-color: var(--main);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .f-parent .bnr .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-parent .bnr .content .title01 .en {
  color: var(--white);
}
.f-parent .bnr .content .title01 .ja {
  color: var(--white);
}
.f-parent .bnr .content .note {
  background-color: var(--white);
  padding: 10px 30px;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .f-parent .bnr .content .note {
    padding: 5px 15px;
  }
}
.f-parent .bnr:hover::after {
  background-image: url(../img/icon-arrow-orange.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.f-parent .bnr:hover .img img {
  opacity: 0.8;
  transition: all 0.3s;
}
.f-parent .bnr:hover .content {
  background-color: var(--light);
  transition: all 0.3s;
}
.f-parent .bnr:hover .content .title01 .en {
  color: var(--main);
}
.f-parent .bnr:hover .content .title01 .ja {
  color: var(--main);
}
.f-parent .bnr:hover .content .note {
  background-color: var(--main);
  color: var(--white);
}

.f-document .title01 {
  margin: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .f-document .title01 {
    margin-bottom: 20px;
  }
}
.f-document .title01 .ja,
.f-document .title01 .en {
  text-align: center;
}
.f-document .list {
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .f-document .list {
    flex-direction: column;
  }
}
.f-document .list li {
  width: 30%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .f-document .list li {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-document .list li {
    margin-bottom: 15px;
  }
}
.f-document .list li.is-show:nth-of-type(2) {
  animation-delay: 0.1s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.f-document .list li.is-show:nth-of-type(3) {
  animation-delay: 0.15s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.f-document .list li.is-show:nth-of-type(4) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(4) {
    animation-delay: unset;
  }
}
.f-document .list li.is-show:nth-of-type(5) {
  animation-delay: 0.25s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(5) {
    animation-delay: unset;
  }
}
.f-document .list li.is-show:nth-of-type(6) {
  animation-delay: 0.3s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(6) {
    animation-delay: unset;
  }
}
.f-document .list li.is-show:nth-of-type(7) {
  animation-delay: 0.35s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(7) {
    animation-delay: unset;
  }
}
.f-document .list li.is-show:nth-of-type(8) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(8) {
    animation-delay: unset;
  }
}
.f-document .list li.is-show:nth-of-type(9) {
  animation-delay: 0.45s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(9) {
    animation-delay: unset;
  }
}
.f-document .list li.is-show:nth-of-type(10) {
  animation-delay: 0.5s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(10) {
    animation-delay: unset;
  }
}
.f-document .list li.is-show:nth-of-type(11) {
  animation-delay: 0.55s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(11) {
    animation-delay: unset;
  }
}
.f-document .list li.is-show:nth-of-type(12) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(12) {
    animation-delay: unset;
  }
}
.f-document .list li.is-show:nth-of-type(13) {
  animation-delay: 0.65s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(13) {
    animation-delay: unset;
  }
}
.f-document .list li.is-show:nth-of-type(14) {
  animation-delay: 0.7s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(14) {
    animation-delay: unset;
  }
}
.f-document .list li.is-show:nth-of-type(15) {
  animation-delay: 0.75s;
}
@media screen and (max-width: 1024px) {
  .f-document .list li.is-show:nth-of-type(15) {
    animation-delay: unset;
  }
}
.f-document .list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  color: var(--main);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 20px 30px;
  position: relative;
  border: solid 2px var(--main);
}
@media screen and (max-width: 1024px) {
  .f-document .list li a {
    gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-document .list li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-document .list li a {
    padding: 10px 15px;
  }
}
.f-document .list li a::before, .f-document .list li a::after {
  content: "";
  display: block;
  height: auto;
}
.f-document .list li a::before {
  background-image: url(../img/icon-pdf-main.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 14px;
  height: 20px;
}
@media screen and (max-width: 1024px) {
  .f-document .list li a::before {
    width: 7px;
  }
}
@media screen and (max-width: 1024px) {
  .f-document .list li a::before {
    height: 10px;
  }
}
.f-document .list li a::after {
  background-image: url(../img/icon-dl-main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 30px;
}
@media screen and (max-width: 1024px) {
  .f-document .list li a::after {
    width: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-document .list li a::after {
    height: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-document .list li a::after {
    right: 15px;
  }
}
.f-document .list li a:hover {
  background-color: var(--main);
  color: var(--white);
}
.f-document .list li a:hover::before {
  background-image: url(../img/icon-pdf-white.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 14px;
  height: 20px;
}
@media screen and (max-width: 1024px) {
  .f-document .list li a:hover::before {
    width: 7px;
  }
}
@media screen and (max-width: 1024px) {
  .f-document .list li a:hover::before {
    height: 10px;
  }
}
.f-document .list li a:hover::after {
  background-image: url(../img/icon-dl-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.f-greeting {
  background-color: var(--light03);
  position: relative;
}
.f-greeting::before {
  content: "";
  display: block;
  aspect-ratio: 733/491;
  background-image: url(../img/icon-bone-02-gray.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 25%;
  height: auto;
  position: absolute;
  top: 0%;
  right: 3%;
  opacity: 0.2;
  z-index: 1;
}
.f-greeting .inner {
  position: relative;
  z-index: 2;
}
.f-greeting .greeting__txt .txt {
  font-size: 1.6rem;
  width: 65%;
  margin: auto;
  background: #fff;
  padding: 80px 40px;
  margin-bottom: 80px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 150px;
  margin-bottom: 150px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt {
    margin-top: 75px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt {
    margin-bottom: 75px;
  }
}
.f-greeting .greeting__txt .txt::before {
  content: "";
  display: block;
  position: absolute;
  height: auto;
  z-index: 3;
  aspect-ratio: 408/268;
  background-image: url(../img/flag.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 400px;
  top: -150px;
  left: -200px;
  transform: rotate(-10deg);
  opacity: 0.9;
  animation: yurari_10deg 5s ease-in-out infinite alternate;
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt::before {
    width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt::before {
    top: -75px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt::before {
    left: -100px;
  }
}
.f-greeting .greeting__txt .txt::after {
  content: "";
  display: block;
  position: absolute;
  height: auto;
  z-index: 3;
  aspect-ratio: 945/660;
  background-image: url(../img/dog01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 300px;
  bottom: -150px;
  right: -200px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt::after {
    width: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt::after {
    bottom: -75px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__txt .txt::after {
    right: -100px;
  }
}
.f-greeting .about .title03 {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .title03 {
    margin-bottom: 30px;
  }
}
.f-greeting .about .title03 .en,
.f-greeting .about .title03 .ja {
  text-align: center;
}
.f-greeting .about .box {
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .box {
    margin-bottom: 40px;
  }
}
.f-greeting .about .box .img {
  width: 40%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .box .img {
    width: 70%;
    margin: auto;
  }
}
.f-greeting .about .box .img::before {
  content: "";
  display: block;
  background-image: url(../img/txt-circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 300px;
  height: 300px;
  position: absolute;
  top: -100px;
  left: -100px;
  z-index: 1;
  animation: roll 30s linear infinite;
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .box .img::before {
    width: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .box .img::before {
    height: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .box .img::before {
    top: -50px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .box .img::before {
    left: -50px;
  }
}
.f-greeting .about .box .content {
  width: 55%;
  padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .box .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .box .content {
    padding-top: 50px;
  }
}
.f-greeting .about .box .content .txt {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .box .content .txt {
    margin-bottom: 40px;
  }
}
.f-greeting .about .bnr {
  display: block;
  background-color: var(--navy);
  padding: 10px;
  margin-top: 100px;
  width: 50%;
  max-width: 900px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .bnr {
    padding: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .bnr {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .bnr {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .bnr {
    max-width: 450px;
  }
}
.f-greeting .about .bnr__content {
  border: 1px dashed var(--white);
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .bnr__content {
    padding: 15px;
  }
}
.f-greeting .about .bnr__content::before, .f-greeting .about .bnr__content::after {
  content: "";
  display: block;
  position: absolute;
  height: auto;
}
.f-greeting .about .bnr__content::before {
  aspect-ratio: 733/491;
  background-image: url(../img/icon-bone-02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20%;
  top: 10px;
  left: 10px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .bnr__content::before {
    top: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .bnr__content::before {
    left: 5px;
  }
}
.f-greeting .about .bnr__content::after {
  aspect-ratio: 465/520;
  background-image: url(../img/icon-footprints.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15%;
  bottom: 10px;
  right: 10px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .bnr__content::after {
    bottom: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .bnr__content::after {
    right: 5px;
  }
}
.f-greeting .about .bnr__txt {
  color: var(--white);
  text-align: center;
}
.f-greeting .about .bnr__txt .en {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 3rem;
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .bnr__txt .en {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
.f-greeting .about .bnr__txt .ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .f-greeting .about .bnr__txt .ja {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.f-greeting .about .bnr:hover {
  background-color: var(--gray);
}
.f-greeting .about .bnr:hover .bnr__content {
  border: 1px dashed var(--navy);
}
.f-greeting .about .bnr:hover .bnr__content::before {
  background-image: url(../img/icon-bone-02-navy.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.f-greeting .about .bnr:hover .bnr__content::after {
  background-image: url(../img/icon-footprints-navy.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.f-greeting .about .bnr:hover .bnr__txt {
  color: var(--navy);
}

.f-menu {
  background-color: var(--light02);
}
.f-menu .menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
.f-menu .menu__item {
  width: 47%;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .f-menu .menu__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-menu .menu__item {
    margin-bottom: 10px;
  }
}
.f-menu .menu__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .f-menu .menu__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.f-menu .menu__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .f-menu .menu__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.f-menu .menu__item.is-show:nth-of-type(4) {
  animation-delay: 0.8s;
}
@media screen and (max-width: 1024px) {
  .f-menu .menu__item.is-show:nth-of-type(4) {
    animation-delay: unset;
  }
}
.f-menu .menu__item.is-show:nth-of-type(5) {
  animation-delay: 1s;
}
@media screen and (max-width: 1024px) {
  .f-menu .menu__item.is-show:nth-of-type(5) {
    animation-delay: unset;
  }
}
.f-menu .menu__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  gap: 20px;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .f-menu .menu__item a {
    gap: 10px;
  }
}
.f-menu .menu__item a::before {
  content: "";
  display: block;
  background-image: url(../img/icon-arrow-main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 30px;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-menu .menu__item a::before {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-menu .menu__item a::before {
    height: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-menu .menu__item a::before {
    right: 10px;
  }
}
.f-menu .menu__item a .img {
  width: 50%;
  overflow: hidden;
}
.f-menu .menu__item a .img img {
  aspect-ratio: 1;
  height: auto;
  transform: scale(1);
  transition: all 0.3s;
}
.f-menu .menu__item a .content {
  width: 50%;
}
.f-menu .menu__item a .content .title .en {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
  display: block;
}
@media screen and (max-width: 1024px) {
  .f-menu .menu__item a .content .title .en {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.f-menu .menu__item a .content .title .ja {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .f-menu .menu__item a .content .title .ja {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.f-menu .menu__item a:hover {
  background-color: var(--main);
  transition: all 0.3s;
}
.f-menu .menu__item a:hover::before {
  background-image: url(../img/icon-arrow-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.f-menu .menu__item a:hover .img img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.f-menu .menu__item a:hover .content .title .en {
  color: var(--white);
}
.f-menu .menu__item a:hover .content .title .ja {
  color: var(--white);
}

.f-service .service .titleArea {
  margin-left: 10%;
}
.f-service .service .titleArea .title01 {
  margin-left: 0;
  margin-right: auto;
}
.f-service .service .titleArea .title01 .en {
  text-align: left;
}
.f-service .service .titleArea .title01 .ja {
  margin-left: 0;
}
.f-service .service__list {
  width: 80%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .f-service .service__list {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-service .service__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .f-service .service__item {
    margin-bottom: 30px;
  }
}
.f-service .service__item .img {
  width: 47%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-service .service__item .img {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-service .service__item .img {
    padding-left: 10%;
  }
}
.f-service .service__item .img img {
  border-radius: 0 0 0 40px;
}
.f-service .service__item .content {
  width: 47%;
  padding: 40px 0px;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-service .service__item .content {
    padding: 20px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .f-service .service__item .content {
    padding-left: 10%;
    padding-right: 5%;
  }
}
.f-service .service__item .title {
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 3rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item .title {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
.f-service .service__item .title::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-color: var(--main);
  border-radius: 50%;
  width: 150px;
  height: auto;
  position: absolute;
  top: -80px;
  left: -80px;
  z-index: -1;
  opacity: 0.2;
  transform: scale(0, 0);
}
@media screen and (max-width: 1024px) {
  .f-service .service__item .title::before {
    width: 75px;
  }
}
@media screen and (max-width: 1024px) {
  .f-service .service__item .title::before {
    top: -40px;
  }
}
@media screen and (max-width: 1024px) {
  .f-service .service__item .title::before {
    left: -40px;
  }
}
.f-service .service__item .title.is-show::before {
  animation-name: scaleUp20;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}
@keyframes scaleUp20 {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 20%;
  }
}
.f-service .service__item .txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item .txt {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.f-service .service__item .btn {
  margin-left: 0;
}

.f-overview {
  position: relative;
  padding-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  .f-overview {
    padding-bottom: 75px;
  }
}
.f-overview .box {
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-overview .box {
    margin-bottom: 40px;
  }
}
.f-overview .box .item {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .f-overview .box .item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-overview .box .item {
    margin-bottom: 30px;
  }
}
.f-overview .box .item img {
  aspect-ratio: 3/2;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .f-overview .box .item iframe {
    aspect-ratio: 3/2;
    height: auto;
  }
}

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.header {
  height: 100px;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 50px;
  }
}
.header.scrolled {
  background-color: var(--white);
}
.header .logo {
  max-width: unset;
  width: 25%;
}
.header .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.0833333333vw;
  font-weight: 600;
  letter-spacing: 0.15em;
  background-color: var(--white);
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .header .logo a {
    border-radius: 2px;
  }
}
.header .header-content02 {
  height: 100%;
}
.header .header-content02 .header-box01 {
  height: 100%;
}
.header .header-content02 .header-box01 .header-box-inner01 {
  height: 100%;
}
.header .header-box01 .header-box-inner01.flex {
  max-width: 1920px;
  margin-left: 2.5%;
}
.header .headerNavArea {
  display: flex;
  height: 100%;
}
.header .menu-header-menu-container {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .header .menu-header-menu-container {
    width: 100%;
  }
}
.header .header-menu {
  background-color: unset;
  justify-content: space-around;
  width: 100%;
  margin: auto;
}
.header .header-menu > li {
  flex: 1;
  padding: 0;
}
.header .header-menu > li:last-of-type {
  border-right: none;
}
.header .header-menu > li a {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  white-space: nowrap;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .header .header-menu > li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1500px) {
  .header .header-menu > li a {
    font-size: 1.4rem;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1300px) {
  .header .header-menu > li a {
    font-size: 1.3rem;
    padding: 0 15px;
  }
}
@media screen and (max-width: 1200px) {
  .header .header-menu > li a {
    font-size: 1.2rem;
    padding: 0 10px;
  }
}
.header .header-menu > li a .en {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--gray);
}
@media screen and (max-width: 1024px) {
  .header .header-menu > li a .en {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.header .header-menu > li a .en:first-letter {
  color: var(--blue);
}
.header .header-menu > li a:hover {
  opacity: 1;
  color: var(--main);
}

.header-sub-box {
  width: 240px;
  z-index: 10;
  display: flex;
  justify-content: end;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .header-sub-box {
    top: unset;
    bottom: 0;
    width: 100%;
  }
}
.header-sub-box .g-nav-tel-pc a {
  font-size: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--white);
  letter-spacing: 0.1em;
  border-right: none;
  font-weight: 600;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-nav-tel-pc a {
    font-size: clamp(12px, 2rem, 2rem);
  }
}
.header-sub-box .g-nav-tel-pc a::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/icon_tel_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: auto;
}
.header-sub-box .g-nav-tel-pc a:hover {
  transform: scale(1.05);
  transition: all 0.3s;
}
.header-sub-box .g-nav-tel-pc a:hover::before {
  background-image: url(../img/icon_tel_main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.header-sub-box .g-sub-nav02 {
  height: 100%;
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-sub-nav02 .g-sub-nav-list {
    flex-direction: row;
    justify-content: center;
  }
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-sub-nav02 .g-sub-nav-list li {
    width: 47%;
  }
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a {
  width: 120px;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
  white-space: nowrap;
  border-radius: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px;
  background: linear-gradient(135deg, #ffa500 0%, #ff7e20 100%);
}
@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);
  }
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-sub-nav02 .g-sub-nav-list li a {
    padding: 5px;
  }
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a:hover {
  background-image: none;
  background-color: var(--white);
  color: var(--main);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:nth-of-type(1) a::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/icon_recruit-white@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-position: center;
  width: 20px;
  height: auto;
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:nth-of-type(1) a:hover {
  background-color: rgba(255, 174, 39, 0.1);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:nth-of-type(1) a:hover::before {
  background-image: url(../img/icon_recruit-main@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:nth-of-type(2) a {
  background: linear-gradient(135deg, #ff3846 0%, #b8000d 100%);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:nth-of-type(2) a::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/icon_mail-white@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-position: center;
  width: 20px;
  height: auto;
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:nth-of-type(2) a:hover {
  background-image: unset;
  background-color: rgba(208, 0, 15, 0.1);
  color: var(--red);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li:nth-of-type(2) a:hover::before {
  background-image: url(../img/icon_mail-red@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

body:not(.home) .header {
  background-color: var(--white);
}
body:not(.home) .header .header-menu > li a {
  color: var(--txt);
  border-right: var(--txt) 3px dotted;
}
body:not(.home) .header .header-menu > li a:hover {
  color: var(--main);
}
body:not(.home) .header .header-menu > li:last-of-type a {
  border-right: none;
}
body:not(.home) .header .header-sub-box .g-nav-tel-pc a {
  color: var(--main);
}
body:not(.home) .header .header-sub-box .g-nav-tel-pc a::before {
  background-image: url(../img/icon_tel_main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

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

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

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

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

@media screen and (max-width: 400px) {
  .sp-header-inner .logo img {
    max-height: 30px;
  }
}

.mobile-logo {
  height: 51px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-logo a {
  color: var(--txt);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  letter-spacing: 0.2em;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .mobile-logo a {
    gap: 5px;
  }
}
.mobile-logo a p {
  color: var(--txt);
  letter-spacing: 0.2em;
  font-size: 2rem;
}

.mobile-sub-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 1.4rem;
  background-color: unset;
  border: solid 2px var(--white);
  color: var(--white);
  border-radius: 0;
  text-transform: uppercase;
}
.mobile-sub-nav li a::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/icon_mail_blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-position: center;
}
.mobile-sub-nav li:nth-of-type(1) a::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/icon_recruit-white@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-position: center;
}
.mobile-sub-nav li:nth-of-type(2) a::before {
  content: "";
  aspect-ratio: 201/136;
  width: 20px;
  height: 20px;
  background-image: url(../img/icon_mail-white@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-position: center;
}

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

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

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

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

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

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

.loaded {
  display: none;
}

.pc-btn {
  position: fixed;
  top: -55px;
  right: -42px;
  width: 140px;
  height: 140px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 2%;
  padding-right: 1%;
  transition: all 0.4s ease-out;
  cursor: pointer;
  transform: translateX(100%);
  background-color: var(--main);
}
.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::before {
  content: none;
}

#hamburger_pc {
  position: relative;
  width: 60px;
  height: 22px;
  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(-12px) rotate(45deg);
}

#pc-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  background-color: rgba(135, 201, 164, 0.9);
  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: 999;
}
#pc-nav.open {
  transform: translateX(0);
}
#pc-nav .pc-logo {
  width: 50%;
  margin-bottom: 50px;
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list {
  width: 100%;
  margin-bottom: 60px;
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list li a {
  display: block;
  font-size: 2rem;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: var(--white);
  color: var(--navy);
  border-bottom: solid 1px var(--navy);
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-nav-wrap .pc-nav-menu-list li a {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
#pc-nav .pc-sub-nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  margin-bottom: 30px;
}
#pc-nav .pc-sub-nav-list li {
  width: 47%;
  margin: auto;
  margin-bottom: 20px;
}
#pc-nav .pc-sub-nav-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--main);
  padding: 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-sub-nav-list li a {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
#pc-nav .pc-sub-nav-list li a::before {
  content: "";
  display: block;
  background-image: url(../img/icon-mail-main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-position: center;
  width: 20px;
  height: 20px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-sub-nav-list li a::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 span {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--txt);
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-sub-nav-list li a span {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
#pc-nav .pc-sub-nav-list li a:hover {
  background-color: var(--green);
  color: var(--white);
  transition: all 0.3s;
}
#pc-nav .pc-sub-nav-list li a:hover::before {
  background-image: url(../img/icon-mail-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#pc-nav .pc-menu-tel {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
#pc-nav .pc-menu-tel-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
#pc-nav .pc-menu-tel-box:nth-of-type(2) .pc-menu-tel-head {
  background-color: #83cede;
}
#pc-nav .pc-menu-tel-head {
  color: #fff;
  margin-bottom: 0;
  background-color: #b4d260;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-head {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
#pc-nav .pc-menu-tel-number {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  display: flex !important;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-number {
    font-size: clamp(12px, 1.4rem, 1.4rem);
  }
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-number {
    gap: 5px;
  }
}
#pc-nav .pc-menu-tel-number::before {
  content: "";
  display: block;
  background-image: url(../img/icon-tel-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 30px;
  background-position: center;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-number::before {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-number::before {
    height: 15px;
  }
}
#pc-nav .pc-menu-tel-number:hover {
  color: var(--green);
  transition: all 0.3s;
}
#pc-nav .pc-menu-tel-number:hover svg path:first-of-type {
  stroke: var(--green);
}
#pc-nav .pc-menu-tel-number:hover svg path:nth-of-type(2) {
  fill: var(--green);
}

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

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterOpen1 {
  0% {
    width: 0;
    height: 0px;
  }
  50% {
    width: 100%;
    height: 0px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes shutterOpen2 {
  60% {
    width: 120%;
    height: 0;
    transform: rotate(5deg);
  }
  90% {
    width: 120%;
    height: 100%;
    transform: rotate(-5deg);
  }
  100% {
    width: 120%;
    height: 100%;
    transform: rotate(-5deg);
  }
}
.sub-header {
  margin-top: 140px;
}
@media screen and (max-width: 1024px) {
  .sub-header {
    margin-top: 78px;
  }
}
.sub-header-txt {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  background-color: var(--white);
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .sub-header-txt {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}

.title_bg {
  color: var(--light);
  margin-left: 5%;
}

.sec._01 {
  padding-top: 0;
  padding-bottom: 0;
}
.sec._02 {
  background-color: var(--light);
  position: relative;
}
.sec._02::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/icon-bone-02-gray.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
  z-index: 1;
  transform: scale(-1, 1);
}
.sec._02 .inner {
  position: relative;
  z-index: 2;
}

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

.tab-panel-a .tab-group {
  margin-bottom: 0;
  justify-content: flex-start;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .tab-panel-a .tab-group {
    gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .tab-panel-a .tab-group {
    flex-direction: column;
    margin-left: unset;
  }
}
.tab-panel-a .tab-group .tab {
  border-bottom: none;
  border: none;
  background-color: #ddd;
  color: var(--white);
  border-radius: 0;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .tab-panel-a .tab-group .tab {
    width: 80%;
    margin: auto;
    margin-bottom: 10px;
  }
}
.tab-panel-a .tab-group .tab.is-active, .tab-panel-a .tab-group .tab:hover {
  background-color: var(--main);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.contact-band {
  padding: 0;
}
.contact-band a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  position: relative;
  aspect-ratio: 1920/500;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .contact-band a {
    aspect-ratio: 2;
  }
}
.contact-band a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.contact-band a img {
  aspect-ratio: 1920/500;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1);
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .contact-band a img {
    aspect-ratio: 2;
  }
}
.contact-band a:hover::before {
  background-color: rgba(117, 72, 0, 0.4);
}
.contact-band a:hover .titleArea .title {
  color: var(--main);
}
.contact-band a:hover .content .cf-cb-txt {
  color: var(--main);
}
.contact-band a:hover img {
  transform: scale(1.05);
  transition: all 0.3s;
}
.contact-band a:hover .btn.btn01 .btn_txt {
  color: var(--main);
}
.contact-band a:hover .btn.btn01 .btn_arrow svg path {
  fill: var(--main);
}
.contact-band a:hover .btn.btn01 .btn_arrow::after {
  background: var(--main);
}
.contact-band a:hover .btn.btn01 .border {
  border-color: var(--main);
  transition: all 0.3s;
}
.contact-band-inner {
  width: 80%;
  margin: auto;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  z-index: 1;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .contact-band-inner {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-inner {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-inner {
    padding: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-inner {
    width: 90%;
  }
}
.contact-band-inner .titleArea {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .contact-band-inner .titleArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.contact-band-inner .titleArea .title {
  color: var(--white);
  font-size: 5.3vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  margin: auto;
  margin-left: 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .contact-band-inner .titleArea .title {
    margin-bottom: 30px;
  }
}
.contact-band-inner .titleArea .title.is-show {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.contact-band-inner .content {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .contact-band-inner .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-inner .content {
    margin-bottom: 0;
  }
}
.contact-band .btn.btn01 {
  position: relative;
  max-width: 400px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .contact-band .btn.btn01 {
    padding: 15px;
  }
}
.contact-band .btn.btn01 .btn_txt {
  color: white;
  font-weight: bold;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
  transition: color 0.4s ease-out;
}
@media screen and (max-width: 1024px) {
  .contact-band .btn.btn01 .btn_txt {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.contact-band .btn.btn01 .btn_arrow {
  display: block;
  width: 0.7142857143vw;
  position: relative;
}
.contact-band .btn.btn01 .btn_arrow svg path {
  fill: var(--white);
}
.contact-band .btn.btn01 .btn_arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -30px;
  background: white;
  width: 1px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .contact-band .btn.btn01 .btn_arrow::after {
    left: -15px;
  }
}
.contact-band .btn.btn01 .border {
  content: "";
  position: absolute;
  opacity: 0;
}
.contact-band .btn.btn01 .border.top, .contact-band .btn.btn01 .border.bottom {
  width: calc(100% - 20px);
  width: 100%;
}
.contact-band .btn.btn01 .border.top {
  border-top: 2px solid var(--white);
  right: 0;
  top: 0;
}
.contact-band .btn.btn01 .border.bottom {
  border-bottom: 2px solid var(--white);
  left: 0;
  bottom: 0;
}
.contact-band .btn.btn01 .border.right, .contact-band .btn.btn01 .border.left {
  height: calc(100% - 20px);
  height: 100%;
}
.contact-band .btn.btn01 .border.right {
  border-right: 2px solid var(--white);
  right: 0;
  top: 0;
}
.contact-band .btn.btn01 .border.left {
  border-left: 2px solid var(--white);
  left: 0;
  bottom: 0;
}
.contact-band .btn.btn01.is-show .border {
  opacity: 1;
}
.contact-band .btn.btn01.is-show .border.top, .contact-band .btn.btn01.is-show .border.bottom {
  animation: stroke-width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-band .btn.btn01.is-show .border.right, .contact-band .btn.btn01.is-show .border.left {
  animation: stroke-height 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-band-btn {
  font-size: clamp(16px, 1.1458333333vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  max-width: unset;
  background-color: var(--white);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 0;
}
@media screen and (max-width: 1024px) {
  .contact-band-btn {
    font-size: clamp(12px, 2.1484375vw, 1.1rem);
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-btn {
    gap: 8px;
  }
}
.contact-band-btn::before {
  content: "";
  display: block;
  background-image: url(../img/icon_mail_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-position: center;
  width: 22px;
  height: 22px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .contact-band-btn::before {
    width: 11px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-btn::before {
    height: 11px;
  }
}
.contact-band-btn:hover {
  border: solid 1px var(--main);
  background-color: var(--white);
  color: var(--main);
}
.contact-band-btn:hover::before {
  background-image: url(../img/icon_mail_main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.contact-band-tel-block {
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: unset;
  width: 100%;
}
.contact-band-tel-box:nth-of-type(1) .cf-cb-head, .contact-band-tel-box:nth-of-type(2) .cf-cb-head {
  padding: 10px 40px;
  background-image: url(../img/bg_blue.png);
  background-repeat: repeat;
  background-size: 100%;
  background-position: center;
  color: var(--txt);
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .contact-band-tel-box:nth-of-type(1) .cf-cb-head, .contact-band-tel-box:nth-of-type(2) .cf-cb-head {
    padding: 5px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band-tel-box:nth-of-type(1) .cf-cb-head, .contact-band-tel-box:nth-of-type(2) .cf-cb-head {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.contact-band-tel-box:nth-of-type(2) .cf-cb-head {
  background-image: url(../img/bg_yellow.png);
  background-repeat: repeat;
  background-size: 100%;
  background-position: center;
}
.contact-band .cf-cb-txt {
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-cb-txt {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-cb-txt {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-cb-txt {
    text-align: center;
  }
}
.contact-band .cf-tel-number {
  font-size: 4rem;
  letter-spacing: 0.1em;
  color: var(--white);
  display: flex !important;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-tel-number {
    font-size: clamp(12px, 2rem, 2rem);
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-tel-number {
    gap: 5px;
  }
}
.contact-band .cf-tel-number::before {
  content: "";
  display: block;
  background-image: url(../img/icon-tel-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 30px;
  background-position: center;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-tel-number::before {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-tel-number::before {
    height: 15px;
  }
}
.contact-band .cf-tel-number:hover {
  color: var(--main);
}
.contact-band .cf-tel-number:hover::before {
  background-image: url(../img/icon-tel-main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.contact-band .cf-tel-number:hover .contact-band-tel-icon path {
  stroke: var(--main);
}
.contact-band .cf-tel-number:hover .contact-band-tel-icon path:nth-of-type(2) {
  fill: var(--main);
}

.usage .flow {
  padding-top: 0;
}
.usage .flow__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.usage .flow__item {
  width: 21%;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .usage .flow__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .usage .flow__item {
    margin-bottom: 60px;
  }
}
.usage .flow__item .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .usage .flow__item .img {
    margin-bottom: 10px;
  }
}
.usage .flow__item .img img {
  height: 70px;
  width: auto;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .usage .flow__item .img img {
    height: 35px;
  }
}
.usage .flow__item .title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--main);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .usage .flow__item .title {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.usage .flow__item .txt {
  background-color: rgba(255, 165, 0, 0.1);
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .usage .flow__item .txt {
    padding: 10px;
  }
}
.usage .flow__item .arrow {
  width: 20px;
  position: absolute;
  top: 30%;
  left: -17%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .usage .flow__item .arrow {
    top: -55px;
    left: 50%;
    transform: translateX(-70%) rotate(90deg);
  }
}
.usage .flow__item .arrow svg path {
  fill: var(--main);
}
.usage .flow__item:first-of-type .arrow, .usage .flow__item:nth-of-type(5) .arrow {
  display: none;
}
@media screen and (max-width: 1024px) {
  .usage .flow__item:first-of-type .arrow, .usage .flow__item:nth-of-type(5) .arrow {
    display: block;
  }
}
.usage .faq {
  background-size: auto auto;
  background-color: #fff;
  background-image: repeating-linear-gradient(130deg, transparent, transparent 3px, #fff6e8 3px, #fff6e8 6px);
}
@media screen and (max-width: 1024px) {
  .usage .faq {
    background-image: repeating-linear-gradient(130deg, transparent, transparent 2px, #fff6e8 2px, #fff6e8 4px);
  }
}
.usage .faq__item {
  background-color: var(--white);
  border: solid 1px #ddd;
  padding: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .usage .faq__item {
    padding: 7.5px;
  }
}
@media screen and (max-width: 1024px) {
  .usage .faq__item {
    margin-bottom: 7.5px;
  }
}
.usage .faq__item ._q {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .usage .faq__item ._q {
    padding-left: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .usage .faq__item ._q {
    padding-right: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .usage .faq__item ._q {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.usage .faq__item ._q:hover {
  opacity: 0.7;
  cursor: pointer;
}
.usage .faq__item ._a {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .usage .faq__item ._a {
    padding-left: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .usage .faq__item ._a {
    padding-right: 15px;
  }
}
.usage .faq__item ._a.open {
  padding-top: 20px;
  border-top: solid 1px #ddd;
}
@media screen and (max-width: 1024px) {
  .usage .faq__item ._a.open {
    padding-top: 10px;
  }
}
.usage .faq__item .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: relative;
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .usage .faq__item .plus {
    margin-left: 10px;
  }
}
.usage .faq__item .plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.usage .faq__item .plus.active::before {
  transform: rotate(0deg);
}

.recruit .message {
  padding-top: 0;
}
.recruit .message .title_en {
  margin-left: 0;
  margin-right: auto;
}
.recruit .message .txtArea {
  width: 90%;
  background-color: var(--light_orange02);
  margin-left: auto;
  margin-right: 0;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .recruit .message .txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit .message .txtArea {
    padding: 15px;
  }
}
.recruit .message .txtArea .txt {
  background: var(--white);
  margin-bottom: 0;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .recruit .message .txtArea .txt {
    padding: 15px;
  }
}
.recruit .recruitment {
  background-size: auto auto;
  background-color: #fff;
  background-image: repeating-linear-gradient(130deg, transparent, transparent 3px, #fff6e8 3px, #fff6e8 6px);
}
@media screen and (max-width: 1024px) {
  .recruit .recruitment {
    background-image: repeating-linear-gradient(130deg, transparent, transparent 2px, #fff6e8 2px, #fff6e8 4px);
  }
}
.recruit .recruitment .title_en .en {
  color: var(--white);
}

.contact .box {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .contact .box {
    margin-bottom: 20px;
  }
}
.contact .box .item._img {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .contact .box .item._img {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contact .box .item._img {
    max-width: 250px;
  }
}
.contact .box .item._content {
  width: 65%;
}
@media screen and (max-width: 1024px) {
  .contact .box .item._content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.contact .box .item._content .title {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .contact .box .item._content .title {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}

button,
input,
optgroup,
select,
textarea {
  border: #826b63 solid 1px;
}

.searchandfilter {
  border: solid 1px #ddd;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .searchandfilter {
    padding: 10px;
  }
}
.searchandfilter div > ul {
  display: flex;
  flex-wrap: wrap;
}
.searchandfilter div > ul > li {
  width: 50%;
  padding: 20px;
  border-bottom: #ddd solid 1px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .searchandfilter div > ul > li {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .searchandfilter div > ul > li {
    padding: 10px;
  }
}
.searchandfilter div > ul > li h4 {
  white-space: nowrap;
  margin: 5px 0;
}
.searchandfilter div > ul > li h4::after {
  content: "：";
}
.searchandfilter div > ul > li > ul {
  display: block;
}
.searchandfilter div > ul > li > ul li {
  display: block;
}
.searchandfilter div > ul > li:nth-of-type(2) > ul, .searchandfilter div > ul > li:nth-of-type(4) > ul {
  display: flex;
}
.searchandfilter div > ul > li:nth-of-type(2) > ul li, .searchandfilter div > ul > li:nth-of-type(4) > ul li {
  display: block;
}
.searchandfilter div > ul > li:nth-of-type(5), .searchandfilter div > ul > li:nth-of-type(6), .searchandfilter div > ul > li:nth-of-type(7) {
  width: 33%;
}
@media screen and (max-width: 1024px) {
  .searchandfilter div > ul > li:nth-of-type(5), .searchandfilter div > ul > li:nth-of-type(6), .searchandfilter div > ul > li:nth-of-type(7) {
    width: 100%;
    margin-bottom: 20px;
  }
}
.searchandfilter div > ul > li:last-of-type {
  width: 100%;
  border: none;
}
.searchandfilter label {
  display: flex;
  align-items: center;
}

.product .sec:first-of-type {
  padding-top: 0;
}
.product__list {
  display: flex;
  flex-wrap: wrap;
}
.product__item {
  width: 25%;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .product__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .product__item {
    padding: 10px;
  }
}
.product__item .img {
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .product__item .img {
    padding: 5px;
  }
}
.product__item .img img {
  aspect-ratio: 1;
  height: auto;
}
.product__item .title {
  line-height: 1.4 !important;
}
.product__item .title a {
  font-weight: bold;
  text-decoration: underline;
  font-size: 1.6rem;
  line-height: 1.4 !important;
}
@media screen and (max-width: 1024px) {
  .product__item .title a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.product__item .title a:hover {
  color: var(--main);
}
.product__item .cat__list {
  display: flex;
  gap: 5px;
}
.product__item .cat__list .cat__item {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  color: var(--white);
  line-height: 1;
  font-size: 1.2rem;
  padding: 6px 10px;
  background-color: var(--main);
}
@media screen and (max-width: 1024px) {
  .product__item .cat__list .cat__item {
    font-size: clamp(12px, 0.6rem, 0.6rem);
  }
}
@media screen and (max-width: 1024px) {
  .product__item .cat__list .cat__item {
    padding: 3px 5px;
  }
}
.product__item .cat__list .cat__item.used {
  background-color: var(--used);
}
.product__item .price {
  font-size: 1.4rem;
  text-align: right;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .product__item .price {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.product__item .price .num {
  font-size: 1.8rem;
  text-align: right;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .product__item .price .num {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.product .inner_tab-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}
.product .inner_tab-group .inner_tab {
  width: calc(25% - 10px);
  border: solid 1px #ddd;
  text-align: left;
  font-weight: bold;
  color: #ddd;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .product .inner_tab-group .inner_tab {
    padding: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .product .inner_tab-group .inner_tab {
    width: 100%;
  }
}
.product .inner_tab-group .inner_tab.is-active {
  border-color: var(--main);
  color: var(--main);
  position: relative;
}
.product .inner_tab-group .inner_tab.is-active::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/icon_arrow_bottom-main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-position: center;
  width: 16px;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .product .inner_tab-group .inner_tab.is-active::before {
    width: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .product .inner_tab-group .inner_tab.is-active::before {
    right: 5px;
  }
}
.product .inner_panel-group .inner_panel {
  display: none;
}
.product .inner_panel-group .inner_panel.is-show {
  display: block;
}
.product .product__tab .tab {
  font-size: 2rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .product .product__tab .tab {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.product .product__tab .tab.is-active.used, .product .product__tab .tab:hover.used {
  background-color: var(--used);
}
.product__panel {
  border: solid 1px #ddd;
  padding: 40px 20px;
}
@media screen and (max-width: 1024px) {
  .product__panel {
    padding: 20px 10px;
  }
}
.product__panel .panel.used .inner_tab-group .inner_tab.is-active {
  border-color: var(--used);
  color: var(--used);
}
.product__panel .panel.used .inner_tab-group .inner_tab.is-active::before {
  background-image: url(../img/icon_arrow_bottom-used.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.resurt .search-txt01 {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .resurt .search-txt01 {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.resurt .search-txt01 .search-count {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .resurt .search-txt01 .search-count {
    font-size: clamp(12px, 1rem, 1rem);
  }
}

.archive .product-wrap,
.product-post .product-wrap,
.tax-product-cat .product-wrap {
  display: flex;
  gap: 50px;
  width: 90%;
  max-width: 1400px;
  margin: auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .archive .product-wrap,
  .product-post .product-wrap,
  .tax-product-cat .product-wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .archive .product-wrap,
  .product-post .product-wrap,
  .tax-product-cat .product-wrap {
    max-width: 700px;
  }
}
@media screen and (max-width: 1024px) {
  .archive .product-wrap,
  .product-post .product-wrap,
  .tax-product-cat .product-wrap {
    margin-bottom: 50px;
  }
}
.archive .product-wrap main,
.product-post .product-wrap main,
.tax-product-cat .product-wrap main {
  width: calc(100% - 460px);
}
@media screen and (max-width: 1024px) {
  .archive .product-wrap main,
  .product-post .product-wrap main,
  .tax-product-cat .product-wrap main {
    width: 100%;
  }
}
.archive .product-wrap .product__item,
.product-post .product-wrap .product__item,
.tax-product-cat .product-wrap .product__item {
  width: 33%;
}
@media screen and (max-width: 1024px) {
  .archive .product-wrap .product__item,
  .product-post .product-wrap .product__item,
  .tax-product-cat .product-wrap .product__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.archive .product-wrap .sec,
.product-post .product-wrap .sec,
.tax-product-cat .product-wrap .sec {
  padding-top: 0;
}
.archive .product-wrap._cat_both .product,
.product-post .product-wrap._cat_both .product,
.tax-product-cat .product-wrap._cat_both .product {
  width: 100%;
}
.archive .product-wrap._cat_both .product .inner,
.product-post .product-wrap._cat_both .product .inner,
.tax-product-cat .product-wrap._cat_both .product .inner {
  width: 100%;
}
.archive .product-wrap._cat_both + .sidebar,
.product-post .product-wrap._cat_both + .sidebar,
.tax-product-cat .product-wrap._cat_both + .sidebar {
  display: none !important;
}

.post-categories li a {
  font-size: 1.6rem;
  font-size: clamp(12px, 1.6rem, 1.6rem);
  color: var(--green);
  padding: 5px 8px;
}
@media screen and (max-width: 1024px) {
  .post-categories li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.post-categories li a:hover {
  background-color: #fff;
  color: #a8877d;
}
.post-categories li a.news {
  background-color: var(--yellow);
  border: solid 1px var(--yellow);
}
.post-categories li a.news:hover {
  background-color: #fff;
  color: var(--yellow);
}
.post-categories li a.lunch {
  background-color: var(--green);
  border: solid 1px var(--green);
}
.post-categories li a.lunch:hover {
  background-color: #fff;
  color: var(--green);
}
.post-categories li a.childcare {
  background-color: var(--blue);
  border: solid 1px var(--blue);
}
.post-categories li a.childcare:hover {
  background-color: #fff;
  color: var(--blue);
}
.post-categories li a.column {
  background-color: var(--pink);
  border: solid 1px var(--pink);
}
.post-categories li a.column:hover {
  background-color: #fff;
  color: var(--pink);
}

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

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

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

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

.recruit-single .recruit-single-title {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .recruit-single .recruit-single-title {
    font-size: clamp(12px, 1.2rem, 1.2rem);
  }
}
.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 th {
  font-size: 1.8rem;
  text-align: left !important;
}
@media screen and (max-width: 1024px) {
  .recruit-single .job-table th {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.recruit-single .job-table td {
  font-size: 1.6rem;
  text-align: left !important;
}
@media screen and (max-width: 1024px) {
  .recruit-single .job-table td {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.recruit-single .job-table td p {
  font-size: 1.6rem;
  text-align: left !important;
}
@media screen and (max-width: 1024px) {
  .recruit-single .job-table td p {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.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);
  }
}

.product-single {
  display: flex;
  gap: 50px;
  width: 90%;
  max-width: 1400px;
  margin: auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .product-single {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .product-single {
    max-width: 700px;
  }
}
@media screen and (max-width: 1024px) {
  .product-single {
    margin-bottom: 50px;
  }
}
.product-single main {
  width: calc(100% - 460px);
}
@media screen and (max-width: 1024px) {
  .product-single main {
    width: 100%;
  }
}
.product-single .title {
  color: var(--main);
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .product-single .title {
    font-size: clamp(12px, 1.2rem, 1.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .product-single .title {
    margin-bottom: 10px;
  }
}
.product-single .cat {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .product-single .cat {
    margin-bottom: 10px;
  }
}
.product-single .cat__list {
  display: flex;
  gap: 5px;
}
.product-single .cat__item {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  color: var(--white);
  line-height: 1;
  font-size: 1.2rem;
  padding: 6px 10px;
  background-color: var(--main);
}
@media screen and (max-width: 1024px) {
  .product-single .cat__item {
    font-size: clamp(12px, 0.6rem, 0.6rem);
  }
}
@media screen and (max-width: 1024px) {
  .product-single .cat__item {
    padding: 3px 5px;
  }
}
.product-single .cat__item.used {
  background-color: var(--used);
}
.product-single .box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .product-single .box {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .product-single .box {
    margin-bottom: 30px;
  }
}
.product-single .box .item._img {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .product-single .box .item._img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.product-single .box .item._content {
  width: 35%;
}
@media screen and (max-width: 1024px) {
  .product-single .box .item._content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.product-single .price {
  text-align: right;
}
.product-single .price .num {
  font-size: 3rem;
}
@media screen and (max-width: 1024px) {
  .product-single .price .num {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
.product-single .size {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .product-single .size {
    margin-bottom: 5px;
  }
}
.product-single .size th {
  background-color: rgba(255, 165, 0, 0.1);
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .product-single .size th {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.product-single .size td span {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .product-single .size td span {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.product-single .content {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .product-single .content {
    margin-bottom: 30px;
  }
}
.product-single .faq a::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1;
  background-image: url(../img/icon_arrow-txt.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10px;
  height: auto;
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  .product-single .faq a::after {
    width: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .product-single .faq a::after {
    margin-left: 5px;
  }
}
.product-single .faq a:hover {
  color: var(--main);
}
.product-single .faq a:hover::after {
  background-image: url(../img/icon_arrow-main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.sidebar._product {
  max-width: 400px;
}
@media screen and (max-width: 1024px) {
  .sidebar._product {
    width: 100%;
    max-width: unset;
  }
}
.sidebar._product .btn_filter {
  display: flex;
  align-items: center;
  width: 100%;
  border: solid 2px var(--main);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .sidebar._product .btn_filter {
    border-radius: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar._product .btn_filter {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.sidebar._product .btn_filter .search-icon {
  fill: var(--main);
}
.sidebar._product .btn_filter:hover {
  background-color: var(--main);
  color: var(--white);
}
.sidebar._product .btn_filter:hover .search-icon {
  fill: var(--white);
}
.sidebar._product h3 {
  font-size: 1.6rem;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .sidebar._product h3 {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.sidebar._product ul li {
  padding-left: 10px;
}
@media screen and (max-width: 1024px) {
  .sidebar._product ul li {
    padding-left: 5px;
  }
}

.archive-time-cat time,
.single-info-date-cat time {
  color: var(--main);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
}
@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: 400;
}
.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: 400;
}
.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);
  }
}

main.panelactive {
  display: none;
}

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

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

.footer {
  position: relative;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
}
.footer-inner {
  align-items: center;
}
.footer-logo-address {
  width: 35%;
}
@media screen and (max-width: 1024px) {
  .footer-logo-address {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer-logo p {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  text-align: center;
  font-size: 3rem;
}
@media screen and (max-width: 1024px) {
  .footer-logo p {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
.footer-menu li a {
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  color: unset;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .footer-menu li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.footer-menu li a::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  background-color: var(--main);
}
@media screen and (max-width: 1024px) {
  .footer-menu li a {
    border-bottom: dotted 1px #ddd;
  }
}
.footer-menu li a:hover {
  color: var(--main);
  transition: all 0.3s;
}

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

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

.copyright {
  width: 90%;
  border-top: solid #ddd 1px;
  margin: auto;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .copyright {
    padding-top: 10px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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