@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*---------------------------------------------------
fonts style
----------------------------------------------------*/
@font-face {
  font-family: "NotoSansJP-Regular";
  src: url("../font/NotoSansJP-Regular.otf");
}
@font-face {
  font-family: "NotoSansJP-Medium";
  src: url("../font/NotoSansJP-Medium.otf");
}
@font-face {
  font-family: "NotoSansJP-Bold";
  src: url("../font/NotoSansJP-Bold.otf");
}
@font-face {
  font-family: "OpenSans-Medium";
  src: url("../font/OpenSans-Medium.ttf");
}
@font-face {
  font-family: "OpenSans-SemiBold";
  src: url("../font/OpenSans-SemiBold.ttf");
}
@font-face {
  font-family: "OpenSans-Bold";
  src: url("../font/OpenSans-Bold.ttf");
}
/*---------------------------------------------------
Variables style
----------------------------------------------------*/
/*---- Color ----*/
/*---------------------------------------------------
Breakpoints 
----------------------------------------------------*/
/*---------------------------------------------------
ホバー時の動き 透過
----------------------------------------------------*/
/*---------------------------------------------------
Base style
----------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  cursor: pointer;
  color: #222222;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

/*---------------------------------------------------
input,selectの各ブラウザデフォルトスタイル無効化
----------------------------------------------------*/
input,
select {
  -webkit-appearance: none;
  border: 1px solid #000;
  border-radius: 0px;
}

select {
  cursor: pointer;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
textarea,
select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
  border-radius: 0;
  border: 1px solid #000;
  background: #fff;
  padding: 0 10px;
  font-size: 16px;
  color: #222222;
}

/*---------------------------------------------------
ボタンの各ブラウザデフォルトスタイル無効化
----------------------------------------------------*/
button,
input[type=submit],
input[type=button] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: 0;
  cursor: pointer;
  text-align: center;
  background-color: #fff;
  font-size: 16px;
}

/*---------------------------------------------------
Common style
----------------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-family: "NotoSansJP-Regular";
  color: #222222;
  -webkit-text-size-adjust: 100%;
}

/*---------------------------------------------------
共通 ○○
----------------------------------------------------*/
.c_wrap {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c_wrap {
    max-width: 285px;
  }
}

.footer_z-index {
  z-index: -999;
}

.scroll-hidden {
  overflow: hidden;
}

.bg {
  background-image: url(../images/common/bg.jpg);
}

.wrapper {
  max-width: 1450px;
  margin: 0 auto;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .wrapper {
    max-width: 335px;
  }
}

/*---------------------------------------------------
共通 アニメーション
----------------------------------------------------*/
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time12 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

/*---------------------------------------------------
共通 header
----------------------------------------------------*/
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
}

.header-wrap {
  position: relative;
  width: 95%;
  max-width: 1306px;
  margin: 0 auto;
}
.header-wrap .reserve-btn {
  position: absolute;
  top: 108px;
  right: 0;
}
.header-wrap .reserve-btn:hover {
  opacity: 0.5;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  cursor: pointer;
}
.header-wrap .reserve-btn_pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .header-wrap .reserve-btn_pc {
    display: none;
  }
}

.reserve-btn_sp {
  display: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 99;
}
.reserve-btn_sp:hover {
  opacity: 0.5;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .reserve-btn_sp {
    display: block;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 990px;
  margin: 0 auto;
  padding-top: 25px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .header-inner {
    max-width: 335px;
    padding-top: 18px;
    padding-bottom: 5px;
  }
}
.header-inner h1 a:hover {
  opacity: 0.5;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header-inner h1 {
    z-index: 9999;
    max-width: 97px;
  }
}
.header-inner nav ul {
  display: flex;
  max-width: 466px;
}
.header-inner nav ul li {
  width: calc(20% - 64px);
  margin-right: 64px;
}
.header-inner nav ul li:last-of-type {
  margin-right: 0;
}
.header-inner nav ul li a {
  position: relative;
  display: inline-block;
  letter-spacing: 0.05em;
  font-size: 1.3rem;
  font-family: "OpenSans-SemiBold";
}
.header-inner nav ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #222222;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
.header-inner nav ul li a:hover::after {
  transform: scale(1, 1);
}
.header-inner nav ul li.instagram-sp {
  display: none;
}

/*---------------------------------------------------
共通 ハンバーガー
----------------------------------------------------*/
/*========= ナビゲーションのためのCSS ===============*/
@media screen and (max-width: 767px) {
  #g-nav {
    position: fixed;
    z-index: 999;
    top: -120%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #CCBD9C;
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }
  /*ナビゲーション*/
  #g-nav ul {
    flex-direction: column;
    position: absolute;
    z-index: 999;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #g-nav ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }
  #g-nav ul li a {
    font-size: 1.8rem;
  }
  #g-nav ul li.instagram-sp {
    display: block;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    display: none;
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 15px;
    right: 32px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .openbtn {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #222222;
    width: 29px;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 26px;
    width: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 38px;
  }
}
@media screen and (max-width: 767px) {
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 23px;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 23px;
  }
}
/*---------------------------------------------------
共通 view more/all hover動き
----------------------------------------------------*/
.view-hover {
  display: inline-block;
  font-size: 1.2rem;
}
.view-hover a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.view-hover a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 120%;
  height: 1px;
  background-color: #222222;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.view-hover a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*---------------------------------------------------
共通 view more/all 右矢印
----------------------------------------------------*/
.arrow-right {
  position: relative;
  padding-right: 14px;
}

.arrow-right::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #222222;
  border-right: 1px solid #222222;
  transform: rotate(45deg);
}

/*---------------------------------------------------
共通 写真ピン
----------------------------------------------------*/
.imgpin {
  position: relative;
}
.imgpin::before {
  width: 12%;
  height: 1px;
  background: #707070;
  content: "";
  display: block;
  position: absolute;
  z-index: 5;
  transform: rotate(-45deg);
  bottom: 5%;
  right: -4%;
}
@media screen and (max-width: 767px) {
  .imgpin-01::before {
    width: 17%;
    bottom: 2%;
    right: -5%;
  }
}
@media screen and (max-width: 767px) {
  .imgpin-02::before {
    width: 15%;
    bottom: 6%;
    right: -4%;
  }
}

/*---------------------------------------------------
共通 テキスト
----------------------------------------------------*/
h2 {
  font-size: 32px;
  letter-spacing: 0.3em;
  font-weight: normal;
  font-family: "OpenSans-Medium";
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 2rem;
  }
}

h2.title {
  margin-bottom: 37px;
}
@media screen and (max-width: 767px) {
  h2.title {
    margin-bottom: 16px;
    text-align: center;
  }
}

/*---------------------------------------------------
共通 NEWS (top.html/news.html)
----------------------------------------------------*/
.news {
  margin-bottom: 148px;
}
@media screen and (max-width: 767px) {
  .news {
    margin-bottom: 80px;
  }
}
.news h2.title {
  text-align: center;
}

.news_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(326px, 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 58px;
}
@media screen and (max-width: 767px) {
  .news_wrap {
    row-gap: 32px;
  }
}
.news_wrap .post .hover-zoom {
  overflow: hidden;
  display: block;
}
.news_wrap .post .hover-zoom .thumbnail {
  overflow: hidden;
  margin-bottom: 16px;
}
.news_wrap .post .hover-zoom .thumbnail .zoom {
  display: block;
  width: 100%;
  height: auto;
  transition: all, 0.5s;
}
.news_wrap .post .hover-zoom:hover .zoom {
  transform: scale(1.2);
}
.news_wrap .post .title {
  margin-bottom: 8px;
}
.news_wrap .post .info {
  display: flex;
  justify-content: space-between;
  color: #B4A27B;
}
@media screen and (max-width: 767px) {
  .news_wrap .post .info {
    justify-content: flex-start;
  }
}
.news_wrap .post .info .date {
  font-family: "NotoSansJP-Medium";
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .news_wrap .post .info .date {
    margin-right: 5px;
  }
}
.news_wrap .post .info .category {
  padding: 2px 22px;
  border: 1px solid #B4A27B;
  font-family: "OpenSans-Medium";
}

.view-wrap {
  text-align: center;
}

/*---------------------------------------------------
共通 footer
----------------------------------------------------*/
footer {
  position: relative;
  max-width: 1298px;
  width: 95%;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 28px;
  z-index: 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
  }
}
.footer-inner h1 a:hover {
  opacity: 0.5;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .footer-inner h1 {
    max-width: 118px;
    margin-bottom: 41px;
  }
}
.footer-inner .fotter-wrap {
  display: flex;
}
.footer-inner nav ul {
  display: flex;
  justify-content: flex-end;
  text-align: end;
}
.footer-inner nav ul li {
  width: 25%;
  margin-left: 64px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .footer-inner nav ul li {
    width: 100%;
    margin-left: 0px;
    margin-bottom: 24px;
  }
}
.footer-inner nav ul li a {
  position: relative;
  display: inline-block;
  letter-spacing: 0.05em;
  font-size: 1.3rem;
  font-family: "OpenSans-SemiBold";
}
.footer-inner nav ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #B4A27B;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .footer-inner nav ul li a::after {
    content: none;
  }
}
.footer-inner nav ul li a:hover {
  color: #B4A27B;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  cursor: pointer;
}
.footer-inner nav ul li a:hover::after {
  transform: scale(1, 1);
}
.footer-inner nav ul li.instagram:hover {
  fill: #B4A27B;
}
@media screen and (max-width: 767px) {
  .footer-inner nav ul li.instagram {
    display: none;
  }
}
.footer-inner nav ul li.instagram_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer-inner nav ul li.instagram_sp {
    display: block;
  }
}
.footer-inner nav ul li.privacy {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .footer-inner nav ul li.privacy {
    margin-left: 0px;
  }
}
.footer-inner nav ul li.privacy a {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  color: #898989;
  font-family: "OpenSans-Medium";
}
.footer-inner nav ul li.privacy a:hover {
  color: #B4A27B;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  cursor: pointer;
}
.footer-inner nav ul li.privacy a span {
  padding-left: 3px;
}
@media screen and (max-width: 767px) {
  .footer-inner nav .footer-menu01 {
    display: none;
  }
  .footer-inner nav .footer-menu02 {
    flex-direction: column;
    text-align: center;
  }
}
.footer-inner .pageTop a {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  color: #B4A27B;
  font-family: "OpenSans-Medium";
  font-size: 1.3rem;
}
.footer-inner .pageTop a:hover {
  opacity: 0.5;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  cursor: pointer;
}
.footer-inner .pageTop_pc {
  display: block;
  margin-left: 76px;
}
@media screen and (max-width: 767px) {
  .footer-inner .pageTop_pc {
    display: none;
  }
}
.footer-inner .pageTop_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer-inner .pageTop_sp {
    display: block;
    margin-bottom: 56px;
  }
}
.footer-inner .pageTop_sp a {
  font-size: 1.1rem;
}
.footer-inner .arrow-top {
  position: relative;
}
.footer-inner .arrow-top::before {
  content: "";
  margin: auto;
  position: absolute;
  top: -13px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-top: 1px solid #b4a27b;
  border-right: 1px solid #b4a27b;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .footer-inner .arrow-top::before {
    left: 2px;
  }
}

.copyright {
  text-align: center;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
  color: #898989;
  font-family: "OpenSans-Medium";
}
/*# sourceMappingURL=style.css.map */