@charset "UTF-8";
@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;
  }
}
.para {
  width: 100%;
  aspect-ratio: 2803/950;
  background: transparent;
  z-index: 2;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-attachment: fixed;
  background-color: #fff !important;
}
.para::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: #000;
  opacity: 0.4;
}
@media screen and (max-width: 1024px) {
  .para {
    background-attachment: unset;
  }
}
.para._01 {
  background-image: url(../img/para01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.para._02 {
  background-image: url(../img/para02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.para._03 {
  background-image: url(../img/para03.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

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

.title01 {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .title01 {
    margin-bottom: 40px;
  }
}
.title01 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .title01 {
    gap: 5px;
  }
}
.title01 {
  position: relative;
}
.title01 .en {
  display: block;
  text-align: center;
  z-index: 2;
}
.title01 .en span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(20px, 2.6041666667vw, 5rem);
}
@media screen and (max-width: 1024px) {
  .title01 .en span {
    font-size: clamp(10px, 4.8828125vw, 2.5rem);
  }
}
.title01 .en span {
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--title);
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.title01 .ja {
  opacity: 0;
}
.title01 .ja span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .title01 .ja span {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.title01 .ja span {
  color: var(--title);
}
.title01.is-show::before {
  transform: scaleX(1);
  transition: all 0.5s ease-out;
  transition-delay: 0.6s;
}
.title01.is-show .ja {
  animation: fadeUpAnime 0.9s ease-out forwards;
}
.title01.is-show .en span {
  opacity: 1;
  transform: translateY(0);
}

.title02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .title02 {
    gap: 5px;
  }
}
.title02 {
  text-transform: capitalize;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title02 {
    margin-bottom: 30px;
  }
}
.title02::before, .title02::after {
  content: "";
  display: block;
  width: 60px;
}
@media screen and (max-width: 1024px) {
  .title02::before, .title02::after {
    width: 30px;
  }
}
.title02::before, .title02::after {
  height: 1px;
  background: var(--main);
  transform: scaleX(0);
}
.title02::before {
  transform-origin: right;
}
.title02::after {
  transform-origin: left;
}
.title02 .ja {
  font-size: clamp(20px, 2.34375vw, 4.5rem);
}
@media screen and (max-width: 1024px) {
  .title02 .ja {
    font-size: clamp(10px, 4.39453125vw, 2.25rem);
  }
}
.title02 .ja {
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--main);
  opacity: 0;
}
.title02.is-show::before, .title02.is-show::after {
  transform: scaleX(1);
  transition: all 0.5s ease-out;
  transition-delay: 1s;
}
.title02.is-show .ja {
  animation: fadeUpAnime 0.9s ease-out forwards;
  animation-delay: 0.4s;
}

.title03 {
  background-color: var(--main);
  padding: 10px 20px;
}
@media screen and (max-width: 1024px) {
  .title03 {
    padding: 5px 10px;
  }
}
.title03 {
  color: var(--white);
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .title03 {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.title03 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .title03 {
    margin-bottom: 12.5px;
  }
}
.title03.is-show::before {
  animation: 0.5s bgLRextendAnime forwards;
  animation-delay: 0.1s;
}
.title03.is-show .ja {
  opacity: 1;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.5s;
}

.title04 {
  border-left: 6px solid var(--main);
  border-bottom: 1px solid var(--main);
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .title04 {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.title04 {
  font-weight: 700;
  color: var(--main);
  padding: 0px 20px;
}
@media screen and (max-width: 1024px) {
  .title04 {
    padding: 0px 10px;
  }
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}
.bg_title {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .bg_title {
    margin-top: 15px;
  }
}
.bg_title {
  z-index: 1;
}
.bg_title span {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: clamp(12px, 4.1666666667vw, 8rem);
}
@media screen and (max-width: 1024px) {
  .bg_title span {
    font-size: clamp(10px, 7.8125vw, 4rem);
  }
}
.bg_title span {
  color: #ddd;
  text-transform: capitalize;
}
.bg_title.is-show span {
  opacity: 1;
  transform: translateY(0);
}
.bg_title.is-show span:nth-of-type(2) {
  transition-delay: 6s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(3) {
  transition-delay: 9s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(4) {
  transition-delay: 12s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(5) {
  transition-delay: 15s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(6) {
  transition-delay: 18s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(7) {
  transition-delay: 21s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(8) {
  transition-delay: 24s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(9) {
  transition-delay: 27s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(10) {
  transition-delay: 30s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(11) {
  transition-delay: 33s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(12) {
  transition-delay: 36s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(13) {
  transition-delay: 39s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(14) {
  transition-delay: 42s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(15) {
  transition-delay: 45s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(16) {
  transition-delay: 48s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(17) {
  transition-delay: 51s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(18) {
  transition-delay: 54s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(19) {
  transition-delay: 57s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(20) {
  transition-delay: 60s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(21) {
  transition-delay: 63s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(22) {
  transition-delay: 66s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(23) {
  transition-delay: 69s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(24) {
  transition-delay: 72s;
  transition: all 1s;
}
.bg_title.is-show span:nth-of-type(25) {
  transition-delay: 75s;
  transition: all 1s;
}

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

.btn02 {
  display: block;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .btn02 {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.btn02 {
  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;
}
@media screen and (max-width: 1024px) {
  .btn02 {
    padding: 5px 20px;
  }
}
.btn02 {
  background-color: var(--main);
  border-radius: 999px;
  border: solid 1px var(--main);
}
.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;
}
@media screen and (max-width: 1024px) {
  .btn02::before {
    width: 10px;
  }
}
.btn02::before {
  height: 20px;
}
@media screen and (max-width: 1024px) {
  .btn02::before {
    height: 10px;
  }
}
.btn02::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}
.btn02:hover {
  color: var(--main);
  background-color: var(--white);
}
.btn02:hover::before {
  background-image: url(../img/icon-arrow-main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateX(5px);
  transition: all 0.3s;
}

.link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .link {
    gap: 8px;
  }
}
.link {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: auto;
  letter-spacing: 0.15em;
}
.link::after {
  content: "";
  display: block;
  width: 10px;
}
@media screen and (max-width: 1024px) {
  .link::after {
    width: 5px;
  }
}
.link::after {
  height: 20px;
}
@media screen and (max-width: 1024px) {
  .link::after {
    height: 10px;
  }
}
.link::after {
  -webkit-mask-image: url(../img/icon_arrow.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_arrow.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: center center;
  background-color: var(--main);
}

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

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

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

.tablepress > :where(thead) + tbody > :where(:not(.child)) > *,
.tablepress > tbody > * ~ :where(:not(.child)) > *,
.tablepress > tfoot > :where(:first-child) > * {
  border-top: none !important;
}

.tablepress {
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box !important;
  margin-bottom: 60px !important;
  border: none !important;
}
.tablepress thead th {
  background-color: var(--main) !important;
  border-right: 1px solid #ddd !important;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .tablepress thead th {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
@media screen and (max-width: 1024px) {
  .tablepress thead th {
    white-space: nowrap;
    padding: 10px;
  }
}
.tablepress tbody tr:last-of-type td {
  border-bottom: none !important;
}
.tablepress tbody td {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .tablepress tbody td {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.tablepress tbody td {
  background-color: none;
}
@media screen and (max-width: 1024px) {
  .tablepress tbody td {
    padding: 10px;
  }
}
.tablepress tbody td.column-1 {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .tablepress tbody td.column-1 {
    width: 100%;
    margin-bottom: 20px;
  }
}
.tablepress tbody td.column-1 {
  border-bottom: solid 1px #ddd;
  font-weight: 600;
  letter-spacing: 0.15em;
  background-color: unset !important;
}
@media screen and (max-width: 1024px) {
  .tablepress tbody td.column-1 {
    display: block;
    border-bottom: none;
    margin-bottom: 0;
  }
}
.tablepress tbody td.column-2 {
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .tablepress tbody td.column-2 {
    width: 100%;
    margin-bottom: 20px;
  }
}
.tablepress tbody td.column-2 {
  border-bottom: solid 1px #ddd;
}
@media screen and (max-width: 1024px) {
  .tablepress tbody td.column-2 {
    display: block;
    margin-bottom: 0;
  }
}
.tablepress tbody td.column-2 a {
  color: var(--txt);
}
.tablepress tbody td.column-2 a:hover {
  color: var(--main);
}
.tablepress.tablepress-id-8 th, .tablepress.tablepress-id-9 th, .tablepress.tablepress-id-10 th, .tablepress.tablepress-id-11 th, .tablepress.tablepress-id-12 th, .tablepress.tablepress-id-13 th, .tablepress.tablepress-id-14 th, .tablepress.tablepress-id-15 th, .tablepress.tablepress-id-16 th, .tablepress.tablepress-id-17 th, .tablepress.tablepress-id-19 th, .tablepress.tablepress-id-20 th, .tablepress.tablepress-id-23 th, .tablepress.tablepress-id-24 th, .tablepress.tablepress-id-25 th {
  padding: 10px;
  border-bottom: 1px solid #ddd !important;
}
.tablepress.tablepress-id-8 tbody, .tablepress.tablepress-id-9 tbody, .tablepress.tablepress-id-10 tbody, .tablepress.tablepress-id-11 tbody, .tablepress.tablepress-id-12 tbody, .tablepress.tablepress-id-13 tbody, .tablepress.tablepress-id-14 tbody, .tablepress.tablepress-id-15 tbody, .tablepress.tablepress-id-16 tbody, .tablepress.tablepress-id-17 tbody, .tablepress.tablepress-id-19 tbody, .tablepress.tablepress-id-20 tbody, .tablepress.tablepress-id-23 tbody, .tablepress.tablepress-id-24 tbody, .tablepress.tablepress-id-25 tbody {
  border: 1px solid #ddd;
}
.tablepress.tablepress-id-8 tbody td, .tablepress.tablepress-id-9 tbody td, .tablepress.tablepress-id-10 tbody td, .tablepress.tablepress-id-11 tbody td, .tablepress.tablepress-id-12 tbody td, .tablepress.tablepress-id-13 tbody td, .tablepress.tablepress-id-14 tbody td, .tablepress.tablepress-id-15 tbody td, .tablepress.tablepress-id-16 tbody td, .tablepress.tablepress-id-17 tbody td, .tablepress.tablepress-id-19 tbody td, .tablepress.tablepress-id-20 tbody td, .tablepress.tablepress-id-23 tbody td, .tablepress.tablepress-id-24 tbody td, .tablepress.tablepress-id-25 tbody td {
  border-bottom: 1px solid #ddd !important;
  border-right: 1px solid #ddd !important;
}
.tablepress.tablepress-id-8 tbody td.column-4, .tablepress.tablepress-id-9 tbody td.column-4, .tablepress.tablepress-id-10 tbody td.column-4, .tablepress.tablepress-id-11 tbody td.column-4, .tablepress.tablepress-id-12 tbody td.column-4, .tablepress.tablepress-id-13 tbody td.column-4, .tablepress.tablepress-id-14 tbody td.column-4, .tablepress.tablepress-id-15 tbody td.column-4, .tablepress.tablepress-id-16 tbody td.column-4, .tablepress.tablepress-id-17 tbody td.column-4, .tablepress.tablepress-id-19 tbody td.column-4, .tablepress.tablepress-id-20 tbody td.column-4, .tablepress.tablepress-id-23 tbody td.column-4, .tablepress.tablepress-id-24 tbody td.column-4, .tablepress.tablepress-id-25 tbody td.column-4 {
  border-right: none !important;
}
.tablepress.tablepress-id-8 tbody td span, .tablepress.tablepress-id-9 tbody td span, .tablepress.tablepress-id-10 tbody td span, .tablepress.tablepress-id-11 tbody td span, .tablepress.tablepress-id-12 tbody td span, .tablepress.tablepress-id-13 tbody td span, .tablepress.tablepress-id-14 tbody td span, .tablepress.tablepress-id-15 tbody td span, .tablepress.tablepress-id-16 tbody td span, .tablepress.tablepress-id-17 tbody td span, .tablepress.tablepress-id-19 tbody td span, .tablepress.tablepress-id-20 tbody td span, .tablepress.tablepress-id-23 tbody td span, .tablepress.tablepress-id-24 tbody td span, .tablepress.tablepress-id-25 tbody td span {
  display: inline-block;
  font-size: 85%;
}
.tablepress.tablepress-id-8 th.column-1,
.tablepress.tablepress-id-8 td.column-1, .tablepress.tablepress-id-9 th.column-1,
.tablepress.tablepress-id-9 td.column-1, .tablepress.tablepress-id-10 th.column-1,
.tablepress.tablepress-id-10 td.column-1, .tablepress.tablepress-id-11 th.column-1,
.tablepress.tablepress-id-11 td.column-1, .tablepress.tablepress-id-12 th.column-1,
.tablepress.tablepress-id-12 td.column-1, .tablepress.tablepress-id-13 th.column-1,
.tablepress.tablepress-id-13 td.column-1, .tablepress.tablepress-id-14 th.column-1,
.tablepress.tablepress-id-14 td.column-1, .tablepress.tablepress-id-15 th.column-1,
.tablepress.tablepress-id-15 td.column-1, .tablepress.tablepress-id-19 th.column-1,
.tablepress.tablepress-id-19 td.column-1, .tablepress.tablepress-id-20 th.column-1,
.tablepress.tablepress-id-20 td.column-1 {
  width: 50% !important;
  background-color: var(--main-light03) !important;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-8 th.column-1,
  .tablepress.tablepress-id-8 td.column-1, .tablepress.tablepress-id-9 th.column-1,
  .tablepress.tablepress-id-9 td.column-1, .tablepress.tablepress-id-10 th.column-1,
  .tablepress.tablepress-id-10 td.column-1, .tablepress.tablepress-id-11 th.column-1,
  .tablepress.tablepress-id-11 td.column-1, .tablepress.tablepress-id-12 th.column-1,
  .tablepress.tablepress-id-12 td.column-1, .tablepress.tablepress-id-13 th.column-1,
  .tablepress.tablepress-id-13 td.column-1, .tablepress.tablepress-id-14 th.column-1,
  .tablepress.tablepress-id-14 td.column-1, .tablepress.tablepress-id-15 th.column-1,
  .tablepress.tablepress-id-15 td.column-1, .tablepress.tablepress-id-19 th.column-1,
  .tablepress.tablepress-id-19 td.column-1, .tablepress.tablepress-id-20 th.column-1,
  .tablepress.tablepress-id-20 td.column-1 {
    display: table-cell;
  }
}
.tablepress.tablepress-id-8 th.column-2,
.tablepress.tablepress-id-8 td.column-2, .tablepress.tablepress-id-9 th.column-2,
.tablepress.tablepress-id-9 td.column-2, .tablepress.tablepress-id-10 th.column-2,
.tablepress.tablepress-id-10 td.column-2, .tablepress.tablepress-id-11 th.column-2,
.tablepress.tablepress-id-11 td.column-2, .tablepress.tablepress-id-12 th.column-2,
.tablepress.tablepress-id-12 td.column-2, .tablepress.tablepress-id-13 th.column-2,
.tablepress.tablepress-id-13 td.column-2, .tablepress.tablepress-id-14 th.column-2,
.tablepress.tablepress-id-14 td.column-2, .tablepress.tablepress-id-15 th.column-2,
.tablepress.tablepress-id-15 td.column-2, .tablepress.tablepress-id-19 th.column-2,
.tablepress.tablepress-id-19 td.column-2, .tablepress.tablepress-id-20 th.column-2,
.tablepress.tablepress-id-20 td.column-2 {
  width: 20% !important;
  text-align: center !important;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-8 th.column-2,
  .tablepress.tablepress-id-8 td.column-2, .tablepress.tablepress-id-9 th.column-2,
  .tablepress.tablepress-id-9 td.column-2, .tablepress.tablepress-id-10 th.column-2,
  .tablepress.tablepress-id-10 td.column-2, .tablepress.tablepress-id-11 th.column-2,
  .tablepress.tablepress-id-11 td.column-2, .tablepress.tablepress-id-12 th.column-2,
  .tablepress.tablepress-id-12 td.column-2, .tablepress.tablepress-id-13 th.column-2,
  .tablepress.tablepress-id-13 td.column-2, .tablepress.tablepress-id-14 th.column-2,
  .tablepress.tablepress-id-14 td.column-2, .tablepress.tablepress-id-15 th.column-2,
  .tablepress.tablepress-id-15 td.column-2, .tablepress.tablepress-id-19 th.column-2,
  .tablepress.tablepress-id-19 td.column-2, .tablepress.tablepress-id-20 th.column-2,
  .tablepress.tablepress-id-20 td.column-2 {
    display: table-cell;
  }
}
.tablepress.tablepress-id-8 th.column-3,
.tablepress.tablepress-id-8 td.column-3, .tablepress.tablepress-id-9 th.column-3,
.tablepress.tablepress-id-9 td.column-3, .tablepress.tablepress-id-10 th.column-3,
.tablepress.tablepress-id-10 td.column-3, .tablepress.tablepress-id-11 th.column-3,
.tablepress.tablepress-id-11 td.column-3, .tablepress.tablepress-id-12 th.column-3,
.tablepress.tablepress-id-12 td.column-3, .tablepress.tablepress-id-13 th.column-3,
.tablepress.tablepress-id-13 td.column-3, .tablepress.tablepress-id-14 th.column-3,
.tablepress.tablepress-id-14 td.column-3, .tablepress.tablepress-id-15 th.column-3,
.tablepress.tablepress-id-15 td.column-3, .tablepress.tablepress-id-19 th.column-3,
.tablepress.tablepress-id-19 td.column-3, .tablepress.tablepress-id-20 th.column-3,
.tablepress.tablepress-id-20 td.column-3 {
  width: 30% !important;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-8 th.column-3,
  .tablepress.tablepress-id-8 td.column-3, .tablepress.tablepress-id-9 th.column-3,
  .tablepress.tablepress-id-9 td.column-3, .tablepress.tablepress-id-10 th.column-3,
  .tablepress.tablepress-id-10 td.column-3, .tablepress.tablepress-id-11 th.column-3,
  .tablepress.tablepress-id-11 td.column-3, .tablepress.tablepress-id-12 th.column-3,
  .tablepress.tablepress-id-12 td.column-3, .tablepress.tablepress-id-13 th.column-3,
  .tablepress.tablepress-id-13 td.column-3, .tablepress.tablepress-id-14 th.column-3,
  .tablepress.tablepress-id-14 td.column-3, .tablepress.tablepress-id-15 th.column-3,
  .tablepress.tablepress-id-15 td.column-3, .tablepress.tablepress-id-19 th.column-3,
  .tablepress.tablepress-id-19 td.column-3, .tablepress.tablepress-id-20 th.column-3,
  .tablepress.tablepress-id-20 td.column-3 {
    display: table-cell;
  }
}
.tablepress.tablepress-id-16 th.column-1,
.tablepress.tablepress-id-16 td.column-1, .tablepress.tablepress-id-17 th.column-1,
.tablepress.tablepress-id-17 td.column-1, .tablepress.tablepress-id-23 th.column-1,
.tablepress.tablepress-id-23 td.column-1 {
  width: 70% !important;
  vertical-align: middle;
  background-color: var(--main-light03) !important;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-16 th.column-1,
  .tablepress.tablepress-id-16 td.column-1, .tablepress.tablepress-id-17 th.column-1,
  .tablepress.tablepress-id-17 td.column-1, .tablepress.tablepress-id-23 th.column-1,
  .tablepress.tablepress-id-23 td.column-1 {
    display: table-cell;
  }
}
.tablepress.tablepress-id-16 th.column-2,
.tablepress.tablepress-id-16 td.column-2, .tablepress.tablepress-id-17 th.column-2,
.tablepress.tablepress-id-17 td.column-2, .tablepress.tablepress-id-23 th.column-2,
.tablepress.tablepress-id-23 td.column-2 {
  width: 30% !important;
  vertical-align: middle;
  text-align: center !important;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-16 th.column-2,
  .tablepress.tablepress-id-16 td.column-2, .tablepress.tablepress-id-17 th.column-2,
  .tablepress.tablepress-id-17 td.column-2, .tablepress.tablepress-id-23 th.column-2,
  .tablepress.tablepress-id-23 td.column-2 {
    display: table-cell;
  }
}
.tablepress.tablepress-id-25 {
  margin-bottom: 20px !important;
}
.tablepress.tablepress-id-25 th {
  background-color: var(--main) !important;
}
.tablepress.tablepress-id-25 td.column-1 {
  width: 30% !important;
  vertical-align: middle;
  background-color: var(--main-light03) !important;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-25 td.column-1 {
    display: table-cell;
  }
}
.tablepress.tablepress-id-25 td.column-2, .tablepress.tablepress-id-25 td.column-3, .tablepress.tablepress-id-25 td.column-4, .tablepress.tablepress-id-25 td.column-5, .tablepress.tablepress-id-25 td.column-6, .tablepress.tablepress-id-25 td.column-7, .tablepress.tablepress-id-25 td.column-8 {
  width: 10% !important;
  vertical-align: middle;
  text-align: center !important;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-25 td.column-2, .tablepress.tablepress-id-25 td.column-3, .tablepress.tablepress-id-25 td.column-4, .tablepress.tablepress-id-25 td.column-5, .tablepress.tablepress-id-25 td.column-6, .tablepress.tablepress-id-25 td.column-7, .tablepress.tablepress-id-25 td.column-8 {
    display: table-cell;
  }
}
.tablepress.tablepress-id-8 th.column-1,
.tablepress.tablepress-id-8 td.column-1 {
  background-color: var(--main-light03) !important;
}
.tablepress.tablepress-id-9 th.column-1,
.tablepress.tablepress-id-9 td.column-1, .tablepress.tablepress-id-10 th.column-1,
.tablepress.tablepress-id-10 td.column-1, .tablepress.tablepress-id-11 th.column-1,
.tablepress.tablepress-id-11 td.column-1, .tablepress.tablepress-id-12 th.column-1,
.tablepress.tablepress-id-12 td.column-1, .tablepress.tablepress-id-13 th.column-1,
.tablepress.tablepress-id-13 td.column-1 {
  background-color: var(--white) !important;
  background-color: var(--main-light03) !important;
}
.tablepress.tablepress-id-9 th.column-2,
.tablepress.tablepress-id-9 td.column-2, .tablepress.tablepress-id-10 th.column-2,
.tablepress.tablepress-id-10 td.column-2, .tablepress.tablepress-id-11 th.column-2,
.tablepress.tablepress-id-11 td.column-2, .tablepress.tablepress-id-12 th.column-2,
.tablepress.tablepress-id-12 td.column-2, .tablepress.tablepress-id-13 th.column-2,
.tablepress.tablepress-id-13 td.column-2 {
  font-size: 14px !important;
}
@media screen and (max-width: 1024px) {
  .tablepress.tablepress-id-9 th.column-2,
  .tablepress.tablepress-id-9 td.column-2, .tablepress.tablepress-id-10 th.column-2,
  .tablepress.tablepress-id-10 td.column-2, .tablepress.tablepress-id-11 th.column-2,
  .tablepress.tablepress-id-11 td.column-2, .tablepress.tablepress-id-12 th.column-2,
  .tablepress.tablepress-id-12 td.column-2, .tablepress.tablepress-id-13 th.column-2,
  .tablepress.tablepress-id-13 td.column-2 {
    font-size: 10px !important;
  }
}
.tablepress.tablepress-id-21 th.column-1,
.tablepress.tablepress-id-21 td.column-1, .tablepress.tablepress-id-22 th.column-1,
.tablepress.tablepress-id-22 td.column-1, .tablepress.tablepress-id-24 th.column-1,
.tablepress.tablepress-id-24 td.column-1 {
  color: var(--txt-Color) !important;
}

@media screen and (max-width: 1024px) {
  .tableArea {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.tablepress-table-name.tablepress-table-name-id-9, .tablepress-table-name.tablepress-table-name-id-10, .tablepress-table-name.tablepress-table-name-id-11, .tablepress-table-name.tablepress-table-name-id-12, .tablepress-table-name.tablepress-table-name-id-13, .tablepress-table-name.tablepress-table-name-id-14, .tablepress-table-name.tablepress-table-name-id-15, .tablepress-table-name.tablepress-table-name-id-16, .tablepress-table-name.tablepress-table-name-id-17, .tablepress-table-name.tablepress-table-name-id-19, .tablepress-table-name.tablepress-table-name-id-20, .tablepress-table-name.tablepress-table-name-id-21, .tablepress-table-name.tablepress-table-name-id-22, .tablepress-table-name.tablepress-table-name-id-23, .tablepress-table-name.tablepress-table-name-id-24, .tablepress-table-name.tablepress-table-name-id-25 {
  border-left: 5px solid var(--main);
  border-bottom: 1px solid var(--main);
  background-color: var(--white);
  color: var(--main);
  text-align: left;
  padding: 6px 20px;
}
@media screen and (max-width: 1024px) {
  .tablepress-table-name.tablepress-table-name-id-9, .tablepress-table-name.tablepress-table-name-id-10, .tablepress-table-name.tablepress-table-name-id-11, .tablepress-table-name.tablepress-table-name-id-12, .tablepress-table-name.tablepress-table-name-id-13, .tablepress-table-name.tablepress-table-name-id-14, .tablepress-table-name.tablepress-table-name-id-15, .tablepress-table-name.tablepress-table-name-id-16, .tablepress-table-name.tablepress-table-name-id-17, .tablepress-table-name.tablepress-table-name-id-19, .tablepress-table-name.tablepress-table-name-id-20, .tablepress-table-name.tablepress-table-name-id-21, .tablepress-table-name.tablepress-table-name-id-22, .tablepress-table-name.tablepress-table-name-id-23, .tablepress-table-name.tablepress-table-name-id-24, .tablepress-table-name.tablepress-table-name-id-25 {
    padding: 3px 10px;
  }
}

.tablepress-table-description {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .tablepress-table-description {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.tablepress-table-description {
  background-color: unset;
  text-align: left;
  line-height: 2;
}
.tablepress-table-description.tablepress-table-description-id-25 {
  text-align: right !important;
}

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;
}
@media screen and (max-width: 1024px) {
  table th,
  table td {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
table th,
table td {
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  table th,
  table td {
    padding: 5px;
  }
}
table th,
table td {
  text-align: center;
}

.mv {
  position: relative;
  overflow: unset;
}
.mv .swiper {
  aspect-ratio: 1920/943;
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-mask-image: url(../img/mv_mask.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/mv_mask.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media screen and (max-width: 768px) {
  .mv .swiper {
    aspect-ratio: 1;
    -webkit-mask-image: url(../img/mv_mask_sp.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 0 0;
    mask-image: url(../img/mv_mask_sp.png);
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
            mask-position: center center;
    -webkit-mask-size: contain;
    mask-size: contain;
  }
}
.mv .swiper-slide picture,
.mv .swiper-slide img {
  width: 100%;
  height: 100%;
}

.swiper-pagination-bullet-active {
  background: var(--main);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px;
  }
}

.news-list01 li {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .news-list01 li {
    flex-direction: column;
  }
}
.news-list01 li {
  padding-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .news-list01 li {
    padding-bottom: 5px;
  }
}
.news-list01 li {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .news-list01 li {
    margin-bottom: 5px;
  }
}
.news-list01 li {
  border-bottom: 1px solid #d1dee8;
}
.news-list01 li .date-cat {
  min-width: 240px;
}
@media screen and (max-width: 1024px) {
  .news-list01 li .date-cat {
    min-width: 120px;
  }
}
.news-list01 li .date-cat {
  margin-bottom: 0;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1024px) {
  .news-list01 li .date-cat {
    margin-bottom: 10px;
  }
}
.news-list01 li .date {
  white-space: nowrap;
  letter-spacing: 0.15em;
  text-transform: capitalize;
  font-size: 1.3rem;
}
@media screen and (max-width: 1024px) {
  .news-list01 li .date {
    font-size: clamp(12px, 0.65rem, 0.65rem);
  }
}
.news-list01 li .date {
  color: var(--txt-light-color);
}
.news-list01 li .news-cat {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .news-list01 li .news-cat {
    margin-bottom: 8px;
  }
}
.news-list01 li .news-cat.news {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.news-list01 li .news-txt a {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .news-list01 li .news-txt a {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.news-list01 li .news-txt a:hover {
  color: var(--main);
  opacity: 1;
}

.f-greeting {
  position: relative;
  background-color: #fdfcfb;
}
.f-greeting::before, .f-greeting::after {
  content: "";
  display: block;
  aspect-ratio: 259/253;
  background-image: url(../img/branch01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20%;
  height: auto;
  position: absolute;
  top: -5vw;
  z-index: 1;
}
.f-greeting::before {
  left: -5vw;
}
.f-greeting::after {
  right: -5vw;
  transform: scale(-1, 1);
}
.f-greeting .greeting {
  position: relative;
}
.f-greeting .greeting::before, .f-greeting .greeting::after {
  content: "";
  display: block;
  position: absolute;
  height: auto;
}
.f-greeting .greeting::before {
  aspect-ratio: 1;
  background-image: url(../img/circle04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 12%;
  bottom: 0%;
  left: -1%;
  opacity: 0;
}
.f-greeting .greeting::after {
  aspect-ratio: 1;
  background-image: url(../img/circle07.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5%;
  bottom: -3%;
  left: 8%;
  opacity: 0;
}
.f-greeting .greeting.is-show::before {
  animation-name: scaleUp50;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-delay: 3.5s;
}
.f-greeting .greeting.is-show::after {
  animation-name: scaleUp50;
  animation-duration: 3.5s;
  animation-fill-mode: forwards;
  animation-delay: 4.5s;
}
.f-greeting .greeting__lead {
  font-size: clamp(30px, 2.0833333333vw, 4rem);
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__lead {
    font-size: clamp(10px, 3.90625vw, 2rem);
  }
}
.f-greeting .greeting__lead {
  letter-spacing: 0.1em;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__lead {
    margin-bottom: 30px;
  }
}
.f-greeting .greeting__lead {
  position: relative;
  text-align: center;
}
.f-greeting .greeting__lead::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -10px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__lead::before {
    bottom: -5px;
  }
}
.f-greeting .greeting__lead::before {
  background-color: #aea9a5;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__lead::before {
    display: none;
  }
}
.f-greeting .greeting__lead span {
  font-size: clamp(40px, 3.125vw, 6rem);
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting__lead span {
    font-size: clamp(10px, 5.859375vw, 3rem);
  }
}
.f-greeting .greeting__lead span {
  letter-spacing: 0.15em;
  color: var(--main);
}
.f-greeting .greeting .box {
  width: 80%;
  justify-content: center;
  margin: auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting .box {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting .box {
    width: 90%;
  }
}
.f-greeting .greeting .box .txtArea {
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting .box .txtArea {
    padding: 20px;
  }
}
.f-greeting .greeting .txt {
  line-height: 2.5;
}
@media screen and (max-width: 1024px) {
  .f-greeting .greeting .txt {
    text-align: center;
  }
}
.f-greeting .bnr__list {
  width: 85%;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .f-greeting .bnr__list {
    flex-direction: column;
  }
}
.f-greeting .bnr__list {
  justify-content: space-between;
  margin: auto;
}
.f-greeting .bnr__item {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .f-greeting .bnr__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-greeting .bnr__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .f-greeting .bnr__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.f-greeting .bnr__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .f-greeting .bnr__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.f-greeting .bnr__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .f-greeting .bnr__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.f-greeting .bnr__item a {
  display: block;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-greeting .bnr__item a {
    border-radius: 5px;
  }
}
.f-greeting .bnr__item a {
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  transition: all 0.3s;
}
.f-greeting .bnr__item a.bnr_facebook:hover {
  background-color: #b1cefa;
  transition: all 0.3s;
}
.f-greeting .bnr__item a.bnr_choice:hover {
  background-color: #dbdab9;
  transition: all 0.3s;
}

.verticalArea {
  display: flex;
  padding: 60px 40px;
}
@media screen and (max-width: 1024px) {
  .verticalArea {
    padding: 30px 20px;
  }
}
.verticalArea {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .verticalArea {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.verticalArea::before {
  content: "";
  display: block;
  aspect-ratio: 337/328;
  background-image: url(../img/circle04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.7;
  transform: scale(0, 0);
}
.verticalArea .vertical__txt {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.8229166667vw, 3.5rem);
}
@media screen and (max-width: 1024px) {
  .verticalArea .vertical__txt {
    font-size: clamp(12px, 3.41796875vw, 1.75rem);
  }
}
.verticalArea .vertical__txt {
  letter-spacing: 0.15em;
  color: #81807f;
  writing-mode: vertical-lr;
  position: relative;
  z-index: 2;
  opacity: 0;
}
.verticalArea .vertical__sub {
  letter-spacing: 0.05em;
  writing-mode: vertical-lr;
  color: #aea9a5;
  position: relative;
  z-index: 2;
  opacity: 0;
}
.verticalArea.is-show::before {
  animation-name: scaleUp;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}
.verticalArea.is-show .vertical__txt {
  animation-name: fadeUpAnime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
.verticalArea.is-show .vertical__sub {
  animation-name: fadeUpAnime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
}

.f-news {
  background-color: #fdfcfb;
  position: relative;
}
.f-news .newsArea {
  background: #fff;
  padding: 60px 40px;
}
@media screen and (max-width: 1024px) {
  .f-news .newsArea {
    padding: 30px 20px;
  }
}
.f-news .newsArea {
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-news .newsArea {
    border-radius: 5px;
  }
}
.f-news .newsArea {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-news .newsArea {
    margin-bottom: 40px;
  }
}
.f-news .newsArea {
  position: relative;
}
.f-news .newsArea::before {
  content: "";
  display: block;
  aspect-ratio: 528/374;
  background-image: url(../img/bird01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15%;
  height: auto;
  position: absolute;
  top: -3vw;
  left: -1%;
  z-index: 2;
  transform: translate(-5%, 0);
  opacity: 0;
}
.f-news .newsArea::after {
  content: "";
  display: block;
  aspect-ratio: 158/107;
  background-image: url(../img/leaf01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 5%;
  height: auto;
  position: absolute;
  top: 1vw;
  right: 1%;
  z-index: 2;
  opacity: 0;
  transform: translate(3%, 0);
  transition: 1s;
}
.f-news .newsArea.is-show::before {
  transform: translate(0, 0);
  opacity: 1;
  transition: 2s ease-in-out;
}
.f-news .newsArea.is-show::after {
  transform: translate(0, 0);
  opacity: 1;
  transition: 2s ease-in-out;
}

.f-clinic {
  position: relative;
  background-color: var(--main-light02);
}
.f-clinic::before {
  content: "";
  display: block;
  aspect-ratio: 1920/205;
  -webkit-mask-image: url(../img/shape01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/shape01.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--main-light02);
  width: 100%;
  height: auto;
  position: absolute;
  top: -10.4166666667vw;
  left: 0;
  z-index: 1;
}
.f-clinic .deco._01 {
  aspect-ratio: 789/475;
  width: 20%;
  height: auto;
  background-image: url(../img/tree03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -50px;
}
@media screen and (max-width: 1024px) {
  .f-clinic .deco._01 {
    top: -25px;
  }
}
.f-clinic .deco._01 {
  left: 5%;
  z-index: 1;
}
.f-clinic .deco._02 {
  aspect-ratio: 552/277;
  width: 20%;
  height: auto;
  background-image: url(../img/tree04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -50px;
}
@media screen and (max-width: 1024px) {
  .f-clinic .deco._02 {
    top: -25px;
  }
}
.f-clinic .deco._02 {
  right: 5%;
  z-index: 1;
  transform: scale(-1, 1);
}
.f-clinic .greeting {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-clinic .greeting {
    margin-bottom: 40px;
  }
}
.f-clinic .box {
  justify-content: space-between;
}
.f-clinic .item.imgArea {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .f-clinic .item.imgArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-clinic .item.imgArea .nameArea .position {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .f-clinic .item.imgArea .nameArea .position {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.f-clinic .item.imgArea .nameArea .position {
  margin-bottom: 0;
}
.f-clinic .item.imgArea .nameArea .name .ja {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .f-clinic .item.imgArea .nameArea .name .ja {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.f-clinic .item.imgArea .nameArea .name .ja {
  font-weight: 700;
  letter-spacing: 0.1em;
}
.f-clinic .item.imgArea .nameArea .name .en {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .f-clinic .item.imgArea .nameArea .name .en {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.f-clinic .item.imgArea .nameArea .name .en {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--main);
}
.f-clinic .item.txtArea {
  width: 65%;
}
@media screen and (max-width: 1024px) {
  .f-clinic .item.txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-clinic .item.txtArea .lead__txt {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  padding: 10px 20px;
}
@media screen and (max-width: 1024px) {
  .f-clinic .item.txtArea .lead__txt {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-clinic .item.txtArea .lead__txt {
    margin: auto;
    margin-bottom: 10px;
  }
}
.f-clinic .item.txtArea .lead__txt::before {
  content: "";
  display: block;
  background-color: var(--main);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.f-clinic .item.txtArea .lead span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .f-clinic .item.txtArea .lead span {
    font-size: 18px;
  }
}
.f-clinic .item.txtArea .lead .lead-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.f-clinic .item.txtArea .lead.is-show .lead-char {
  opacity: 1;
  transform: translateY(0);
}
.f-clinic .item.txtArea .txt {
  line-height: 2.5;
}
.f-clinic .bnrArea {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-clinic .bnrArea {
    margin-bottom: 40px;
  }
}
.f-clinic .bnrArea .bnr {
  display: block;
  background-color: var(--white);
  max-width: 600px;
}
@media screen and (max-width: 1024px) {
  .f-clinic .bnrArea .bnr {
    max-width: 300px;
  }
}
.f-clinic .bnrArea .bnr {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .f-clinic .bnrArea .bnr {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-clinic .bnrArea .bnr {
  margin: auto;
}
.f-clinic .bnrArea .bnr:hover {
  background-color: var(--main-light);
  transition: all 0.3s;
}
.f-clinic .history {
  background: #fff;
  padding: 60px 40px;
}
@media screen and (max-width: 1024px) {
  .f-clinic .history {
    padding: 30px 20px;
  }
}
.f-clinic .history {
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-clinic .history {
    border-radius: 5px;
  }
}
.f-clinic .history {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-clinic .history {
    margin-bottom: 40px;
  }
}
.f-clinic .flow .txt {
  background: #fff;
  padding: 60px 40px;
}
@media screen and (max-width: 1024px) {
  .f-clinic .flow .txt {
    padding: 30px 20px;
  }
}
.f-clinic .flow .txt {
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-clinic .flow .txt {
    border-radius: 5px;
  }
}

.f-service {
  position: relative;
  background-color: #fdfcfb;
  padding-top: 0;
}
.f-service::before {
  content: "";
  display: block;
  aspect-ratio: 1920/205;
  -webkit-mask-image: url(../img/shape01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/shape01.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fdfcfb;
  width: 100%;
  height: auto;
  position: absolute;
  top: -7.8125vw;
  left: 0;
  z-index: 1;
}
.f-service .deco._bird01 {
  aspect-ratio: 116/248;
  width: 5%;
  height: auto;
  background-image: url(../img/bird02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -30px;
}
@media screen and (max-width: 1024px) {
  .f-service .deco._bird01 {
    top: -15px;
  }
}
.f-service .deco._bird01 {
  right: 12%;
  z-index: 1;
}
.f-service .deco._leaf01 {
  aspect-ratio: 158/107;
  width: 4%;
  height: auto;
  background-image: url(../img/leaf01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50px;
}
@media screen and (max-width: 1024px) {
  .f-service .deco._leaf01 {
    top: 25px;
  }
}
.f-service .deco._leaf01 {
  left: 10%;
  z-index: 1;
  transform: scale(-1, 1);
}
.f-service .service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
.f-service .service__item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-service .service__item {
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item {
    margin-bottom: 20px;
  }
}
.f-service .service__item.is-show:nth-of-type(1) {
  animation-delay: 0.2s;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.f-service .service__item.is-show:nth-of-type(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.f-service .service__item.is-show:nth-of-type(3) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.f-service .service__item.is-show:nth-of-type(4) {
  animation-delay: 0.8s;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item.is-show:nth-of-type(4) {
    animation-delay: unset;
  }
}
.f-service .service__item.is-show:nth-of-type(5) {
  animation-delay: 1s;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item.is-show:nth-of-type(5) {
    animation-delay: unset;
  }
}
.f-service .service__item.is-show:nth-of-type(6) {
  animation-delay: 1.2s;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item.is-show:nth-of-type(6) {
    animation-delay: unset;
  }
}
.f-service .service__item__img {
  aspect-ratio: 3/2;
  height: auto;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-service .service__item__img {
    border-radius: 5px;
  }
}
.f-service .service__item__img {
  overflow: hidden;
  position: relative;
}
.f-service .service__item__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.f-service .service__item__title {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: clamp(16px, 1.5625vw, 3rem);
}
@media screen and (max-width: 1024px) {
  .f-service .service__item__title {
    font-size: clamp(12px, 2.9296875vw, 1.5rem);
  }
}
.f-service .service__item__title {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  background-color: var(--main);
  background-color: unset;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.f-service .service__content__list {
  padding: 20px 20px;
}
@media screen and (max-width: 1024px) {
  .f-service .service__content__list {
    padding: 10px 10px;
  }
}
.f-service .service__content__item {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .f-service .service__content__item {
    gap: 5px;
  }
}
.f-service .service__content__item {
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .f-service .service__content__item {
    margin-bottom: 4px;
  }
}
.f-service .service__content__item::before {
  content: "";
  display: block;
  width: 6px;
}
@media screen and (max-width: 1024px) {
  .f-service .service__content__item::before {
    width: 3px;
  }
}
.f-service .service__content__item::before {
  height: 6px;
}
@media screen and (max-width: 1024px) {
  .f-service .service__content__item::before {
    height: 3px;
  }
}
.f-service .service__content__item::before {
  background-color: var(--main);
  border-radius: 50%;
  z-index: 1;
  margin-top: 12px;
}
@media screen and (max-width: 1024px) {
  .f-service .service__content__item::before {
    margin-top: 6px;
  }
}

.f-price {
  position: relative;
  background-color: var(--main-light02);
  padding-top: 0;
}
.f-price::before {
  content: "";
  display: block;
  aspect-ratio: 1920/205;
  -webkit-mask-image: url(../img/shape01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/shape01.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--main-light02);
  width: 100%;
  height: auto;
  position: absolute;
  top: -10.4166666667vw;
  left: 0;
  z-index: 1;
}
.f-price .deco._tree01 {
  aspect-ratio: 123/204;
  width: 5%;
  height: auto;
  background-image: url(../img/tree05.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -50px;
}
@media screen and (max-width: 1024px) {
  .f-price .deco._tree01 {
    top: -25px;
  }
}
.f-price .deco._tree01 {
  right: 12%;
  z-index: 1;
}
.f-price .deco._tree02 {
  aspect-ratio: 190/303;
  width: 6%;
  height: auto;
  background-image: url(../img/tree01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -50px;
}
@media screen and (max-width: 1024px) {
  .f-price .deco._tree02 {
    top: -25px;
  }
}
.f-price .deco._tree02 {
  left: 10%;
  z-index: 1;
}
.f-price .price__menu {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-price .price__menu {
    margin-bottom: 40px;
  }
}
.f-price .price__menu__list {
  display: flex;
  gap: 4%;
}
.f-price .price__menu__item {
  width: 48%;
}
.f-price .price__menu__item a {
  display: block;
  border: solid 1px var(--main);
  background-color: var(--white);
  color: var(--main);
  font-size: clamp(18px, 1.25vw, 2.4rem);
}
@media screen and (max-width: 1024px) {
  .f-price .price__menu__item a {
    font-size: clamp(10px, 2.34375vw, 1.2rem);
  }
}
.f-price .price__menu__item a {
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 20px;
}
@media screen and (max-width: 1024px) {
  .f-price .price__menu__item a {
    padding: 5px 10px;
  }
}
.f-price .price__menu__item a {
  position: relative;
  transition: all 0.3s;
}
.f-price .price__menu__item a::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon_arrow02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_arrow02.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 12px;
}
@media screen and (max-width: 1024px) {
  .f-price .price__menu__item a::before {
    width: 6px;
  }
}
.f-price .price__menu__item a::before {
  height: 12px;
}
@media screen and (max-width: 1024px) {
  .f-price .price__menu__item a::before {
    height: 6px;
  }
}
.f-price .price__menu__item a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
}
@media screen and (max-width: 1024px) {
  .f-price .price__menu__item a::before {
    right: 10px;
  }
}
.f-price .price__menu__item a::before {
  background-color: var(--main);
  z-index: 1;
  transform: rotate(90deg);
}
.f-price .price__menu__item a:hover {
  background-color: var(--main);
  color: var(--white);
  transition: all 0.3s;
}
.f-price .price__menu__item a:hover::before {
  background-color: var(--white);
}
.f-price .insurance,
.f-price .free {
  background: #fff;
  padding: 60px 40px;
}
@media screen and (max-width: 1024px) {
  .f-price .insurance,
  .f-price .free {
    padding: 30px 20px;
  }
}
.f-price .insurance,
.f-price .free {
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-price .insurance,
  .f-price .free {
    border-radius: 5px;
  }
}
.f-price .insurance {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-price .insurance {
    margin-bottom: 40px;
  }
}

.f-information {
  position: relative;
  background-color: #fdfcfb;
}
.f-information::before, .f-information::after {
  content: "";
  display: block;
  aspect-ratio: 259/253;
  background-image: url(../img/branch01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20%;
  height: auto;
  position: absolute;
  top: 0vw;
  z-index: 1;
}
.f-information::before {
  left: -5vw;
}
.f-information::after {
  right: -5vw;
  transform: scale(-1, 1);
}
.f-information .hours,
.f-information .overview,
.f-information .access {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-information .hours,
  .f-information .overview,
  .f-information .access {
    margin-bottom: 40px;
  }
}
.f-information .overview {
  position: relative;
}
.f-information .overview::before {
  content: "";
  display: block;
  aspect-ratio: 167/174;
  background-image: url(../img/bird04.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 7%;
  height: auto;
  position: absolute;
  top: 0vw;
  left: -1%;
  z-index: 1;
  transform: rotate(-10deg);
}
.f-information .overview .box {
  justify-content: space-between;
}
.f-information .overview .item.tableArea {
  width: 65%;
}
@media screen and (max-width: 1024px) {
  .f-information .overview .item.tableArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-information .overview .item.tableArea {
  background-color: var(--white);
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .f-information .overview .item.tableArea {
    padding: 10px;
  }
}
.f-information .overview .item.imgArea {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .f-information .overview .item.imgArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-information .overview .item.imgArea {
  position: relative;
}
.f-information .overview .item.imgArea::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/circle01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 40%;
  height: auto;
  position: absolute;
  bottom: -3vw;
  right: -3vw;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .f-information .overview .item.imgArea::before {
    bottom: -10vw;
    right: -10vw;
  }
}
.f-information .overview .item.imgArea img {
  position: relative;
  z-index: 2;
}
.f-information .access {
  position: relative;
}
.f-information .access::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/leaf05.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 10%;
  height: auto;
  position: absolute;
  bottom: -8vw;
  left: -10%;
  z-index: 1;
}
.f-information .access::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  background-image: url(../img/leaf05.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 10%;
  height: auto;
  position: absolute;
  bottom: -8vw;
  right: -10%;
  z-index: 1;
  transform: scale(-1, 1);
}
.f-information .access iframe {
  display: block;
}
@media screen and (max-width: 1024px) {
  .f-information .access iframe {
    aspect-ratio: 3/2;
    height: auto;
  }
}

.f-contact {
  position: relative;
  background: var(--main-light02);
}
.f-contact .contact {
  background: #fff;
  padding: 60px 40px;
}
@media screen and (max-width: 1024px) {
  .f-contact .contact {
    padding: 30px 20px;
  }
}
.f-contact .contact {
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .f-contact .contact {
    border-radius: 5px;
  }
}

.f-worry {
  background: var(--main-light02);
  padding-bottom: 13.0208333333vw;
}
.f-worry .worry {
  width: 80%;
  margin: auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .f-worry .worry {
    margin-bottom: 50px;
  }
}
.f-worry .worry {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .f-worry .worry {
    flex-direction: column;
  }
}
.f-worry .worry {
  justify-content: space-between;
  position: relative;
}
.f-worry .worry::before {
  content: "";
  display: block;
  aspect-ratio: 1264/1280;
  background-image: url(../img/circle03.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  bottom: 0%;
  right: -15%;
  z-index: 1;
  opacity: 0.5;
}
.f-worry .worry .verticalArea {
  width: 15%;
}
@media screen and (max-width: 1024px) {
  .f-worry .worry .verticalArea {
    width: 30%;
    margin: auto;
  }
}
.f-worry .worry .verticalArea::before {
  position: absolute;
  background-image: url(../img/circle04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: -5%;
}
.f-worry .worry .vertical__txt {
  text-indent: -1em;
}
.f-worry .worry .txtArea {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .f-worry .worry .txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-worry .worry .txtArea {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .f-worry .worry .txtArea {
    margin-top: 30px;
  }
}
.f-worry .worry .txtArea .txt {
  line-height: 2.5;
  text-align: left;
  color: #676766;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .f-worry .worry .txtArea .txt {
    text-align: center;
  }
}
.f-worry .worry .txtArea .txt.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
.f-worry .feature__list {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .f-worry .feature__list {
    flex-direction: column;
  }
}
.f-worry .feature__list {
  justify-content: space-between;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .f-worry .feature__list {
    margin-top: 50px;
  }
}
.f-worry .feature__item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .f-worry .feature__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f-worry .feature__item {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .f-worry .feature__item {
    margin-bottom: 16px;
  }
}
.f-worry .feature__item .num {
  position: absolute;
  top: -5px;
  left: 5px;
  color: var(--main);
  font-weight: bold;
  font-size: 7rem;
}
@media screen and (max-width: 1024px) {
  .f-worry .feature__item .num {
    font-size: clamp(12px, 3.5rem, 3.5rem);
  }
}
.f-worry .feature__item .num {
  font-family: "Carattere", cursive;
}
.f-worry .feature__item .img {
  width: 70%;
  margin: auto;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
}
.f-worry .feature__item .img img {
  width: 70%;
}
.f-worry .feature__item .title {
  background-color: var(--main);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 5px 10px;
}
@media screen and (max-width: 1024px) {
  .f-worry .feature__item .title {
    padding: 2.5px 5px;
  }
}
.f-worry .feature__item .title {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .f-worry .feature__item .title {
    margin-bottom: 10px;
  }
}
.f-worry .feature__item .title span {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-text-emphasis: dot;
          text-emphasis: dot;
  -webkit-text-emphasis-position: over;
          text-emphasis-position: over;
  -webkit-text-emphasis: dot var(--white);
          text-emphasis: dot var(--white);
  text-emphasis-position: over;
}

iframe {
  width: 100%;
}

body.home {
  background-image: url(../img/bg_gradation.png);
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: center;
}
body.home main {
  overflow: hidden;
}
body.post-type-archive-product-post, body.single-product-post {
  background-color: var(--white);
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: 2rem;
  will-change: transform;
  animation: ticker 120s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* 2個並べた分の半分を移動 */
}
.ticker__item {
  display: inline-block;
  font-size: clamp(16px, 6.25vw, 12rem);
}
@media screen and (max-width: 1024px) {
  .ticker__item {
    font-size: clamp(12px, 11.71875vw, 6rem);
  }
}
.ticker__item {
  letter-spacing: 0.1em;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #e0edf6;
}

.menu-header-menu-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-menu {
  padding: 0 1.0416666667vw;
}
.header-menu > li a {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .header-menu > li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.header-menu > li a {
  padding: 0 2.0833333333vw;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .header-menu > li a {
    padding: 0 1.5625vw !important;
  }
}
.header-menu > li a:hover {
  color: var(--main);
  transition: all 0.3s;
  opacity: 1;
}

.header.scrolled .header-menu {
  padding: 0;
  box-shadow: none;
}
.header.scrolled .header-menu > li > a {
  font-size: clamp(16px, 0.8333333333vw, 1.6rem);
}
@media screen and (max-width: 1024px) {
  .header.scrolled .header-menu > li > a {
    font-size: clamp(10px, 1.5625vw, 0.8rem);
  }
}
.header.scrolled .header-menu > li > a {
  padding: 0 1.0416666667vw;
}
@media screen and (max-width: 1400px) {
  .header.scrolled .header-menu > li > a {
    font-size: clamp(14px, 0.8333333333vw, 1.6rem);
  }
}
@media screen and (max-width: 1400px) and (max-width: 1024px) {
  .header.scrolled .header-menu > li > a {
    font-size: clamp(10px, 1.5625vw, 0.8rem);
  }
}
@media screen and (max-width: 1200px) {
  .header.scrolled .header-menu > li > a {
    font-size: clamp(13px, 0.8333333333vw, 1.6rem);
  }
}
@media screen and (max-width: 1200px) and (max-width: 1024px) {
  .header.scrolled .header-menu > li > a {
    font-size: clamp(10px, 1.5625vw, 0.8rem);
  }
}
@media screen and (max-width: 1100px) {
  .header.scrolled .header-menu > li > a {
    font-size: clamp(11px, 0.8333333333vw, 1.6rem);
  }
}
@media screen and (max-width: 1100px) and (max-width: 1024px) {
  .header.scrolled .header-menu > li > a {
    font-size: clamp(10px, 1.5625vw, 0.8rem);
  }
}

.header-sub-box {
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .header-sub-box {
    display: none;
  }
}
.header-sub-box .g-nav-tel-pc a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-nav-tel-pc a {
    gap: 3px;
  }
}
.header-sub-box .g-nav-tel-pc a::before {
  content: "";
  display: block;
  background-color: var(--title);
  -webkit-mask-image: url(../img/icon_tel.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_tel.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 20px;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-nav-tel-pc a::before {
    width: 10px;
  }
}
.header-sub-box .g-nav-tel-pc a::before {
  height: 20px;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-nav-tel-pc a::before {
    height: 10px;
  }
}
.header-sub-box .g-nav-tel-pc a::before {
  z-index: 1;
}
.header-sub-box .g-nav-tel-pc a span {
  font-family: "Lexend Zetta", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: clamp(18px, 1.25vw, 2.4rem);
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-nav-tel-pc a span {
    font-size: clamp(10px, 2.34375vw, 1.2rem);
  }
}
.header-sub-box .g-nav-tel-pc a span {
  letter-spacing: 0.05em;
  color: var(--title);
}
.header-sub-box .g-nav-tel-pc a:hover::before {
  background-color: var(--main);
}
.header-sub-box .g-nav-tel-pc a:hover span {
  color: var(--main);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list {
  margin-bottom: 0;
  gap: 10px;
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-sub-nav02 .g-sub-nav-list li a {
    border-radius: 5px;
  }
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a {
  margin-left: unset;
  background-color: var(--main);
  color: var(--white);
  border: solid 1px var(--main);
  padding: 5px 20px;
  line-height: 1.8;
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a::before {
  content: "";
  display: block;
  background-color: var(--white);
  -webkit-mask-image: url(../img/icon_mail.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_mail.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 16px;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-sub-nav02 .g-sub-nav-list li a::before {
    width: 8px;
  }
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a::before {
  height: 16px;
}
@media screen and (max-width: 1024px) {
  .header-sub-box .g-sub-nav02 .g-sub-nav-list li a::before {
    height: 8px;
  }
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a::before {
  z-index: 1;
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a:hover {
  background-color: var(--white);
  color: var(--main);
}
.header-sub-box .g-sub-nav02 .g-sub-nav-list li a:hover::before {
  background-color: var(--main);
}

.header.scrolled .header-sub-box {
  position: fixed;
  top: 30%;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.header.scrolled .header-sub-box .g-nav-tel-pc {
  margin-right: 0;
  margin-bottom: 0px;
}
.header.scrolled .header-sub-box .g-nav-tel-pc a {
  background-color: var(--title);
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  flex-direction: column;
  border-radius: 10px;
  padding: 20px;
  width: 100px;
  height: 65px !important;
  border: solid 1px var(--title);
}
.header.scrolled .header-sub-box .g-nav-tel-pc a::before {
  min-height: 16px;
  background-color: var(--white);
}
.header.scrolled .header-sub-box .g-nav-tel-pc a::after {
  content: "TEL";
  display: block;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  .header.scrolled .header-sub-box .g-nav-tel-pc a::after {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 1024px) {
  .header.scrolled .header-sub-box .g-nav-tel-pc a::after {
    font-size: 12px;
  }
}
.header.scrolled .header-sub-box .g-nav-tel-pc a span {
  display: none;
}
.header.scrolled .header-sub-box .g-nav-tel-pc a:hover {
  background-color: var(--white);
}
.header.scrolled .header-sub-box .g-nav-tel-pc a:hover::before {
  background-color: var(--title);
}
.header.scrolled .header-sub-box .g-nav-tel-pc a:hover::after {
  color: var(--title);
}
.header.scrolled .header-sub-box .g-sub-nav02 {
  position: unset;
}
.header.scrolled .header-sub-box .g-sub-nav-list {
  display: flex;
  flex-direction: column;
}
.header.scrolled .header-sub-box .g-sub-nav-list li a {
  width: 100px;
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .header.scrolled .header-sub-box .g-sub-nav-list li a {
    font-size: clamp(12px, 0.6rem, 0.6rem);
  }
}
.header.scrolled .header-sub-box .g-sub-nav-list li a {
  padding: 10px;
  font-weight: 600;
  gap: 2px;
  line-height: 1.6;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.header.scrolled .header-sub-box .g-sub-nav-list li a::before {
  max-height: 20px;
}

.fix_nav {
  position: fixed;
  top: 30%;
  right: 0px;
  z-index: 3;
  display: none;
}
@media screen and (max-width: 1024px) {
  .fix_nav {
    top: unset;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.fix_nav.scrolled {
  display: block;
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.fix_nav .fix_nav_list li {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li {
    width: 100%;
    margin-bottom: 0;
  }
}
.fix_nav .fix_nav_list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 20px 6px;
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li a {
    padding: 10px 3px;
  }
}
.fix_nav .fix_nav_list li a {
  text-align: center;
  letter-spacing: 0.15em;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.fix_nav .fix_nav_list li a {
  font-weight: 500;
  writing-mode: vertical-lr;
  color: #fff;
  border-radius: 6px 0 0 6px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li a {
    writing-mode: unset;
    width: 100%;
    height: 40px;
    margin: auto;
    border-radius: 0;
  }
}
.fix_nav .fix_nav_list li a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  z-index: 1;
  background-color: #fff;
}
.fix_nav .fix_nav_list li:nth-of-type(1) a {
  background-color: var(--bg-gray);
}
.fix_nav .fix_nav_list li:nth-of-type(1) a::before {
  -webkit-mask-image: url(../img/icon_tel.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_tel.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.fix_nav .fix_nav_list li:nth-of-type(1) a:hover {
  color: var(--main);
}
.fix_nav .fix_nav_list li:nth-of-type(1) a:hover::before {
  background-color: var(--main);
}
.fix_nav .fix_nav_list li:nth-of-type(2) a {
  background-color: var(--main);
}
.fix_nav .fix_nav_list li:nth-of-type(2) a::before {
  -webkit-mask-image: url(../img/icon_contact.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_contact.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.fix_nav .fix_nav_list li:nth-of-type(2) a:hover {
  color: var(--main);
  background-color: rgba(255, 255, 255, 0.8);
}
.fix_nav .fix_nav_list li:nth-of-type(2) a:hover::before {
  background-color: var(--main);
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li:nth-of-type(3) {
    display: none;
  }
}
.fix_nav .fix_nav_list li:nth-of-type(3) a {
  background-color: unset;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0;
}
.fix_nav .fix_nav_list li:nth-of-type(3) a::before {
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon_insta.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_insta.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 20px;
}
@media screen and (max-width: 1024px) {
  .fix_nav .fix_nav_list li:nth-of-type(3) a::before {
    width: 10px;
  }
}
.fix_nav .fix_nav_list li:nth-of-type(3) a:hover {
  background-color: unset;
}
.fix_nav .fix_nav_list li:nth-of-type(3) a:hover::before {
  background-color: var(--main);
}

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

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

.mobile-logo {
  height: 50px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-logo a {
  color: var(--txt-Color);
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 18px;
}
.mobile-logo a span {
  font-size: 12px;
  color: var(--txt-Color);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.mobile-nav-wrap .mobile-menu-list {
  width: 100%;
}
.mobile-nav-wrap .mobile-menu-list .menu-item-has-children {
  position: relative;
}
.mobile-nav-wrap .mobile-menu-list > li a span {
  display: none;
}

.mobile-sub-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.mobile-sub-nav li a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  z-index: 1;
  background-color: var(--main);
}
.mobile-sub-nav li:first-of-type a {
  font-size: 1.4rem;
}
.mobile-sub-nav li:first-of-type a::before {
  -webkit-mask-image: url(../img/icon_mail.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_mail.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.moblie-menu-tel-number {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 16px;
}

.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;
}
@media screen and (max-width: 1024px) {
  .btn__list li a {
    gap: 5px;
  }
}
.btn__list li a {
  height: auto;
  background-color: var(--white) !important;
  color: var(--main);
  padding: 20px 20px;
}
@media screen and (max-width: 1024px) {
  .btn__list li a {
    padding: 10px 10px;
  }
}
.btn__list li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  writing-mode: vertical-lr;
}
@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;
}

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

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

#pc-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;
  background-color: var(--white);
  transition: all 0.3s;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 40px;
  transform: translateX(100%);
  z-index: 10;
}
#pc-nav.open {
  transform: translateX(0);
}
#pc-nav .pc-logo {
  width: 50%;
  margin-bottom: 50px;
}
#pc-nav .pc-nav-wrap .menu-header-menu-container {
  transform: unset;
  width: 100%;
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list {
  width: 100%;
  margin-bottom: 60px;
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list li a {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-nav-wrap .pc-nav-menu-list li a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list li a {
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: var(--title);
  border-bottom: solid 1px #ddd;
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list li a span {
  display: inline-block;
  font-family: "Lexend Zetta", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-nav-wrap .pc-nav-menu-list li a span {
    font-size: clamp(12px, 0.6rem, 0.6rem);
  }
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list li a span {
  margin-left: 10px;
  color: var(--main);
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list li a:hover {
  color: var(--main);
  transition: all 0.3s;
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list .sub-menu {
  padding-left: 20px;
  padding-bottom: 10px;
}
#pc-nav .pc-nav-wrap .pc-nav-menu-list .sub-menu li a {
  border-bottom: none;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#pc-nav .pc-sub-nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  margin-bottom: 30px;
}
#pc-nav .pc-sub-nav-list li {
  width: 80%;
  margin: auto;
  margin-bottom: 20px;
}
#pc-nav .pc-sub-nav-list li a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-sub-nav-list li a {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
#pc-nav .pc-sub-nav-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background-color: var(--main_deep);
  border: solid 1px var(--main_deep);
  letter-spacing: 0.1em;
  color: var(--white);
  white-space: nowrap;
  padding: 10px;
  transition: all 0.3s;
  border-radius: 999px;
}
#pc-nav .pc-sub-nav-list li a::before {
  content: "";
  display: block;
  -webkit-mask-image: url(../img/icon_mail.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_mail.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--white);
  width: 12px;
  height: 12px;
  z-index: 1;
  -webkit-mask-position: center;
          mask-position: center;
}
#pc-nav .pc-sub-nav-list li a:hover {
  background-color: var(--white);
  color: var(--main);
  transition: all 0.3s;
}
#pc-nav .pc-sub-nav-list li a:hover::before {
  background-color: var(--main);
}
#pc-nav .pc-menu-tel {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
#pc-nav .pc-menu-tel-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
#pc-nav .pc-menu-tel-head {
  margin-bottom: 0;
  background-color: #b4d260;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1.6rem;
}
@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-head {
  letter-spacing: 0.1em;
}
#pc-nav .pc-menu-tel-number {
  font-family: "Lexend Zetta", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-number {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
#pc-nav .pc-menu-tel-number {
  letter-spacing: 0.05em;
  transition: all 0.3s;
  display: flex !important;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-number {
    gap: 5px;
  }
}
#pc-nav .pc-menu-tel-number {
  color: var(--main_deep);
}
#pc-nav .pc-menu-tel-number::before {
  content: "";
  display: block;
  -webkit-mask-image: url(../img/icon_tel.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_tel.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--main_deep);
  width: 16px;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-number::before {
    width: 8px;
  }
}
#pc-nav .pc-menu-tel-number::before {
  height: 16px;
}
@media screen and (max-width: 1024px) {
  #pc-nav .pc-menu-tel-number::before {
    height: 8px;
  }
}
#pc-nav .pc-menu-tel-number::before {
  background-position: center;
  z-index: 1;
}
#pc-nav .pc-menu-tel-number:hover {
  opacity: 0.8;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
}
.header .header-box01 .logo {
  max-width: 300px;
  transition: all 0.3s;
  padding: 10px;
}
@media screen and (max-width: 1200px) {
  .header .header-box01 .logo {
    max-width: 200px;
  }
}
.header .header_navArea {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.header.scrolled {
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 5;
  background-color: var(--white);
}
.header.scrolled .header-box01 {
  width: 100%;
  margin-bottom: 0;
}
.header.scrolled .header-box01 .logo {
  max-width: 250px;
  transition: all 0.3s;
}
@media screen and (max-width: 1300px) {
  .header.scrolled .header-box01 .logo {
    max-width: 200px;
  }
}
@media screen and (max-width: 1200px) {
  .header.scrolled .header-box01 .logo {
    max-width: 150px;
  }
}
.header.scrolled .header-content02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  max-width: 1900px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .header.scrolled .header-content02 {
    display: none;
  }
}
.header.scrolled .sp-header {
  position: relative;
  z-index: 2;
  height: 50px;
  background-color: var(--white);
}

.fix_nav {
  display: none;
}
@media screen and (max-width: 1024px) {
  .fix_nav {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .fix_nav li {
    width: 50%;
    height: 50px;
  }
  .fix_nav li a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    height: 100%;
    color: var(--white);
    font-weight: 600;
  }
  .fix_nav li a span {
    color: var(--white);
  }
  .fix_nav li a::before {
    content: "";
    display: block;
  }
  .fix_nav li:nth-of-type(1) a {
    background-color: var(--main);
    font-size: 14px;
  }
  .fix_nav li:nth-of-type(1) a::before {
    background-color: var(--white);
    -webkit-mask-image: url(../img/icon_tel.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 0 0;
    mask-image: url(../img/icon_tel.png);
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
            mask-position: center center;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 10px;
    height: 10px;
  }
  .fix_nav li:nth-of-type(2) a {
    background-color: var(--green);
    font-size: 12px;
  }
  .fix_nav li:nth-of-type(2) a::before {
    background-color: var(--white);
    -webkit-mask-image: url(../img/icon_days.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 0 0;
    mask-image: url(../img/icon_days.png);
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
            mask-position: center center;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 14px;
    height: 14px;
  }
}

.mobile-btn #hamburger span:nth-of-type(1) {
  top: 20px;
}
.mobile-btn #hamburger span:nth-of-type(2) {
  top: 28px;
}
.mobile-btn #hamburger span:nth-of-type(3) {
  display: none;
}
.mobile-btn #hamburger.active span:nth-of-type(1) {
  width: 45%;
  top: 20px;
  transform: translateY(5px) translateX(-4px) rotate(-45deg);
}
.mobile-btn #hamburger.active span:nth-of-type(2) {
  top: 28px;
  opacity: 1;
  transform: translateY(-3px) rotate(45deg);
}

.fix_nav_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: 100%;
    margin: auto;
  }
}
.fix_nav_sp li {
  width: 50%;
  height: 50px;
}
.fix_nav_sp li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--yellow);
  width: 100%;
  height: 100%;
  color: var(--white);
  gap: 10px;
}
.fix_nav_sp li a::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon_tel.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_tel.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--white);
  width: 12px;
  height: auto;
}
.fix_nav_sp li a span {
  color: var(--white);
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .fix_nav_sp li a span {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.fix_nav_sp li a span {
  font-weight: 600;
  letter-spacing: 0.15em;
}
.fix_nav_sp li:nth-of-type(2) a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--orange02);
  background-color: var(--yellow02);
}
.fix_nav_sp li:nth-of-type(2) a::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon_mail.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_mail.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--white);
  width: 12px;
  height: auto;
}
.fix_nav_sp li:nth-of-type(2) a span {
  color: var(--white);
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .fix_nav_sp li:nth-of-type(2) a span {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.fix_nav_sp li:nth-of-type(2) a span {
  font-weight: 600;
  letter-spacing: 0.15em;
}

.spin-wrap {
  width: 30%;
  height: auto;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .spin-wrap {
    width: 40%;
  }
}
.spin-wrap .logo {
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--main);
  font-size: 4rem;
}
@media screen and (max-width: 1024px) {
  .spin-wrap .logo {
    font-size: clamp(12px, 2rem, 2rem);
  }
}
.spin-wrap .logo {
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  transition: all 0.3s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  max-width: unset;
}
.spin-wrap .logo span {
  color: var(--orange);
  display: block;
}

#loading::before, #loading::after {
  content: "";
  display: block;
  position: absolute;
  height: auto;
  aspect-ratio: 214/194;
  -webkit-mask-image: url(../img/dot_01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/dot_01.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--main);
  width: 20%;
}
#loading::before {
  top: 0%;
  left: -2%;
}
#loading::after {
  bottom: 0%;
  right: -3%;
}

.sec {
  background-color: var(--main-light);
}
.sec .inner {
  background: #fff;
  padding: 60px 40px;
}
@media screen and (max-width: 1024px) {
  .sec .inner {
    padding: 30px 20px;
  }
}
.sec .inner {
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .sec .inner {
    border-radius: 5px;
  }
}
.sec .box {
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .sec .box {
    margin-bottom: 30px;
  }
}
.sec .box .item.txtArea {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .sec .box .item.txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec .box .item.imgArea {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .sec .box .item.imgArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec dl {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .sec dl {
    flex-direction: column;
  }
}
.sec dl {
  flex-wrap: wrap;
}
.sec dl dt {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .sec dl dt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec dl dt {
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .sec dl dt {
    padding: 5px;
  }
}
.sec dl dt {
  border-bottom: dashed 1px var(--title);
}
.sec dl dd {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .sec dl dd {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec dl dd {
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .sec dl dd {
    padding: 5px;
  }
}
.sec dl dd {
  border-bottom: dashed 1px var(--title);
}
.sec .txtImg__item {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .sec .txtImg__item {
    flex-direction: column;
  }
}
.sec .txtImg__item {
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .sec .txtImg__item {
    margin-bottom: 30px;
  }
}
.sec .txtImg__item .txtArea {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .sec .txtImg__item .txtArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec .txtImg__item .imgArea {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .sec .txtImg__item .imgArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec .contentArea {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .sec .contentArea {
    margin-bottom: 30px;
  }
}
.sec .table_box {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .sec .table_box {
    flex-direction: column;
  }
}
.sec .table_box {
  border: solid 1px #ddd;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .sec .table_box {
    margin-top: 15px;
  }
}
.sec .table_box {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .sec .table_box {
    margin-bottom: 30px;
  }
}
.sec .table_box .item_col {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .sec .table_box .item_col {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec .table_box .item_col {
  border-right: solid 1px #ddd;
}
.sec .table_box .item_col .title {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--main);
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .sec .table_box .item_col .title {
    padding: 5px;
  }
}
.sec .table_box .item_col .title {
  background-color: var(--main-light02);
}
.sec .table_box .item_col .list {
  padding: 0px 20px;
}
@media screen and (max-width: 1024px) {
  .sec .table_box .item_col .list {
    padding: 0px 10px;
  }
}
.sec .table_box .item_col .list .item {
  position: relative;
  padding: 10px 10px;
}
@media screen and (max-width: 1024px) {
  .sec .table_box .item_col .list .item {
    padding: 5px 5px;
  }
}
.sec .table_box .item_col .list .item::before {
  content: "";
  display: block;
  width: 6px;
}
@media screen and (max-width: 1024px) {
  .sec .table_box .item_col .list .item::before {
    width: 3px;
  }
}
.sec .table_box .item_col .list .item::before {
  height: 6px;
}
@media screen and (max-width: 1024px) {
  .sec .table_box .item_col .list .item::before {
    height: 3px;
  }
}
.sec .table_box .item_col .list .item::before {
  border-radius: 50%;
  background-color: var(--main);
  position: absolute;
  left: -10px;
}
@media screen and (max-width: 1024px) {
  .sec .table_box .item_col .list .item::before {
    left: -5px;
  }
}
.sec .table_box .item_col .list .item::before {
  top: 20px;
}
@media screen and (max-width: 1024px) {
  .sec .table_box .item_col .list .item::before {
    top: 10px;
  }
}
.sec .flow__list {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .sec .flow__list {
    margin-bottom: 20px;
  }
}
.sec .flow__list li {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .sec .flow__list li {
    flex-direction: column;
  }
}
.sec .flow__list li .title {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .sec .flow__list li .title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec .flow__list li .title {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--main);
}
.sec .flow__list li .txt {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .sec .flow__list li .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec .note {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .sec .note {
    margin-bottom: 30px;
  }
}
.sec .note__title {
  font-weight: 700;
  color: var(--main);
  border-bottom: solid 1px var(--main);
}
.sec.leadSection {
  position: relative;
  background-color: unset;
}
.sec.leadSection::after {
  content: "";
  display: block;
  aspect-ratio: 1920/205;
  -webkit-mask-image: url(../img/shape01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/shape01.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--main-light);
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -1vw;
  left: 0;
  z-index: 1;
}
.sec.leadSection .inner {
  padding: auto;
  margin: auto;
  box-shadow: unset;
  background-color: unset;
  position: relative;
}
.sec.leadSection .inner::before, .sec.leadSection .inner::after {
  content: "";
  display: block;
  width: 8%;
  height: auto;
  position: absolute;
  top: 2vw;
}
.sec.leadSection .inner::before {
  aspect-ratio: 123/204;
  background-image: url(../img/tree01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  left: 2vw;
}
.sec.leadSection .inner::after {
  aspect-ratio: 190/303;
  background-image: url(../img/tree05.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  right: 2vw;
}
.sec.leadSection .lead {
  position: relative;
  background: #fff;
  padding: 60px 40px;
}
@media screen and (max-width: 1024px) {
  .sec.leadSection .lead {
    padding: 30px 20px;
  }
}
.sec.leadSection .lead {
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .sec.leadSection .lead {
    border-radius: 5px;
  }
}
.sec.leadSection .lead .txt {
  text-align: center;
  line-height: 2.5;
}
.sec.leadSection .lead .list {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .sec.leadSection .lead .list {
    margin-bottom: 15px;
  }
}
.sec.leadSection .lead .list .item {
  text-align: center;
  color: var(--title);
}
.sec.otherColorSection {
  position: relative;
  background-color: var(--base);
}
.sec.otherColorSection::before {
  content: "";
  display: block;
  aspect-ratio: 1920/205;
  -webkit-mask-image: url(../img/shape01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/shape01.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--base);
  width: 100%;
  height: auto;
  position: absolute;
  top: -10.4166666667vw;
  left: 0;
  z-index: 1;
}
.sec.otherColorSection .txt strong {
  color: var(--main);
}
.sec.nextColorSection {
  position: relative;
  background-color: var(--main-light);
}
.sec.nextColorSection::before {
  content: "";
  display: block;
  aspect-ratio: 1920/205;
  -webkit-mask-image: url(../img/shape01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/shape01.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--main-light);
  width: 100%;
  height: auto;
  position: absolute;
  top: -10.4166666667vw;
  left: 0;
  z-index: 1;
}
.sec .txt.mainColor {
  color: var(--main);
  font-weight: 700;
}

.surgery .inner {
  margin-bottom: 80px !important;
}
.surgery__item {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .surgery__item {
    margin-bottom: 30px;
  }
}

body:not(.home) {
  background-color: var(--base);
}
body:not(.home) .header {
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 5;
  background-color: var(--white);
}
body:not(.home) .header .header-box01 {
  width: 100%;
  margin-bottom: 0;
}
body:not(.home) .header .header-box01 .logo {
  max-width: 250px;
  transition: all 0.3s;
}
@media screen and (max-width: 1300px) {
  body:not(.home) .header .header-box01 .logo {
    max-width: 200px;
  }
}
@media screen and (max-width: 1200px) {
  body:not(.home) .header .header-box01 .logo {
    max-width: 150px;
  }
}
body:not(.home) .header .header-content02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  max-width: 1900px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  body:not(.home) .header .header-content02 {
    display: none;
  }
}
body:not(.home) .header .g-nav-tel-pc {
  display: none;
}
body:not(.home) .header .header-menu {
  padding: 0;
  box-shadow: none;
}
body:not(.home) .header .header-menu > li a {
  font-size: clamp(16px, 0.8333333333vw, 1.6rem);
}
@media screen and (max-width: 1024px) {
  body:not(.home) .header .header-menu > li a {
    font-size: clamp(10px, 1.5625vw, 0.8rem);
  }
}
body:not(.home) .header .header-menu > li a {
  padding: 0 1.0416666667vw;
}
@media screen and (max-width: 1400px) {
  body:not(.home) .header .header-menu > li a {
    font-size: clamp(14px, 0.8333333333vw, 1.6rem);
  }
}
@media screen and (max-width: 1400px) and (max-width: 1024px) {
  body:not(.home) .header .header-menu > li a {
    font-size: clamp(10px, 1.5625vw, 0.8rem);
  }
}
@media screen and (max-width: 1200px) {
  body:not(.home) .header .header-menu > li a {
    font-size: clamp(13px, 0.8333333333vw, 1.6rem);
  }
}
@media screen and (max-width: 1200px) and (max-width: 1024px) {
  body:not(.home) .header .header-menu > li a {
    font-size: clamp(10px, 1.5625vw, 0.8rem);
  }
}
@media screen and (max-width: 1100px) {
  body:not(.home) .header .header-menu > li a {
    font-size: clamp(11px, 0.8333333333vw, 1.6rem);
  }
}
@media screen and (max-width: 1100px) and (max-width: 1024px) {
  body:not(.home) .header .header-menu > li a {
    font-size: clamp(10px, 1.5625vw, 0.8rem);
  }
}
body:not(.home) .header.scrolled .g-nav-tel-pc {
  display: block;
}
body:not(.home) .header .sp-header {
  position: relative;
  z-index: 2;
  height: 50px;
  background-color: var(--white);
}
body:not(.home) .sub-header {
  position: relative;
  margin-top: 50px;
}
body:not(.home) .sec:nth-of-type(1) {
  background-color: var(--base);
  padding-top: 0;
}
body:not(.home) .sec:nth-of-type(1) .inner {
  padding: auto;
  margin: auto;
  box-shadow: unset;
}
body:not(.home) .sec .inner {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  body:not(.home) .sec .inner {
    margin-bottom: 40px;
  }
}
body.single #breadcrumbs, body.archive #breadcrumbs, body.all-news #breadcrumbs {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  body.single #breadcrumbs, body.archive #breadcrumbs, body.all-news #breadcrumbs {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1400px) {
  body.single #breadcrumbs, body.archive #breadcrumbs, body.all-news #breadcrumbs {
    padding: 0 15px;
  }
}

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

hr {
  color: #ddd;
}

.single-recruit-post .sub-header-txt {
  background-color: var(--recruit);
  color: var(--white);
}

.archive-time-cat time,
.single-info-date-cat time {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .archive-time-cat time,
  .single-info-date-cat time {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
.archive-time-cat time,
.single-info-date-cat time {
  color: var(--gray);
}

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

.single-info-cat li .p-state,
.archive-info-cat li .p-state {
  background-color: var(--pink);
  border-color: var(--pink);
}
.single-info-cat li .p-state:hover,
.archive-info-cat li .p-state:hover {
  color: var(--pink);
  background-color: var(--white);
}
.single-info-cat li .p-news,
.archive-info-cat li .p-news {
  background-color: var(--yellow);
  border-color: var(--yellow);
}
.single-info-cat li .p-news:hover,
.archive-info-cat li .p-news:hover {
  color: var(--yellow);
  background-color: var(--white);
}
.single-info-cat li .p-mov,
.archive-info-cat li .p-mov {
  background-color: var(--blue);
  border-color: var(--blue);
}
.single-info-cat li .p-mov:hover,
.archive-info-cat li .p-mov:hover {
  color: var(--blue);
  background-color: var(--white);
}
.single-info-cat li .pikopiko-topics,
.archive-info-cat li .pikopiko-topics {
  background-color: var(--orange);
  border-color: var(--orange);
}
.single-info-cat li .pikopiko-topics:hover,
.archive-info-cat li .pikopiko-topics:hover {
  color: var(--orange);
  background-color: var(--white);
}
.single-info-cat li .pikokura-nikki,
.archive-info-cat li .pikokura-nikki {
  background-color: var(--yellow);
  border-color: var(--yellow);
}
.single-info-cat li .pikokura-nikki:hover,
.archive-info-cat li .pikokura-nikki:hover {
  color: var(--yellow);
  background-color: var(--white);
}
.single-info-cat li .pi_careblog,
.archive-info-cat li .pi_careblog {
  background-color: var(--green);
  border-color: var(--green);
}
.single-info-cat li .pi_careblog:hover,
.archive-info-cat li .pi_careblog:hover {
  color: var(--green);
  background-color: var(--white);
}
.single-info-cat li .sparkle-583neo,
.archive-info-cat li .sparkle-583neo {
  background-color: var(--blue);
  border-color: var(--blue);
}
.single-info-cat li .sparkle-583neo:hover,
.archive-info-cat li .sparkle-583neo:hover {
  color: var(--blue);
  background-color: var(--white);
}

.post-type-archive-facility-post {
  background-color: var(--white) !important;
}

.facility-archive {
  position: relative;
}
.facility-archive::before {
  content: "";
  display: block;
  position: absolute;
  height: auto;
  aspect-ratio: 602/2013;
  background-image: url(../img/tree02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 8%;
  top: 0%;
  left: 0;
  z-index: 1;
}
.facility-archive::after {
  content: "";
  display: block;
  position: absolute;
  height: auto;
  aspect-ratio: 616/1494;
  background-image: url(../img/tree01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 8%;
  top: 5%;
  right: 0;
}
.facility-archive-menu {
  padding-bottom: 0;
}
.facility-archive-menu-list {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .facility-archive-menu-list {
    flex-direction: column;
  }
}
.facility-archive-menu-list {
  gap: 5%;
}
.facility-archive-menu-item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .facility-archive-menu-item {
    width: 47%;
  }
}
.facility-archive-menu-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 10px;
}
@media screen and (max-width: 1024px) {
  .facility-archive-menu-item a {
    padding: 5px 5px;
  }
}
.facility-archive-menu-item a {
  border: solid 1px var(--orange);
  color: var(--white);
  background-color: var(--orange);
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .facility-archive-menu-item a {
    border-radius: 4px;
  }
}
.facility-archive-menu-item a {
  position: relative;
}
.facility-archive-menu-item a::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon_arrow02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_arrow02.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--white);
  width: 10px;
}
@media screen and (max-width: 1024px) {
  .facility-archive-menu-item a::after {
    width: 5px;
  }
}
.facility-archive-menu-item a::after {
  height: 10px;
}
@media screen and (max-width: 1024px) {
  .facility-archive-menu-item a::after {
    height: 5px;
  }
}
.facility-archive-menu-item a::after {
  transform: rotate(90deg);
  transition: all 0.3s;
}
.facility-archive-menu-item a:hover {
  background-color: var(--white);
  color: var(--orange);
  transition: all 0.3s;
}
.facility-archive-menu-item a:hover::after {
  background-color: var(--orange);
  transition: all 0.3s;
}
.facility-archive-sec {
  position: relative;
}
.facility-archive-sec::before, .facility-archive-sec::after {
  content: "";
  display: block;
  aspect-ratio: 2100/333;
  background-image: url(../img/flower03.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30%;
  height: auto;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.facility-archive-sec::before {
  left: 5%;
}
.facility-archive-sec::after {
  right: 5%;
  transform: scale(-1, 1);
}
.facility-archive-sec .title01 .en {
  text-transform: capitalize;
}
.facility-archive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
.facility-archive-item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .facility-archive-item {
    width: 47%;
  }
}
.facility-archive-item img {
  aspect-ratio: 3/2;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .facility-archive-item img {
    margin-bottom: 8px;
  }
}
.facility-archive-item .title {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--title);
}

.footer {
  background-color: #d6e7b9;
  position: relative;
}
.footer::before {
  content: "";
  display: block;
  aspect-ratio: 1920/290;
  background-image: url(../img/deco_footer.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: auto;
  position: absolute;
  top: -10.4166666667vw;
  left: 0;
  z-index: 1;
}
.footer-logo img {
  max-width: 300px;
}
@media screen and (max-width: 1024px) {
  .footer-logo img {
    max-width: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .tel {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.footer .tel a {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .footer .tel a {
    gap: 4px;
  }
}
.footer .tel a::before {
  content: "";
  display: block;
  -webkit-mask-image: url(../img/icon_tel.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_tel.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 14px;
  height: 14px;
  background-color: var(--title);
}
.footer .tel a:hover {
  opacity: 1;
  color: var(--main);
}
.footer .tel a:hover::before {
  background-color: var(--main);
}
.footer .fax {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .footer .fax {
    gap: 4px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .fax {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.footer .fax::before {
  content: "";
  display: block;
  -webkit-mask-image: url(../img/icon_fax.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_fax.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 14px;
  height: 14px;
  background-color: var(--title);
}
.footer .footer-nav a {
  transition: color 0.3s, opacity 0.3s;
}
.footer .footer-nav a:hover {
  color: var(--yellow) !important;
  opacity: 1 !important;
}
.footer .footer-nav .menu-item-has-children {
  position: relative;
}
.footer .footer-nav .menu-item-has-children .sub-menu {
  display: block !important;
  padding-left: 10px;
}
@media screen and (max-width: 1024px) {
  .footer .footer-nav .menu-item-has-children .sub-menu {
    padding-left: 5px;
  }
}

/* 遅延をつける */
.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.js-bgLRextend {
  position: relative;
  overflow: hidden;
}
.js-bgLRextend::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--main);
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: left;
  transform: scaleX(0);
}
.js-bgLRextend.is-show::before {
  animation-name: bgLRextend;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes bgLRextend {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.js-flip {
  opacity: 0;
}
.js-flip.is-show {
  animation-name: flipLeftTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes flipLeftTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(-3deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
.js-flipRotate {
  opacity: 0;
}
.js-flipRotate.is-show {
  animation: flipLeftAnime 0.6s forwards;
  perspective-origin: left center;
}

@keyframes flipLeftAnime {
  0% {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  100% {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
.js-fadeUp {
  opacity: 0;
}
.js-fadeUp.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeInRight {
  opacity: 0;
  transform: translate(3%, 0);
  transition: 1s;
}
.js-fadeInRight.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

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

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

.js-scaleUp {
  transform: scale(0, 0);
}
.js-scaleUp.is-show {
  animation-name: scaleUp;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}

.js-scaleUp_duration5s {
  transform: scale(0, 0);
}
.js-scaleUp_duration5s.is-show {
  animation-name: scaleUp;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}

@keyframes scaleUp {
  0% {
    transform: translateY(0px) scale(0.2);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  30%, 100% {
    opacity: 70%;
  }
}
@keyframes scaleUp50 {
  0% {
    transform: translateY(0px) scale(0.2);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  30%, 100% {
    opacity: 50%;
  }
}
.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-diagonal {
  transform: translate(-30%, 30%);
  transition: 1s;
}
.js-diagonal.is-show {
  transform: translate(0, 0);
}

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

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

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

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

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

@keyframes fadeInRotate {
  from {
    transform: rotate(5deg);
    opacity: 0;
  }
  to {
    transform: rotate(0deg);
    opacity: 1;
  }
}
.contact {
  padding-top: 0;
}
.contact .inner {
  background: #fff;
  padding: 60px 40px;
}
@media screen and (max-width: 1024px) {
  .contact .inner {
    padding: 30px 20px;
  }
}
.contact .inner {
  box-shadow: 0 2px 8px rgba(150, 130, 80, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .contact .inner {
    border-radius: 5px;
  }
}
.contact .required,
.contact input[type=submit],
.contact input[type=button] {
  background-color: var(--main);
}
.contact input[type=submit] {
  background-color: var(--main);
  border-color: var(--main);
}
.contact input[type=submit]:hover {
  background-color: var(--white);
  color: var(--main);
}
.contact input[type=radio]:checked:before {
  background: var(--green);
}
.contact input[type=text],
.contact textarea,
.contact input[type=email],
.contact input[type=tel] {
  background: #fff !important;
  border: solid 1px #ddd !important;
  border-radius: 5px;
}

.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;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .contact-form01 th {
    border-bottom: unset;
    text-align: left;
    padding-bottom: 0;
  }
}
.contact-form01 td {
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .contact-form01 td {
    padding: 10px;
  }
}
.contact-form01 tr:last-of-type th,
.contact-form01 tr:last-of-type td {
  border: none;
}

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

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

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

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

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

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

.faq__list li {
  width: 100%;
  margin-bottom: 10px;
}
.faq__list li:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.faq__list li:last-of-type ._q {
  border-bottom: none;
  margin-bottom: 0;
}

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

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

.plus {
  display: inline-block;
  vertical-align: 0.3em;
  color: var(--main);
  line-height: 1;
  width: 1em;
  height: 3px;
  background: currentColor;
  border-radius: 0.1em;
  position: absolute;
  top: 10px;
}
@media screen and (max-width: 1024px) {
  .plus {
    top: 5px;
  }
}
.plus {
  right: 0;
}
.plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.plus.active:before {
  transform: rotate(0deg);
}

@media screen and (max-width: 1024px) {
  ._q,
  ._a {
    padding-left: 28px;
    background-repeat: no-repeat;
    background-size: 25px auto;
    background-position: top 1px left 0;
    font-size: 1.2rem;
  }
  .faq__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.contact-band {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  background-image: url(../img/photo_02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 1024px) {
  .contact-band {
    background-attachment: unset;
  }
}
.contact-band::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: #000;
  opacity: 0.4;
  z-index: 1;
}
.contact-band-inner {
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 2;
}
.contact-band .title01 .en {
  color: var(--white) !important;
}
.contact-band .title01 .ja {
  color: var(--white);
}
.contact-band .title01 .ja span {
  color: var(--white);
}
.contact-band .cf-cb-txt {
  color: var(--white);
}
.contact-band .contact-band-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .contact-band .contact-band-btn {
    gap: 5px;
  }
}
.contact-band .contact-band-btn {
  padding: 20px 50px;
}
@media screen and (max-width: 1024px) {
  .contact-band .contact-band-btn {
    padding: 10px 25px;
  }
}
.contact-band .contact-band-btn::before {
  content: "";
  display: block;
  background-color: var(--white);
  -webkit-mask-image: url(../img/icon_mail.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_mail.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 16px;
}
@media screen and (max-width: 1024px) {
  .contact-band .contact-band-btn::before {
    width: 8px;
  }
}
.contact-band .contact-band-btn::before {
  height: 16px;
}
@media screen and (max-width: 1024px) {
  .contact-band .contact-band-btn::before {
    height: 8px;
  }
}
.contact-band .contact-band-btn::before {
  z-index: 1;
  position: unset;
  margin: 0;
}
.contact-band .cf-cb-head .ja {
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
}
.contact-band .cf-cb-head .en {
  display: none;
}
.contact-band .cf-tel-number {
  letter-spacing: 0.15em;
  font-size: clamp(16px, 1.25vw, 2.4rem);
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-tel-number {
    font-size: clamp(12px, 2.34375vw, 1.2rem);
  }
}
.contact-band .cf-tel-number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-tel-number {
    gap: 3px;
  }
}
.contact-band .cf-tel-number {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.15em;
  font-weight: 600;
  transition: all 0.3s ease-in;
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-tel-number {
    margin-bottom: 16px;
  }
}
.contact-band .cf-tel-number::before {
  content: "";
  display: block;
  aspect-ratio: 957/1503;
  -webkit-mask-image: url(../img/icon_tel.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_tel.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--white);
  width: 0.9375vw;
  height: auto;
  z-index: 1;
  transition: all 0.3s ease-in;
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-tel-number::before {
    width: 10px;
  }
}
.contact-band .cf-tel-number:hover {
  color: var(--main);
}
.contact-band .cf-tel-number:hover::before {
  background-color: var(--main);
}
.contact-band .contact-band-tel-box .cf-tel-number:hover {
  color: var(--main) !important;
  opacity: 1 !important;
  transition: all 0.3s ease-in;
}
.contact-band .contact-band-tel-box .cf-tel-number:hover::before {
  background-color: var(--main) !important;
  transition: all 0.3s ease-in;
}

.note {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .note {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.note {
  color: var(--title);
  text-align: center;
  margin-bottom: 0;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--main);
}

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

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

main.panelactive {
  display: none;
}

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