@charset "UTF-8";
/*
 * 機能：clamp関数の文字列を返す
 * 引数：$size-at-min-width サイズ(フォントサイズなど)の最小値(pxやremなどの単位は必須)
 * 　　　$size-at-max-width サイズ(フォントサイズなど)の最大値(pxやremなどの単位は必須)
 * 　　　$min-width [省略可]サイズが最小値に到達する画面幅
 * 　　　$max-width [省略可]サイズが最大値に到達する画面幅
 * 使用方法：
 *　　デフォルトの最小画面幅$min-width-defaultと最大画面幅$max-width-defaultを事前に指定しておく
 *　　最小幅と最大幅をデフォルト以外にしたい場合は、引数にそれぞれ単位付きの画面幅を入れる
 */
/* ==========================================================================
   project
========================================================================== */
/* header */
header {
  width: 100%;
  height: clamp(60px, 48.182px + 3.152vw, 86px);
}
header .inner {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: clamp(10px, 5.455px + 1.212vw, 20px);
  background-color: #fff;
}
header .inner .header_logo {
  width: clamp(160px, 132.727px + 7.273vw, 220px);
}
header .inner .header_logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
header .inner .header_logo a img {
  width: 100%;
  vertical-align: middle;
}

.header .header-nav-list {
  background-color: #fff;
}

.header-inner {
  background-color: #fff;
}


/* mv */
.mv {
  width: 100%;
  margin-top: 90px;
}

@media (max-width: 768px) {
  .mv {
    margin-top: 50px;
  }
}

.mv img {
  width: 100%;
  vertical-align: middle;
}

/* lead */
.lead {
  margin-top: clamp(30px, 16.364px + 3.636vw, 60px);
}
.lead .inner {
  padding: clamp(20px, 6.364px + 3.636vw, 50px) 20px;
  position: relative;
  z-index: 1;
}
.lead .inner::before {
  content: "";
  position: absolute;
  width: calc(100% - clamp(40px, 3.636px + 9.697vw, 120px));
  height: 100%;
  background: #f7f7f7;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1100px) {
  .lead .inner::before {
    width: 100%;
  }
}
.lead .inner p {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(14px, 12.182px + 0.485vw, 18px);
  text-align: center;
  line-height: 2.5;
}

/* sec_introduction */
.sec_introduction {
  margin-top: clamp(40px, 21.818px + 4.848vw, 80px);
  padding: 0 20px;
}
.sec_introduction .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.sec_introduction .inner h2 {
  text-align: center;
  position: relative;
  padding-top: clamp(30px, 29.091px + 0.242vw, 32px);
}
.sec_introduction .inner h2::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(../img/subtitle_01.svg) no-repeat;
  background-size: contain;
  width: clamp(239.2px, 229.745px + 2.521vw, 260px);
  height: clamp(21.16px, 20.324px + 0.223vw, 23px);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sec_introduction .inner h2 .ttl {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 14.545px + 1.455vw, 32px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #fff;
  padding: clamp(13px, 12.091px + 0.242vw, 15px) clamp(10px, 5.455px + 1.212vw, 20px);
  background: #B24B24;
  display: inline-block;
}
.sec_introduction .inner h2 .ttl span {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .sec_introduction .inner h2 .ttl span {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec_introduction .inner h2 .ttl {
    width: 100%;
  }
}
.sec_introduction .inner .tab_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: clamp(30px, 16.364px + 3.636vw, 60px);
}
.sec_introduction .inner .tab_area .tab {
  width: clamp(100px, 90.909px + 2.424vw, 120px);
  height: clamp(35px, 32.727px + 0.606vw, 40px);
  border-radius: 100px;
  background: #F7F7F7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #9C9C9C;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sec_introduction .inner .tab_area .tab:hover {
  opacity: 0.8;
}
.sec_introduction .inner .tab_area .tab.active {
  background: #B24B24;
  color: #fff;
}
.sec_introduction .inner .content_area .content {
  display: none;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: clamp(30px, -94.444px + 16.204vw, 100px);
     -moz-column-gap: clamp(30px, -94.444px + 16.204vw, 100px);
          column-gap: clamp(30px, -94.444px + 16.204vw, 100px);
}
@media screen and (max-width: 767px) {
  .sec_introduction .inner .content_area .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
.sec_introduction .inner .content_area .content .text {
  width: 67%;
}
@media screen and (max-width: 767px) {
  .sec_introduction .inner .content_area .content .text {
    width: 100%;
  }
}
.sec_introduction .inner .content_area .content .text h3 {
  margin-top: clamp(25px, 13.636px + 3.03vw, 50px);
}
.sec_introduction .inner .content_area .content .text h3 span {
  font-size: clamp(16px, 12.364px + 0.97vw, 24px);
  font-weight: 500;
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
}
.sec_introduction .inner .content_area .content .text h3 span::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: calc(100% + clamp(20px, 10.909px + 2.424vw, 40px));
  height: 1px;
  background: #333;
  bottom: 0;
  left: 0;
}
.sec_introduction .inner .content_area .content .text h3 span:last-child {
  margin-top: clamp(5px, 2.727px + 0.606vw, 10px);
}
.sec_introduction .inner .content_area .content .text p {
  margin-top: clamp(15px, 8.182px + 1.818vw, 30px);
}
.sec_introduction .inner .content_area .content .text p .emphasis {
  font-weight: 500;
  color: #B24B24;
}
.sec_introduction .inner .content_area .content .image {
  width: 33%;
  max-width: 377px;
  margin-top: -40px;
}
@media screen and (max-width: 767px) {
  .sec_introduction .inner .content_area .content .image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}
.sec_introduction .inner .content_area .content .image img {
  width: 100%;
  vertical-align: middle;
}
.sec_introduction .inner .content_area .content.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* photo */
.photo {
  margin-top: clamp(30px, 16.364px + 3.636vw, 60px);
}
.photo .inner {
  position: relative;
  z-index: 1;
}
.photo .inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: #f7f7f7;
  z-index: -1;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .photo .inner::before {
    width: 100%;
  }
}
.photo .inner .photo_list li {
  width: clamp(200px, 118.182px + 21.818vw, 380px);
}
.photo .inner .photo_list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  vertical-align: middle;
}
.photo .inner .photo_list .slick-slide {
  margin: 0 clamp(5px, 0.455px + 1.212vw, 15px);
}

/* sec_tour */
.sec_tour {
  background: #f7f7f7;
  padding: clamp(40px, 21.818px + 4.848vw, 80px) 0;
}
.sec_tour h3 {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 15.455px + 1.212vw, 30px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(5px, 2.727px + 0.606vw, 10px);
  padding-top: clamp(28px, 19.818px + 2.182vw, 46px);
}
.sec_tour h3 .en {
  font-size: clamp(10px, 8.182px + 0.485vw, 14px);
  letter-spacing: 0.02em;
  color: #B24B24;
}
.sec_tour h3::before {
  content: "";
  position: absolute;
  background: url(../img/title_treat.svg) no-repeat;
  background-size: contain;
  width: clamp(72px, 50.182px + 5.818vw, 120px);
  height: clamp(21.9px, 15.264px + 1.77vw, 36.5px);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sec_tour .description {
  padding: 0 20px;
}
.sec_tour .description .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.sec_tour .description .inner h2 {
  text-align: center;
  position: relative;
  padding-top: clamp(30px, 29.091px + 0.242vw, 32px);
}
.sec_tour .description .inner h2::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(../img/subtitle_02.svg) no-repeat;
  background-size: contain;
  width: clamp(327.52px, 314.575px + 3.452vw, 356px);
  height: clamp(21.16px, 20.324px + 0.223vw, 23px);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sec_tour .description .inner h2 .ttl {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 14.545px + 1.455vw, 32px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: #fff;
  padding: clamp(13px, 12.091px + 0.242vw, 15px) clamp(10px, 5.455px + 1.212vw, 20px);
  background: #B24B24;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .sec_tour .description .inner h2 .ttl {
    width: 100%;
  }
}
.sec_tour .description .inner h2 span.color {
  font-size: clamp(12px, 9.273px + 0.727vw, 18px);
  line-height: 2;
  padding: clamp(3px, 1.182px + 0.485vw, 7px) clamp(10px, 5.455px + 1.212vw, 20px);
  background: #ECD3D3;
  border: none;
  margin-top: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec_tour .description .inner h2 span.color {
    width: initial;
  }
}
.sec_tour .description .inner .copy {
  text-align: center;
  margin-top: clamp(20px, 10.909px + 2.424vw, 40px);
}
.sec_tour .description .inner .date_wrap {
  margin-top: clamp(20px, 10.909px + 2.424vw, 40px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.sec_tour .description .inner .date_wrap .date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 0.909px + 2.424vw, 30px);
  font-weight: 500;
  line-height: 1.5;
  padding: clamp(10px, 7.727px + 0.606vw, 15px);
  border: 1px solid #333;
  background: #fff;
}
.sec_tour .description .inner .date_wrap .date .date_num {
  position: relative;
  font-size: clamp(16px, 12.364px + 0.97vw, 24px);
  padding-right: clamp(10px, 0.909px + 2.424vw, 30px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #333;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .sec_tour .description .inner .date_wrap .date .date_num {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.sec_tour .description .inner .date_wrap .date .date_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 0.909px + 2.424vw, 30px);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .sec_tour .description .inner .date_wrap .date .date_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec_tour .description .inner .date_wrap .date .date_content > p {
  position: relative;
  font-size: clamp(18px, 12.545px + 1.455vw, 30px);
  padding-right: clamp(10px, 0.909px + 2.424vw, 30px);
  border-right: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .sec_tour .description .inner .date_wrap .date .date_content > p {
    padding-right: 0;
    border-right: none;
  }
}
.sec_tour .description .inner .date_wrap .date .date_content .link_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(140px, 130.909px + 2.424vw, 160px);
  height: clamp(35px, 32.727px + 0.606vw, 40px);
  background: #B24B24;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sec_tour .description .inner .date_wrap .date .date_content .link_btn:hover {
  opacity: 0.8;
}
.sec_tour .description .inner .date_wrap .date .date_content .link_btn span {
  color: #fff;
  font-weight: 500;
  font-size: clamp(14px, 13.091px + 0.242vw, 16px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.sec_tour .description .inner .date_wrap .date .date_content .link_btn span::after {
  content: "";
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 7.5px;
  height: 12px;
}
.sec_tour {
  /* sec_tour_point */
}
.sec_tour .sec_tour_point {
  padding: 0 20px;
  margin-top: clamp(60px, 50.909px + 2.424vw, 80px);
}
.sec_tour .sec_tour_point .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.sec_tour .sec_tour_point .inner ul {
  margin-top: clamp(20px, 10.909px + 2.424vw, 40px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(30px, 16.364px + 3.636vw, 60px);
     -moz-column-gap: clamp(30px, 16.364px + 3.636vw, 60px);
          column-gap: clamp(30px, 16.364px + 3.636vw, 60px);
}
@media screen and (max-width: 767px) {
  .sec_tour .sec_tour_point .inner ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
.sec_tour .sec_tour_point .inner ul li {
  width: 50%;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 clamp(20px, 15.455px + 1.212vw, 30px) clamp(20px, 10.909px + 2.424vw, 40px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_tour .sec_tour_point .inner ul li {
    width: 100%;
  }
}
.sec_tour .sec_tour_point .inner ul li .image {
  width: clamp(100px, 81.818px + 4.848vw, 140px);
}
.sec_tour .sec_tour_point .inner ul li .image img {
  width: 100%;
  vertical-align: middle;
}
.sec_tour .sec_tour_point .inner ul li h4 {
  font-size: clamp(16px, 12.364px + 0.97vw, 24px);
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}
.sec_tour .sec_tour_point .inner ul li p {
  text-align: center;
  margin-top: clamp(10px, 5.455px + 1.212vw, 20px);
}
.sec_tour .sec_tour_point .inner ul li::before {
  content: "";
  position: absolute;
  width: clamp(43px, 35.273px + 2.061vw, 60px);
  height: 122px;
  top: 0;
  right: clamp(10px, 5.455px + 1.212vw, 20px);
}
.sec_tour .sec_tour_point .inner ul li.point_01::before {
  background: url(../img/point_01.svg) no-repeat;
  background-size: contain;
}
.sec_tour .sec_tour_point .inner ul li.point_02::before {
  background: url(../img/point_02.svg) no-repeat;
  background-size: contain;
}
.sec_tour {
  /* sec_tour_highlights */
}
.sec_tour .sec_tour_highlights {
  margin-top: clamp(60px, 50.909px + 2.424vw, 80px);
}
.sec_tour .sec_tour_highlights .title {
  padding: 0 20px;
}
.sec_tour .sec_tour_highlights .title .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.sec_tour .sec_tour_highlights .tour1 {
  margin-top: 20px;
}
.sec_tour .sec_tour_highlights .tour2 {
  margin-top: clamp(60px, 32.727px + 7.273vw, 120px);
}
.sec_tour .sec_tour_highlights .ttl_area {
  position: relative;
  padding: 0 20px;
  max-width: 1040px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
.sec_tour .sec_tour_highlights .ttl_area .tour_ttl {
  font-size: clamp(14px, 11.273px + 0.727vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 0.909px + 2.424vw, 30px);
  background: #fff;
  padding: clamp(10px, 7.727px + 0.606vw, 15px);
  border: 1px solid #333;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media screen and (max-width: 767px) {
  .sec_tour .sec_tour_highlights .ttl_area .tour_ttl {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.sec_tour .sec_tour_highlights .ttl_area .tour_ttl > p:first-of-type {
  padding-right: clamp(10px, 0.909px + 2.424vw, 30px);
  border-right: 1px solid #333;
}
.sec_tour .sec_tour_highlights .content {
  padding: clamp(30px, 16.364px + 3.636vw, 60px) 20px;
  position: relative;
  z-index: 1;
}
.sec_tour .sec_tour_highlights .content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.sec_tour .sec_tour_highlights .content::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: calc(clamp(35px, 14.545px + 5.455vw, 80px) * -1);
}
.sec_tour .sec_tour_highlights .content .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.sec_tour .sec_tour_highlights .content .inner ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: clamp(30px, 16.364px + 3.636vw, 60px);
     -moz-column-gap: clamp(30px, 16.364px + 3.636vw, 60px);
          column-gap: clamp(30px, 16.364px + 3.636vw, 60px);
  row-gap: clamp(15px, 8.182px + 1.818vw, 30px);
}
@media screen and (max-width: 767px) {
  .sec_tour .sec_tour_highlights .content .inner ul {
    row-gap: 20px;
  }
}
.sec_tour .sec_tour_highlights .content .inner ul li {
  width: calc(50% - clamp(30px, 16.364px + 3.636vw, 60px) / 2);
}
@media screen and (max-width: 767px) {
  .sec_tour .sec_tour_highlights .content .inner ul li {
    width: 100%;
  }
}
.sec_tour .sec_tour_highlights .content .inner ul li .image {
  width: 100%;
}
.sec_tour .sec_tour_highlights .content .inner ul li .image img {
  width: 100%;
  vertical-align: middle;
}
.sec_tour .sec_tour_highlights .content .inner ul li h4 {
  font-size: clamp(16px, 12.364px + 0.97vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 10px;
}
.sec_tour .sec_tour_highlights .content .inner ul li p {
  margin-top: 5px;
}
.sec_tour .sec_tour_highlights .content .inner ul li p.note {
  font-size: clamp(12px, 11.091px + 0.242vw, 14px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: clamp(5px, 2.727px + 0.606vw, 10px);
}
.sec_tour .sec_tour_highlights .content .inner ul li p.note::before {
  content: "※";
}
@media screen and (max-width: 767px) {
  .sec_tour .sec_tour_highlights .content.content_01 {
    margin-top: 50px;
  }
}
.sec_tour .sec_tour_highlights .content.content_01::before {
  background: url(../img/pink_bg.png) no-repeat center 0px;
  background-size: cover;
}
.sec_tour .sec_tour_highlights .content.content_01::after {
  background: url(../img/highlights_01.svg) no-repeat;
  background-size: contain;
  width: clamp(100px, 38.182px + 16.485vw, 236px);
  height: clamp(47px, 18.364px + 7.636vw, 110px);
  right: 0;
}
.sec_tour .sec_tour_highlights .content.content_02 {
  margin-top: clamp(55px, 30px + 6.667vw, 110px);
}
.sec_tour .sec_tour_highlights .content.content_02::before {
  background: url(../img/beige_bg.png) no-repeat center 0px;
  background-size: cover;
}
.sec_tour .sec_tour_highlights .content.content_02::after {
  background: url(../img/highlights_02.svg) no-repeat;
  background-size: contain;
  width: clamp(101px, 38.273px + 16.727vw, 239px);
  height: clamp(47px, 18.364px + 7.636vw, 110px);
  left: 0;
}
.sec_tour .sec_tour_highlights .content.content_03 {
  margin-top: clamp(55px, 30px + 6.667vw, 110px);
}
.sec_tour .sec_tour_highlights .content.content_03::before {
  background: url(../img/green_bg.png) no-repeat center 0px;
  background-size: cover;
}
.sec_tour .sec_tour_highlights .content.content_03::after {
  background: url(../img/highlights_03.svg) no-repeat;
  background-size: contain;
  width: clamp(270px, 102.727px + 44.606vw, 638px);
  height: clamp(47px, 18.364px + 7.636vw, 110px);
  right: 0;
}
.sec_tour {
  /* sec_tour_movie */
}
.sec_tour .sec_tour_movie {
  padding: 0 20px;
  margin-top: clamp(40px, 21.818px + 4.848vw, 80px);
}
.sec_tour .sec_tour_movie .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.sec_tour .sec_tour_movie .inner .movie {
  max-width: 800px;
  margin: clamp(15px, 8.182px + 1.818vw, 30px) auto 0;
}
.sec_tour .sec_tour_movie .inner .movie iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.sec_tour {
  /* sec_tour_schedule */
}
.sec_tour .sec_tour_schedule {
  padding: 0 20px;
  margin-top: clamp(40px, 21.818px + 4.848vw, 80px);
}
.sec_tour .sec_tour_schedule .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.sec_tour .sec_tour_schedule .inner .schedule1 {
  margin-top: clamp(20px, 10.909px + 2.424vw, 40px);
}
.sec_tour .sec_tour_schedule .inner .schedule2 {
  margin-top: clamp(30px, 16.364px + 3.636vw, 60px);
}
.sec_tour .sec_tour_schedule .inner .ttl_area {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
.sec_tour .sec_tour_schedule .inner .ttl_area .tour_ttl {
  font-size: clamp(14px, 11.273px + 0.727vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 0.909px + 2.424vw, 30px);
  background: #fff;
  padding: clamp(10px, 7.727px + 0.606vw, 15px);
  border: 1px solid #333;
}
.sec_tour .sec_tour_schedule .inner .ttl_area .tour_ttl > p:first-of-type {
  padding-right: clamp(10px, 0.909px + 2.424vw, 30px);
  border-right: 1px solid #333;
  white-space: nowrap;
}
.sec_tour .sec_tour_schedule .inner ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: clamp(15px, 8.182px + 1.818vw, 30px);
}
@media screen and (max-width: 767px) {
  .sec_tour .sec_tour_schedule .inner ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
.sec_tour .sec_tour_schedule .inner ul li {
  width: 50%;
  background: #fff;
  padding: 10px 20px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_tour .sec_tour_schedule .inner ul li {
    width: 100%;
  }
}
.sec_tour .sec_tour_schedule .inner ul li::before {
  content: "";
  position: absolute;
  width: clamp(43px, 35.273px + 2.061vw, 60px);
  height: 122px;
  top: 0;
  right: clamp(10px, 5.455px + 1.212vw, 20px);
}
.sec_tour .sec_tour_schedule .inner ul li .day {
  font-size: clamp(18px, 13.455px + 1.212vw, 28px);
  font-weight: 500;
  padding-bottom: 10px;
  color: #B24B24;
  text-align: center;
}
.sec_tour .sec_tour_schedule .inner ul li .image {
  width: 100%;
}
.sec_tour .sec_tour_schedule .inner ul li .image img {
  width: 100%;
  vertical-align: middle;
}
.sec_tour {
  /* sec_tour_fee */
}
.sec_tour .sec_tour_fee {
  padding: 0 20px;
  margin-top: clamp(40px, 21.818px + 4.848vw, 80px);
}
.sec_tour .sec_tour_fee .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.sec_tour .sec_tour_fee .inner .tour_table {
  margin-top: clamp(20px, 10.909px + 2.424vw, 40px);
  width: 100%;
}
.sec_tour .sec_tour_fee .inner .tour_table tr:last-of-type {
  border-top: 1px solid #F7F7F7;
}
.sec_tour .sec_tour_fee .inner .tour_table th {
  width: 30%;
  background: #B24B24;
  color: #fff;
  vertical-align: middle;
  font-size: clamp(16px, 12.364px + 0.97vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  padding: clamp(10px, 5.455px + 1.212vw, 20px);
}
@media screen and (max-width: 767px) {
  .sec_tour .sec_tour_fee .inner .tour_table th {
    width: 100%;
    display: block;
  }
}
.sec_tour .sec_tour_fee .inner .tour_table td {
  font-size: clamp(14px, 9.455px + 1.212vw, 24px);
  font-weight: 500;
  width: 70%;
  padding: clamp(15px, 12.727px + 0.606vw, 20px);
  background: #fff;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .sec_tour .sec_tour_fee .inner .tour_table td {
    width: 100%;
    display: block;
    text-align: center;
  }
}
.sec_tour .sec_tour_fee .inner .tour_table td .red {
  color: #B24B24;
}
.sec_tour .sec_tour_fee .inner .tour_table td .small {
  font-size: clamp(10px, 9.091px + 0.242vw, 12px);
}
.sec_tour .sec_tour_fee .inner .tour_table td .note {
  font-size: clamp(12px, 11.091px + 0.242vw, 14px);
  font-weight: 400;
  margin-top: 15px;
}
.sec_tour {
  /* apply */
}
.sec_tour .apply {
  padding: 0 20px;
  margin-top: clamp(35px, 19.091px + 4.242vw, 70px);
}
.sec_tour .apply .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec_tour .apply .inner h2 {
  text-align: center;
  font-size: clamp(16px, 9.636px + 1.697vw, 30px);
  font-weight: 500;
  line-height: 1.5;
}
.sec_tour .apply .inner h2 .red {
  color: #B24B24;
}
.sec_tour .apply .inner .button_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  width: 100%;
  margin-top: clamp(15px, 8.182px + 1.818vw, 30px);
}
.sec_tour .apply .inner .button {
  width: 650px;
}
@media screen and (max-width: 767px) {
  .sec_tour .apply .inner .button {
    width: 100%;
  }
}
.sec_tour .apply .inner .button a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: #B28F24;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(14px, 12.182px + 0.485vw, 18px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: clamp(10px, 5.455px + 1.212vw, 20px) 0;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sec_tour .apply .inner .button a::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  width: 11px;
  height: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: clamp(20px, 15.455px + 1.212vw, 30px);
}
.sec_tour .apply .inner .button a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: calc(100% - clamp(7px, 5.636px + 0.364vw, 10px));
  height: calc(100% - clamp(7px, 5.636px + 0.364vw, 10px));
  border: 1px solid #fff;
  border-radius: 100px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.sec_tour .apply .inner .button a:hover {
  opacity: 0.8;
}
.sec_tour .apply .inner .period {
  font-weight: 500;
  line-height: 1.5;
  margin-top: 15px;
  text-align: center;
}
.sec_tour {
  /* caution */
}
.sec_tour .caution {
  padding: 0 20px;
  margin-top: clamp(40px, 21.818px + 4.848vw, 80px);
}
.sec_tour .caution .inner {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: clamp(20px, 10.909px + 2.424vw, 40px);
}
.sec_tour .caution .inner ul {
  margin-top: 20px;
}
.sec_tour .caution .inner ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.sec_tour .caution .inner .note {
  font-size: clamp(12px, 11.091px + 0.242vw, 14px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.sec_tour .caution .inner .note::before {
  content: "※";
}

/* footer */
footer {
  width: 100%;
  position: relative;
}
footer .inner {
  padding-top: clamp(20px, 10.909px + 2.424vw, 40px);
  position: relative;
}
footer .inner::before {
  content: "";
  position: absolute;
  background: url(../img/footer_bg.png) no-repeat center top;
  background-size: cover;
  width: 100vw;
  height: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  footer .inner::before {
    background: url(../img/footer_bg_sp.png) no-repeat center top;
    background-size: cover;
  }
}
footer .inner .content .info {
  background: rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(20px, 10.909px + 2.424vw, 40px);
}
@media screen and (max-width: 767px) {
  footer .inner .content .info {
    width: 100%;
  }
}
footer .inner .content .info img {
  height: clamp(40px, 35.455px + 1.212vw, 50px);
  vertical-align: middle;
}
footer .inner .content .info p {
  font-size: clamp(13px, 12.545px + 0.121vw, 14px);
  margin-top: clamp(10px, 5.455px + 1.212vw, 20px);
}
footer .inner .top_content {
  max-width: 800px;
  margin: 0 auto;
}
footer .inner .under_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: clamp(10px, -3.636px + 3.636vw, 40px);
}
@media screen and (max-width: 767px) {
  footer .inner .under_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }
}
footer .inner .under_content > .info {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  footer .inner .under_content > .info {
    width: 100%;
  }
}
footer .inner .copyright {
  background: #fff;
  padding: clamp(10px, 5.455px + 1.212vw, 20px) 20px;
  text-align: center;
  font-size: clamp(10px, 8.636px + 0.364vw, 13px);
  margin-top: 30px;
}

/* アニメーション */
.show_target {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}
.show_target.show_anime {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}/*# sourceMappingURL=style.css.map */