@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;700&family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap');


body {
    font-family: 'Zen Maru Gothic', sans-serif;
}



/*  //////////// ハンバーガーメニュー ////////////////  */




.header-inner {             /* ハンバーガーメニューを開いたときの背景画像  */
    background-image: url(../image/archive-img/background.jpg);
    display: none;
    background-size: cover;
    width: 100vw;
    padding: 100px 0;
    overflow-y: scroll;
	position: fixed;
	z-index: 999;
}

.open-btn {  /* ハンバーガーメニューの形作り */
    display: block;
    width: 90px;
    height: 90px;
    border: #fff 0.5px solid;
    border-radius: 100%;
    background: linear-gradient(180deg, #9edd85 35%, #388c14);
    margin: 20px 20px 0 0;
    box-shadow: #11111173 2px 4px 10px;
    transition: 0.3s ease-in-out;
    /*position: relative;*/
	position: fixed;
	right: 0;
	z-index: 9999;
}

.open-btn:hover {
    transform: scale(1.2);
}

.open-btn span {     /* 3本線の原型つくり */
    display: inline-block;
    transition: all .3s;
    width: 50px;
    height: 4px;
    border-radius: 50px;
    background-color: #fff;
    position: absolute;
    left: calc(50% - 26px);
}


.open-btn span:nth-child(1) {    /* 1本目の絶対位置 */
    top: 27px;
}

.open-btn span:nth-child(2) {   /* ２本目の絶対位置 */
    top: 39px;
}

.open-btn span:nth-child(3) {   /* ３本目の絶対位置 */
    top: 51px;
}

.open-btn span:nth-of-type(3)::after {
    content:"メニュー";/*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 8px;
    right: calc(50% - 24px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.open-btn.active span:nth-of-type(1) {
    top: calc(50% - 10px);
    right: calc(50% - 10px);
    transform: translateY(6px) rotate(-45deg);
}

.open-btn.active span:nth-of-type(2) {
    opacity: 0;
}

.open-btn.active span:nth-of-type(3){
    top: calc(50% + 3px);
    left: calc(50% -20px);
    transform: translateY(-6px) rotate(45deg);
}

.open-btn.active span:nth-of-type(3)::after {
    content:"とじる";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 14px;
    right: -12px;
}

@media screen and (max-width: 1024px) {

    .open-btn {
        display: block;
        width: 70px;
        height: 70px;
        margin: 10px 10px 0 0;
        box-shadow: #11111173 2px 3px 5px;
		position: fixed;
    }

    .open-btn span {     /* 3本線の原型つくり */
        display: inline-block;
        transition: all .3s;
        width: 40px;
        height: 3px;
        border-radius: 50px;
        background-color: #fff;
        position: absolute;
        left: calc(50% - 20px);
    }

    .open-btn span:nth-child(1) {    /* 1本目の絶対位置 */
        top: 26px;
    }
    
    .open-btn span:nth-child(2) {   /* ２本目の絶対位置 */
        top: 33px;
    }
    
    .open-btn span:nth-child(3) {   /* ３本目の絶対位置 */
        top: 40px;
    }

    .open-btn.active span:nth-of-type(1) {
        top: calc(50% - 7px);
        right: calc(50% - 10px);
        transform: translateY(6px) rotate(-45deg);
    }
    
    .open-btn.active span:nth-of-type(2) {
        opacity: 0;
    }
    
    .open-btn.active span:nth-of-type(3){
        top: calc(50% + 6px);
        left: calc(50% -20px);
        transform: translateY(-6px) rotate(45deg);
    }
    
    .open-btn span:nth-of-type(3)::after {
        content: '';
    }

    .open-btn.active span:nth-of-type(3)::after {
        content: '';
    }
}

/*  //////////// ハンバーガーメニュー終了////////////////  */


/*  //////////// ハンバーガーメニュー開いたときのデザイン////////////////  */

#logo img {
    width: 90px;
    height: auto;
    padding: 20px 0 0 20px;
    transition: 0.3s ease-in-out;
	z-index: 99999;
	position: fixed;
}

#logo img:hover {
    transform: scale(1.2);
}


.header-nav-list {
    display: block;
    display: flex;
    justify-content: center;
    gap: 120px;
    margin: 0 auto;
}



.header-item1 {
    width: fit-content;
    color: #29639B;
    font-size: 35px;
    font-weight: 500;
    position: relative;
    transition: 0.5s;
}

.header-item2 {
    width: fit-content;
    color: #1E962E;
    font-size: 35px;
    font-weight: 500;
    position: relative;
    transition: 0.5s;
}

.header-item1 span,.header-item2 span{
    font-size: 28px;
    transition: 0.5s;
}

.header-nav-list img {
    width: 280px;
    height: auto;
}

.header-local {
    display: flex;
    column-gap: 50px;
    row-gap: 20px;
    width: 300px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.header-locals {
    color: #29639B;
    font-size: 20px;
    font-weight: 500;
    transition: 0.5s;
}

.header-locals2 {
    color: #1E962E;
    font-size: 20px;
    font-weight: 500;
    transition: 0.5s;
}

.header-list-item {
    margin-bottom: 60px;
}



.header-item1:hover, .header-item2:hover,
 .header-locals:hover, .header-locals2:hover:hover {
    transform: scale(1.15);
}

.header-item1::before {
    content: '';
    position: absolute;
    right: -65px;   
    top: 40px; 
    width: 40px;
    height: 3px;
    border-radius: 50px;
    background:#29639B;
}

.header-item1::after {
    content: '';
    position: absolute;
    right: -66px;   
    top: 35px; 
    width: 15px;
    height: 3px;
    border-radius: 50px;
    transform: rotate(45deg);
    background:#29639B;
}

.header-item2::before {
    content: '';
    position: absolute;
    right: -65px;   
    top: 40px; 
    width: 40px;
    height: 3px;
    border-radius: 50px;
    background:#1E962E;
}

.header-item2::after {
    content: '';
    position: absolute;
    right: -66px;   
    top: 35px; 
    width: 15px;
    height: 3px;
    border-radius: 50px;
    transform: rotate(45deg);
    background:#1E962E;
}


@media screen and (max-width: 1024px) {

    #logo img {
        padding: 10px 0 0 10px;
        width: 50px;
        height: auto;
    }

    #logo img:hover {
        transform: scale(1);
    }

    .open-btn:hover {
        transform: scale(1);
    }

    .header-nav-list {
        display: block;
    }

    .header-inner {
        padding-top: 60px;
        padding-left: 80px;
    }

    .header-sdg-contact {
        display: flex;
        gap: 30px;
        align-items: center;
        flex-wrap: wrap;
    }

    .header-item1 {
        font-size: 18px;
        font-weight: 500;
    }
    
    .header-item2 {
        font-size: 18px;
        font-weight: 500;
    }

    .header-item1 span,.header-item2 span{
        font-size: 14px;
    }

    .header-nav-list img {
        width: 100px;
    }

    .header-local {
        column-gap: 30px;
        row-gap: 16px;
        width: 200px;
        padding-top: 16px;
    }
    
    .header-locals {
        font-size: 16px;
    }
    
    .header-locals2 {
        font-size: 16px;
    }

    .header-list-item {
        margin-bottom: 40px;
    }

    .header-list-item:nth-child(3) {
        margin-bottom: 40px;
    }

    .header-item1::before {
        content: '';
        position: absolute;
        right: -30px;   
        top: 20px; 
        width: 20px;
        height: 2px;
        border-radius: 50px;
        background:#29639B;
    }
    
    .header-item1::after {
        content: '';
        position: absolute;
        right: -30px;   
        top: 18px; 
        width: 6px;
        height: 2px;
        border-radius: 50px;
        transform: rotate(45deg);
        background:#29639B;
    }

    .header-item2::before {
        content: '';
        position: absolute;
        right: -30px;   
        top: 20px; 
        width: 20px;
        height: 2px;
        border-radius: 50px;
        background:#1E962E;
    }
    
    .header-item2::after {
        content: '';
        position: absolute;
        right: -30px;   
        top: 18px; 
        width: 6px;
        height: 2px;
        border-radius: 50px;
        transform: rotate(45deg);
        background:#1E962E;
    }

}




.sdgs {
    width: 280px;
    height: auto;
    animation: poyopoyo 3s ease-in-out infinite;
}

@keyframes poyopoyo {
    0%, 40%, 60%, 80% {
      transform: scale(1.0);
    }
    50%, 70% {
      transform: scale(0.85);
    }
  }


  .top {
    margin: 0 auto;
    padding: 40px 150px 0 150px;
  }

  .top img {
    width: 100vw;
    height: 40vw;
    object-fit: cover;
    border-radius: 5em;
  }

  .top h1 {
    font-size: 3vw;
    color: #707070;
    font-weight: 500;
    letter-spacing: 5px;
    padding-bottom: 20px;
    padding-left: 40px;
  }


 .section{ 
    margin: 0 auto;
    padding: 100px 0 100px 0;
    background-color: #fff;
}

.container {
  padding: 50px 5%;
}

  .index {
    display: flex;
    align-items: center;
    row-gap: 50px;
    flex-wrap: wrap;
    max-width: 500px;
    justify-content: space-between;
    margin: 0 auto;
  }

  .index-child a{
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .index-child p {
    color: #388c14;
    font-size: 22px;
    font-weight: 500;
  }

  .index-child img {
    width: 40px;
  }


  #introduce,#access,#spots,#hotel,#information{
    padding-top: 135px;
}



.introduce-flex,.access-flex {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.access-flex iframe {
    width: 100%;
	height: 20vw;
    border-radius: 4vw;
	object-fit: cover; 
}

.introduce-flex img {
    width: 100%;
    object-fit: cover; 
    border-radius: 4vw;
}

.introduce-flex div,.access-flex div{
    width: 45%;
}

h2 {
    position: relative;
    width: fit-content;
    font-size: 2vw;
    letter-spacing: 5px;
    color: #388c14;
    font-weight: 600;
    margin-bottom: 30px;
    border-bottom: #388c14 8.5px double;
}



#introduce .url,#introduce a {
    color: #388c14;
    font-size: 100%;
    letter-spacing: 3px;
}



.readmore {
    position: relative;
    margin: 50px auto 0;
    padding: 0px 0px 75px;
    display: block;
  }
  
  .readmore-content {
    position: relative;
    height: 200px;
    transition: all .4s;
    overflow: hidden;
    display: block;
  }

  .readmore-content a {
    word-break: break-all;
  }

  .readmore .p2 {
    font-size: 18px;
    color: #707070;
    line-height: 1.8;
    letter-spacing: 3px;
  }
  
  .readmore-content::before {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 75px;
    transition: all .4s;
    background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, #fff 100% );
  }
  
  .readmore-content.is_open:before{
    display: none;
  }
  
  .btn1{
    position: absolute;
    display: table;
    left: 50%;
    bottom: -1.5vw;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 1;
    transition: all .4s;
    font-size: 18px;
    color: #fff;
    padding: 15px 30px;
    background-color: #388c14;
    border-radius: 50px;
    letter-spacing: 5px;
    border: 16px solid #fff;
    box-shadow: 0px 8px 18px -2px #cbcbcb;
  }


.access-detail    {
    color: #388c14;
    line-height: 1.8;
    font-size: 20px;
    letter-spacing: 3px;
}


.b-p{
    font-size: 18px;
    color: #fff;
    padding: 15px 30px;
    background-color: #388c14;
    border-radius: 50px;
    letter-spacing: 5px;
}

.map-review {
    padding: 16px 16px;
    border-radius: 50px;
    box-shadow: 0px 8px 18px -2px #cbcbcb;
    margin: 20px 0 35px 0;
}

.access-flex2 {
    display: flex;
    width: 100%;
    gap: 20px;
}

#spots h2,#hotel h2, #information h2 {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 80px;
}





.swiper-container {
    position: relative;
    overflow-x: hidden;
    padding-bottom: 4%!important;
}

.swiper-wrapper {
    width: 60%;
    
}


.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swiper-box{
    text-align: center;
}



.swiper-slide h3 {
    font-size: 20px;
    color: #388c14;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
    letter-spacing: 5px;
}


.swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    margin: 0 8px!important;     /* 追加 */
    background-color: #388c14;
}


.swiper-button-next,
.swiper-button-prev {
  position: absolute;

  &:after {
    content: "";
    position: absolute;
    width: 45px; /* 背景画像の幅を必ず指定 */
    height: 45px; /* 背景画像の高さを必ず指定 */
    top: 50%;
    transform: translateY(-150%);
  }
}



.swiper-button-next {
    right: 10px;

/* 次へ矢印の背景画像 */
    &::after {
background: transparent url(../image/single-img/swiper-next2.svg) no-repeat center / contain;
    }
}

.swiper-button-prev {
    left: 10px;

 /* 前へ矢印の背景画像 */
    &::after {
background: transparent url(../image/single-img/swiper-prev2.svg) no-repeat center / contain;
    }
}

/*.hotel-img {
    height: 70%;
    width: 70%;
    background-image: url(single-img/hotel1.jpg);
    background-position: center;
    background-size: cover;
    border: none solid 1px;
    border-radius: 20%; 
}*/

.swiper-box img {
    width: 75%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20%;
}


.sns {
    padding-top: 85px;
}


.sns-p {
    font-size: 20px;
    color: #388c14;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
    letter-spacing: 5px;
}

.good-mark ,.share{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    margin: 20px 0;
}

.share {
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 30px;
}

.good-mark button {
    padding: 16px 16px;
    border-radius: 50px;
    box-shadow: 0px 8px 18px -2px #cbcbcb;
}

.b-p2{
    font-size: 18px;
    color: #fff;
    padding: 15px 30px;
    background-color: #388c14;
    border-radius: 50px;
    letter-spacing: 5px;
}

.share button {
    width: 230px;
    padding: 16px 16px;
    border-radius: 50px;
    box-shadow: 0px 8px 18px -2px #cbcbcb;
}

.line{
    font-size: 18px;
    color: #fff;
    padding: 15px 30px;
    background-color: #18A713;
    border-radius: 50px;
    letter-spacing: 5px;
}

.instagram{
    font-size: 18px;
    color: #fff;
    padding: 15px 30px;
    background: linear-gradient(90deg,#E8DF5E,#DE2C9D);
    border-radius: 50px;
    letter-spacing: 5px;
}

.twitter{
    font-size: 18px;
    color: #fff;
    padding: 15px 30px;
    background-color: #0095BB;
    border-radius: 50px;
    letter-spacing: 5px;
}

.import {
    padding-top: 20px;
    text-align: center;
    color: #4D8CCA;
    text-decoration: underline;
}

.import a {
    color: #4D8CCA;
}

footer{
    padding: 50px 100px;
	background-image: url(http://nsb-it.net/nature/wp-content/uploads/2024/01/iri.jpg);
    background-size: cover;
}

#footer {
    padding: 50px;
    background-color: #ffffffa0;
    border-radius: 30px;
}

.footer-flex {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
}

.footer-flex ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-flex ul li {
    max-width: 270px;
}

.footer-item {
    font-size: 28px;
    color: #707070;
    padding: 6px 14px;
    position: relative;
}

.footer-item::before {
    background: #388c14;
    content: '';
    width: 100%;
    height: 4px;
    border-radius: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  .footer-item:hover::before {
    transform-origin: center top;
    transform: scale(1, 1);
  }

.footer-sdgs {
    width: 200px;
    height: auto;
}

.copyright {
    font-size: 14px;
    text-align: center;
}




@media screen and (max-width: 1024px) {
    .main {
        width: 100%;
        height: 100vh;
        position: relative;
    }

    .meet-nature {
        max-width: 370px;
        top: 40%;
    }

    .mame {
        width: 180px;
        bottom: 6%;
    }

    .section {
        padding: 60px 0%;
    }

    .container {
        padding: 0 3%;
    }

    .top {
        padding: 20px 50px 0px 50px;
    }

    .top h1 {
        font-size: 6vw;
        padding-bottom: 10px;
        padding-left: 20px;
    }

    .top img {
        border-radius: 2em;
    }

    .index {
        width:fit-content;
		padding: 0 10vw;
		margin: 0 auto;
        column-gap: 40px;
        row-gap: 30px;
    }

    .index-child p {
        font-size: 18px;
    }

    .index-child img {
        width: 28px;
    }

    .introduce-flex,.access-flex {
        width: fit-content;
        margin: 0 auto;
        gap: 0px;
    }

    .introduce-flex div,.access-flex div{
        width: 80%;
    }

    #introduce,#access,#spots,#hotel,#information,#sns {
        padding-top: 60px;
    }

    h2 {
        font-size: 1.5rem;
		margin-bottom: 10px;
    }
	
	.readmore {
		margin-top: 0;
	}

    .readmore .p2 {
        font-size: 16px;
    }
	
	.access-flex iframe {
    width: 100%;
	height: 40vw;
    border-radius: 4vw;
	object-fit: cover; 
}

    .access-detail {
        font-size: 16px;
    }

    .b-p,.btn1{
        font-size: 14px;
    }

    .swiper-container {
        padding-bottom: 8%!important;
    }

    .swiper-slide h3 {
        font-size: 16px;
    }

    .swiper-button-prev,.swiper-button-next {
        display: none;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 5px!important;
    }

    .sns-p {
        font-size: 14px;
    }

    .good-mark img {
        width: 6vw;
    }

    .good-mark button {
        padding: 12px 12px;
        border-radius: 50px;
        box-shadow: 0px 4px 9px -1px #cbcbcb;
    }

    .b-p2 {
        font-size: 14px;
        padding: 10px 20px;
    }

    .share button {
        max-width: 180px;
        padding: 12px 12px;
        border-radius: 50px;
        box-shadow: 0px 4px 9px -1px #cbcbcb;
    }
    
    .line,.instagram,.twitter{
        font-size: 14px;
        padding: 10px 20px;
    }
    
    footer {
        padding: 35px;
    }

    #footer {
        width: fit-content;
        padding: 40px;
        margin: 0 auto;
    }

    .footer-flex {
        padding: 35px;
        width: fit-content;
        margin: 0 auto;
    }

    .footer-flex ul {
        display: block;
    }
    
    .footer-flex ul li {
        width: fit-content;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .footer-item {
        font-size: 20px;
    }

    .footer-sdgs {
        width: 150px;
    }

    .copyright {
        font-size: 12px;
    }

    body {
        overflow-x: hidden;
    }
    
}