@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px) {
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px) {
  /*必要ならばここにコードを書く*/
}

/************************************
** フォント
************************************/

.e_font {
  font-family: "Cinzel", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.j_font {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

html {
  font-size: 14px;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

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

  html {
    font-size: 16px;
  }
}

/************************************
** リセット
************************************/
ul, li, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: all 0.5s 0s ease;
}

a:hover {
  color: #ccc;
  transition: all 0.5s 0s ease;
}

/************************************
** タイトル
************************************/
.section_title_box {
  margin-bottom: 2rem;
}

.section_title_center {
  text-align: center;
}

.section_title span {
  display: block;
  line-height: 1;
  font-size: 2.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.section_title {
  font-size: 1rem;
  letter-spacing: 0.06em;

  margin-bottom: 0;
}


@media screen and (min-width: 1200px) {
  .section_title_box {
    margin-bottom: 3rem;
  }

  .section_title span {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
  }


}

/************************************
**共通
************************************/
.main_wrap {
  background-color: #fff;
}

.main_wrap img {
  display: block;
}

.fs1416 {
  font-size: 1rem;
}

.mb0 {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 1200px) {
  .fs1416 {
    font-size: 1rem;
  }
}

#header {
  height: 70px;
  z-index: 9999;
  transition: .6s;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: auto;
  /* overflow: hidden; */
  /* background-color: #fff; */
}

#headertop {
  z-index: 55555;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: auto;
  transition: .6s;
}

#headertop.fixed {
  transform: translateY(0%);
  transition: .3s;
}

#headertop #header.view {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  transition: .3s;
  transform: translateY(-200%);
}

#headertop.fixed #header.view {
  /* background-color: rgb(108, 108, 108, 0.9); */
  background-color: rgb(84, 84, 84, 0.9);
  transform: translateY(0%);
  transition: .3s;
}

#headertop.fixed #header.header_page_noback.view {
  background-color: inherit;
}

#header.view {
  background: rgb(255, 255, 255, 1);
  height: 60px;
  /* border-bottom: 1px solid #ccc; */
}

@media screen and (min-width: 992px) {
  #header {
    height: 100px;
  }

  #header.view {
    height: 100px;
    background: rgb(255, 255, 255, 0.7);
  }
}

/* #header::before {
    content: '';
    display: block;
    position: relative;
    width: 40%;
    height: 90%;
    background-color: #eeeeee;
    position: absolute;
    right: 0;
    z-index: -101;
} */
.header_block {
  width: 100%;
  height: 100%;
  position: relative;
}

.header_logo {
  position: absolute;
  top: 21px;
  left: 7%;
  display: inline-block;
  width: 80px;
  z-index: 1000;
}

#header.view .header_logo {
  /* filter: invert(100%); */
  top: 11px;
  width: 70px;
}

.header_page_noback .header_logo {
  filter: invert(100%);
}

@media screen and (min-width: 992px) {
  .header_logo {
    width: 120px;

    top: 32px;
    left: 5%;
  }

  #header.view .header_logo {
    width: 110px;
    top: 20px;
  }
}

.header_logo a {
  display: flex;
}

.header_logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1200px) {
  .header_logo {
    width: 140px;
  }
}

/*-----nav------------*/
.nav_block {
  display: none;
}

@media screen and (min-width:992px) {
  .nav_block {
    display: block;
    position: absolute;
    position: absolute;
    top: 44px;
    right: 5%;
    z-index: 1000;
  }

  #header.view .nav_block {
    top: 24px;
  }

  .nav_menu {
    display: flex;
    align-items: center;
  }

  .nav_menu li {
    margin-right: 1rem;
  }

  .nav_menu li:last-child {
    margin-right: 0;
    margin-left: 1rem;
  }

  .nav_menu_list {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    line-height: 1.4;
    color: #fff;
  }

  .header_page_noback .nav_menu_list {
    color: #000;
  }

  .nav_menu_list span {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
  }

  .nav_menu_list_contact {
    width: 185px;
    height: 50px;
    color: #545454;
    background-color: #fff;
    border: solid 1px #fff;
    border-radius: 40px;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all 0.5s 0s ease;
  }

  .nav_menu_list_contact:hover {
    background-color: #545454;
    color: #fff;
    transition: all 0.5s 0s ease;
  }

  .header_page_noback .nav_menu_list_contact {
    color: #fff;
    border: solid 1px #545454;
    background-color: #545454;
  }

  .header_page_noback .nav_menu_list_contact:hover {
    color: #545454;
    background-color: #fff;
  }
}

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

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

  .nav_menu li {
    margin-right: 3rem;
  }

  .nav_menu_list span {
    font-size: 1.125rem;
  }
}

/*-----toggle-inner-----------*/
.toggle-container {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
}

/*toggle_outer.active*/
.toggle_outer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1111;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: 0.4s ease-in-out;
  overflow: hidden;
  padding: 8% 5% 18%;
  background-color: #757474;
  background-color: #545454;
}

/*body.fixed*/
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/*toggle_outer.active*/
.toggle_outer.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  overflow-y: scroll;
}

/*toggle_inner*/
.toggle_inner {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1200px) {
  .toggle_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3% 5%;
  }
}

/*toggle-content↓*/
.toggle_in_container {
  padding: 4rem 0 6rem;
  background-color: #757474;
  background-color: #545454;
}

.toggle_in_container_inner {
  width: 86%;
  margin: 0 auto;
  max-width: 1280px;
}

/*ボタン*/
.toggle_in_btn_block {
  margin-bottom: 3rem;
}

.toggle_in_btn_block .section_title {
  color: #fff;
}

.toggle_in_btn_block .section_title span {
  color: #fff;
}

.toggle_in_btn_list>ul>li:first-child {
  margin-bottom: 10px;
}

.toggle_in_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  max-width: 320px;
  border-radius: 40px;
}





.toggle_in_contact {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #fff;
  border: solid 1px #fff;
}

.toggle_in_reserve {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  background-color: #fff;
  color: #000;
  border: solid 1px #fff;
}

/*toggle_in_block*/
.toggle_in_block {
  padding-bottom: 4rem;
  border-bottom: solid 1px #fff;
}

.toggle_in_unit01 {
  margin-bottom: 3rem;
}

.toggle_in_logo {
  display: block;
  width: 80px;
  margin-bottom: 1rem;
}

.toggle_in_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.toggle_in_address {
  font-size: 0.95rem;
  color: #fff;
  line-height: 2;
  margin-bottom: 3rem;
}

.toggle_in_list_block>ul {
  display: flex;
  flex-wrap: wrap;
}

.toggle_in_list_block>ul>li {
  width: auto;
  margin-right: 1rem;
}

.toggle_in_list_block>ul>li:last-child {
  margin-right: 0;
}

.toggle_in_list {
  color: #fff;
  font-size: 0.95rem;

  letter-spacing: 0.06em;
}

.toggle_in_unit02 {
  height: 250px;
}

.toggle_in_unit02 iframe {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

/*toggle_in_copy_block*/
.toggle_in_copy_block {
  padding-top: 3rem;
}

.toggle_in_policy {
  color: #fff;
  display: inline-block;
  font-size: 0.9rem;
  margin-bottom: 4rem;
}

.toggle_in_copy {
  font-size: 0.9rem;

  color: #fff;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .toggle_in_container {
    padding: 6rem 0;
  }

  .toggle_in_btn_list>ul {
    display: flex;
  }

  .toggle_in_btn_list>ul>li {
    width: 50%;
    margin: 0 auto;
  }

  .toggle_in_btn_list>ul>li:first-child {
    margin-right: 1rem;
    margin-bottom: 0;
  }

  /*toggle_in_block*/
  .toggle_in_block {
    padding-bottom: 4rem;
  }

  .toggle_in_unit02 {
    height: 350px;
  }

  /*toggle_in_copy_block*/
  .toggle_in_copy_block {
    padding-top: 3rem;
  }
}

@media screen and (min-width: 992px) {
  .toggle_in_btn_block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
  }

  .toggle_in_btn_block .section_title_box {
    width: 34%;
    margin-bottom: 0;
  }

  .toggle_in_btn_list {
    width: 54%;
  }

  .toggle_in_btn {
    height: 70px;
    margin-right: 0;
    margin-left: auto;
  }

  /*toggle_in_block*/
  .toggle_in_block {
    display: flex;
    justify-content: space-between;
  }

  .toggle_in_unit01 {
    width: 34%;
    margin-bottom: 0;
  }

  .toggle_in_address {
    margin-bottom: 4rem;
  }

  .toggle_in_unit02 {
    width: 53%;
    height: auto;
  }

  /*toggle_in_copy_block*/
  .toggle_in_copy_block {
    display: flex;
    justify-content: space-between;
  }

  .toggle_in_policy {
    order: 2;
    margin-bottom: 0;
  }

  .toggle_in_copy {
    order: 1;
  }
}

@media screen and (min-width: 1200px) {
  .toggle_in_container {
    padding: 9rem 0;
  }

  .toggle_in_btn {
    height: 70px;
  }



  .toggle_in_block {
    padding-bottom: 5rem;
  }

  .toggle_in_logo {
    width: 145px;
    margin-bottom: 3rem;
  }

  .toggle_in_address {
    margin-bottom: 6rem;
  }

  .toggle_in_list_block>ul>li {
    margin-right: 2rem;
    line-height: 2;
  }

  .toggle_in_list {
    font-size: 1.2rem;
  }

  .toggle_in_copy_block {
    padding-top: 4rem;
  }

  .toggle_in_policy {
    font-size: 0.9375rem;
  }

  .toggle_in_copy {
    font-size: 0.9375rem;
  }
}

/*------------toggle_line----------------------------*/
/*toggle*/
.toggle_box {
  position: absolute;
  right: 4%;
  top: 11px;
}

#header.view .toggle_box {
  top: 0px;
}

.toggle {
  display: block;
  position: relative;
  cursor: pointer;
  z-index: 6666;
  transition: 0.8s ease-in-out;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
}

.toggle span {
  display: block;
  position: absolute;
  border-bottom: solid 1px #fff;
  transition: .35s ease-in-out;
  width: 28px;
  right: 50%;
  transform: translate(50%, -50%);
}

/* #header.view .toggle span {
  border-bottom: solid 1px #000;
} */

.header_page_noback .toggle span {
  border-bottom: solid 1px #000;
}

.toggle span:nth-child(1) {
  top: 21px;
}

/* .toggle span:nth-child(1)::before {
    content: "MENU";
    display: block;
    width: 100%;
    font-size: 0.7rem;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    top: -23px;
    right: 2px;
} */
.toggle span:nth-child(2) {
  top: 30px;
}

.toggle span:nth-child(3) {
  top: 38px;
}

/*toggle.tgl-active*/
/* .toggle.tgl-active {
  top: 10px;
} */

.toggle.tgl-active span {
  transition: 0.3s ease-in-out;
}

.header_page_noback .tgl-active span {
  border-bottom: solid 1px #fff;
}

.toggle.tgl-active span:nth-child(1) {
  border-bottom: none;
}

/* .toggle.tgl-active span:nth-child(1)::before {
    content: "CLOSE";
    top: -32px;
    right: 21px;
    font-size: 0.7rem;
} */
.toggle.tgl-active span:nth-child(2) {
  top: 31px;
  transform: translate(50%, -50%) rotate(-45deg);
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
  /* -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); */
}

.toggle.tgl-active span:nth-child(3) {
  top: 31px;
  transform: translate(50%, -50%) rotate(45deg);
  -webkit-transform: translate(50%, -50%) rotate(45deg);

  /* -webkit-transform: rotate(45deg);
  transform: rotate(45deg); */
}

@media screen and (min-width: 768px) {
  .toggle_box {
    /* right: 2%; */
  }
}

@media screen and (min-width: 992px) {
  .toggle_box {
    top: 21px;
    display: none;
  }

  #header.view .toggle_box {
    top: 21px;
  }

  .toggle span {
    width: 35px;
  }
}

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

  .toggle_box {
    top: 14px;
    right: 4%;
  }

  #header.view .toggle_box {
    top: 14px;
  }

  .toggle {
    width: 70px;
    height: 70px;
  }

  .toggle span:nth-child(1) {
    top: 26px;
  }

  .toggle span:nth-child(2) {
    top: 35px;
  }

  .toggle span:nth-child(3) {
    top: 45px;
  }

  .toggle.tgl-active {
    top: 25px;
  }
}

/************************************
** MV
************************************/
/*--top_img_menu--*/
.top_main_img {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.top_main_img::before {
  content: '';
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.slider {
  position: relative;
  z-index: -10;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100vh;
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.slider-item {
  width: 100%;
  /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100vh;
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat;
  /*背景画像をリピートしない*/
  background-position: center;
  /*背景画像の位置を中央に*/
  background-size: cover;
  /*背景画像が.slider-item全体を覆い表示*/
}

.slider_img {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1200px) {
  .top_main_img::before {
    content: none;
  }
}

.slider-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.top_img_block {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

.top_img_block::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.top_img_menu li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----top_img_menu-end-----------*/
/*-----top_txt_block-end-----------*/
.top_txt_block {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 88%;
  margin: 0 auto;
  z-index: 20;
}

.top_txt_title {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.06em;
}

.top_txt {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .top_txt_title {
    font-size: 3rem;
  }

  .top_txt {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {
  .top_txt_block {
    width: 90%;
    bottom: 30%;
  }

  .top_txt_title {
    font-size: 3.625rem;
    letter-spacing: 0.06rem;
    line-height: 1.4;
  }

  .top_txt {
    font-size: 1.25rem;
    letter-spacing: 0.06rem;

  }
}

/************************************
** concept
************************************/
.concept_container {
  margin: 5rem auto;
}

.concept_unit01 {
  width: 94%;
  padding-left: 6%;
  padding-bottom: 1rem;
  position: relative;
  z-index: 0;
  margin-bottom: 3rem;
}

.concept_unit01::before {
  content: '';
  display: block;
  width: 80%;
  height: 70%;
  background-color: #f4f5f7;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.concept_unit02 {
  width: 88%;
  margin: 5rem auto 5rem;
}

.concept_title {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.concept_txt {
  margin-bottom: 2rem;
}

.concept_txt_last {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .concept_block {
    display: flex;
    align-items: center;
  }

  .concept_unit01 {
    width: 50%;
    margin-bottom: 0;
  }

  .concept_unit02 {
    width: 50%;
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (min-width: 1200px) {
  .concept_container {
    /* margin: 9.3rem auto; */
    margin: 5.3rem auto;
  }

  .concept_unit01 {
    width: 47%;
    padding-left: 5%;
    padding-bottom: 7rem;
  }

  .concept_unit02 {
    width: 53%;
    padding-left: 9%;
  }

  .concept_unit02 .section_title span {
    font-size: 4rem;
  }

  .concept_title {
    font-size: 2.625rem;
    margin-bottom: 4.5rem;
  }

  .concept_txt {
    width: 80%;
    line-height: 2;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
  }
}

/************************************
**blog
************************************/
.section_btn {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 185px;
  height: 50px;
  /* background-color: #6c6c6c;
  border: solid 1px #6c6c6c; */
  background-color: #545454;
  border: solid 1px #545454;
  color: #fff;

  border-radius: 40px;
}

.section_btn:hover {
  background-color: #fff;
  color: #545454;
}

@media screen and (min-width: 1200px) {
  .section_btn {
    font-size: 0.875rem;
  }
}

.section_btn_center .section_btn {
  margin: 0 auto;
}

.blog_container {
  width: 88%;
  margin: 0 auto 5rem;
  max-width: 1300px;
}

.blog_unit01 .section_title_box {
  text-align: center;
}

.blog_btn_pc {
  display: none;
}

.blog_block {
  margin-bottom: 3rem;
}

.blog_unit02>ul>li {
  border-bottom: solid 1px #ccc;
}

.blog_unit02>ul>li:first-child {
  border-top: solid 1px #ccc;
}

.blog_item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

.blog_item:hover {
  opacity: 0.7;
  background-color: rgba(244, 245, 247, 0.7);
}

.blog_img {
  width: 35%;
  aspect-ratio: 35 / 23;
}

.blog_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog_txt_box {
  width: 65%;
  padding-left: 5%;
}

.blog_date_box {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.blog_date {
  font-size: 1rem;
  color: #000;
  margin-right: 1rem;
}

.blog_category_name {
  font-size: 0.7rem;
  color: #6c6c6c;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f5f7;
  border: solid 1px #6c6c6c;
  border-radius: 20px;
  padding: 0px 15px;
}

.blog_title {
  color: #000;
}

@media screen and (min-width: 768px) {
  .blog_block {
    display: flex;
    margin-bottom: 0;
  }

  .blog_unit01 {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .blog_unit01 .section_title_box {
    text-align: left;
    margin-bottom: 0;
  }

  .blog_btn_pc {
    display: block;
  }

  .blog_unit02 {
    width: 70%;
  }

  .blog_btn_sp {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .blog_container {
    margin-bottom: 9rem;
  }

  .blog_unit01 {
    width: 37%;
  }

  .blog_unit02 {
    width: 63%;
  }

  .blog_item {
    padding: 1.6rem 0;
  }

  .blog_img {
    width: 21%;
  }

  .blog_txt_box {
    width: 79%;
    padding-left: 6%;
  }

  .blog_date {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }

  .blog_category_name {
    font-size: 0.8125rem;
    line-height: 1;
    padding: 4px 20px;
  }

  .blog_title {
    font-size: 1.375rem;
  }
}

/************************************
**パスワード付き
************************************/
.spcial_container {
  width: 88%;
  margin: 0 auto 5rem;
  max-width: 1300px;
}

.spcial_block {
  margin-bottom: 3rem;
}

.spcial_block .section_title_box {
  text-align: center;
}

.spcial_list>ul>li {
  margin-bottom: 3rem;
}

.spcial_list>ul>li:last-child {
  margin-bottom: 0;
}

.spcial_item {
  display: block;
}

.spcial_img {
  aspect-ratio: 35 / 23;
  margin-bottom: 1rem;
}

.spcial_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spcial_title {
  font-size: 1.2rem;
  color: #000;
}

@media screen and (min-width: 768px) {
  .spcial_list>ul {
    display: flex;
    flex-wrap: wrap;
  }

  .spcial_list>ul>li {
    width: 50%;
  }

  .spcial_item {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 992px) {
  .spcial_container {
    margin-bottom: 8rem;
  }

  .spcial_list>ul {
    margin-left: -2%;
    margin-right: -2%;
  }

  .spcial_list>ul>li {
    width: calc(100% / 3);
  }
}

@media screen and (min-width: 1200px) {
  .spcial_container {
    margin-bottom: 9rem;
  }

  .spcial_container .section_title_box {
    margin-bottom: 3.8rem;
  }
}

/************************************
**限定ブログ
************************************/
a.exclusive_item {
  display: block;
  position: relative;
  color: #fff;
  z-index: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.exclusive_item:hover {
  opacity: 0.8;
  transition: all 0.5s 0s ease;
}

.exclusive_item::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.exclusive_img {
  height: 350px;
}

.exclusive_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exclusive_txtbox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 84%;
}

.spcial_container .section_title_center {
  margin-bottom: 4rem;
}

.exclusive_item .section_title {
  color: #fff;
}

.exclusive_item .section_title span {
  color: #fff;
}

.exclusive_item .section_btn {
  color: #545454;
  background-color: #fff;
  transition: all 0.5s 0s ease;
}

.exclusive_item:hover .section_btn {
  background-color: #545454;
  color: #fff;
  transition: all 0.5s 0s ease;
}

@media screen and (min-width: 768px) {
  .exclusive_img {
    height: 360px;
  }
}

/************************************
**メニュー
************************************/
.menu_container {
  background-color: #f4f5f7;
  padding: 4.5rem 0 6rem;
  margin-bottom: 5rem;
}

.menu_block {
  width: 88%;
  margin: 0 auto;
  max-width: 1300px;
}

.menu_block>ul>li {
  margin-bottom: 4rem;
}

.menu_block>ul>li:last-child {
  margin-bottom: 0;
}

.menu_unit01 {
  width: 100%;
}

.menu_unit01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
.menu_block>ul>li:nth-child(2n) .menu_unit01 {
  margin-left: auto;
  margin-right: 0;
} */

.menu_unit02 {
  background-color: #fff;
  padding: 2.5rem 2.5rem;
  width: 92%;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  margin-top: -2rem;
}

.menu_block>ul>li:nth-child(2n) .menu_unit02 {
  margin-left: 0;
  margin-right: auto;
}

.menu_head {
  font-size: 2rem;
  position: relative;
  line-height: 1;
  z-index: 0;
  margin-bottom: 5px;
}

.menu_head::before {
  content: '';
  width: 100%;
  height: 1px;
  display: block;
  background-color: #6c6c6c;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  z-index: -1;
}

.menu_head span {
  background-color: #fff;
  padding-right: 2rem;
}

.menu_title {
  font-size: 1rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.menu_txt {
  font-size: 0.95rem;
  text-align: justify;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .menu_item {
    display: flex;
  }

  .menu_unit01 {
    width: 50%;
    margin: 0;
  }

  .menu_block>ul>li:nth-child(2n) .menu_unit01 {
    order: 2;
    margin-left: auto;
    margin-right: 0;
  }

  .menu_unit02 {
    width: 50%;
    margin: 0;
  }

  .menu_block>ul>li:nth-child(2n) .menu_unit02 {
    order: 1;
  }
}

@media screen and (min-width: 992px) {
  .menu_block>ul>li {
    margin-bottom: 8rem;
  }

  .menu_item {
    position: relative;
  }

  .menu_unit01 {
    width: 60%;
  }

  .menu_unit02 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -3rem;
    right: 0;
    padding: 3rem;
  }

  .menu_block>ul>li:nth-child(2n) .menu_unit02 {
    left: 0;
    right: auto;
  }
}

@media screen and (min-width: 1200px) {
  .menu_container {
    padding: 9.5rem 0;
    margin-bottom: 9rem;
  }

  .menu_container .section_title_box {
    margin-bottom: 4.8rem;
  }

  .menu_block>ul>li {
    margin-bottom: 12rem;
  }

  .menu_unit01 {
    width: 64%;
  }

  .menu_unit02 {
    width: 56%;
    padding: 3.5rem 5.5rem;
  }

  .menu_head {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }

  .menu_title {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }

  .menu_txt {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

/************************************
**ご予約
************************************/
.reserve_container {
  width: 88%;
  margin: 0 auto 5rem;
  max-width: 800px;
}

.reserve_block {
  height: 320px;
}

@media screen and (min-width: 1200px) {
  .reserve_container {
    margin-bottom: 9rem;
  }

  .reserve_block {
    height: 460px;
  }
}

/************************************
**アクセス
************************************/
.access_container {
  background-color: #f4f5f7;
  padding: 4.5rem 0;
  margin: 0 auto;
  max-width: 1500px;
}

.access_block {
  width: 88%;
  margin: 0 auto;
  max-width: 1300px;
}

.access_unit01 {
  margin-bottom: 3rem;
}

.access_list>ul>li {
  margin-bottom: 0.8rem;
}

.access_list>ul>li:last-child {
  margin-bottom: 0;
}

.access_txt {
  display: flex;
  font-size: 1rem;
}

.access_txt span {
  white-space: nowrap;
  width: 25%;
}

.access_tel {
  margin-top: 1.2rem;
  align-items: flex-end;
  line-height: 1;
}

.access_tel a {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #000;
}

.access_unit02 {
  aspect-ratio: 76 / 51;
}

@media screen and (min-width: 768px) {
  .access_block {
    display: flex;
    align-items: center;
  }

  .access_unit01 {
    width: 50%;
    margin-bottom: 0;
  }

  .access_unit02 {
    width: 50%;
    padding-left: 5%;
  }
}

@media screen and (min-width: 1200px) {
  .access_container {

    padding: 6.5rem 0;

  }

  .access_unit01 {
    width: 45%;
  }

  .access_unit02 {
    width: 55%;
    padding-left: 0;
  }


  .access_txt span {

    width: 21%;

  }

  .access_tel a {
    font-size: 2.1875rem;
  }
}

/************************************
**footer
************************************/
.content {
  margin-top: 0;
}

.footer {
  margin-top: 0;
  padding: 0;
  padding-top: 0px;
  background: #fff;
  padding-top: 5rem;
}

@media screen and (min-width: 1200px) {
  .footer {
    padding-top: 9.5rem;

  }
}

/*||contact_container||*/
.contact_item {
  display: block;
  position: relative;
  z-index: 0;
}

.contact_item:hover {
  opacity: 0.9;
}

.contact_item_white::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(108, 108, 108, 0.65);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.contact_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.zoom {
  display: block;
  width: 100%;
  overflow: hidden;
}

.contact_item:hover .zoom img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.contact_title {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  margin-bottom: 0;
  z-index: 2;
}

.contact_title span {
  display: block;
  line-height: 1;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.contact_item_white .contact_title {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .contact_container {
    display: flex;
  }

  .contact_item {
    width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .contact_title span {
    font-size: 3rem;
  }

  .contact_title {
    font-size: 1.125rem;

  }
}

.footer_container {
  background-color: #757474;
  background-color: #545454;
  padding: 4.5rem 0;
}

.footer_containar_inner {
  width: 88%;
  margin: 0 auto;
  max-width: 1300px;
}

.footer_block {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}

.footer_unit01 {
  order: 2;
}

.footer_logo {
  display: block;
  width: 80px;
  margin-bottom: 1rem;
}

.footer_address {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0;
}

.footer_unit02 {
  order: 1;
  margin-bottom: 3.5rem;

}

.footer_list>ul {
  display: flex;
  flex-wrap: wrap;
}

.footer_list>ul>li {
  width: auto;
  margin-right: 1rem;
}

.footer_list>ul>li:last-child {
  margin-right: 0;
}

.footer_item {
  font-size: 0.95rem;
  color: #fff;
}

.footer_policy {
  font-size: 0.9rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 3rem;
}

.footer_copy {
  font-size: 0.9rem;
  color: #fff;

}

@media screen and (min-width: 768px) {
  .footer_block {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 5rem;
  }

  .footer_unit01 {
    order: 1;
  }

  .footer_unit02 {
    width: 50%;
    order: 2;
    margin-bottom: 0;

  }

  .footer_list>ul {
    justify-content: flex-end;
  }

  .footer_list>ul>li {
    margin-left: 2rem;
    margin-right: 0;
  }

  .footer_list>ul>li:first-child {
    margin-left: 0;
  }

  .footer_copy_block {
    display: flex;
    justify-content: space-between;
  }

  .footer_policy {
    order: 2;
    margin-bottom: 0;
  }

  .footer_copy {
    order: 1;
  }
}

@media screen and (min-width: 1200px) {
  .footer_container {
    padding: 6.5rem 0;
  }

  .footer_block {
    margin-bottom: 6rem;
  }

  .footer_logo {
    display: block;
    width: 120px;
    margin-bottom: 3rem;
  }

  .footer_address {
    font-size: 1rem;
  }

  .footer_list>ul>li {
    margin-left: 2.5rem;
  }

  .footer_item {
    font-size: 1rem;
  }

  .footer_policy {
    font-size: 0.875rem;
  }

  .footer_copy {
    font-size: 0.875rem;
  }
}

/************************************
**投稿詳細
************************************/
/* .main {
  width: 100%;
  margin: 12rem auto 10rem !important;
  max-width: 1200px;
  padding: 6rem;
}

@media screen and (max-width: 1023px) {
  .main {
    width: 90% !important;
    margin: 6rem auto 5rem !important;

  }
} */
.content-in {
  margin: 12rem auto 8rem;
}

@media screen and (max-width: 1023px) {
  .content-in {
    margin: 6rem auto 5rem;
  }
}

.main_page {
  width: 100%;
  margin: 0 auto;
  padding: 6rem;

  max-width: 1200px;

}

@media screen and (max-width: 1023px) {
  .main_page {
    width: 90% !important;
    margin: 0 auto !important;
    padding: 3rem 0rem !important;
  }
}

.archive-title {
  font-weight: 400;
  font-family: "Shippori Mincho", serif;

}

.entry-card-title, .card-title, .e-card-title {
  font-weight: 400;
  font-family: "Shippori Mincho", serif;

}

.entry-title {
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
}

.article h1, .article h2, .article h3, .article h4, .article h5, .article h6 {
  font-weight: 400;
  font-family: "Shippori Mincho", serif;

}

.sidebar h2, .sidebar h3 {
  font-weight: 400;
  font-family: "Shippori Mincho", serif;

}

.related-entry-heading, .comment-title {
  font-weight: 400;
  font-family: "Shippori Mincho", serif;

}

/************************************
**MENU
************************************/
.pg_menu_container #toc {
  display: none;
}

.pg_menu_container .pg_menu_title span {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.pg_menu_container .pg_menu_title {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
}



.pg_menu_container .menu_block>ul {
  margin-bottom: 3rem;
}

.pg_menu_container .menu_block>ul>li {
  margin-bottom: 3rem;
}

.pg_menu_container .menu_block>ul>li:last-child {
  margin-bottom: 0;
}

.pg_menu_container .menu_item {
  display: block;
}

.pg_menu_container .menu_title {
  /* background-color: #1A0F03; */
  /* background-color: #D9D9D9;
  color: #000;
  text-align: center;
  margin-bottom: 2rem;
  padding: 7px 0;
  font-size: 1.6rem; */
}

.pg_menu_container .menu_title {
  color: #757474;
  /*文字色*/
  background-color: #fff;
  /*背景色（白）*/
  font-size: 1.4rem;
  /*文字サイズ*/
  padding: 1.1rem 1rem;
  /*文字回りの余白（上下左右）*/
  display: block;
  border: 1px solid #757474;
  /*囲み線（太さ 実線 色）*/
  box-shadow: 5px 8px 0 #f4f5f7;
  /* box-shadow: 5px 8px 0 #757474; */
  /* background-color: #f4f5f7; */
  /* background-color: rgba(244, 245, 247, 0.7); */
  /*影（左右距離 上下距離 ぼかしサイズ 色*/
}

.pg_menu_container .menu_list_box {
  margin-bottom: 2rem;
}

.pg_menu_container .menu_type_name {
  font-weight: 500;
  position: relative;
  font-size: 1rem;
  background-color: #f4f5f7;
  padding: 0.7rem 1rem;
}



.pg_menu_container .menu_heading {
  text-align: center;
}

.pg_menu_container .menu_list_set {
  margin-top: 1rem;
  padding-bottom: 5px;
  /* border-bottom: solid 1px #efefef; */
  border-bottom: solid 1px #ccc;
  margin-bottom: 10px;
}

.pg_menu_container .menu_list_box>ul>li:last-child .pg_menu_container .menu_list_set {
  margin-bottom: 0;
}

.pg_menu_container .menu_list_set {
  display: flex;
  justify-content: space-between;
}

.pg_menu_container .menu_list_name {
  font-size: 1rem;
  margin-bottom: 0;
}

.pg_menu_container .menu_list_price {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin-bottom: 0;
}

.pg_menu_container .menu_list_price span {
  display: block;
  margin-right: 3px;
  font-size: 1rem;
}

.pg_menu_container_bottom {
  margin-top: 5rem;
}

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


  .pg_menu_container .menu_block>ul>li {
    margin-bottom: 4rem;
  }


}

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

  .pg_menu_container .pg_menu_title span {
    display: block;
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
  }

  .pg_menu_container .pg_menu_title {
    font-size: 1.2rem;

    margin-bottom: 5rem;
  }

  .pg_menu_container .menu_block>ul>li {
    margin-bottom: 6rem;
  }



  .pg_menu_container .menu_block {
    margin-bottom: 4rem;
  }

  .pg_menu_container .menu_title {
    font-size: 1.8rem;
    padding: 1.3rem 1.2rem;

  }

  .pg_menu_container .menu_list_set {
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
  }

  .pg_menu_container .menu_type_name {
    font-size: 1.15rem;
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
  }

  .pg_menu_container_bottom {
    margin-top: 9rem;
  }

}

/************************************
**お問い合わせ
************************************/

.pg_contact_container {
  width: 88%;
  margin: 0 auto;
}

.pg_contact_txt {
  font-size: 1rem;
}

.pg_contact_txt2 {
  font-size: 1rem;
  margin-bottom: 2rem;
}

#form_contact {
  width: 100%;
}

#form_contact tr {
  position: relative;
  display: block;
  border-bottom: solid 1px #ccc;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  background-color: #fff;
}

#form_contact tr:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

#form_contact th {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  border: none;
  font-weight: 400;
  background-color: #fff;
}

.form_mandatory {
  font-size: 0.7rem;
  color: #fff;
  background-color: #6c6c6c;
  border-radius: 0;
  padding: 4px 7px;
  margin-right: 9px;
  font-weight: 400;
  letter-spacing: 0.05rem;
}

#form_contact td {
  display: block;
  width: 100%;
  margin-bottom: 0;
  border: none;
}

#form_contact input[type="text"], input[type="tel"], input[type="email"], textarea {
  display: block;
  width: 100%;
  padding: 10px 5px;
  margin: 0 0 10px;
  border: solid 1px #afafb0;
  background-color: #fff;
  color: #000;
  border-radius: 0;
}

.form_submit input[type="submit"] {
  display: block;
  font-size: 1.2rem;
  background-color: #6c6c6c;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  border-radius: 3px;
  max-width: 400px;
  margin: 2rem auto 0;
  letter-spacing: 0.1rem;
  border-radius: 50px;
}

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


  #form_contact th {
    padding: 30px 0 10px;
  }


}

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


  .form_mandatory {
    font-size: 0.8rem;
    margin-right: 13px;
  }

  #form_contact th {
    font-size: 1.1rem;
  }

  #form_contact input[type="text"], input[type="tel"], input[type="email"], textarea {
    padding: 20px 10px;
  }

  .form_submit input[type="submit"] {
    padding: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .pg_contact_txt2 {
    margin-bottom: 4rem;
  }

  #form_contact tr {
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
  }

  #form_contact th {
    padding: 0 0 1rem;
  }


}

/*----------------------------
プライバシーポリシー
----------------------------*/
.privacy_heading {
  margin-bottom: 3rem;
}

.privacy_box {
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #ccc;
  margin-bottom: 2rem;
}

.privacy_title02 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.privacy_txt {
  font-size: 1rem;
}

@media screen and (min-width: 1200px) {
  .privacy_box {
    padding-bottom: 2rem;
    margin-bottom: 3rem;
  }
}

/************************************
** 固定ページ
************************************/
.page_title span {
  display: block;
  line-height: 1;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}


.page_title {
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.06em;

  margin-bottom: 3rem;

}

@media screen and (min-width: 1200px) {
  .page_title span {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }

  .page_title {
    margin-bottom: 4rem;
  }
}

/*----------------------------
br
----------------------------*/
.br_sp5 {
  display: block;
}

.br_pc5 {
  display: none;
}

@media screen and (min-width: 569px) {
  .br_sp5 {
    display: none;
  }

  .br_pc5 {
    display: block;
  }
}

.br_sp7 {
  display: block !important;
}

.br_pc7 {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .br_sp7 {
    display: none !important;
  }

  .br_pc7 {
    display: block !important;
  }
}

.br_sp9 {
  display: block;
}

.br_pc9 {
  display: none;
}

@media screen and (min-width: 992px) {
  .br_sp9 {
    display: none;
  }

  .br_pc9 {
    display: block;
  }
}

.br_sp12 {
  display: block;
}

.br_pc12 {
  display: none;
}

@media screen and (min-width: 1200px) {
  .br_sp12 {
    display: none;
  }

  .br_pc12 {
    display: block;
  }
}
