@charset "UTF-8";
/* ====================================================
reset style
==================================================== */
html {
  overflow-y: scroll;
  font-size: 10px;
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset, img {
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a, a:link, a:hover, a:focus {
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: inherit;
  font-weight: inherit;
}
li {
  list-style: none;
}
caption, th {
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}
q:before, q:after {
  content: '';
}
abbr, acronym {
  border: 0;
  font-variant: normal;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
/*to enable resizing for IE*/
input, textarea, select {
  *font-size: 100%;
}
/*because legend doesn't inherit in IE */
legend {
  color: #000;
}
del, ins {
  text-decoration: none;
}
/* ====================================================
Color
==================================================== */
/*img pass*/
/* ====================================================
Font
==================================================== */
/* ====================================================
Position & transform
==================================================== */
/* ====================================================
Sizing
==================================================== */
/* ====================================================
Media Quary
==================================================== */
/* ====================================================
Misc
==================================================== */
/* ====================================================
px→vwの計算

.foo {
  width: vw(40px);
}

.bar {
  width: vw(40px, 768px);
}

.baz {
  width: vw(50%);
}
==================================================== */
/* ====================================================
// 隣接要素のmargin
==================================================== */
/* ====================================================
// formスタイルリセット
==================================================== */
/* ====================================================
// flexセット
==================================================== */
/* ====================================================
// 疑似クラス
==================================================== */
/* ====================================================
// hover時の透過度
==================================================== */
/* ====================================================
// グラデーション
==================================================== */
/* ====================================================
object-fit
.photo__image {
  &.-image1 {
    @include object-fit(cover);
  }
  
  &.-image2 {
    @include object-fit(contain, top center);
  }
}
==================================================== */
/* ====================================================
画像などを縦横比を維持したままレスポンシブ対応
*画像やGoogle Map、YouTubeの埋め込みなどを縦横比を維持したままレスポンシブ対応
.photo {
  // 画像を16:9にトリミングして縦横比を常に保つ
  @include aspect-ratio(16, 9);

  & > .image {
    @include object-fit(cover);
  }
}
==================================================== */
/* マウスオーバー時 */
@media screen and (max-width: 834px) {
  .l-rsp-break {
    width: 100% !important;
  }
}
/* ====================================================
Base style & container
==================================================== */
body {
  color: black;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}
.inner {
  margin: 0 auto;
  max-width: 1500px;
  width: 90%;
}
@media screen and (max-width: 834px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .lg {
    display: none;
  }
}
/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
  content: "";
  display: table;
}
/* ====================================================
Header
==================================================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding-left: calc(180px + 2.08%);
  padding-right: calc(90px + 2.08%);
  z-index: 100;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
@media screen and (max-width: 834px) {
  #main-header {
    padding-right: 70px;
    padding-left: 100px;
    height: 90px;
    position: absolute;
  }
}
#main-header .header-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  height: 90px;
}
@media screen and (max-width: 834px) {
  #main-header .header-inner {
    height: 60px;
  }
}
#main-header .info {
  font-size: 12px;
  font-size: 1.2rem;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
#main-header.on .info {
  opacity: 0;
}
#main-header .tel {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  width: 208px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 44px;
  background: #fff;
  border-radius: 24px;
}
#main-header .tel:hover {
background: #f5f0e9;
}
@media screen and (max-width: 834px) {
  #main-header .tel {
    /*
    margin-left: auto;
    justify-self: flex-end;
    width: 160px;
    font-size: 20px;
    font-size: 2rem;
*/
    display: none;
  }
}
#main-header .tel i {
  margin-right: 5px;
  color: #8c7859;
  font-size: 16px;
  font-size: 1.6rem;
}
#main-header .logo {
  position: fixed;
  top: 0;
  left: 0;
  padding: 52.5px 0;
  width: 180px;
  height: 180px;
  background: #fff;
  text-align: center;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
@media screen and (max-width: 834px) {
  #main-header .logo {
    padding: 30px 10px;
    width: 110px;
    height: 110px;
  }
}
#main-header .btn-block a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  width: 48.66%;
  height: 110px;
}
@media screen and (max-width: 1200px) {
  #main-header .btn-block a {
    height: 100px;
  }
}
@media screen and (max-width: 640px) {
  #main-header .btn-block a {
    width: 100%;
  }
}
#main-header .btn-block .c-btn {
  max-width: 510px;
  border-radius: 10px;
  background: #fff;
}
#main-header .btn-block .c-btn i {
  margin-right: 5px;
}
#main-header .btn-block .c-btn__tel .small {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 640px) {
  #main-header .btn-block .c-btn__tel .small {
    margin-bottom: 0;
  }
}
#main-header .btn-block .c-btn__tel .btn-tel {
  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;
  font-size: 42px;
  font-size: 4.2rem;
  line-height: .8;
}
@media screen and (max-width: 1200px) {
  #main-header .btn-block .c-btn__tel .btn-tel {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 1024px) {
  #main-header .btn-block .c-btn__tel .btn-tel {
    font-size: max(30px, 3.5vw);
  }
}
@media screen and (max-width: 640px) {
  #main-header .btn-block .c-btn__tel .btn-tel {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1;
  }
}
#main-header .btn-block .c-btn__tel .btn-tel i {
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 1200px) {
  #main-header .btn-block .c-btn__tel .btn-tel i {
    font-size: max(20px, 2.3vw);
  }
}
@media screen and (max-width: 640px) {
  #main-header .btn-block .c-btn__tel .btn-tel i {
    font-size: 20px;
    font-size: 2rem;
  }
}
#main-header .btn-block .c-btn__reserve {
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 1200px) {
  #main-header .btn-block .c-btn__reserve {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 1024px) {
  #main-header .btn-block .c-btn__reserve {
    font-size: max(16px, 1.8vw);
  }
}
@media screen and (max-width: 640px) {
  #main-header .btn-block .c-btn__reserve {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 835px) {
  #main-header.on {
    padding-left: 140px;
  }
  #main-header.on .logo {
    padding: 36px 15px;
    width: 130px;
    height: 130px;
  }
}
.navGlobal {
  background: #f5f0e9;
  z-index: 101;
  height: 100vh;
  overflow-y: scroll;
}
.navGlobal-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.navGlobal__img {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  width: 33.33%;
}
@media screen and (max-width: 834px) {
  .navGlobal__img {
    display: none;
  }
}
.navGlobal__cont {
  padding: 165px 6.66% 140px;
  width: 66.66%;
}
@media screen and (max-width: 1680px) {
  .navGlobal__cont {
    padding: 9.16vw 6.66% 7.77vw;
  }
}
@media screen and (max-width: 1500px) {
  .navGlobal__cont {
    padding: 9.16vw 3% 7.77vw;
  }
}
@media screen and (max-width: 834px) {
  .navGlobal__cont {
    padding: 9.16vw 5%;
    width: 100%;
  }
}
.navGlobalIn {
  margin: 20px 0 55px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .navGlobalIn {
    margin: 40px 0 35px;
  }
}
.navGlobalIn li {
  margin: 35px 0;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 834px) {
  .navGlobalIn li {
    margin: 20px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.mobile-icon {
  -webkit-transition: background .5s;
  -o-transition: background .5s;
  transition: background .5s;
  position: fixed;
  right: 0;
  top: 0;
  width: 90px;
  height: 90px;
  z-index: 102;
  background: #8c7859;
}
@media screen and (max-width: 834px) {
  .mobile-icon {
    width: 60px;
    height: 60px;
  }
}
.mobile-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 42.5%;
  height: 1px;
  background-color: #fff;
  font-size: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.mobile-icon span:before, .mobile-icon span:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  content: '';
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 3px;
}
.mobile-icon span:before {
  top: -10px;
}
.mobile-icon span:after {
  bottom: -10px;
}
.mobile-icon.mobile-close span {
  background-color: transparent;
}
.mobile-icon.mobile-close span:before, .mobile-icon.mobile-close span:after {
  width: 100%;
  background: #fff;
}
.mobile-icon.mobile-close span:before {
  -webkit-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  top: 2px;
}
.mobile-icon.mobile-close span:after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
  bottom: -2px;
}
.js-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.js-nav.active {
  opacity: 1;
  display: block;
}
/* ====================================================
Footer
==================================================== */
#main-footer .footer-inner {
  padding: 60px 5% 45px;
  background: #072338;
}
@media screen and (max-width: 640px) {
  #main-footer .footer-inner {
    padding: 12px 3%;
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }
  #main-footer .footer-inner.active {
    opacity: 1;
  }
}
#main-footer .btn-block {
  margin: 0 auto;
  max-width: 1530px;
}
#main-footer .btn-block a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  width: 48.66%;
  height: 152px;
}
@media screen and (max-width: 1024px) {
  #main-footer .btn-block a {
    height: max(90px, 15.35vw);
  }
}
@media screen and (max-width: 640px) {
  #main-footer .btn-block a {
    width: 49%;
    margin-bottom: 0;
    height: max(57px, 15.35vw);
  }
}
#main-footer .btn-block .c-btn {
  border-radius: 10px;
}
#main-footer .btn-block .c-btn i {
  margin-right: 5px;
}
#main-footer .btn-block .c-btn__tel {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}
#main-footer .btn-block .c-btn__tel .small {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 640px) {
  #main-footer .btn-block .c-btn__tel .small {
    margin-bottom: 0;
    font-size: 10px;
    font-size: 1.0rem;
  }
}
#main-footer .btn-block .c-btn__tel .tel {
  font-size: 42px;
  font-size: 4.2rem;
}
@media screen and (max-width: 1024px) {
  #main-footer .btn-block .c-btn__tel .tel {
    font-size: 4.24vw;
  }
}
@media screen and (max-width: 640px) {
  #main-footer .btn-block .c-btn__tel .tel {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: .9;
  }
}
#main-footer .btn-block .c-btn__tel .tel i {
  font-size: 34px;
  font-size: 3.4rem;
}
@media screen and (max-width: 1024px) {
  #main-footer .btn-block .c-btn__tel .tel i {
    font-size: 3.43vw;
  }
}
@media screen and (max-width: 640px) {
  #main-footer .btn-block .c-btn__tel .tel i {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#main-footer .btn-block .c-btn__reserve {
  font-size: 28px;
  font-size: 2.8rem;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  #main-footer .btn-block .c-btn__reserve {
    font-size: 2.82vw;
  }
}
@media screen and (max-width: 640px) {
  #main-footer .btn-block .c-btn__reserve {
    font-size: 12px;
    font-size: 1.2rem;
  }
  #main-footer .btn-block .c-btn__reserve i {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
#main-footer .copyright {
  padding: 30px 15px;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  #main-footer .copyright {
    padding: 0 0 100px;
  }
  #main-footer .copyright {
    font-size: 10px;
    font-size: 1rem;
  }
}
/* ====================================================
MODULE
==================================================== */
/*パンくずMODULE*/
/*見出しMODULE*/
.c-title01 {
  font-weight: 700;
}
.c-title01 .en {
  color: #8c7859;
  font-family: "Barlow", sans-serif;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
  line-height: .8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .c-title01 .en {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.c-title01 .jp {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 834px) {
  .c-title01 .jp {
    margin-top: 10px;
  }
}
.c-title02 {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.875;
  font-weight: 700;
  letter-spacing: .08em;
}
@media screen and (max-width: 834px) {
  .c-title02 {
    letter-spacing: .06em;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 640px) {
  .c-title02 {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
.c-title02__lh-s {
  line-height: 1.3;
  letter-spacing: .08em;
}
.c-title02 .no {
  display: block;
  margin: 20px 0 5px;
  opacity: .2;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .c-title02 .no {
    margin: 15px 0 0;
  }
}
.c-title03 {
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .c-title03 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .c-title03 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.c-title03__bdr {
  position: relative;
  padding-left: 115px;
}
.c-title03__bdr:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100px;
  height: 1px;
}
@media screen and (max-width: 834px) {
  .c-title03__bdr {
    padding-left: 68px;
  }
  .c-title03__bdr:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 60px;
    height: 1px;
  }
}
.c-title03__bdr:before {
  top: 12px;
  left: 0;
  background: #ddd5ca;
}
.c-title04 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .08em;
}
@media screen and (max-width: 834px) {
  .c-title04 {
    letter-spacing: .06em;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .c-title04 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.c-title04 .mark {
  display: inline-block;
  position: relative;
}
.c-title04 .mark:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 40;
  height: 32;
}
@media screen and (max-width: 1680px) {
  .c-title04 .mark {
    padding-left: .9em;
  }
}
.c-title04 .mark:before {
  content: "“";
  left: -.4em;
  top: 0;
  color: #ddd5ca;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: 700;
  font-size: 90px;
  font-size: 9rem;
  line-height: .7;
}
@media screen and (max-width: 1680px) {
  .c-title04 .mark:before {
    left: -.1em;
  }
}
@media screen and (max-width: 834px) {
  .c-title04 .mark:before {
    font-size: 80px;
    font-size: 8rem;
  }
}
@media screen and (max-width: 640px) {
  .c-title04 .mark:before {
    font-size: 60px;
    font-size: 6rem;
  }
}
.c-title04 .mark span {
  position: relative;
  z-index: 1;
}
.c-title05 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .c-title05 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.c-title05 .mark {
  display: inline-block;
  position: relative;
}
.c-title05 .mark:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 40;
  height: 32;
}
.c-title05 .mark:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 40;
  height: 32;
}
.c-title05 .mark:before, .c-title05 .mark:after {
  top: 0;
  color: #ddd5ca;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: 700;
  font-size: 90px;
  font-size: 9rem;
  line-height: .7;
}
@media screen and (max-width: 834px) {
  .c-title05 .mark:before, .c-title05 .mark:after {
    font-size: 80px;
    font-size: 8rem;
  }
}
@media screen and (max-width: 640px) {
  .c-title05 .mark:before, .c-title05 .mark:after {
    font-size: 60px;
    font-size: 6rem;
  }
}
.c-title05 .mark:before {
  content: "“";
  left: -.4em;
}
.c-title05 .mark:after {
  content: "”";
  right: -.4em;
  z-index: 0;
}
.c-title05 .mark span {
  position: relative;
  z-index: 1;
}
.c-title06 {
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.22;
}
@media screen and (max-width: 834px) {
  .c-title06 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.c-title06 span {
  display: inline-block;
  line-height: 1.8;
  background: #5e4c30;
}
@media screen and (max-width: 640px) {
  .c-title06 span {
    padding: 0 4px;
  }
}
.c-title07 {
  position: relative;
  padding-left: 18px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.c-title07:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 6px;
  height: 100%;
}
.c-title07:before {
  position: absolute;
  top: 0;
  left: 0;
  background: #8c7859;
  border-radius: 4px;
}
/*テキストMODULE*/
.c-fc__bw {
  color: #8c7859;
}
.c-fc__wh {
  color: #fff;
}
.c-ft__en {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}
.c-fw__md {
  font-weight: 500;
}
.c-fw__bd {
  font-weight: 700;
}
.c-al__c {
  text-align: center;
}
.c-al__r {
  text-align: right;
}
.c-al__l {
  text-align: left;
}
.c-txt01 {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.73;
}
.c-txt02 {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.85;
}
.c-txt03 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.66;
}
.c-txt04 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.7;
}
@media screen and (min-width: 835px) {
  .c-txt04 {
    line-height: 2.133;
  }
}
/*リンクMODULE*/
/*ボタンMODULE*/
.c-btn {
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 835px) {
  .c-btn {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .c-btn:hover {
    opacity: .7;
  }
}
@media screen and (min-width: 835px) {
  .c-hover {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .c-hover:hover {
    opacity: .7;
  }
}
.btn-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.btn-block .c-btn {
  width: 49%;
}
@media screen and (max-width: 834px) {
  .btn-block .c-btn {
    width: 100%;
  }
}
.btn-block .address {
  margin-bottom: 20px;
  width: 100%;
}
.img-of {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  font-family: "object-fit: cover; object-position: center", sans-serif;
}
/*リストMODULE*/
/*ボックスMODULE*/
.c-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-block__item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
@media screen and (min-width: 835px) {
  .c-block__item {
    width: 47.8%;
  }
}
.c-block ._img {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (min-width: 641px) {
  .c-block ._img {
    width: 40%;
  }
}
@media screen and (min-width: 641px) {
  .c-block ._text {
    -ms-flex-item-align: center;
    align-self: center;
    width: 55.38%;
  }
}
@media screen and (max-width: 834px) {
  .c-block ._text {
    margin-top: 25px;
  }
}
.c-block .c-title06 {
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .c-block .c-title06 {
    margin-bottom: 10px;
    margin-top: -75px;
  }
}
.c-block02 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-block02__item {
  margin-bottom: 25px;
}
.c-block02__item-head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 16px 10px;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  background: #5e4c30;
  letter-spacing: .08em;
}
.c-block02__item-head .small {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0;
}
.c-block02__item .c-txt01 {
  margin-top: 15px;
}
.c-block02.clm4 .c-block02__item:not(:nth-child(4n)) {
  margin-right: 1.96%;
}
@media screen and (min-width: 835px) {
  .c-block02.clm4 .c-block02__item {
    width: 23.53%;
  }
}
@media screen and (max-width: 834px) {
  .c-block02.clm4 .c-block02__item {
    width: 48%;
  }
  .c-block02.clm4 .c-block02__item:not(:nth-child(even)) {
    margin-right: 4%;
  }
  .c-block02.clm4 .c-block02__item:nth-child(even) {
    margin-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .c-block02.clm4 .c-block02__item {
    margin-right: 0 !important;
    width: 100%;
  }
}
.c-block02.clm3 .c-block02__item:not(:nth-child(3n)) {
  margin-right: 4.79%;
}
@media screen and (min-width: 835px) {
  .c-block02.clm3 .c-block02__item {
    width: 30.14%;
  }
}
@media screen and (max-width: 834px) {
  .c-block02.clm3 .c-block02__item {
    width: 48%;
  }
  .c-block02.clm3 .c-block02__item:not(:nth-child(even)) {
    margin-right: 4%;
  }
  .c-block02.clm3 .c-block02__item:nth-child(even) {
    margin-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .c-block02.clm3 .c-block02__item {
    margin-right: 0 !important;
    width: 100%;
  }
}
.c-block03 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-block03__img {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (min-width: 835px) {
  .c-block03__img {
    width: 44.26%;
  }
}
@media screen and (min-width: 835px) {
  .c-block03__txt {
    -ms-flex-item-align: center;
    align-self: center;
    width: 50%;
  }
}
@media screen and (max-width: 834px) {
  .c-block03__txt {
    margin-top: 30px;
  }
}
.c-block03 .c-title04 {
  margin-bottom: 35px;
}
@media screen and (max-width: 834px) {
  .c-block03 .c-title04 {
    margin-bottom: 20px;
  }
}
.c-block04 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 835px) {
  .c-block04__img {
    width: 46%;
  }
}
@media screen and (min-width: 835px) {
  .c-block04__img.order1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media screen and (min-width: 835px) {
  .c-block04__txt {
    width: 50%;
  }
}
@media screen and (min-width: 835px) {
  .c-block04__txt.order2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.c-table {
  border-top: 1px solid #d7d1c8;
  table-layout: fixed;
  width: 100%;
}
.c-table__th, .c-table__td {
  padding: 20px 0;
  font-size: 16px;
  font-size: 1.6rem;
  border-bottom: 1px solid #d7d1c8;
}
@media screen and (max-width: 834px) {
  .c-table__th, .c-table__td {
    padding: 15px 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 640px) {
  .c-table__th, .c-table__td {
    padding: 12px 0;
  }
}
.c-table__th {
  background: #f5f0e9;
}
.c-table .head {
  letter-spacing: 2px;
}
.c-table .item {
  width: 27%;
  min-width: 110px;
  text-align: center;
}
.fade-up {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), -webkit-transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
  transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), -webkit-transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
  -o-transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
  transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
  transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), -webkit-transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
}
.fade-up.active {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
}
/* ====================================================
INDEX
==================================================== */
.bg-area {
  position: relative;
  width: 100%;
}
.bg-area:before {
  top: 0;
  left: 0;
  background: #f5f0e9;
}
.bg-area:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 50%;
  height: 83.61%;
}
@media screen and (max-width: 834px) {
  .bg-area:before {
    height: 30%;
  }
}
.bg-area .mv-block {
  position: relative;
  padding-top: 90px;
  padding-right: 90px;
}
@media screen and (max-width: 834px) {
  .bg-area .mv-block {
    padding-top: 0;
    padding-right: 0;
  }
}
.bg-area .mv-slide-block {
  position: relative;
  padding-left: 19.5%;
  margin-bottom: 35px;
}
@media screen and (max-width: 834px) {
  .bg-area .mv-slide-block {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .bg-area .mv-slide-block {
    padding-left: 8%;
    padding-top: 0;
    height: 80vh;
  }
}
.bg-area .mv-lead-block {
  position: absolute;
  left: 3.33%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .bg-area .mv-lead-block {
    top: 69%;
  }
}
@media screen and (max-width: 834px) {
  .bg-area .mv-lead-block {
    top: 35%;
    left: 8%;
  }

}
.bg-area .mv-lead-block .cap {
  margin-bottom: 30px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1680px) {
  .bg-area .mv-lead-block .cap {
    margin-bottom: 1.5vw;
    font-size: max(14px, .952vw);
  }
}
.bg-area .mv-lead-block .ttl {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.875;
  letter-spacing: .3em;
}
@media screen and (max-width: 1680px) {
  .bg-area .mv-lead-block .ttl {
    font-size: max(24px, 1.9vw);
  }
}
@media screen and (max-width: 640px) {
  .bg-area .mv-lead-block .ttl {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.6;
  }
}
.bg-area .schedule-block {
  position: absolute;
  right: 0;
  bottom: -7%;
 padding: 30px 2.57%;
 width: 38%;
  min-width: 415px;
  max-width: 600px;
  background: #fff;
  border-radius: 10px 0 0 10px;
  -webkit-box-shadow: 0px 0px 20px -4px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px -4px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1200px) {
  .bg-area .schedule-block {
    padding: 3.33vw 3.5%;
    bottom: -30%;
  }
}
@media screen and (max-width: 834px) {
  .bg-area .schedule-block {
    position: relative;
    margin-top: -5%;
    padding: 20px 2.5%;
    margin-left: auto;
    right: -40px;
    width: calc(100% + 40px);
    max-width: 415px;
    min-width: 1px;
  }
}
@media screen and (max-width: 834px) and (max-width: 640px) {
  .bg-area .schedule-block {
    margin-top: 40px;
    right: 0;
    border-radius: 0;
    max-width: 100%;
    box-shadow: none;
    padding: 20px 5%;
    /*    max-width: calc(100% + 40px);*/
  }
}
.bg-area .schedule-block .note {
  margin-top: 10px;
}
.bg-area .news-block {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% - 46%);
}
@media screen and (max-width: 1024px) {
  .bg-area .news-block {
    width: calc(100% - 435px);
  }
}
@media screen and (max-width: 834px) {
  .bg-area .news-block {
    padding: 30px 0;
    width: 100%;
  }
  .newsBg {
    background: #f5f0e9;
  }
}
.bg-area .news-block .ttl {
  width: 145px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 834px) {
  .bg-area .news-block .ttl {
    width: 100%;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
}
.bg-area .news-block .news-list {
  width: calc(100% - 145px);
}
@media screen and (max-width: 834px) {
  .bg-area .news-block .news-list {
    width: 100%;
  }
}
.bg-area .news-block .news-list .news-list__item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
  font-size: 1.4rem;
}
.bg-area .news-block .news-list .news-list__item .date {
  margin-right: 1em;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 834px) {
  .bg-area .news-block .news-list .news-list__item .date {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.bg-area .news-block .news-list .news-list__item p {
  padding: 5px 0;
}
@media screen and (max-width: 834px) {
  .bg-area .news-block .news-list .news-list__item p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.bg-area .link-reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 130px;
  right: 20px;
  font-size: 12px;
  font-size: 1.2rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  width: 44px;
  background: #fff;
  border-radius: 24px;
  height: 200px;
  z-index: 10;
}
.bg-area .link-reserve:hover {
background: #f5f0e9;
}
@media screen and (max-width: 834px) {
  .bg-area .link-reserve {
    /*
    top: 80px;
    right: 6px;
*/
    display: none;
  }
}
.bg-area .link-reserve i {
  margin-bottom: 5px;
  font-size: 14px;
  font-size: 1.4rem;
}
.sec-feature {
  position: relative;
  padding: 120px 0;
}
@media screen and (max-width: 834px) {
  .sec-feature {
    padding: 60px 0;
  }
}
.sec-feature .feature__list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 45px 0 160px;
}
@media screen and (max-width: 834px) {
  .sec-feature .feature__list {
    margin: 60px 0 80px;
  }
}
.sec-feature .feature__list-item {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 50px 10px 20px;
  width: 23.33%;
  color: #fff;
  font-size: 28px;
  font-size: 2.8rem;
  background: #8c7859;
  border-radius: 10px;
}
@media screen and (max-width: 1680px) {
  .sec-feature .feature__list-item {
    font-size: 1.66vw;
  }
}
@media screen and (max-width: 1024px) {
  .sec-feature .feature__list-item {
    margin-bottom: 50px;
    width: 46.66%;
    font-size: max(24px, 2.4vw);
  }
}
@media screen and (max-width: 640px) {
  .sec-feature .feature__list-item {
    font-size: max(14px, 2.4vw);
  }
}
@media screen and (max-width: 834px) {
  .sec-feature .feature__list-item {
    margin-bottom: 40px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  .sec-feature .feature__list-item {
    width: 49%;
  }
}
.sec-feature .feature__list-item .no {
  position: absolute;
  top: calc(-50% + 30px);
  display: inline-block;
  width: 68px;
  height: 68px;
  line-height: 68px;
  font-size: 40px;
  font-size: 4rem;
  border-radius: 50%;
  background: #8c7859;
}
@media screen and (max-width: 834px) {
  .sec-feature .feature__list-item .no {
    top: calc(-50% + 40px);
    width: 50px;
    height: 50px;
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 50px;
  }
}
@media screen and (max-width: 640px) {
  .sec-feature .feature__list-item .no {
    top: calc(-50% + 25px);
  }
}
.sec-feature .feature__list-item p {
  position: relative;
}
.sec-feature .feature__list-item .small {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 1680px) {
  .sec-feature .feature__list-item .small {
    font-size: max(15px, 1.4vw);
  }
}
@media screen and (max-width: 640px) {
  .sec-feature .feature__list-item .small {
    font-size: max(10px, 1.4vw);
  }
}
.sec-feature .feature__list-item.item02:before, .sec-feature .feature__list-item.item04:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 834px) {
  .sec-feature .feature__list-item.item02:before, .sec-feature .feature__list-item.item04:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 34px;
    height: 34px;
  }
}
.sec-feature .feature__list-item.item02:before, .sec-feature .feature__list-item.item04:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -22px;
  border-radius: 50%;
  background: #8c7859;
}
@media screen and (max-width: 834px) {
  .sec-feature .feature__list-item.item02:before, .sec-feature .feature__list-item.item04:before {
    left: -12px;
  }
}
.sec-feature .feature__list-item.item01:before, .sec-feature .feature__list-item.item03:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 834px) {
  .sec-feature .feature__list-item.item01:before, .sec-feature .feature__list-item.item03:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 44px;
    height: 44px;
  }
}
.sec-feature .feature__list-item.item01:before, .sec-feature .feature__list-item.item03:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -30px;
  border-radius: 50%;
}
@media screen and (max-width: 834px) {
  .sec-feature .feature__list-item.item01:before, .sec-feature .feature__list-item.item03:before {
    right: -22px;
  }
}
@media screen and (max-width: 640px) {
  .sec-feature .feature__list-item.item01:before, .sec-feature .feature__list-item.item03:before {
    right: -32px;
  }
}
.sec-feature .feature__list-item.item01:before {
  background: #f5f0e9;
}
@media screen and (max-width: 834px) {
  .sec-feature .feature__list-item.item01:before {
    background: #fff;
  }
}
.sec-feature .feature__list-item.item03:before {
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .sec-feature .feature__list-item.item03:before {
    background: #f5f0e9;
  }
}
@media screen and (max-width: 834px) {
  .sec-feature .feature__list-item.item03:before {
    background: #fff;
  }
}
.sec-feature .efforts-block {
  padding: 0 5% 65px;
  background: #ddd5ca;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .sec-feature .efforts-block {
    padding: 0 5% 25px;
  }
}
.sec-feature .efforts-block__ttl {
  display: inline-block;
  margin: -50% auto 65px;
  padding: 15px 20px;
  max-width: 510px;
  color: #fff;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 700;
  background: #000;
  border-radius: 50px;
}
@media screen and (max-width: 834px) {
  .sec-feature .efforts-block__ttl {
    margin-bottom: 30px;
    font-size: 15px;
    font-size: 1.5rem;
    padding: 15px 45px;
  }
}
.sec-feature .efforts__list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sec-feature .efforts__list-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 25px;
  padding: 2.22%;
  width: 31.85%;
  background: #fff;
  border-radius: 10px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .sec-feature .efforts__list-item {
    width: 48%;
  }
}
@media screen and (max-width: 640px) {
  .sec-feature .efforts__list-item {
    padding: 4% 3%;
    width: 100%;
    margin-bottom: 10px;
  }
}
.sec-feature .efforts__list-item img {
  width: 100px;
  height: auto;
}
.sec-feature .efforts__list-txt {
  width: calc(100% - 120px);
}
.sec-feature .efforts__list-ttl {
  margin-bottom: 10px;
  color: #8c7859;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 640px) {
  .sec-feature .efforts__list-ttl {
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.sec-feature .efforts__list-desc {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.85;
}
@media screen and (max-width: 640px) {
  .sec-feature .efforts__list-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
.schedule-block__txt {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: max(12px, .095vw);
}

.schedule-block__txt i {
  margin-right: 5px;
}
@media screen and (max-width: 834px) {
  .schedule-block__txt {
    margin-bottom: 10px;
  }
  .schedule-block__txt p {
    margin-bottom: 10px;
    width: 100%;
  }
}
.schedule-block__txt .note {
  margin-top: 5px;
  font-size: 12px;
  font-size: 1.2rem;
}
.btn-map {
  display: inline-block;
  margin-left: 10px;
  width: 125px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 35px;
  text-align: center;
  background: #f5f0e9;
  border-radius: 20px;
}
@media screen and (max-width: 834px) {
  .btn-map {
    margin-left: 0;
    line-height: 25px;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 10px 0;
  }
}
.sec-policy {
  position: relative;
  background: url(../img/img-policy-bg.png) no-repeat left top 9%;
  background-size: 397px auto;
}
@media screen and (max-width: 1680px) {
  .sec-policy {
    background-size: 23.63vw auto;
    background-position: left top 11vw;
  }
}
@media screen and (max-width: 834px) {
  .sec-policy {
    background-size: 40vw auto;
  }
}
.sec-policy .bg-area {
  position: relative;
  padding-bottom: 200px;
}
.sec-policy .bg-area:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 85.89%;
  height: 46.24%;
}
@media screen and (max-width: 1680px) {
  .sec-policy .bg-area {
    padding-bottom: 11.9vw;
  }
}
.sec-policy .bg-area:before {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  background: #f5f0e9;
}
.sec-policy .ttl-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media screen and (max-width: 834px) {
  .sec-policy .ttl-block {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 835px) {
  .sec-policy .ttl-block__ttl {
    width: 46%;
  }
}
.sec-policy .ttl-block__ttl .c-title01 {
  margin-bottom: 55px;
}
@media screen and (max-width: 834px) {
  .sec-policy .ttl-block__ttl .c-title01 {
    margin-bottom: 35px;
  }
}
.sec-policy .ttl-block__txt {
  margin-top: 40px;
}
@media screen and (min-width: 835px) {
  .sec-policy .ttl-block__txt {
    width: 50%;
  }
}
@media screen and (max-width: 834px) {
  .sec-policy .ttl-block__txt {
    margin-top: 20px;
  }
}
.sec-policy .ttl-block__txt .c-title03 {
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .sec-policy .ttl-block__txt .c-title03 {
    margin-bottom: 30px;
  }
}
.sec-policy .ttl-block02 {
  position: relative;
  margin-top: -90px;
}
@media screen and (max-width: 1680px) {
  .sec-policy .ttl-block02 {
    margin-top: -5.35vw;
  }
  .sec-policy .ttl-block02 .ttl-block__txt {
    margin-top: 0;
    padding-top: 4.75vw;
  }
}
@media screen and (min-width: 1201px) {
  .sec-policy .ttl-block02 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.sec-policy .ttl-block02 .ttl-block__ttl {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .sec-policy .ttl-block02 .ttl-block__ttl {
    margin-bottom: 30px;
  }
  .sec-policy .ttl-block02 .ttl-block__ttl img {
    height: 55vw;
  }
}
.sec-policy .ttl-block02 .c-title02 {
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .sec-policy .ttl-block02 .c-title02 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .sec-policy .ttl-block02 .c-title02 {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
.sec-policy .policy__list {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sec-policy .policy__list-item {
  position: relative;
}
@media screen and (min-width: 835px) {
  .sec-policy .policy__list-item {
    width: 29.333%;
  }
}
@media screen and (max-width: 834px) {
  .sec-policy .policy__list-item {
    margin-bottom: 40px;
    width: 48%;
  }
}
@media screen and (max-width: 640px) {
  .sec-policy .policy__list-item {
    width: 100%;
  }
}
.sec-policy .policy__list-img {
  position: relative;
}
.sec-policy .policy__list-img .label {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  width: 31.81%;
  height: 31.81%;
  min-width: 110px;
  min-height: 110px;
  color: #fff;
  background: #072338;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .sec-policy .policy__list-img .label {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 834px) {
  .sec-policy .policy__list-img .label {
    font-size: 20px;
    font-size: 2rem;
  }
}
.sec-policy .policy__list-img .label .small {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
}
.sec-policy .policy__list .c-title03 {
  margin: 25px 0 20px;
}
@media screen and (max-width: 640px) {
  .sec-policy .policy__list .c-title03 {
    margin: 15px 0 10px;
  }
}
.sec-menu {
  padding: 100px 0 1px;
  background: #f5f0e9;
}
@media screen and (max-width: 834px) {
  .sec-menu {
    padding: 60px 0 20px;
  }
}
.sec-menu .c-title02 {
  margin: 40px 0 30px;
}
@media screen and (max-width: 640px) {
  .sec-menu .c-title02 {
    font-size: 21px;
    font-size: 2.1rem;
  }
  .sec-menu .c-txt03 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.sec-menu .menu-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px 0 80px;
  border: 1px solid #d7d1c8;
  border-radius: 10px;
}
@media screen and (max-width: 640px) {
  .sec-menu .menu-list {
    margin: 30px 0 40px;
  }
}
.sec-menu .menu-list__item {
  width: 16.66%;
}
@media screen and (max-width: 834px) {
  .sec-menu .menu-list__item {
    width: 33.33%;
  }
  .sec-menu .menu-list__item:nth-child(-n+3) {
    border-bottom: 1px solid #d7d1c8;
  }
  .sec-menu .menu-list__item:nth-child(3) {
    border-radius: 0 10px 0 0;
  }
  .sec-menu .menu-list__item:nth-child(4) {
    border-radius: 0 0 0 10px;
    border-left: 0 !important;
  }
}
@media screen and (max-width: 640px) {
  .sec-menu .menu-list__item {
    width: 50%;
  }
  .sec-menu .menu-list__item:nth-child(2) {
    border-radius: 0 10px 0 0;
  }
  .sec-menu .menu-list__item:nth-child(3) {
    border-radius: 0;
    border-left: 0 !important;
  }
  .sec-menu .menu-list__item:nth-child(4) {
    border-radius: 0;
    border-bottom: 1px solid #d7d1c8;
    border-left: 1px solid #d7d1c8 !important;
  }
  .sec-menu .menu-list__item:nth-child(5) {
    border-left: 0 !important;
    border-radius: 0 0 0 10px !important;
  }
}
.sec-menu .menu-list__item:not(:first-child) {
  background: #fff;
  border-left: 1px solid #d7d1c8;
  font-size: 16px;
  font-size: 1.6rem;
}
.sec-menu .menu-list__item:not(:first-child) img {
  width: 90%;
}
@media screen and (max-width: 640px) {
  .sec-menu .menu-list__item:not(:first-child) img {
    width: 60%;
  }
}
.sec-menu .menu-list__item a, .sec-menu .menu-list__item .inner-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  height: 220px;
}
.sec-menu .menu-list__item a:hover {
background: #f5f0e9;
}
@media screen and (max-width: 1200px) {
  .sec-menu .menu-list__item a, .sec-menu .menu-list__item .inner-box {
    height: 16.25vw;
  }
}
@media screen and (max-width: 834px) {
  .sec-menu .menu-list__item a, .sec-menu .menu-list__item .inner-box {
    height: 150px;
  }
}
.sec-menu .menu-list__item:first-child {
  font-size: 21px;
  font-size: 2.1rem;
  border-radius: 10px 0 0 10px;
  background: #e4dacc url(../img/logo-menu.png) no-repeat center center;
  background-size: 77.6%;
}
@media screen and (max-width: 1024px) {
  .sec-menu .menu-list__item:first-child {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .sec-menu .menu-list__item:first-child {
    border-radius: 10px 0 0 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.sec-menu .menu-list__item:last-child {
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 834px) {
  .sec-menu .menu-list__item:last-child {
    border-radius: 0 0 10px 0;
  }
}
.sec-menu .menu-list__item .small {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
}
.sec-menu .menu-list__item .txt {
  display: block;
  margin-top: 18px;
}
.sec-menu .menu-block {
  margin-bottom: 100px;
  background: #fff;
}
@media screen and (max-width: 834px) {
  .sec-menu .menu-block {
    margin-bottom: 60px;
  }
}
.sec-menu .menu-block__head {
  position: relative;
  min-height: 330px;
}
@media screen and (max-width: 834px) {
  .sec-menu .menu-block__head {
    min-height: 200px;
    height: 39.5vw;
  }
}
.sec-menu .menu-block__title {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sec-menu .menu-block__title .c-title02 {
  margin: 0;
}
.sec-menu .menu-block__title .c-title02 img {
  width: 100px;
}
@media screen and (max-width: 834px) {
  .sec-menu .menu-block__title .c-title02 img {
    width: 9.3vw;
    min-width: 55px;
  }
}
.sec-menu .menu-block__lead {
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .sec-menu .menu-block__lead {
    margin-bottom: 30px;
  }
}
.sec-menu .menu-block__lead .c-txt01 {
  padding: 35px 0 55px;
  border-bottom: 1px solid #f5f0e9;
}
@media screen and (max-width: 834px) {
  .sec-menu .menu-block__lead .c-txt01 {
    padding: 25px 0;
    text-align: left;
  }
}
.sec-menu .menu-block__cont {
  padding: 85px 4.66% 75px;
}
@media screen and (max-width: 834px) {
  .sec-menu .menu-block__cont {
    padding: 50px 4.66% 30px;
  }
}
.sec-menu .menu-block__desc .c-title05 {
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .sec-menu .menu-block__desc .c-title05 {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.sec-menu .menu-block.menu01 .menu-block__head {
  background: url(../img/img-menu01.jpg) no-repeat center center;
  background-size: cover;
}
.sec-menu .menu-block.menu02 .menu-block__head {
  background: url(../img/img-menu02.jpg) no-repeat center center;
  background-size: cover;
}
.sec-menu .menu-block.menu03 .menu-block__head {
  background: url(../img/img-menu03.jpg) no-repeat center center;
  background-size: cover;
}
.sec-menu .menu-block.menu04 .menu-block__head {
  background: url(../img/img-menu04.jpg) no-repeat center center;
  background-size: cover;
}
.sec-menu .menu-block.menu05 .menu-block__head {
  background: url(../img/img-menu05.jpg) no-repeat center center;
  background-size: cover;
}
.sec-flow {
  padding: 150px 0 0;
}
@media screen and (max-width: 834px) {
  .sec-flow {
    padding: 80px 0;
  }
}
@media screen and (max-width: 640px) {
  .sec-flow {
    padding: 60px 0;
  }
}
.sec-flow .flow-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  .sec-flow .flow-block__img {
    display: none;
    /*
    width: 100%;
    height: 80vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    font-family: "object-fit: cover; object-position: center", sans-serif;
*/
  }
}
@media screen and (min-width: 835px) {
  .sec-flow .flow-block__txt {
    margin-top: max(50px, 6vw);
  }
}
.sec-flow .flow-block__txt .c-title02 {
  margin: 40px 0 20px;
}
@media screen and (min-width: 1300px) {
  .sec-flow .flow-block__txt .c-title02 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 834px) {
  .sec-flow .flow-block__txt .c-title02 {
    margin: 35px 0 20px;
  }
}
@media screen and (max-width: 640px) {
  .sec-flow .flow-block__txt .c-title02 {
    font-size: 21px;
    font-size: 2.1rem;
  }
  .sec-flow .flow-block__txt .c-txt03 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.sec-flow .flow-block .flow-list {
  margin: 70px 0 145px;
}
@media screen and (max-width: 834px) {
  .sec-flow .flow-block .flow-list {
    margin: 50px 0 0px;
  }
}
.sec-flow .flow-block .flow-list__item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.sec-flow .flow-block .flow-list__item-img {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  align-items: center;
  position: relative;
  width: 150px;
}
@media screen and (max-width: 834px) {
  .sec-flow .flow-block .flow-list__item-img {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100px;
  }
}
.sec-flow .flow-block .flow-list__item-img img {
  position: relative;
}
.sec-flow .flow-block .flow-list__item-txt {
  -ms-flex-item-align: center;
  align-self: center;
  width: calc(100% - 175px);
}
@media screen and (max-width: 834px) {
  .sec-flow .flow-block .flow-list__item-txt {
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: calc(100% - 120px);
  }
}
@media screen and (max-width: 640px) {
  .sec-flow .flow-block .flow-list__item-txt .c-txt01 {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.4;
  }
}
.sec-flow .flow-block .flow-list__item:not(:last-child) .flow-list__item-img {
  padding-bottom: 30px;
}
.sec-flow .flow-block .flow-list__item:not(:last-child) .flow-list__item-img:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 100%;
}
.sec-flow .flow-block .flow-list__item:not(:last-child) .flow-list__item-img:before {
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #8c7859;
}
.sec-flow .flow-block .flow-list__item:not(:last-child) .flow-list__item-txt {
  margin-bottom: 30px;
}
.sec-flow .flow-block .flow-list__item-head {
  margin-bottom: 20px;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: .9;
  letter-spacing: .05em;
}
@media screen and (max-width: 640px) {
  .sec-flow .flow-block .flow-list__item-head {
    margin-bottom: 10px;
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.sec-flow .flow-block .flow-list__item-head .no {
  margin-right: 10px;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 640px) {
  .sec-flow .flow-block .flow-list__item-head .no {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .sec-profile {
    position: relative;
  }
  .sec-profile:before {
    content: "";
    background: #8c7859;
    width: 100%;
    height: 300px;
    left: 0;
    top: 100px;
    display: block;
    position: absolute;
  }
}
.sec-profile .profile__txt {
  padding-top: 275px;
  padding-bottom: 80px;
  color: #fff;
  background: #8c7859;
}
@media screen and (max-width: 1680px) {
  .sec-profile .profile__txt {
    padding-top: 16.37vw;
    padding-bottom: 5.88vw;
  }
}
.sec-profile .profile__txt .inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 1201px) {
  .sec-profile .profile__txt .inner .c-txt01 {
    padding-right: 3.33%;
    width: 73.66%;
  }
}
@media screen and (max-width: 1200px) {
  .sec-profile .profile__txt .inner .c-txt01 {
    width: calc(96.67% - 275px);
  }
}
@media screen and (max-width: 834px) {
  .sec-profile .profile__txt .inner .c-txt01 {
    width: 100%;
  }
}
.sec-profile .profile__history {
  border-left: 1px solid #aa987c;
}
@media screen and (min-width: 1201px) {
  .sec-profile .profile__history {
    padding-left: 3.33%;
    width: 26.34%;
  }
}
@media screen and (max-width: 1200px) {
  .sec-profile .profile__history {
    width: calc(275px + 3.33%);
  }
}
@media screen and (max-width: 834px) {
  .sec-profile .profile__history {
    margin-top: 30px;
    padding-top: 20px;
    width: 100%;
    border-top: 1px solid #aa987c;
    border-left: 0;
    padding-bottom: 20px;
  }
}
.sec-profile .profile__history-ttl {
  margin-bottom: 5px;
  font-size: 21px;
  font-size: 2.1rem;
}
.sec-profile .profile__history-table {
  font-size: 15px;
  font-size: 1.5rem;
  width: 100%;
}
.sec-profile .profile__history-table th, .sec-profile .profile__history-table td {
  padding-top: 13px;
}
.sec-profile .profile__img {
  margin-bottom: -230px;
  background: #8c7859;
  position: relative;
}
@media screen and (max-width: 1680px) {
  .sec-profile .profile__img {
    margin-bottom: -13.69vw;
  }
}
@media screen and (max-width: 834px) {
  .sec-profile .profile__img img {
    width: 100%;
    height: 50vw;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center", sans-serif;
  }
}
.sec-profile .profile__img .profileInfo {
  position: absolute;
  left: 5%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .sec-profile .profile__img .profileInfo {
    position: inherit;
    left: inherit;
    top: inherit;
    transform: none;
    -webkit- transform: none;
    padding: 30px 0 20px;
  }
}
.sec-profile .profile__img .profileInfo h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .sec-profile .profile__img .profileInfo h2 {
    color: #fff;
  }
  .sec-profile .profile__img .profileInfo .c-title01 .en {
    color: #fff;
  }
}
.sec-profile .profile__img .profileInfo h3 {
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .sec-profile .profile__img .profileInfo h3 {
    color: #fff;
    margin-bottom: 10px;
  }
  .sec-profile .profile__img .c-title04 .mark:before {
    opacity: 0.3;
  }
}
.sec-profile .profile__img .profileInfo .name {
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 640px) {
  .sec-profile .profile__img .profileInfo .name {
    font-size: 13px;
    font-size: 1.3rem;
    color: #fff;
  }
}
.sec-profile .profile__img .profileInfo .name strong {
  font-size: 21px;
  font-size: 2.1rem;
}
.sec-profile .message-block-wrap {
  padding: 120px 0 110px;
}
@media screen and (max-width: 1024px) {
  .sec-profile .message-block-wrap {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 834px) {
  .sec-profile .message-block-wrap {
    padding: 80px 0 60px;
  }
}
@media screen and (max-width: 640px) {
  .sec-profile .message-block-wrap {
    padding: 60px 0 40px;
  }
}
.sec-profile .message-block {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}
.sec-profile .message-block .c-title04 {
  margin-bottom: 35px;
}
@media screen and (max-width: 834px) {
  .sec-profile .message-block .c-title04 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 834px) {
  .sec-profile .message-block__txt {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .sec-profile .message-block__txt {
    margin-bottom: 20px;
  }
  .sec-profile .message-block__txt .c-txt04 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.sec-gallery {
  position: relative;
  padding-top: 230px;
}
@media screen and (max-width: 1680px) {
  .sec-gallery {
    padding-top: 13.7vw;
  }
}
@media screen and (max-width: 1200px) {
  .sec-gallery {
    padding-top: 8vw;
  }
}
@media screen and (max-width: 1024px) {
  .sec-gallery {
    padding-top: 90px;
  }
}
@media screen and (max-width: 834px) {
  .sec-gallery {
    padding-top: 0;
  }
}
.sec-gallery .bg-wrap {
  padding: 100px 0 90px;
  background: #f5f0e9;
}
@media screen and (max-width: 1680px) {
  .sec-gallery .bg-wrap {
    padding: 5.95vw 0 5.35vw;
  }
}
@media screen and (max-width: 834px) {
  .sec-gallery .bg-wrap {
    padding: 80px 0;
  }
}
@media screen and (max-width: 640px) {
  .sec-gallery .bg-wrap {
    padding: 60px 0;
  }
}
.sec-gallery .gallery-top {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 105px;
}
@media screen and (max-width: 834px) {
  .sec-gallery .gallery-top {
    margin-bottom: 60px;
  }
}
.sec-gallery .gallery-top .c-title02 {
  margin: 40px 0 20px;
}
@media screen and (max-width: 1330px) and (min-width: 835px) {
  .sec-gallery .gallery-top .c-title02 {
    margin: 3vw 0 1.5vw;
    font-size: 2vw;
  }
}
@media screen and (max-width: 834px) {
  .sec-gallery .gallery-top .c-title02 {
    margin: 35px 0 20px;
  }
}
@media screen and (max-width: 640px) {
  .sec-gallery .gallery-top .c-title02 {
    font-size: 21px;
    font-size: 2.1rem;
  }
  .sec-gallery .gallery-top .c-txt03 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 835px) {
  .sec-gallery .gallery-top .gallery-txt {
    width: 34.66%;
  }
}
@media screen and (max-width: 834px) {
  .sec-gallery .gallery-top .gallery-txt {
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 835px) {
  .sec-gallery .gallery-top .gallery-slide {
    position: relative;
    margin-top: -330px;
    width: 61.33%;
  }
}
@media screen and (max-width: 1200px) {
  .sec-gallery .gallery-top .gallery-slide {
    margin-top: -19.642857vw;
  }
}
@media screen and (max-width: 1024px) {
  .sec-gallery .gallery-top .gallery-slide {
    margin-top: -100px;
  }
}
@media screen and (max-width: 834px) {
  .sec-gallery .gallery-top .gallery-slide {
    margin-top: 0;
    width: 100%;
  }
}
.sec-gallery .gallery-top .gallery-slide__img {
  margin-bottom: 4px;
}
.sec-gallery .gallery-top .gallery-slide__list {
  margin: 0 -2.5px;
  cursor: pointer;
}
.sec-gallery .gallery-top .gallery-slide__list-item {
  position: relative;
  margin: 0 2.5px;
  outline: 0;
}
.sec-gallery .gallery-top .gallery-slide__list .slick-current:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.sec-gallery .gallery-top .gallery-slide__list .slick-current:before {
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 641px) {
  .sec-gallery .title-block {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sec-gallery .title-block .c-title03 {
    width: calc(100% - 114px);
  }
}
.sec-gallery .arrows {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (min-width: 641px) {
  .sec-gallery .arrows {
    width: 114px;
  }
}
@media screen and (max-width: 834px) {
  .sec-gallery .arrows {
    margin: 20px 0 0;
  }
}
.sec-gallery .arrows .slick-list, .sec-gallery .arrows .slick-track {
  position: relative;
  width: 100%;
}
.sec-gallery .arrows .slick-next {
  right: 5px;
}
.sec-gallery .arrows .slick-next:before {
  content: "\f061" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.sec-gallery .arrows .slick-prev {
  left: 5px;
  z-index: 10;
}
.sec-gallery .arrows .slick-prev:before {
  content: "\f060" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.sec-gallery .arrows .slick-next, .sec-gallery .arrows .slick-prev {
  position: static;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  margin-left: 7px;
  width: 50px;
  height: 50px;
  background: #072338;
  border-radius: 5px;
}
.sec-gallery .arrows .slick-next:before, .sec-gallery .arrows .slick-prev:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  color: #fff;
  opacity: 1;
}
.sec-gallery .arrows .slick-next.slick-disabled, .sec-gallery .arrows .slick-prev.slick-disabled {
  background: #969ea2;
}
@media screen and (min-width: 835px) {
  .sec-gallery .arrows .slick-next, .sec-gallery .arrows .slick-prev {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .sec-gallery .arrows .slick-next:hover, .sec-gallery .arrows .slick-prev:hover {
    opacity: .7;
  }
}
.sec-gallery .gallery-facility {
  margin: 40px -15px 0;
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .sec-gallery .gallery-facility {
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .sec-gallery .gallery-facility {
    margin: 20px 0 0 0;
  }
}
.sec-gallery .gallery-facility-item {
  position: relative;
  padding: 0 30px;
  outline: 0;
}
@media screen and (max-width: 1680px) {
  .sec-gallery .gallery-facility-item {
    padding: 0 1.78vw;
  }
}
@media screen and (max-width: 640px) {
  .sec-gallery .gallery-facility-item {
    padding: 0;
  }
}
.sec-gallery .gallery-facility-item .c-title07 {
  margin: 15px 0;
}
@media screen and (max-width: 834px) {
  .sec-gallery .gallery-facility-item .c-title07 {
    margin: 10px 0;
    padding-left: 12px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .sec-gallery .gallery-facility-item .c-title07 small {
    display: block;
  }
  .sec-gallery .gallery-facility-item .c-txt02 {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.4;
    padding-right: 15px;
  }
}
.sec-clinicinfo {
  padding: 120px 0 110px;
}
@media screen and (max-width: 834px) {
  .sec-clinicinfo {
    padding: 60px 0 0;
  }
}
.sec-clinicinfo .c-title01 {
  margin-bottom: 70px;
}
@media screen and (max-width: 640px) {
  .sec-clinicinfo .c-title01 {
    margin-bottom: 40px;
  }
}
.sec-clinicinfo .info-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 85px 0 0;
}
@media screen and (max-width: 640px) {
  .sec-clinicinfo .info-block {
    margin: 30px 0 0;
  }
}
.sec-clinicinfo .info-block__item {
  width: 47.33%;
}
@media screen and (max-width: 834px) {
  .sec-clinicinfo .info-block__item {
    width: 100%;
  }
}
.sec-clinicinfo .info-block__ttl {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 55px;
}
@media screen and (max-width: 640px) {
  .sec-clinicinfo .info-block__ttl {
    margin-bottom: 30px;
  }
}
.sec-clinicinfo .info-block__ttl .logo {
  width: 61.4%;
}
@media screen and (max-width: 640px) {
  .sec-clinicinfo .info-block__ttl .logo {
    width: 75%;
    margin: 0 auto 20px;
  }
}
.sec-clinicinfo .info-block__ttl .station {
  padding: 12px 5px;
  width: 36.6%;
  color: #fff;
  background: #072338;
  font-size: 16px;
  font-size: 1.6rem;
  border-radius: 5px;
}
.sec-clinicinfo .info-block__ttl .station .strong {
  font-size: 21px;
  font-size: 2.1rem;
}
@media screen and (max-width: 640px) {
  .sec-clinicinfo .info-block__ttl .station {
    display: inline-block;
    width: 100%;
    padding: 4px 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .sec-clinicinfo .info-block__ttl .station .strong {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .sec-clinicinfo .info-block__ttl .station br {
    display: none;
  }
}
.sec-clinicinfo .info-block .schedule-block__txt {
  margin-bottom: 10px;
}
.sec-clinicinfo .info-block .schedule-block__txt p {
  font-size: 14px;
  font-size: 1.4rem;
}
.sec-clinicinfo .info-block .tel {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .sec-clinicinfo .info-block .tel {
    font-size: 32px;
    font-size: 3.2rem;
    text-align: center;
    display: block;
    margin-top: 20px;
  }
}
.sec-clinicinfo .info-block .tel i {
  margin-right: 5px;
  color: #8c7859;
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 640px) {
  .sec-clinicinfo .info-block .tel i {
    font-size: 30px;
    font-size: 3.0rem;
  }
}
.sec-clinicinfo .info-block .note {
  margin-top: 8px;
}
@media screen and (max-width: 834px) {
  .sec-clinicinfo .info-block .note {
    text-align: left;
    margin-bottom: 40px;
  }
}
.sec-clinicinfo .info-block .map-wrap {
  position: relative;
  padding-top: 45%;
  width: 100%;
  height: 0;
}
.sec-clinicinfo .info-block .map-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.sec-clinicinfo .info-block .access-info {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 15px 0;
}
.sec-clinicinfo .info-block .access-info__item {
  width: 49.3%;
  margin: 10px 0;
  padding: 18px 8px;
  color: #fff;
  font-size: 28px;
  font-size: 2.8rem;
  text-align: center;
  background: #8c7859;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .sec-clinicinfo .info-block .access-info__item {
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 834px) {
  .sec-clinicinfo .info-block .access-info__item {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 640px) {
  .sec-clinicinfo .info-block .access-info__item {
    width: 49%;
    font-size: 18xp;
    font-size: 1.8rem;
  }
}
.sec-clinicinfo .info-block .access-info__item .small {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .sec-clinicinfo .info-block .access-info__item .small {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 834px) {
  .sec-clinicinfo .info-block .access-info__item .small {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 834px) {
  #main-header .logo {
    padding: 18px 5px;
    width: 100%;
    height: 65px;
    background: no-repeat;
    margin: 0 auto;
    text-align: center;
    position: absolute;
  }
  #main-header .logo img {
    width: 30%;
  }
.mv-slide-block .slick-slider {
    padding-top: 82%;
  }
}
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background: #8c7859;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading .ldInr {
  position: relative;
  width: 100vw;
  height: 100vh;
}
#loading .ldBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.loader {
  color: #ffffff;
  margin: 0 auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load4 1.3s infinite linear;
  animation: load4 1.3s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
@keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

#main-header.on .tel{
background: #072338;
color: #fff;
}

.bg-area .link-reserve.on{
background: #072338;
color: #fff;
}


/*# sourceMappingURL=maps/styles.css.map *//* CSS Document */

