/* ----------------------------
共通
------------------------------ */
h2.midashi{
  width: calc(100% - 32px);
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  color: #006E47;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 12px;
  position: relative;
}

h2.midashi::after{
  display: block;
  content: '';
  width: 52px;
  height: 4px;
  background: #BBA53D;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

h2.midashi + p{
  text-align: center;
  margin: 0 auto 24px;
}

.ticket-box-wrapper{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ticket-box{
  width: 100%;
  border: 1px solid #B3B3B3;
  padding: 16px;
  margin: 0 auto;
  border-radius: 8px;
}

.ticket-box h5{
font-size: 1.6rem;
line-height: 1.35;
font-weight: 700;
margin: 0 auto 12px;
text-align: center;
}

.ticket-box .price{
  font-size: 1.4rem;
  text-align: center;
  margin: 0 auto 20px;
}

.cart-btn-mini{
  width: 100%;
  max-width: 196px;
  align-self: center;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 12px 36px 12px 16px;
  border-radius: 4px;
  background:#BBA53D url(../images/arrow_right-w.svg)no-repeat;
  background-position: right;
}

@media screen and (min-width:768px) {
h2.midashi{
  width: 100%;
  font-size: 3.2rem;
}

.ticket-box{
  padding: 16px 16px 16px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "ttl btn"
                        "price btn";
  gap: 12px 16px;
}

.ticket-box h5{
margin: 0;
text-align: left;
}

.ticket-box .price{
  grid-area: price;
  text-align: left;
  margin: 0;
}

.cart-btn-mini{
  grid-area: btn;
  justify-self: end;
}
}

/* ----------------------------
floating-menu
------------------------------ */
.floating-menu {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  background: #BBA53D;
  z-index: 2;
  border-radius: 10px 10px 0 0 ;
}

.floating-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.floating-menu ul li{
  text-align: center;
  position: relative;
}

.floating-menu ul li:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: #fff;
}

.floating-menu ul li a {
  display: block;
  padding:5.128vw 5.5vw;
}

.floating-menu ul li a p{
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

@media screen and (min-width:768px) {
.floating-menu {
  width: fit-content;
  border-radius: 10px 0 0 10px;
}

.floating-menu ul {
  flex-direction: column;
}

.floating-menu ul li:not(:last-child)::after{
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background: #fff;
  top: unset;
  bottom: 0;
  right: 8px;
}

.floating-menu ul li a {
  padding: 24px 16px;
}
}


/* ----------------------------
ticket-hero-area
------------------------------ */
.ticket-hero-area{
width: 100%;
margin: 0 auto;
}

.ticket-hero-area-wrapper{
  width: 100%;
  display: grid;
  grid-template-rows: auto auto auto auto;
  grid-template-areas:"hero-top-txt"
                      "hero-img-A"
                      "hero-center-area"
                      "hero-img-B";
}

.hero-top-txt{
  width: 100%;
  line-height: 1.5;
  color: #FFFDC6;
  font-weight: 700;
  text-align: center;
  padding: 12px 16px;
  background: #006E47;
  grid-area: hero-top-txt;
}

.hero-img-A{
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  grid-area: hero-img-A;
}

.hero-center-area{
  width: 100%;
  grid-area: hero-center-area;
}

.hero-center-area-wrapper{
  width: calc(100% - 32px);
  margin: 40px auto 0;
}

.hero-ttl{
  margin:40px auto 24px;
}

.hero-sub-ttl{
  width: 100%;
  font-size: clamp(1rem, 4.103vw, 1.4rem);
  line-height: 1.5;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 8px 16px;
  background: #BBA53D;
  border-radius: 50px;
  margin:0 auto 24px;
}

.hero-center-img-wrapper{
  position: relative;
  margin: 0 auto;
}

.hero-img-ezorisu{
  margin: 0 auto;
}

.hero-img-B{
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  grid-area: hero-img-B;
}

@media screen and (min-width:768px) {
.ticket-hero-area-wrapper{
  grid-template-rows: auto auto;
  grid-template-columns: auto auto auto;
  grid-template-areas:"hero-top-txt hero-top-txt hero-top-txt"
                      "hero-img-A hero-center-area hero-img-B";
  gap: 0 16px;
}

.hero-center-area-wrapper{
  width: 100%;
  height: calc(100% - 40px);
  margin: 0 auto;
  position: relative;
}

.hero-sub-ttl{
  margin:0 auto 16px;
}

.hero-center-img-wrapper{
  width: 100%;
  position: absolute;
  bottom: 0;
}

.hero-img-ezorisu{
  width: clamp(220px, 30vw, 440px);
  height: auto;
}
}

@media screen and (min-width:1024px) {
  .hero-sub-ttl{
    font-size: 1.6rem;
  }
  .hero-img-ezorisu{
    width: clamp(220px, 40vw, 440px);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

/* ----------------------------
ticket-page-sub-headline
------------------------------ */
.ticket-page-sub-headline{
  background:#006E47 url(../images/ticket-dounan/ezorisu-happy.png) no-repeat;
  background-position: center bottom;
  background-size: 124px auto;
  padding: 16px 16px 170px;
}

.ticket-page-sub-headline h2{
  font-size: 3.2rem;
  line-height: 1.45;
  font-weight: 700;
  color: #FFFDC6;
  text-align: center;
  text-decoration: underline;
  margin: 0 auto 16px;
}

.ticket-page-sub-headline p{
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  color: #FFF;
  text-align: center;
}

.ticket-page-sub-headline p .yellow{
  color: #FFFDC6;
}

.ticket-page-sub-headline p .dot{
  display: inline-block;
  position: relative;
  padding-top: 0.2em;
}

.ticket-page-sub-headline p .dot::before{
  position: absolute;
  content: "";
  width: 0.2em;
  height: 0.2em;
  border-radius: 50%;
  background-color: #FFFDC6;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0);
}


@media screen and (min-width:768px) {
.ticket-page-sub-headline{
  background-position: right 5% bottom 0;
  background-size: 100px auto;
  padding: 24px;
}
}

@media screen and (min-width:1024px) {
.ticket-page-sub-headline{
  background-size: 130px auto;
}

.ticket-page-sub-headline h2{
  font-size: 4rem;
  line-height: 1;
  margin: 0 auto 24px;
}

.ticket-page-sub-headline{
  padding: 32px;
}

.ticket-page-sub-headline p{
  font-size: 3.2rem;
  line-height: 1;
}
}

/* ----------------------------
recommend-ticket-area
------------------------------ */
.recommend-ticket-area{
  background: #FFFDC6;
  padding: 40px 0;
}

.recommend-ticket-area h2{
  font-size: 3.2rem;
  line-height: 1.45;
  font-weight: 700;
  color: #004D32;
  text-align: center;
  margin: 0 auto 16px;
}

.recommend-ticket-area h3{
  width: calc(100% - 32px);
  font-size: 1.6rem;
  line-height: 1.45;
  font-weight: 700;
  color: #222222;
  text-align: center;
  margin: 0 auto 32px;
}

.recommend-ticket-box-cover{
  width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  align-items: center;
}

.recommend-ticket-box{
max-width: 460px;
background: #fff;
border-radius: 16px;
box-shadow: 0px 4px 8px rgba(0,0,0,0.25);
}

.ticket-headline{
  width: 100%;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 12px;
  margin: 0 auto 16px;
  border-radius: 16px 16px 0 0 ;
}

.ticket-headline.green{
  color: #006E47;
  background: #EBF5DC;
}

.ticket-headline.blue{
  color: #006999;
  background: #ECFCFF;
}

.recommend-ticket-box-wrapper{
  width: calc(100% - 32px);
  margin: 0 auto 24px;
}

.recommend-ticket-note{
  font-size: 1.6rem;
  text-align: center;
  margin: 16px auto;
}

.recommend-ticket-box-wrapper img{
  margin: 0 auto;
}

.recommend-ticket-box-wrapper h5{
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 16px auto 12px;
}

.recommend-ticket-price{
  font-weight: 500;
  padding: 8px 8px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  margin: 0 auto 16px;
  text-align: center;
}

.recommend-ticket-checkpoint{
  margin: 16px 0 24px;
}

.recommend-ticket-checkpoint li{
  font-size: 1.4rem;
  line-height: 2.4;
  padding: 0 0 0 15px;
  background:url(../images/ticket-dounan/icon-check.svg)no-repeat top 12px left 0;
}

@media screen and (min-width:768px) {
.recommend-ticket-area{
  padding: 40px 0 80px;
}

.recommend-ticket-area h2{
  font-size: 4rem;
}

.recommend-ticket-area h3{
  font-size: 2rem;
}

.recommend-ticket-box-cover{
  flex-direction: row;
  justify-content: center;
}
}

/* ----------------------------
ticket-page-headline
------------------------------ */
.ticket-page-headline h1{
  width: 100%;
  font-size: 3.2rem;
  line-height:1.45;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 24px 16px;
  background: #006E47; 
}

.ticket-page-headline .yellow{
color: #FFFDC6;
}

.ticket-page-headline .dot{
  display: inline-block;
  position: relative;
  padding-top: 0.1em;
}

.ticket-page-headline .dot::before{
  position: absolute;
  content: "";
  width: 0.2em;
  height: 0.2em;
  border-radius: 50%;
  background-color: #FFFDC6;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0);
}

@media screen and (min-width:768px) {
.ticket-page-headline h1{
  font-size: 4.8rem;
  padding: 40px 32px;
}
}

/* ----------------------------
worry-area
------------------------------ */
.worry-area{
  background: #E7ECE3;
  margin: 0 0 20px 0;
  padding: 24px 0 40px;
  position: relative;
}

.worry-area::before{
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 20px solid #E7ECE3;
}

.worry-area-wrapper{
  width: calc(100% - 32px);
  margin: 0 auto;
}

.worry-area h2{
  width: fit-content;
  font-size: 2.4rem;
  line-height:1.45;
  font-weight: 700;
  color: #687E72;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

.worry-area h2::before{
  position: absolute;
  display: inline-block;
  content: '';
  left: -40px;
  bottom: 23px;
  width: 40px;
  height: 3px;
  background-color: #687E72;
  -webkit-transform: rotate(70deg);
  transform: rotate(70deg);
}

.worry-area h2::after{
  position: absolute;
  display: inline-block;
  content: '';
  right: -40px;
  bottom: 23px;
  width: 40px;
  height: 3px;
  background-color: #687E72;
  -webkit-transform: rotate(-70deg);
  transform: rotate(-70deg);
}

.worry-block{
  width: calc(100% - 32px);
  max-width: 960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin: 16px auto 0;
  padding: 170px 0 0 0;
  position: relative;
}

.worry-block::before{
  display: block;
  content: '';
  width: 120px;
  height: 153px;
  background:url(../images/ticket-dounan/ezorisu-nayami.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: calc(50% - 20px);
  transform: translate(-50%, 0);
}

.worry-block li{
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  background: #fff;
  padding: 16px;
  width: 100%;
  border-radius: 50px;
}

@media screen and (min-width:768px) {
.worry-area{
  padding: 40px 0;
}

.worry-area h2{
  font-size: 3.2rem;
}

.worry-area h2::before{
  width: 36px;
}

.worry-area h2::after{
  width: 36px;
}

.worry-block{
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin: 32px auto 0;
  align-items:stretch;
  padding: 0 0 0 140px;
}

.worry-block::before{
  bottom: 0;
  left: 0;
  transform:unset;
}

.worry-block li{
  display: flex;
  flex:1;
  align-items: center;
  justify-content: center; 
  padding: 30px 32px;
  width: auto;
  max-width: 210px;
  border-radius: 32px;  
  word-break: break-word;
  line-break: strict;
}
}

@media screen and (min-width:1024px) {
 .worry-block{
  padding: 0;
} 
}

/* ----------------------------
solve-area
------------------------------ */
.solve-area{
  margin: 24px auto 0;
}

.solve-area-wrapper{
  width: calc(100% - 32px);
  margin: 0 auto;
}

.solve-area h2{
  font-size: 3.2rem;
  line-height: 1.35;
  font-weight: 700;
  color: #004D32;
  text-align: center;
}

.solve-area h2 .marker{
  background: linear-gradient(transparent 65%, #FFFDC6 65%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.solve-area p{
  text-align: center;
  line-height: 2;
  font-weight: 500;
  margin: 32px auto 0;
}

.solve-area p span{
  color: #006E47;
}

@media screen and (min-width:1024px) {
.solve-area-wrapper{
  width: 100%;
}
}

/* ----------------------------
selling-points-area
------------------------------ */
.selling-points-area{
  width: calc(100% - 32px);
  max-width: 500px;
  margin: 40px auto;
}

.selling-points-area-wrapper{
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.selling-points-area-wrapper picture{
  width: fit-content;
  height: fit-content;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto;
}

.selling-points-txt h2{
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}

.selling-points-txt h2 span{
  color: #006E47;
}

.selling-points-list{
  margin: 8px auto 0;
}

.selling-points-list li{
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 700;
  padding: 0 0 0 15px;
  background:url(../images/ticket-dounan/icon-check.svg)no-repeat top 12px left 0;
}

@media screen and (min-width:768px) {
.selling-points-area{
  max-width: 886px;
  margin: 80px auto;
}

.selling-points-area-wrapper{
  flex-direction: row;
  gap: 40px;
}

.selling-points-area-wrapper picture{
  width: 430px;
  flex-shrink: 0;
}

.selling-points-txt{
  flex: 1;
}

.selling-points-txt h2{
  text-align: left;
}
}

/* ----------------------------
comparison-table-area
------------------------------ */
.comparison-table-area{
  background: #EBF5DC;
  padding: 40px 0 40px 0;
}

.comparison-table-area h2{
  margin: 0 auto 24px;
}

.comparison-table-area h2 + p{
  width: calc(100% - 32px);
}

.table-scroll {
  padding: 0 16px 0 ;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table-area table{
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: 960px;
  max-width: 960px;
  border: 1px solid #687E72;
  border-radius: 16px;
  overflow: hidden;
  font-size: 1.6rem;
  line-height: 1.35;
  font-weight: 500;
}

.comparison-table-area table th {
  background: #006E47;
  color: #fff;
  padding: 8px;
  text-align: center;
  font-weight: bold;
  border-right: 1px solid #fff;
}

.comparison-table-area table th:last-child{
  border-right: none;
}

.comparison-table-area table td {
  padding: 16px;
  border-top: 1px solid #BCC7BC;
  border-right: 1px solid #BCC7BC;
}

.comparison-table-area table td:last-child{
  border-right: none;
}

.comparison-table-area table tr.recommend td {
  background: #FFFDC6;
}

.comparison-table-area table tr.recommend td .recommend-tag{
  display: inline-block;
  position: relative;
  padding: 0 0 0 80px;
}

.comparison-table-area table tr.recommend td .recommend-tag::before{
  display: inline-block;
  content: 'オススメ';
  background: #BBA53D;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  border-radius: 50px;
  padding: 4px 12px;
  position: absolute;
  left: 0;
}

.comparison-table-area table tr:not(.recommend) td {
  background: #fff;
}

@media screen and (min-width:1024px) {
  .comparison-table-area{
  padding: 48px 0 48px 0;
}

  .table-scroll{
    padding: 0;
    margin: 0 auto;
    overflow-x: unset; 
  }

  .comparison-table-area table{
    margin: 0 auto;
}
}

/* ----------------------------
tab-area
------------------------------ */
.tab-area{
  width: calc(100% - 32px);
  max-width: 960px;
  margin: 40px auto 0;
}

.tab-area h2{
  width: 100%;
  margin: 0 auto 24px;
}

.tab-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.tab-switch {
  display: none;
}

.tab-label {
  width: 50%;
  cursor: pointer;
  padding: 12px 16px;
  box-sizing: border-box;
  text-align: center;
  background: #E7ECE3;
  font-size: 1.4rem;
  line-height: 1.3;
  color: #687E72;
  font-weight: 500;
  border-radius: 16px 16px 0 0;
  overflow-wrap: break-word;
}

.tab-switch:checked + .tab-label {
  background: #006E47;
  color: #fff;
}

.tab-content {
  width: 100%;
  display: none;
  border: 1px solid #006E47;
  box-sizing: border-box;
  border-radius: 0 0 16px 16px;
}

#TAB-01:checked + .tab-label + .tab-content,
#TAB-02:checked + .tab-label + .tab-content {
  display: block;
}

/* コンテンツ中身 */
.tab-content-wrapper{
  width: calc(100% - 32px);
  margin: 16px auto 0;
}

.tab-content-headline{
  text-align: center;
  font-weight: 700;
  margin: 0 auto 16px;
}

.selling-points-img{
  width: 100%;
  max-width: 800px;
  margin: 0 auto 24px;
}

.introduce-ticket-wrapper{
  margin: 0 auto 32px;
}

.introduce-ticket-wrapper h4{
  font-size: 1.6rem;
  font-weight: 700;
  color: #004D32;
  margin: 0 auto 16px;
  padding: 0 0 0 28px;
  background: url(../images/ticket-dounan/icon_ticketmark.svg) no-repeat;
  background-size: 24px 16px;
}

.introduce-ticket-wrapper h4 + p{
  margin: 0 auto 16px;
}

@media screen and (min-width:768px) {
.tab-label {
  padding: 16px;
  font-size: 1.8rem;
}

.tab-switch:checked + .tab-label {
  padding: 16px;
}

/* コンテンツ中身 */
.tab-content-wrapper{
  width: calc(100% - 80px);
  margin: 32px auto 0;
}

.tab-content-headline{
  margin: 0 auto 24px;
}

.selling-points-img{
  margin: 0 auto 32px;
}

.introduce-ticket-wrapper h4{
  font-size: 2rem;
  margin: 0 auto 20px;
  padding: 0 0 0 40px;
  background-size: 32px 20px;
}
}

/* ----------------------------
purpose-area
------------------------------ */
.purpose-area{
  width: 100%;
  margin: 40px auto 0;
}

.purpose-area-wrapper{
  width: 100%;
}

.purpose-area-ttl{
  width: 100%;
  padding: 16px;
  background: #006E47;
  text-align: center;
  margin: 0 auto 16px;
}

.purpose-area-ttl p{
  width: fit-content;
  font-weight: 700;
  color: #006E47;
  padding: 2px 16px;
  background: #fff;
  border-radius: 50px;
  margin: 0 auto 12px;
}

.purpose-area-ttl h3{
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.purpose-area-ttl + p{
  width: calc(100% - 32px);
  margin: 0 auto 32px;
}

/* popup */
.popup-background{
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0,0,0,0.5);
}

.popup{
  position: fixed;
  z-index: 101;
  width: calc(100% - 32px);
  max-width: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 3px 1px gray;
  padding: 32px 24px;
  max-height: 90vh;
  overflow: hidden;
}

/* close button */
.popup > .close-button{
  position:absolute;
  top: 16px;
  right: 16px;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: gray;
  font-size: 20px;
}

.popup > .close-button:hover{
  background-color: #767676;
  color: #fff;
}

/* content */
.popup > .popup-content{
  padding: 10px;
  text-align: center;
  overflow-y: auto;
  max-height: calc(90vh - 80px);;
}

/* hide/show */
.popup-flag{
  display: none;
}

.popup-flag:not(:checked) + .popup-background{
  display:none;
}

.popup-flag:not(:checked) + * + .popup{
  display:none;
}

/* popup　外観 */
.purpose-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.purpose-content{
  width: calc(100% - 64px);
  text-align: center;
}

.purpose-content picture{
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.purpose-content picture img{
  width: 100%;
}

.purpose-content h4{
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 16px;
}

.popup-btn{
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #004D32;
  border: 1px solid #006E47;
  margin: 0 auto;
  padding: 8px 16px;
  min-width: 222px;
  border-radius: 50px;
}

/* popup　中身 */
.popup-content p{
  margin: 24px auto;
}

@media screen and (min-width:768px) {
.purpose-area{
  margin: 80px auto 0;
}

.purpose-area-wrapper{
  width: calc(100% - 32px);
  max-width: 960px;
  margin: 0 auto;
}

.purpose-area-ttl{
  width: calc(100% - 80px);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.purpose-area-ttl::before{
  display: block;
  content: '';
  width: 80px;
  height: 80px;
  background: url(../images/ticket-dounan/ribbon-left.svg) no-repeat;
  position:absolute;
  left: -40px;
  bottom: -16px;
  z-index:-1
}

.purpose-area-ttl::after{
  display: block;
  content: '';
  width: 80px;
  height: 80px;
  background: url(../images/ticket-dounan/ribbon-right.svg) no-repeat;
  position:absolute;
  right: -40px;
  bottom: -16px;
  z-index:-1
}

.purpose-area-ttl p{
  font-size: 1.8rem;
  margin: 0;
  padding: 0 16px;
}

.purpose-area-ttl h3{
  font-size: 2.4rem;
}

.purpose-area-ttl + p{
  margin: 32px auto;
  text-align: center;
}

/* popup　外観 */
.purpose-container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 32px;
}

.purpose-content{
  width: calc(50% - 64px);
}

.popup-btn{
  padding: 10px 16px;
}
}

@media screen and (min-width:1024px) {
.purpose-container{
  flex-wrap:  nowrap;
  gap: 24px;
}

.purpose-content{
  width: calc((100% - 72px)/4);
}
}

/* ----------------------------
whatyoucando-area
------------------------------ */
.whatyoucando-area{
  width: 100%;
  background: #EBF5DC;
  margin: 40px auto 0;
}

.whatyoucando-area-wrapper{
  margin: 48px auto 40px;
}

.whatyoucando-list{
  width: calc(100% - 32px);
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 24px auto 0;
}

.whatyoucando-list li{
  width: calc((100% - 16px) / 2);
  background: #fff;
  border-radius: 16px;
  padding: 16px;
}

.whatyoucando-list li h3{
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  color: #004D32;
  text-align: center;
  margin: 0 auto 16px;
}

.whatyoucando-list li img{
  width: auto;
  height: 80px;
  margin: 0 auto 16px;
}

.whatyoucando-list li p{
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width:768px) {
.whatyoucando-area{
  margin: 80px auto 0;
}

.whatyoucando-area-wrapper{
  margin: 48px;
}

.whatyoucando-list{
  flex-wrap: nowrap;
  gap: 24px;
  margin: 40px auto 0;
}

.whatyoucando-list li{
  width: calc((100% - 72px) / 4);
}

.whatyoucando-list li h3{
  font-size: 2rem;
  margin: 0 auto 24px;
}

.whatyoucando-list li img{
  height: 120px;
  margin: 0 auto 24px;
}
}

/* ----------------------------
model-course-area
------------------------------ */
.model-course-area{
  margin: 40px auto 0;
}

.model-course-area-wrapper{
  width: calc(100% - 32px);
  max-width: 960px;
  margin: 0 auto;
}

.model-course-area-wrapper h2{
  margin: 0 auto 24px;
}

/* ---bnr-- */
.model-course-bnr{
  margin: 0 auto 8px;
}
.model-course-bnr-wrapper{
  border:3px solid #E7173A;
  display:grid;
  grid-template-areas: "usual special"
                      "saves saves";
  grid-template-rows: 53px auto;
  grid-template-columns: auto 1fr;
  justify-content: center;
}

.usual-price-wrapper{
  grid-area: usual;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px 0 16px;
  position: relative;
}

.usual-price-wrapper::after{
  display: inline-block;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/ticket-dounan/icon_triangle-gold.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
}

.usual-price-tag{
  font-size: clamp(1rem, 2.667vw, 1.6rem);
  font-weight: 700;
  color: #687E72;
  text-align: center;
  background: #E7ECE3;
  padding: 2px 12px;
  margin: 0 6px 0 0;
  border-radius: 50px;
}

.usual-price{
  font-size: clamp(1.4rem, 5.333vw, 4rem);
  font-weight: 700;
  color: #687E72;
  text-decoration: line-through;
}

.special-price-wrapper{
  width: fit-content;
  grid-area: special;
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-price-tag{
  font-size: clamp(1.4rem, 3.733vw, 2.4rem);
  font-weight: 700;
}

.special-price{
  font-size: clamp(1.4rem, 5.333vw, 4rem);
  color: #E7173A;;
  font-weight: 700;
}

.saves-price-wrapper{
  grid-area: saves;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background:#E7173A;
  padding: 8px 16px;
}

.saves-price-wrapper .saves-price{
  font-size: clamp(1rem, 4.267vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.bnr-note{
  font-size: 1rem;
  text-align: right;
  margin: 8px auto;
}

/* --model-course-- */
.model-course{
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid #B3B3B3;
  border-radius: 16px;
  background: linear-gradient(#B3B3B3, #B3B3B3) no-repeat;
  background-size: 1px 100%; 
  background-position: 64px;
}

.model-course-wrapper{
  padding: 16px;
}

.start-block{
  display: flex;
  gap: 32px;
}

.time-schedule{
  width: 32px;
}

.activities-block{
  flex: 1;
}

.activities{
  font-weight: 700;
  padding: 0 0 0 20px;
  position: relative;
}

.activities span{
  font-weight: 400;
}

.activities::before{
  display: inline-block;
  content: '';
  width: 16px;
  height: 16px;
  background: url(../images/ticket-dounan/icon_triangle-black.svg)no-repeat;
  position: absolute;
  top: 7px;
  left: 0;
}

.travel-time-block{
  height: 100%;
  margin: 0 0 0 80px;
  padding: 24px 0 24px 8px;
  border-left: 2px solid #BBA53D;
  position: relative;
}

.travel-time-block::after{
  display: block;
  content: '';
  width: 15px;
  height: 9px;
  background: url(../images/ticket-dounan/icon_arrow-bottom.svg) no-repeat;
  position: absolute;
  bottom: -2px;
  left: -9px;
}

.travel-time{
  font-size: 1.4rem;
  font-weight: 700;
  color: #BBA53D;
}

.trabel-time-note{
  width: fit-content;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  padding: 5px 10px;
  background: #E7173A;
  border-radius: 50px;
  margin: 8px 0 0 0;
}

.trabel-time-note span{
  color: #FFFDC6;
}

.spot-block{
  display: flex;
  gap: 32px;
}

.details-block{
  padding: 0 0 24px 0;
  flex: 1;
}

.spot-name{
  font-size: 2rem;
  font-weight: 700;
  color: #006E47;
  padding: 0 0 0 20px;
  position: relative;
}

.spot-name::before{
  display: inline-block;
  content: '';
  width: 16px;
  height: 16px;
  background: url(../images/ticket-dounan/icon_triangle-green.svg)no-repeat;
  position: absolute;
  top: 12px;
  left: 0;
}

.spot-note{
  width: fit-content;
  font-size: 1.4rem;
  line-height: 1.25;
  padding: 8px;
  background: #EBF5DC;
  border-radius: 50px;
  margin: 8px 0 0 0;
}

.walk-block{
  display: flex;
  gap: 32px;
}

/* --開閉-- */
.model-course {
  overflow: hidden;
  max-height: 120px; 
  transition: max-height 0.4s ease;
  position: relative;
}

.model-course::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, transparent, white);
}

.model-course.is-open {
  max-height: 3000px;
}

.model-course.is-open::after {
  display: none;
}

.model-course-button{
  background: #fff;
  color: #006E47;
  border: 2px solid #006E47;
  border-radius: 4px;
  margin-top: 24px;
}

.button-more{
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  color: #006E47;
  text-decoration: underline;
  text-align: center;
  margin: 24px auto ;
}

/* --course-area-ticket-- */
.course-area-ticket{
  margin: 40px auto 0;
max-width: 792px;
background: #fff;
border-radius: 16px;
box-shadow: 0px 4px 8px rgba(0,0,0,0.25);
}

.course-area-ticket-wrapper h4{
  font-size: 2rem;
  color: #006E47;
  font-weight: 700;
  text-align: center;
  padding: 12px 8px;
  background: #EBF5DC;
  border-radius: 16px 16px 0 0 ;
}

.course-area-ticket-wrapper picture{
  width: calc(100% - 32px);
  margin: 16px auto 0;
}

.course-area-ticket-wrapper h5{
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 16px auto;
}

.course-area-ticket-txt-wrapper{
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 0 0 24px 0;
}

.course-area-ticket-wrapper .ticket-price{
  font-weight: 500;
  text-align: center;
  margin: 0 auto 24px;
  padding: 8px;
  border-top: 1px solid #767676;
  border-bottom: 1px solid #767676;
}

@media screen and (min-width:768px) {
.model-course-area{
  margin: 80px auto 0;
}

/* ---bnr-- */
.model-course-bnr{
  margin: 0 auto 32px;
}
.model-course-bnr-wrapper{
  display:grid;
  grid-template-areas: "usual special saves";
  grid-template-rows: 90px auto;
  grid-template-columns: auto auto 1fr;
}

.saves-price-wrapper{
  border-radius: 50px 0 0 50px;
}

.bnr-note{
  font-size: 1.2rem;
}
/* --model-course-- */

.travel-time-block{
  display: flex;
  align-items: center;
  gap: 20px;
}

.trabel-time-note{
  font-size: 1.4rem;
  margin: 0;
  padding: 8px 16px;
  position: relative;
}

.trabel-time-note::before{
  display: block;
  content: '';
  position: absolute;
  top: 25%;
  left: 0%;
  margin-left: -20px;
  border: 10px solid transparent;
  border-right: 20px solid #E7173A;
}

.details-block{
  display: flex;
  align-items: center;
  gap: 8px;
}

.spot-note{
  padding: 8px 16px;
}

/* --course-area-ticket-- */

.course-area-ticket-wrapper{
  display: grid;
  grid-template-columns: calc(50% - 12px) calc(50% - 12px);
  grid-template-areas: "ttl ttl"
                        "picture txt";
  gap: 24px;
}
.course-area-ticket-wrapper h4{
  grid-area: ttl;
}

.course-area-ticket-wrapper picture{
  grid-area: picture;
  width: 100%;
  max-width: 400px;
  margin: 0;
  padding: 0 0 24px 24px;
}

.course-area-ticket-txt-wrapper{
  grid-area: txt;
  width: 100%;
  padding: 0 24px 24px 0;
}
}

@media screen and (min-width:1024px) {
.model-course-area{
  margin: 80px auto 0;
}

.model-course-area-wrapper{
  width: 960px;
}
/* ---bnr-- */
.model-course-bnr{
  width: 760px;
}

.model-course-bnr-wrapper{
  display:grid;
  justify-content: space-between;
  grid-template-columns: auto auto 150px;
}

.usual-price-tag{
  padding: 2px 24px;
  margin: 0 12px 0 0;
}

/* --model-course-- */
.model-course{
    background-position: 100px;
}

.model-course-wrapper{
  padding: 40px 48px;
}
}

/* ----------------------------
sightseeing-spot-area
------------------------------ */
.sightseeing-spot-area{
  width: 100%;
  margin: 40px auto 0;
  padding: 40px 0 0;
  background: #EBF5DC;
  overflow: hidden;
}

.sightseeing-spot-area-wrapper h2.midashi{
  margin: 0 auto 32px;
}

.sightseeing-spot-list {
  width: calc(100% - 32px);
  max-width: 460px;
  margin: 0 auto;
}

.sightseeing-spot-list li{
  max-width: 460px;
  margin: 0 auto;
  padding: 0 12px;
}

.sightseeing-spot-img {
  width: 100%;
  height: auto;
  border-radius: 16px 16px 0 0 ;
}

.sightseeing-txt{
  background: #fff;
  border-radius: 0 0 16px 16px;
  padding: 16px;
}

.sightseeing-txt h3{
font-size: 1.6rem;
font-weight: 700;
text-align: center;
margin: 0 auto 12px;
}

.sightseeing-tag{
  font-size: 1.2rem;
  line-height: 1;
  color: #687E72;
  width: 100%;
  padding: 8px;
  text-align: center;
  background: #E7ECE3;
  margin: 0 auto 12px;
  border-radius: 50px;
}

.sightseeing-tag + p{
line-height: 1.5;
}

.slider{
  position: relative;
}

.slick-prev, .slick-next{
  width: 0;
  height: 0;
  top: 30%;
}

.slick-prev:before{
  display: block;
  position: absolute;
  left: 8px;
  z-index: 1;
  content: '';
  width: 48px;
  height: 48px;
  background:  url(../images/ticket-dounan/arrow_left.svg) no-repeat;
}

.slick-next:before{
  display: block;
  position: absolute;
  right: 8px;
  z-index: 1;
  content: '';
  width: 48px;
  height: 48px;
  background: url(../images/ticket-dounan/arrow_right.svg) no-repeat;
}

.slick-dots{
  position: unset;
  margin: 40px auto 0;
}

.slick-dots li{
  padding: 0;
}

.slick-dots li button{
  padding: 0;
}

.slick-dots li button:before{
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: #BCC7BC;
  border-radius: 50px;
}

.slick-dots li.slick-active button:before{
  opacity: 1;
  background-color: #006E47;
}

@media screen and (min-width:768px) {
.sightseeing-spot-area{
  margin: 80px auto 0;
  padding: 48px 0 0;
}

.sightseeing-spot-area-wrapper h2.midashi{
  margin: 0 auto 40px;
}

.sightseeing-spot-list {
  max-width: 1023px;
}
}
@media screen and (min-width:1024px) {
.sightseeing-spot-area{
  margin: 80px auto 0;
  padding: 80px 0 20px;
}

.sightseeing-spot-list {
  max-width: 1016px;
}

.slick-next:before{
  right: -20px;
}

.slick-prev:before{
  left: -20px;
}
}
/* ----------------------------
map-area
------------------------------ */
.map-area{
  width: 100%;
  margin: 40px auto 0;
}

.tab-area-wrapper{
  width: calc(100% - 32px);
  max-width: 960px;
  margin: 0 auto;
}

.map-area h2.midashi{
  margin: 0 auto 32px;
}

.map-area-buttons-wrapper {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.map-area-tab {
  font-size: 1.6rem;
  line-height: 1;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid #004D32;
  background: #fff;
  color: #004D32;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s ease;
}

.map-area-tab:hover {
  background: #004D32;
  color: #fff;
}

.map-area-tab.active {
  background: #004D32;
  color: #fff;
}

.map-area-contents-wrapper {
  position: relative;
}

.map-area-content {
  display: none;
}

.map-area-content.active{
  display: block;
}

/* --tabの中身-- */
.map-content-wrapper h3{
  width: 100%;
  font-size: 1.8rem;
  line-height: 1;
  padding: 16px;
  color: #004D32;
  text-align: center;
  background:#F5FFE6;
  margin: 0 auto 24px;
}

.map-content-headline{
  margin: 0 auto 16px;
}

.map-img-wrapper{
  margin: 0 auto 24px;
  text-align: center;
}

.map-img-wrapper img{
  width: 100%;
}

.map-img-note{
  font-size: 1rem;
  text-align: right;
  margin: 8px auto;
}

.map-ticket-wrapper h3{

  font-size: 1.6rem;
  padding: 0;
  color: #222222;
  text-align: center;
  background:none;
  margin: 0 auto 16px;
}

@media screen and (min-width:768px) {
.map-area{
  margin: 80px auto 0;
}

.map-content-wrapper{
  display:grid;
  grid-template-areas: "ttl ttl"
                      "headline headline"
                      "map ticket";
  grid-template-rows: auto auto auto;
  grid-template-columns: calc(50% - 12px) calc(50% - 12px);
  gap: 24px;
  justify-content: center;
}
/* --tabの中身-- */
.map-content-wrapper h3{
  grid-area:ttl;
  font-size: 2.4rem;
  margin: 0 auto;
}

.map-content-headline{
  grid-area:headline;
  margin: 0 auto;
}

.map-img-wrapper{
  grid-area:map;
  margin: 0 auto;
}

.map-img-note{
  font-size: 1.2rem;
}

.map-ticket-wrapper{
  grid-area: ticket;
}

.map-ticket-wrapper h3{
  font-size: 1.6rem;
  text-align: left;
  margin: 0 auto 16px;
}
}

/* ----------------------------
recommend-ticket-area bottom
------------------------------ */
.recommend-ticket-area.bottom{
  width: 100%;
  margin: 40px auto 0;
}


@media screen and (min-width:768px) {
.recommend-ticket-area.bottom{
  margin: 80px auto 0;
  padding: 80px 0;
}
}

/* ----------------------------
howtouse-area
------------------------------ */
.howtouse-area{
  margin: 40px auto 0;
}

.howtouse-area-wrapper{
  width: calc(100% - 32px);
  margin: 0 auto;
}

.howtouse-area-wrapper h2.midashi{
  margin: 0 auto 32px;
}

.howtouse-txt{
  margin: 0 auto 32px !important;
}

@media screen and (min-width:768px) {
.howtouse-area{
  margin: 80px auto 0;
}

.howtouse-area-wrapper{
  width: 100%;
}

.howtouse-area-wrapper h2.midashi{
  margin: 0 auto 40px;
}

.howtouse-txt{
  margin: 0 auto 40px!important;
}
}

/* ----------------------------
qa-area
------------------------------ */
.qa-area{
  margin: 64px auto 0;
}

.qa-list dl{
  width: calc(100% - 32px);
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin: 0 auto;
}

.qa-item{
  width: 100%;
  background: #fff;
  padding: 24px 16px;
  border-radius: 4px;
}

.qa-item dt{
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 500;
  padding: 0 0 0 40px;
  color: #004D32;
  position: relative;
}

.qa-item dt::before{
  display: block;
  content: '';
  width: 32px;
  height: 32px;
  background: url(../images/icon-Q.svg) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.qa-item dd{
  font-size: 1.6rem;
  line-height: 1.7;
  margin: 8px auto 0;
  padding: 0 0 0 40px;
  position: relative;
}

.qa-item dd::before{
  display: block;
  content: '';
  width: 32px;
  height: 32px;
  background: url(../images/icon-A.svg) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

/* ----------------------------
bottom-message-area
------------------------------ */
.bottom-message-area{
  width: 100%;
  background: #006E47;
  margin: 0 0 -75px 0;
}

.bottom-message-area-wrapper{
  width: calc(100% - 32px);
  margin: 40px auto 0;
  padding:0 0 212px 0;
  position: relative;
}

.bottom-message-area-wrapper::after{
  display: block;
  content: '';
  width: 152px;
  height: 180px;
  background: url(../images/ticket-dounan/ezorisu-travel.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 50%;
  bottom: 0;
  transform: translate(50%, 0%);
}

.bottom-message-area-wrapper h2{
  font-size: 3.2rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
  color: #FFFDC6;
  margin: 0 auto 24px;
}

.bottom-message-area-wrapper p{
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 32px;
}

@media screen and (min-width:1024px) {
.bottom-message-area{
  margin: 0 0 -120px 0;
}

.bottom-message-area-wrapper{
  padding:0;
}

.bottom-message-area-wrapper::after{
  position: absolute;
  right: 0;
  bottom: -40px;
  transform:unset;
}

.bottom-message-area-wrapper h2{
  font-size: 4rem;
}

.bottom-message-area-wrapper p{
  font-size: 2.4rem;
  margin: 0 auto 48px;
}

.bottom-message-area-wrapper .cart-btn{
 margin: 0 auto 40px;
}
}





