/* 全体共通 */
body {
  font-family: "Noto Sans JP", sans-serif;
}

/* ヘッダー */
header{
    position: absolute;
    z-index: 2;
    width: 100%;
    background-color: rgb(8, 61, 5);
}
header .container {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}
header .logo {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}
header nav ul {
    font-size: 12px;
    display: flex;

}
header nav li {
    margin-left: 50px;
    font-weight: 300;
}
header ul li a {
    transition: .4s;
    color: #ffffff;
}
header ul li a:hover {
    color: #e9ac05;
}

/* スマホサイズのメディアクエリ */
@media screen and (max-width: 767px) {
    header .container {display: block;}
   } 

@media screen and (max-width: 767px) {
    header nav ul {
    justify-content: space-between;
    }
    header nav ul li {
    margin-left: 0;
    margin-top: 10px;
    } 
}

/* メインビジュアル */
.main_visual {
    background-image: url('../images/main_v.jpg');
    background-size: cover;
    background-position: center 30px;
    position: relative;
}
.main_visual .container {
    width: 90%;
    margin: 0 auto;
    max-width: 1080px;
    height: 540px
}
.main_visual .title {
    position: absolute;
    top: 100px;
    right: 170px;
    transform: translateX(-20%);
}
.title {
    font-family: serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 4px;
    writing-mode: vertical-rl;
    line-height: 2; 
    z-index: 2;
}

.section1 {
    margin-bottom: 40px;
}

.section1 .row {
    display: flex;
    /*justify-content: space-around;*/
    flex-wrap: wrap;
    max-width: 1080px;
    justify-content: center;
    transform: translateY(30px);
    z-index: 3;
    position: relative;
}
.section1 .container img {
    width: 30%;
    height: auto;
 
}

 /* <!-- コンテンツ1 お問い合わせ --> */

.contents1 .container {
    width: 90%;
    margin: 0 auto;
    max-width: 1080px;
 }
.contents1 {
    color: #090909;
    padding: 80px 0;
}

.contents1 .row {
    display: flex;
    justify-content: space-between;
}
.contents1 .col {
    width: 48%;
}

.contents1 img {
    border-radius: 20px;
}

.contents1 a {
    color: rgb(11, 100, 6);
    border: solid 1.5px rgb(11, 100, 6);
    border-radius: 100px;
    display: inline-block;
    width: 250px;
    line-height: 50px;
    text-align: center;
    transition: .4s;
 }

.contents1 table tr th {
 text-align: start;
 }

.contents1 table tr {
 padding: 15px 0;
 display: block;
 border-bottom: solid 1px
 }

.contents1 table tr th {
 width: 120px;
 }

 .contents1 table tr td {
  line-height: 1.2;
 }

.section3 {
    width: 90%;
    margin: 0 auto;
    max-width: 1080px;
}

.section3 a {
    color: rgb(11, 100, 6);
    border: solid 1.5px rgb(11, 100, 6);
    border-radius: 100px;
    display: inline-block;
    width: 250px;
    line-height: 50px;
    text-align: center;
    transition: .4s;
}
.section3 iframe {
     margin-top: 30px;
     border-radius: 20px;
}

@media screen and (max-width: 767px) {
    .contents1 .row {
    flex-wrap: wrap;
    }
    .contents1 .col {
        width: 100%;
    } 
    .contents1 a{
     margin-top: 40px;
    }   
}

/* コンテンツ2 宿泊*/
.contents2 {
     color: #090909;
     padding: 80px 0;
}
.contents2 .container {
    width: 90%;
    margin: 0 auto;
    max-width: 1080px;
}
.contents2 .row {
    display: flex;
    justify-content: space-between;
}

.contents2 .col {
    width: 48%;
}

.contents2 a {
    margin-top: 10px;
    color: rgb(11, 100, 6);
    border: solid 1.5px rgb(11, 100, 6);
    border-radius: 100px;
    display: inline-block;
    width: 250px;
    line-height: 50px;
    text-align: center;
    transition: .4s; 
}
.contents2 .text {
    margin-top: 30px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 50px; 
    line-height: 1.8; 
}

.sectionWrap1 {
    /*display: 48%;*/
    display: grid;
    gap: 40px;
    overflow-y: auto;
    height: 347px;
    margin-top: 10px;
    scroll-snap-type: y mandatory;
}

.sectionWrap1 > section {
    height: inherit;
    padding: 15px;
    scroll-snap-align: start;
}  

.sectionWrap1 .img {
    background-size: cover;
    background-position: center;
    height: 300px;
 }

.sectionWrap1 section:nth-child(1) {
    background-image: url('../images/y_img1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap1 section:nth-child(2) {
    background-image: url('../images/y_img2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap1 section:nth-child(3) {
    background-image: url('../images/y_img3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap1 p {
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
    text-align: center;
}

.contents2 img {
border-radius: 20px;
}

@media screen and (max-width: 767px) {
    .contents2 .row {
    flex-wrap: wrap;
    }
    .contents2 .col {
        width: 100%;
    }
}

/* コンテンツ3 お食事 */

.contents3 {
     color: #090909;
     padding: 40px 0;
}
.contents3 .container {
    width: 90%;
    margin: 0 auto;
    max-width: 1080px;
}
.contents3 .row {
    display: flex;
    justify-content: space-between;
}
.contents3 .row.reverse {
    flex-direction: row-reverse;

}
.contents3 .col {
    width: 48%;
}

.contents3 a {
    margin-top: 30px;
    color: rgb(11, 100, 6);
    border: solid 1.5px rgb(11, 100, 6);
    border-radius: 100px;
    display: inline-block;
    width: 250px;
    line-height: 50px;
    text-align: center;
    transition: .4s; 
}

.contents3 .text {
    margin-top: 30px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px; 
    line-height: 1.8; 
}

.contents3 table {
 font-size: 14px;
 width: 100%;
 }

.contents3 table tr {
 padding: 15px 0;
 display: block;
 border-bottom: solid 1px
 }

.contents3 table tr th {
 text-align: start;
 }

.contents3 table tr th {
 width: 120px;
 }

.contents3 table tr td {
  line-height: 1.2;
 }
 
.sectionWrap2 {
    /*display: 48%;*/
    display: grid;
    gap: 10px;
    overflow-y: auto;
    height: 347px;
    margin-top: 30px;
    scroll-snap-type: y mandatory;
}

.sectionWrap2 > section {
    height: inherit;
    padding: 15px;
    scroll-snap-align: start;
}  

.sectionWrap2 .img {
    background-size: cover;
    background-position: center;
    height: 320px;
 }

.sectionWrap2 section:nth-child(1) {
    background-image: url('../images/s_img1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap2 section:nth-child(2) {
    background-image: url('../images/s_img2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap2 section:nth-child(3) {
    background-image: url('../images/s_img3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap2 section:nth-child(4) {
    background-image: url('../images/s_img4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap2 section:nth-child(5) {
    background-image: url('../images/s_img5.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap2 section:nth-child(6) {
    background-image: url('../images/s_img6.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap2 section:nth-child(7) {
    background-image: url('../images/s_img7.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
@media screen and (max-width: 767px) {
    .contents3 .row {
    flex-wrap: wrap;
    }
    .contents3 .col {
        width: 100%;
    }
}
/* コンテンツ4 観光*/

.contents4 {
     color: #090909;
     padding: 80px 0;
}
.contents4 .container {
    width: 90%;
    margin: 0 auto;
    max-width: 1080px;
}
.contents4 .row {
    display: flex;
    justify-content: space-between;
}
.contents4 .col {
    width: 48%;
}

.contents4 a {
    margin-top: 10px;
    color: rgb(11, 100, 6);
    border: solid 1.5px rgb(11, 100, 6);
    border-radius: 100px;
    display: inline-block;
    width: 250px;
    line-height: 50px;
    text-align: center;
    transition: .4s; 
}
.contents4 .text {
    margin-top: 30px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 50px; 
    line-height: 1.8; 
}

.sectionWrap3 {
    /*display: 48%;*/
    display: grid;
    gap: 10px;
    overflow-y: auto;
    height: 347px;
    margin-top: 10px;
    scroll-snap-type: y mandatory;
}

.sectionWrap3 > section {
    height: inherit;
    padding: 15px;
    scroll-snap-align: start;
}  

.sectionWrap3 .img {
    background-size: cover;
    background-position: center;
    height: 300px;
 }

.sectionWrap3 section:nth-child(1) {
    background-image: url('../images/k_img1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap3 section:nth-child(2) {
    background-image: url('../images/k_img2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap3 section:nth-child(3) {
    background-image: url('../images/k_img3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap3 section:nth-child(4) {
    background-image: url('../images/k_img4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap3 section:nth-child(5) {
    background-image: url('../images/k_img5.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap3 section:nth-child(6) {
    background-image: url('../images/k_img6.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap3 section:nth-child(7) {
    background-image: url('../images/k_img7.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap3 section:nth-child(8) {
    background-image: url('../images/k_img8.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap3 section:nth-child(9) {
    background-image: url('../images/k_img9.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap3 section:nth-child(10) {
    background-image: url('../images/k_img10.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap3 section:nth-child(11) {
    background-image: url('../images/k_img11.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap3 section:nth-child(12) {
    background-image: url('../images/k_img12.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
    border-radius: 20px;
}
.sectionWrap3 p {
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
    text-align: center;
}

.contents4 img {
border-radius: 20px;
}
@media screen and (max-width: 767px) {
    .contents4 .row {
    flex-wrap: wrap;
    }
    .contents4 .col {
        width: 100%;
    }
}

/* フッター */

footer {
     color: rgb(11, 100, 6);
     text-align: center;
     font-size: 10px;
}
footer .container {
    width: 90%;
    margin: 0 auto;
    max-width: 1080px;
    border-top: solid 1px rgb(11, 100, 6);
    padding: 30px 0 20px;
}
footer .logo {
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
    color:rgb(11, 100, 6);
}
footer ul {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
footer ul li {
    font-size: 12px;
    margin: 0 20px;
}
footer ul li a {
    transition: .4s;
    color: rgb(11, 100, 6);
}
footer ul li a:hover {
    color: #e9ac05;
}
