@charset "utf-8";

/*  =============================================================

　　共通モジュール設定

============================================================= */

/*  全体　設定
---------------------------------------------*/

/* 英語フォント 設定
-------------------------- */
.fontEnM {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}

.fontEnSB {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1em;
}

.fontEnB {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
}

.fontEnEB {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.1em;
}

/*  リンク 設定
-------------------------- */
/* -- 動き滑らか -- */
.header a:hover img,
.content a:hover img,
.footer a:hover img{
  transition: all 0.2s ease;
}

/*  画像 基本設定
-------------------------- */
img {
  width: auto;
  max-width: 100%;
  vertical-align: top;
  border: none;
  -webkit-backface-visibility: hidden;
}

a:hover img {
  opacity:0.75;
}

@media screen and (max-width: 768px){
  img {
    width: 100%;
    vertical-align: top;
    border: none;
  }

  a:hover img {
    filter: alpha(opacity=100);
    -moz-opacity:1;
    opacity:1;
  }
}

/*  ボタン
-------------------------- */
.btnMore {
  position: relative;
  z-index: 1;
  max-width: 280px;
  background: #fff;
}

.btnMore * {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
  padding: 12px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #dab451;
  color: #dab451;
  font-size: 2.2rem;
  text-align: center;
}

.btnMore *::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #dab451;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform .3s;
}
.btnMore *:hover::before {
  transform: scale(1, 1);
}

.btnMore *:hover {
  color: #fff;
  transition: all 0.2s ease;
}

@media screen and (max-width: 768px){
  .btnMore {
    max-width: 190px;
  }

  .btnMore * {
    font-size: 1.4rem;
  }

  .btnMore *::before {
    display: none;
  }

  .btnMore *:hover {
    color: #dab451;
  }
}

/*  予約ボタン
-------------------------- */
.btnReserve {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 10%;
  width: 150px;
}

.btnReserve img {
  width: 150px;
  max-width: 150px;
}

@media screen and (max-width: 768px){
  .btnReserve {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 5%;
    width: 100px;
  }
  .btnReserve img {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 320px){
  .btnReserve {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 5%;
    width: 70px;
  }
}

/*  タイトル設定
---------------------------------------------*/
/* ページタイトル */
.pageTitle {
  position: relative;
}

.pageTitle__img img {
  width: 100%;
}

.pageTitle__block {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.pageTitle__text {
  margin: 0 0 10px;
  font-size: 4.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.pageTitle__textEn {
  display: block;
  font-size: 2.8rem;
}


@media screen and (max-width: 768px){
  .pageTitle__text {
    font-size: 2.3rem;
    line-height: 1.5;
  }

  .pageTitle__textEn {
    display: block;
    font-size: 1.4rem;
  }
}

/* ページタイトル テキストのみ */
.pageTitle-b {
  margin-top: 11rem;
  margin-bottom: 6.2rem;
  text-align: center;
}

.pageTitle-b__text {
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 4.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.pageTitle-b__textEn {
  font-size: 2.8rem;
  letter-spacing: 0;
}

@media screen and (max-width: 768px){
  .pageTitle-b {
    padding: 45px 0 40px;
    text-align: center;
  }

  .pageTitle-b__text {
    margin: 0 0 10px;
    font-weight: 500;
    font-size: 2.3rem;
    letter-spacing: 0.05em
  }

  .pageTitle-b__textEn {
    font-size: 1.4rem;
    letter-spacing: 0;
  }

}


/*  カテゴリーアイコン
---------------------------------------------*/
.iconCategory {
  position: relative;
  width: 150px;
  padding: 8px 0;
  background-image: url(/img/common/icon-category.svg);
  background-size: cover;
  color: #fff;
}

.iconCategory span {
  display: block;
  padding-left: 40px;
  font-size: 13px;
  line-height: 1.2;
}

.page-news .iconCategory,.page-faq .iconCategory {
  width: 121px;
  padding: 3px 0;
  background-image: url(/img/common/icon-category-s.svg);
}

.page-news .iconCategory span,.page-faq .iconCategory span {
  padding-left: 25px;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px){
  .page-news .iconCategory, .page-faq .iconCategory {
    width: 124px;
    padding: 3px 0;
    background-image: url(/img/common/icon-category-s.svg);
  }

  .page-news .iconCategory span,.page-faq .iconCategory span {
    padding-left: 24%;
    font-size: 1.1rem;
  }

}

/*  ページャー
-------------------------- */
.pagenation {
  width: 100%;
}
.pagenation ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}
.pagenation li {
  list-style: none;
}
.pagenation li a,
.pagenation li.current,
.pagenation .disabled {
  display: block;
  color: #dab451;
  font-size: 2rem;
  text-decoration: none;
  text-align: center;
  line-height: 0;
}
.pagenation li.current {
  color: #4d4443;
}
.icon-arrow {
  fill: none;
  stroke: #dab451;
  width: 4rem;
  height: 4rem;
}
.disabled .icon-arrow {
  stroke: #4d4443;
}
.next .icon-arrow {
  transform: rotate(180deg);
}
.pagenation li a:hover {
  opacity: 0.5;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: ease;
}
@media screen and (min-width: 769px) {
  .pagenation {
    margin-top: 25px;
  }
  .pagenation ul {
    justify-content: center;
  }
  .pagenation li {
    padding: 1.3rem;
  }
  .pagenation li a, .pagenation li.current, .pagenation .disabled {
    font-size: 1.8rem;
  }
  .icon-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}
