@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=Poppins:wght@100;200;300;400;500;600;700;800;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=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@100;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&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);
  }
}

.fix_btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .fix_btn {
    display: block;
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    background-color: var(--pink_deep);
    color: var(--white);
    width: 70%;
    padding: 10px;
    margin: auto;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    border-radius: 10px;
    z-index: 5;
  }
}

.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__deco {
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/dot01.png);
          mask-image: url(../img/dot01.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #ddd;
  width: 30%;
  height: auto;
  position: absolute;
  z-index: 2;
}

.para {
  width: 100%;
  aspect-ratio: 701/312;
  -webkit-mask-image: url(../img/para_mask.png);
          mask-image: url(../img/para_mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background: transparent;
  z-index: 1;
  margin-top: -5.2083333333vw;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .para {
    background-attachment: unset;
  }
}
.para::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.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._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(--title);
  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: 20px;
    padding-right: 10px;
  }
}

.title01 {
  position: relative;
}
.title01 .en {
  display: block;
  color: var(--title);
  font-size: 5.2083333333vw;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  text-align: left;
  clip-path: inset(0 100% 0 0);
  transition: 2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.title01 .ja {
  display: block;
  color: var(--title);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: 16px;
  text-align: left;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .title01 .ja {
    margin-top: 8px;
  }
}
.title01.is-show .en {
  clip-path: inset(0);
}
.title01.is-show .ja {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.title02 {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title02 {
    margin-bottom: 30px;
  }
}
.title02 .ja {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  font-weight: 600;
  color: var(--title);
  letter-spacing: 0.15em;
  padding: 0px 20px;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .title02 .ja {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .title02 .ja {
    padding: 0px 10px;
  }
}
.title02.is-show .ja {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.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(--pink);
  font-size: 5rem;
  line-height: 1;
  clip-path: inset(0 100% 0 0);
  transition: 2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
@media screen and (max-width: 1024px) {
  .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 {
  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 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--title);
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title05 {
    font-size: clamp(12px, 2rem, 2rem);
  }
}
@media screen and (max-width: 1024px) {
  .title05 {
    margin-bottom: 30px;
  }
}

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

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

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

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

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

.bg_en {
  color: var(--gray);
  font-size: 10.4166666667vw;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 0;
  color: #d9dee2;
}

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

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

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

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

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

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

.bg_white {
  background-color: #fff;
}

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

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

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

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

.tablepress {
  background: #fff;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box !important;
  border: none !important;
}
.tablepress thead th {
  color: var(--pink) !important;
  background-color: unset !important;
  border-right: 1px solid #ddd !important;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .tablepress thead th {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .tablepress thead th {
    white-space: nowrap;
  }
}
.tablepress tbody tr:first-of-type td.column-1,
.tablepress tbody tr:first-of-type td.column-2 {
  border-top: none !important;
}
.tablepress tbody td {
  font-size: 1.6rem;
  border-right: none !important;
}
@media screen and (max-width: 1024px) {
  .tablepress tbody td {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.tablepress tbody td.column-1 {
  width: 20%;
  background-color: unset;
  color: var(--pink);
  border-top: solid 1px var(--pink);
}
@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: 80%;
  border-top: solid 1px var(--title_light);
}
@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 tbody td.column-2 a:hover {
  opacity: 0.7;
}
.tablepress.tablepress-id-1 td.column-1 {
  color: var(--blue);
  border-top: solid 1px var(--blue);
}
.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(--pink);
}
@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(--pink) !important;
    color: var(--white);
  }
}

.tablepress-table-name {
  background-color: unset;
  color: var(--pink);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pink);
  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(--pink);
  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(--pink);
  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(--pink);
}
.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;
  }
}

.home main {
  position: relative;
  overflow: hidden;
}
.home main::before {
  content: "";
  display: block;
  aspect-ratio: 680/485;
  -webkit-mask-image: url(../img/shape07.png);
          mask-image: url(../img/shape07.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: rgba(207, 205, 209, 0.5);
  width: 75%;
  height: auto;
  position: absolute;
  top: -26.0416666667vw;
  left: -15.625vw;
  z-index: -1;
}
.home main::after {
  content: "";
  display: block;
  aspect-ratio: 448/452;
  -webkit-mask-image: url(../img/shape08.png);
          mask-image: url(../img/shape08.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: rgba(var(--pink_rgb), 0.5);
  background-color: var(--pink_light);
  width: 45%;
  height: auto;
  position: absolute;
  top: 31.25vw;
  right: -15.625vw;
  z-index: -1;
}
.home .line {
  position: absolute;
  z-index: 100;
  display: inline-block;
  width: 4px;
  height: 365px;
  overflow: hidden;
  border-radius: 2px;
  transform: rotate(55deg);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .home .line {
    width: 2px;
  }
}
@media screen and (max-width: 1024px) {
  .home .line {
    height: 182.5px;
  }
}
.home .line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 2px;
  animation: scroll_line 3s cubic-bezier(0.87, 0, 0.13, 1) infinite;
  transform: translateY(100%);
}
.home .line.pk::before {
  background: linear-gradient(0deg, #fa5db1, #febfbf);
}
.home .line.pp::before {
  background: linear-gradient(0deg, #3fb0f7, #6d6afe);
}
.home .line._01 {
  top: 200px;
  left: -120px;
}
@media screen and (max-width: 1024px) {
  .home .line._01 {
    top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .home .line._01 {
    left: -60px;
  }
}
.home .line._02 {
  top: 130px;
  left: 70px;
}
@media screen and (max-width: 1024px) {
  .home .line._02 {
    top: 65px;
  }
}
@media screen and (max-width: 1024px) {
  .home .line._02 {
    left: 35px;
  }
}
.home .line._03 {
  bottom: 90px;
  right: 17vw;
}
@media screen and (max-width: 1024px) {
  .home .line._03 {
    bottom: 45px;
  }
}
.home .line._04 {
  bottom: 190px;
  right: 14vw;
}
@media screen and (max-width: 1024px) {
  .home .line._04 {
    bottom: 95px;
  }
}

.line-b {
  position: absolute;
  z-index: 100;
  display: inline-block;
  width: 24px;
  height: 100px;
  overflow: hidden;
  border-radius: 24px;
  transform: rotate(55deg);
  opacity: 0.4;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .line-b {
    width: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .line-b {
    height: 50px;
  }
}
.line-b::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  display: block;
  animation: scroll_line 5s cubic-bezier(0.87, 0, 0.13, 1) infinite;
  transform: translateY(100%);
}
.line-b.pk::before {
  background: linear-gradient(0deg, #fa5db1, #febfbf);
}
.line-b.pp::before {
  background: linear-gradient(0deg, #965cf2, #ff8adc);
}
.line-b.sm {
  transform: scale(0.5, 0.5) rotate(55deg);
}
.line-b._01 {
  top: 200px;
  left: 45vw;
}
@media screen and (max-width: 1024px) {
  .line-b._01 {
    top: 100px;
  }
}
.line-b._02 {
  top: 400px;
  right: 10vw;
}
@media screen and (max-width: 1024px) {
  .line-b._02 {
    top: 200px;
  }
}
.line-b._03 {
  top: 700px;
  left: 30vw;
}
@media screen and (max-width: 1024px) {
  .line-b._03 {
    top: 350px;
  }
}
.line-b._04 {
  left: 4vw;
  bottom: 0;
}
.line-b._05 {
  left: 25vw;
  bottom: 0;
}
.line-b._06 {
  right: 42vw;
  bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .line-b._06 {
    bottom: 30px;
  }
}

@keyframes scroll_line {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.delay-10::before::before {
  animation-delay: 1s;
}

.delay-20::before::before {
  animation-delay: 2s;
}

.delay-30::before::before {
  animation-delay: 3s;
}

.slider__wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 13.5416666667vw;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .slider__wrap {
    padding-bottom: 50px;
  }
}
.slider__wrap .slider {
  width: 100%;
  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 .slider__content {
  transform: rotate(-7deg);
}
.slider__wrap .mv__top,
.slider__wrap .mv__bottom {
  width: 120%;
  margin-left: -10%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .slider__wrap .mv__top,
  .slider__wrap .mv__bottom {
    margin-bottom: 10px;
  }
}
.slider__wrap .mv__top .swiper-wrapper,
.slider__wrap .mv__bottom .swiper-wrapper {
  transition-timing-function: linear;
}
.slider__wrap .mv__top .swiper-slide,
.slider__wrap .mv__bottom .swiper-slide {
  aspect-ratio: 1;
  height: 350px !important; /* 高さを指定 */
  width: auto !important;
  position: relative;
}
.slider__wrap .mv__top .swiper-slide::before,
.slider__wrap .mv__bottom .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .slider__wrap .mv__top .swiper-slide,
  .slider__wrap .mv__bottom .swiper-slide {
    height: 200px !important; /* 高さを指定 */
  }
}
@media screen and (max-width: 360px) {
  .slider__wrap .mv__top .swiper-slide,
  .slider__wrap .mv__bottom .swiper-slide {
    height: 100px !important; /* 高さを指定 */
  }
}
.slider__wrap .mv__top .swiper-slide img,
.slider__wrap .mv__bottom .swiper-slide img {
  aspect-ratio: 1;
  height: auto;
}
.slider__wrap .swiperTop {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .slider__wrap .swiperTop {
    margin-top: 50px;
  }
}
.slider__wrap .swiperTop .swiper-wrapper {
  transition-timing-function: linear;
}
.slider__wrap .swiperTop .swiper-slide {
  aspect-ratio: 9/8;
  height: 52.0833333333vw !important; /* 高さを指定 */
  width: auto !important;
  padding: 20px;
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  .slider__wrap .swiperTop .swiper-slide {
    padding: 10px;
  }
}
@media screen and (max-width: 600px) {
  .slider__wrap .swiperTop .swiper-slide {
    height: 60vw !important; /* 高さを指定 */
  }
}
.slider__wrap .swiperTop .swiper-slide .img__list {
  width: 100%;
  height: 100%;
  aspect-ratio: 9/8;
  overflow: hidden;
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .slider__wrap .swiperTop .swiper-slide .img__list {
    border-radius: 3px;
  }
}
.slider__wrap .swiperTop .swiper-slide .img__list .img__content {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .slider__wrap .swiperTop .swiper-slide .img__list .img__content {
    border-radius: 3px;
  }
}
.slider__wrap .swiperTop .swiper-slide .img__list .img__content::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.slider__wrap .swiperTop .swiper-slide:nth-of-type(2) .img__list, .slider__wrap .swiperTop .swiper-slide:nth-of-type(6) .img__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.slider__wrap .swiperTop .swiper-slide:nth-of-type(2) .img__content, .slider__wrap .swiperTop .swiper-slide:nth-of-type(6) .img__content {
  aspect-ratio: 9/8;
  width: calc(50% - 20px);
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .slider__wrap .swiperTop .swiper-slide:nth-of-type(2) .img__content, .slider__wrap .swiperTop .swiper-slide:nth-of-type(6) .img__content {
    border-radius: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .slider__wrap .swiperTop .swiper-slide:nth-of-type(2) .img__content, .slider__wrap .swiperTop .swiper-slide:nth-of-type(6) .img__content {
    width: calc(50% - 10px);
  }
}
.slider__wrap .swiperTop .swiper-slide:nth-of-type(2) .img__content:first-of-type, .slider__wrap .swiperTop .swiper-slide:nth-of-type(6) .img__content:first-of-type {
  aspect-ratio: 2;
  width: 100%;
  height: calc(50% - 20px);
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .slider__wrap .swiperTop .swiper-slide:nth-of-type(2) .img__content:first-of-type, .slider__wrap .swiperTop .swiper-slide:nth-of-type(6) .img__content:first-of-type {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .slider__wrap .swiperTop .swiper-slide:nth-of-type(2) .img__content:first-of-type, .slider__wrap .swiperTop .swiper-slide:nth-of-type(6) .img__content:first-of-type {
    height: calc(50% - 10px);
  }
}
.slider__wrap .swiperTop .swiper-slide:nth-of-type(2) .img__content:first-of-type img, .slider__wrap .swiperTop .swiper-slide:nth-of-type(6) .img__content:first-of-type img {
  aspect-ratio: 2;
  height: auto;
}
.slider__wrap .swiperTop .swiper-slide:nth-of-type(4) .img__list, .slider__wrap .swiperTop .swiper-slide:nth-of-type(8) .img__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.slider__wrap .swiperTop .swiper-slide:nth-of-type(4) .img__content, .slider__wrap .swiperTop .swiper-slide:nth-of-type(8) .img__content {
  width: calc(50% - 20px);
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .slider__wrap .swiperTop .swiper-slide:nth-of-type(4) .img__content, .slider__wrap .swiperTop .swiper-slide:nth-of-type(8) .img__content {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .slider__wrap .swiperTop .swiper-slide:nth-of-type(4) .img__content, .slider__wrap .swiperTop .swiper-slide:nth-of-type(8) .img__content {
    width: calc(50% - 10px);
  }
}
.slider__wrap .swiperTop .swiper-slide:nth-of-type(4) .img__content:last-of-type, .slider__wrap .swiperTop .swiper-slide:nth-of-type(8) .img__content:last-of-type {
  width: 100%;
}
.slider__wrap .swiperTop._02 .swiper-slide .img__list .img__content::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}
.slider__wrap .catch_img {
  aspect-ratio: 1;
  width: 690px;
  height: auto;
  position: absolute;
  top: 9.8958333333vw;
  left: 7%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .slider__wrap .catch_img {
    width: 345px;
  }
}
@media screen and (max-width: 1024px) {
  .slider__wrap .catch_img {
    top: 10%;
    left: 0;
  }
}
@media screen and (max-width: 360px) {
  .slider__wrap .catch_img {
    width: 220px;
  }
}
.slider__wrap .catch__wrap {
  position: absolute;
  top: 58%;
  top: 48%;
  right: 28%;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .slider__wrap .catch__wrap {
    right: 20%;
  }
}
.slider__wrap .catch__wrap .catch {
  display: flex;
  align-items: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 6.25vw;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 3;
  white-space: nowrap;
  margin-bottom: 2.5vw;
}
@media screen and (max-width: 600px) {
  .slider__wrap .catch__wrap .catch {
    font-size: 7.5vw;
  }
}
.slider__wrap .catch__wrap .catch .f_l {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 6.25vw;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 600px) {
  .slider__wrap .catch__wrap .catch .f_l {
    font-size: 7.5vw;
  }
}
.slider__wrap .catch__wrap .catch:nth-of-type(2) {
  margin-left: 15%;
}
.slider__wrap .catch__wrap02 {
  position: absolute;
  top: 58%;
  top: 48%;
  left: 10%;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .slider__wrap .catch__wrap02 {
    right: 20%;
  }
}
.slider__wrap .catch__wrap02 .catch {
  display: flex;
  align-items: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 4.1666666667vw;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 3;
  white-space: nowrap;
  margin-bottom: 2.5vw;
  text-shadow: 5px 5px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 600px) {
  .slider__wrap .catch__wrap02 .catch {
    font-size: 7.5vw;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.25);
  }
}
.slider__wrap .catch__wrap03 {
  position: absolute;
  top: 58%;
  top: 48%;
  left: 10%;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .slider__wrap .catch__wrap03 {
    right: 20%;
  }
}
.slider__wrap .catch__wrap03 .catch {
  display: flex;
  align-items: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 3;
  white-space: nowrap;
  margin-bottom: 2vw;
}
.slider__wrap .catch__wrap03 .catch span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 4.1666666667vw;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .slider__wrap .catch__wrap03 .catch span {
    font-size: 6vw;
  }
}
.slider__wrap .catch__wrap03 .catch::before {
  content: "";
  display: block;
  background-color: var(--txt);
  width: 102%;
  height: 102%;
  position: absolute;
  left: 0;
  bottom: 0;
  left: -3%;
  bottom: -5%;
  z-index: 1;
}

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

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

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

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

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.f-message {
  position: relative;
}
.f-message .line._03 {
  bottom: -10vw;
  right: 17vw;
  z-index: -1;
}
.f-message .line._04 {
  bottom: -2vw;
  right: 14vw;
  z-index: -1;
}
.f-message .line-b._02 {
  top: 8vw;
  z-index: -1;
}
.f-message .line-b._06 {
  right: 32vw;
  bottom: 1vw;
}
.f-message .message {
  position: relative;
}
.f-message .message .inner {
  width: 80%;
  display: flex;
  justify-content: space-between;
  margin-top: 5.2083333333vw;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-message .message .inner {
    flex-direction: column;
  }
}
.f-message .message .inner .title01 {
  position: absolute;
  right: 0;
  top: -5.2083333333vw;
  z-index: 1;
}
.f-message .message .inner .title01 .en {
  color: var(--bg);
  font-size: 8vw;
}
.f-message .message__txt {
  width: 65%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-message .message__txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-message .message__txt .txt p {
  font-size: clamp(16px, 0.9375vw, 1.8rem);
  color: var(--txt);
  line-height: 2.1;
  letter-spacing: 0.05em;
  opacity: 1;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .f-message .message__txt .txt p {
    font-size: clamp(12px, 1.7578125vw, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-message .message__txt .txt p {
    font-size: 1.2rem;
  }
}
.f-message .message__txt .txt p span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--title);
  width: -moz-fit-content;
  width: fit-content;
  transform: translateY(3%);
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .f-message .message__txt .txt p span {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-message .message__txt .txt p span {
    font-size: 1.8rem;
  }
}
.f-message .message__txt .txt p.is-show {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0%);
  transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.f-message .message__txt .txt p.is-show span {
  opacity: 1;
  transform: translateY(0%);
  transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.f-message .message__img {
  width: 30%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-message .message__img {
    width: 60%;
    margin: auto;
  }
}
.f-message .message__img::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/dot01.png);
          mask-image: url(../img/dot01.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--txt-gray);
  width: 45%;
  height: auto;
  position: absolute;
  bottom: -5.2083333333vw;
  right: -5.2083333333vw;
  z-index: -1;
}
.f-message .message__img img {
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .f-message .message__img img {
    border-radius: 10px;
  }
}

.f-about {
  position: relative;
  padding-top: 50px;
}
@media screen and (max-width: 1024px) {
  .f-about {
    padding-top: 25px;
  }
}
.f-about::before {
  content: "";
  display: block;
  aspect-ratio: 724/578;
  -webkit-mask-image: url(../img/shape04.png);
          mask-image: url(../img/shape04.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--aqua);
  background-color: rgba(var(--blue_rgb), 0.4);
  width: 45%;
  height: auto;
  position: absolute;
  top: -13.0208333333vw;
  left: -15.625vw;
  z-index: -1;
}
.f-about::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/dot01.png);
          mask-image: url(../img/dot01.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--txt-gray);
  width: 15%;
  height: auto;
  position: absolute;
  top: 7.7vw;
  left: 20.8333333333vw;
  z-index: -1;
}
.f-about .line {
  z-index: -1 !important;
}
.f-about .line._03 {
  bottom: -10vw;
  right: 17vw;
}
.f-about .line._04 {
  bottom: -2vw;
  right: 14vw;
}
.f-about .line-b {
  z-index: -1 !important;
}
.f-about .line-b._01 {
  top: 40vw;
  left: unset;
  right: 0;
}
.f-about .line-b._02 {
  top: 8vw;
}
.f-about .line-b._03 {
  top: 80vw;
  left: 0;
}
.f-about .line-b._06 {
  right: 32vw;
  bottom: 1vw;
}
.f-about .inner {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-about .inner {
    width: 80%;
  }
}
.f-about .business {
  padding: 60px 0px;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-about .business {
    padding: 30px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .business {
    margin-bottom: 30px;
  }
}
.f-about .business::before {
  content: "";
  display: block;
  aspect-ratio: 724/578;
  -webkit-mask-image: url(../img/shape04.png);
          mask-image: url(../img/shape04.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: rgba(221, 221, 221, 0.2);
  width: 65%;
  height: auto;
  position: absolute;
  top: 0vw;
  right: -20.8333333333vw;
  z-index: -1;
}
.f-about .business .content .title {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  color: var(--pink);
  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;
  gap: 5%;
}
@media screen and (max-width: 1024px) {
  .f-about .business__list {
    flex-direction: column;
  }
}
.f-about .business__item {
  width: 100%;
}
.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__item .num {
  display: block;
  font-weight: 900;
  font-size: 5vw;
  color: rgba(var(--blue_rgb), 0.4);
  color: var(--blue_light_01);
  text-align: center;
  margin: auto;
}
.f-about .business__img {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .f-about .business__img {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .business__img {
    margin-bottom: 15px;
  }
}
.f-about .business__img::before {
  content: "";
  display: block;
  aspect-ratio: 269/98;
  -webkit-mask-image: url(../img/stage.png);
          mask-image: url(../img/stage.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #03a0e9;
  width: 60%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.f-about .business__img img {
  aspect-ratio: 1;
  width: 50%;
  height: auto;
  margin: auto;
  position: relative;
  z-index: 2;
}
.f-about .business__title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pink);
  color: #565d6b;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .f-about .business__title {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.f-about .business__txt {
  margin-bottom: 0;
}
.f-about .work {
  position: relative;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .f-about .work {
    margin-bottom: 60px;
  }
}
.f-about .work::before {
  content: "";
  display: block;
  aspect-ratio: 724/578;
  -webkit-mask-image: url(../img/shape04.png);
          mask-image: url(../img/shape04.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: rgba(221, 221, 221, 0.2);
  width: 50%;
  height: auto;
  position: absolute;
  top: -5.2083333333vw;
  left: 2.6041666667vw;
  z-index: -1;
}
.f-about .work::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/dot01.png);
          mask-image: url(../img/dot01.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--txt-gray);
  width: 15%;
  height: auto;
  position: absolute;
  bottom: -1vw;
  right: 2vw;
  z-index: -1;
}
.f-about .work__list {
  width: 98%;
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 1024px) {
  .f-about .work__list {
    flex-direction: column;
  }
}
.f-about .work__item {
  width: 30%;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  padding: 40px 20px;
  margin-bottom: 40px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
  padding: 0;
}
@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;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .work__item {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .work__item {
    margin-bottom: 20px;
  }
}
.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__title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--title);
  padding: 20px;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .f-about .work__title {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-about .work__title {
    padding: 10px;
  }
}
.f-about .work__txt {
  padding: 0px 20px;
}
@media screen and (max-width: 1024px) {
  .f-about .work__txt {
    padding: 0px 10px;
  }
}
.f-about .grade {
  position: relative;
  padding-top: 100px;
  padding-bottom: 9.375vw;
}
@media screen and (max-width: 1024px) {
  .f-about .grade {
    padding-top: 50px;
  }
}
.f-about .grade::before {
  content: "";
  display: block;
  aspect-ratio: 801/273;
  -webkit-mask-image: url(../img/shape11.png);
          mask-image: url(../img/shape11.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--pink_light);
  width: 100%;
  height: auto;
  position: absolute;
  top: 0vw;
  left: 0vw;
  z-index: -1;
}
.f-about .grade::after {
  content: "";
  width: 100%;
  height: calc(100% - 30vw);
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--pink_light);
  z-index: -2;
}
.f-about .grade .line-b {
  z-index: -1 !important;
}
.f-about .grade .line-b._01 {
  top: 40vw;
  left: unset;
  right: 0;
}
.f-about .grade .line-b._02 {
  top: 15vw;
}
.f-about .grade .line-b._03 {
  top: 50vw;
  left: 0;
}
.f-about .grade .line-b._04 {
  top: unset;
  bottom: 10vw;
}
.f-about .grade .line-b._05 {
  top: unset;
  bottom: 15vw;
  left: unset;
  right: 2vw;
}
.f-about .grade .line-b._06 {
  right: 32vw;
  bottom: 1vw;
}
.f-about .grade__circle {
  display: block;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/dot01.png);
          mask-image: url(../img/dot01.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--txt-gray);
  width: 13%;
  height: auto;
  position: absolute;
  top: 1vw;
  left: 3vw;
  z-index: -2;
}
@media screen and (max-width: 1024px) {
  .f-about .grade .title02 {
    margin-bottom: 60px;
  }
}
.f-about .grade__inner {
  position: relative;
}
.f-about .grade #run_01 {
  width: 10%;
}
.f-about .grade .man .left-leg {
  transform-origin: top center;
  animation: swing-left02 0.5s infinite alternate;
}
.f-about .grade .man .right-leg {
  transform-origin: top center;
  animation: swing-right02 0.5s infinite alternate;
}
@media screen and (max-width: 600px) {
  .f-about .grade .woman {
    top: 40px;
    left: -40px;
  }
}
.f-about .grade .woman .left-leg {
  transform-origin: top center;
  animation: swing-left 0.5s infinite alternate;
}
.f-about .grade .woman .right-leg {
  transform-origin: top center;
  animation: swing-right 0.5s infinite alternate;
}
@keyframes swing-left {
  0% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
@keyframes swing-right {
  0% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes swing-left02 {
  0% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
@keyframes swing-right02 {
  0% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.f-about .grade__img {
  display: block;
  height: auto;
  position: absolute;
  opacity: 70%;
}
.f-about .grade__img._01 {
  aspect-ratio: 1997/1035;
  width: 30%;
  position: absolute;
  top: 12.5vw;
  left: -11.9791666667vw;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__img._01 {
    width: 40%;
    left: -16vw;
  }
}
@media screen and (max-width: 900px) {
  .f-about .grade__img._01 {
    top: 28%;
    left: -12vw;
  }
}
.f-about .grade__img._01 .man {
  position: absolute;
  width: 100%;
  left: -160px;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__img._01 .man {
    left: -80px;
  }
}
.f-about .grade__img._01 .man .cls-1 {
  fill: #f9c3c0;
}
.f-about .grade__img._01 .man .cls-1,
.f-about .grade__img._01 .man .cls-2,
.f-about .grade__img._01 .man .cls-3,
.f-about .grade__img._01 .man .cls-4,
.f-about .grade__img._01 .man .cls-5,
.f-about .grade__img._01 .man .cls-6,
.f-about .grade__img._01 .man .cls-7,
.f-about .grade__img._01 .man .cls-8,
.f-about .grade__img._01 .man .cls-9,
.f-about .grade__img._01 .man .cls-10,
.f-about .grade__img._01 .man .cls-11 {
  stroke-width: 0px;
}
.f-about .grade__img._01 .man .cls-2 {
  fill: #7b502c;
}
.f-about .grade__img._01 .man .cls-3 {
  fill: #2a424b;
}
.f-about .grade__img._01 .man .cls-4 {
  fill: #165b9e;
}
.f-about .grade__img._01 .man .cls-5 {
  fill: #dae6e7;
}
.f-about .grade__img._01 .man .cls-6 {
  fill: #e3e3e3;
}
.f-about .grade__img._01 .man .cls-7 {
  fill: #91b1b3;
}
.f-about .grade__img._01 .man .cls-8 {
  fill: #f49895;
}
.f-about .grade__img._01 .man .cls-9 {
  fill: #ebf1f1;
}
.f-about .grade__img._01 .man .cls-10 {
  fill: #f6aba8;
}
.f-about .grade__img._01 .man .cls-11 {
  fill: #004376;
}
.f-about .grade__img._01 .woman {
  position: absolute;
  width: 100%;
}
.f-about .grade__img._02 {
  aspect-ratio: 1135/697;
  width: 20%;
  background-image: url(../img/step_img_02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: 0vw;
  right: 0vw;
}
.f-about .grade .title01 {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-about .grade .title01 {
    margin-bottom: 30px;
  }
}
.f-about .grade .title01 .en,
.f-about .grade .title01 .ja {
  text-align: right;
}
.f-about .grade__list {
  margin: auto;
  margin-top: 120px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__list {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .grade__list {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .grade__list {
    margin-left: 13vw;
  }
}
@media screen and (max-width: 600px) {
  .f-about .grade__list {
    margin: auto;
    margin-left: -8vw;
    margin-bottom: 60px;
  }
}
.f-about .grade__item {
  position: relative;
  background-color: var(--white);
  border-radius: 10px;
  width: 50%;
  max-width: 800px;
  padding: 40px;
  position: relative;
  display: flex;
  margin-left: -80px;
  margin-bottom: -50px;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item {
    max-width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item {
    margin-left: -40px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item {
    margin-bottom: -25px;
  }
}
@media screen and (max-width: 600px) {
  .f-about .grade__item {
    display: block;
    width: 68%;
  }
}
@media screen and (max-width: 500px) {
  .f-about .grade__item {
    display: block;
    width: 68%;
  }
}
.f-about .grade__item::before {
  content: "";
  display: block;
  background-color: rgba(221, 221, 221, 0.7);
  width: 260px;
  height: 176px;
  position: absolute;
  top: -50px;
  left: -50px;
  z-index: -1;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item::before {
    width: 130px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item::before {
    height: 88px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item::before {
    top: -25px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item::before {
    left: -25px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item::before {
    border-radius: 5px;
  }
}
@media screen and (max-width: 600px) {
  .f-about .grade__item::before {
    height: 100%;
  }
}
.f-about .grade__item::after {
  content: "";
  display: block;
  width: 90%;
  height: 2px;
  border-bottom: dotted 2px #ddd;
  position: absolute;
  left: 5%;
  bottom: 25px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item::after {
    bottom: 12.5px;
  }
}
.f-about .grade__item:last-of-type::after {
  content: none;
}
.f-about .grade__item .position {
  width: 120px;
  height: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item .position {
    width: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item .position {
    margin-bottom: 0px;
  }
}
.f-about .grade__item .position .txt {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--title);
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item .position .txt {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.f-about .grade__item .detail__item .txt {
  font-size: 1.6rem;
  margin-bottom: 0;
  position:relative;
  z-index:1;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item .detail__item .txt {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.f-about .grade__item.step_01 {
  margin-left: 80px;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item.step_01 {
    margin-left: 40px;
  }
}
@media screen and (max-width: 600px) {
  .f-about .grade__item.step_01 {
    margin-left: 6vw;
  }
}
.f-about .grade__item.step_01::before {
  background-color: rgba(1, 160, 233, 0.5);
}
.f-about .grade__item.step_02 {
  margin-left: 160px;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item.step_02 {
    margin-left: 80px;
  }
}
@media screen and (max-width: 600px) {
  .f-about .grade__item.step_02 {
    margin-left: 12vw;
  }
}
.f-about .grade__item.step_02::before {
  background-color: rgba(75, 189, 235, 0.5);
}
.f-about .grade__item.step_03 {
  margin-left: 240px;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item.step_03 {
    margin-left: 120px;
  }
}
@media screen and (max-width: 600px) {
  .f-about .grade__item.step_03 {
    margin-left: 18vw;
  }
}
.f-about .grade__item.step_03::before {
  background-color: rgba(162, 218, 242, 0.5);
}
.f-about .grade__item.step_04 {
  margin-left: 320px;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item.step_04 {
    margin-left: 160px;
  }
}
@media screen and (max-width: 600px) {
  .f-about .grade__item.step_04 {
    margin-left: 24vw;
  }
}
.f-about .grade__item.step_04::before {
  background-color: rgba(229, 154, 183, 0.5);
}
.f-about .grade__item.step_05 {
  margin-left: 400px;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item.step_05 {
    margin-left: 200px;
  }
}
@media screen and (max-width: 600px) {
  .f-about .grade__item.step_05 {
    margin-left: 30vw;
  }
}
.f-about .grade__item.step_05::before {
  background-color: rgba(251, 179, 207, 0.5);
}
.f-about .grade__item.step_06 {
  margin-left: 480px;
}
@media screen and (max-width: 1024px) {
  .f-about .grade__item.step_06 {
    margin-left: 240px;
  }
}
@media screen and (max-width: 600px) {
  .f-about .grade__item.step_06 {
    margin-left: 36vw;
  }
}
.f-about .grade__item.step_06::before {
  background-color: rgba(243, 127, 169, 0.5);
}
.f-about .example {
  width: 90%;
  margin: auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-about .example {
    margin-bottom: 40px;
  }
}
.f-about .example__content {
  width: 80%;
  margin: auto;
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-about .example__content {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .example__content {
    padding: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .example__content {
    border-radius: 5px;
  }
}
.f-about .example__content::before, .f-about .example__content::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent var(--blue) transparent transparent;
}
.f-about .example__content::before {
  top: -10px;
  left: -10px;
  transform: rotate(-90deg);
}
@media screen and (max-width: 1024px) {
  .f-about .example__content::before {
    top: -5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .example__content::before {
    left: -5px;
  }
}
.f-about .example__content::after {
  bottom: -10px;
  right: -10px;
  transform: rotate(90deg);
}
@media screen and (max-width: 1024px) {
  .f-about .example__content::after {
    bottom: -5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .example__content::after {
    right: -5px;
  }
}
.f-about .example__item {
  display: flex;
  border-bottom: solid 1px #ddd;
  padding: 20px 0px;
}
@media screen and (max-width: 1024px) {
  .f-about .example__item {
    padding: 10px 0px;
  }
}
@media screen and (max-width: 700px) {
  .f-about .example__item {
    display: block;
    margin-bottom: 16px;
  }
}
.f-about .example__item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.f-about .example__item p {
  margin-bottom: 0;
}
.f-about .example__item .positon {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: solid 1px #ddd;
}
@media screen and (max-width: 700px) {
  .f-about .example__item .positon {
    width: 100%;
    border-right: none;
    margin-bottom: 10px;
  }
}
.f-about .example__item .positon span {
  background-color: var(--gray);
  font-size: clamp(16px, 1.0416666667vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 10px 20px;
}
@media screen and (max-width: 1024px) {
  .f-about .example__item .positon span {
    font-size: clamp(12px, 1.953125vw, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .f-about .example__item .positon span {
    padding: 5px 10px;
  }
}
.f-about .example__item .content {
  width: 70%;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .f-about .example__item .content {
    flex-direction: column;
  }
}
@media screen and (max-width: 700px) {
  .f-about .example__item .content {
    width: 100%;
  }
}
.f-about .example__item .content .rough {
  width: 35%;
  font-size: clamp(16px, 1.0416666667vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .f-about .example__item .content .rough {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .example__item .content .rough {
    font-size: clamp(12px, 1.953125vw, 1rem);
  }
}
@media screen and (max-width: 700px) {
  .f-about .example__item .content .rough {
    margin-bottom: 10px;
  }
}
.f-about .example__item .content .rough span {
  font-size: clamp(16px, 3.125vw, 6rem);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .f-about .example__item .content .rough span {
    font-size: clamp(12px, 5.859375vw, 3rem);
  }
}
.f-about .example__item .content .income {
  width: 65%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .f-about .example__item .content .income {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .example__item .content .income {
    text-align: center;
    justify-content: center;
    margin-bottom: 0;
  }
}
.f-about .number {
  position: relative;
  padding-top: 80px;
  background-color: var(--white);
}
@media screen and (max-width: 1024px) {
  .f-about .number {
    padding-top: 40px;
  }
}
.f-about .number .line {
  z-index: 1 !important;
}
.f-about .number .line._01 {
  top: 0vw;
  left: 6vw;
}
.f-about .number .line._02 {
  top: -8vw;
}
.f-about .number .line._03 {
  bottom: -17vw;
}
.f-about .number .line._04 {
  bottom: -15vw;
  right: 10vw;
}
.f-about .number .line-b {
  z-index: 1 !important;
}
.f-about .number .line-b._01 {
  top: 14vw;
  right: 1vw;
}
.f-about .number .line-b._02 {
  top: 44vw;
  left: 1vw;
}
.f-about .number .line-b._03 {
  left: unset;
  right: 2vw;
  bottom: -17vw;
}
.f-about .number .line-b._04 {
  bottom: 0vw;
  left: 1vw;
}
.f-about .number .title01 {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-about .number .title01 {
    margin-bottom: 40px;
  }
}
.f-about .number .title01 .en,
.f-about .number .title01 .ja {
  text-align: center;
}
.f-about .number__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
.f-about .number__item {
  width: 30%;
  padding: 30px 20px;
  position: relative;
  background-color: rgba(246, 246, 246, 0.5);
  border-radius: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .f-about .number__item {
    padding: 15px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .number__item {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .number__item {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .number__item {
    width: 47%;
  }
}
@media screen and (max-width: 1024px) {
  .f-about .number__item:first-of-type {
    width: 100%;
  }
}
.f-about .number__item:nth-of-type(4), .f-about .number__item:nth-of-type(5) {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .f-about .number__item:nth-of-type(4), .f-about .number__item:nth-of-type(5) {
    width: 100%;
  }
}
.f-about .number__item__content {
  position: relative;
  z-index: 2;
}
.f-about .number__item__title {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  color: var(--title);
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-about .number__item__title {
    font-size: clamp(12px, 1.3rem, 1.3rem);
  }
}
.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.125vw;
  font-weight: 700;
  color: var(--blue);
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
}
.f-about .number__item .info-data p .num {
  font-size: 5.2083333333vw;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.f-about .number__item .info-data p .num.large-int {
  font-size: 3.6458333333vw;
}
.f-about .number__item .info-data p .num .decimal {
  font-size: 3.6458333333vw;
  font-weight: 700;
  color: var(--blue);
}
.f-about .number__item .info-data p .remarks {
  display: block !important;
  font-size: 2rem;
  font-weight: 700;
  color: var(--txt);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .f-about .number__item .info-data p .remarks {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.f-about .number__item .graphArea {
  padding-top: 10%;
  position: relative;
  z-index: 2;
}
.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: var(--txt);
  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(--pink);
  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: var(--txt);
}
@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(--pink);
}
@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);
}
.f-about .number__item .pieArea {
  width: 60%;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-about .number__item .pieArea {
    width: 70%;
    text-align: center;
  }
}
.f-about .number__item .pieArea .chart-label {
  font-size: clamp(16px, 1.0416666667vw, 2rem);
  font-weight: 700;
  text-align: center;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .f-about .number__item .pieArea .chart-label {
    font-size: clamp(12px, 1.953125vw, 1rem);
  }
}
.f-about .number__item .pieArea .chart-label .num {
  display: block;
  font-size: clamp(16px, 1.25vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .f-about .number__item .pieArea .chart-label .num {
    font-size: clamp(12px, 2.34375vw, 1.2rem);
  }
}
.f-about .number__item .pieArea .chart-label._01 {
  top: 50%;
  left: 50%;
  color: var(--white);
}
.f-about .number__item .pieArea .chart-label._02 {
  top: 10%;
  left: 10%;
  color: #004b95;
}

.swiper_gallery {
  overflow: hidden;
  padding-top: 0;
}
.swiper_gallery .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper_gallery .swiper-slide {
  aspect-ratio: 1;
  height: 400px !important; /* 高さを指定 */
  width: auto !important;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .swiper_gallery .swiper-slide {
    height: 200px !important; /* 高さを指定 */
  }
}
@media screen and (max-width: 500px) {
  .swiper_gallery .swiper-slide {
    height: 150px !important; /* 高さを指定 */
  }
}
.swiper_gallery .swiper-slide img {
  aspect-ratio: 1;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .swiper_gallery .swiper-slide img {
    border-radius: 5px;
  }
}

.gallery {
  position: relative;
  z-index: 2;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .gallery {
    margin-bottom: 50px;
  }
}
.gallery__wrap {
  width: 80%;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .gallery__wrap {
    margin-bottom: 20px;
  }
}
.gallery__wrap:nth-of-type(2) {
  margin-left: auto;
}
.gallery__wrap:nth-of-type(2) .gallery__list.is-show {
  transform: translateX(10%);
  transition: all 3s;
}
.gallery__list {
  width: 100%;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .gallery__list {
    gap: 5px;
  }
}
.gallery__list.is-show {
  transform: translateX(-5%);
  transition: all 3s;
}
.gallery__list .item img {
  aspect-ratio: 3/2;
  height: 300px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .gallery__list .item img {
    height: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .gallery__list .item img {
    border-radius: 5px;
  }
}

.f-interview {
  margin: auto;
  margin-top: -10.4166666667vw;
  padding-top: 15.625vw;
  padding-bottom: 15.625vw;
  position: relative;
}
.f-interview::before {
  content: "";
  display: block;
  aspect-ratio: 801/273;
  -webkit-mask-image: url(../img/shape11.png);
          mask-image: url(../img/shape11.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--blue_light_01);
  width: 100%;
  height: auto;
  position: absolute;
  top: 0vw;
  left: 0vw;
  z-index: -1;
  transform: scale(-1, 1);
}
.f-interview::after {
  content: "";
  width: 100%;
  height: calc(100% - 33.8541666667vw);
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--blue_light_01);
  z-index: -2;
}
.f-interview .interview__circle {
  display: block;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/dot01.png);
          mask-image: url(../img/dot01.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--txt-gray);
  height: auto;
  position: absolute;
  z-index: -1;
}
.f-interview .interview__circle._01 {
  width: 13%;
  top: 1vw;
  left: 3vw;
}
.f-interview .interview__circle._02 {
  width: 15%;
  bottom: -1vw;
  right: -3vw;
}
.f-interview .sec__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-interview .sec__head {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .f-interview .sec__head {
    margin-bottom: 30px;
  }
}

.interview {
  width: 85%;
  margin-left: auto;
  position: relative;
}
.interview__list {
  display: flex;
  overflow: hidden;
  gap: 20px;
  flex-wrap: wrap;
  gap: 5%;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .interview__list {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .interview__list {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .interview__list {
    margin-bottom: 30px;
  }
}
.interview__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .interview__item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .interview__item {
    border-radius: 10px;
  }
}
.interview__item:hover .content .name {
  color: var(--blue);
}
.interview__item:hover .content .name .en {
  color: var(--blue);
}
.interview__item .img {
  overflow: hidden;
}
.interview__item .img img {
  transform: scale(1);
  transition: all 0.3s;
}
.interview__item .img:hover img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.interview .content {
  flex-grow: 1;
  padding: 10px 20px;
}
@media screen and (max-width: 1024px) {
  .interview .content {
    padding: 5px 10px;
  }
}
.interview .content .tag__list {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .interview .content .tag__list {
    gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .interview .content .tag__list {
    margin-bottom: 5px;
  }
}
.interview .content .tag__list li .tag {
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px #b7b7b7;
  border-radius: 999px;
  padding: 6px 16px;
  color: #b7b7b7;
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .interview .content .tag__list li .tag {
    padding: 3px 8px;
  }
}
@media screen and (max-width: 1024px) {
  .interview .content .tag__list li .tag {
    font-size: clamp(12px, 0.6rem, 0.6rem);
  }
}
.interview .content .tag__list li .tag::before {
  content: unset !important;
}
.interview .content .name {
  font-size: 2.6041666667vw;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.15em;
  color: var(--txt);
  margin-bottom: 1vw;
}
@media screen and (max-width: 1024px) {
  .interview .content .name {
    font-size: 4vw;
  }
}
.interview .content .name .en {
  font-size: 1.4rem;
  display: block;
  text-transform: capitalize;
}
@media screen and (max-width: 1024px) {
  .interview .content .name .en {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.interview .content .message {
  width: 100%;
  height: 100%;
}
.interview .custom-prev {
  width: 5.2083333333vw;
  left: -7.8125vw;
  color: var(--blue) !important;
  position: absolute;
  top: 42%;
}
.interview .custom-prev::after {
  content: none;
}
.interview .custom-prev svg {
  aspect-ratio: 1;
  width: 5.2083333333vw;
  height: auto;
}
.interview .custom-prev svg path {
  stroke: var(--blue);
}
.interview .swiper-pagination {
  top: unset;
  bottom: 0;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--blue);
}

.btn_circle {
  position: relative;
  padding-right: 2.6041666667vw;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .btn_circle {
    margin-top: 20px;
  }
}
.btn_circle::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  width: 5.2083333333vw;
  height: 5.2083333333vw;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  background-color: var(--blue);
}
.btn_circle::after {
  content: "";
  display: block;
  width: 7.8125vw;
  height: 1px;
  z-index: 1;
  background-color: var(--title);
}
.btn_circle .txt {
  position: relative;
  z-index: 2;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--title);
}
.btn_circle svg {
  position: relative;
  z-index: 2;
}
.btn_circle:hover::before {
  background-color: var(--pink);
}

.f-blog {
  position: relative;
}
.f-blog .line-b {
  z-index: 1 !important;
}
.f-blog .line-b._01 {
  top: 3vw;
  left: 0;
}
.f-blog .line-b._02 {
  top: -6vw;
  left: 20vw;
}
.f-blog .line-b._03 {
  top: unset;
  bottom: 15vw;
  left: unset;
  right: 2vw;
}
.f-blog .sec__head {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-blog .sec__head {
    margin-bottom: 30px;
  }
}
.f-blog .sec__head .title01 .en,
.f-blog .sec__head .title01 .ja {
  text-align: center;
}
.f-blog .news-list03 {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-blog .news-list03 {
    margin-bottom: 30px;
  }
}
.f-blog .news-list03 li .date {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--txt-gray);
}
.f-blog .news-list03 li .news-img {
  background-color: var(--bg);
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .f-blog .news-list03 li .news-img {
    border-radius: 3px;
  }
}
.f-blog .news-list03 li .news-img a img {
  transform: scale(1);
  transition: all 0.3s;
}
.f-blog .news-list03 li .news-img a:hover img {
  transform: scale(1.05);
  transition: all 0.3s;
}
.f-blog .news-list03 li .news-cat a {
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .f-blog .news-list03 li .news-cat a {
    border-radius: 2px;
  }
}
.f-blog .news-list03 li .news-txt:hover {
  color: var(--pink);
  opacity: 1;
  transition: all 0.3s;
}
.f-blog .btn_circle {
  margin-left: auto;
}

.f-recruit {
  position: relative;
  padding-top: 20.8333333333vw;
  margin-top: -15.625vw;
}
.f-recruit::before {
  content: "";
  display: block;
  aspect-ratio: 800/198;
  -webkit-mask-image: url(../img/shape12.png);
          mask-image: url(../img/shape12.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--bg);
  width: 100%;
  height: auto;
  position: absolute;
  top: 0vw;
  left: 0vw;
  z-index: -1;
}
.f-recruit::after {
  content: "";
  width: 100%;
  height: calc(100% - 23.4375vw);
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--bg);
  z-index: -2;
}
.f-recruit .line {
  z-index: -1 !important;
}
.f-recruit .line._01 {
  top: 15vw;
  left: 8vw;
}
.f-recruit .line._02 {
  top: 20vw;
  left: -4vw;
}
.f-recruit .line._03 {
  bottom: -10vw;
  right: 17vw;
}
.f-recruit .line._04 {
  bottom: -2vw;
  right: 14vw;
}
.f-recruit .line-b {
  z-index: -1 !important;
}
.f-recruit .line-b._01 {
  top: 33vw;
  left: unset;
  right: 0;
}
.f-recruit .line-b._02 {
  top: 58vw;
  right: 10vw;
}
.f-recruit .line-b._03 {
  top: 80vw;
  left: 0;
}
.f-recruit .line-b._04 {
  top: unset;
  bottom: 10vw;
  left: unset;
  right: 22vw;
}
.f-recruit .sec__head {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .sec__head {
    margin-bottom: 30px;
  }
}
.f-recruit .sec__head .title01 .en,
.f-recruit .sec__head .title01 .ja {
  text-align: center;
}
.f-recruit .recruit {
  position: relative;
  z-index: 2;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .recruit {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .f-recruit .tab-panel-a .tab-group {
    flex-direction: column;
  }
}
.f-recruit .tab-panel-a .tab-group .tab {
  background-color: #ddd;
  color: var(--white);
  border-radius: 999px;
}
@media screen and (max-width: 600px) {
  .f-recruit .tab-panel-a .tab-group .tab {
    margin: auto;
    margin-bottom: 15px;
  }
}
.f-recruit .tab-panel-a .tab-group .tab.is-active, .f-recruit .tab-panel-a .tab-group .tab:hover {
  background-color: var(--blue);
  position: relative;
  z-index: 1;
}
.f-recruit .recruit-feed01 > li {
  background-color: var(--white);
  border-radius: 0;
  position: relative;
  box-shadow: -6px 6px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .recruit-feed01 > li {
    border-radius: 5px;
  }
}
.f-recruit .recruit-feed01 .recruit-img img {
  height: auto;
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .f-recruit .recruit-feed01 .recruit-img img {
    border-radius: 3px;
  }
}
.f-recruit .recruit-feed01 h3 {
  color: var(--title);
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--title);
}
.f-recruit .recruit-feed01 .time-cat {
  color: var(--txt);
}
.f-recruit .recruit-feed01 .recruit-sub.flex li {
  color: var(--txt);
}
.f-recruit .recruit-feed01 .recruit-sub.flex span {
  background-color: var(--title);
  color: var(--white);
  border-radius: 2px;
}

.history {
  width: 80%;
  margin: auto;
  margin-bottom: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .history {
    margin-bottom: 40px;
  }
}
.history .history__list {
  width: 80%;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .history .history__list {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .history .history__list {
    max-width: 500px;
  }
}
.history .history__list li {
  display: flex;
  margin-bottom: 0;
  padding-bottom: 16px;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .history .history__list li {
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .history .history__list li {
    padding-left: 10px;
  }
}
.history .history__list li::before, .history .history__list li::after {
  content: "";
  display: block;
  position: absolute;
  height: auto;
}
.history .history__list li::before {
  aspect-ratio: 1;
  background-color: var(--blue);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 10px;
  left: -20px;
  border-radius: 50%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .history .history__list li::before {
    top: 5px;
  }
}
.history .history__list li::after {
  position: absolute;
  top: 15px;
  left: -16px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #b4afad;
  z-index: 1;
}
.history .history__list li:last-of-type::after {
  content: none;
}
.history .history__list li .year {
  width: 20%;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .history .history__list li .year {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .history .history__list li .year {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.history .history__list li .txt {
  display: block;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .history .history__list li .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .history {
    margin-bottom: 40px;
  }
}

.sales {
  width: 80%;
  margin: auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .sales {
    margin-bottom: 40px;
  }
}
.sales img {
  display: block;
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .sales img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.bnr {
  padding: 100px 0px;
  background-color: var(--bg);
}
@media screen and (max-width: 1024px) {
  .bnr {
    padding: 50px 0px;
  }
}
.bnr .inner {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .bnr .inner {
    width: 80%;
  }
}
.bnr a {
  display: block;
  aspect-ratio: 3;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--title);
}
@media screen and (max-width: 1024px) {
  .bnr a {
    border-radius: 5px;
  }
}
.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-color: var(--white);
  color: var(--title);
  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-color: var(--pink);
}
.bnr a:hover {
  background-color: var(--pink);
  transition: all 0.3s;
}
.bnr a:hover .storker_link_arrow {
  background-color: var(--title);
}

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.header {
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 6;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 50px;
  }
}
.header.scrolled .logo {
  transform: translateY(-400%);
}
.header.scrolled .menu-header-menu-container {
  transform: translateY(-300%);
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .header.scrolled .menu-header-menu-container {
    transform: translateY(0%);
  }
}
.header .logo {
  max-width: unset;
  width: unset;
}
.header .logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .header .logo a {
    gap: 6px;
  }
}
@media screen and (max-width: 1024px) {
  .header .logo a {
    font-size: clamp(12px, 0.65rem, 0.65rem);
  }
}
@media screen and (max-width: 1024px) {
  .header .logo a {
    border-radius: 2px;
  }
}
@media screen and (max-width: 1200px) {
  .header .logo a {
    font-size: 10px;
  }
}
.header .logo a img {
  max-width: 260px;
}
@media screen and (max-width: 1200px) {
  .header .logo a img {
    max-width: 200px;
  }
}
@media screen and (max-width: 1100px) {
  .header .logo a img {
    max-width: 150px;
  }
}
@media screen and (max-width: 500px) {
  .header .logo a img {
    max-width: 200px;
  }
}
.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 {
  max-width: 1920px;
  width: 90%;
  margin: auto;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .header .header-box01 .header-box-inner01 {
    margin-top: unset;
  }
}
.header .headerNavArea {
  display: flex;
  height: 100%;
  width: unset;
  justify-content: end;
}
.header .bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.header .bg-overlay.open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.header .menu-header-menu-container {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .header .menu-header-menu-container {
    width: 100%;
  }
}
.header .header-menu {
  background-color: unset;
  justify-content: space-around;
  width: 100%;
  margin: auto;
}
.header .header-menu > li {
  flex: 1;
  padding: 0;
}
.header .header-menu > li:last-of-type {
  border-right: none;
}
.header .header-menu > li a {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--txt);
}
@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: 1400px) {
  .header .header-menu > li a {
    font-size: 1.3rem;
    padding: 0 10px;
  }
}
@media screen and (max-width: 1300px) {
  .header .header-menu > li a {
    font-size: 1.2rem;
  }
}
.header .header-menu > li a .en {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--gray);
}
@media screen and (max-width: 1024px) {
  .header .header-menu > li a .en {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.header .header-menu > li a .en:first-letter {
  color: var(--blue);
}

.header-sub-box {
  width: 120;
  z-index: 10;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 1024px) {
  .header-sub-box {
    top: unset;
    bottom: 0;
    width: 100%;
  }
}
.header-sub-box .g-nav-tel-pc a {
  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 {
  font-size: 1.6rem;
  font-weight: 900;
  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: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 30px;
  background-color: var(--pink_deep);
  border: solid 1px var(--pink_deep);
}
@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: 8px 15px;
  }
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a:hover {
  background-image: none;
  background-color: var(--white);
  color: var(--pink_deep);
}

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

body.home .header .logo, body.home04 .header .logo {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-right: 50px;
}
body.home .header .headerNavArea, body.home04 .header .headerNavArea {
  margin-top: -24px;
}
@media screen and (max-width: 1200px) {
  body.home .header .headerNavArea, body.home04 .header .headerNavArea {
    margin-top: -18px;
  }
}
body.home .header .sp-header .logo::before, body.home04 .header .sp-header .logo::before {
  width: 105%;
  height: 115px;
  left: -8px;
}
@media screen and (max-width: 360px) {
  body.home .header .sp-header .logo, body.home04 .header .sp-header .logo {
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 10px;
  }
  body.home .header .sp-header .logo::before, body.home04 .header .sp-header .logo::before {
    width: 100%;
    height: 115px;
    left: -8px;
  }
}
body.home .header .sp-header-inner, body.home04 .header .sp-header-inner {
  display: block;
}
body.home .header .sp-header-icon-list, body.home04 .header .sp-header-icon-list {
  margin-left: auto;
  margin-right: 88px;
}
@media screen and (max-width: 600px) {
  body.home .header .sp-header-icon-list, body.home04 .header .sp-header-icon-list {
    margin-right: 77px;
  }
}
@media screen and (max-width: 360px) {
  body.home .header .sp-header-icon-list, body.home04 .header .sp-header-icon-list {
    margin-right: 67px;
  }
}
body.home .header .mobile-btn #hamburger, body.home04 .header .mobile-btn #hamburger {
  top: 35px;
  right: 3.5%;
}
body.home .header .mobile-btn #hamburger.active, body.home04 .header .mobile-btn #hamburger.active {
  top: 0;
  right: 0;
}

.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;
  background-image: none;
  background-color: var(--pink);
}

.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: var(--pink_deep);
  border: solid 2px var(--pink_deep);
  color: var(--white);
  border-radius: 0;
  text-transform: uppercase;
  position: relative;
  border-radius: 10px;
}
.mobile-sub-nav li a::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/icon_arrow-white.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 10px;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  z-index: 1;
}
.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(--pink);
  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(--pink);
  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 {
  width: 120px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease-out;
  cursor: pointer;
  position: relative;
  z-index: 11;
}
.pc-btn::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-color: var(--pink);
  width: 70px;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  border-radius: 50%;
}
.pc-btn .pc-btn-txt {
  position: relative;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .pc-btn .pc-btn-txt {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.pc-btn.scrolled {
  transform: translateX(0);
}
@media screen and (max-width: 1024px) {
  .pc-btn.scrolled {
    display: none;
  }
}
.pc-btn.active {
  position: fixed;
  top: 47px;
  right: 0px;
}

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

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

.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 9999;
  animation: byeShutter 2s forwards;
}
.shutter::before, .shutter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.shutter::before {
  background: var(--pink);
  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);
  }
}
.single,
.page,
.archive {
  position: relative;
}
.single::before,
.page::before,
.archive::before {
  content: "";
  display: block;
  aspect-ratio: 680/485;
  -webkit-mask-image: url(../img/shape07.png);
          mask-image: url(../img/shape07.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: rgba(207, 205, 209, 0.5);
  width: 75%;
  height: auto;
  position: absolute;
  top: -26.0416666667vw;
  left: -15.625vw;
  z-index: -1;
}
.single.single-interview-post::before, .single.post-type-archive-interview-post::before,
.page.single-interview-post::before,
.page.post-type-archive-interview-post::before,
.archive.single-interview-post::before,
.archive.post-type-archive-interview-post::before {
  background-color: rgba(var(--blue_rgb), 0.5);
}

.page__head {
  margin-top: 100px;
  display: flex;
  position: relative;
  padding-left: 10%;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .page__head {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .page__head {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .page__head {
    padding-bottom: 40px;
  }
}
.page__head .title02 {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.page__head .title02 .en {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  display: block;
  font-size: 5.2083333333vw;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .page__head .title02 .en {
    margin-bottom: 8px;
  }
}
.page__head .title02 .ja {
  text-align: left;
  margin-left: 0;
}
.page__head .title02 .ja .txt {
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .page__head #breadcrumbs {
    margin-left: 5%;
    width: 95%;
  }
}

#breadcrumbs {
  width: 120px;
  position: absolute;
  top: -50px;
  left: -10px;
}
@media screen and (max-width: 1024px) {
  #breadcrumbs {
    width: 100%;
    position: unset;
    margin-bottom: 0;
  }
}
#breadcrumbs ul {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transform: rotate(90deg);
  transform-origin: left;
  flex-wrap: nowrap;
  padding-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  #breadcrumbs ul {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 1024px) {
  #breadcrumbs ul {
    transform: unset;
    width: 100%;
  }
}
#breadcrumbs ul li {
  display: block;
  white-space: nowrap;
  color: var(--txt-gray);
}
@media screen and (max-width: 1024px) {
  #breadcrumbs ul li {
    display: inline-block;
  }
}
#breadcrumbs ul li a {
  display: block;
  white-space: nowrap;
  color: var(--txt-gray);
}

.sub__head {
  margin-top: 100px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .sub__head {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .sub__head {
    flex-direction: column;
  }
}
.sub__head .titleArea {
  display: flex;
  align-items: center;
  width: 90%;
  height: 25vw;
  border-radius: 10px;
  overflow: hidden;
  padding-left: 2%;
  margin-left: 5%;
  margin-bottom: 60px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .sub__head .titleArea {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .sub__head .titleArea {
    margin-bottom: 30px;
  }
}
.sub__head .titleArea::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .sub__head .titleArea {
    aspect-ratio: 3;
    width: 95%;
    margin-left: 2.5%;
  }
}
.sub__head .titleArea .title02 {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.sub__head .titleArea .title02 .en {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  display: block;
  font-size: 5.2083333333vw;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .sub__head .titleArea .title02 .en {
    margin-bottom: 8px;
  }
}
.sub__head .titleArea .title02 .ja {
  text-align: left;
  margin-left: 0;
}
.sub__head .titleArea .title02 .ja .txt {
  color: var(--white);
}

.sub-header-title {
  position: relative;
  z-index: 2;
}
.sub-header-txt {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  background-color: var(--white);
  color: var(--pink);
}
@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;
  }
}

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

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

.contact-band {
  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: #2d2c2c;
  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 img {
  transform: scale(1.05);
  transition: all 0.3s;
}
.contact-band a:hover .btn.btn01 {
  background-color: var(--white);
}
.contact-band a:hover .btn.btn01 .btn_txt {
  color: var(--pink_deep);
}
.contact-band a:hover .btn.btn01 .btn_arrow svg path {
  fill: var(--pink_deep);
}
.contact-band a:hover .btn.btn01 .btn_arrow::after {
  background: var(--pink_deep);
}
.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: 30%;
}
@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;
  clip-path: inset(0 100% 0 0);
  transition: 2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: 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 {
  clip-path: inset(0);
}
.contact-band-inner .titleArea .btn.btn01 {
  margin: auto;
}
.contact-band-inner .content {
  width: 70%;
}
@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-inner .content .cf-cb-txt {
  font-size: clamp(16px, 3.125vw, 6rem);
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .contact-band-inner .content .cf-cb-txt {
    font-size: clamp(12px, 5.859375vw, 3rem);
  }
}
@media screen and (max-width: 600px) {
  .contact-band-inner .content .cf-cb-txt {
    font-size: 5.5vw;
  }
}
.contact-band .btn.btn01 {
  position: relative;
  max-width: 400px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  border: solid 1px var(--white);
  border-radius: 999px;
}
@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 {
  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(--pink);
  background-color: var(--white);
  color: var(--pink);
}
.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(--pink);
}
.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(--pink);
}
.contact-band .cf-tel-number:hover .contact-band-tel-icon path:nth-of-type(2) {
  fill: var(--pink);
}

.overview .inner {
  width: 85%;
}
.overview .table-content {
  padding: 20px 20px;
  background-color: var(--white);
  max-width: 1000px;
  margin: auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .overview .table-content {
    padding: 10px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .overview .table-content {
    max-width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .overview .table-content {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .overview .map iframe {
    aspect-ratio: 3/2;
    height: auto;
  }
}

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

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

.sidebar h3 {
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .sidebar h3 {
    border-radius: 2px;
  }
}

.post-categories li a {
  background-color: var(--blue);
  border: solid 1px var(--blue);
  color: var(--white);
  border-radius: 4px;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .post-categories li a {
    border-radius: 2px;
  }
}
.post-categories li a:hover {
  background-color: var(--blue);
  color: var(--white);
}
.post-categories li a.news {
  background-color: var(--yellow);
  border: solid 1px var(--yellow);
}
.post-categories li a.news:hover {
  background-color: #fff;
  color: var(--yellow);
}
.post-categories li a.lunch {
  background-color: var(--green);
  border: solid 1px var(--green);
}
.post-categories li a.lunch:hover {
  background-color: #fff;
  color: var(--green);
}
.post-categories li a.childcare {
  background-color: var(--blue);
  border: solid 1px var(--blue);
}
.post-categories li a.childcare:hover {
  background-color: #fff;
  color: var(--blue);
}
.post-categories li a.column {
  background-color: var(--pink);
  border: solid 1px var(--pink);
}
.post-categories li a.column:hover {
  background-color: #fff;
  color: var(--pink);
}

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

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

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

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

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

._opcity70 {
  opacity: 70%;
}

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

.recruit-single .inner {
  width: 85%;
  padding: 80px 40px;
}
@media screen and (max-width: 1024px) {
  .recruit-single .inner {
    padding: 40px 20px;
  }
}
.recruit-single-time {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--txt-gray);
}
.recruit-single-title {
  font-size: 2.4rem;
  font-weight: 700;
  background-color: var(--title);
  color: var(--white);
  margin-bottom: 80px;
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .recruit-single-title {
    font-size: clamp(12px, 1.2rem, 1.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .recruit-single-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-single-title {
    border-radius: 3px;
  }
}
.recruit-single-img {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .recruit-single-img {
    margin-bottom: 30px;
  }
}
.recruit-single .recruit-single-content p {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .recruit-single .recruit-single-content p {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.recruit-single .job-table {
  border: none;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .recruit-single .job-table {
    margin-bottom: 60px;
  }
}
.recruit-single .job-table th {
  font-size: 1.8rem;
  text-align: left !important;
  background-color: unset;
  color: var(--title);
  border: none;
}
@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;
  background-color: unset;
  border: none;
}
@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 .form__wrap {
  background-color: var(--white);
  padding: 80px 40px;
}
@media screen and (max-width: 1024px) {
  .recruit-single .form__wrap {
    padding: 40px 20px;
  }
}

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

@media screen and (max-width: 1024px) {
  .post-type-archive .title02 .en {
    font-size: 8vw;
  }
}
.post-type-archive main {
  padding: 80px 0px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive main {
    padding: 40px 0px;
  }
}
.post-type-archive .interview__list {
  flex-direction: row;
}
.post-type-archive .interview__item {
  width: 47%;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .post-type-archive .interview__item {
    margin: unset;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .post-type-archive .interview .name {
    flex-direction: column;
    font-size: 4vw;
    flex-grow: 1;
  }
}
.post-type-archive .tag__list {
  display: flex;
  gap: 10px;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .post-type-archive .tag__list {
    gap: 5px;
  }
}
@media screen and (max-width: 360px) {
  .post-type-archive .tag__list {
    flex-direction: column;
  }
}
.post-type-archive .tag__list li {
  width: -moz-fit-content;
  width: fit-content;
}
.post-type-archive .tag__list li .tag {
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px #b7b7b7;
  border-radius: 999px;
  padding: 6px 16px;
  color: #b7b7b7;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive .tag__list li .tag {
    padding: 3px 8px;
  }
}
@media screen and (max-width: 1024px) {
  .post-type-archive .tag__list li .tag {
    font-size: 10px !important;
  }
}
.post-type-archive .tag__list li .tag::before {
  content: unset !important;
}
.post-type-archive .name a {
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.15em;
  color: var(--txt);
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1024px) {
  .post-type-archive .name a {
    font-size: 3vw;
  }
}

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: var(--dark_gray);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-bottom: 60px;
  }
}
.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-address-title {
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  display: flex;
  flex-direction: column;
  padding: 20px 0px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .footer-address-title {
    padding: 10px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-address-title {
    margin-bottom: 15px;
  }
}
.footer-address-title .en {
  font-size: 3rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .footer-address-title .en {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
.footer-address-title .ja {
  color: var(--white);
  font-weight: 700;
}
.footer-menu li a {
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .footer-menu li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .footer-menu li a {
    border-bottom: dotted 1px #ddd;
  }
}
.footer-menu li a:hover {
  color: var(--pink_deep);
  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(--pink);
  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(--pink);
  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(--pink);
}
.footer__bnr:hover .note {
  transform: rotate(15deg);
  transition: all 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#booking-package_inputFormPanel .title_in_form {
  padding-bottom: 30px !important;
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .title_in_form {
    padding-bottom: 15px !important;
  }
}
#booking-package_inputFormPanel .row {
  display: flex;
  justify-content: space-between;
  padding: 0 !important;
}
@media screen and (max-width: 1024px) {
  #booking-package_inputFormPanel .row {
    flex-direction: column;
  }
}
#booking-package_inputFormPanel .row.total_amount {
  display: none !important;
}
#booking-package_inputFormPanel .name {
  width: 40%;
  color: var(--pink);
  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(--pink) !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(--pink);
  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(--pink);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 300px;
  margin: 0 auto;
  border: 1px solid var(--pink);
  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(--pink);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 300px;
  margin: 0 auto;
  border: 1px solid var(--pink);
  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(--pink);
}
.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(--pink);
  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(--pink);
}
.contact .bnr_tel .cf-tel-number svg path:nth-of-type(2) {
  fill: var(--pink);
}

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

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

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

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

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

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

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