/* ============================================
// HEADER
// ==========================================*/
/*--------------------
  header
--------------------*/
.top__header {
  display: flex;
  height: 100vh;
  min-height: 550px;
}

@media screen and (max-width: 834px) {
  .top__header {
    height: auto;
    min-height: auto;
  }
}

.header {
  position: relative;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 300px;
  padding: 30px;
  transition: .3s;
}

@media screen and (max-width: 834px) {
  .header__inner {
    display: none;
  }
}

/* .illustArea{
  margin-bottom: 10px;
} */

.header__commonLogo01 .txtArea {
  display: flex;
}

.header__commonLogo01 .txtArea .sub {
  font-size: 1.2rem;
  color: #461919;
  border: 1px solid #461919;
  display: inline-block;
  line-height: 1;
  padding: 8px 12px;
  margin: 10px auto 0;
  background-color: #fff;
}

.header__navi .header__naviList {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px 0;
  margin-bottom: 100px;
}

.header__navi .header__naviList__item a {
  position: relative;
  color: #694b2d;
  padding-left: 25px;
  font-size: 1.9rem;
  font-weight: bold;
}

.header__navi .header__naviList__item a::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  content: "";
  vertical-align: middle;
  color: #ed8e2f;
  line-height: 1;
  width: .5em;
  height: .5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) translateY(-45%) rotate(45deg);
}

/* MAIN VISUAL */
.mainVisual {
  position: relative;
  background: #D0DFD5;
  width: calc(100% - 300px);
}

@media screen and (max-width: 834px) {
  .mainVisual {
    width: 100%;
    padding-top: 80px;
  }
}

.mainVisual::before {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 2;
  background: rgb(59, 55, 48);
  background: linear-gradient(0deg, rgba(59, 55, 48, 1) 0%, rgba(201, 198, 193, 0) 60%);
  opacity: .66;
  content: "";
}

.img-mainvisual {
  position: relative;
  width: 100%;
}

.img-frame {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media screen and (max-width: 834px) {
  .img-frame {
    height: 66.792929292vw;
  }
}

.img-01,
.img-02,
.img-03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.img-01 {
  background-image: url('../img/top-image01.jpg');
  animation: slide-animation-01 15s infinite;
}

@media screen and (max-width: 544px) {
  .img-01 {
    background-image: url('../img/top-image01_sp.jpg');
  }
}

.img-02 {
  background-image: url('../img/top-image02.jpg');
  animation: slide-animation-02 15s infinite;
}

@media screen and (max-width: 544px) {
  .img-02 {
    background-image: url('../img/top-image02_sp.jpg');
  }
}

.img-03 {
  background-image: url('../img/top-image03.jpg');
  animation: slide-animation-03 15s infinite;
}

@media screen and (max-width: 544px) {
  .img-03 {
    background-image: url('../img/top-image03_sp.jpg');
  }
}

@keyframes slide-animation-01 {
  0% {
    opacity: 1;
    transform: scale(1.2);
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
    transform: scale(1.0);
  }

  90% {
    opacity: 0
  }

  100% {
    opacity: 0;
    transform: scale(1.0);
  }
}

@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 0;
    transform: scale(1.2);
  }

  35% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  70% {
    opacity: 0;
    transform: scale(1.0);
  }

  100% {
    opacity: 0;
  }
}

@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }

  60% {
    opacity: 0;
    transform: scale(1.2);
  }

  65% {
    opacity: 0;
  }

  75% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.0);
  }
}

.top-copy {
  position: absolute;
  left: min(6.25vw, 90px);
  top: min(3.33333vw, 48px);
  z-index: 100;
  width: min(55.55556vw, 800px);
}

.top-copy img {
  width: 100%;
}


@media all and (max-width: 544px) {
  .main__container {
    margin-top: 0;
  }
}

/* INFORMATION */
#sec__news {
  padding: 6em 0 12em;
  background: url(../img/bg_top_news.png) no-repeat bottom;
  background-size: 100%;
}

@media screen and (max-width: 544px) {
  #sec__news {
    padding: 30px 0 42px;
  }
}

.ttl__info {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1em;
  text-align: center;
  padding-bottom: min(2.02703vw, 30px);
}

/* @media screen and (max-width: 544px) {
  .ttl__info {
    padding-bottom: min(4.26667vw, 16px);
  }
} */

.top-info-cont {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 834px) {
  .top-info-cont {
    flex-direction: column;
  }
}

.top-info-list {
  width: 82%;
  /* padding: min(3.24324vw, 48px) 0; */
}

@media screen and (max-width: 834px) {
  .top-info-list {
    width: 100%;
    /* padding: 0 18px 0 0; */
  }
}

.news__item {
  display: flex;
  align-items: center;
  padding: 9px 48px;
  padding: min(0.60811vw, 9px) min(3.24324vw, 48px);
  border-top: 1px solid #d2cdaa;
}

@media screen and (max-width: 834px) {
  .news__item {
    padding: min(1.33333vw, 5px);
    column-gap: min(1.04167vw, 8px);
    font-size: clamp(1.0rem, 1.82292vw, 1.4rem);
  }
}

@media screen and (max-width: 544px) {
  .news__item {
    font-size: 1.0rem;
  }
}

.news__item:last-child {
  border-bottom: 1px solid #C0C0C0;
}

.news__item__time {
  width: 85px;
}

@media screen and (max-width: 834px) {
  .news__item__time {
    width: min(11.45833vw, 88px);
  }
}

@media screen and (max-width: 544px) {
  .news__item__time {
    width: 7rem;
  }
}

.news__item__ttl {
  margin-left: min(4.05045vw, 60px);
  line-height: 1.2;
}

@media screen and (max-width: 834px) {
  .news__item__ttl {
    margin-left: 0;
  }
}

@media screen and (max-width: 544px) {
  .news__item__ttl {
    font-size: 1.2rem;
    /* width: min(40vw, 150px); */
  }
}

/* CATCH COPY */
#sec__catchcopy {
  padding: 6em 0;
  background: #fff4eb url(../img/bg_wave.png) no-repeat center top 3%;
  background-size: 100%;
}

@media screen and (max-width: 834px) {
  #sec__catchcopy {
    padding: 1.5em 0;
  }
}

.catchcopy__head {
  text-align: center;
  font-size: 5.2rem;
  color: #3f3f3f;
}

@media screen and (max-width: 834px) {
  .catchcopy__head {
    font-size: 2.6rem;
  }
}

.catchcopy__head span{
  border-bottom: 1px solid #ed8e2f;
}

#sec__catchcopy .desc {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 544px) {
  #sec__catchcopy .desc {
    text-align: left;
    width: 90%;
    margin: 40px auto 0;
  }
}

@media screen and (max-width: 544px) {
  #sec__catchcopy .desc {
    margin: 20px auto 0;
    text-align: center;
  }
}

/* PHOTO GALLERY */
.top__photoGallery {
  margin-top: 40px;
}

@media screen and (max-width: 544px) {
  .top__photoGallery {
    margin-top: 20px;
  }
}

.infinity__slide {
  display: flex;
  gap: 0 40px;
  overflow: hidden;
}

@media screen and (max-width: 544px) {
  .infinity__slide {
    gap: 0 20px;
  }
}

.photoContainer {
  display: flex;
  align-items: center;
  gap: 0 40px;
  animation: loop 80s 0s linear infinite;
}

@media screen and (max-width: 544px) {
  .photoContainer {
    gap: 0 20px;
  }

  .photoContainer img{
    width: 100%;
  }
}

.imgWrap01,
.imgWrap05 {
  width: 400px;
}

@media screen and (max-width: 544px) {
  .imgWrap01,
  .imgWrap05 {
    width: 200px;
  }
}

.imgWrap02,
.imgWrap04 {
  width: 230px;
}

@media screen and (max-width: 544px) {
  .imgWrap02,
  .imgWrap04 {
    width: 115px;
  }
}

.imgWrap03 {
  width: 350px;
}

@media screen and (max-width: 544px) {
  .imgWrap03 {
    width: 175px;
  }
}

.photoContainer .img02,
.photoContainer .img05 {
  margin-bottom: 20px;
}

@media screen and (max-width: 544px) {
  .photoContainer .img02,
  .photoContainer .img05 {
    margin-bottom: 10px;
  }
}

/* 画像横スクロール */
@keyframes loop {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

#sec__catchcopy .btnArea {
  width: 700px;
  display: flex;
  justify-content: space-between;
  margin: 40px auto 0;
}

@media (max-width: 1300px) {
  #sec__catchcopy .btnArea {
    width: 600px;
  }
}

@media (max-width: 834px) {
  #sec__catchcopy .btnArea {
    width: 460px;
  }
}
@media screen and (max-width: 544px) {
    #sec__catchcopy .btnArea {
      width: 90%;
      flex-direction: column;
      align-items: center;
      gap: 10px 0;
      margin: 20px auto 0;
  }
}
.commonEng01 {
  position: absolute;
  top: -0;
  right: -3.6rem;
  z-index: 3;
}

@media screen and (max-width: 834px) {
  .commonEng01 {
    font-size: 2.0rem;
    right: -2.0rem;
    writing-mode: vertical-rl;
  }
}

.commonHead01 .ttl {
  font-size: 5.4rem;
  font-weight: bold;
  color: #3f3f3f;
  position: relative;
}

@media screen and (max-width: 834px) {
  .commonHead01 .ttl {
    font-size: 2.6rem;
  }
}

.commonHead01 .ttl::after {
  position: absolute;
  bottom: 0;
  left: 1.5em;
  width: calc(100% - 1.5em);
  height: 100%;
  border-bottom: 1px solid #ed8e2f;
  transition: .3s;
  content: '';
}

@media screen and (max-width: 544px) {
  .commonHead01 .ttl::after {
    width: calc(100% - 2.2rem);
  }
}

/* CHARM POINT */
#sec__charmpoint {
  margin-top: 6em;
  padding-bottom: 180px;
  background: url(../img/bg_top_charmpoint.png) no-repeat right 5% bottom;
  position: relative;
}

@media all and (max-width: 1300px) {
  #sec__charmpoint {
    margin-top: 80px;
  }
}

@media all and (max-width: 834px) {
  #sec__charmpoint {
    margin-top: 40px;
  }
}

@media all and (max-width: 544px) {
  #sec__charmpoint {
    margin-top: 40px;
    padding-bottom: 108px;
    background-size: 20%;
  }
}

.innerWrap {
  max-width: 1030px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

@media screen and (max-width: 834px) {
  .innerWrap {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 545px) and (max-width: 834px) {
#sec__charmpoint .commonHead01{
  width: 97%;
}

#sec__charmpoint .commonEng01 {
  right: 0;
}
}

#sec__charmpoint .charmpoint__inner {
  margin-top: -70px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

#sec__charmpoint .charmpoint__inner .charmpoint__column01 {
  flex: 0 0 53.2%;
  max-width: 585px;
  margin-top: 90px;
  margin-right: -9.2%;
  z-index: 2;
}

@media screen and (max-width: 834px) {
  #sec__charmpoint .charmpoint__inner .charmpoint__column01 {
    max-width: 53.2%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 544px) {
  #sec__charmpoint .charmpoint__inner .charmpoint__column01 {
    max-width: 53.2%;
    margin-top: 140px;
  }
}

#sec__charmpoint .charmpoint .img {
  position: relative;
  z-index: 1;
}

#sec__charmpoint .charmpoint .img:before {
  content: "";
  display: block;
  padding-top: 69.059829%;
}

#sec__charmpoint .charmpoint .img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.charmpoint .img01 {
  margin-top: 174px;
  margin-right: 0;
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 544px) {
  .charmpoint .img01 {
    margin-top: 32px;
  }
}

.charmpoint__deco01{
  position: absolute;
  top: -98px;
  left: 54px;
}

@media screen and (max-width: 834px) {
  .charmpoint__deco01{
    width: 46px;
    top: -48px;
    left: 16px;
  }
}

.charmpoint__deco02{
  position: absolute;
  top: -156px;
  left: 350px;
}

@media screen and (max-width: 834px) {
  .charmpoint__deco02{
    width: 17px;
    position: absolute;
    top: -88px;
    left: auto;
    right: 82px;
  }
}

@media screen and (max-width: 544px) {
  .charmpoint__deco02{
    right: 46px;
  }
}

#sec__charmpoint .charmpoint__inner .charmpoint__column02 {
  flex: 0 0 53.2%;
  max-width: 585px;
  z-index: 2;
}

@media screen and (max-width: 834px) {
  #sec__charmpoint .charmpoint__inner .charmpoint__column02 {
    max-width: 50%;
    margin-top: 32px;
  }
}

@media screen and (max-width: 544px) {
  #sec__charmpoint .charmpoint__inner .charmpoint__column02 {
    max-width: 53.2%;
    margin-top: 78px;
  }
}

#sec__charmpoint .charmpoint .txtArea {
  padding-left: 19%;
  padding-right: 0;
  margin-top: 52px;
}

@media screen and (max-width: 834px) {
  #sec__charmpoint .charmpoint .txtArea {
    padding-left: 0;
  }
}

@media screen and (max-width: 544px) {
  #sec__charmpoint .charmpoint .txtArea {
    margin-top: 20px;
  }
}

#sec__charmpoint .charmpoint .desc {
  text-align: center;
}

/* @media screen and (max-width: 544px) {
  #sec__charmpoint .charmpoint .desc {
    text-align: left;
  }
} */

#sec__charmpoint .charmpoint .commonBtn01 {
  margin: 48px auto 0;
}

@media screen and (max-width: 544px) {
  #sec__charmpoint .charmpoint .commonBtn01 {
    margin: 20px auto 0;
  }
}

/* INTERVIEW */
#sec__interview {
  padding-top: 6em;
  padding-bottom: 155px;
  background: url(../img/bg_wave.png) no-repeat center top 3% / 100%, url(../img/bg_top_interview_parent.png) no-repeat left 3% bottom, url(../img/bg_top_interview_bus.png) no-repeat right bottom, #fff4eb;
  position: relative;
}

@media screen and (max-width: 544px) {
  #sec__interview {
    padding-top: 3em;
    background: url(../img/bg_wave.png) no-repeat center top 3% / 100%, url(../img/bg_top_interview_parent.png) no-repeat left 3% bottom /20%, url(../img/bg_top_interview_bus.png) no-repeat right bottom /35%, #fff4eb;
  }
}

@media screen and (min-width: 545px) and (max-width: 834px) {
#sec__interview .commonHead01{
  width: 97%;
}

#sec__interview .commonEng01 {
  right: 0;
}
}

#sec__interview .interview__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -90px;
}

#sec__interview .interview .img {
  position: relative;
  z-index: 1;
}

#sec__interview .interview .img:before {
  content: "";
  display: block;
  padding-top: 69.059829%;
}

#sec__interview .interview .img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#sec__interview .interview__inner .interview__column02 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 53.2%;
  flex: 0 0 53.2%;
  max-width: 585px;
  z-index: 2;
}

/* #sec__interview .interview .txtArea {
  padding-right: 10%;
} */

#sec__interview .interview .desc {
  margin: 128px 0 40px 1.5em;
}

@media screen and (max-width: 834px) {
  #sec__interview .interview .desc {
    margin: 128px 40px 1.5em;
  }
}

@media screen and (max-width: 544px) {
  #sec__interview .interview .desc {
    margin: 100px 0 20px 1.5em;
  }
}

#sec__interview .interview__imgArea {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-top: 40px;
}

@media all and (max-width: 834px) {
  #sec__interview .interview__imgArea {
    margin-top: 28px;
    position: relative;
  }
}

#sec__interview .interview .swiper {
  /* width: 350px; */
  overflow: visible;
  margin-left: 0;
}

@media all and (max-width: 834px) {
  #sec__interview .interview .swiper {
    width: 85%;
    max-width: 350px;
    margin: 0 auto;
  }
}

#sec__interview .interview .swiper .img {
  position: relative;
  z-index: 1;
}

#sec__interview .interview .swiper .img:before {
  content: "";
  display: block;
  padding-top: 100%;
}

#sec__interview .interview .swiper .img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#sec__interview .interview .swiper-slide a {
  position: relative;
}

@media (hover: hover) {
  #sec__interview .interview .swiper-slide a:hover .txtArea {
    opacity: 1;
  }
}

#sec__interview .interview .swiper-slide .txtArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 40px 13%;
  color: #fff;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#sec__interview .interview .swiper-slide .txtArea::before {
  content: "";
  display: inline-block;
  background-color: rgba(51, 51, 51, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#sec__interview .interview .swiper-slide .txtArea .lead {
  position: relative;
  /* font-size: 2.2rem; */
  line-height: 1.6;
  font-weight: bold;
}

#sec__interview .interview .swiper-slide .txtArea .name {
  position: relative;
  margin-top: 12px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#sec__interview .interview .swiper-slide .txtArea .name::before {
  content: "";
  display: inline-block;
  width: 45%;
  height: 1px;
  background-color: #fff;
  margin-right: 28px;
}

#sec__interview .interview .swiper-button {
  display: flex;
  justify-content: center;
  align-items: stretch;
  pointer-events: none;
  margin-top: 40px;
}

@media all and (max-width: 1300px) {
  #sec__interview .interview .swiper-button {
    margin-left: 0;
  }
}

@media all and (max-width: 834px) {
  #sec__interview .interview .swiper-button {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(85% + 30px + 30px);
    max-width: 410px;
    z-index: 2;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

#sec__interview .interview .swiper-button-prev,
#sec__interview .interview .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  background-size: contain;
  width: 60px;
  height: 60px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: auto;
  cursor: pointer;
}

@media (hover: hover) {

  #sec__interview .interview .swiper-button-prev:hover,
  #sec__interview .interview .swiper-button-next:hover {
    opacity: 0.7;
  }
}

@media all and (max-width: 834px) {

  #sec__interview .interview .swiper-button-prev,
  #sec__interview .interview .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

#sec__interview .interview .swiper-button-prev::after,
#sec__interview .interview .swiper-button-next::after {
  content: none;
}

#sec__interview .interview .swiper-button-prev {
  background-image: url(../img/swiper_prev.png);
  margin-right: 20px;
}

@media all and (max-width: 834px) {
  #sec__interview .interview .swiper-button-prev {
    margin-right: 0;
  }
}

#sec__interview .interview .swiper-button-next {
  background-image: url(../img/swiper_next.png);
  margin-left: 20px;
}

#sec__interview .interview .swiper-button-disabled {
  opacity: 0.35 !important;
}

#sec__interview .interview .commonBtn01 {
  margin: 48px auto 0;
}

@media all and (max-width: 834px) {
  #sec__interview .interview .commonBtn01 {
    margin: 0 auto;
    margin-top: 32px;
  }
}

/* TOUR */
#sec__tour {
  padding-bottom: 230px;
  background: #fff url(../img/bg_tour.png) no-repeat bottom;
  background-size: 100%;
}

#sec__tour .tour__box {
  background: #fff url(../img/bg_top_tour_box.png) no-repeat left top;
  -webkit-box-shadow: 2px 2px 38px 0px rgba(51, 51, 51, 0.1);
  box-shadow: 2px 2px 38px 0px rgba(51, 51, 51, 0.1);
  /* max-width: 940px; */
  max-width: 800px;
  margin: 0 auto;
  margin-top: -100px;
  padding: 90px 3% 100px;
  border-radius: 45px;
}

@media screen and (max-width: 544px) {
  #sec__tour .tour__box {
    background: #fff url(../img/bg_top_tour_box_s.png) no-repeat center top /100%;
  }
}

@media all and (max-width: 834px) {
  #sec__tour .tour__box {
    margin-top: -56px;
    padding: 48px 10% 56px;
  }
}

@media screen and (max-width: 544px) {
  @media all and (max-width: 834px) {
    #sec__tour .tour__box {
      margin-top: -26px;
      padding: 26px 5% 36px;
    }
  }
}

#sec__tour .tour__head {
  text-align: center;
  position: relative;
  z-index: 2;
}

#sec__tour .tour__head .commonHead01 .ttl::after{
border-bottom: none;
}

#sec__tour .tour__body {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

@media all and (max-width: 834px) {
  #sec__tour .tour__body {
    margin-top: 24px;
  }
}

#sec__tour .tour__body .desc {
  text-align: center;
}

@media screen and (max-width: 544px) {
  #sec__tour .tour__body .desc {
    text-align: left;
  }
}

#sec__tour .tour__bgIllust {
  position: absolute;
  bottom: 130px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}

@media all and (max-width: 834px) {
  #sec__tour .tour__bgIllust {
    width: 80%;
    max-width: 540px;
    bottom: 160px;
  }
}

@media all and (max-width: 834px) {
  #sec__tour .tour__bgIllust img {
    text-align: center;
  }
}

@media all and (max-width: 834px) {
  #sec__tour .tour__bgIllust img {
    width: 100%;
  }
}

#sec__tour .tour__illustList {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 40px;
}

@media all and (max-width: 834px) {
  #sec__tour .tour__illustList {
    gap: 0 16px;
    margin-top: 32px;
  }
}

#sec__tour .tour__illustList__item .illustArea {
  width: 165px;
  height: 165px;
  background-color: #fff;
  border: 1px solid #320000;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media all and (max-width: 834px) {
  #sec__tour .tour__illustList__item .illustArea {
    width: 80px;
    height: 80px;
  }
}

/* @media all and (max-width: 834px) {
  #sec__tour .tour__illustList__item .illustArea .illust {
    transform: scale(0.6);
  }
} */

@media all and (max-width: 834px) {
  #sec__tour .tour__illustList__item .illustArea .illust {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #sec__tour .tour__illustList__item .illustArea .illust img{
    width: 100%;
    height: auto;
    font-family: 'object-fit: cover;';
    object-fit: cover;
    object-position: top center;
  }
}

#sec__tour .tour__illustList__item .txtArea {
  margin-top: 10px;
  text-align: center;
}

@media all and (max-width: 544px) {
  #sec__tour .tour__illustList__item .txtArea {
    margin-top: 2px;
  }
}

#sec__tour .tour__illustList__item .txtArea .txt {
  font-size: 1.7rem;
  font-weight: bold;
  color: #320000;
}

@media all and (max-width: 834px) {
  #sec__tour .tour__illustList__item .txtArea .txt {
    font-size: 1.4rem;
    line-height: 1.5;
    display: inline-block;
  }
}

@media screen and (max-width: 544px) {
  #sec__tour .tour__illustList__item .txtArea .txt {
    font-size: 1.2rem;
  }
}

#sec__tour .tour .commonBtn03 {
  margin: 0 auto;
  margin-top: 48px;
}

@media all and (max-width: 834px) {
  #sec__tour .tour .commonBtn03 {
    margin-top: 32px;
  }
}

#sec__tour .tour .swiper-button {
  display: flex;
  justify-content: center;
  align-items: stretch;
  pointer-events: none;
  margin-top: 40px;
}

@media all and (max-width: 1300px) {
  #sec__tour .tour .swiper-button {
    margin-left: 0;
  }
}

/* @media all and (max-width: 834px) {
  #sec__tour .tour .swiper-button {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(85% + 30px + 30px);
    max-width: 410px;
    z-index: 2;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
} */

#sec__tour .tour .swiper-button-prev,
#sec__tour .tour .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  background-size: contain;
  width: 60px;
  height: 60px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: auto;
}

@media (hover: hover) {

  #sec__tour .tour .swiper-button-prev:hover,
  #sec__tour .tour .swiper-button-next:hover {
    opacity: 0.7;
  }
}

@media all and (max-width: 834px) {

  #sec__tour .tour .swiper-button-prev,
  #sec__tour .tour .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

#sec__tour .tour .swiper-button-prev::after,
#sec__tour .tour .swiper-button-next::after {
  content: none;
}

#sec__tour .tour .swiper-button-prev {
  background-image: url(../img/swiper_prev.png);
  margin-right: 20px;
}

/* @media all and (max-width: 834px) {
  #sec__tour .tour .swiper-button-prev {
    margin-left: 20px;
  }
} */

#sec__tour .tour .swiper-button-next {
  background-image: url(../img/swiper_next.png);
}

#sec__tour .tour .swiper-button-disabled {
  opacity: 0.35 !important;
}

/* OTHERS */
#sec__others {
  /* padding-top: 174px;
  margin-top: 76px; */
}

/* @media all and (max-width: 1300px) {
#sec__others {
    padding-top: 120px;
    margin-top: 90px;
  }
}
@media all and (max-width: 834px) {
#sec__others {
    padding-top: 75px;
    margin-top: 65px;
  }
} */
#sec__others.js-active .others__deco__mountain01 {
  -webkit-animation: fadein-b-20 500ms 100ms;
  animation: fadein-b-20 500ms 100ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#sec__others.js-active .others__deco__shape {
  -webkit-animation: fadein-opacity 600ms cubic-bezier(0.61, 1, 0.88, 1) 100ms;
  animation: fadein-opacity 600ms cubic-bezier(0.61, 1, 0.88, 1) 100ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#sec__others.js-active .others__deco__deer01,
#sec__others.js-active .others__deco__deer02,
#sec__others.js-active .others__deco__deer03 {
  -webkit-animation: fadein-opacity 600ms cubic-bezier(0.61, 1, 0.88, 1) 400ms;
  animation: fadein-opacity 600ms cubic-bezier(0.61, 1, 0.88, 1) 400ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#sec__others.js-active .others__deco__tree01,
#sec__others.js-active .others__deco__building01 {
  -webkit-animation: fadein-opacity 600ms cubic-bezier(0.61, 1, 0.88, 1) 400ms;
  animation: fadein-opacity 600ms cubic-bezier(0.61, 1, 0.88, 1) 400ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#sec__others.js-active .others__bg {
  -webkit-animation: fadein-b-20 500ms 100ms;
  animation: fadein-b-20 500ms 100ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#sec__others .others {
  position: relative;
}

#sec__others .others__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}

@media all and (max-width: 834px) {
  #sec__others .others__bg::before {
    content: "";
    display: inline-block;
    background-color: #f6f8f0;
    width: 100%;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

#sec__others .others__deco__mountain01 {
  opacity: 0;
}

#sec__others .others__deco__mountain01 svg {
  position: absolute;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  top: 0;
  left: 0;
}

@media all and (max-width: 834px) {
  #sec__others .others__deco__mountain01 svg {
    top: -24px;
  }
}

#sec__others .others__deco__shape {
  position: absolute;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: -1;
  opacity: 0;
}

#sec__others .others__deco__shape img {
  height: 148px;
}

@media all and (max-width: 1300px) {
  #sec__others .others__deco__shape img {
    height: 118.4px;
  }
}

@media all and (max-width: 834px) {
  #sec__others .others__deco__shape img {
    height: 74px;
  }
}

#sec__others .others__deco__deer01 {
  position: absolute;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  top: -24px;
  left: 18%;
  opacity: 0;
}

@media all and (max-width: 1300px) {
  #sec__others .others__deco__deer01 {
    top: -16px;
    left: 24%;
  }
}

@media all and (max-width: 834px) {
  #sec__others .others__deco__deer01 {
    left: 8%;
    display: none;
  }
}

#sec__others .others__deco__deer01 img {
  height: 42px;
}

@media all and (max-width: 834px) {
  #sec__others .others__deco__deer01 img {
    height: 21px;
  }
}

#sec__others .others__deco__deer02 {
  position: absolute;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  top: -72px;
  left: 42.5531914894%;
  opacity: 0;
}

@media all and (max-width: 1300px) {
  #sec__others .others__deco__deer02 {
    top: -38px;
    left: 46%;
  }
}

@media all and (max-width: 834px) {
  #sec__others .others__deco__deer02 {
    left: 50%;
    top: -12px;
  }
}

#sec__others .others__deco__deer02 img {
  height: 62px;
}

@media all and (max-width: 834px) {
  #sec__others .others__deco__deer02 img {
    height: 31px;
  }
}

#sec__others .others__deco__deer03 {
  position: absolute;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  top: -60px;
  left: 47.3758865248%;
  opacity: 0;
}

@media all and (max-width: 1300px) {
  #sec__others .others__deco__deer03 {
    top: -32px;
    left: 53.5%;
  }
}

@media all and (max-width: 834px) {
  #sec__others .others__deco__deer03 {
    top: -8px;
    left: 59%;
  }
}

#sec__others .others__deco__deer03 img {
  height: 31px;
}

@media all and (max-width: 834px) {
  #sec__others .others__deco__deer03 img {
    height: 15.5px;
  }
}

#sec__others .others__deco__tree01 {
  position: absolute;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  top: -44px;
  left: 26.3829787234%;
  opacity: 0;
}

@media all and (max-width: 1300px) {
  #sec__others .others__deco__tree01 {
    top: -32px;
    left: 32%;
  }
}

@media all and (max-width: 834px) {
  #sec__others .others__deco__tree01 {
    left: 36%;
    top: -28px;
  }
}

#sec__others .others__deco__tree01 img {
  height: 82px;
}

@media all and (max-width: 834px) {
  #sec__others .others__deco__tree01 img {
    height: 41px;
  }
}

#sec__others .others__deco__building01 {
  position: absolute;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  top: -68px;
  right: 10.9219858156%;
  opacity: 0;
}

@media all and (max-width: 1300px) {
  #sec__others .others__deco__building01 {
    top: -36px;
    right: 8%;
  }
}

@media all and (max-width: 834px) {
  #sec__others .others__deco__building01 {
    right: 4%;
    top: -32px;
  }
}

#sec__others .others__deco__building01 img {
  height: 105px;
}

@media all and (max-width: 1300px) {
  #sec__others .others__deco__building01 img {
    height: 84px;
  }
}

@media all and (max-width: 834px) {
  #sec__others .others__deco__building01 img {
    height: 42px;
  }
}

#sec__others .others__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2px;
}

@media all and (max-width: 834px) {
  #sec__others .others__list {
    display: block;
  }
}

#sec__others .others__list__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

/* @media (max-width: 1480px) {
  #sec__others .others__list__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 1px);
    flex: 0 0 calc(50% - 1px);
  }
} */

@media (hover: hover) {
  #sec__others .others__list__item a:hover .imgArea img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

#sec__others .others__list__item .imgArea .img {
  background-color: rgba(0, 0, 0, .6);
  overflow: hidden;
}

#sec__others .others__list__item .imgArea .img img {
  /* opacity: 0.3; */
  height: 400px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media all and (max-width: 1300px) {
  #sec__others .others__list__item .imgArea .img img {
    height: 450px;
  }
}

@media all and (max-width: 834px) {
  #sec__others .others__list__item .imgArea .img img {
    height: 320px;
  }
}

#sec__others .others__list__item .txtArea {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
  color: #fff;
  padding: 60px 0;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media all and (max-width: 1300px) {
  #sec__others .others__list__item .txtArea {
    width: 75%;
  }
}

@media all and (max-width: 834px) {
  #sec__others .others__list__item .txtArea {
    padding-top: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 75%;
  }
}

#sec__others .others__list__item .txtArea .ttl {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Noto Serif JP", serif;
  font-size: 2.8rem;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}

@media all and (max-width: 1300px) {
  #sec__others .others__list__item .txtArea .ttl {
    font-size: 2.8rem;
  }
}

@media all and (max-width: 834px) {
  #sec__others .others__list__item .txtArea .ttl {
    font-size: 2.8rem;
  }
}

/* #sec__others .others__list__item .txtArea .desc {
  margin-top: 40px;
}
@media all and (max-width: 834px) {
#sec__others .others__list__item .txtArea .desc {
    margin-top: 24px;
  }
} */
#sec__others .others__list__item .txtArea .circleArrowBtn {
  display: block;
  text-align: center;
  margin-top: 40px;
}

@media all and (max-width: 834px) {
  #sec__others .others__list__item .txtArea .circleArrowBtn {
    margin-top: 24px;
  }
}

@media all and (max-width: 834px) {
  #sec__others .others__list__item .txtArea .circleArrowBtn img {
    height: 40px;
  }
}