/*
****************************************
 common
*****************************************
*/
.page_mv {
    background: url(../images/tourist/mv.jpg);
    background-position: bottom center;
  }
@media screen and (max-width: 959px) {
    .page_mv {
    background: url(../images/tourist/mv.jpg);
    background-position: right 20% center;
		background-size: cover;
  }
}

.page_mv-sum {
    background: url(../images/tourist/mv-sum.jpg);
    background-position: bottom center;
  }
@media screen and (max-width: 959px) {
    .page_mv-sum {
    background: url(../images/tourist/mv-sum.jpg);
    background-position: right 20% center;
		background-size: cover;
  }
}
section img {
    width: 100%;
}
section h3 {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    width: 90%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    font-size: 22px;
    font-size: clamp(16px, 3vw, 22px);

    font-weight: bold;
}
section h3:before,
section h3:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #333;
} 
section h3:before {
    margin-right: 2rem;
}
section h3:after {
    margin-left: 2rem;
}
section h4 {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 20px;
    font-weight: bold;
}
section h5 {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-weight: bold;
}
@media screen and (max-width: 959px) {
    section h3:before {
        margin-right: 1rem;
    }
    section h3:after {
        margin-left: 1rem;
    }
}

/*
****************************************
 イントロ
*****************************************
*/
.intro {
    width: 90%;
    max-width: 1400px;
    margin: 120px auto 0;
    text-align: center;
}
.intro h4 {
    font-size: 20px;
    margin-top: 80px;
    line-height: 2.5;
    font-size: clamp(18px, 1vw, 20px);
}
.intro p {
	max-width: 950px;
	margin: 20px auto 0;
    font-size: 16px;
    line-height: 2.2;
}
@media screen and (max-width: 959px) {
    .intro {
        margin: 60px auto 0;
    }
    .intro h4 {
        margin-top: 60px;
    }

}

/*
****************************************
 過ごし方1日目、2日目
*****************************************
*/
.experience {
    margin: 100px auto 0;
}
.ex-box {
    max-width: 1400px;
    width: 90%;
    margin: 140px auto 0;
    display: flex;
    justify-content: space-between;
    text-align: left;
    align-items: center;
}
.ex-txt {
    width: 29%;
    margin: 0 auto;
    text-align: left;
}
.ex-txt h4 {
    line-height: 2.3;
}
.ex-txt p {
    margin-top: 30px;
    text-align: justify;
}
.ex-img {
    width: 60%;
}


/* 2n番目用 */
.box02 {
    flex-direction: row-reverse;
}
/* img3枚用 */
.box-grid3 {
    width: 65%;
    max-width: 850px;
    display: grid; 
    grid-template-columns: 55% 45%; 
    grid-template-rows: 1fr 1fr; 
    grid-template-areas: 
      "main sub1"
      "main sub2"; 
      gap: 5px;
  }
  .box-grid3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  .main00 { grid-area: main; }
  .sub01 { grid-area: sub1; }
  .sub02 { grid-area: sub2; }

  /* img2枚用 */
  .box-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr 1fr; 
    gap: 5px;
  }
  .box-grid2 div:nth-of-type(1) {
     grid-column: 1 / 2;
     grid-row: 1 / 3;
  }
  .box-grid2 div:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
 }
/* img4枚用 */
.box-grid4 {
    width: 65%;
    max-width: 850px;
    display: grid; 
    grid-template-columns: 70% 30%; 
    grid-template-rows: 1fr 1fr 1fr; 
    grid-template-areas: 
      "main sub1"
      "main sub2"
      "main sub3"; 
      gap: 5px;
  }
  .box-grid4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  .main { grid-area: main; }
  .sub1 { grid-area: sub1; }
  .sub2 { grid-area: sub2; }
  .sub3 { grid-area: sub3; }

  /* img2枚用 */
  .box-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr 1fr; 
    gap: 5px;
  }
  .box-grid2 div:nth-of-type(1) {
     grid-column: 1 / 2;
     grid-row: 1 / 3;
  }
  .box-grid2 div:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
 }
 @media screen and (max-width: 959px) {
    .ex-box {
        display: block;
        margin: 40px auto 0;
    }
    .ex-txt {
        width: 100%;
        margin: 0 auto;
        text-align: left;
    }
    .ex-txt h4 {
        line-height: 1.5;
        text-align: center;
        margin-top: 10px;
    }
    .ex-txt h4 span {
        font-size: 16px;
    }
    .ex-txt p {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 15px;
    }
    .ex-img, .box-grid3, .box-grid4 {
        width: 100%;
    }
 }

 /*
****************************************
　周辺情報
*****************************************
*/
#ex-around {
    width: 100%;
    margin: 160px auto 180px;
}
.ex-contents {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}
.ex-contents li {
    width: calc(100% / 3 - 50px);
    text-align: right;
    margin-top: 80px;
}
.ex-contents li h4 {
    text-align: center;
    margin-top: 25px;
    line-height: 2.8;
}
.ex-contents h4 span {
    font-family: "dnp-shuei-gothic-gin-std", sans-serif;
    font-size: 14px;
    background: #333;
    color: #fff;
    padding: 5px 18px;
    font-weight:100;
}
.ex-contents li p {
    width: 90%;
    margin: 10px auto 0;
    text-align: justify;
}
.ex-contents li a {
    margin-top: 20px;
}
@media screen and (max-width: 959px) {
    #ex-around {
        margin: 100px auto 100px;
    }
    .ex-contents {
        gap: 20px;
        margin-top: 20px;
    }
    .ex-contents li {
        width: calc(100% / 2 - 20px);
        margin-top: 20px;
    }
}
@media screen and (max-width: 450px) {
    .ex-contents {
        gap: 40px;
    }
    .ex-contents li {
        width: 100%;
    }
}
 /*
****************************************
　プラン概要
*****************************************
*/
.plan {
    max-width: 1400px;
    margin: 120px auto;
}
.plan h4 {
    text-align: center;
    font-size: 25px;
    font-size: clamp(20px, 3vw, 25px);
}
.plan p {
    width: 90%;
    text-align: center;
    margin: 20px auto 0;
}
.plan-table {
    width: 90%;
    max-width: 840px;
    margin: 80px auto 0;
    font-size: 18px;
}
.plan-table tr {
    text-align: left;
    border-top: solid 1px #333;
    border-bottom: solid 1px #333;
}
.plan-table th, .plan-table td {
    padding: 25px 0 24px 80px;
}
.plan-table td {
    padding: 25px 0 24px 0;
}
.plan-table th {
    width: 30%;
    vertical-align: middle;
}
.plan_link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 30px;
    margin: 120px auto 0;
}
.plan_link li {
    width: calc(100% / 2 - 30px);
    max-width: 550px;
    background: #f0f0f0;
    padding: 40px 0 30px;
    position: relative;
    text-align: center;
}
.plan_link li img {
    position: absolute;
    top: 5%;
    left: 5%;
    max-width:55px;
    width: 10%;
}
.plan_link div {
    width: 95%;
    text-align: right;
}
@media screen and (max-width: 959px) {
    .plan-table {
        margin-top: 60px;
    }
    .plan-table th, .plan-table td {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0;
    }
    .plan-table th {
        padding-top: 10px;
        font-size: 15px;
    }
    .plan-table td {
        padding-bottom: 10px;
        font-size: 15px;
    }
    .plan_link {
        width: 90%;
        margin-top: 80px;
    }
    .plan_link li {
        width: 100%;
        padding: 80px 0 30px;
    }
    .plan-table tr:first-child {
        border-top: none;
    }
}