/*
Theme Name: Lieu de repos
Author: yuuka
Author URI: https://lieu-de-repos.net/
Description: Lieu de repos site
Tags: one-column, food-and-drink, holiday, portfolio, block-patterns, custom-background, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-image-header, featured-images, flexible-header, front-page-post-form, full-site-editing, full-width-template, post-formats, rtl-language-support, sticky-post, style-variations, template-editing, theme-options, threaded-comments, translation-ready
*/

/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}
section h2 {
  font-size: 2.4rem;
}
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  opacity: 0.5;
  text-decoration: none;
}
ul {
  list-style: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
button, [type=button], [type=reset], [type=submit] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
@media(max-width:950px) {
  .pc_only {
    display: none;
  }
  section h2 {
    font-size: 2rem;
  }
}


@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}
section h2 {
  font-size: 2.4rem;
}
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  opacity: 0.5;
  text-decoration: none;
}
ul {
  list-style: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
button, [type=button], [type=reset], [type=submit] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
@media(max-width:950px) {
  .pc_only {
    display: none;
  }
  section h2 {
    font-size: 2rem;
  }
}


@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}
section h2 {
  font-size: 2.4rem;
}
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  opacity: 0.5;
  text-decoration: none;
}
ul {
  list-style: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
button, [type=button], [type=reset], [type=submit] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
@media(max-width:950px) {
  .pc_only {
    display: none;
  }
  section h2 {
    font-size: 2rem;
  }
}


/* header */
#header {
  position: absolute;
  top: 0; /* 上部から配置の基準位置を決める */
  left: 0; /* 左から配置の基準位置を決める */
  width: 100%; /* ヘッダーの横幅を指定する */
  height: 80px; /* ヘッダーの高さを指定する */
  z-index: 999; /* 画面の表示順序 */
  padding: 15px 30px;
  display: flex;
}

@media(max-width:950px) {
  #header {
    height: 60px; /* ヘッダーの高さを指定する */
	padding: 10px 15px;
  }
}

/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed{
  position: fixed;/*fixedを設定して固定*/
  z-index: 999;/*最前面へ*/
  top:0;/*位置指定*/
  left:0;/*位置指定*/
  background-color: #F3F3F3;
}
.header_logo {
  display: flex;
  height: 7.5vw;
}
.header_logo_size{
  height: 7.5vw;
  max-height: 50px;
  /* background: url("../../uploads/2024/07/logo.svg"); */
}
#header h1 {
  text-align: left;
  margin: 0;
  width: 20%;
}
.header_count_num {
  color: #b7863d;
  font-weight: 500;
  font-size: 110%;
  padding: 0 35px;
  line-height: 1;
}

@media(max-width:950px) {
  .header_logo_size {
    height: 40px;
  }
}


/* navigation */
.open-button, .close-button {
  display: none;
}
@media(max-width:950px) {
  .open-button {
    display: block;
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    display: block;
    content:"";
  }
  .open-button span:before {
    bottom: -8px;
  }
  .open-button span:after {
    bottom: -16px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #333;
    font-size: 20px;
    padding: 21px 24px;
  }
  #header nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0px;
    right: 0;
    background-color: #F3F3F3;
    width: 230px;
    height: 300px;
    padding-top: 70px;
    box-shadow: 10px 10px 300px rgba(0, 0, 0, 0.7);
  }
  #header nav ul li {
    text-align: left;
    padding: 0 35px;
  }
  #header nav ul li a {
    font-weight: 600;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #333;
  }
 .header_menu_list {
    width: 230px!important;
  }
 .header_menu_list_boder {
    border-bottom: #7e7e7e solid 1px;
    padding: 10px 5px;
  }
  .header_menu_list_boder1 {
    margin-top: 10px;
    border-top: #7e7e7e solid 1px;
  }
  .slick-track {
  margin-left: 0 !important;
  }
}
@media(min-width:950px) {
  .header_menu {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  #header nav {
    display: block;
    margin-left: 50px;
  }
  #header nav ul {
    display: flex;
  }
  #header nav li a {
    display: block;
    padding: 1.5px 15px 0;
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
  }
 .header_menu_list {
    width: 130px!important;
  }
  /* オーバーレイのスタイル */
  .overlay {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 半透明の黒 */
    z-index: 998; /* メニューの下に表示されるようにする */
  }
  /* メニューが開かれたときのスタイル */
  #header nav.open {
    display: block; /* メニューを表示 */
  }
  .overlay.show {
    display: block; /* オーバーレイを表示 */
  }
}


/* footer */
.footer {
  height: 220px;
  padding: 50px 50px 30px 50px;
  background-color: #D9D9D9;
  font-size: 1.0rem;
  color: #333;
}
.footer h1 {
  text-align: left;
  margin: 0;
}
.footer_copyright {
  width: 100%;
  text-align: center;
  margin-top: 60px;
  font-weight: 600;
}
@media (min-width: 950px) {
  .footer_copyright {
    font-weight: 400;
  }
}
@media (max-width: 950px) {
  .footer_copyright {
    padding: 0!important;
  }
}


/* ボタン */
.btn01 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 12px 50px;
    border: 2px solid #7e7e7e;
    border-radius: 35px;
    background-color: #f3f3f3;
    font-weight: bold;
    position: relative; /* 位置の指定を有効（要素の幅として認識）にする */
}
.btn01::after {
    content: "";
    background: url(../img/vector.svg) no-repeat center / contain;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 17px;
}
@media (min-width: 950px) {
  .btn01 {
    width: 350px;
    height: 50px;
  }
}


/* footer */
.footer {
  height: 220px;
  padding: 50px 50px 30px 50px;
  background-color: #D9D9D9;
  font-size: 1.0rem;
  color: #333;
}
.footer h1 {
  text-align: left;
  margin: 0;
}
.footer_copyright {
  width: 100%;
  text-align: center;
  margin-top: 60px;
  font-weight: 600;
}
@media (min-width: 950px) {
  .footer_copyright {
    font-weight: 400;
  }
}
@media (max-width: 950px) {
  .footer_copyright {
    padding: 0!important;
  }
}


/* ボタン */
.btn01 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 12px 50px;
    border: 2px solid #7e7e7e;
    border-radius: 35px;
    background-color: #f3f3f3;
    font-weight: bold;
    position: relative; /* 位置の指定を有効（要素の幅として認識）にする */
}
.btn01::after {
    content: "";
    background: url(../img/vector.svg) no-repeat center / contain;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 17px;
}
@media (min-width: 950px) {
  .btn01 {
    width: 350px;
    height: 50px;
  }
}




/* footer */
.footer {
  height: 220px;
  padding: 50px 50px 30px 50px;
  background-color: #D9D9D9;
  font-size: 1.0rem;
  color: #333;
}
.footer h1 {
  text-align: left;
  margin: 0;
}
.footer_copyright {
  width: 100%;
  text-align: center;
  margin-top: 60px;
  font-weight: 600;
}
@media (min-width: 950px) {
  .footer_copyright {
    font-weight: 400;
  }
}
@media (max-width: 950px) {
  .footer_copyright {
    padding: 0!important;
  }
}


/* ボタン */
.btn01 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 12px 50px;
    border: 2px solid #7e7e7e;
    border-radius: 35px;
    background-color: #f3f3f3;
    font-weight: bold;
    position: relative; /* 位置の指定を有効（要素の幅として認識）にする */
}
.btn01::after {
    content: "";
    background: url(../img/vector.svg) no-repeat center / contain;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 17px;
}
@media (min-width: 950px) {
  .btn01 {
    width: 350px;
    height: 50px;
  }
}