@charset "UTF-8";
html,
body {
  overflow-x: hidden;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #333333;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.075em;
  position: relative;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

a {
  cursor: pointer;
}

.inner {
  max-width: calc(1200px + 2%);
  margin: 0 auto;
  padding: 0 1%;
}
@media screen and (max-width: 1024px) {
  .inner {
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 5%;
  }
}

.inner__sub {
  max-width: 86.6666666667vw;
  margin: 0 auto;
}

.inner__small {
  max-width: calc(1080px + 2%);
  margin: 0 auto;
  padding: 0 1%;
}
@media screen and (max-width: 1024px) {
  .inner__small {
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
  .inner__small {
    padding: 0 5%;
  }
}

.inner__mid {
  max-width: calc(1400px + 2%);
  margin: 0 auto;
  padding: 0 1%;
}
@media screen and (max-width: 1024px) {
  .inner__mid {
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
  .inner__mid {
    padding: 0 5%;
  }
}

.inner__large {
  max-width: calc(1820px + 2%);
  margin: 0 auto;
  padding: 0 1%;
}
@media screen and (max-width: 1024px) {
  .inner__large {
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
  .inner__large {
    padding: 0 5%;
  }
}

.min400 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.min500 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.min600 {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.min700 {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.en400 {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
}

.en500 {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  font-style: normal;
}

.en700 {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 700;
  font-style: normal;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0); /* 最終位置を元に戻す */
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.section__ttl {
  text-align: center;
  margin-block-end: clamp(1.125rem, 0.05rem + 4.61vw, 3.5rem);
}
.section__ttl .en {
  display: block;
  font-size: clamp(2rem, 1.55rem + 1.94vw, 3rem);
  text-transform: uppercase;
}
.section__ttl .ja {
  display: block;
  font-size: clamp(0.875rem, 0.76rem + 0.48vw, 1.125rem);
}

.section__btn > a {
  padding-block: 1rem;
  padding-inline: 2.5rem;
  background-color: #674598;
  color: #ffffff;
  font-size: clamp(1rem, 0.89rem + 0.48vw, 1.25rem);
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
}
.section__btn > a::before {
  content: "";
}
.section__btn > a::after {
  justify-self: end;
  content: "→";
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  width: 100%;
  height: 0.9375rem;
}
.swiper-pagination span {
  cursor: pointer;
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: #cccccc;
}
.swiper-pagination span[class*=active] {
  background-color: #645d8a;
}

div[class*=button] {
  cursor: pointer;
  width: clamp(2.5rem, 2.3rem + 0.85vw, 2.9375rem);
  height: 3.875rem;
  background: #645d8a;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 99;
}
@media screen and (max-width: 768px) {
  div[class*=button] {
    left: -5%;
  }
}
div[class*=button]::before, div[class*=button]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% - 1px);
  width: 14px;
  height: 2px;
  background-color: #fff;
  transform-origin: 1px 50%;
}
div[class*=button]::before {
  transform: translateX(-50%) rotate(45deg);
}
div[class*=button]::after {
  transform: translateX(-50%) rotate(-45deg);
}

div[class*=next] {
  left: auto;
}
@media screen and (max-width: 768px) {
  div[class*=next] {
    right: -5%;
  }
}
div[class*=next]::before, div[class*=next]::after {
  transform-origin: calc(100% - 1px) 50%;
}
div[class*=next]::before {
  transform: translateX(-50%) rotate(45deg);
}
div[class*=next]::after {
  transform: translateX(-50%) rotate(-45deg);
}

.nav-links ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-block-start: 2rem;
}

.nav-links li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  height: 45px;
}

.nav-links li > *:not(.dots) {
  width: 45px;
  border-radius: 50%;
  color: #0c719f;
  background: #efefef;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-links li > .current,
.nav-links li > a:hover {
  color: #ffffff;
  background: #0c719f;
}

.contact__tbl {
  width: 100%;
}
.contact__tbl th,
.contact__tbl td {
  font-size: clamp(0.875rem, 0.87rem + 0.42vw, 1.25rem);
  border-bottom: 2px dashed #674598;
  padding-top: clamp(1.5rem, 1.47rem + 1.14vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 1.47rem + 1.14vw, 2.5rem);
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .contact__tbl th,
  .contact__tbl td {
    display: block;
  }
}
.contact__tbl th {
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__tbl th {
    width: 100%;
    border-bottom: 0px dashed #674598;
    padding-bottom: 1rem;
    text-align: left;
  }
}
.contact__tbl td {
  width: 70%;
  padding-left: clamp(1.5rem, 1.43rem + 2.86vw, 4rem);
}
@media screen and (max-width: 768px) {
  .contact__tbl td {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }
}
.contact__tbl .bbn th,
.contact__tbl .bbn td {
  border-bottom: 0px dashed #674598;
}
.contact__tbl .required {
  color: red;
}
.contact__tbl textarea {
  width: 100% !important;
  padding: 0.5rem 0;
  border: 1px solid #eee;
  border-radius: 3px;
  background-color: #d3d3d3;
}
.contact__tbl input {
  padding: 0.5rem 0;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  line-height: 1;
}
.contact__tbl input[type=text], .contact__tbl input[type=email] {
  width: 100%;
  background-color: #d3d3d3;
}
.contact__tbl input[type=file] {
  background: none;
}
.contact__tbl input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}
.contact__tbl input[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}
.contact__tbl input[type=submit], .contact__tbl input[type=button] {
  color: #ffffff;
  background: #674598;
  width: clamp(10rem, 7.7rem + 12.28vw, 18.75rem);
  height: 80px;
  border-radius: 44px;
  font-size: clamp(0.875rem, 0.87rem + 0.56vw, 1.375rem);
  text-align: center;
  display: block;
  margin: 1rem auto 0;
}
@media screen and (max-width: 768px) {
  .contact__tbl input[type=submit], .contact__tbl input[type=button] {
    height: 40px;
    border-radius: 20px;
  }
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}
.wpcf7-form-control.wpcf7-checkbox span.wpcf7-list-item {
  position: relative;
  margin: 0 50px 10px 0 !important;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control.wpcf7-checkbox span.wpcf7-list-item {
    display: block;
    width: 100%;
    margin: 0 0 10px 0 !important;
  }
}
.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.wpcf7-form-control.wpcf7-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label:before {
  content: "";
  display: inline-block;
  border: 1px solid #333;
  width: 20px;
  height: 20px;
  position: relative;
  top: 0px;
  margin-right: 10px;
  vertical-align: middle;
  text-align: center;
  transition: all 250ms ease;
}
.wpcf7-form-control.wpcf7-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: url("../img/cmn/check_icon.webp") no-repeat center;
  background-size: contain;
}

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control.wpcf7-radio {
    flex-wrap: wrap;
  }
}
.wpcf7-form-control.wpcf7-radio span.wpcf7-list-item {
  position: relative;
  margin: 0 50px 0px 0 !important;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control.wpcf7-radio span.wpcf7-list-item {
    display: block;
    flex-basis: 50%;
    width: 100%;
    margin: 0 0 0px 0 !important;
  }
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
  font-size: 14px;
  font-size: clamp(0.875rem, 0.87rem + 0.42vw, 1.25rem);
  display: flex;
  align-items: center;
}
.wpcf7-form-control.wpcf7-radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label:before {
  content: "";
  display: inline-block;
  border: 1px solid #333;
  background: #ffffff;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  position: relative;
  top: 0;
  margin-right: 10px;
  vertical-align: middle;
  text-align: center;
  transition: all 250ms ease;
}
.wpcf7-form-control.wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label:before {
  background-color: #0c719f;
  box-shadow: inset 0 0 0 2px #fff;
}

.wpcf7-form-control.wpcf7-acceptance {
  display: flex;
  flex-wrap: wrap;
}
.wpcf7-form-control.wpcf7-acceptance span.wpcf7-list-item {
  position: relative;
  margin: 0 50px 0 0 !important;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control.wpcf7-acceptance span.wpcf7-list-item {
    display: block;
    width: 100%;
    margin: 0 0 10px 0 !important;
  }
}
.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.wpcf7-form-control.wpcf7-acceptance input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label:before {
  content: "";
  display: inline-block;
  border: 1px solid #333;
  width: 20px;
  height: 20px;
  position: relative;
  top: 0px;
  margin-right: 10px;
  vertical-align: middle;
  text-align: center;
  transition: all 250ms ease;
}
.wpcf7-form-control.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: url("../img/cmn/check_icon.webp") no-repeat center;
  background-size: contain;
}

.select {
  display: inline-block;
  position: relative;
  width: 250px;
  border: 1px solid #333;
}
.select .wpcf7-form-control {
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
}
.select::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 14px;
  right: 14px;
  pointer-events: none;
}
.select .wpcf7-form-control {
  appearance: none;
  -webkit-appearance: none;
  /*Google Chrome/Safari対応*/
  -moz-appearance: none;
  /*Firefox対応*/
  -o-appearance: none;
  /*Opera対応*/
}