@charset "UTF-8";
/* balthazar-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Balthazar";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/balthazar-v18-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lato-v25-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* zen-kaku-gothic-new-regular - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/zen-kaku-gothic-new-v18-japanese-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* zen-kaku-gothic-new-500 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/zen-kaku-gothic-new-v18-japanese-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* zen-kaku-gothic-new-700 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/zen-kaku-gothic-new-v18-japanese-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  background-color: #fff;
  background-color: #CDC0AB;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

header {
  z-index: 15;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

input[type=submit] {
  border-radius: 0;
}

/*===============================================
# 電話発信
=================================================*/
/*===============================================
# common
=================================================*/
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #CDC0AB;
  position: relative;
  font-family: "Lato", sans-serif;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #1F1F1F;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0;
}

img {
  width: 100%;
}

.container {
  max-width: 375px;
  margin: 0 auto;
  box-sizing: content-box;
}

.container2 {
  padding: 0 20px;
  text-align: center;
}

.btn {
  display: block;
  width: 280px;
  margin: 0 auto;
  background: #fff;
  border: solid 1px #1F1F1F;
  padding: 15px;
  position: relative;
  text-align: center;
}
.btn:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.btn::before {
  position: absolute;
  content: "";
  background: #1F1F1F;
  width: 20px;
  height: 1px;
  top: 50%;
  right: -1px;
}
.btn:nth-child(2) {
  margin-top: 10px;
}
.btn-color {
  background: #A9B625;
  border: solid 1px #A9B625;
  position: relative;
}
.btn-color::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 20px;
  height: 1px;
  top: 50%;
  right: -1px;
}
.btn-text {
  color: #1F1F1F;
  font-size: 16px;
  font-weight: bold;
}
.btn-text-white {
  color: #fff;
}
.btn-text-line {
  padding-left: 34px;
  position: relative;
}
.btn-text-line::before {
  position: absolute;
  content: "";
  background: url(../images/cmn/line.png) no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.title {
  font-size: 24px;
  line-height: 2;
  font-weight: bold;
  color: #1F1F1F;
  margin-bottom: 20px;
}
.title-en {
  position: relative;
  margin: 0 auto 30px;
}
.title-en::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #A9B625;
  left: 50%;
  transform: translate(-50%);
  bottom: -12px;
}

.heading {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
}
.heading-white {
  color: #fff;
}

.text {
  color: #1F1F1F;
  font-size: 14px;
}
.text-white {
  color: #fff;
}
.text-bold {
  font-weight: bold;
}

/*===============================================
# フェードイン
=================================================*/
/*フェードインアニメ*/
/*左から右にフェードイン*/
.left-to-right {
  opacity: 0.1;
  transform: translateX(-20px);
  transition: all 0.9s;
}

.left-to-right.scroll-in {
  opacity: 1;
  transform: translate(0);
}

/*下から上にフェードイン*/
.down-to-top {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s;
}

.down-to-top.scroll-in {
  opacity: 1;
  transform: translateY(0);
}

/*===============================================
# header
=================================================*/
.header {
  background: #1F1F1F;
  margin: 70px auto 0;
  z-index: 9999;
  max-width: 375px;
  width: 100%;
  height: 62px;
  position: relative;
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 767px) {
  .header {
    margin-top: 0;
  }
}
.header-inner {
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
}
.header-logo {
  width: 84px;
  padding-top: 10px;
}
@media screen and (max-width: 1279px) {
  .header-logo-wrap {
    background: #2F4562;
    padding-top: 50px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.header-nav {
  display: none;
  position: absolute;
  max-width: 375px;
  width: 100%;
  top: 62px;
  left: 50%;
  transform: translate(-50%);
  padding-top: 50px;
  height: 666px;
  overflow: scroll;
  background: #1F1F1F;
  z-index: 10000;
}
.header-nav-item {
  text-align: center;
  padding-bottom: 25px;
}
.header-nav-item-link {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.hamburger-menu {
  display: block;
  width: 62px;
  height: 62px;
  position: absolute;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  z-index: 11;
  cursor: pointer;
  right: 0;
  top: 0;
  background: transparent;
  border-radius: 0 5px 0 0;
}
.hamburger-menu-bar {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .hamburger-menu-bar {
    width: 20px;
  }
}
.hamburger-menu-bar:first-child {
  top: 40%;
}
.hamburger-menu-bar:nth-child(2) {
  top: 50%;
}
.hamburger-menu-bar:last-child {
  top: 60%;
}
.hamburger-menu-open .hamburger-menu-bar {
  top: 50%;
  background: #fff;
}
.hamburger-menu-open .hamburger-menu-bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu-open .hamburger-menu-bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu-open .hamburger-menu-bar:nth-child(2) {
  display: none;
}

.follow {
  position: fixed;
  z-index: 2;
  right: 0;
  top: 0;
  width: 533px;
}
@media screen and (max-width: 1499px) {
  .follow {
    width: 440px;
  }
}
@media screen and (max-width: 1279px) {
  .follow {
    display: none;
  }
}
.follow .line {
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1499px) {
  .follow .line {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.follow .line .heading {
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-bottom: 10px;
}
.follow .line .btn {
  width: 400px;
  margin-top: 20px;
}
.follow-sub {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.follow .reservation {
  background: #A9B625;
  text-align: center;
  padding-top: 43px;
  padding-bottom: 43px;
}
@media screen and (max-width: 1499px) {
  .follow .reservation {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.follow .reservation-en {
  width: 120px;
}
.follow .reservation .heading {
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  color: #fff;
  margin-top: -10px;
  margin-bottom: 35px;
  position: relative;
}
.follow .reservation .heading::before {
  position: absolute;
  content: "";
  width: 84px;
  height: 1px;
  background: #fff;
  left: 50%;
  transform: translate(-50%);
  bottom: -10px;
}
.follow .reservation .btn {
  width: 400px;
  background: #A9B625;
  border: solid 1px #fff;
}
.follow .reservation .btn::before {
  background: #fff;
}
.follow .reservation .btn-text {
  color: #fff;
  position: relative;
  padding-left: 34px;
}
.follow .reservation .btn-text::before {
  position: absolute;
  content: "";
  background: url(../images/cmn/reserved.png) no-repeat;
  background-size: 100%;
  width: 30px;
  height: 30px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.follow .reservation .btn-text-app::before {
  position: absolute;
  content: "";
  background: url(../images/cmn/app.png) no-repeat;
  background-size: 100%;
  width: 26px;
  height: 25px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.follow-top {
  margin-top: 15px;
  margin-bottom: 5px;
  color: #fff;
}
.follow-notes {
  width: 400px;
  margin: 0 auto;
  text-align: right;
  color: #fff;
  font-size: 12px;
}

.bg-logo {
  position: fixed;
  left: 20%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
}
@media screen and (max-width: 1279px) {
  .bg-logo {
    display: none;
  }
}

/*===============================================
# mv
=================================================*/
.mv-inner {
  max-width: 100%;
  height: 666px;
  position: relative;
  z-index: 0;
}
.mv-movie {
  width: 100%;
}
.mv-scroll {
  position: absolute;
  width: 30px;
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.mv-scroll::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #fff;
  right: 50%;
  bottom: -66px;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  animation: scroll 2s infinite;
}
@media screen and (max-width: 767px) {
  .mv-scroll::after {
    height: 80px;
    bottom: -90px;
  }
}
.mv-scroll::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #A4A29D;
  right: 50%;
  bottom: -66px;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .mv-scroll::before {
    height: 80px;
    bottom: -90px;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*===============================================
# footer
=================================================*/
.footer {
  background: #fff;
  width: 375px;
  margin: 0 auto;
  padding-top: 40px;
}
.footer-container {
  padding-left: 40px;
  padding-right: 40px;
}
.footer-logo {
  width: 200px;
  display: block;
  margin: 0 auto;
}
.footer-copyright {
  text-align: center;
  font-size: 10px;
  color: #fff;
  background: #448E53;
  width: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  padding-bottom: 10px;
  padding-top: 10px;
  letter-spacing: 0.05em;
}
.footer-table {
  margin-top: 40px;
}
.footer-table-text {
  border-bottom: solid 1px #CDC0AB;
  font-size: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer-table-link {
  color: #1F1F1F;
}
.footer-table-link-underline {
  text-decoration: underline;
}
.footer-nav {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}
.footer-nav-link {
  color: #1F1F1F;
  font-size: 12px;
  line-height: 2.1;
  letter-spacing: 0.05em;
}
.footer-nav-link-color {
  color: #A9B625;
  text-decoration: underline;
}

/*===============================================
# post
=================================================*/
.news {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 70px 0;
  }
}
.news-items {
  width: 100%;
}
.news-item {
  margin-bottom: 4px;
  background: #222;
  border-radius: 8px;
  display: block;
  padding: 28.5px 40px;
}
@media screen and (max-width: 767px) {
  .news-item {
    padding: 20px 25px;
  }
}
.news-inner {
  display: flex;
}
.news-time {
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  font-family: "Barlow", sans-serif;
}
@media screen and (max-width: 767px) {
  .news-time {
    font-size: 13px;
  }
}
.news-title {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.04em;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .news-title {
    margin-left: 20px;
    font-size: 14px;
  }
}
.news-btn {
  margin-left: auto;
}
@media screen and (max-width: 550px) {
  .news-btn {
    margin-top: 40px;
  }
}

.post-closed {
  display: block;
  width: 100%;
  text-align: center;
  padding: 40px 0;
  font-size: 16px;
}
.post-closed-blog {
  max-width: 840px;
  padding-bottom: 80px;
}

/*===============================================
# トップページ
=================================================*/
.h-main {
  position: relative;
}

.h-concept {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 70px;
}
.h-concept-en {
  width: 156px;
}
.h-concept-movies {
  margin-top: 30px;
  border: solid 1px #1F1F1F;
  padding-bottom: 10px;
}
.h-concept-movies-title {
  background: #1F1F1F;
  color: #fff;
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.h-concept-movies-title::before {
  position: absolute;
  content: "";
  background: url(../images/top/arrow_d.png) no-repeat;
  background-size: 100%;
  width: 14px;
  height: 9px;
  right: 80px;
  top: 52%;
  transform: translateY(-50%);
}
.h-concept-movie {
  margin-bottom: 10px;
}
.h-concept-review {
  margin-top: 40px;
}
.h-concept-items {
  margin-top: 50px;
}

.h-recruit {
  background: #EAE2D5;
  padding-bottom: 40px;
  position: relative;
}
.h-recruit-img {
  position: relative;
  top: -30px;
}

.line {
  background: url(../images/top/cta_recruit.png) no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 60px 0;
}
.line-text {
  margin-top: 20px;
}

.h-everyone {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 55px;
}
.h-everyone-en {
  width: 70px;
}
.h-everyone-img {
  margin-top: 30px;
  position: relative;
}
.h-everyone-text {
  margin-top: 12px;
}
.h-everyone-list {
  margin: 12px auto 0;
}
.h-everyone-list-item {
  background: #1F1F1F;
  color: #fff;
  padding-left: 33px;
  padding-top: 2px;
  padding-bottom: 2px;
  margin-bottom: 6px;
  line-height: 1.4;
  position: relative;
  text-align: left;
}
.h-everyone-list-item::before {
  position: absolute;
  content: "";
  background: url(../images/cmn/check.png) no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  left: 10px;
  top: 3.5px;
}

.caption {
  margin-top: -14px;
}
.caption-text {
  background: #1F1F1F;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 0 8px 1px;
  letter-spacing: 0.1em;
}

.h-recommend {
  background: #EAE2D5;
  padding-top: 33px;
  padding-bottom: 40px;
}
.h-recommend-en {
  width: 217px;
}
.h-recommend-item {
  background: #fff;
  border: solid 1px #1F1F1F;
  margin-bottom: 10px;
  padding: 30px 17px 30px 20px;
  position: relative;
}
.h-recommend-item::before {
  position: absolute;
  content: "";
  background: url(../images/top/corner.png) no-repeat;
  background-size: 100%;
  width: 20px;
  height: 20px;
  right: -1.5px;
  bottom: -1.5px;
}
.h-recommend-item::after {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.h-recommend-item-01::after {
  background: url(../images/top/recommend_01.png) no-repeat;
  background-size: 100%;
  width: 129px;
  height: 129px;
}
.h-recommend-item-02::after {
  background: url(../images/top/recommend_02.png) no-repeat;
  background-size: 100%;
}
.h-recommend-item-03::after {
  background: url(../images/top/recommend_02.png) no-repeat;
  background-size: 100%;
}
.h-recommend-item-04::after {
  background: url(../images/top/recommend_02.png) no-repeat;
  background-size: 100%;
}
.h-recommend-item-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.h-recommend-list {
  position: relative;
  z-index: 2;
  text-align: left;
}
.h-recommend-list-item {
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.4;
}
.h-recommend-list-item::before {
  position: absolute;
  content: "";
  background: #1F1F1F;
  width: 8px;
  height: 1px;
  left: 0;
  top: 10px;
}
.h-recommend-list-item:nth-last-child(1) {
  margin-bottom: 0;
}
.h-recommend-list-item-bg {
  background: #CBD37C;
}
.h-recommend-text {
  font-weight: bold;
  margin-top: 20px;
}

.h-service {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}
.h-service-item {
  margin-bottom: 30px;
}
.h-service-item:nth-last-child(1) {
  margin-bottom: 0;
}
.h-service-item-title {
  font-weight: bold;
  margin-bottom: 20px;
}
.h-service-item-text {
  text-align: left;
}
.h-service-img {
  margin-bottom: 16px;
}
.h-service-list {
  background: #EAE2D5;
  text-align: left;
  padding: 12px 20px;
  margin: 12px 0;
}
.h-service-list-item {
  padding-left: 20px;
  border-bottom: dashed 1px #1F1F1F;
  position: relative;
  margin-bottom: 4px;
  padding-bottom: 4px;
}
.h-service-list-item::before {
  position: absolute;
  content: "";
  background: url(../images/cmn/check.png) no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  left: 0;
  top: 4px;
}

.h-job {
  background: #EAE2D5;
  padding-top: 40px;
}
.h-job-title {
  background: #1F1F1F;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 1.5px;
  margin-bottom: 20px;
  position: relative;
}
.h-job-title::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 8px solid #1F1F1F;
  border-bottom: 0;
  bottom: -8px;
  left: 50%;
  transform: translate(-50%);
}
.h-job-item {
  width: 297px;
  background: #fff;
  margin: 0 auto 6px;
  text-align: left;
  padding-left: 32px;
  padding-right: 8px;
  position: relative;
}
.h-job-item::before {
  position: absolute;
  content: "";
  background: url(../images/cmn/check.png) no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  left: 10px;
  top: 4px;
}
.h-job-table {
  margin-top: 20px;
}
.h-job-table-title {
  background: #1F1F1F;
  color: #fff;
  padding: 5.5px;
  letter-spacing: 0.1em;
}
.h-job-table-item {
  display: flex;
  text-align: left;
  background: #fff;
}
.h-job-table-item:nth-child(odd) {
  background: #F8F7F5;
}
.h-job-table-item-title {
  width: 94px;
  border-right: solid 1px #D9D9D9;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 12px;
}
.h-job-table-item-text {
  width: calc(100% - 94px);
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 12px;
}
.h-job-table-item-text-small {
  font-size: 12px;
}
.h-job-notes {
  text-align: left;
  font-size: 12px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.h-staff {
  background: #fff;
  padding-top: 42px;
  padding-bottom: 40px;
}
.h-staff-container {
  padding: 0 40px;
  text-align: center;
}
.h-staff-en {
  width: 130px;
}
.h-staff-item {
  position: relative;
  margin-top: 72px;
}
.h-staff-item-01 {
  margin-right: -40px;
}
.h-staff-item-01::before {
  position: absolute;
  content: "";
  background: #A9B625;
  width: 40px;
  height: 200px;
  bottom: 100px;
  left: -40px;
}
.h-staff-item-02 {
  margin-left: -40px;
}
.h-staff-item-02::before {
  position: absolute;
  content: "";
  background: #A9B625;
  width: 40px;
  height: 200px;
  bottom: 100px;
  right: -40px;
}
.h-staff-01 {
  width: 107px;
  position: absolute;
  top: -44px;
  left: -24px;
}
.h-staff-02 {
  width: 107px;
  position: absolute;
  top: -44px;
  left: 24px;
}
.h-staff-inner {
  text-align: left;
}
.h-staff-year {
  font-size: 8px;
  margin-top: 20px;
}
.h-staff-name {
  font-family: "Balthazar", serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}
.h-staff-text {
  font-size: 12px;
  line-height: 1.66;
}
.h-staff-text-bold {
  font-weight: bold;
}

.h-message {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}
.h-message-text {
  text-align: left;
  margin-top: 20px;
  line-height: 1.71;
}
.h-message-highlight {
  background: #1F1F1F;
  color: #fff;
  font-weight: bold;
  margin-top: 12px;
  line-height: 2;
}

.h-sns {
  border-top: solid 1px #CDC0AB;
  border-bottom: solid 1px #CDC0AB;
  margin-top: 40px;
  padding-top: 20px;
  padding-bottom: 10px;
}
.h-sns-text {
  font-size: 12px;
  font-weight: bold;
}
.h-sns-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-sns-instagram {
  display: block;
  width: 35px;
  margin-right: 4px;
}
.h-sns-tiktok {
  display: block;
  width: 128px;
}

.h-line .line {
  color: #fff;
  text-align: center;
}
.h-line .line .heading {
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-bottom: 10px;
}
.h-line .follow-sub {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.h-line .follow-text {
  margin-bottom: 20px;
}

.h-reservation {
  background: #fff;
  padding-top: 40px;
}
.h-reservation-wrap {
  border: solid 1px #A9B625;
  padding: 40px 28px;
}
.h-reservation-en {
  width: 80px;
}
.h-reservation-inner {
  margin-top: 20px;
}
.h-reservation-inner .btn {
  background: #A9B625;
  border: solid 1px #fff;
}
.h-reservation-inner .btn::before {
  background: #fff;
}
.h-reservation-inner .btn-text {
  color: #fff;
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  letter-spacing: 0.06em;
}
.h-reservation-inner .btn-text::before {
  position: absolute;
  content: "";
  background: url(../images/cmn/reserved.png) no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.h-reservation-inner .btn-text-tel::before {
  background: url(../images/cmn/telephone.png) no-repeat;
  background-size: 100%;
  width: 20px;
  height: 20px;
}

/*===============================================
# 下層ページ共通
=================================================*/
.comingsoon-inner {
  background: #2F4562;
  clip-path: polygon(0 158px, 100% 0, 100% calc(100% - 0px), 0 100%);
  padding-top: 158px;
  margin-top: -158px;
  padding-bottom: 180px;
  border-radius: 0 0 20px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .comingsoon-inner {
    clip-path: polygon(0 80px, 100% 0, 100% calc(100% - 0px), 0 100%);
    padding-top: 80px;
    margin-top: -80px;
    padding-bottom: 100px;
  }
}
.comingsoon-text {
  text-align: center;
}

/*===============================================
# 下層ページ　共通
=================================================*/
.sub-bg {
  background: #EAE2D5;
  border-radius: 5px 5px 0 0;
}

/*===============================================
# contact
=================================================*/
.contact-top-inner {
  border: solid 2px #fff;
  max-width: 452px;
  width: 100%;
  margin: 32px auto;
  padding: 25px;
  text-align: center;
}
.contact-top-text {
  font-size: 15px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-top-text {
    font-size: 14px;
  }
}
.contact-top-tel {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  font-size: 48px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #fff;
  margin-top: 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-top-tel {
    font-size: 26px;
    padding-left: 40px;
  }
}
.contact-top-tel::before {
  position: absolute;
  content: "";
  background: url(../images/cmn/icon_tel_w.png) no-repeat;
  background-size: 100%;
  width: 40px;
  height: 40px;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact-top-tel::before {
    width: 30px;
    height: 30px;
  }
}
.contact-text {
  color: #2F4562;
  text-align: center;
  font-size: 15px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .contact-text {
    text-align: left;
    font-size: 14px;
    margin-bottom: 40px;
  }
}
.contact-body {
  max-width: 564px;
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0;
}
.contact-item {
  padding-bottom: 25px;
  text-align: left;
}
.contact-title p {
  font-size: 15px;
  text-align: left;
  margin-bottom: 17px;
  font-weight: 500;
}
.contact-title-top {
  margin-top: 5px;
}
.contact-title-left {
  text-align: left;
  border-top: solid 1px #888;
  padding-top: 24px;
}
.contact-note {
  width: 100%;
  height: 200px;
  overflow: scroll;
  margin: 20px auto 40px;
  padding: 16px 13px;
  background: #fff;
  border: 1px solid #888888;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .contact-note {
    padding: 20px 20px;
  }
}
.contact-note p {
  margin-bottom: 1em;
  letter-spacing: 0;
  font-size: 14px;
  color: #333333;
}
.contact-note::-webkit-scrollbar {
  width: 5px;
  height: 0;
  background: #fff;
}
.contact-note::-webkit-scrollbar-thumb {
  background: #2F4562;
  height: 3px;
  width: 3px;
  border: solid 2px #fff;
}
.contact-check p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto;
  font-size: 14px;
  color: #2F4562;
}
@media screen and (max-width: 767px) {
  .contact-check p {
    margin: 8px auto;
    font-size: 14px;
  }
}
.contact-check .wpcf7-list-item {
  margin-bottom: -5px;
  margin-right: 10px;
}
.contact-submit {
  max-width: 200px;
  width: 100%;
  margin: 55px auto 40px;
  position: relative;
}
.contact-submit:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .contact-submit {
    margin-top: 50px;
  }
}
.contact-protect {
  text-align: center;
  font-size: 10px;
  margin-top: 30px;
  line-height: 1.3;
  color: #2F4562;
}
@media screen and (max-width: 767px) {
  .contact-protect {
    text-align: left;
  }
}
.contact-protect a {
  color: #2F4562;
}

.haveto {
  font-family: "Noto Serif JP", serif;
  white-space: nowrap;
  color: #fff;
  font-weight: 400;
  background: #35466B;
  font-size: 16px;
  padding: 4px 15.5px;
  margin-left: 20px;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .haveto {
    font-size: 12px;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  border: 0;
  border: solid 1px #888888;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel] {
  padding: 17px 8px;
}

textarea {
  min-height: 200px;
  resize: vertical;
  padding: 17px 8px;
}

.wpcf7-select {
  border: 1px solid #CFCFCF;
  width: 100%;
  padding: 15px 8px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .wpcf7-select {
    font-size: 14px;
  }
}

.wpcf7-list-item {
  display: block;
  letter-spacing: 0;
  font-weight: 400;
  margin-left: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .wpcf7-list-item {
    font-size: 12px;
  }
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 19px;
  height: 19px;
  border: 1px solid #000;
  background: #FFF;
  margin-left: 0;
  position: relative;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 6px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.wpcf7 input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
  opacity: 1;
  display: block;
  width: 100%;
  background: #fff;
  border: solid 1px #2F4562;
  border-radius: 25px;
  text-align: center;
  position: relative;
  padding: 12.5px;
  margin: 0 auto;
  color: #2F4562;
  font-size: 14px;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .wpcf7 input[type=submit] {
    margin-top: 50px;
    font-size: 16px;
  }
}

.wpcf7-list-item.first {
  padding-bottom: 0;
  padding-top: 0;
  clip-path: none;
  background: #fff;
}
.wpcf7-list-item.first label {
  display: flex;
  align-items: center;
}
.wpcf7-list-item.first label .wpcf7-list-item-label {
  display: inline-block;
  padding-left: 10px;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  padding-left: 10px;
}

/*===============================================
# breadcrumb
=================================================*/
.breadcrumb {
  position: absolute;
  margin: 0 auto;
  max-width: 1090px;
  box-sizing: content-box;
  color: #fff;
  top: 20px;
  font-weight: 400;
}

.breadcrumb span {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb span {
    font-size: 12px;
  }
}

/*===============================================
# archive
=================================================*/
.primary {
  width: 71%;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .primary {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .primary {
    width: 100%;
    margin-bottom: 7rem;
  }
}

.entry-item {
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #D9D9D9;
}
@media screen and (max-width: 550px) {
  .entry-item {
    display: block;
    margin-bottom: 40px;
  }
}
.entry-item-img {
  max-width: 135px;
  width: 100%;
  border-radius: 8px;
  height: 94px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 550px) {
  .entry-item-img {
    max-width: none;
    padding-top: 70%;
  }
}
.entry-item-img img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.entry-item-body {
  width: calc(100% - 135px);
  margin-left: 26px;
}
@media screen and (max-width: 550px) {
  .entry-item-body {
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
  }
}
.entry-item-wrap {
  display: flex;
  align-items: center;
}
.entry-item-published {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #000;
  margin-bottom: 10px;
  font-family: "Barlow", sans-serif;
  padding-top: 5px;
}
@media screen and (max-width: 550px) {
  .entry-item-published {
    margin-bottom: 0;
  }
}
.entry-item-title {
  font-size: 14px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}
.entry-closed {
  text-align: center;
}

/*===============================================
# pagination
=================================================*/
.pagination {
  margin-top: 5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 3rem;
  }
}

.page-numbers {
  color: #fff;
  background: #989898;
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
  margin: 0;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  background: #2845A3;
  color: #fff;
}

/*===============================================
# sidebar
=================================================*/
.widget {
  margin-bottom: 45px;
}

.widget-title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-bottom: 8px;
  border-bottom: 1px solid #2845A3;
  margin-bottom: 20px;
  color: #2845A3;
  font-family: "Barlow", sans-serif;
}
@media screen and (max-width: 767px) {
  .widget-title {
    font-size: 18px;
  }
}

.secondary {
  width: 26%;
  margin-left: 125px;
}
@media screen and (max-width: 767px) {
  .secondary {
    width: 100%;
    margin-left: 0;
  }
}

.secondary-category-list a {
  color: #222;
  padding-left: 30px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 4px;
  display: inline-block;
}
.secondary-category-list a::before {
  position: absolute;
  content: "";
  background: url(../images/post/arrow.png) center center/contain no-repeat;
  width: 7px;
  height: 13px;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.secondary-category-item {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}

.secondary-child {
  margin-left: 15px;
}

.secondary-archive-list a {
  color: #222;
  padding-left: 30px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 4px;
  display: inline-block;
}
.secondary-archive-list a::before {
  position: absolute;
  content: "";
  background: url(../images/post/arrow.png) center center/contain no-repeat;
  width: 7px;
  height: 13px;
  top: 55%;
  left: 15px;
  transform: translateY(-50%);
}

.secondary-post-list {
  margin-bottom: -10px;
  font-weight: bold;
}

.secondary-post-item {
  display: block;
  padding: 10px 3px;
  border-bottom: #d9d9d9 solid 1px;
}
.secondary-post-item p {
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0;
  font-weight: bold;
}
.secondary-post-item time {
  color: #000;
  font-size: 10px;
  line-height: 2.4;
  letter-spacing: 0;
  margin-top: -6px;
  display: block;
}

/*===============================================
# single
=================================================*/
.single-main {
  font-family: "Noto Sans JP", sans-serif;
}
.single-title {
  font-size: 31px;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 767px) {
  .single-title {
    font-size: 18px;
  }
}
.single-top {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .single-top {
    margin-bottom: 25px;
  }
}
.single-top-published {
  font-size: 14px;
  color: #000;
  letter-spacing: 0.05em;
  font-family: "Barlow", sans-serif;
}
.single-img {
  text-align: center;
  width: 100%;
  height: 70%;
  margin-bottom: 5rem;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .single-img {
    margin-bottom: 3.5rem;
  }
}
.single-img img {
  width: 100%;
  height: 100%;
}
.single-content h1 {
  font-size: 31px;
  color: #fff;
  padding: 13px 16px;
  background: #222;
  margin-bottom: 35px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .single-content h1 {
    font-size: 20px;
    margin: 20px 0;
  }
}
.single-content h2 {
  font-size: 31px;
  color: #fff;
  padding: 13px 16px;
  background: #222;
  margin-bottom: 35px;
  margin-top: 35px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .single-content h2 {
    margin: 20px 0;
    font-size: 19px;
  }
}
.single-content h3 {
  font-size: 31px;
  color: #fff;
  padding: 13px 16px;
  background: #222;
  margin-bottom: 35px;
  margin-top: 35px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .single-content h3 {
    margin: 20px 0;
    font-size: 18px;
  }
}
.single-content h4 {
  font-size: 18px;
  color: #000;
  border-left: solid 4px #56BEC1;
  padding-left: 16px;
  margin-bottom: 35px;
  margin-top: 35px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .single-content h4 {
    margin: 20px 0;
    font-size: 17px;
  }
}
.single-content h5 {
  font-size: 18px;
  color: #222;
  margin-bottom: 35px;
  margin-top: 35px;
  font-weight: 400;
  padding-left: 22px;
  position: relative;
}
.single-content h5::before {
  position: absolute;
  content: "";
  background: url(../images/post/dot.png) no-repeat;
  background-size: 100%;
  left: 0;
  width: 10px;
  height: 10px;
  top: 9px;
}
@media screen and (max-width: 767px) {
  .single-content h5 {
    margin: 20px 0;
    font-size: 16px;
  }
}
.single-content h6 {
  font-size: 16px;
  color: #222;
  margin-bottom: 21px;
  margin-top: 21px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .single-content h6 {
    margin: 20px 0;
    font-size: 15px;
  }
}
.single-content p {
  line-height: 1.87;
  font-size: 16px;
  color: #222;
}
@media screen and (max-width: 767px) {
  .single-content p {
    font-size: 14px;
  }
}
.single-content table {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .single-content table {
    margin-top: 40px;
  }
}
.single-content table td {
  vertical-align: middle;
}
.single-content table td:nth-child(2) {
  padding-left: 59px;
}
@media screen and (max-width: 767px) {
  .single-content table td:nth-child(2) {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .single-content table td {
    width: 100% !important;
    display: block;
  }
}
.single-content .box {
  border: solid #333 2px;
  border-radius: 10px;
  padding: 30px 23px;
  margin-top: 35px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .single-content .box {
    padding: 18px 15px;
    margin: 20px 0;
  }
}
.single-btn {
  margin: 100px auto 0;
  display: block;
  background: #2845A3;
  width: 258px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 21.5px 20px;
}
.single-btn::before {
  position: absolute;
  content: "";
  background: url(../images/cmn/arrow-single.png) no-repeat;
  background-size: 100%;
  width: 12px;
  height: 6px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.single-btn-text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

/*===============================================
# 404
=================================================*/
.entry-404 {
  background: #EAE2D5;
  border-radius: 5px 5px 0 0;
  padding-top: 140px;
  padding-bottom: 80px;
}
.entry-404-head {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.entry-404-lead {
  font-size: 16px;
  margin-bottom: 20px;
}
.entry-404 .btn {
  margin-top: 20px;
}

/*===============================================
# coming soon
=================================================*/
.comingsoon {
  padding-top: 140px;
  padding-bottom: 80px;
}
.comingsoon-head {
  font-size: 32px;
  margin-bottom: 20px;
}
.comingsoon .btn {
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */