@charset "UTF-8";
/* CSS Document */

/* --------------------------------
html,body
-------------------------------- */
html {
  font-size: 62.5%;
}
body {
  font-family: YuGothic, "游ゴシック体", 'Noto Sans JP', sans-serif;
  padding-top: 70px;
}

@media(max-width:900px) {
  body{
    padding-top: 0;
    overflow-x: hidden;
  }
}

/* --------------------------------
p,li,a,img
-------------------------------- */
p{
  font-size: 1.6rem;
}
li {
  list-style: none;
  font-size: 1.6rem;
}
a {
  color: inherit; 
  text-decoration: none; 
}
img {
  height: auto; 
  max-width: 100%; 
  vertical-align:bottom;
line-height: 1.0em;
}
@media(max-width:768px){
li,p{
  font-size: 1.4rem;
}
}

/* --------------------------------
各要素
-------------------------------- */
.inner {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

.title {
  font-size: 3.2rem;
  font-family:'Zen Old Mincho', serif; 
  font-weight: 400;
}

.title.title--center {
  text-align: center;
}
.sub-title {
  font-size: 2.8rem;
  font-family:'Zen Old Mincho', serif; 
  font-weight: 400; 
}

@media(max-width:768px){
  .inner {
    padding-right: 4%;
    padding-left: 4%;
  }
  .title {
    font-size: 3.2rem;
  }
  .sub-title {
    font-size:2.4rem;
  }
}

/* --------------------------------
hero
-------------------------------- */
.hero {
  display: grid;
  place-items: center;
  height: 320px;
  background-repeat: no-repeat;
  background-size:cover;
  background-position: center 60%;
  background-blend-mode: soft-light;
  background-color: #4D4D4D;
  position: relative;
}

.hero.hero--rooms {
  background-image: url("../img/top_features_1.jpg");
}

.hero.hero--service {
  background-image: url("../img/service-top.jpg");
  background-position: center 50%;
}

.hero.hero--breakfast {
  background-image: url("../img/IMG_3159.jpg");
  background-position: center 70%;
}

.hero.hero--photo {
  background-image: url("../img/photogallery.jpg");
}

.hero.hero--inquiry {
  background-image: url("../img/inquiry.jpg");
}

.hero__title {
  color:#fff;
  font-family:'Zen Old Mincho', serif; 
  font-size: 5rem;
  font-weight: 400;
}

@media(max-width:768px) {
  .hero{
    height: 200px;
  }
  .hero__title {
    font-size:2.6rem;
  }
}

/* --------------------------------
flex-box row-reverse
-------------------------------- */
.flex-box {
  display: flex;
}

@media(max-width:768px){
  .flex-box {
    display: block;
  }
}

.row-reverse {
  flex-direction:row-reverse;
}

/* --------------------------------
header
-------------------------------- */
.header {
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index: 2000;
  background-color:#FFFDFD ;
  box-shadow: 0 1px 3px 0 rgba(76, 76, 76, 0.1);
}

.header__inner {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: content-box;
}
/* --------------------------------
hamburger
-------------------------------- */
.hamburger p{
  display :none;
}
/* --------------------------------
globalMenu 
-------------------------------- */
.globalMenu {
  color:#333;
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: #FFFDFD;
}
.globalMenu ul{
  display: flex;
}
.globalMenu ul li:last-child {
  margin-left:auto;
  margin-right:1.5rem;
}

.globalMenu ul li a {
  font-size:1.8rem;
  font-family:'Zen Old Mincho', serif;
  margin-left: 2.5rem;
  position: relative;
  display: inline-block;
}

.globalMenu ul li a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}

.globalMenu ul li a:hover::after {
  transform: scale(1, 1);
}
@media(max-width:900px) {
  /*hamburger*/
  .hamburger {
    display : block;
    position: fixed;
    z-index : 3;
    right : 13px;
    top   : 12px;
    width : 42px;
    height: 62px;
    cursor: pointer;
    text-align: center;
  }

  .hamburger span {
    display : block;
    position: absolute;
    width   : 32px;
    height  : 2px ;
    left    : 6px;
    background : rgb(111, 111, 111);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 10px;
  }

  .hamburger span:nth-child(2) {
    top: 20px;
  }

  .hamburger span:nth-child(3) {
    top: 30px;
  }
  .hamburger span:nth-child(3)::after{
    content:"menu";
    position: absolute;
    top:8px;
    left: 1px;
    color : rgb(111, 111, 111);
    font-family:'Zen Old Mincho', serif;
    font-size: 14px;
  }
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  .hamburger.active span:nth-child(3)::after{
    content: "close";
    transform: translateY(0) rotate(-45deg);
    top: 8px;
    left: 20px;
  }
  
  /* globalMenu */
  nav.globalMenu {
    position: fixed;
    z-index : 2;
    top  : 0;
    left : 0;
    color: #000;
    background: #fff;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    padding-bottom: 0;
  }
  
  nav.globalMenu ul {
    background: #FFFDFD;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: block;
  }
  
  nav.globalMenu ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom:#C3C1C1 1px solid;
    font-family:'Zen Old Mincho', serif;
    font-size: 1.4rem;
  }

  nav.globalMenu ul li:last-child {
    padding-bottom: 0;
  }

  nav.globalMenu ul li:hover {
    background :#EFECEA;
  }

  nav.globalMenu ul li a {
    display: block;
    color: #000;
    padding: 1em 0;
    text-decoration :none;
    margin: 0;
  }

  .globalMenu ul li a::after {
    display:none;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenu.active {
    transform: translateX(0%);
  }
}

/* --------------------------------
.gotop 
-------------------------------- */
.gotop {
  position: fixed;
  right: 10px;
  bottom: 20px;
  text-align: end;
  display:none;
}

.gotop a {
  display:inline-block;
  width: 50px;
  height:50px;
  line-height: 50px;
  text-align: center;
  background: #333;
  border-radius: 50%;
  color:#fff;
  opacity:0.8;
  font-size: 2rem;
  font-weight:600;
}

.gotop a:hover {
  opacity:0.6;
}

/* --------------------------------
footer
-------------------------------- */
.footer__container {
  margin: 0 auto;
  border-top: #d8d8d8 1px solid;
  background-color: #FFFDFD;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer__text {
  text-align: center;
  font-family:'Zen Old Mincho', serif;
  line-height: 2;
  font-size: 1.6em;
  padding-bottom: 20px;
}

.footer__sns {
  justify-content: center; 
  display: flex;
}

.footer__sns__img {
  width: 40px;
  height:40px;
  margin-right:20px;
}

.footer__sns__img:last-child {
  margin-right:0px;
}

@media(max-width:768px){
  .footer__text {
      font-size: 1.4rem;
  }

  .footer__sns__img {
      width: 30px;
      height:30px;
      margin-right:15px;
  }
}

/* --------------------------------
fadeUp
-------------------------------- */
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
  transform: translateY(10px);
  transition-property: opacity, transform;
  transition-duration: 1.2s;
  transition-timing-function: ease-in-out;
}

.fadeUpTrigger.fadeUp {
  opacity: 1;
  transform: translateY(0);
}
/* --------------------------------
anchorlink
-------------------------------- */
.anchorlink {
  padding-top: 80px;
  padding-bottom: 80px;
}

.anchorlink__container {
    max-width: 1040px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 40px;
    padding-left: 40px;
}

.anchorlink__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 32px;
    row-gap: 32px;
}

.anchorlink__item__btn a {
    display: block;
    height: 80px;
    padding: 29px;
    text-align: center;
    background-color: #FFFDFD;
    font-size: 1.6rem;
    position: relative;
    font-family:'Zen Old Mincho', serif; 
}

.anchorlink__item__btn:nth-child(4) a {
    padding: 18px;
}

.anchorlink__item__btn a::after {
    content:"";
    display: inline-block;
    background: url(../SVG/chevron-down.svg) no-repeat;
    width:10px;
    height:10px;
    position:absolute;
    top:40px;
    right: 45px;
}

.anchorlink__item__btn a:hover {
    color: #fff;
    background-color: rgb(116, 116, 116);
    transition-duration:0.3s;
}

.anchorlink__item__btn a:hover::after {
    background: url(../SVG/chevron-down-hover.svg) no-repeat;
    position:absolute;
    top:43px;
    transition-duration:0.5s;
}

@media(max-width:768px) {
  .anchorlink {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .anchorlink__container {
      max-width: 600px;
      padding:0 4% 0 4%;
      margin: 0 auto;
  }

  .anchorlink__items {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 20px;
      row-gap: 20px;
  }

  .anchorlink__item__btn a {
      display: block;
      height:60px;
      padding: 17px;
      text-align: center;
      font-size: 1.4rem;
  }

  .anchorlink__item__btn:nth-child(4) a {
      padding: 8px;
  }

  .anchorlink__item__btn a::after {
    right: 7%;
    top:28px;
  }

  .anchorlink__item__btn a:hover::after {
      bottom: 13px;
  }
}


/* --------------------------------
anchorlink__inqurery
-------------------------------- */
.anchorlink__inqurery{
  max-width: 600px;
  padding-top:50px;
  padding-bottom:50px;
  margin-right: auto;
  margin-left: auto;
}
.anchorlink__inqurery a{
  color: #fff;
  background-color: #707070;
  display: block;
  height: 80px;
  padding: 29px;
  text-align: center;
  font-size: 1.8rem;
  font-family:'Zen Old Mincho', serif;
  position: relative;
}
.anchorlink__inqurery a::after{
  content:"";
  display: inline-block;
  background: url(../SVG/yoyaku.svg) no-repeat;
  width: 25px;
  height:20px;
  position: absolute;
  top:37px;
  right:130px;
}
.anchorlink__inqurery a:hover {
  opacity:0.7;
  transition-duration:0.1s;
}
.anchorlink__inqurery a:hover::after{
  position: absolute;
  right:125px;
  transition-duration:0.2s;
}

@media(max-width:768px) {
  .anchorlink__inqurery {
    padding-top: 30px;
    padding-bottom: 30px;
    max-width:300px;
    font-size: 1.4rem;
  }
  .anchorlink__inqurery a{
      height:60px;
      padding:21px;
      font-size:1.4rem;
  }
  .anchorlink__inqurery a::after{
  top: 25px;
    right: 30px;
  }
  .anchorlink__inqurery a:hover::after{
    position: absolute;
    right:25px;
    transition-duration:0.2s;
  }
}
.anchor{
  padding-top: 80px;
  margin-top: -80px;
}
/* list */
.breakfast__items{
  margin-bottom: 40px;
}
.breakfast__item {
  position: relative;
  padding-left: 1em;
}
.breakfast__item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #B5A69D;
  border-radius: 50%;
  vertical-align: middle;
}