@charset "UTF-8";
@media screen and (max-width: 834px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 834px) {
  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 1350px) {
  .is-tb {
    display: none;
  }
}

@media screen and (min-width: 1350px) {
  .is-tb-n {
    display: none;
  }
}

@font-face {
  font-family: "tokyo";
  src: url("../img/TokyoDreams-Regular.woff") format("woff");
}
html {
  font-size: 16px;
}
@media screen and (max-width: 834px) {
  html {
    font-size: 13px;
  }
}

body {
  color: #545454;
  font-size: 1rem;
  line-height: 1.8em;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", serif;
}

#front-page {
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/bg.png);
}

header {
  z-index: 100;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0);
}
header .logo {
  background-color: #957d57;
  width: 280px;
  padding: 30px 40px;
  z-index: 100;
}
@media screen and (max-width: 834px) {
  header .logo {
    width: 150px;
    padding: 10px;
  }
}
header .logo a img {
  width: 100%;
}
header ul li {
  display: inline;
  margin: 0 10px;
  color: #957d57;
}
header ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
header ul li a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #cab56e;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
header ul li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
header .taiken-link {
  background-color: #957d57;
  color: #fff;
  padding: 20px 40px;
  text-align: center;
  z-index: 100;
  position: fixed;
  top: 10px;
  right: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header .taiken-link:hover {
  background-color: #cab56e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 834px) {
  header .taiken-link {
    display: none;
  }
}
header .menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  width: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 150;
  background-color: #957d57;
}
header .menu-btn span,
header .menu-btn span:before,
header .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
header .menu-btn span:before {
  bottom: 8px;
}
header .menu-btn span:after {
  top: 8px;
}
header #menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
header #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header #menu-btn-check {
  display: none;
}
header .menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  background-color: #957d57;
}
header .menu-content ul {
  padding: 100px 10px 0;
}
header .menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
header .menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
header .menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
header .menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 110;
  background-color: #957d57;
  -webkit-transition: all 0.5s;
  transition: all 0.5s; /*アニメーション設定*/
}
header #menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}

.hero {
  width: 85%;
  margin: -20px auto 0 auto;
}
@media screen and (min-width: 834px) {
  .hero {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 834px) {
  .hero {
    width: 90%;
    margin-bottom: 30px;
  }
}
.hero img {
  width: 100%;
  z-index: -100;
}

.sns-icon {
  font-size: 180%;
  position: fixed;
  top: 14%;
  right: 2%;
  z-index: 100;
}
.sns-icon a {
  display: block;
  margin: 20px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #957d57;
}
.sns-icon a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #cab56e;
}

.footer-sns-icon {
  font-size: 200%;
  margin-bottom: 20px;
}
.footer-sns-icon a {
  margin: 0 20px;
}

/*メニューをページ下部に固定*/
#sp-fixed-menu {
  position: fixed;
  width: 100%;
  bottom: 0px;
  font-size: 15px;
  opacity: 0.9;
  z-index: 200;
}

/*ボタンを調整*/
#sp-fixed-menu a {
  text-align: center;
  display: block;
  width: 100%;
  padding: 20px;
  background: #cab56e;
}

footer {
  background-color: #ebe3d6;
  text-align: center;
  line-height: 2rem;
  font-size: 0.9rem;
  padding: 20px 0;
}
@media screen and (max-width: 834px) {
  footer {
    margin-bottom: 60px;
  }
}
footer .footer-logo {
  max-width: 200px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  footer .footer-logo {
    width: 150px;
  }
}
footer .footer-logo img {
  width: 100%;
}
footer ul {
  margin-bottom: 20px;
}
footer ul li {
  display: inline;
  margin: 0 10px;
  font-size: 90%;
}
@media screen and (max-width: 834px) {
  footer ul li {
    display: block;
  }
}
footer .privacy {
  font-size: 90%;
  display: block;
  margin-bottom: 20px;
}

section {
  margin-bottom: 100px;
  padding: 0 10px;
}

@media screen and (min-width: 834px) {
  #front-page .concept {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 834px) {
  #front-page .concept {
    display: block;
  }
}
@media screen and (min-width: 834px) {
  #front-page .concept .concept-img {
    width: 800px;
    text-align: center;
  }
}
@media screen and (max-width: 834px) {
  #front-page .concept .concept-img {
    margin: 40px auto 0;
    width: 70%;
  }
}
#front-page .concept .concept-img img {
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 834px) {
  #front-page .concept .concept-img img {
    width: 60%;
  }
}
#front-page .concept .news {
  background-color: #ebe3d6;
  text-align: center;
  padding: 5% 6%;
}
@media screen and (min-width: 834px) {
  #front-page .concept .news {
    margin-top: -130px;
    margin-bottom: 60px;
    width: 80%;
  }
}
@media screen and (max-width: 834px) {
  #front-page .concept .news {
    background-color: rgba(149, 125, 87, 0.2);
  }
}
#front-page .concept .news .news-title {
  font-size: 1.5rem;
}
@media screen and (max-width: 834px) {
  #front-page .concept .news .news-title {
    font-size: 1.2rem;
  }
}
#front-page .concept .news ul {
  margin: 20px auto;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (max-width: 834px) {
  #front-page .concept .news ul {
    font-size: 100%;
  }
}
#front-page .concept .news ul li {
  padding: 0 2%;
  margin: 5% auto;
  padding-bottom: 2%;
  border-bottom: 1px solid #545454;
  letter-spacing: 0;
}
#front-page .concept .news ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 834px) {
  #front-page .concept .news ul li a {
    display: block;
  }
}
#front-page .concept .news ul li a .date {
  margin-right: 5%;
}
#front-page .concept .more {
  border-bottom: 1px solid #545454;
}
#front-page .en-copy {
  color: #cab56e;
}
@media screen and (min-width: 834px) {
  #front-page .en-copy {
    font-size: 2rem;
    margin-left: -30%;
    margin-bottom: 50px;
    line-height: 1.9em;
  }
}
@media screen and (max-width: 834px) {
  #front-page .en-copy {
    font-size: 0.6rem;
    width: 70%;
    margin: 0 auto;
    line-height: 1rem;
  }
}
#front-page .ja-copy {
  font-size: 1.2rem;
  line-height: 2em;
}
@media screen and (max-width: 834px) {
  #front-page .ja-copy {
    text-align: center;
    font-size: 1rem;
    margin: 20px auto;
  }
}
#front-page h2 {
  font-family: "tokyo", serif;
}
#front-page .about {
  background-color: #ebe3d6;
  padding: 70px 0;
  margin-bottom: 0;
}
@media screen and (min-width: 834px) {
  #front-page .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
}
@media screen and (min-width: 834px) {
  #front-page .about .about-left {
    width: 40%;
  }
}
#front-page .about .about-left h2 {
  margin-bottom: 60px;
  font-size: 3.5rem;
  position: relative;
  color: #cab56e;
}
#front-page .about .about-left h2:before {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100px;
  height: 3px;
  content: "";
  border-radius: 3px;
  background: #cab56e;
}
@media screen and (max-width: 834px) {
  #front-page .about .about-left p {
    margin-bottom: 20px;
  }
}
#front-page .about .about-left .about-ja-title {
  font-size: 1.4rem;
  margin: 40px 0;
}
@media screen and (max-width: 834px) {
  #front-page .about .sp-padding {
    width: 90%;
    margin: 0 auto;
  }
}
#front-page .about .utile-link {
  margin-top: 40px;
}
@media screen and (max-width: 834px) {
  #front-page .about .utile-link {
    text-align: center;
  }
}
#front-page .about .about-img {
  width: 50%;
}
#front-page .about .about-img img {
  width: 100%;
}
@media screen and (max-width: 834px) {
  #front-page .about .about-img {
    width: 100%;
  }
}
#front-page .utile-link a {
  background-color: #957d57;
  color: #fff;
  padding: 15px 30px;
  display: inline-block;
  font-size: 0.9rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#front-page .utile-link a:hover {
  background-color: #cab56e;
  color: #545454;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#front-page .utile-link a i {
  margin-left: 10px;
}
#front-page .name {
  height: 80vh;
  margin-top: 0;
  background-image: url(../img/name-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 10% 0;
  width: 100%;
}
@media screen and (max-width: 834px) {
  #front-page .name {
    background-image: url(../img/sp-name.jpg);
    text-align: center;
    padding: 33% 0;
  }
}
@media screen and (min-width: 834px) {
  #front-page .name .name-text {
    margin-left: 60%;
  }
}
@media screen and (max-width: 834px) {
  #front-page .name .name-text {
    width: 100%;
  }
}
#front-page .name .name-text .name-title {
  font-size: 1.5rem;
  color: #957d57;
}
@media screen and (min-width: 834px) {
  #front-page .name .name-text .name-title {
    margin-left: -20px;
  }
}
#front-page .name .name-text p {
  margin-top: 20px;
}
#front-page .taiken {
  text-align: center;
}
#front-page .taiken h2 {
  width: 400px;
  margin: 0 auto;
}
#front-page .taiken h2 img {
  width: 100%;
}
@media screen and (max-width: 834px) {
  #front-page .taiken h2 {
    width: 80%;
  }
}
#front-page .taiken .taiken-ja-title {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #957d57;
}
#front-page .taiken p {
  margin-top: 30px;
}
#front-page .taiken .utile-link {
  margin-top: 30px;
}
#front-page .taiken .taiken-line {
  margin-top: 30px;
  font-size: 1.5rem;
  border-bottom: 3px solid #cab56e;
  display: inline-block;
}
@media screen and (min-width: 834px) {
  #front-page .access {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 834px) {
  #front-page .access .access-left {
    width: 30%;
  }
}
@media screen and (max-width: 834px) {
  #front-page .access .access-left {
    margin-bottom: 20px;
    width: 80%;
    margin: 60px auto;
  }
}
#front-page .access h2 {
  margin-bottom: 60px;
  font-size: 3.5rem;
  position: relative;
  color: #cab56e;
}
#front-page .access h2:before {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100px;
  height: 3px;
  content: "";
  border-radius: 3px;
  background: #cab56e;
}
#front-page .access .access-ja-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
#front-page .access p {
  margin: 20px 0;
}
#front-page .access .open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#front-page .access .open .open-title {
  margin-right: 10px;
}
@media screen and (min-width: 834px) {
  #front-page .access .access-right {
    width: 35%;
  }
}
#front-page .access .access-right img {
  width: 100%;
}

.page-header {
  background-image: url(../img/page-top.jpg);
  background-position: center center;
  background-size: cover;
  height: 300px;
  color: #ebe3d6;
  font-size: 500%;
  font-family: "tokyo", serif;
  position: relative;
}
@media screen and (max-width: 834px) {
  .page-header {
    height: 230px;
    margin-top: -100px;
  }
}
.page-header h2 {
  position: absolute;
}
@media screen and (min-width: 834px) {
  .page-header h2 {
    left: 10%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 834px) {
  .page-header h2 {
    text-align: center;
    top: 60%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-shadow: 0px 0px 7px #545454;
  }
}

.gold {
  color: #cab56e;
}

#page-about .about-bdmk {
  max-width: 1100px;
}
@media screen and (min-width: 834px) {
  #page-about .about-bdmk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 100px auto 0;
  }
}
@media screen and (max-width: 834px) {
  #page-about .about-bdmk {
    padding: 0 20px;
    margin: 40px auto;
  }
}
#page-about .about-bdmk h3 {
  font-size: 130%;
}
@media screen and (max-width: 834px) {
  #page-about .about-bdmk h3 {
    text-align: center;
    margin-bottom: 20px;
  }
}
#page-about .about-bdmk .gold {
  margin: 40px 0;
  font-size: 120%;
}
@media screen and (max-width: 834px) {
  #page-about .about-bdmk figure {
    width: 70%;
    margin: 0 auto;
  }
  #page-about .about-bdmk figure img {
    width: 100%;
  }
}
#page-about .osusume {
  margin: 100px auto;
  text-align: center;
}
#page-about .osusume .gold {
  font-size: 120%;
}
#page-about .osusume ul {
  display: grid;
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
#page-about .osusume ul li figure {
  width: 100%;
}
#page-about .osusume ul li figure img {
  width: 100%;
}
#page-about .advantages {
  background-color: #ebe3d6;
  padding: 150px 0 150px 10%;
  position: relative;
}
#page-about .advantages figure {
  margin-bottom: 0;
}
#page-about .advantages .shadow1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: auto;
}
#page-about .advantages .shadow1 img {
  width: 100%;
}
@media screen and (max-width: 834px) {
  #page-about .advantages .shadow1 {
    width: 50%;
  }
}
#page-about .advantages .shadow2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25%;
  height: auto;
}
#page-about .advantages .shadow2 img {
  width: 100%;
}
@media screen and (max-width: 834px) {
  #page-about .advantages .shadow2 {
    width: 50%;
  }
}
@media screen and (min-width: 834px) {
  #page-about .advantages {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 834px) {
  #page-about .advantages {
    padding: 40px 15px;
  }
}
@media screen and (min-width: 834px) {
  #page-about .advantages .advantages-left {
    width: 40%;
  }
}
@media screen and (max-width: 834px) {
  #page-about .advantages .advantages-left {
    width: 100%;
  }
}
#page-about .advantages .advantages-left .advantages-title {
  color: #fff;
  font-family: "tokyo", serif;
}
@media screen and (min-width: 834px) {
  #page-about .advantages .advantages-left .advantages-title {
    margin: -30px 0 0 -120px;
    font-size: 500%;
  }
}
@media screen and (max-width: 834px) {
  #page-about .advantages .advantages-left .advantages-title {
    font-size: 300%;
    margin-bottom: 30px;
  }
}
#page-about .advantages .advantages-left h3 {
  font-size: 130%;
}
@media screen and (min-width: 834px) {
  #page-about .advantages .advantages-left h3 {
    margin: 100px 0 30px 0;
  }
}
@media screen and (max-width: 834px) {
  #page-about .advantages .advantages-left h3 {
    margin: 20px 0;
    text-align: center;
  }
}
#page-about .advantages .advantages-left .advantages-item {
  margin-bottom: 35px;
}
#page-about .advantages .advantages-left .advantages-item figure {
  width: 80%;
  margin: 0 auto;
}
#page-about .advantages .advantages-left .advantages-item figure img {
  width: 100%;
}
#page-about .advantages .advantages-left .advantages-item h4 {
  border-bottom: 1px solid #545454;
  padding-bottom: 10px;
}
#page-about .advantages .advantages-left .advantages-item h4 span {
  color: #cab56e;
  font-size: 250%;
  margin-right: 20px;
}
#page-about .advantages .advantages-left .advantages-item p {
  padding-top: 10px;
}
#page-about .advantages .advantages-right {
  width: 50%;
}
#page-about .advantages .advantages-right img {
  width: 100%;
  height: auto;
}
#page-about .slider {
  text-align: center;
}
#page-about .slider h3 {
  margin-bottom: 50px;
  font-family: "tokyo", serif;
  font-size: 400%;
  line-height: 1;
  color: #cab56e;
}
#page-about .voice {
  margin-bottom: 150px;
}
#page-about .voice .voice-title {
  margin: 20px auto;
  width: 600px;
}
#page-about .voice .voice-title img {
  width: 100%;
}
@media screen and (max-width: 834px) {
  #page-about .voice .voice-title {
    width: 90%;
  }
  #page-about .voice .voice-title img {
    width: 100%;
  }
}
#page-about .voice h3 {
  color: #cab56e;
  font-size: 130%;
  margin: 30px auto;
  text-align: center;
}
#page-about .voice .voice-items {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
#page-about .voice .voice-items .voice-item {
  border: 2px solid #cab56e;
  padding: 20px;
  border-radius: 10px;
}
#page-about .profile {
  position: relative;
}
#page-about .profile h3 {
  z-index: 1;
  position: absolute;
  width: 20%;
}
#page-about .profile h3 img {
  width: 100%;
}
@media screen and (min-width: 834px) {
  #page-about .profile h3 {
    right: 8%;
    top: -60px;
  }
}
@media screen and (max-width: 834px) {
  #page-about .profile h3 {
    font-size: 450%;
    width: 50%;
    top: -28px;
  }
}
#page-about .profile .prof-sp {
  position: absolute;
  top: 0px;
  right: 0;
  width: 200px;
}
#page-about .profile .prof {
  background-color: #ebe3d6;
  max-width: 1100px;
  margin: 100px auto;
}
@media screen and (min-width: 834px) {
  #page-about .profile .prof {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
}
@media screen and (max-width: 834px) {
  #page-about .profile .prof {
    padding-top: 60px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 834px) {
  #page-about .profile .prof-text {
    width: 65%;
    padding: 40px 70px;
  }
}
@media screen and (max-width: 834px) {
  #page-about .profile .prof-text {
    padding: 40px 20px;
  }
}
#page-about .profile .prof-text p {
  font-size: 85%;
}
#page-about .profile .prof-text .name-area {
  margin-bottom: 20px;
}
@media screen and (min-width: 834px) {
  #page-about .profile .prof-text .name-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 834px) {
  #page-about .profile .prof-text .name-area {
    margin-bottom: 10px;
  }
}
#page-about .profile .prof-text .name {
  font-size: 130%;
}
@media screen and (max-width: 834px) {
  #page-about .profile .prof-text .name {
    margin-bottom: 10px;
  }
}
#page-about .profile .prof-text ul li {
  list-style-type: disc;
  list-style-position: inside;
  font-size: 80%;
}
#page-about .profile figure {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 500px;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  #page-about .profile figure {
    top: -100px;
  }
}
#page-about .profile figure img {
  width: 100%;
}

.reserve {
  background-image: url(../img/reserve.png);
  background-position: center;
  background-size: cover;
  padding: 60px 10px;
  max-width: 1100px;
  margin: 100px auto;
  text-align: center;
}
.reserve h3 {
  font-family: "tokyo", serif;
  font-size: 400%;
  line-height: 1;
  color: #957d57;
}
.reserve p {
  margin: 40px auto;
}
.reserve .utile-link a {
  background-color: #957d57;
  color: #fff;
  padding: 15px 30px;
  display: inline-block;
  font-size: 0.9rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.reserve .utile-link a:hover {
  background-color: #cab56e;
  color: #545454;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.reserve .utile-link a i {
  margin-left: 10px;
}

#page-menu .menu-concept {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 834px) {
  #page-menu .menu-concept {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
#page-menu .menu-concept .gold {
  font-size: 130%;
  color: #957d57;
  margin-bottom: 50px;
}
@media screen and (max-width: 834px) {
  #page-menu .menu-concept .gold {
    margin-bottom: 25px;
  }
}
#page-menu .menu-concept p span {
  border-bottom: 1px solid #cab56e;
  margin: 0 5px;
}
#page-menu .menu-items {
  padding: 0 10px;
  max-width: 1100px;
  margin: 60px auto;
}
#page-menu .menu-items .cate {
  background: transparent -webkit-gradient(linear, left top, right top, from(#957d57), to(rgba(221, 199, 166, 0))) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #957d57 0%, rgba(221, 199, 166, 0) 100%) 0% 0% no-repeat padding-box;
  padding: 10px;
  color: #fff;
  font-size: 130%;
  margin-top: 80px;
  margin-bottom: 40px;
}
#page-menu .menu-items .menu-item {
  background-color: #ebe3d6;
  margin-bottom: 40px;
}
@media screen and (min-width: 834px) {
  #page-menu .menu-items .menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    gap: 50px;
  }
}
@media screen and (max-width: 834px) {
  #page-menu .menu-items .menu-item {
    padding: 15px 10px;
  }
}
@media screen and (min-width: 834px) {
  #page-menu .menu-items .menu-item .menu-img {
    width: 40%;
  }
}
#page-menu .menu-items .menu-item .menu-img img {
  width: 100%;
}
@media screen and (min-width: 834px) {
  #page-menu .menu-items .menu-item .menu-text {
    width: 60%;
  }
}
@media screen and (max-width: 834px) {
  #page-menu .menu-items .menu-item .menu-text {
    margin-top: 20px;
  }
}
#page-menu .menu-items .menu-item .menu-text .menu-title {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#page-menu .menu-items .menu-item .menu-text .menu-title figure {
  width: 40px;
  margin-right: 20px;
}
#page-menu .menu-items .menu-item .menu-text .menu-title figure img {
  width: 100%;
}
#page-menu .menu-items .menu-item .menu-text .menu-title h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 130%;
  color: #957d57;
}
@media screen and (max-width: 834px) {
  #page-menu .menu-items .menu-item .menu-text .menu-title h3 {
    font-size: 120%;
  }
}
#page-menu .menu-items .menu-item .menu-text .menu-title .menu-price {
  font-size: 120%;
}
#page-menu .menu-items .menu-item .menu-text .menu-title .menu-price span {
  font-size: 80%;
}
#page-menu .menu-items .menu-item .menu-text .border {
  width: 100%;
  display: block;
  border-bottom: 1px solid #333333;
  margin: 20px 0;
}
#page-menu .menu-items .menu-item .menu-text p {
  padding: 0 20px;
}
#page-menu .menu-items .menu-item .menu-text .line {
  font-size: 120%;
  border-bottom: 2px solid #cab56e;
  display: inline-block;
  margin-top: 15px;
  margin-left: 20px;
}
#page-menu .menu-items .menu-item .menu-text .down {
  margin-left: 20px;
  margin-top: 15px;
}
#page-menu .menu-items .menu-item .menu-text .down span {
  font-size: 160%;
}
#page-menu .menu-items .menu-item .menu-text .pre-down {
  margin-left: 80px;
}
#page-menu .menu-items .menu-item .menu-text .utile-link {
  margin: 15px 10px 0px 20px;
  display: inline-block;
}
#page-menu .menu-items .menu-item .menu-text .utile-link a {
  background-color: #957d57;
  color: #fff;
  padding: 10px 30px;
  display: inline-block;
  font-size: 0.9rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#page-menu .menu-items .menu-item .menu-text .utile-link a:hover {
  background-color: #cab56e;
  color: #333;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#page-menu .menu-items .menu-item .menu-text .utile-link a i {
  margin-left: 10px;
}
#page-menu .menu-items .menu-item .menu-text .last {
  margin-top: 5px;
}

#page-flow .flow-concept {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 834px) {
  #page-flow .flow-concept {
    margin-top: 40px;
  }
}
#page-flow .flow-concept .gold {
  font-size: 130%;
  color: #957d57;
  margin-bottom: 50px;
  margin-bottom: 25px;
}
#page-flow .flow-item {
  padding: 0 15px;
  max-width: 1100px;
  margin: 100px auto;
}
@media screen and (min-width: 834px) {
  #page-flow .flow-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10%;
  }
}
@media screen and (min-width: 834px) {
  #page-flow .flow-item .flow-text {
    width: 70%;
  }
}
#page-flow .flow-item .flow-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
#page-flow .flow-item .flow-title .diamond {
  width: 80px;
  height: 80px;
  background: #cab56e;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
}
#page-flow .flow-item .flow-title .text_box {
  width: 80px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  text-align: center;
  position: absolute;
  top: 10px;
  color: #fff;
}
#page-flow .flow-item .flow-title .text_box .bold {
  font-size: 210%;
}
#page-flow .flow-item .flow-title h3 {
  margin-left: 30px;
  font-size: 130%;
}
#page-flow .flow-item .utile-link {
  text-align: right;
  margin-top: 30px;
}
#page-flow .flow-item .utile-link a {
  background-color: #957d57;
  color: #fff;
  padding: 15px 30px;
  display: inline-block;
  font-size: 0.9rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#page-flow .flow-item .utile-link a:hover {
  background-color: #cab56e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#page-flow .flow-item .utile-link a i {
  margin-left: 10px;
}
#page-flow .flow-item figure {
  margin: 15px auto;
}
@media screen and (min-width: 834px) {
  #page-flow .flow-item figure {
    width: 40%;
  }
}
@media screen and (max-width: 834px) {
  #page-flow .flow-item figure {
    width: 85%;
  }
}
#page-flow .flow-item figure img {
  width: 100%;
}

#page-faq {
  /*ベース*/
}
#page-faq .faq-concept {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 834px) {
  #page-faq .faq-concept {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
#page-faq .faq-concept .gold {
  font-size: 130%;
  color: #957d57;
  margin-bottom: 50px;
}
@media screen and (max-width: 834px) {
  #page-faq .faq-concept .gold {
    margin-bottom: 25px;
  }
}
#page-faq .accordion dl {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  margin: 20px auto;
}
#page-faq .accordion dt {
  position: relative;
  padding: 1em;
  background-color: #ebe3d6;
  border: 0.5px solid #545454;
  font-weight: normal;
}
#page-faq .accordion dt::before {
  content: "\f078";
  width: 6px;
  height: 6px;
  font-family: fontAwesome;
  position: absolute;
  top: 25%;
  right: 20px;
}
#page-faq .accordion dt.open::before {
  content: "\f077";
}
#page-faq .accordion dd {
  display: none;
  padding: 1em;
  background-color: #fff;
  border: 0.5px solid #545454;
  border-top: 0px;
}
#page-faq .accordion dd a {
  color: #957d57;
  border-bottom: 1px solid #cab56e;
}
#page-faq .Label,
#page-faq .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 900px;
  margin: 0 auto;
}
#page-faq .content {
  /*本文*/
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
#page-faq .toggle:checked + .Label + .content {
  /*開閉時*/
  height: auto;
  padding: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 0.5px solid #545454;
  border-top: 0px;
}
#page-faq .toggle:checked + .Label::before {
  -webkit-transform: rotate(-45deg) !important;
          transform: rotate(-45deg) !important;
}

#page-contact .contact {
  background-color: #ebe3d6;
  margin-bottom: 0;
}
@media screen and (min-width: 834px) {
  #page-contact .contact {
    padding: 100px;
  }
}
@media screen and (max-width: 834px) {
  #page-contact .contact {
    padding: 30px 10px;
  }
}
#page-contact .contact h3 {
  text-align: center;
  font-size: 140%;
}
#page-contact .contact .contact-area {
  margin: 50px auto;
  max-width: 1100px;
}
@media screen and (min-width: 834px) {
  #page-contact .contact .contact-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 70px;
  }
}
@media screen and (min-width: 834px) {
  #page-contact .contact .contact-area .contact-text {
    width: 50%;
  }
}
#page-contact .contact .contact-area .contact-text h4 {
  position: relative;
  padding: 0 65px;
  text-align: center;
  font-size: 120%;
  margin-bottom: 10px;
}
#page-contact .contact .contact-area .contact-text h4:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #545454;
}
#page-contact .contact .contact-area .contact-text h4 span {
  position: relative;
  padding: 0 1em;
  background: #ebe3d6;
}
#page-contact .contact .contact-area .contact-text .mt {
  margin-top: 70px;
}
@media screen and (max-width: 834px) {
  #page-contact .contact .contact-area .contact-text .mt {
    margin-top: 20px;
  }
}
#page-contact .contact .contact-area .contact-text p {
  margin-bottom: 20px;
}
#page-contact .contact .contact-area .contact-text p span {
  font-size: 120%;
}
@media screen and (min-width: 834px) {
  #page-contact .contact .contact-area form {
    width: 50%;
    font-size: 100%;
  }
}
#page-contact .contact .contact-area form input,
#page-contact .contact .contact-area form textarea {
  background-color: #fff;
  border: 0.5px solid #957d57;
  padding: 5px;
}
#page-contact .contact .contact-area form input[name=your-name],
#page-contact .contact .contact-area form input[name=your-email] {
  width: 100%;
}
#page-contact .contact .contact-area form textarea {
  resize: none;
  width: 100%;
  height: 200px;
}
#page-contact .contact .contact-area form p {
  margin-bottom: 10px;
}
#page-contact .contact .contact-area form p a {
  border-bottom: 1px solid #545454;
}
#page-contact .contact .contact-area form .wpcf7-list-item {
  display: block;
}
#page-contact .contact .contact-area form .wpcf7-submit {
  padding: 5px 70px;
  margin-top: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#page-contact .contact .contact-area form .wpcf7-submit:hover {
  background-color: #957d57;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.news-concept {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 834px) {
  .news-concept {
    margin: 40px auto;
  }
}
.news-concept .gold {
  text-align: center;
  font-size: 130%;
  color: #957d57;
  margin-bottom: 50px;
}

.news-items {
  /* ここからがニュース記事のCSS */
}
.news-items a {
  text-decoration: none;
  color: #333;
}
.news-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-items .news_list {
  max-width: 1000px;
  margin: 0 auto;
}
.news-items .news_list_item {
  padding: 25px 0;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (max-width: 834px) {
  .news-items .news_list_item {
    padding: 15px 10px;
  }
}
.news-items .news_list_item:first-child {
  border-top: 1px solid #e6e6e6;
}
.news-items .news_list_item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 30px;
}
.news-items .news_list_date {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-items .news_item {
  background: #957d57;
  border-radius: 14px;
  width: auto;
  padding: 5px 10px;
  color: #fff;
  /* 親要素の文字サイズを基準 */
  text-align: center;
  margin-left: 20px;
  font-size: 80%;
}
.news-items .news-the-title {
  font-size: 110%;
}
@media screen and (max-width: 834px) {
  .news-items .news-the-title {
    margin-top: 10px;
  }
}
.news-items .arrow {
  width: 25px;
  height: 1px;
  background: #707070;
  position: absolute;
  top: 50%;
  right: 0;
}
.news-items .arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #707070;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 0px;
  bottom: 2px;
}
@media screen and (max-width: 1024px) {
  .news-items .news_list_item a {
    display: block;
  }
}
@media screen and (max-width: 769px) {
  .news-items .news_list_item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .news-items .arrow {
    display: none;
  }
  .news-items .news_list_item a {
    padding-right: 0;
  }
}

#single-container main {
  max-width: 900px;
  margin: 90px auto;
  padding: 0 10px;
}
#single-container main article {
  margin: 80px auto;
}
#single-container main article .article-title {
  font-size: 190%;
  color: #957d57; /*文字色*/
  padding: 0.5em 0; /*上下の余白*/
  border-top: solid 3px #cab56e; /*上線*/
  border-bottom: solid 3px #cab56e; /*下線*/
}
#single-container main article .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#single-container main article .meta li {
  margin: 20px 20px 0 0;
}
#single-container main article .text {
  margin: 50px auto;
}
#single-container main article figure {
  margin: 0 auto;
  max-width: 90%;
}
#single-container main article figure img {
  max-width: 100%;
}
#single-container main article h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 170%;
  padding: 0.5em; /*文字周りの余白*/
  color: #494949; /*文字色*/
  background: #ebe3d6; /*背景色*/
  border-left: solid 5px #957d57; /*左線（実線 太さ 色）*/
}
#single-container main article h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 140%;
  border-bottom: solid 3px #cab56e;
  position: relative;
  padding-bottom: 10px;
}
#single-container main article h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #957d57;
  bottom: -3px;
  width: 20%;
}
#single-container main article p {
  margin: 10px 0;
}

.post-link {
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
.post-link a {
  position: relative;
}
.post-link a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #cab56e;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.post-link a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*-------------------------------------------
  SP
  -------------------------------------------*/
@media screen and (max-width: 767px) {
  .post-link {
    width: 100%;
  }
}