@charset "UTF-8";
/*-----------------------------------------------------------------------------
初期化
-------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

ul, ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in;
}

img {
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6, figure, p, dl, dt, dd {
  padding: 0;
  margin: 0;
}

.none {
  display: none;
}

html, body {
  scroll-behavior: smooth;
}

/*-----------------------------------------------------------------------------
break point
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
PC/SP
-------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*-----------------------------------------------------------------------------
colors
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
font
-------------------------------------------------------------------------------*/
body {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: 1rem;
  line-height: 1.4;
  overflow-x: hidden;
  width: 100%;
  color: #091C46;
  background-color: #F9F8F1;
}
@media screen and (max-width: 767px) {
  body {
    height: 100%;
    font-size: 0.875rem;
    width: 100%;
  }
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-bold {
  font-weight: 700;
}

/*-----------------------------------------------------------------------------
a tag
-------------------------------------------------------------------------------*/
a {
  transition: all 0.3s ease-in;
}

/*-------------------------------------------------------------
ふわっと表示
-------------------------------------------------------------*/
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fadein.visible {
  opacity: 1;
  transform: translateY(0);
}

/*-----------------------------------------------------------------------------
画像
-------------------------------------------------------------------------------*/
img {
  display: block;
  vertical-align: bottom;
}

.img-center {
  display: block;
  margin: 0 auto;
}

.w100 {
  width: 100%;
}

/*-----------------------------------------------------------------------------
枠
-------------------------------------------------------------------------------*/
.wrapper {
  position: relative;
}
.wrapper .inner {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrapper .inner {
    padding: 0 1.5rem;
  }
}

/*-----------------------------------------------------------------------------
display flex
-------------------------------------------------------------------------------*/
.dflex {
  display: flex;
}

.dflex-center {
  justify-content: center;
}

.dflex-column-reverse {
  flex-direction: column-reverse;
}

.dblock {
  display: block;
}

/*-----------------------------------------------------------------------------
ボタン
-------------------------------------------------------------------------------*/
.btn {
  width: 21.25rem;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
  }
}
.btn a {
  position: relative;
  z-index: 1;
  background-color: #fff;
  color: #091C46;
  font-weight: 700;
  text-align: center;
  border: 1px solid #091C46;
  width: 100%;
  display: block;
  line-height: 3.5rem;
  border-radius: 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn a {
    line-height: 3.125rem;
  }
}
.btn a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #4EC3D9 0%, #1DD6B2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 1.75rem;
}
.btn a span {
  position: relative;
}
.btn a span:after, .btn a span:before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: -1.75rem;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn a span:after, .btn a span:before {
    width: 1rem;
    height: 1rem;
  }
}
.btn a span:after {
  background-image: url("../img/icon_arrow_btn_balck.svg");
  opacity: 1;
}
.btn a span:before {
  background-image: url("../img/icon_arrow_btn_white.svg");
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .btn a:hover {
    color: #fff;
  }
  .btn a:hover:before {
    opacity: 1;
  }
  .btn a:hover span:after {
    opacity: 0;
  }
  .btn a:hover span:before {
    opacity: 1;
  }
}

.btn-wide {
  width: 42.5rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .btn-wide {
    width: 100%;
  }
}
.btn-wide a {
  font-size: 1.25rem;
  line-height: 4rem;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .btn-wide a {
    font-size: 0.875rem;
    line-height: 3.375rem;
  }
}

/*-----------------------------------------------------------------------------
ヘッダー
-------------------------------------------------------------------------------*/
.header {
  padding-bottom: 0.4375rem;
  background-color: #fff;
  border-bottom: 0.0625rem solid #ccc;
}
@media screen and (max-width: 767px) {
  .header {
    padding-bottom: 0.21875rem;
  }
}
.header .logo img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header .logo img {
    width: 7.0625rem;
  }
}

/*-----------------------------------------------------------------------------
パンくずリスト
-------------------------------------------------------------------------------*/
.breadlist {
  padding: 0.75rem 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .breadlist {
    padding: 0.25rem 0.375rem 0.25rem;
    width: 100%;
  }
}
.breadlist .list {
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .breadlist .list {
    padding: 0;
    flex-wrap: wrap;
    gap: 4px 0;
  }
}
.breadlist .list .item {
  font-size: 0.875rem;
  letter-spacing: 0.045rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .breadlist .list .item {
    font-size: 0.75rem;
  }
}
.breadlist .list .item:not(:last-of-type):after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../img/icon_arrow_breadlist.svg") no-repeat top center;
  background-size: contain;
  margin-left: 4px;
  position: relative;
  top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .breadlist .list .item:not(:last-of-type):after {
    vertical-align: 4px;
    width: 10px;
    height: 10px;
  }
}
.breadlist .list .item a {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.045rem;
  padding-top: 0.125rem;
  display: inline-block;
  color: #298BFF;
}
@media screen and (max-width: 767px) {
  .breadlist .list .item a {
    font-weight: 400;
    font-size: 0.75rem;
  }
}
.breadlist .list .item a:hover {
  text-decoration: underline;
}

/*-----------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------*/
.footer {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 0.625rem;
    padding-bottom: 4.125rem;
  }
}
.footer .sec-sns {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .footer .sec-sns {
    margin-bottom: 2.5rem;
  }
}
.footer .sec-sns .sec-sns_ttl {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .footer .sec-sns .sec-sns_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.footer .sns ul {
  gap: 2.125rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer .sns ul {
    gap: 1.5rem;
  }
}
.footer .sns ul li a {
  cursor: pointer;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer .sns ul li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .footer .sns ul li a {
    width: 2.75rem;
  }
  .footer .sns ul li a img {
    width: 100%;
  }
}
.footer .copy {
  background-color: #333;
}
.footer .copy small {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 2.8125rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .footer .copy small {
    font-size: 0.75rem;
    line-height: 1.42;
    font-weight: 500;
    line-height: 2.25rem;
  }
}

/*-----------------------------------------------------------------------------
リードエリア
-------------------------------------------------------------------------------*/
.lead {
  background: #32B6A2 url("../img/bg_lead_map_pc.svg") no-repeat top left;
  background-size: contain;
  border-radius: 0 0 2.5rem 2.5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1410px) {
  .lead {
    background-size: 70vw auto;
  }
}
@media screen and (max-width: 767px) {
  .lead {
    border-radius: 2.5rem;
    margin-top: -2.125rem;
    position: relative;
    z-index: 10;
    margin-bottom: 35vw;
  }
}
.lead .inner {
  padding: 5rem 0 7.3125rem;
}
@media screen and (max-width: 1410px) {
  .lead .inner {
    padding-bottom: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .lead .inner {
    padding: 78vw 2rem 4.125rem;
  }
}
.lead * {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lead {
    background: #32B6A2 url("../img/bg_lead_map_sp.svg") no-repeat top center;
    background-size: contain;
  }
}
.lead .contents {
  padding-left: min(40vw, 675px);
}
@media screen and (max-width: 1410px) {
  .lead .contents {
    padding-left: 45vw;
  }
}
@media screen and (max-width: 767px) {
  .lead .contents {
    padding-left: 0;
  }
}
.lead .lead_ttl {
  font-size: min(3vw, 40px);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1410px) {
  .lead .lead_ttl {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .lead .lead_ttl {
    font-size: 6vw;
  }
}
.lead .lead_txt {
  font-size: min(2vw, 18px);
  font-weight: 700;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .lead .lead_txt {
    font-size: 3.5vw;
  }
}
.lead .lead_img {
  position: absolute;
}
.lead .lead_img01 {
  left: 0;
  bottom: 4.875rem;
}
@media screen and (max-width: 767px) {
  .lead .lead_img01 {
    left: 6vw;
    bottom: -16vw;
  }
}
.lead .lead_img01 img {
  width: min(18vw, 310px);
}
@media screen and (max-width: 767px) {
  .lead .lead_img01 img {
    width: 44vw;
  }
}
.lead .lead_img02 {
  left: min(20vw, 482px);
  bottom: -2.375rem;
}
@media screen and (max-width: 767px) {
  .lead .lead_img02 {
    left: unset;
    right: 3vw;
    bottom: -26vw;
  }
}
.lead .lead_img02 img {
  width: min(14.5vw, 248px);
}
@media screen and (max-width: 767px) {
  .lead .lead_img02 img {
    width: 36vw;
  }
}

/*-----------------------------------------------------------------------------
グロナビ
-------------------------------------------------------------------------------*/
#global-nav.m_fixed {
  left: 50%;
  position: fixed;
  top: 1.25rem;
  transform: translate(-50%, 0);
  z-index: 100;
}

.gnav {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 1050px) {
  .gnav {
    width: 96%;
  }
}
.gnav .gnavlist {
  background-color: #fff;
  padding: 0.5rem 2.5rem;
  height: 4.5rem;
  border-radius: 2.25rem;
  justify-content: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1050px) {
  .gnav .gnavlist {
    flex-wrap: wrap;
    height: auto;
    border-radius: 1.25rem;
    padding: 0.5rem 0.875rem;
  }
}
.gnav .gnavlist li:not(:last-of-type) {
  border-right: 0.0625rem dotted #333;
  padding-right: 3rem;
  margin-right: 3rem;
}
.gnav .gnavlist li a {
  display: block;
  width: 6.25rem;
  height: 100%;
  text-align: center;
  color: #333;
  font-weight: 700;
  position: relative;
  padding-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .gnav .gnavlist li a .link-text {
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
  }
  .gnav .gnavlist li a .link-text-gradient {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translate(-50%, 0);
    background: linear-gradient(90deg, #4EC3D9 0%, #1DD6B2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    width: 100%;
    pointer-events: none;
  }
  .gnav .gnavlist li a:after, .gnav .gnavlist li a:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.125rem;
    width: 1rem;
    height: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity 0.3s ease;
  }
  .gnav .gnavlist li a:after {
    background-image: url("../img/icon_arrow_gnavi_black.svg");
    opacity: 1;
  }
  .gnav .gnavlist li a:before {
    background-image: url("../img/icon_arrow_gnavi_gradation.svg");
    opacity: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .gnav .gnavlist li a:hover .link-text-gradient {
    opacity: 1;
  }
  .gnav .gnavlist li a:hover .link-text {
    opacity: 0;
  }
  .gnav .gnavlist li a:hover:after {
    opacity: 0;
  }
  .gnav .gnavlist li a:hover:before {
    opacity: 1;
  }
}
@media screen and (max-width: 1050px) {
  .gnav .gnavlist li {
    margin: 0 !important;
    padding: 0 !important;
  }
  .gnav .gnavlist li a {
    width: 100%;
    line-height: 3.5rem;
  }
  .gnav .gnavlist li a:after {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity 0.3s ease;
    background-image: url("../img/icon_arrow_gnavi_black.svg");
    position: relative;
    top: 0.125rem;
    left: unset;
    margin-left: 0.25rem;
  }
  .gnav .gnavlist li:nth-child(1), .gnav .gnavlist li:nth-child(2) {
    width: 50%;
    margin: 0;
    border: none;
    border-bottom: 0.0625rem dotted #333;
    padding-bottom: 0.5rem !important;
  }
  .gnav .gnavlist li:nth-child(1) a, .gnav .gnavlist li:nth-child(2) a {
    padding: 0;
  }
  .gnav .gnavlist li:nth-child(3), .gnav .gnavlist li:nth-child(4), .gnav .gnavlist li:nth-child(5) {
    border: none;
    width: 33%;
    padding-top: 0.5rem !important;
  }
  .gnav .gnavlist li:nth-child(3) a, .gnav .gnavlist li:nth-child(4) a, .gnav .gnavlist li:nth-child(5) a {
    border-right: 0.0625rem dotted #333;
    padding: 0 !important;
  }
  .gnav .gnavlist li:nth-child(2) {
    border-right: none;
  }
  .gnav .gnavlist li:nth-child(2) a {
    border-left: 0.0625rem dotted #333;
  }
  .gnav .gnavlist li:last-of-type a {
    border: none;
  }
}

/*-----------------------------------------------------------------------------
各セクションの共通パーツ
-------------------------------------------------------------------------------*/
.sec .sec_ttl {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.4;
  -webkit-text-stroke: 4px #fff;
  text-stroke: 4px #fff;
  paint-order: stroke;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sec .sec_ttl {
    margin-bottom: 6vw;
  }
}
.sec .sec_ttl img {
  display: block;
  margin: 0 auto;
}

/*-----------------------------------------------------------------------------
徳島までのアクセス情報
-------------------------------------------------------------------------------*/
.sec-access {
  margin-bottom: 4.125rem;
  background: url("../img/bg_wave_pc.png") no-repeat top 2.5rem center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .sec-access {
    background: url("../img/bg_wave_sp.png") no-repeat top 2.5rem center;
    background-size: contain;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-access .sec_ttl img {
    width: 80%;
  }
}
.sec-access .img {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sec-access .img {
    margin-bottom: 1.5rem;
  }
}
.sec-access .fadein {
  pointer-events: auto;
}
.sec-access .accordion {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec-access .accordion {
    gap: 1rem;
  }
}
.sec-access .accordion .item {
  cursor: pointer;
  pointer-events: auto;
}
.sec-access .js-accordion {
  position: relative;
  width: 100%;
  text-align: center;
  font-weight: 700;
  height: 3rem;
  border: none;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease-in;
  border-radius: 0.5rem;
  color: #fff;
  background-color: #32B6A2;
  font-size: 1.125rem;
  cursor: pointer !important;
}
@media screen and (max-width: 767px) {
  .sec-access .js-accordion {
    font-size: 1rem;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .sec-access .js-accordion:hover {
    opacity: 0.7;
  }
}
.sec-access .js-accordion > div {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 3rem;
  padding: 0 35px 0 16px;
  pointer-events: auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sec-access .js-accordion > div {
    padding: 0;
  }
}
.sec-access .js-accordion::before {
  content: "";
  width: 2px;
  height: 24px;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s ease;
  background-color: #fff;
  z-index: 20;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .sec-access .js-accordion::before {
    height: 1.25rem;
    right: 1.25rem;
  }
}
.sec-access .js-accordion::after {
  content: "";
  width: 24px;
  height: 2px;
  position: absolute;
  right: 19px;
  top: 0;
  background-color: #fff;
  bottom: 0;
  margin: auto;
  transition: 0.6s ease;
  z-index: 20;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .sec-access .js-accordion::after {
    width: 1.25rem;
    right: 0.6875rem;
  }
}
.sec-access .js-accordion.is-accordion--open {
  border-radius: 0.5rem 0.5rem 0 0;
}
.sec-access .js-accordion.is-accordion--open::before {
  transform: rotate(90deg);
}
.sec-access .js-accordion.is-accordion--open::after {
  transform: rotate(-180deg);
}
.sec-access .js-accordion.is-accordion--open + .accordion-box {
  height: auto;
  opacity: 1;
}
.sec-access .js-accordion--close {
  display: none;
}
.sec-access .accordion-box {
  height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}
.sec-access .accordion-box ul li {
  font-size: 0.875rem;
}
.sec-access .accordion-box ul li:not(:last-of-type) {
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .sec-access .accordion-box ul li:not(:last-of-type) {
    margin-bottom: 0.5rem;
  }
}
.sec-access .accordion-box ul li:last-of-type {
  padding-bottom: 1rem;
}

/*-----------------------------------------------------------------------------
徳島のおすすめ体験
-------------------------------------------------------------------------------*/
.sec-eperience {
  padding-bottom: 5rem;
  background: url("../img/bg_wave_pc.png") no-repeat top 2.5rem center;
  background-size: contain;
}
.sec-eperience .box:not(:last-of-type) {
  margin-bottom: 5rem;
}
.sec-eperience .box .slideshow img {
  width: 100%;
}
.sec-eperience .box .bgcolor {
  padding-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .sec-eperience .box .bgcolor {
    padding-bottom: 8.75rem;
  }
}
.sec-eperience .box-east .box_ttl {
  color: #F59528;
}
.sec-eperience .box-east .bgcolor {
  background-color: #FFF9F9;
}
.sec-eperience .box-west .box_ttl {
  color: #32B6A2;
}
.sec-eperience .box-west .bgcolor {
  background-color: #F9FFFE;
}
.sec-eperience .box-south .box_ttl {
  color: #63AAE9;
}
.sec-eperience .box-south .bgcolor {
  background-color: #EDF5FC;
}
.sec-eperience .inner-activity {
  background-color: #F9F8F1;
}
.sec-eperience .sec_ttl img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec-eperience .sec_ttl img {
    width: 60%;
  }
}
.sec-eperience .box_header {
  align-items: flex-end;
  gap: min(5vw, 92px);
  margin-top: -7.5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec-eperience .box_header {
    width: 100vw;
    margin: -14vw calc(50% - 50vw) 6vw;
    padding: 0 3vw;
    gap: 6vw;
  }
}
.sec-eperience .box_header .left {
  width: 100%;
  max-width: 49.5625rem;
}
@media screen and (max-width: 767px) {
  .sec-eperience .box_header .left {
    width: 56%;
  }
}
.sec-eperience .box_header .left .box_ttl {
  background-color: #fff;
  border-radius: 2.5rem;
  padding: 2.5rem 1.5rem;
  min-height: 11.6875rem;
  font-size: 1.75rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .sec-eperience .box_header .left .box_ttl {
    font-size: 3.5vw;
    line-height: 1.4;
    padding: 4vw 5vw;
    min-height: unset;
    border-radius: 1.25rem;
  }
}
.sec-eperience .box_header .left .box_ttl span {
  font-size: 2.5rem;
  margin-top: 1rem;
  background: linear-gradient(transparent 60%, #FFFF64 60%);
  padding: 0 0.625rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .sec-eperience .box_header .left .box_ttl span {
    font-size: 4.2vw;
    padding: 0 0.25rem;
    line-height: 1.8;
  }
}
.sec-eperience .box_header .right {
  width: 100%;
  max-width: 316px;
}
@media screen and (max-width: 767px) {
  .sec-eperience .box_header .right {
    width: 35%;
  }
}
.sec-eperience .box_header .right img {
  width: 100%;
}
.sec-eperience .boxlead-wrap {
  align-items: center;
  gap: min(5vw, 80px);
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .sec-eperience .boxlead-wrap {
    align-items: unset;
    flex-direction: column;
  }
}
.sec-eperience .boxlead-wrap .box_lead {
  width: 100%;
  max-width: 48.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .sec-eperience .boxlead-wrap .box_lead {
    font-size: 0.875rem;
  }
}
.sec-eperience .sec-pickup .sec-pickup_ttl {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.sec-eperience .sec-pickup .boxpickup {
  padding: 2.5rem 0;
  position: relative;
}
.sec-eperience .sec-pickup .boxpickup > .dflex {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec-eperience .sec-pickup .boxpickup > .dflex {
    justify-content: unset;
    align-items: unset;
    flex-direction: column-reverse;
  }
}
.sec-eperience .sec-pickup .boxpickup .contents {
  width: 52%;
}
@media screen and (max-width: 767px) {
  .sec-eperience .sec-pickup .boxpickup .contents {
    width: 100%;
  }
}
.sec-eperience .sec-pickup .boxpickup .contents .boxpickup_ttl {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sec-eperience .sec-pickup .boxpickup .contents .boxpickup_ttl {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
  }
}
.sec-eperience .sec-pickup .boxpickup .contents .boxpickup_txt {
  line-height: 2;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sec-eperience .sec-pickup .boxpickup .contents .boxpickup_txt {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
}
.sec-eperience .sec-pickup .boxpickup .img {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .sec-eperience .sec-pickup .boxpickup .img {
    width: 100%;
    margin-bottom: 0.25rem;
  }
}
.sec-eperience .sec-pickup .boxpickup .img img {
  width: 100%;
}
.sec-eperience .sec-pickup .boxpickup:not(:last-of-type):after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background: url("../img/border_dotted.svg") repeat-x top center;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sec-eperience .sec-pickup .boxpickup:first-of-type {
  padding-top: 0;
}
.sec-eperience .sec-pickup .boxpickup:last-of-type {
  padding-bottom: 0;
}
.sec-eperience .sec-pickup .boxpickup:nth-child(even) > .dflex {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .sec-eperience .sec-pickup .boxpickup:nth-child(even) > .dflex {
    flex-direction: column-reverse;
  }
}
.sec-eperience .sec-activities {
  background-color: #fff;
  border-radius: 2.5rem;
  padding: 2.5rem 4.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-eperience .sec-activities {
    padding: 1.875rem 0 0;
    margin-top: -5rem;
  }
}
@media screen and (min-width: 768px) {
  .sec-eperience .sec-activities {
    margin-top: -10rem;
  }
}
.sec-eperience .sec-activities .sec-activities_ttl {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec-eperience .sec-activities .sec-activities_ttl {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .sec-eperience .sec-activities .list {
    display: flex;
    gap: min(4vw, 64px);
  }
  .sec-eperience .sec-activities .list .item {
    width: 100%;
    max-width: 19.4375rem;
  }
}
.sec-eperience .sec-activities .contents .ttl {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.sec-eperience .sec-activities .contents .txt {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.sec-eperience .sec-activities .contents .price {
  text-align: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.sec-eperience .sec-activities .img {
  position: relative;
  width: 100%;
  max-width: 19.4375rem;
}
@media screen and (max-width: 767px) {
  .sec-eperience .sec-activities .img {
    max-width: unset;
  }
}
.sec-eperience .sec-activities .img .btnwrap {
  position: absolute;
  bottom: 0;
  right: 0;
}
.sec-eperience .sec-activities .img .btn {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1rem;
  border: 0.0625rem solid #091C46;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-eperience .sec-activities .img .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  border-radius: inherit;
  z-index: 0;
}
.sec-eperience .sec-activities .img .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #4EC3D9 0%, #1DD6B2 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  z-index: 0;
}
.sec-eperience .sec-activities .img .btn span {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/icon_arrow_btn_balck.svg") no-repeat center center;
  background-size: contain;
  transition: opacity 0.3s ease-in;
  z-index: 1;
}
.sec-eperience .sec-activities .img .btn span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/icon_arrow_btn_white.svg") no-repeat center center;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  z-index: 2;
}
.sec-eperience .sec-activities a {
  display: block;
  color: #091C46;
}
.sec-eperience .sec-activities a > .dflex {
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .sec-eperience .sec-activities a:hover .img .btn::after {
    opacity: 1;
  }
  .sec-eperience .sec-activities a:hover .img .btn span::after {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .sec-eperience .sec-activities .top__inner {
    max-width: 1200px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }
  .sec-eperience .sec-activities .top__section ul {
    overflow: hidden;
    padding: 20px 0;
  }
  .sec-eperience .sec-activities .top__title {
    text-align: center;
  }
  .sec-eperience .sec-activities .top .list {
    color: white;
    display: flex;
  }
  .sec-eperience .sec-activities .top .item {
    transition: opacity 0.3s;
    flex-shrink: 0;
    width: 100%;
    padding: 0 6px;
  }
}

/*-----------------------------------------------------------------------------
トップに戻るボタン
-------------------------------------------------------------------------------*/
/* トップに戻るボタンのスタイル */
#scrollToTopBtn {
  position: fixed;
  bottom: 2.75rem;
  right: 2.125rem;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  /* 初期は非表示（opacity: 0; displayはJSで切り替え） */
}
@media screen and (max-width: 767px) {
  #scrollToTopBtn {
    right: 1vw;
    bottom: 18vw;
  }
  #scrollToTopBtn img {
    width: 18vw;
  }
}
@media screen and (min-width: 768px) {
  #scrollToTopBtn:hover {
    transform: scale(1.1, 1.1);
  }
}

/*-----------------------------------------------------------------------------
SP専用固定ナビ
-------------------------------------------------------------------------------*/
.fixednavi {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #32B6A2;
  z-index: 1000;
  border-top: 0.125rem solid #fff;
}
.fixednavi nav ul li {
  width: 20%;
}
.fixednavi nav ul li a {
  display: block;
  color: #fff;
  font-size: 3.2vw;
  text-align: center;
  height: 4rem;
  padding-top: 2.5rem;
}
.fixednavi nav ul li.gnavlist_item-access a {
  background: url("../img/icon_pin_fixed.svg") no-repeat top 0.625rem center;
}
.fixednavi nav ul li.gnavlist_item-recommend a {
  background: url("../img/icon_recommend_fixed.svg") no-repeat top 0.625rem center;
}
.fixednavi nav ul li.gnavlist_item-east a {
  background: url("../img/icon_east_fixed.svg") no-repeat top 0.625rem center;
}
.fixednavi nav ul li.gnavlist_item-west a {
  background: url("../img/icon_west_fixed.svg") no-repeat top 0.625rem center;
}
.fixednavi nav ul li.gnavlist_item-south a {
  background: url("../img/icon_south_fixed.svg") no-repeat top 0.625rem center;
}/*# sourceMappingURL=style.css.map */