@charset "UTF-8";

/* ============
共通設定＆汎用クラス
============ */

  .fadein {
    opacity : 0;
    transform: translateY(20px);
    transition:1s;
}

.fadein.on{
    opacity: 1;
    transform:translateY(0px);
}

html{
  font-size: 62.5%;/*10px*/
}
body{
  padding-top: 0px;
  font-size: 1.6rem;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 2;
  color: #333;
}
.inner{
  margin-left: auto;
  margin-right: auto;
max-width: 1320px;
padding-left: 5%;
padding-right: 5%;
}
.break{
  display: inline-block;
}
a{
text-decoration: none;
}
a:hover{
  opacity: 0.6;
}
.title{
  margin: 30px 0;
  line-height: 1;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

/* ============
ヘッダー
============ */

/* メニュー */

.gloval_nav{
  display: none;
}

.sp_nav{
  display: block;
}

body{
margin-top: 0px;
}
header{
  height: 90px;
  width: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  background-color:rgba(255,255,255,1);
}
header > div{
  display: flex;
  align-items: center;
  height: 80px;
}
header > div h1{
  width: 44%;
  height: auto;
}

header .sp_nav div{
width: 24px;
height: 24px;
/* background-color: greenyellow; */
position: absolute;
top:30px;
right: 5%;
z-index: 1;
}
header .sp_nav div span{
display: block;
height: 2px;
width: 100%;
background-color: #333;
position: absolute;
transition: 0.2s;
}
header .sp_nav div span:first-child{
  /* background-color: red; */
  top:0;
}
header .sp_nav div span:nth-child(2){
  /* background-color: green; */
  top:11px;
}
header .sp_nav div span:nth-child(3){
  /* background-color: blue; */
  bottom: 0;
}

header .sp_nav.on div span:first-child{
transform: translate(0,11px)rotate(45deg);
}
header .sp_nav.on div span:nth-child(2){
/* display: none; */
visibility: hidden;
}
header .sp_nav.on div span:nth-child(3){
  transform: translate(0,-11px)rotate(-45deg);
}
header .sp_nav > ul{
  background-color: rgba(255,255,255,0.8);
  position: fixed;
  top:0;
  left: 100%;
  width: 50%;
  height: 100vh;
  padding-top: 80px;
  padding-left: 40px;
padding-right: 40px;
transition: 0.3s;
}
header .sp_nav.on> ul{
left: 50%;
}
header .sp_nav .dropdwn_menu li{
  display: inline-block;
  font-size: 1.2rem;
  padding-left: 7px;
}
header .sp_nav > ul > li{
  font-size: 1.6rem;
  line-height: 4.5rem;
  text-align: right;
}

header .sp_nav > ul li a{
  color: #333333;
  display: block;
}
@media screen and (min-width:680px){
  header{
    padding-bottom: 110px;
  }
  header > div h1{
    padding-top: 30px;
    width: 41%;
    height: auto;
  }
  body{
    margin-top: 0px;
    }
    
header .sp_nav div{
  top:35px;
  }
}
  /* ==========min-width:680px========= */

@media screen and (min-width:769px){
  header{
    padding-top: 10px;

  }
  .sp_nav{
    display: none;
  }
  header > div h1{
    padding-top: 20px;
    width: 30%;
    height: auto;
  }
  body{
    margin-top: 0px;
    }
  .gloval_nav{
    display: block;
  }
  header > div{
    justify-content: space-between;
  }
    /* liの隙間をなくす */
    header > div ul{
      font-size: 0;
    }
    header .pc_nav > ul > li,
    .sns_nav li{
      display: inline-block;
      margin-top: 0px;
      margin-left: 20px;
      font-size: 1.2rem;
      position: relative;
    }

    header .pc_nav .dropdwn_menu{
      width: 100%;
      display: none;
      position: absolute;
      margin-top: 5px;
      padding: 0;
      color: #333;
      font-size: 1.1rem;
  }
  
  .dropdwn_menu li{
      width: 100%;
  }
  .dropdwn_menu li a{
    padding: 2px 0;
    margin: -5px 0px;
    display: block;
    color: #333333;
}

.sns_nav{
  display: flex;
  justify-content: flex-end;
  padding-bottom: 20px;
}    
    header > div ul li a{
      color: #333
    }
}
  /* ==========min-width:769px========= */

  /* ============
キービジュアル
============ */
#key{
  background-image: url(../img/key2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 65%;
  margin: 0px 0;

}
#key > div{
  height: 90vh;
width: 100%;


}

@media screen and (min-width:769px){
  #key div{
    max-width: 1320px;
    text-align: left;
  }
}

/* ============
メイン
============ */
#top_about{
  writing-mode: vertical-rl;
}
#top_about p{
 font-size: 1.4rem;
 text-align: right;
 margin: 40px 0;
 writing-mode: vertical-rl;
        text-orientation: upright;
}

main hr{
  width: 80%;
  max-width: 1000px !important;
}

#news{
  padding-top: 50px;
  margin-bottom: 100px;
}
figure{
  margin-bottom: 100px;
}
figure a {
  text-decoration:none;
  color: #333;	
}

#news p{
		padding-bottom:100px;

}

@media screen and (min-width:680px){
  #news div{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

  }
  #news div figure{
    padding: 0;
    width: 48%;
  }
  } /*======main-width:680px======*/
  @media screen and (min-width:769px){
    #news div::after{
      content: " ";
      display:block;
      width: 31%;
      /* height: 0; 入れなくても良い？*/
    }
    #news div figure{
      width: 31%;
    }
  } /*======main-width:769px======*/
  /* ============
footer
============ */
footer{
  background-image: url(../img/footer3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
footer > p{
  width: 100px;
  height: auto; 
  margin: 20px auto;
  padding-top: 90px;
}
address{
  font-size: 1.4rem;
  font-style: normal;
  text-align: center;
  line-height: 5rem;
  }
  .footer_nav p{
    text-align: center;
    padding-bottom: 30px;
    }
    .footer_nav p a{
      color: #333;
    }
  .footer_nav ul{
    display: flex;
    justify-content: space-around;
    padding-bottom: 30px;
    max-width: 600px;
    margin: 0 auto;
  }
  .footer_nav ul li a{
    color: #333;
  }
  .copy{
    text-align: center;
    margin: 1rem;
  }
    /* ============
news
============ */
.pagenav{
  margin-bottom: 50px;
}
.news main{
  margin: 200px 0 100px 0;
  } 
  .news main h2{
    font-size: 2rem;
      margin: 30px 0 20px;
      line-height: 1;
  }
.news main hr{
  width: 100%;
  max-width: 1320px !important;
}
.news .more{
padding-top: 1rem;
margin-right: 1rem;
display: flex;
justify-content: flex-end;
}
.news span a{
  color: #333;
}
.widget_categories {
    position: relative;
    /* width: 150px;
    background: #fff; */
  }
  
  .widget_categories::before {
    position: absolute;
    top: 50%;
    right: 10px;
    margin: -2px 0 0 0;
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top: 7px solid #333;
  }
  
  .widget_categories h2 {
    display: none;
  }
  
  .widget_categories label {
    display: none;
  }
  
  .widget_categories select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 150px;
    padding: 0.5em 1em;
    color: #333;
    border: 1px solid #333;
    background: transparent;
  }
  
  select::-ms-expand {
    display: none;
  }

.widget_archive {
  position: relative;
  /* width: 150px;
  background: #fff; */
}

.widget_archive::before {
  position: absolute;
  top: 50%;
  right: 10px;
  margin: -2px 0 0 0;
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top: 7px solid #333;
}

.widget_archive h2 {
  display: none;
}

.widget_archive label {
  display: none;
}

.widget_archive select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 150px;
  padding: 0.5em 1em;
  color: #333;
  border: 1px solid #333;
  background: transparent;
}

select::-ms-expand {
  display: none;
}
  
  .news .select{
    text-align: right;
    position: fixed;
    top:120px;
    right:0;
    z-index: 100;
  }
  /* .news .select ul{
    display: inline;
  } */
  
  .news .select ul li{
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  /* .news .select ul li a{
    color: #333;
  } */

  .news figcaption{
    margin: 10px 0 50px 0;
  }

  @media screen and (min-width:680px){

  /* .news figure{
  width: 60%;
  height: auto;
  } */
.news main figure{

display: flex;
justify-content: space-between;

}

.news main figure > p{
  width: 50%;
}
.news main figcaption{
  width: 45%;
}
  
  } /*======main-width:680px======*/
  /* ============
about
============ */
.about main{
margin-top: 20px;
}

#about_about{
  writing-mode: vertical-rl;
margin: 0 auto;
}

#about_about p{
  font-size: 1.4rem;
  text-align: right;
  margin: 80px 0;
  writing-mode: vertical-rl;
         text-orientation: upright;
 }


.about main h2{
  font-size: 1.5rem;
    margin: 30px 0 20px;
    line-height: 1;
}
.about main .lead{
  font-size: 1.3rem;
  margin-bottom: 80px;
}
.about main .follow{
  margin-bottom: 80px;
  text-align: right;
}
.about main .follow a{
  color: #333;
}

@media screen and (min-width:960px){
.about .contents{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.about .contents .img{
width: 60%;
}
.about section:nth-child(odd) .contents{
  flex-direction: row-reverse;
}

} /*======main-width:960px======*/


  /* ============
check
============ */
.check{
  padding-bottom: 50px;
}
.check h1{
  font-size: calc((100% + 0.25vw) * 2) ;
}
.check hr{
  width: 90vw;
}
.check p input{
  font-family: serif;
  padding-top: 30px;
}
/* ============
item
============ */
/* .item .item_wrap ul{
  display: flex;
  justify-content: center;
  margin: 100px 20px 50px 20px;
}

.item .item_wrap ul li{
  list-style: none;
  line-height: 1.5;
  text-align: center;
  font-size: 1.8rem;
  margin: 10px;
}

.item .item_wrap ul li a{
  color: #aaa;
  display: block;
  padding:0.5rem;
  border-bottom: solid 1px transparent;
}

.item .item_wrap ul li a:hover,
.item .item_wrap ul li a.checked{
  color:#000;
  border-bottom-color: #000;
} */
dt{
  cursor: pointer;
}

dt:hover{
  color: #ccc;
}

.item{
  padding-top: 0px;
}

#item_about{
  writing-mode: vertical-rl;
}

#item_about p{
  font-size: 1.4rem;
  text-align: right;
  margin: 80px 0;
  writing-mode: vertical-rl;
         text-orientation: upright;
 }

.item figure{
  margin-bottom: 5%;
}

  .item .item_wrap div{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

  }
  .item .item_wrap div figure{
    padding: 0;
    width: 48%;
  }
  .item .item_wrap div figcaption{
    text-align: center;
  }

  @media screen and (min-width:680px){
    .item .item_wrap div::after{
      content: " ";
      display:block;
      width: 31%;
      /* height: 0; 入れなくても良い？*/
    }
    .item .item_wrap div figure{
      width: 31%;
    }
  }
   /*======main-width:680px======*/
  @media screen and (min-width:769px){
    .item .item_wrap div::after,
    .item .item_wrap div::before{
      content: " ";
      display:block;
      width: 23%;
      /* height: 0; 入れなくても良い？*/
    }
    .item .item_wrap div figure{
      width: 23%;
    }
    .item .item_wrap div:before{
      order: 1;
    }
  } /*======main-width:769px======*/


/*=====================
contact
=====================*/
.contact main{
	margin-top: 100px;
}
.contact h2{
  line-height: 0;
  font-size: 2.5rem;
}
.contact hr{
  width: 100%;
  max-width:100;
}
.contact dl dd{
  margin-bottom: 20px;
}
.contact form input[type="text"],
.contact form input[type="email"]{
  border:1px solid #ccc;
  width:100%;
  max-width:400px;
  padding:1rem;
}
.contact form input[type="submit"],
.contact button{
  background:#333;
  border:1px solid transparent;
  width:80%;
  max-width:100px;
  line-height: 70px;
  color: #fff;
  cursor: pointer;
  margin-bottom: 140px;
}

.contact textarea{
  border:1px solid #ccc;
  width:100%;
  max-width:400px;
  height: 20rem;
}
/*=====================
map
=====================*/

.map h2{
  line-height: 0;
  font-size: 2.5rem;
  margin: 100px 0 0 0;
}
.map hr{
  width: 100%;
  max-width:100;
}

.map iframe{
  width: 100%;

}
.map .wrapper{
margin-bottom: 100px;
}
#nf h2{
  margin: 100px 0 0 0;
}
#nf hr{
  width: 100%;
  max-width:100;
}
#nf .wrapper{
  margin-bottom: 100px;
  }

/*=====================
residence
=====================*/

.residence h2{
  line-height: 0;
  font-size: 2.5rem;
  margin: 100px 0 0 0;
}
.residence hr{
  width: 100%;
  max-width:100;
}

/*=====================
calender
=====================*/

.calender h2{
  line-height: 0;
  font-size: 2.5rem;
  margin: 100px 0 0 0;
}
.calender hr{
  width: 100%;
  max-width:100;
}


/*=====================
cafe
=====================*/

.cafe h2{
  line-height: 0;
  font-size: 2.5rem;
  margin: 100px 0 0 0;
}
.cafe hr{
  width: 100%;
  max-width:100;
}

.cafe main{
	padding-top:50px;
}

.cafe main .text{
		 margin-top:20px;

}
.cafe main .lead{
  font-size: 1.3rem;
  margin-bottom: 80px;
}
.cafe main .follow{
  margin-bottom: 80px;
  text-align: right;
}
.cafe main .follow a{
  color: #333;
}

@media screen and (min-width:960px){
.cafe .contents{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.cafe .contents .img{
width: 60%;
}
.cafe section:nth-child(odd) .contents{
  flex-direction: row-reverse;
}
