@charset "UTF-8";
.-center {
  text-align: center !important;
}

.-right {
  text-align: right !important;
}

.-left {
  text-align: left !important;
}

@media only screen and (max-width: 640px) {
  .-sp-center {
    text-align: center !important;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-right {
    text-align: right !important;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-left {
    text-align: left !important;
  }
}

.-bold {
  font-weight: bold;
}

.-sp {
  display: none !important;
}
@media only screen and (max-width: 640px) {
  .-sp {
    display: inherit !important;
  }
}

@media only screen and (max-width: 640px) {
  .-pc {
    display: none !important;
  }
}

.notes {
  margin-top: 0.5em;
  font-size: 1.3rem;
}

.animation {
  opacity: 0;
}

.-isFade {
  opacity: 0;
  position: relative;
  bottom: -3em;
}
.-isFade.isPlay {
  animation: fadein 0.75s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
    bottom: -4.8rem;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
.-isFade02 {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.-isFade02::before, .-isFade02::after {
  content: "";
  background: linear-gradient(270deg, #FFF 49.59%, rgba(255, 255, 255, 0) 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
}
.-isFade02.isPlay {
  opacity: 1;
}
.-isFade02.isPlay::after {
  opacity: 0;
  left: 100%;
  transition: 2s;
}
.-isFade02.isPlay::before {
  opacity: 0;
  left: 100%;
  transition: 1s;
}

.-isLeft {
  opacity: 0;
  position: relative;
  left: -3em;
}
.-isLeft.isPlay {
  animation: Leftin 1s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes Leftin {
  0% {
    opacity: 0;
    left: -3em;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.-isRight {
  opacity: 0;
  position: relative;
  left: 3em;
}
.-isRight.isPlay {
  animation: Rightin 1s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes Rightin {
  0% {
    opacity: 0;
    left: 3em;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.-isRotate {
  animation: Rotate 60s linear infinite;
  opacity: 1;
}

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.-isRepeat {
  animation: Repeat 1s ease-in-out infinite alternate;
  opacity: 1;
}

@keyframes Repeat {
  from {
    transform: rotate(-10deg);
  }
  to {
    transform: rotate(10deg);
  }
}
.bg {
  padding: 8rem 0;
}
@media only screen and (max-width: 640px) {
  .bg {
    padding: 9.375vw 0;
  }
}
.bg.-lgreen {
  background: #F2F8E6;
}
.bg.-lgray {
  background: #F6F6F6;
}

.frame-border {
  border: solid 2px #231815;
  border-radius: 1.6rem;
  padding: 4rem;
}
@media only screen and (max-width: 640px) {
  .frame-border {
    padding: 3.75vw;
  }
}

.-border {
  border: solid 2px #231815;
  border-radius: 2.4rem;
  overflow: hidden;
}

.page_nav {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 640px) {
  .page_nav {
    margin-bottom: 11.25vw;
  }
}
.page_nav_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem;
}
@media only screen and (max-width: 640px) {
  .page_nav_list {
    gap: 2.5vw;
  }
}
.page_nav_item {
  min-width: 19rem;
}
@media only screen and (max-width: 640px) {
  .page_nav_item {
    width: 27.1875vw;
    min-width: initial;
  }
}
.page_nav_item a,
.page_nav_item span {
  padding: 0.25em;
  display: block;
  font-size: 2rem;
  border-radius: 2em;
  border: solid 2px #231815;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .page_nav_item a,
  .page_nav_item span {
    padding: 0.5em;
    font-size: 3.125vw;
  }
}
.page_nav_item a.act,
.page_nav_item span.act {
  color: #231815;
}

.button-more {
  margin-top: 4rem;
  display: block;
}
.button-more span,
.button-more a {
  padding: 2.4rem 5.6rem 2.4rem 4.8rem;
  border: solid 2px #4C453A;
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 2rem;
  justify-content: flex-start;
  text-decoration: none;
  color: #fff;
  border-radius: 1000px;
  background: #fff url(../img/common/arrow_s_brown.svg) no-repeat right 2.4rem center;
  background-size: 2rem;
  font-weight: 700;
  min-width: 28rem;
  color: #4C453A;
  line-height: 1.3;
}
@media only screen and (max-width: 640px) {
  .button-more span,
  .button-more a {
    padding: 3.75vw 10vw 3.75vw 6.25vw;
    font-size: 3.125vw;
    min-width: 56.25vw;
    background: #fff url(../img/common/arrow_s_brown.svg) no-repeat right 3.75vw center;
    background-size: 3.125vw;
  }
}

.title {
  line-height: 1.4;
}
.title-withEn {
  margin-bottom: 5.6rem;
}
@media only screen and (max-width: 640px) {
  .title-withEn {
    margin-bottom: 8.75vw;
  }
}
.title-withEn .en {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 8rem;
  line-height: 1.4;
  font-weight: 300;
}
.title-withEn .en::first-letter {
  color: #231815;
}
@media only screen and (max-width: 1580px) {
  .title-withEn .en {
    font-size: 6.8rem;
  }
}
@media only screen and (max-width: 640px) {
  .title-withEn .en {
    font-size: 8.75vw;
  }
}
.title-withEn .jp {
  font-size: 2.4rem;
}
@media only screen and (max-width: 640px) {
  .title-withEn .jp {
    font-size: 4.0625vw;
  }
}
.title-large {
  margin: 1.5em 0;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: #4C453A;
  text-align: center;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 640px) {
  .title-large {
    font-size: 6.25vw;
    letter-spacing: 0.05em;
  }
}
.title-mlarge {
  margin: 1.5em 0;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #4C453A;
  text-align: center;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 640px) {
  .title-mlarge {
    font-size: 5vw;
    letter-spacing: 0.05em;
  }
}
.title-middle {
  margin: 1.5em 0;
  font-size: 4rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .title-middle {
    font-size: 5vw;
  }
}
.title-small {
  margin: 1.5em 0;
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .title-small {
    font-size: 4.375vw;
  }
}
.title-xsmall {
  margin: 1em 0;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .title-xsmall {
    margin: 1.5em 0;
    font-size: 4.0625vw;
  }
}
.title-xxsmall {
  margin: 1em 0;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .title-xxsmall {
    margin: 1.5em 0;
    font-size: 3.75vw;
  }
}

.table_container {
  margin: 4rem 0 6rem;
}
@media only screen and (max-width: 640px) {
  .table_container {
    margin: 6.25vw 0 9.375vw;
  }
}
.table_container.-scroll {
  overflow-x: scroll;
}
.table_container.-scroll .table_item {
  min-width: 114rem;
}
.table_item {
  width: 100%;
}
.table_item th,
.table_item td {
  padding: 1em 1.5em;
  border: solid 1px #ddd;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .table_item th,
  .table_item td {
    padding: 0.75em 0.75em;
    font-size: 2.8125vw;
  }
}
.table_item th {
  font-weight: 700;
  background: #F2F8E6;
}
.table_item th.-bgGreen {
  background: #231815;
  color: #fff;
}
.table_item td {
  background: #fff;
}
.table_item .line {
  background: url(../img/common/line_table.png) no-repeat left top;
  background-size: 100% 100%;
}
.table_item .-w10 {
  width: 10%;
}
.table_item .-w15 {
  width: 15%;
}
.table_item .-w20 {
  width: 20%;
}
.table_item .-w25 {
  width: 25%;
}
.table_item .-w33 {
  width: 33.3333333333%;
}
.table_item .-w40 {
  width: 40%;
}
.table_item .-w50 {
  width: 50%;
}
.table_item .-w55 {
  width: 55%;
}
.table_item .-w60 {
  width: 60%;
}
.table_item .-w66 {
  width: 66.6666666667%;
}
.table_item .-w75 {
  width: 75%;
}
.table_item .-w80 {
  width: 80%;
}
@media only screen and (max-width: 640px) {
  .table_item .-spAuto {
    width: auto;
  }
}
@media only screen and (max-width: 640px) {
  .table_item.-spBlock {
    display: block;
  }
  .table_item.-spBlock tbody,
  .table_item.-spBlock tr,
  .table_item.-spBlock th,
  .table_item.-spBlock td {
    display: block;
    width: 100%;
  }
}

.nav-below {
  margin: 10rem 0 0;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .nav-below {
    margin: 7.8125vw 0 0;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  font-size: 2rem;
}
@media only screen and (max-width: 640px) {
  .wp-pagenavi {
    font-size: 3.125vw;
  }
}
.wp-pagenavi span,
.wp-pagenavi a {
  border: none !important;
  min-width: 4rem;
  height: 4rem;
  margin: 0 5px;
  background: #F2F8E6;
  text-align: center;
  font-weight: 700;
}
@media only screen and (max-width: 640px) {
  .wp-pagenavi span,
  .wp-pagenavi a {
    margin: 0 0.78125vw;
    min-width: 6.25vw;
    height: 6.25vw;
  }
}
.wp-pagenavi span:hover, .wp-pagenavi span.current {
  border: none !important;
  background: #231815;
  color: #fff;
}
.wp-pagenavi a:hover, .wp-pagenavi a.current {
  background: #231815;
  color: #fff;
}

.content {
  margin: 10rem auto;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .content {
    margin: 3.125vw auto 9.375vw;
  }
}

.slick-slider .slick-arrow {
  width: 2.8rem;
  height: 2.8rem;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.slick-slider .slick-arrow::before {
  content: "";
}
.slick-slider .slick-prev {
  left: 0;
  background: url(../img/common/arrow_prev.svg) no-repeat center center;
}
.slick-slider .slick-prev:hover {
  opacity: 0.6;
  background: url(../img/common/arrow_prev.svg) no-repeat center center;
}
.slick-slider .slick-next {
  right: 0;
  background: url(../img/common/arrow_next.svg) no-repeat center center;
}
.slick-slider .slick-next:hover {
  opacity: 0.6;
  background: url(../img/common/arrow_next.svg) no-repeat center center;
}
.slick-slider .slick-dots {
  bottom: 0;
  z-index: 1;
  bottom: -4.5rem;
}
@media only screen and (max-width: 640px) {
  .slick-slider .slick-dots {
    bottom: -7.03125vw;
  }
}
.slick-slider .slick-dots li {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 1rem;
}
@media only screen and (max-width: 640px) {
  .slick-slider .slick-dots li {
    width: 2.34375vw;
    height: 2.34375vw;
    margin: 0 1.5625vw;
  }
}
.slick-slider .slick-dots li button {
  padding: 0;
}
.slick-slider .slick-dots li button:before {
  content: "●";
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  border-radius: 0.6rem;
  color: transparent;
  opacity: 1;
}
@media only screen and (max-width: 640px) {
  .slick-slider .slick-dots li button:before {
    width: 2.34375vw;
    height: 2.34375vw;
  }
}
.slick-slider .slick-dots li.slick-active button::before {
  content: "";
  background: #F2F8E6;
}

.mt-l {
  margin-top: 4em;
}
@media only screen and (max-width: 640px) {
  .mt-l {
    margin-top: 2em;
  }
}

.mt-ml {
  margin-top: 3em;
}
@media only screen and (max-width: 640px) {
  .mt-ml {
    margin-top: 2em;
  }
}

.mt-m {
  margin-top: 2em;
}
@media only screen and (max-width: 640px) {
  .mt-m {
    margin-top: 1.6em;
  }
}

.mt-sm {
  margin-top: 1.5em;
}
@media only screen and (max-width: 640px) {
  .mt-sm {
    margin-top: 1em;
  }
}

.mt-s {
  margin-top: 1em;
}
@media only screen and (max-width: 640px) {
  .mt-s {
    margin-top: 0.75em;
  }
}

.mt-ss {
  margin-top: 0.5em;
}

.mt-0 {
  margin-top: 0;
}

@media only screen and (max-width: 640px) {
  .-sp-mt-0 {
    margin-top: 0;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-mt-m {
    margin-top: 2em;
  }
}

.mb-l {
  margin-bottom: 4em;
}
@media only screen and (max-width: 640px) {
  .mb-l {
    margin-bottom: 3em;
  }
}

.mb-ml {
  margin-bottom: 3em;
}
@media only screen and (max-width: 640px) {
  .mb-ml {
    margin-bottom: 2.4em;
  }
}

.mb-m {
  margin-bottom: 2em;
}
@media only screen and (max-width: 640px) {
  .mb-m {
    margin-bottom: 1.6em;
  }
}

.mb-sm {
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 640px) {
  .mb-sm {
    margin-bottom: 1em;
  }
}

.mb-s {
  margin-bottom: 1em;
}
@media only screen and (max-width: 640px) {
  .mb-s {
    margin-bottom: 0.75em;
  }
}

.mb-ss {
  margin-bottom: 0.5em;
}

.mb-0 {
  margin-bottom: 0;
}

@media only screen and (max-width: 640px) {
  .-sp-mb-0 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-mb-s {
    margin-bottom: 1em;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-mb-sm {
    margin-bottom: 1.5em;
  }
}

.-colorBlack {
  color: #4C453A !important;
}

.-colorRed {
  color: rgb(255, 0, 0);
}

.-colorGreen {
  color: #231815;
}

.-colorGray {
  color: rgb(91, 95, 98);
}

.-underLine {
  text-decoration: underline;
}

.-weight700 {
  font-weight: 700;
}

.-size14 {
  font-size: 1.4rem;
}
@media only screen and (max-width: 640px) {
  .-size14 {
    font-size: 2.8125vw;
  }
}
.-size16 {
  font-size: 1.6rem;
}
@media only screen and (max-width: 640px) {
  .-size16 {
    font-size: 2.5vw;
  }
}
.-size20 {
  font-size: 2rem;
}
@media only screen and (max-width: 640px) {
  .-size20 {
    font-size: 3.75vw;
  }
}
.-size24 {
  font-size: 2.4rem;
}
@media only screen and (max-width: 640px) {
  .-size24 {
    font-size: 4.375vw;
  }
}
.-size28 {
  font-size: 2.8rem;
}
@media only screen and (max-width: 640px) {
  .-size28 {
    font-size: 4.375vw;
  }
}
.-size32 {
  font-size: 3.2rem;
}
@media only screen and (max-width: 640px) {
  .-size32 {
    font-size: 5.625vw;
  }
}

.-nowrap {
  white-space: nowrap;
}

/* 例：画像ラッパー */
.figure-wrap {
  position: relative;
}/*# sourceMappingURL=module.css.map */