@charset "UTF-8";
body{font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;font-weight: 500;} 
img{max-width: 100%;height: auto;}
ul{padding: 0; margin: 0;}
li{list-style-type: none;}
a:hover{opacity: 0.7;transition: 0.5s;}

#header {
    background: #fff;
    height: 80px;
    display: flex;
    position: sticky;
    top: 0;
    z-index: 999;
}
#header .logo {
    padding: 15px;
}
#header .logo img {
    width: 150px;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:80px;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#fff;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:25%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
    font-size: 20px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #0fbcbc;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 13px;
    height: 5px;
    border-radius: 5px;
    background-color: #fff;
    width: 70%;
  }

  .openbtn span:nth-of-type(1) {
	top: 20px;
}

.openbtn span:nth-of-type(2) {
	top: 36px;
}

.openbtn span:nth-of-type(3) {
	top: 52px;
}

.openbtn.active span:nth-of-type(1) {
    top: 29px;
    left: 11px;
    transform: translateY(6px) rotate(-45deg);
}

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

.openbtn.active span:nth-of-type(3){
    top: 42px;
    left: 12px;
    transform: translateY(-6px) rotate(45deg);
}

.key-visual {
    background-image: url(../img/main-visual.jpg);
    height: 420px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.navi {
    display: none;
}
section {
    padding: 4rem 0;
}
h1{
    font-weight: bold;
    color: #231815;
}
h1 span:first-child{
    color: #40210f;
}
h1 span:last-child{
    color: #0fbcbc;
}
h2 {
    margin-bottom: 1rem;
    color: #0fbcbc;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
}
#intro{
    padding-top: 2rem;
}
#intro img {
    width: 60%;
}
#senn p {
    line-height: 2;
    margin-bottom: 1.5rem;
}
#senn p span {
    font-weight: bold;
    display: block;
    text-align: center;
    font-size: 30px;
    letter-spacing: 0.3rem;
}
/* #senn::after {
    content: "";
    background-image: url(../img/kurojishi.png);
    display: block;
    width: 100%;
    height: 240px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} */
/* .cafe-area {
    background-color: rgba(105,174,179,0.5);
    padding: 160px 20px;
    border-radius: 20px;
    position: relative;
}
.cafe-area::after {
    content: "";
    background-image: url(../img/cafe.png);
    display: block;
    width: 200px;
    height: 180px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    bottom: -80px;
    right: 0;
}
#cafe {
    padding-bottom: 3rem;
}
#calendar {
    background: #f2f2f2;
} */
/* section#calendar ul {
    padding: 0 20px 20px;
}
#calendar ul li {
    font-size: 21px;
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #c9c9c9;
}
#calendar ul li::before {
    content: "";
    display: inline-block;
    width: 65px;
    height: 65px;
    background-color: #ddcec1;
    margin-right: 0.5rem;
}
#calendar ul li:nth-of-type(2)::before{
	background-color: #b8d1de;
}
#calendar ul li:nth-of-type(3)::before{
	background-color: #bed7b1;
}
#calendar ul li p {
    margin: 0;
    width: 80%;
}
#calendar ul li p span {
    font-size: 16px;
}
#calendar ul li p a {
    font-size: 16px;
    color: #0ea6aa;
}
#calendar::after {
    content: "";
    background-image: url(../img/ayame.png);
    display: block;
    width: 100%;
    height: 280px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
} */
#howto {
    background: #edf9f8;
    padding: 4rem 0;
}
#banner {
    background: #edf9f8;
}
#howto .row {
    gap:1em;
    margin-bottom: 1rem!important;
}
#howto .col-md-6 {
    background: #fff;
    padding: 2rem;
    text-align: center;
}

#howto .col-md-6 h3 {
    font-size: 18px;
    margin-bottom: 2rem;
}
#howto p.fw-bold + ul {
    padding-left: 2rem;
}
#howto p.fw-bold + ul li {
    list-style-type: disc;
}
#pay table tr th, #pay table tr td {
    border: 1px solid;
    padding: 20px;
}
#pay th, #pay td {
    width: 25%;
}
#banner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
#banner ul li {
    width: 49%;
}

#news .row{
    margin: 0;
}

#news .col-sm-4 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f2f2f2;
    position: relative;
}
#news a.col-sm-4 {
    color: #000;
    text-decoration: none;
}
#news .col-sm-4 img {
    object-fit: cover;
    width: 130px;
    height: 90px;
    margin-right: 10px;
}
#news .col-sm-4 .kiji-ttl p {
    margin: 0;
}
#news .col-sm-4 .kiji-ttl {
    width: 50%;
}
#news .col-sm-4 .bassui{
    display: none;
}
#news .col-sm-4 .kiji-ttl h3 {
    font-size: 16px;
}
#news .col-sm-4 a{
    text-decoration: none;
    color: #000;
}
#news .col-sm-4::after {
    content: "";
    border-right: 6px solid #e8e8e8;
    border-bottom: 6px solid #e8e8e8;
    width: 25px;
    height: 25px;
    transform: rotate(-45deg);
    position: absolute;
    top: 30%;
    right: 10px;
}
a.btns {
    background: #69aeb3;
    text-align: center;
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 20px 0;
    border-radius: 50px;
    font-size: 21px;
    font-weight: bold;
    margin-top: 1rem;
}
/* #news::after {
    content: "";
    background-image: url(../img/train.png);
    display: block;
    width: 100%;
    height: 280px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
}
#news::after {
    content: "";
    background-image: url(../img/train.png);
    display: block;
    width: 100%;
    height: 280px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    margin-top: 3rem;
} */
/* #stay {
    padding-top: 0;
    font-size: 20px;
}
#stay table {
    margin-bottom: 2rem;
    width: 100%;
}
#stay table tr {
    border-top: 1px solid #f2f2f2;
}
#stay table tr:last-child {
    border-bottom: 1px solid #f2f2f2;
}
#stay table td, #stay table th {
    padding: 1rem;
}
#stay table th {
    text-align: right;
} */
#news {
    padding: 4rem 0;
}
.flx {
    padding: 0 12px;
}
.detail-name {
    background: #69aeb3;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 1rem;
}
.detail-name p{
    margin: 0;
}
.detail-name p:nth-of-type(1) {
    font-size: 24px;
}
.detail-name p:nth-of-type(2) {
    font-size: 40px;
}
.detail .detail-name+p {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
}
#stay .flx:nth-last-of-type(2){
    margin-top: 4rem;
}
.amenity,.reserve {
    border: 2px solid #69aeb3;
    border-radius: 15px;
    padding: 2.5rem 1rem 2rem;
    position: relative;
    margin: 3rem 0;
}
.amenity h3,.reserve h3 {
    position: absolute;
    top: -30px;
    margin: 0;
    background: #69aeb3;
    width: 160px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 30px;
    padding: 10px 0;
    border-radius: 50px;
    letter-spacing: 0.5rem;
}
.amenity ul {
    display: flex;
    flex-wrap: wrap;
}
.amenity ul li {
    margin-right: 1rem;
}
.reserve {
   background-color:  #69aeb3;
   color: #fff;
   font-weight: bold;
}
.reserve h3{
    background: #1f7375;
}
.reserve ul li:first-child {
    margin-bottom: 2rem;
    padding-top: 1rem;
}
#access {
    background: #eeeeee;
    font-size: 20px;
    padding-bottom: 5rem;
}
#access .row{
    margin: 0;
}
#access .col-sm-4 p:nth-of-type(1) {
    font-weight: bold;
    margin-bottom: 2rem;
}
#access .col-sm-4 p:nth-of-type(2),#access .col-sm-4 p:nth-of-type(4) {
    border: 2px solid;
    display: inline-block;
    padding: 5px 10px;
}
.map {
    background: #fff;
    padding: 12px;
}
.map iframe {
    height: 300px;
}
.footer-logo{
    display: none;
}
#contact {
    background: #0fbcbc;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}
#contact h2 {
    color: #fff;
}
#contact a {
    transition: 0.5s;
    color: #fff;
}
#contact .contact-btn {
    background: #fff;
    text-align: center;
    display: block;
    color: rgb(15, 188, 188);
    text-decoration: none;
    padding: 20px 0;
    border-radius: 50px;
    font-size: 21px;
    font-weight: bold;
    margin-top: 1rem;
}
#footer .container ul {
    font-weight: bold;
    margin: 1rem 0;
    text-align: center;
}
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #a5c9ce;
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s;
    border-radius: 50px;
}
#page-top a::after {
    content: "";
    border-right: 6px solid #fff;
    border-bottom: 6px solid #fff;
    width: 21px;
    height: 21px;
    transform: rotate(-135deg);
    border-radius: 4px;
    position: absolute;
    top: 18px;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

@media screen and (min-width:760px) {
    section{
        padding: 5rem 0;
    }
    #intro {
        padding-top: 5rem;
    }
    #intro img {
        width: 35%;
    }
    #senn p {
        font-size: 18px;
        margin-bottom: 4rem;
        text-align: center;
        line-height: 2.2;
    }
    #senn {
        padding-bottom: 0;
    }
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 35px;
    }
    #senn::after{
        width: 50%;
    }
    #cafe .container {
        margin: 0;
        padding: 0;
        max-width: 100%;
    }
    .cafe-area {
        border-radius: 0;
    }
    #calendar{
        padding-bottom: 0;
    }
    #calendar .container {
        max-width: 690px;
    }
    #calendar ul li {
        font-size: 24px;
        padding: 0 2rem 1rem;
    }
    #calendar ul li::before {
        height: 55px;
    }
    #calendar ul li p {
        line-height: 1.2;
    }
    #calendar ul li:nth-of-type(1) p{
        line-height: 2.2;
    }
    #calendar ul li p a,#calendar ul li p span{
        font-size: 20px;
    }
    #calendar::after {
        background-position: right;
    }
    #news .col-sm-4 {
        border: 1px solid #93b5b5;
        background: #f0f7f7;
        padding: 12px;
        margin: 4px;
        width: 32%;
    }
    #news .col-sm-4 img {
        object-fit: cover;
        width: 100%;
        height: 150px;
        margin-right: 0;
    }
    #news .col-sm-4 .bassui {
        display: none;
    }
    #news .col-sm-4 .kiji-ttl {
        width: 100%;
        text-align: center;
    }
    #news .col-sm-4 .kiji-ttl p {
        margin: 0;
        font-size: 18px;
    }
    #news .col-sm-4 .kiji-ttl h3 {
        font-size: 22px;
    }
    #news .col-sm-4 .bassui {
        display: block;
    }
    #news .col-sm-4::after{
        display: none;
    }
    .btns {
        width: 300px;
        margin: 2rem auto 0;
    }

    #stay {
        font-size: 18px;
    }
    .amenity, .reserve {
        padding: 2.5rem 2rem 2rem;
    }
    .amenity h3, .reserve h3 {
        font-size: 24px;
        left: 10px;
    }
    .reserve ul {
        display: flex;
        justify-content: space-evenly;
    }
    .reserve ul li {
        width: 47%;
    }
    .reserve {
        text-align: center;
        font-size: 23px;
    }
    .reserve ul li:first-child{
        margin: 0;
        padding: 0;
    }
    #access {
        font-size: 18px;
    }
    #access .col-sm-4 p:nth-of-type(4) {
        margin-top: 1.5rem;
    }
    .map {
        padding: 20px;
    }
    #howto .col-md-6 {
        width: 48%;
        margin: 0;
    }
    table {
        width: 100%;
    }
    #contact .contact-btn {
        width: 300px;
        margin: 2rem auto 0;
    }

}
@media screen and (min-width:1000px) {
    #header {
        position: absolute;
        top: 0;
        background: transparent;
    }
    .openbtn {
        display: none;
    }
    #header .logo img {
        width: 120px;
    }
    .key-visual {
        height: 450px;
    }
    .navi {
        display: block;
        width: 100%;
        background: #a5c9ce;
        padding: 1.5rem 0;
    }
    .navi ul {
        display: flex;
        justify-content: center;
    }
    .navi ul li a {
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        display: block;
        padding: 0.5rem 3rem;
    }
    .navi ul li {
        border-left: 1px solid #fff;
    }
    .navi ul li:last-child {
        border-right: 1px solid #fff;
    }
    #intro {
        padding-bottom: 0;
    }
    .amenity, .reserve {
        margin: 5rem 0;
    }
    #footer{
        border-top: none;
    }
    .footer-logo {
        display: block;
        width: 120px;
        margin: 2rem auto 1rem;
    }
    #footer .container ul {
        display: flex;
        justify-content: center;
    }
    #footer .container ul li {
        margin: 0 10px;
    }
}

@media screen and (min-width:1200px) {
.key-visual {
    height: 550px;
}
.navi ul {
    max-width: 1200px;
    margin: 0 auto;
}
#intro img {
    width: 350px;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 38px;
    margin-bottom: 2rem;
}
#senn{
    position: relative;
}
#senn::after {
    width: 30%;
    position: absolute;
    bottom: 0;
}
.cafe-area::after {
    width: 300px;
    height: 250px;
    bottom: -80px;
    right: 50px;
}
#calendar {
    padding-bottom: 5rem;
    position: relative;
    margin: 5rem 0;
}
#calendar::after {
    position: absolute;
    bottom: 0;
    width: 300px;
    right: 0;
}
#news .row {
    margin: 0;
}
#news .col-sm-4 {
    padding: 15px;
    margin: 10px;
    width: 31.5%;
}
#news .col-sm-4 img {
    height: 200px;
}
a.btns {
    margin-top: 3rem;
}
#news::after {
    height: 450px;
}
#stay h2 {
    text-align: left;
}
#stay table {
    width: 450px;
}
.flx {
    padding: 0;
    display: flex;
}
.flx img {
    width: 70%;
}
.detail {
    width: 300px;
    margin-left: -3rem;
    margin-top: 1rem;
}
#stay .flx:nth-last-of-type(2) {
    margin-top: 4rem;
    flex-flow: row-reverse;
}
#stay .flx:nth-last-of-type(2) .detail {
    margin-right: -3rem;
    z-index: 999;
}
.amenity {
    margin-top: 8rem;
    margin-bottom: 6rem;
}
#stay .container {
    max-width: 1200px;
}
.amenity ul {
    justify-content: center;
}

.reserve {
    font-size: 25px;
}
.reserve ul {
    justify-content: center;
}
.reserve ul li {
    width: 45%;
}
#access {
    font-size: 20px;
}
#access .col-sm-4 {
    margin-top: 10rem;
}
#access .col-sm-4 p:nth-of-type(1) {
    font-size: 30px;
}
#access .col-sm-4 p:nth-of-type(2), #access .col-sm-4 p:nth-of-type(4) {
    font-size: 24px;
}
.map iframe {
    height: 500px;
}
#howto .col-md-6 {
    width: 23.9%;
    margin: 0;
}
#howto .row {
    margin-bottom: 2rem !important;
}
#howto p.fw-bold  {
    font-size: 20px;
}
#pay table {
    max-width: 1000px;
    margin: 0 auto;
}
#banner ul li {
    width: 24%;
}
}



@media screen and (min-width:1400px) {
/* .key-visual {
    height: 620px;
} */
#news .container {
    max-width: 1400px;
}
#news .col-sm-4 img {
    height: 280px;
}
#news .col-sm-4 {
    padding: 20px 20px 30px;
}
#news::after {
    height: 490px;
}
#access .container {
    max-width: 1400px;
}
#footer ul {
    margin: 1rem auto;
}
#senn p {
    font-size: 20px;
    line-height: 2.4;
}
#howto .col-md-6 {
    padding: 4rem 0;
}
#pay table tr th, #pay table tr td {
    padding: 30px;
    font-size: 18px;
}
#contact {
    padding: 3rem 0;
}
#contact h2 {
    margin-bottom: 1rem;
}
}

@media screen and (min-width:1600px) {
/* .key-visual {
    height: 810px;
} */
.navi ul li a {
    padding: 0.5rem 4rem;
}

#intro {
    padding-top: 8rem;
}
h1 {
    font-size: 54px;
}
h2 {
    font-size: 45px;
}
#senn p span {
    font-size: 36px;
}
#senn::after {
    height: 300px;
}
.cafe-area {
    padding: 15rem;
}
#calendar::after {
    right: 17%;
}
#news::after {
    height: 650px;
}
/* #news {
    padding-bottom: 0;
} */
#stay .container:first-child {
    max-width: 1400px;
}
.detail {
    margin-top: 10rem;
}
}

.bread {
    margin-top: 0.5rem;
}
.bread a {
    color: #0ea6aa;
}
.page_header_box {
    position: relative;
  }
  .page-title{
    text-align: center;
    position: absolute;
    top: 40%;
    color: #fff;
    left: 0;
    right: 0;
    z-index: 999;
    max-width: 100%;
  }
  .page-title h1{
    color: #fff;
  }
  #page_header img {
    object-fit: cover;
    width: 100%;
    height: 120px;
    filter: brightness(0.7);
  }
.post-type-archive-activity_articles #news::after{
    display: none;
  }
  .post-type-archive-activity_articles #news{
    padding-bottom: 5rem;
  }

  @media screen and (min-width:760px) {
    #page_header img {
      height: 170px;
  }
  .page-title h1 {
    font-size: 40px;
  }
  
  }
  @media screen and (min-width:1000px) {
  .page-title h1 {
    font-size: 60px;
  }
  #page_header img {
    height: 250px;
  }
  }
  @media screen and (min-width:1400px) {
    #page_header img {
      height: 410px;
    }
  }
  

  #template-single {
    border: 3px solid #69aeb3;
    border-radius: 15px;
    padding: 20px 15px;
    margin: 2rem auto;
}
.entry-date {
    text-align: right;
}
.post_thumbnail img {
    height: auto;
    margin-bottom: 1rem;
}
.entry-pager {
    display: flex;
    justify-content: space-around;
}
.back a,.next a {
    color: #69aeb3;
    text-decoration: none;
    border: 1px solid;
    padding: 10px;
    width: 150px;
    display: block;
    text-align: center;
    border-radius: 5px;
    margin-top: 3rem;
}
.back a::before {
    content: "<";
    margin-right: 0.5rem;
    font-weight: bold;
    color: #fff;
    background: #69aeb3;
    border-radius: 50%;
    width: 25px;
    display: inline-block;
    height: 25px;
}
.next a ::after {
    content: ">";
    margin-left: 0.5rem;
    font-weight: bold;
    color: #fff;
    background: #69aeb3;
    border-radius: 50%;
    width: 25px;
    display: inline-block;
    height: 25px;
}
.Single-news {
    margin-bottom: 5rem;
}

@media screen and (min-width:1200px) {
#template-single {
    max-width: 1000px;
    padding: 40px;
}
.back a,.next a {
    width: 200px;
    padding: 15px 0;
}
}
@media screen and (min-width: 1400px){
#template-single {
    max-width: 1200px;
}
}

#contact-form {
    font-size: 18px;
    margin: 2rem 0;
}
span.caution {
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 2px 3px;
    font-weight: bold;
}
span.wpcf7-spinner {
    display: none;
}
.ml-auto{
    margin-left: auto;
}
.submit-btn {
    background: #a5c9ce;
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 15px;
    width: 200px;
    margin-top: 1rem;
}

@media screen and (min-width: 1200px){
    #contact-form {
        font-size: 18px;
        margin: 4rem auto;
        max-width: 1000px;
    }
}

@media screen and (max-width:760px){
.insta-area {
    padding-bottom: 3rem;
}
}


h2.wp-block-heading {
    text-align: left;
    border-bottom: 3px solid;
    padding-left: 10px;
    margin-top: 2rem;
    font-size: 24px;
}
h3.wp-block-heading {
    background: #69aeb3;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    padding: 10px;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
@media screen and (min-width:1200px) {
    h2.wp-block-heading {
        font-size: 30px;
    }
    h3.wp-block-heading{
        font-size: 26px;
    }
}