@charset "UTF-8";
/*!
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:
*/
/**
 # Foundation
 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* reset for form */
input[type="text"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  box-sizing: border-box;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  box-sizing: border-box;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif,-apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "メイリオ", Meiryo, sans-serif;
  color: #000;
  text-align: left;
  background-color: #FFF;
  font-size: 1.5rem;
  font-weight: normal;
  overflow-x: hidden;
  font-weight: 400;
}

.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.pc {
  display: block !important;
}

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

.smp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .smp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 4.06vw;
    padding: 0;
  }
  html {
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

/**
 # Layout
 */
/*--------------------------------------------------------------
    # footer.scss
--------------------------------------------------------------*/
.l--footer {
  background-color: #51505D;
  min-height: 120px;
  position: relative;
}

.l--footer-logo {
  position: absolute;
  top: 40px;
  left: 50px;
  display: block;
  width: 118px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.l--footer-logo img {
  width: 100%;
  vertical-align: bottom;
}

.l--footer-logo:hover {
  opacity: 0.45;
}

.l--footer-list {
  position: absolute;
  left: 227px;
  top: 48px;
  display: flex;
}

.l--footer-list li {
  margin: 0 27px 0 0;
}

.l--footer-list li a {
  display: block;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0 5px 10px;
}

.l--footer-list li a:link {
  color: #FFF;
  text-decoration: none;
}

.l--footer-list li a:visited {
  color: #FFF;
  text-decoration: none;
}

.l--footer-list li a:hover {
  color: #FFF;
  text-decoration: none;
}

.l--footer-list li a:hover:after {
  width: 100%;
}

.l--footer-list li a:after {
  content: "";
  display: block;
  height: 1px;
  width: 0%;
  background-color: #FFF;
  bottom: 0;
  position: absolute;
  z-index: 1;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.l--footer-list li a:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #DDB79E;
  bottom: 0;
  position: absolute;
  z-index: 0;
}

.l--footer-copyright {
  display: block;
  position: absolute;
  font-size: 1.3rem;
  color: #FFF;
  top: 62px;
  right: 150px;
  font-weight: 300;
}

.l--footer-gotop {
  position: absolute;
  right: 50px;
  top: 62px;
  width: 24px;
  display: block;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.l--footer-gotop img {
  width: 100%;
  vertical-align: bottom;
}

.l--footer-gotop:hover {
  opacity: 0.45;
}

@media screen and (max-width: 1266px) {
  .l--footer-copyright {
    left: 230px;
    top: 90px;
  }
}

@media screen and (max-width: 768px) {
  .l--footer {
    min-height: inherit;
    position: relative;
    padding: 10.66667vw 5.33333vw 16vw;
  }
  .l--footer-logo {
    position: relative;
    top: inherit;
    left: inherit;
    width: 42.66667vw;
    margin: 0 auto 8vw;
  }
  .l--footer-list {
    position: relative;
    left: inherit;
    top: inherit;
    display: block;
    padding: 5.33333vw;
  }
  .l--footer-list li {
    margin: 0 0 5.33333vw;
  }
  .l--footer-list li a {
    font-size: 3.73333vw;
    letter-spacing: 0.03em;
    position: relative;
    padding: 0 0 2.66667vw;
  }
  .l--footer-copyright {
    position: relative;
    font-size: 3.46667vw;
    top: inherit;
    right: inherit;
    text-align: center;
    left: inherit;
  }
  .l--footer-gotop {
    position: absolute;
    right: 5.33333vw;
    top: 16vw;
    width: 8vw;
    display: block;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
  }
  .l--footer-gotop img {
    width: 100%;
    vertical-align: bottom;
  }
  .l--footer-gotop:hover {
    opacity: 0.45;
  }
}

/*
     Page top
--------------------------------------------------------------*/
.page--top-wrap {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 50;
  width: 60px;
  height: 60px;
  background-color: #E9EFF4;
}

.page--top-wrap a {
  position: absolute;
  display: block;
  width: 60px;
  height: 60px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.page--top-wrap a:before {
  width: 16px;
  height: 2px;
  margin-top: -10px;
  background-color: #FFF;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page--top-wrap a:after {
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  margin-left: -2px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}

.page--top-wrap a:hover {
  opacity: 0.65;
}

@media screen and (max-width: 768px) {
  .page--top-wrap {
    width: 21.33333vw;
    height: 21.33333vw;
    bottom: 5.33333vw;
    right: 5.33333vw;
  }
  .page--top-wrap a {
    right: 0;
    position: absolute;
    display: block;
    width: 21.33333vw;
    height: 21.33333vw;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
  }
  .page--top-wrap a:before {
    width: 16px;
    height: 2px;
    margin-top: -10px;
    background-color: #FFF;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .page--top-wrap a:after {
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    margin-left: -2px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  .page--top-wrap a:hover {
    opacity: 0.65;
  }
}

/*--------------------------------------------------------------
    # header.scss
--------------------------------------------------------------*/
.l--header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
  height: 94px;
}

.l--header.js--addbg {
  background-color: rgba(255, 255, 255, 0.8);
}

.l--header__inner {
  position: relative;
  height: 94px;
}

.l--header-logo {
  position: absolute;
  top: 27px;
  left: 31px;
  width: 118px;
  display: block;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.l--header-logo:hover {
  opacity: 0.45;
}

.l--header-logo img {
  width: 100%;
  vertical-align: bottom;
}

.l--header-gmenu {
  position: absolute;
  left: 224px;
  top: 30px;
  display: flex;
  align-items: center;
}

.l--header-gmenu li a {
  display: block;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
  padding: 0 15px 10px;
  margin: 0 40px 0 0;
  position: relative;
  color: #000;
}

.l--header-gmenu li a:link {
  text-decoration: none;
}

.l--header-gmenu li a:visited {
  text-decoration: none;
}

.l--header-gmenu li a:hover {
  text-decoration: none;
}

.l--header-gmenu li a:hover:before {
  width: 100%;
}

.l--header-gmenu li a:before {
  content: "";
  background-color: #000;
  width: 0;
  height: 1px;
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.l--header-gmenu li a:after {
  content: "";
  background-color: #DDB79E;
  width: 100%;
  height: 1px;
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.l--header-contact {
  position: absolute;
  right: 0;
  top: 0;
  width: 220px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #51505D;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.l--header-contact span {
  color: #FFF;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}

.l--header-contact:link {
  text-decoration: none;
}

.l--header-contact:visited {
  text-decoration: none;
}

.l--header-contact:hover {
  text-decoration: none;
  opacity: 0.45;
}

@media screen and (max-width: 768px) {
  .l--header {
    height: 18.66667vw;
    width: auto;
  }
  .l--header__inner {
    height: 18.66667vw;
    width: 100vw;
    position: relative;
  }
  .l--header-logo {
    top: 5.33333vw;
    left: 5.33333vw;
    width: 24vw;
  }
  .l--header-gmenu {
    position: absolute;
    left: inherit;
    left: 34.66667vw;
    top: 6.66667vw;
    display: flex;
    align-items: center;
  }
  .l--header-gmenu li a {
    font-size: 3.2vw;
    padding: 0 2.66667vw 2.66667vw;
    margin: 0 2.66667vw 0 0;
  }
  .l--header-gmenu li:last-child a {
    margin: 0;
  }
  .l--header-contact {
    width: 26.66667vw;
    height: 16vw;
    margin: 0 auto;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
  }
  .l--header-contact span {
    color: #FFF;
    font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-size: 2.93333vw;
    letter-spacing: 0.03em;
    line-height: 1.50;
  }
  .l--header-contact:link {
    text-decoration: none;
  }
  .l--header-contact:visited {
    text-decoration: none;
  }
  .l--header-contact:hover {
    text-decoration: none;
    opacity: 0.45;
  }
}

/**
 # Objects -  Compornent -
 */
/**
 # Objects -  project -
 */
/*
    animation.scss
---------------------------------------------------------------------------- */
/*
    home[keyvisual]
--------------------------------------------------------------*/
body.loading .h--hero-titleSub {
  opacity: 0;
  -webkit-filter: blur(60px);
  filter: blur(60px);
  transform: scale(1);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.79) 0s;
}

body.loaded .h--hero-titleSub {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  transform: scale(1);
}

body.loading .hhpb01 {
  opacity: 0;
  transform: scale(0.95);
  transition: 1.25s cubic-bezier(0.09, 0.83, 0.1, 0.79) 1s;
}

body.loaded .hhpb01 {
  opacity: 1;
  transform: scale(1);
}

body.loading .hhpb02 {
  opacity: 0;
  transform: scale(0.95);
  transition: 1.25s cubic-bezier(0.09, 0.83, 0.1, 0.79) 1.5s;
}

body.loaded .hhpb02 {
  opacity: 1;
  transform: scale(1);
}

body.loading .h--hero-titleMain {
  opacity: 0;
  transform: scale(1);
  -webkit-filter: blur(60px);
  filter: blur(60px);
  transition: 1.05s cubic-bezier(0.09, 0.83, 0.1, 0.79) 2.05s;
}

body.loaded .h--hero-titleMain {
  -webkit-filter: blur(0px);
  filter: blur(0px);
  opacity: 1;
  transform: scale(1);
}

body.loading .l--header {
  transform: translateY(-80px);
  opacity: 0;
  transition: 1.05s cubic-bezier(0.09, 0.83, 0.1, 0.79) 2.25s;
}

body.loaded .l--header {
  transform: translateY(0);
  opacity: 1;
}

body.loading .h--topics {
  transform: translateY(80px);
  opacity: 0;
  transition: 1.05s cubic-bezier(0.09, 0.83, 0.1, 0.79) 2s;
}

body.loaded .h--topics {
  transform: translateY(0);
  opacity: 1;
}

/*
    home[contents h--info]
--------------------------------------------------------------*/
.h--info-intro-photo .photo01 {
  opacity: 0;
  transform: translateX(-300px) scale(0.95);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.79) 0.25s;
}

.h--info-intro-photo .photo01.lazyloaded {
  opacity: 1;
  transform: translateX(0) scale(1);
}

@media screen and (max-width: 768px) {
  .h--info-intro-photo .photo01 {
    opacity: 0;
    transform: translateX(-100px) scale(0.95);
    transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.79) 0.25s;
  }
  .h--info-intro-photo .photo01.lazyloaded {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.h--info-intro-photo .photo02 {
  opacity: 0;
  transform: translateX(0) scale(0.85);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 1.19) 0.55s;
}

.h--info-intro-photo .photo02.lazyloaded {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.h--info-intro-title {
  opacity: 0;
  transform: translateY(60px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 1.19) 0.55s;
}

.h--info-intro-title.lazyloaded {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.h--info-mainpart-photo {
  opacity: 0;
  transform: translateX(0) scale(0.85);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 1.39) 0.55s;
}

.h--info-mainpart-photo.lazyloaded {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.h--info-mainpart-message {
  opacity: 0;
  transform: translateX(0) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 1.39) 1.05s;
}

.h--info-mainpart-message.lazyloaded {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.h--info-detail {
  opacity: 0;
  transform: translateY(100px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.h--info-detail.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--info-detail-activity {
  opacity: 0;
  transform: translateY(0) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.h--info-detail-activity.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/*
    home[contents h--promise]
--------------------------------------------------------------*/
.h--promise-titleMain {
  opacity: 0;
  -webkit-filter: blur(60px);
  filter: blur(60px);
  transform: translateY(0) scale(0.9);
  transition: 1s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.h--promise-titleMain.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--promise01-main-photo {
  opacity: 0;
  transform: translateY(0) scale(0.9);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 1.39) 0s;
}

.h--promise01-main-photo.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--promise01-main-box {
  opacity: 0;
  transform: translateY(100px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.h--promise01-main-box.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--promise02-main-photo {
  opacity: 0;
  transform: translateY(0) scale(0.9);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 1.39) 0s;
}

.h--promise02-main-photo.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--promise02-main-box {
  opacity: 0;
  transform: translateY(100px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.h--promise02-main-box.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--promise03-main-photo {
  opacity: 0;
  transform: translateY(0) scale(0.9);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 1.39) 0s;
}

.h--promise03-main-photo.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--promise03-main-box {
  opacity: 0;
  transform: translateY(100px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.h--promise03-main-box.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--promise01-info {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.h--promise01-info.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--promise02-info {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.h--promise02-info.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--promise03-info {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.h--promise03-info.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.photo01 .h--promise-detail-box-photo {
  opacity: 0;
  transform: translateX(-100px) scale(0.95);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.photo01 .h--promise-detail-box-photo.lazyloaded {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.photo01 .h--promise-detail-box-content {
  opacity: 0;
  transform: translateX(100px) scale(0.95);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0.5s;
}

.photo01 .h--promise-detail-box-content.lazyloaded {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.photo02 .h--promise-detail-box-photo {
  opacity: 0;
  transform: translateX(100px) scale(0.95);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.photo02 .h--promise-detail-box-photo.lazyloaded {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.photo02 .h--promise-detail-box-content {
  opacity: 0;
  transform: translateX(-100px) scale(0.95);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0.5s;
}

.photo02 .h--promise-detail-box-content.lazyloaded {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/*
    home[contents h--wedding]
--------------------------------------------------------------*/
.h--wedding-title {
  opacity: 0;
  -webkit-filter: blur(60px);
  filter: blur(60px);
  transform: translateY(0) scale(0.9);
  transition: 1s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.h--wedding-title.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--wedding-intro-photo {
  opacity: 0;
  transform: translateY(0) scale(0.9);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 1.39) 0s;
}

.h--wedding-intro-photo.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--wedding-intro-box {
  opacity: 0;
  transform: translateY(100px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.h--wedding-intro-box.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--wedding-inquiry {
  opacity: 0;
  transform: translateY(100px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.h--wedding-inquiry.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/*
    animation.scss[second]
---------------------------------------------------------------------------- */
body.loading .c--hero-title-main {
  opacity: 0;
  -webkit-filter: blur(60px);
  filter: blur(60px);
  transform: scale(1);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.79) 0s;
}

body.loaded .c--hero-title-main {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  transform: scale(1);
}

body.loading .c--hero-title-sub {
  opacity: 0;
  -webkit-filter: blur(60px);
  filter: blur(60px);
  transform: scale(1);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.79) 0.5s;
}

body.loaded .c--hero-title-sub {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  transform: scale(1);
}

body.loading .c--hero--images {
  opacity: 0;
  transform: translateX(200px) scale(1);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.79) 1s;
}

body.loaded .c--hero--images {
  opacity: 1;
  transform: translateX(0) scale(1);
}

@media screen and (max-width: 768px) {
  body.loading .c--hero--images {
    opacity: 0;
    transform: translateY(50px) scale(1);
    transition: 1s cubic-bezier(0.09, 0.43, 0.1, 0.79) 1s;
  }
  body.loaded .c--hero--images {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.c--message-title {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 0.25s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.c--message-title.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.c--message p {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 0.25s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0.5s;
}

.c--message p.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.c--photobox.leftphoto .c--photobox-slider {
  opacity: 0;
  transform: translateX(-350px) scale(1);
  transition: 1s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.c--photobox.leftphoto.lazyloaded .c--photobox-slider {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.c--photobox.leftphoto .c--photobox-detail {
  opacity: 0;
  transform: translateX(150px) scale(1);
  transition: 1s cubic-bezier(0.09, 0.43, 0.1, 0.39) 1s;
}

.c--photobox.leftphoto.lazyloaded .c--photobox-detail {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.c--photobox.rightphoto .c--photobox-slider {
  opacity: 0;
  transform: translateX(350px) scale(1);
  transition: 1s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.c--photobox.rightphoto.lazyloaded .c--photobox-slider {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.c--photobox.rightphoto .c--photobox-detail {
  opacity: 0;
  transform: translateX(-150px) scale(1);
  transition: 1s cubic-bezier(0.09, 0.43, 0.1, 0.39) 1s;
}

.c--photobox.rightphoto.lazyloaded .c--photobox-detail {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.c--stay {
  opacity: 0;
  transform: translateY(150px) scale(1);
  transition: 1.25s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.c--stay.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.c--recommend-title {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 0.55s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.c--recommend-title.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.c--recommend-list {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 0.55s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0.55s;
}

.c--recommend-list.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.c--about-title {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 1s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.c--about-title.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.c--about-main {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0.5s;
}

.c--about-main.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.c--about-contents {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0.5s;
}

.c--about-contents.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/*
    animation.scss[stay]
---------------------------------------------------------------------------- */
.stay__headline {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0.5s;
}

.stay__headline.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stay__lead {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 1s;
}

.stay__lead.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.enjoy-schedule__unit {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.enjoy-schedule__unit.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.enjoy-schedule__column {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.enjoy-schedule__column.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.access {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.access.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.h--announcement {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.39) 0s;
}

.h--announcement.lazyloaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/*
    GlobalMenu
---------------------------------------------------------------------------- */
.l--globalMenu {
  position: absolute;
  right: 6px;
  display: flex;
  align-items: center;
  z-index: 35;
}

.l--globalMenu > li {
  padding: 25px 0;
}

.l--globalMenu > li > a {
  display: block;
  margin: 0 24px 0 0;
  font-size: 1.4rem;
  position: relative;
}

.l--globalMenu > li > a:link {
  color: #000;
  text-decoration: none;
}

.l--globalMenu > li > a:visited {
  color: #000;
  text-decoration: none;
}

.l--globalMenu > li > a:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.65;
}

.l--globalMenu .navigation-list-submenu {
  display: none;
  position: absolute;
  top: 64px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 15px;
}

.l--globalMenu .navigation-list-submenu > li {
  margin: 0 0 24px;
}

.l--globalMenu .navigation-list-submenu > li a {
  background-image: url(../images/common/parts/arrow01__left__orange.png);
  background-repeat: no-repeat;
  background-size: 4.5px;
  background-position: left center;
  display: block;
  padding: 0 0 0 15px;
  font-size: 1.3rem;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.l--globalMenu .navigation-list-submenu > li a:link {
  color: #000;
  text-decoration: none;
}

.l--globalMenu .navigation-list-submenu > li a:visited {
  color: #000;
  text-decoration: none;
}

.l--globalMenu .navigation-list-submenu > li a:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.35;
}

/*
    Hamburger menu
---------------------------------------------------------------------------- */
.burger--wrap, .navigation {
  display: none;
}

@media screen and (max-width: 1160px) {
  .l--globalMenu {
    display: none;
  }
  .scroll-lock {
    overflow: hidden;
  }
  .l--fixed--links-langSMP {
    display: none;
  }
  .l--searchBoxSMP {
    display: none;
  }
  .burger--wrap {
    height: 32px;
    width: 32px;
    top: 16px;
    right: 24px;
    position: absolute;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .burger {
    width: 32px;
    height: 14px;
    z-index: 9999;
    display: flex;
    align-items: center;
    position: relative;
  }
  .burger .line {
    width: 32px;
    height: 2.0px;
    background: #DDB79E;
    transition: 0.3s;
    right: 0;
    position: absolute;
  }
  .burger::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 2.0px;
    top: 0;
    right: 0;
    background: #DDB79E;
    transition: 0.6s;
  }
  .burger::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 2.0px;
    bottom: 0;
    right: 0;
    background: #DDB79E;
    transition: 0.8s;
  }
  .navigation.nav-active {
    display: block;
    z-index: 300;
    animation: show 0.25s linear 0s;
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .navigation {
    display: none;
    opacity: 0.0;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    position: fixed;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
  }
  .navigation .navigation--content {
    background-color: #DDB79E;
    padding: 0;
    height: 100vh;
    width: 100%;
    position: absolute;
    right: 0;
    z-index: 100;
  }
  .navigation .navigation--content__inner {
    position: relative;
    padding: 180px 0 0;
  }
  .navigation-logo {
    position: absolute;
    top: 13px;
    left: 24px;
    width: 360px;
  }
  .navigation-logo img {
    width: 100%;
    vertical-align: bottom;
  }
  .navigation-list {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .navigation-list__inner {
    display: flex;
    flex-wrap: wrap;
  }
  .navigation-box {
    width: 30.90909%;
    margin: 0 2.72727% 48px 0;
  }
  .navigation-box:nth-child(3n) {
    margin: 0 0 48px;
  }
  .navigation-box dt {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 24px;
    color: #FFF;
  }
  .navigation-box dd a {
    display: block;
    background-image: url(../images/common/parts/arrow01__left__white.png);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: left center;
    padding: 0 0 0 18px;
    margin: 0 0 16px;
    font-size: 1.5rem;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
    font-weight: 300;
  }
  .navigation-box dd a:link {
    color: #FFF;
    text-decoration: none;
  }
  .navigation-box dd a:visited {
    color: #FFF;
    text-decoration: none;
  }
  .navigation-box dd a:hover {
    color: #FFF;
    text-decoration: none;
    opacity: 0.65;
  }
  .navigation-button {
    text-align: center;
    letter-spacing: -0.45em;
  }
  .navigation-button li {
    letter-spacing: normal;
    display: inline-block;
  }
  .navigation-button li a {
    color: #DDB79E;
    font-size: 1.6rem;
    border-radius: 4px;
    width: 192px;
    display: block;
    line-height: 4.8rem;
    height: 48px;
    text-align: center;
    background-color: #FFF;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
    margin: 0 7px;
  }
  .navigation-button li a:link {
    color: #DDB79E;
    text-decoration: none;
  }
  .navigation-button li a:visited {
    color: #DDB79E;
    text-decoration: none;
  }
  .navigation-button li a:hover {
    color: #FFF;
    text-decoration: none;
    background-color: #000;
  }
  .navigation-search {
    margin: 0 auto 20px;
    max-width: 400px;
    position: relative;
  }
  .navigation-search .search-input {
    height: 48px;
    width: 400px;
    background-color: #D0D5DE;
    border-radius: 24px;
    padding: 0 20px 0 60px;
  }
  .navigation-search .search-input::placeholder {
    color: #71819C;
    font-size: 1.6rem;
  }
  .navigation-search .search-button {
    position: absolute;
    background-image: url(../images/common/parts/icon__search.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    top: 17px;
    left: 30px;
    display: block;
    width: 14px;
    height: 14px;
    cursor: pointer;
  }
  .burger-active::before {
    transform: rotate(135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFF;
  }
  .burger-active::after {
    transform: rotate(-135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFF;
    width: 100%;
  }
  .burger-active > .line {
    transform: scale(0);
  }
  .nav-active {
    top: 0;
    right: 0;
    opacity: 1.0;
  }
  .burger-active .line {
    background-color: #FFF;
  }
}

@media screen and (max-width: 768px) {
  .burger--wrap {
    height: 3.73333vw;
    width: 8.53333vw;
    top: 6.93333vw;
    right: 4.26667vw;
  }
  .burger {
    width: 8.53333vw;
    height: 3.73333vw;
  }
  .burger .line {
    width: 8.53333vw;
  }
  .burger::before {
    width: 8.53333vw;
  }
  .burger::after {
    width: 8.53333vw;
  }
  .navigation {
    display: none;
    opacity: 0.0;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    position: fixed;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #DDB79E;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
  }
  .navigation .navigation--content {
    background-color: #DDB79E;
    padding: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    z-index: 100;
  }
  .navigation .navigation--content__inner {
    padding: 0;
  }
  .navigation-logo {
    display: none;
  }
  .navigation-list {
    width: auto;
    margin: 0 auto;
    padding: 0;
  }
  .navigation-list__inner {
    display: block;
  }
  .navigation-box {
    width: auto;
    margin: 0;
  }
  .navigation-box:nth-child(3n) {
    margin: 0;
  }
  .navigation-box div {
    display: none;
    padding: 5.33333vw 0;
    background-color: #F5ECEC;
  }
  .navigation-box dt {
    font-size: get_wv(16);
    font-weight: 400;
    margin: 0;
    border-bottom: 1px solid #F5B191;
    padding: 4vw 10.66667vw 4vw 5.33333vw;
    line-height: 1.3;
    cursor: pointer;
    position: relative;
  }
  .navigation-box dt span {
    width: 13.6vw;
    height: 13.6vw;
    background-color: #F08A5A;
    position: absolute;
    right: 0;
    top: 0;
  }
  .navigation-box dt i {
    display: block;
    position: relative;
    right: 3.73333vw;
    top: 3.73333vw;
  }
  .navigation-box dt i:before {
    content: "";
    display: block;
    width: 5.33333vw;
    height: 2px;
    background-color: #FFF;
    position: absolute;
    top: 2.4vw;
    right: 0vw;
  }
  .navigation-box dt i:after {
    content: "";
    display: block;
    width: 2px;
    height: 5.33333vw;
    background-color: #FFF;
    position: absolute;
    top: 0vw;
    right: 2.4vw;
  }
  .navigation-box dt.active i:after {
    display: none;
  }
  .navigation-box dd a {
    margin: 0;
    padding: 2.66667vw 5.33333vw 2.66667vw 10.66667vw;
    font-size: 3.73333vw;
    background-color: #F5ECEC;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
    font-weight: 400;
    line-height: 1.5;
    background-image: url(../images/common/parts/arrow01__left__orange.png);
    background-repeat: no-repeat;
    background-size: 1.81333vw;
    background-position: 5.86667vw center;
  }
  .navigation-box dd a:link {
    color: #DDB79E;
    text-decoration: none;
  }
  .navigation-box dd a:visited {
    color: #DDB79E;
    text-decoration: none;
  }
  .navigation-box dd a:hover {
    color: #DDB79E;
    text-decoration: none;
    opacity: 0.65;
  }
  .burger--wrap.burger--wrap-active {
    background-color: #FFF;
  }
  .burger-active::before {
    transform: rotate(135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #DDB79E;
  }
  .burger-active::after {
    transform: rotate(-135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #DDB79E;
    width: 100%;
  }
  .burger-active > .line {
    transform: scale(0);
  }
  .nav-active {
    top: 17.06667vw;
    right: 0;
    opacity: 1.0;
  }
  .burger-active .line {
    background-color: #FFF;
  }
  .l--fixed--links-langSMP {
    width: 64vw;
    height: 12.8vw;
    margin: 10.66667vw auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
  }
  .l--fixed--links-langSMP a {
    display: block;
    text-align: center;
    font-weight: 700;
  }
  .l--fixed--links-langSMP a:link {
    color: #DDB79E;
    text-decoration: none;
  }
  .l--fixed--links-langSMP a:visited {
    color: #DDB79E;
    text-decoration: none;
  }
  .l--fixed--links-langSMP a:hover {
    color: #DDB79E;
    text-decoration: none;
  }
  .l--searchBoxSMP {
    display: block;
    margin: 0 auto;
    width: 86.93333vw;
    border-bottom: 1px solid #FFF;
    position: relative;
  }
  .l--searchBoxSMP .search-input {
    color: #FFF;
    font-size: 4.8vw;
    padding: 3.2vw 0;
  }
  .l--searchBoxSMP .search-input::placeholder {
    color: #FFF;
    font-size: 4.8vw;
  }
  .l--searchBoxSMP .search-button {
    background-image: url(../images/common/parts/fiexed__icon_search.png);
    width: 5.86667vw;
    height: 5.86667vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: block;
    right: 0;
    bottom: 3.2vw;
    position: absolute;
    cursor: pointer;
  }
}

/**
 # Objects -  pages -
 */
/*--------------------------------------------------------------
    # _home.scss
--------------------------------------------------------------*/
/*  KeyVisual
--------------------------------------------------------------*/
.h--hero {
  margin: 0 auto 104px;
  max-width: 1366px;
}

.h--hero__inner {
  padding: 0 50px;
  position: relative;
}

.h--hero-titleMain {
  z-index: 30;
  position: absolute;
  width: 59.80966%;
  top: 55px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.h--hero-titleMain img {
  width: 100%;
  vertical-align: bottom;
}

.h--hero-titleSub {
  position: absolute;
  width: 7.17423%;
  top: 245px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.h--hero-titleSub img {
  width: 100%;
  vertical-align: bottom;
}

.h--hero-photobox__wrap {
  display: flex;
  justify-content: space-between;
}

.h--hero-photobox {
  width: 39.49447%;
  padding: 133px 0 0;
}

.h--hero-photobox img {
  width: 100%;
  vertical-align: bottom;
}

.h--hero-photobox.hhpb01 {
  margin-top: 112px;
}

.h--hero-photobox.hhpb02 {
  position: relative;
}

.h--hero-info {
  position: absolute;
  bottom: 0;
  right: 34px;
  max-width: 70%;
  background-color: #E9EFF4;
}

.h--hero-info__inner {
  padding: 30px 15px 30px 30px;
}

.h--hero-info-text {
  color: #51505D;
  line-height: 1.44444;
  margin: 0 0 15px;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

@media screen and (max-width: 768px) {
  .h--hero {
    margin: 0 auto 10.66667vw;
    max-width: initial;
  }
  .h--hero__inner {
    padding: 0;
    position: relative;
  }
  .h--hero-titleMain {
    z-index: 30;
    position: absolute;
    width: 69.33333vw;
    top: 24vw;
    left: 5.33333vw;
    right: 0;
    margin: 0;
  }
  .h--hero-titleMain img {
    width: 100%;
    vertical-align: bottom;
  }
  .h--hero-titleSub {
    position: absolute;
    width: 16vw;
    top: 48vw;
    left: 6.66667vw;
    right: inherit;
    margin: 0;
  }
  .h--hero-titleSub img {
    width: 100%;
    vertical-align: bottom;
  }
  .h--hero-photobox__wrap {
    display: flex;
    justify-content: space-between;
    width: 65vw;
    margin-left: 29.33333vw;
    flex-flow: column;
    padding: 21.33333vw 0 0;
  }
  .h--hero-photobox {
    width: 100%;
    height: 70vw;
    overflow: hidden;
    padding: 0;
  }
  .h--hero-photobox img {
    width: 100%;
    vertical-align: bottom;
  }
  .h--hero-photobox.hhpb01 {
    margin-top: 0;
  }
  .h--hero-photobox.hhpb02 {
    position: relative;
  }
  .h--hero-info {
    position: relative;
    bottom: inherit;
    right: inherit;
    top: inherit;
    margin: 4vw auto 0;
    max-width: 89.33333vw;
    background-color: #E9EFF4;
  }
  .h--hero-info__inner {
    padding: 4vw;
  }
  .h--hero-info-logo {
    width: 53.33333vw;
    margin: 0 auto;
  }
  .h--hero-info-logo img {
    width: 100%;
    vertical-align: bottom;
  }
  .h--hero-info-text {
    line-height: 1.44444;
    margin: 0 0 1.33333vw;
    font-size: 4.26667vw;
    text-align: center;
  }
}

/*  info
--------------------------------------------------------------*/
.h--info {
  margin: 0 0 200px;
}

.h--info-intro {
  max-width: 1366px;
  margin: 0 auto 180px;
  display: flex;
  justify-content: space-between;
}

.h--info-intro-photo {
  padding: 80px 0 0;
  max-width: 61.85944%;
  position: relative;
}

.h--info-intro-photo img {
  width: 100%;
  vertical-align: bottom;
}

.h--info-intro-photo .photo01 {
  width: 100%;
  display: block;
}

.h--info-intro-photo .photo02 {
  width: 23.66864%;
  display: block;
  position: absolute;
  right: -16.56805%;
  bottom: -7.66%;
}

.h--info-intro-title {
  max-width: 8.05271%;
  margin-right: 10.98097%;
}

.h--info-intro-title img {
  width: 100%;
  vertical-align: bottom;
}

.h--info-mainpart {
  max-width: 1068px;
  margin: 0 auto 104px;
  display: flex;
  justify-content: space-between;
}

.h--info-mainpart-photo {
  max-width: 48.12734%;
  display: block;
}

.h--info-mainpart-photo img {
  width: 100%;
  vertical-align: bottom;
}

.h--info-mainpart-message {
  display: block;
}

.h--info-mainpart-message img {
  width: 100%;
  vertical-align: bottom;
}

.h--info-mainpart-title {
  font-size: 2.2rem;
  font-weight: 300;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000;
  letter-spacing: 0.03em;
  line-height: 1.59091;
  margin: 0 0 25px;
}

.h--info-mainpart p {
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 300;
  margin: 0 0 15px;
}

.h--info-detail {
  background-color: #E9EFF4;
  max-width: 1068px;
  margin: 0 auto;
}

.h--info-detail__inner {
  padding: 70px;
}

.h--info-detail-logo {
  max-width: 64px;
  margin: 0 auto 30px;
}

.h--info-detail-logo img {
  width: 100%;
  vertical-align: bottom;
}

.h--info-detail-title {
  font-size: 3.0rem;
  font-weight: 500;
  color: #51505D;
  text-align: center;
  margin: 0 auto 30px;
}

.h--info-detail p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.875;
  text-align: center;
}

.h--info-detail-box {
  margin: 60px 0 0;
  display: flex;
  justify-content: space-between;
}

.h--info-detail-box-content {
  max-width: 38.87689%;
}

.h--info-detail-box-photo {
  max-width: 58.96328%;
  display: block;
}

.h--info-detail-box-photo img {
  width: 100%;
  vertical-align: bottom;
}

.h--info-detail-box-title {
  font-size: 3.0rem;
  font-weight: 300;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  padding: 20px 0 30px;
  margin: 0 0 20px;
  position: relative;
}

.h--info-detail-box-title:after {
  content: "";
  background-color: #DDB79E;
  width: 114.94253%;
  height: 1px;
  bottom: 0;
  display: block;
  position: absolute;
}

.h--info-detail-box p {
  text-align: left;
}

.h--info-detail-box.photo01 .h--info-detail-box-title:after {
  left: -50px;
}

.h--info-detail-box.photo02 .h--info-detail-box-title:after {
  left: 0;
}

.h--info-detail-activity {
  background-color: #EFE9DF;
  max-width: 1068px;
  margin: 0 auto;
}

.h--info-detail-activity__inner {
  padding: 65px 70px;
}

.h--info-detail-activity-title {
  font-size: 2.2rem;
  color: #51505D;
  text-align: center;
  font-weight: 500;
  margin: 0 0 35px;
}

.h--info-detail-activity-list li {
  margin: 0 7.5px;
}

.h--info-detail-activity-list-photo {
  display: block;
  margin: 0 0 15px;
}

.h--info-detail-activity-list-photo img {
  width: 100%;
  vertical-align: bottom;
}

.h--info-detail-activity-list-area {
  display: block;
  margin: 0 0 6px;
  font-size: 1.4rem;
  line-height: 1.71429;
  font-weight: 300;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.03em;
}

.h--info-detail-activity-list-title {
  font-size: 2.2rem;
  line-height: 1.36364;
  font-weight: 300;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.03em;
}

.slick-prev, .slick-next {
  width: 10px;
  height: 22px;
}

.slick-prev::before, .slick-next::before {
  content: "";
  font-size: 0;
  background-image: url(../images/common/prev__button.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 10px;
  height: 22px;
  display: block;
}

.slick-prev::before {
  background-image: url(../images/common/prev__button.svg);
}

.slick-next::before {
  background-image: url(../images/common/next__button.svg);
}

@media screen and (max-width: 768px) {
  .h--info {
    margin: 0 0 16vw;
  }
  .h--info-intro {
    max-width: initial;
    margin: 0 auto 8vw;
    display: flex;
  }
  .h--info-intro-photo {
    padding: 16vw 0 0;
    max-width: 61.85944%;
    position: relative;
  }
  .h--info-intro-photo img {
    width: 100%;
    vertical-align: bottom;
  }
  .h--info-intro-photo .photo01 {
    width: 100%;
    display: block;
  }
  .h--info-intro-photo .photo02 {
    width: 42.60355%;
    display: block;
    position: absolute;
    right: -10.56805%;
    bottom: 0;
  }
  .h--info-intro-title {
    max-width: initial;
    width: 21.33333vw;
    margin-right: 5.33333vw;
  }
  .h--info-mainpart {
    max-width: initial;
    margin: 0 auto 8vw;
    padding: 0 5.33333vw;
    display: block;
  }
  .h--info-mainpart-photo {
    max-width: initial;
    display: block;
    margin: 0 0 4vw;
  }
  .h--info-mainpart-photo img {
    width: 100%;
    vertical-align: bottom;
  }
  .h--info-mainpart-title {
    font-size: 4.8vw;
    line-height: 1.59091;
    margin: 0 0 4vw;
  }
  .h--info-mainpart-title br {
    display: none;
  }
  .h--info-mainpart p {
    font-size: 3.73333vw;
    line-height: 1.71429;
    margin: 0 0 4vw;
  }
  .h--info-mainpart p br {
    display: none;
  }
  .h--info-detail {
    max-width: 89.33333vw;
    margin: 0 auto;
  }
  .h--info-detail__inner {
    padding: 5.33333vw;
  }
  .h--info-detail-logo {
    max-width: 12.8vw;
    margin: 0 auto 4vw;
  }
  .h--info-detail-title {
    font-size: 5.33333vw;
    margin: 0 auto 4vw;
  }
  .h--info-detail p {
    font-size: 3.73333vw;
    line-height: 1.71429;
  }
  .h--info-detail-box {
    margin: 8vw 0 0;
    display: flex;
    justify-content: space-between;
    flex-flow: column;
  }
  .h--info-detail-box-content {
    max-width: initial;
  }
  .h--info-detail-box-photo {
    max-width: initial;
    display: block;
  }
  .h--info-detail-box-photo img {
    width: 100%;
    vertical-align: bottom;
  }
  .h--info-detail-box-title {
    font-size: 5.33333vw;
    padding: 4vw 0 4vw;
    margin: 0 0 4vw;
    position: relative;
    border-bottom: 1px solid #DDB79E;
  }
  .h--info-detail-box-title:after {
    display: none;
  }
  .h--info-detail-box p {
    text-align: left;
  }
  .h--info-detail-box.photo02 .h--info-detail-box-photo {
    order: 1;
  }
  .h--info-detail-box.photo02 .h--info-detail-box-content {
    order: 2;
  }
  .h--info-detail-activity {
    max-width: 89.33333vw;
    margin: 0 auto;
  }
  .h--info-detail-activity__inner {
    padding: 5.33333vw;
  }
  .h--info-detail-activity-title {
    font-size: 4.8vw;
    margin: 0 0 4vw;
    line-height: 1.5;
  }
  .h--info-detail-activity-list li {
    margin: 0 7.5px;
  }
  .h--info-detail-activity-list-photo {
    display: block;
    margin: 0 0 2.66667vw;
  }
  .h--info-detail-activity-list-photo img {
    width: 100%;
    vertical-align: bottom;
  }
  .h--info-detail-activity-list-area {
    display: block;
    margin: 0 0 1.33333vw;
    font-size: 3.73333vw;
    line-height: 1.71429;
    text-align: center;
  }
  .h--info-detail-activity-list-title {
    font-size: 4.26667vw;
    line-height: 1.36364;
    text-align: center;
  }
  .slick-prev, .slick-next {
    width: 10px;
    height: 22px;
  }
  .slick-prev::before, .slick-next::before {
    content: "";
    font-size: 0;
    background-image: url(../images/common/prev__button.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 10px;
    height: 22px;
    display: block;
  }
  .slick-prev::before {
    background-image: url(../images/common/prev__button.svg);
  }
  .slick-next::before {
    background-image: url(../images/common/next__button.svg);
  }
  .slick-prev {
    left: -15px;
  }
  .slick-next {
    right: -15px;
  }
}

/*  promise
--------------------------------------------------------------*/
.h--promise {
  margin: 0 0 196px;
}

.h--promise-titleMain {
  text-align: center;
  margin: 0 0 80px;
}

.h--promise-titleMain span {
  display: inline-block;
  font-size: 4.0rem;
  line-height: 1.25;
  color: #000;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
  position: relative;
}

.h--promise-titleMain span:after {
  content: "";
  display: block;
  width: 208px;
  height: 41px;
  position: absolute;
  top: 40px;
  right: 0;
  background-image: url(../images/second/home/sec02__ps__dec.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.h--promise01-main {
  max-width: 1366px;
  margin: 0 auto 368px;
  min-height: 722px;
  position: relative;
}

.h--promise01-main-photo {
  max-width: 100%;
  position: relative;
  z-index: 10;
  display: block;
}

.h--promise01-main-photo img {
  width: 100%;
  vertical-align: bottom;
}

.h--promise01-main-bg {
  width: 84.041%;
  background-color: #E9EFF4;
  position: absolute;
  height: 722px;
  top: 172px;
  right: 0;
}

.h--promise01-main-box {
  max-width: 42.45974%;
  position: absolute;
  z-index: 11;
  background-color: #FFF;
  bottom: -105px;
  right: 84px;
}

.h--promise01-main-box__inner {
  padding: 40px 30px 40px 50px;
}

.h--promise01-main-box p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.875;
}

.h--promise01-main-box-title {
  display: flex;
  align-items: center;
  margin: 0 0 25px;
}

.h--promise01-main-box-title figure {
  max-width: 90px;
}

.h--promise01-main-box-title figure img {
  width: 100%;
  vertical-align: bottom;
}

.h--promise01-main-box-title span {
  font-size: 3.0rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000;
  letter-spacing: 0.03em;
  font-weight: 300;
  line-height: 1.43333;
}

.h--promise01-info {
  max-width: 974px;
  margin: 0 auto 207px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
}

.h--promise01-info li {
  max-width: 48.05616%;
}

.h--promise01-info-photo {
  display: block;
}

.h--promise01-info-photo img {
  width: 100%;
  vertical-align: bottom;
}

.h--promise01-info-content {
  background-color: #EFE9DF;
}

.h--promise01-info-content__inner {
  padding: 22px;
}

.h--promise01-info-content-title {
  font-size: 2.2rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.03em;
  font-weight: 300;
  margin: 0 0 20px;
}

.h--promise01-info-content-text {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.71429;
}

.h--promise02-main {
  max-width: 1366px;
  margin: 0 auto 162px;
  min-height: 722px;
  position: relative;
}

.h--promise02-main-photo {
  max-width: 100%;
  position: relative;
  z-index: 10;
  display: block;
}

.h--promise02-main-photo img {
  width: 100%;
  vertical-align: bottom;
}

.h--promise02-main-bg {
  width: 74.08492%;
  background-color: #E9EFF4;
  position: absolute;
  height: 936px;
  top: -160px;
  left: 0;
}

.h--promise02-main-box {
  max-width: 42.45974%;
  position: absolute;
  z-index: 11;
  background-color: #FFF;
  left: 84px;
  top: -92px;
}

.h--promise02-main-box__inner {
  padding: 40px 30px 40px 50px;
}

.h--promise02-main-box p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.875;
}

.h--promise02-main-box-title {
  display: flex;
  align-items: center;
  margin: 0 0 25px;
}

.h--promise02-main-box-title figure {
  max-width: 90px;
}

.h--promise02-main-box-title figure img {
  width: 100%;
  vertical-align: bottom;
}

.h--promise02-main-box-title span {
  font-size: 3.0rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000;
  letter-spacing: 0.03em;
  font-weight: 300;
  line-height: 1.43333;
}

.h--promise02-info {
  max-width: 1114px;
  margin: 0 auto 382px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
}

.h--promise02-info li {
  max-width: 24.01501%;
}

.h--promise02-info-photo {
  display: block;
}

.h--promise02-info-photo img {
  width: 100%;
  vertical-align: bottom;
}

.h--promise02-info-content {
  background-color: #EFE9DF;
}

.h--promise02-info-content__inner {
  padding: 15px;
}

.h--promise02-info-content-title {
  font-size: 2.2rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.03em;
  font-weight: 300;
  margin: 0 0 12px;
}

.h--promise02-info-content-text {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.71429;
}

.h--promise03-main {
  max-width: 1366px;
  margin: 0 auto 162px;
  min-height: 722px;
  position: relative;
}

.h--promise03-main-photo {
  max-width: 100%;
  position: relative;
  z-index: 10;
  display: block;
}

.h--promise03-main-photo img {
  width: 100%;
  vertical-align: bottom;
}

.h--promise03-main-bg {
  width: 82.35725%;
  background-color: #E9EFF4;
  position: absolute;
  height: 936px;
  top: -174px;
  right: 0;
}

.h--promise03-main-box {
  max-width: 42.45974%;
  position: absolute;
  z-index: 11;
  background-color: #FFF;
  right: 84px;
  top: -105px;
}

.h--promise03-main-box__inner {
  padding: 40px 30px 40px 50px;
}

.h--promise03-main-box p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.875;
}

.h--promise03-main-box-title {
  display: flex;
  align-items: center;
  margin: 0 0 25px;
}

.h--promise03-main-box-title figure {
  max-width: 90px;
}

.h--promise03-main-box-title figure img {
  width: 100%;
  vertical-align: bottom;
}

.h--promise03-main-box-title span {
  font-size: 3.0rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000;
  letter-spacing: 0.03em;
  font-weight: 300;
  line-height: 1.43333;
}

.h--promise03-info {
  max-width: 1114px;
  margin: 0 auto 15px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
}

.h--promise03-info-title {
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: 0.03em;
  margin: 0 0 25px;
  font-weight: 300;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.h--promise03-info-text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.875;
  text-align: center;
  margin: 0 0 42px;
}

.h--promise03-info.widthAdjust {
  max-width: 844px;
}

.h--promise03-info.widthAdjust li {
  max-width: 32.1608%;
}

.h--promise03-info li {
  max-width: 24.01501%;
}

.h--promise03-info li a {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.h--promise03-info li a:link {
  text-decoration: none;
  color: #000;
}

.h--promise03-info li a:visited {
  text-decoration: none;
  color: #000;
}

.h--promise03-info li a:hover {
  text-decoration: none;
  color: #FFF;
}

.h--promise03-info li a:hover .h--promise03-info-content {
  background-color: #000;
}

.h--promise03-info li a:hover .h--promise03-info-content-title {
  background-image: url(../images/common/icon__exlinks__wh.svg);
}

.h--promise03-info li a:hover .h--promise03-info-photo img {
  transform: scale(1.15);
}

.h--promise03-info-photo {
  display: block;
  height: 160px;
  width: 100%;
  overflow: hidden;
}

.h--promise03-info-photo img {
  width: 100%;
  vertical-align: bottom;
  transform: scale(1);
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.h--promise03-info-content {
  background-color: #EFE9DF;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.h--promise03-info-content__inner {
  padding: 15px;
}

.h--promise03-info-content-cate {
  margin: 0 0 10px;
  background-color: #FFF;
  padding: 5px;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 300;
  color: #000;
}

.h--promise03-info-content-title {
  font-size: 2.2rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.03em;
  font-weight: 300;
  margin: 0 0 6px;
  display: inline-block;
  padding: 0 20px 8px 0;
  border-bottom: 1px solid #DDB79E;
  background-image: url(../images/common/icon__exlinks.svg);
  background-repeat: no-repeat;
  background-size: 10px 8px;
  background-position: right center;
}

.h--promise03-info-content-text {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.42857;
}

.h--promise-detail {
  max-width: 1266px;
  margin: 0 auto;
}

.h--promise-detail-box {
  margin: 0 0 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h--promise-detail-box-content {
  max-width: 43.44392%;
}

.h--promise-detail-box-photo {
  max-width: 53.71248%;
  display: block;
}

.h--promise-detail-box-photo img {
  width: 100%;
  vertical-align: bottom;
}

.h--promise-detail-box-title {
  font-size: 2.2rem;
  font-weight: 300;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  padding: 0 0 20px;
  margin: 0 0 20px;
  position: relative;
}

.h--promise-detail-box-title:after {
  content: "";
  background-color: #DDB79E;
  width: 119.56522%;
  height: 1px;
  bottom: 0;
  display: block;
  position: absolute;
}

.h--promise-detail-box p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.875;
}

.h--promise-detail-box.photo01 .h--promise-detail-box-title:after {
  right: 0;
}

.h--promise-detail-box.photo02 .h--promise-detail-box-title:after {
  left: 0;
}

.h--promise-detail-box.photo01 .h--promise-detail-box-content {
  padding: 0 60px 0 0;
}

.h--promise-detail-box.photo02 .h--promise-detail-box-content {
  padding: 0 0 0 60px;
}

@media screen and (max-width: 768px) {
  .h--promise {
    margin: 0 0 8vw;
  }
  .h--promise-titleMain {
    margin: 0 0 8vw;
  }
  .h--promise-titleMain span {
    font-size: 7.46667vw;
    line-height: 1.33333;
  }
  .h--promise-titleMain span em {
    display: block;
  }
  .h--promise-titleMain span:after {
    content: "";
    display: block;
    width: 31.2vw;
    height: 6.13333vw;
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: -4.66vw;
    left: 29.33333vw;
    background-image: url(../images/second/home/sec02__ps__dec.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .h--promise01-main {
    max-width: initial;
    margin: 0 auto 5.33333vw;
    min-height: auto;
    background-color: #E9EFF4;
  }
  .h--promise01-main-bg {
    display: none;
  }
  .h--promise01-main-box {
    top: -5.66vw;
    max-width: 89.33333vw;
    margin: 0 auto;
    position: relative;
    bottom: inherit;
    right: inherit;
  }
  .h--promise01-main-box__inner {
    padding: 5.33333vw;
  }
  .h--promise01-main-box p {
    font-size: 3.73333vw;
    line-height: 1.71429;
  }
  .h--promise01-main-box p br {
    display: none;
  }
  .h--promise01-main-box-title {
    margin: 0 0 4vw;
  }
  .h--promise01-main-box-title figure {
    max-width: 26.66667vw;
  }
  .h--promise01-main-box-title span {
    font-size: 5.33333vw;
    line-height: 1.43333;
  }
  .h--promise01-main-box-title span br {
    display: none;
  }
  .h--promise01-info {
    max-width: initial;
    margin: 0 auto 10.66667vw;
    padding: 0 5.33333vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
  }
  .h--promise01-info li {
    max-width: 42.66667vw;
    margin: 0 4vw 4vw 0;
    background-color: #EFE9DF;
  }
  .h--promise01-info li:nth-child(2n) {
    margin: 0 0 4vw;
  }
  .h--promise01-info-content__inner {
    padding: 4vw;
  }
  .h--promise01-info-content-title {
    font-size: 4.26667vw;
    margin: 0 0 2.66667vw;
  }
  .h--promise01-info-content-text {
    font-size: 3.73333vw;
    line-height: 1.71429;
  }
  .h--promise02-main {
    max-width: initial;
    margin: 0 auto 5.33333vw;
    min-height: auto;
    background-color: #E9EFF4;
  }
  .h--promise02-main-bg {
    display: none;
  }
  .h--promise02-main-box {
    top: -5.66vw;
    max-width: 89.33333vw;
    margin: 0 auto;
    position: relative;
    bottom: inherit;
    right: inherit;
    left: inherit;
  }
  .h--promise02-main-box__inner {
    padding: 5.33333vw;
  }
  .h--promise02-main-box p {
    font-size: 3.73333vw;
    line-height: 1.71429;
  }
  .h--promise02-main-box p br {
    display: none;
  }
  .h--promise02-main-box-title {
    margin: 0 0 4vw;
  }
  .h--promise02-main-box-title figure {
    max-width: 26.66667vw;
  }
  .h--promise02-main-box-title span {
    font-size: 5.33333vw;
    line-height: 1.43333;
  }
  .h--promise02-main-box-title span br {
    display: none;
  }
  .h--promise02-info {
    max-width: initial;
    margin: 0 auto 10.66667vw;
    padding: 0 5.33333vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
  }
  .h--promise02-info li {
    max-width: 42.66667vw;
    margin: 0 4vw 4vw 0;
    background-color: #EFE9DF;
  }
  .h--promise02-info li:nth-child(2n) {
    margin: 0 0 4vw;
  }
  .h--promise02-info-content__inner {
    padding: 4vw;
  }
  .h--promise02-info-content-title {
    font-size: 4.26667vw;
    margin: 0 0 2.66667vw;
  }
  .h--promise02-info-content-text {
    font-size: 3.73333vw;
    line-height: 1.71429;
  }
  .h--promise03-main {
    max-width: initial;
    margin: 0 auto 5.33333vw;
    min-height: auto;
    background-color: #E9EFF4;
  }
  .h--promise03-main-bg {
    display: none;
  }
  .h--promise03-main-box {
    top: -5.66vw;
    max-width: 89.33333vw;
    margin: 0 auto;
    position: relative;
    bottom: inherit;
    right: inherit;
    left: inherit;
  }
  .h--promise03-main-box__inner {
    padding: 5.33333vw;
  }
  .h--promise03-main-box p {
    font-size: 3.73333vw;
    line-height: 1.71429;
  }
  .h--promise03-main-box p br {
    display: none;
  }
  .h--promise03-main-box-title {
    margin: 0 0 4vw;
  }
  .h--promise03-main-box-title figure {
    max-width: 26.66667vw;
  }
  .h--promise03-main-box-title span {
    font-size: 5.33333vw;
    line-height: 1.43333;
  }
  .h--promise03-main-box-title span br {
    display: none;
  }
  .h--promise03-info {
    max-width: initial;
    margin: 0 auto 0vw;
    padding: 0 5.33333vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
  }
  .h--promise03-info-title {
    text-align: center;
    font-size: 5.86667vw;
    margin: 0 0 4vw;
  }
  .h--promise03-info-text {
    font-size: 3.73333vw;
    line-height: 1.71429;
    margin: 0 0 5.33333vw;
  }
  .h--promise03-info-photo {
    display: block;
    height: auto;
    width: 100%;
  }
  .h--promise03-info-content-cate {
    margin: 0 0 2.66667vw;
    padding: 1.33333vw;
    font-size: 2.93333vw;
  }
  .h--promise03-info li {
    max-width: 42.66667vw;
    margin: 0 4vw 4vw 0;
    background-color: #EFE9DF;
  }
  .h--promise03-info li:nth-child(2n) {
    margin: 0 0 4vw;
  }
  .h--promise03-info.widthAdjust {
    max-width: initial;
  }
  .h--promise03-info.widthAdjust li {
    max-width: 42.66667vw;
  }
  .h--promise03-info-content__inner {
    padding: 4vw;
  }
  .h--promise03-info-content-title {
    font-size: 4.26667vw;
    margin: 0 0 2.66667vw;
    display: inline-block;
    padding: 0 3.73333vw 1.33333vw 0;
    background-size: 2.66667vw 2.13333vw;
    line-height: 1.25;
  }
  .h--promise03-info-content-text {
    font-size: 3.73333vw;
    line-height: 1.71429;
  }
  .h--promise03-info-content-text br {
    display: none;
  }
  .h--promise-detail {
    max-width: initial;
    margin: 0 auto;
    padding: 0 5.33333vw;
  }
  .h--promise-detail-box {
    margin: 0 0 8vw;
    display: flex;
    flex-flow: column;
  }
  .h--promise-detail-box-content {
    max-width: initial;
  }
  .h--promise-detail-box-photo {
    max-width: initial;
    width: 100%;
    margin: 0 0 5.33333vw;
  }
  .h--promise-detail-box-title {
    font-size: 5.33333vw;
    padding: 0 0 4vw;
    margin: 0 0 4vw;
    position: relative;
    border-bottom: 1px solid #DDB79E;
  }
  .h--promise-detail-box-title:after {
    display: none;
  }
  .h--promise-detail-box p {
    font-size: 3.73333vw;
    line-height: 1.71429;
  }
  .h--promise-detail-box.photo01 .h--promise-detail-box-title:after {
    right: inherit;
  }
  .h--promise-detail-box.photo02 .h--promise-detail-box-title:after {
    left: inherit;
  }
  .h--promise-detail-box.photo01 .h--promise-detail-box-content {
    padding: 0;
  }
  .h--promise-detail-box.photo02 .h--promise-detail-box-content {
    padding: 0;
  }
  .h--promise-detail-box.photo02 .h--promise-detail-box-content {
    order: 2;
  }
  .h--promise-detail-box.photo02 .h--promise-detail-box-photo {
    order: 1;
  }
}

/*  wedding
--------------------------------------------------------------*/
.h--wedding {
  padding: 142px 50px 152px;
  background-color: #E9EFF4;
}

.h--wedding-title {
  margin: 0 0 70px;
  text-align: center;
}

.h--wedding-title span {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 300;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000;
  position: relative;
}

.h--wedding-title span em {
  position: relative;
  z-index: 3;
  display: block;
}

.h--wedding-title span:after {
  z-index: 1;
  content: "";
  display: block;
  width: 392px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 30px;
  background-image: url(../images/second/home/sec03__wed__dec.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.h--wedding-intro {
  position: relative;
  margin: 0 auto 152px;
  height: auto;
  padding-top: 55.29225908%;
}

.h--wedding-intro.yatsugatake .h--wedding-intro-photo {
  left: 0;
}

.h--wedding-intro.yatsugatake .h--wedding-intro-box {
  right: 0;
}

.h--wedding-intro.yatsugatake .h--wedding-intro-box-entitle {
  max-width: 180px;
}

.h--wedding-intro.tomamu .h--wedding-intro-photo {
  right: 0;
}

.h--wedding-intro.tomamu .h--wedding-intro-box {
  left: 0;
}

.h--wedding-intro.tomamu .h--wedding-intro-box-entitle {
  max-width: 110px;
}

.h--wedding-intro-photo {
  max-width: 82.93839%;
  position: absolute;
  top: 0;
  display: block;
}

.h--wedding-intro-photo img {
  width: 100%;
  vertical-align: bottom;
}

.h--wedding-intro-box {
  position: absolute;
  display: block;
  bottom: -8.57143%;
  background-color: #FFF;
  max-width: 31.33236%;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.h--wedding-intro-box:link {
  text-decoration: none;
  color: #000;
}

.h--wedding-intro-box:visited {
  text-decoration: none;
  color: #000;
}

.h--wedding-intro-box:hover {
  text-decoration: none;
  background-color: #000;
  color: #FFF;
}

.h--wedding-intro-box__inner {
  padding: 40px 45px;
}

.h--wedding-intro-box-entitle {
  display: block;
  margin: 0 auto 5px;
}

.h--wedding-intro-box-entitle img {
  width: 100%;
  vertical-align: bottom;
}

.h--wedding-intro-box-title {
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  margin: 0 0 20px;
  text-align: center;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
}

.h--wedding-intro-box p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.875;
}

.h--wedding-intro-box-more {
  display: block;
  text-align: right;
}

.h--wedding-intro-box-more em {
  display: block;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
  padding: 0 30px 0 0;
  position: relative;
}

.h--wedding-intro-box-more em:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 6px;
  width: 26px;
  height: 9px;
  background-image: url(../images/common/icon__arrow__01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.h--wedding-inquiry {
  max-width: 1066px;
  border: 1px solid #51505D;
  background-color: #FFF;
  margin: 0 auto;
}

.h--wedding-inquiry__inner {
  padding: 84px 20px 140px;
}

.h--wedding-inquiry-titleEn {
  text-align: center;
  margin: 0 0 20px;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.h--wedding-inquiry-titleEn span {
  color: #DDB79E;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  display: inline-block;
  position: relative;
  padding: 0px 24px 4px;
  border-right: 1px solid #DDB79E;
  border-left: 1px solid #DDB79E;
}

.h--wedding-inquiry-titleJp {
  color: #51505D;
  font-weight: 500;
  text-align: center;
  margin: 0 0 72px;
  font-size: 2.8rem;
}

.h--wedding-inquiry-cbox {
  margin: 0 0 60px;
}

.h--wedding-inquiry-cbox:last-child {
  margin: 0;
}

.h--wedding-inquiry-cbox__wrap {
  display: flex;
  justify-content: space-between;
  max-width: 792px;
  margin: 0 auto;
}

.h--wedding-inquiry-cbox-photo {
  display: block;
  width: 52.39899%;
}

.h--wedding-inquiry-cbox-photo img {
  width: 100%;
  vertical-align: bottom;
}

.h--wedding-inquiry-cbox-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DDB79E;
  height: 57px;
  margin: 0 0 20px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.h--wedding-inquiry-cbox-button span {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  position: relative;
}

.h--wedding-inquiry-cbox-button span:after {
  content: "";
  display: block;
  position: absolute;
  right: -20px;
  top: 6px;
  width: 10px;
  height: 8px;
  background-image: url(../images/common/icon__exlinks__wh.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.h--wedding-inquiry-cbox-button:link {
  text-decoration: none;
}

.h--wedding-inquiry-cbox-button:visited {
  text-decoration: none;
}

.h--wedding-inquiry-cbox-button:hover {
  text-decoration: none;
  background-color: #000;
}

.h--wedding-inquiry-cbox-content {
  display: block;
  width: 44.44444%;
}

.h--wedding-inquiry-cbox-title {
  font-size: 2.2rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 0 0 30px;
  font-weight: 300;
}

.h--wedding-inquiry-cbox-list {
  margin: 0 0 30px;
  display: flex;
}

.h--wedding-inquiry-cbox-list li {
  margin: 0 20px 0 0;
}

.h--wedding-inquiry-cbox-list li:last-child {
  margin: 0;
}

.h--wedding-inquiry-cbox-list li a {
  padding: 0 14px 8px 5px;
  display: block;
  position: relative;
  background-image: url(../images/common/icon__exlinks.svg);
  background-repeat: no-repeat;
  background-size: 10px 8px;
  background-position: right center;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
}

.h--wedding-inquiry-cbox-list li a:link {
  text-decoration: none;
}

.h--wedding-inquiry-cbox-list li a:visited {
  text-decoration: none;
}

.h--wedding-inquiry-cbox-list li a:hover {
  text-decoration: none;
}

.h--wedding-inquiry-cbox-list li a:hover:after {
  width: 100%;
}

.h--wedding-inquiry-cbox-list li a:after {
  content: "";
  display: block;
  height: 1px;
  width: 0%;
  background-color: #000;
  bottom: 0;
  position: absolute;
  z-index: 1;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.h--wedding-inquiry-cbox-list li a:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #DDB79E;
  bottom: 0;
  position: absolute;
  z-index: 0;
}

.h--wedding-inquiry-cbox-text {
  font-size: 1.8rem;
  line-height: 1.66667;
  margin: 0 0 20px;
  font-weight: 300;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.h--wedding-inquiry-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.h--wedding-inquiry-date dt {
  width: 19.88636%;
  margin: 0 0 5px;
  text-align: center;
  padding: 5px 3px;
  font-size: 1.4rem;
  border: 1px solid #000;
  font-weight: 300;
}

.h--wedding-inquiry-date dd {
  margin: 0 0 5px 10px;
  font-size: 1.6rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .h--wedding {
    padding: 10.66667vw 0 16vw;
  }
  .h--wedding-title {
    margin: 0 0 8vw;
  }
  .h--wedding-title span {
    font-size: 8vw;
    line-height: 1.25;
  }
  .h--wedding-title span:after {
    z-index: 1;
    content: "";
    display: block;
    width: 85.33333vw;
    height: 5.06667vw;
    position: absolute;
    right: 0;
    top: 16vw;
  }
  .h--wedding-intro {
    margin: 0 auto 8vw;
    height: auto;
    padding-top: 0;
  }
  .h--wedding-intro.yatsugatake .h--wedding-intro-photo {
    left: inherit;
  }
  .h--wedding-intro.yatsugatake .h--wedding-intro-box {
    right: inherit;
  }
  .h--wedding-intro.yatsugatake .h--wedding-intro-box-entitle {
    max-width: 180px;
  }
  .h--wedding-intro.tomamu .h--wedding-intro-photo {
    right: inherit;
  }
  .h--wedding-intro.tomamu .h--wedding-intro-box {
    left: inherit;
  }
  .h--wedding-intro.tomamu .h--wedding-intro-box-entitle {
    max-width: 110px;
  }
  .h--wedding-intro-photo {
    max-width: 100%;
    position: relative;
    top: inherit;
    margin: 0;
  }
  .h--wedding-intro-box {
    position: relative;
    display: block;
    top: -5.66vw;
    bottom: inherit;
    max-width: 89.33333vw;
    margin: 0 auto;
  }
  .h--wedding-intro-box__inner {
    padding: 5.33333vw;
  }
  .h--wedding-intro-box-entitle {
    margin: 0 auto 1.33333vw;
  }
  .h--wedding-intro-box-title {
    font-size: 4.8vw;
    margin: 0 0 5.33333vw;
  }
  .h--wedding-intro-box p {
    font-size: 3.73333vw;
    line-height: 1.71429;
  }
  .h--wedding-intro-box-more em {
    font-size: 4.8vw;
    padding: 0 8vw 0 0;
  }
  .h--wedding-intro-box-more em:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 2.13333vw;
    width: 4.8vw;
    height: 1.6vw;
  }
  .h--wedding-inquiry {
    max-width: 89.33333vw;
    margin: 0 auto;
  }
  .h--wedding-inquiry__inner {
    padding: 8vw;
  }
  .h--wedding-inquiry-titleEn {
    margin: 0 0 5.33333vw;
  }
  .h--wedding-inquiry-titleEn span {
    font-size: 4.26667vw;
    padding: 0px 2.66667vw 1.06667vw;
  }
  .h--wedding-inquiry-titleJp {
    margin: 0 0 8.53333vw;
    font-size: 5.33333vw;
  }
  .h--wedding-inquiry-cbox {
    margin: 0 0 8vw;
  }
  .h--wedding-inquiry-cbox__wrap {
    display: block;
  }
  .h--wedding-inquiry-cbox-photo {
    width: auto;
    margin: 0 0 4vw;
  }
  .h--wedding-inquiry-cbox-button {
    height: 13.33333vw;
    margin: 0 0 5.33333vw;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
  }
  .h--wedding-inquiry-cbox-button span {
    font-size: 4.26667vw;
  }
  .h--wedding-inquiry-cbox-button:link {
    text-decoration: none;
  }
  .h--wedding-inquiry-cbox-button:visited {
    text-decoration: none;
  }
  .h--wedding-inquiry-cbox-button:hover {
    text-decoration: none;
    background-color: #000;
  }
  .h--wedding-inquiry-cbox-content {
    display: block;
    width: auto;
  }
  .h--wedding-inquiry-cbox-title {
    font-size: 4.8vw;
    margin: 0 0 5.33333vw;
    line-height: 1.25;
  }
  .h--wedding-inquiry-cbox-list {
    margin: 0 0 2.66667vw;
    padding: 0;
    display: block;
  }
  .h--wedding-inquiry-cbox-list li {
    margin: 0 0 4vw;
  }
  .h--wedding-inquiry-cbox-list li:last-child {
    margin: 0;
  }
  .h--wedding-inquiry-cbox-list li a {
    padding: 0 0 2.66667vw;
    background-size: 2.66667vw 2.13333vw;
    font-size: 3.73333vw;
  }
  .h--wedding-inquiry-cbox-text {
    padding: 0;
    font-size: 3.73333vw;
    line-height: 1.5;
    margin: 0 0 4vw;
  }
  .h--wedding-inquiry-date {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .h--wedding-inquiry-date dt {
    width: 25.92593%;
    margin: 0 0 2.66667vw;
    padding: 1.33333vw 0.53333vw;
    font-size: 3.2vw;
  }
  .h--wedding-inquiry-date dd {
    width: 66.66667%;
    margin: 0 0 2.66667vw 2.66667vw;
    font-size: 3.73333vw;
    line-height: 1.42857;
  }
}

/*  Announcement
--------------------------------------------------------------*/
.h--announcement {
  padding: 80px 50px 120px;
}

.h--announcement-maintitle {
  margin: 0 auto 32px;
  text-align: center;
  display: inline-block;
  padding: 25px 40px;
  background-color: #EFE9DF;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  font-weight: 300;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.h--announcement-maintitle__wrap {
  text-align: center;
}

.h--announcement-title {
  font-size: 3.0rem;
  color: #51505D;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
}

.h--announcement-text {
  line-height: 1.875;
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
  margin: 0 0 60px;
}

.h--announcement-detail {
  max-width: 1068px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.h--announcement-detail-photo {
  position: relative;
  width: 55.24345%;
}

.h--announcement-detail-photo:before {
  content: "";
  display: block;
  padding-top: 105.9322034%;
}

.h--announcement-detail-photo img {
  width: 100%;
  vertical-align: bottom;
}

.h--announcement-detail-photo .photo01 {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.h--announcement-detail-photo .photo02 {
  max-width: 42.37288%;
  position: absolute;
  height: auto;
  bottom: 5.9322%;
  left: 4.23729%;
}

.h--announcement-detail-photo .photo03 {
  max-width: 30.50847%;
  position: absolute;
  bottom: 0;
  right: 11.86441%;
}

.h--announcement-detail-data {
  width: 39.32584%;
  padding: 40px 0 0;
}

.h--announcement-detail-data-list {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #D5D5D5;
}

.h--announcement-detail-data-list dt {
  display: inline-block;
  padding: 5px;
  font-weight: 300;
  font-size: 1.4rem;
  margin: 0 0 10px;
  border: 1px solid #D5D5D5;
}

.h--announcement-detail-data-list dd {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.57143;
}

.h--wedding-fair {
  margin: 0 auto 80px;
}

.h--wedding-fair-title {
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  margin: 0 0 30px;
  text-align: center;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
  line-height: 1.63636;
}

.h--wedding-fair-text {
  line-height: 1.875;
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
  margin: 0 0 60px;
}

.h--wedding-fair-prize {
  max-width: 792px;
  background-color: #F7F4EF;
  margin: 0 auto 50px;
}

.h--wedding-fair-prize__inner {
  padding: 30px;
}

.h--wedding-fair-prize p {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.875;
}

.h--wedding-fair-prize-title {
  font-size: 2.0rem;
  font-weight: 700;
  margin: 0 0 15px;
  text-align: center;
}

.h--wedding-fair-ex-title {
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  margin: 0 0 30px;
  text-align: center;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
  line-height: 1.63636;
}

.h--wedding-fair-ex-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 792px;
  margin: 0 auto;
}

.h--wedding-fair-ex-list li {
  width: 30.30303%;
  margin: 0 4.54545% 60px 0;
}

.h--wedding-fair-ex-list li img {
  width: 100%;
  vertical-align: bottom;
}

.h--wedding-fair-ex-list li:nth-last-child(3n) {
  margin: 0 0 60px 0;
}

.h--wedding-fair-ex-list li figcaption {
  display: block;
  margin: 10px 0 0;
  text-align: center;
  font-weight: 300;
  line-height: 1.71429;
}

.h--wedding-fair-ex-button {
  max-width: 352px;
  height: 57px;
  margin: 0 auto;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #51505D;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.h--wedding-fair-ex-button:link {
  text-decoration: none;
}

.h--wedding-fair-ex-button:visited {
  text-decoration: none;
}

.h--wedding-fair-ex-button:hover {
  text-decoration: none;
  background-color: #000;
}

.h--wedding-fair-ex-button span {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  position: relative;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.h--wedding-fair-ex-button span:after {
  content: "";
  display: block;
  position: absolute;
  right: -20px;
  top: 6px;
  width: 10px;
  height: 8px;
  background-image: url(../images/common/icon__exlinks__wh.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  .h--announcement {
    padding: 13.33333vw 4.26667vw;
  }
  .h--announcement-maintitle {
    margin: 0 auto 6.4vw;
    padding: 5.33333vw;
    font-size: 3.73333vw;
    letter-spacing: 0.03em;
    font-weight: 300;
    font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  }
  .h--announcement-maintitle__wrap {
    padding: 0;
  }
  .h--announcement-title {
    font-size: 4.8vw;
    margin: 0 0 8vw;
  }
  .h--announcement-text {
    font-size: 3.73333vw;
    text-align: left;
    margin: 0 0 8vw;
  }
  .h--announcement-text br {
    display: none;
  }
  .h--announcement-detail {
    margin: 0 auto;
    display: block;
  }
  .h--announcement-detail-photo {
    position: relative;
    width: auto;
  }
  .h--announcement-detail-data {
    width: auto;
    padding: 10.66667vw 0 0;
  }
  .h--announcement-detail-data-list {
    margin: 0 0 5.33333vw;
    padding: 0 0 5.33333vw;
  }
  .h--announcement-detail-data-list dt {
    padding: 1.33333vw;
    font-size: 3.73333vw;
    margin: 0 0 2.66667vw;
  }
  .h--announcement-detail-data-list dd {
    font-weight: 300;
    font-size: 3.73333vw;
  }
  .h--wedding-fair {
    margin: 0 auto 10.66667vw;
  }
  .h--wedding-fair-title {
    font-size: 4.26667vw;
    margin: 0 0 4vw;
  }
  .h--wedding-fair-text {
    font-size: 3.73333vw;
    margin: 0 0 10.66667vw;
    text-align: left;
  }
  .h--wedding-fair-text br {
    display: none;
  }
  .h--wedding-fair-prize {
    margin: 0 auto 10.66667vw;
  }
  .h--wedding-fair-prize__inner {
    padding: 4vw;
  }
  .h--wedding-fair-prize p {
    font-size: 3.73333vw;
    text-align: left;
  }
  .h--wedding-fair-prize-title {
    font-size: 4.26667vw;
    margin: 0 0 2.66667vw;
  }
  .h--wedding-fair-ex-title {
    font-size: 4.8vw;
    margin: 0 0 8vw;
  }
  .h--wedding-fair-ex-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 792px;
    margin: 0 auto;
  }
  .h--wedding-fair-ex-list li {
    width: 46.71717%;
    margin: 0 4.54545% 13.33333vw 0;
  }
  .h--wedding-fair-ex-list li img {
    width: 100%;
    vertical-align: bottom;
  }
  .h--wedding-fair-ex-list li:nth-last-child(3n) {
    margin: 0 4.54545% 13.33333vw 0;
  }
  .h--wedding-fair-ex-list li:nth-last-child(2n) {
    margin: 0 0 13.33333vw 0;
  }
  .h--wedding-fair-ex-list li figcaption {
    margin: 1.33333vw 0 0;
    font-size: 3.2vw;
    text-align: left;
  }
  .h--wedding-fair-ex-list li figcaption br {
    display: none;
  }
  .h--wedding-fair-ex-button {
    max-width: 352px;
    height: 57px;
    margin: 0 auto;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #51505D;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
  }
  .h--wedding-fair-ex-button:link {
    text-decoration: none;
  }
  .h--wedding-fair-ex-button:visited {
    text-decoration: none;
  }
  .h--wedding-fair-ex-button:hover {
    text-decoration: none;
    background-color: #000;
  }
  .h--wedding-fair-ex-button span {
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    position: relative;
    font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  }
  .h--wedding-fair-ex-button span:after {
    content: "";
    display: block;
    position: absolute;
    right: -20px;
    top: 6px;
    width: 10px;
    height: 8px;
    background-image: url(../images/common/icon__exlinks__wh.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
}

/*  h--topics
--------------------------------------------------------------*/
.h--topics {
  max-width: 1068px;
  margin: 0 auto 64px;
  border: 1px solid #E5D7C0;
}

.h--topics__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h--topics-title {
  width: 16.85393%;
  background-color: #F7F4EF;
  display: flex;
  justify-content: center;
  padding: 25px 0;
  letter-spacing: 0.03em;
  font-weight: 300;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.h--topics-contents {
  width: 76.77903%;
}

.h--topics-contents p {
  font-weight: 300;
  font-size: 1.6rem;
}

.h--topics-contents p a {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.h--topics-contents p a:link {
  text-decoration: underline;
  color: #51505D;
}

.h--topics-contents p a:visited {
  text-decoration: underline;
  color: #51505D;
}

.h--topics-contents p a:hover {
  text-decoration: underline;
  color: #51505D;
  opacity: 0.45;
}

@media screen and (max-width: 768px) {
  .h--topics {
    max-width: initial;
    padding: 0;
    margin: 0 5.33333vw 8.53333vw;
  }
  .h--topics-title {
    width: 25%;
    padding: 10.66667vw 0;
    font-size: 4.26667vw;
    font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  }
  .h--topics-contents {
    width: 75%;
    padding: 0 0 0 4vw;
  }
  .h--topics-contents p {
    font-weight: 300;
    font-size: 3.2vw;
    line-height: 1.75;
  }
}

/*--------------------------------------------------------------
    # _components.scss
--------------------------------------------------------------*/
/*  Common [titleBlock]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    # _pages.scss
--------------------------------------------------------------*/
/*  second [common]
--------------------------------------------------------------*/
.clearance--box {
  height: 94px;
}

@media screen and (max-width: 768px) {
  .clearance--box {
    height: 18.66667vw;
  }
}

/*  second [hero]
--------------------------------------------------------------*/
.c--hero {
  max-width: 100%;
  padding: 36px 0 0;
}

.c--hero__inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c--hero-title {
  width: 364px;
}

.c--hero-title-main {
  font-size: 4.1rem;
  font-weight: 300;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: 1.46341;
  margin: 0 0 36px;
  letter-spacing: 0.03em;
}

.c--hero-title-sub {
  font-size: 2.2rem;
  font-weight: 300;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: 1.59091;
  letter-spacing: 0.03em;
}

.c--hero-title__inner {
  padding: 0 0 0 50px;
}

.c--hero--images {
  flex: 1;
}

.c--hero--images img {
  width: 100%;
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .c--hero {
    max-width: initial;
    padding: 0;
    background-color: #E9EFF4;
  }
  .c--hero__inner {
    max-width: initial;
    display: flex;
    flex-flow: column;
  }
  .c--hero-title {
    width: 89.33333vw;
    background-color: #FFF;
    position: relative;
    top: -7.66vw;
    order: 2;
    z-index: 3;
  }
  .c--hero-title-main {
    font-size: 5.33333vw;
    line-height: 1.46341;
    margin: 0 0 2.66667vw;
    letter-spacing: 0.03em;
    text-align: center;
  }
  .c--hero-title-sub {
    font-size: 4.26667vw;
    line-height: 1.59091;
    text-align: center;
  }
  .c--hero-title__inner {
    padding: 5.33333vw;
  }
  .c--hero--images {
    order: 1;
    position: relative;
    z-index: 2;
  }
  .c--hero--images img {
    width: 100%;
    vertical-align: bottom;
  }
}

/*  second [message]
--------------------------------------------------------------*/
.c--message {
  padding: 130px 0 90px;
  max-width: 1366px;
  margin: 0 auto;
}

.c--message-title {
  text-align: center;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.03em;
  font-size: 4.0rem;
  font-weight: 300;
  margin: 0 0 40px;
}

.c--message p {
  font-weight: 300;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .c--message {
    padding: 10.66667vw 5.33333vw;
    max-width: initial;
  }
  .c--message-title {
    font-size: 7.46667vw;
    font-weight: 300;
    margin: 0 0 5.33333vw;
  }
  .c--message p {
    font-size: 3.73333vw;
    line-height: 2.25;
  }
}

/*  second [c--photobox]
--------------------------------------------------------------*/
.c--photobox {
  margin: 0 auto 240px;
  max-width: 1366px;
  position: relative;
}

.c--photobox.photobox--addjust {
  margin: 0 auto 360px;
}

.c--photobox-slider li img {
  width: 100%;
  vertical-align: bottom;
}

.c--photobox-detail {
  position: absolute;
  top: 510px;
  max-width: 490px;
  background-color: #FFF;
  z-index: 3;
}

.c--photobox-detail__inner {
  padding: 40px;
}

.c--photobox-detail p {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.875;
}

.c--photobox-detail-title {
  position: relative;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.03em;
  font-size: 2.2rem;
  font-weight: 300;
  margin: 0 0 22px;
  padding: 0 0 22px;
  line-height: 1.45455;
}

.c--photobox-detail-title:after {
  content: "";
  background-color: #DDB79E;
  width: 550px;
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
}

.c--photobox.leftphoto .c--photobox-slider {
  padding: 0 150px 0 0;
}

.c--photobox.leftphoto .c--photobox-detail {
  right: 0;
}

.c--photobox.leftphoto .c--photobox-detail-title:after {
  right: 0;
}

.c--photobox.leftphoto .slick-dots {
  margin: 0 0 0 50px;
}

.c--photobox.rightphoto .c--photobox-slider {
  padding: 0 0 0 150px;
}

.c--photobox.rightphoto .c--photobox-detail {
  left: 0;
}

.c--photobox.rightphoto .c--photobox-detail-title:after {
  left: 0;
}

.c--photobox.rightphoto .slick-dots {
  margin: 0 0 0 -50px;
  left: 0;
  text-align: right;
}

.c--photobox .slick-dots {
  bottom: -50px;
  text-align: left;
}

.c--photobox .slick-dots li {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 5px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.c--photobox .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 160px;
  height: 5px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #EDEDED;
}

.c--photobox .slick-dots li button:before {
  display: none;
}

.c--photobox .slick-dots li.slick-active button {
  background: #050505;
}

@media screen and (max-width: 768px) {
  .c--photobox {
    margin: 0 auto 10.66667vw;
    max-width: initial;
  }
  .c--photobox-detail {
    position: relative;
    top: inherit;
    max-width: initial;
  }
  .c--photobox-detail__inner {
    padding: 4vw;
  }
  .c--photobox-detail p {
    font-size: 3.73333vw;
    line-height: 1.875;
  }
  .c--photobox.photobox--addjust {
    margin: 0 auto 10.66667vw;
  }
  .c--photobox-detail-title {
    font-size: 5.33333vw;
    margin: 0 0 4vw;
    padding: 0 0 4vw;
  }
  .c--photobox-detail-title:after {
    content: "";
    width: 89.33333vw;
    background-color: #DDB79E;
    left: 0;
  }
  .c--photobox.leftphoto .c--photobox-slider {
    padding: 0 0 0 0;
  }
  .c--photobox.leftphoto .c--photobox-detail {
    right: 0;
  }
  .c--photobox.leftphoto .c--photobox-detail-title:after {
    right: 0;
  }
  .c--photobox.leftphoto .slick-dots {
    margin: 0 0 0 5.33333vw;
  }
  .c--photobox.rightphoto .c--photobox-slider {
    padding: 0 0 0 0;
  }
  .c--photobox.rightphoto .c--photobox-detail {
    left: 0;
  }
  .c--photobox.rightphoto .c--photobox-detail-title:after {
    left: 0;
  }
  .c--photobox.rightphoto .slick-dots {
    margin: 0 0 0 5.33333vw;
    left: 0;
    text-align: left;
  }
  .c--photobox .slick-dots {
    bottom: -6.33vw;
    text-align: left;
  }
  .c--photobox .slick-dots li {
    position: relative;
    display: inline-block;
    width: 21.33333vw;
    height: 0.8vw;
    margin: 0;
    padding: 0;
    cursor: pointer;
  }
  .c--photobox .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 21.33333vw;
    height: 0.8vw;
  }
  .c--photobox .slick-dots li button:before {
    display: none;
  }
  .c--photobox .slick-dots li.slick-active button {
    background: #050505;
  }
}

/*  second [c--photobox]
--------------------------------------------------------------*/
.c--stay-title {
  text-align: center;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.03em;
  font-size: 3.5rem;
  font-weight: 300;
  margin: 0 0 20px;
}

.c--stay-text {
  font-weight: 300;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 64px;
}

.c--stay-slider__wrap {
  background-color: #E9EFF4;
  padding: 80px 0 144px;
  overflow: hidden;
}

.c--stay-slider__wrap__inner {
  max-width: 1066px;
  margin: 0 auto;
}

.c--stay-slider-list li.slick-slide {
  width: 445px;
  margin: 0 15px !important;
}

.c--stay-slider-list-images {
  display: block;
}

.c--stay-slider-list-images img {
  width: 100%;
  vertical-align: bottom;
}

.c--stay-slider-list-content {
  background-color: #FFF;
}

.c--stay-slider-list-content__inner {
  padding: 25px 25px 40px;
}

.c--stay .slick-list {
  width: calc(100% + (100vw - 1066px) / 2);
  overflow: hidden;
  z-index: 2;
}

.c--stay .slick-nav-arrows {
  position: absolute;
  top: -40px;
  right: 0%;
}

.c--stay .slick-arrow {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #000;
}

.c--stay .slick-next {
  top: inherit;
  bottom: -30%;
  right: inherit;
  left: 1100px;
}

.c--stay .slick-next:before {
  background-image: url(../images/common/next__button__wh.svg);
  opacity: 1.0;
}

.c--stay .slick-prev {
  top: inherit;
  bottom: -30%;
  left: 1000px;
}

.c--stay .slick-prev:before {
  background-image: url(../images/common/prev__button__wh.svg);
  opacity: 1.0;
}

.c--stay .slick-next:before, .c--stay .slick-prev:before {
  color: #000;
}

.c--stay .slick-dots {
  bottom: -50px;
  text-align: left;
}

.c--stay .slick-dots li {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 5px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.c--stay .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 100px;
  height: 5px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #FFF;
}

.c--stay .slick-dots li button:before {
  display: none;
}

.c--stay .slick-dots li.slick-active button {
  background: #050505;
}

@media screen and (max-width: 768px) {
  .c--stay-title {
    font-size: 6.4vw;
    margin: 0 0 5.33333vw;
  }
  .c--stay-text {
    font-size: 4.26667vw;
    margin: 0 0 8vw;
  }
  .c--stay-slider__wrap {
    padding: 8vw 0 10.66667vw;
    overflow: hidden;
  }
  .c--stay-slider__wrap__inner {
    max-width: initial;
    margin: 0 auto;
  }
  .c--stay-slider-list li.slick-slide {
    width: auto;
    margin: 0 5.33333vw !important;
  }
  .c--stay-slider-list-images {
    display: block;
  }
  .c--stay-slider-list-images img {
    width: 100%;
    vertical-align: bottom;
  }
  .c--stay-slider-list-content {
    background-color: #FFF;
  }
  .c--stay-slider-list-content__inner {
    padding: 4vw 4vw 8vw;
  }
  .c--stay .slick-list {
    width: auto;
    overflow: hidden;
    z-index: 2;
  }
  .c--stay .slick-nav-arrows {
    position: absolute;
    top: -40px;
    right: 0%;
  }
  .c--stay .slick-arrow {
    display: inline-flex;
    width: 13.33333vw;
    height: 13.33333vw;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #000;
  }
  .c--stay .slick-next {
    top: inherit;
    bottom: 40%;
    left: inherit;
    right: 1.66vw;
    z-index: 10;
  }
  .c--stay .slick-next:before {
    background-image: url(../images/common/next__button__wh.svg);
    opacity: 1.0;
  }
  .c--stay .slick-prev {
    top: inherit;
    bottom: 40%;
    left: inherit;
    left: 1.66vw;
    z-index: 10;
  }
  .c--stay .slick-prev:before {
    background-image: url(../images/common/prev__button__wh.svg);
    opacity: 1.0;
  }
  .c--stay .slick-next:before, .c--stay .slick-prev:before {
    color: #000;
  }
  .c--stay .slick-dots {
    bottom: -6.667vw;
    left: 6.66667vw;
    text-align: left;
  }
  .c--stay .slick-dots li {
    width: 8vw;
    height: 1.33333vw;
    cursor: pointer;
  }
  .c--stay .slick-dots li button {
    width: 8vw;
    height: 1.33333vw;
  }
  .c--stay .slick-dots li button:before {
    display: none;
  }
  .c--stay .slick-dots li.slick-active button {
    background: #050505;
  }
}

/*  second [c--recommend]
--------------------------------------------------------------*/
.c--recommend {
  position: relative;
  padding: 0 32px;
  margin: 0 0 80px;
}

.c--recommend__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.c--recommend-title {
  position: relative;
  text-align: center;
  margin: 0 0 40px;
}

.c--recommend-title:after {
  content: "";
  background-color: #000;
  width: 100%;
  height: 1px;
  display: block;
  top: 50%;
  left: 0;
  position: absolute;
  z-index: -1;
}

.c--recommend-title span {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.03em;
  font-size: 3.5rem;
  font-weight: 300;
  display: inline-block;
  background-color: #FFF;
  padding: 10px 30px;
}

.c--recommend-list {
  display: flex;
  flex-wrap: wrap;
}

.c--recommend-list li {
  max-width: 44.5%;
  margin: 0 10.8% 25px 0;
}

.c--recommend-list li:nth-child(2n) {
  margin: 0 0 25px;
}

.c--recommend-list-photo {
  margin: 0 0 20px;
}

.c--recommend-list-photo img {
  width: 100%;
  vertical-align: bottom;
}

.c--recommend-list-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 20px;
}

.c--recommend-list-text {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.875;
}

@media screen and (max-width: 768px) {
  .c--recommend {
    padding: 0 5.33333vw;
    margin: 0 0 10.66667vw;
  }
  .c--recommend__inner {
    max-width: initial;
  }
  .c--recommend-title {
    margin: 0 0 5.33333vw;
  }
  .c--recommend-title span {
    font-size: 6.4vw;
    padding: 2.66667vw 5.33333vw;
  }
  .c--recommend-list {
    display: block;
  }
  .c--recommend-list li {
    max-width: initial;
    width: auto;
    margin: 0 0 5.33333vw;
  }
  .c--recommend-list li:nth-child(2n) {
    margin: 0 0 5.33333vw;
  }
  .c--recommend-list-photo {
    margin: 0 0 4vw;
  }
  .c--recommend-list-title {
    font-size: 4.26667vw;
    margin: 0 0 5.33333vw;
  }
  .c--recommend-list-text {
    font-size: 3.73333vw;
  }
}

/*  second [c--about]
--------------------------------------------------------------*/
.c--about {
  background-color: #E9EFF4;
  padding: 132px 24px 32px;
}

.c--about__inner {
  max-width: 1066px;
  margin: 0 auto;
}

.c--about-title {
  letter-spacing: 0.03em;
  font-size: 3.5rem;
  font-weight: 300;
  margin: 0 0 64px;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-align: center;
}

.c--about-main img {
  width: 100%;
  vertical-align: bottom;
}

.c--about-contents {
  background-color: #FFF;
  position: relative;
  top: -110px;
  width: 1000px;
  margin: 0 auto;
}

.c--about-contents__inner {
  padding: 45px 140px 65px;
}

.c--about-contents-subtitle {
  display: block;
  margin: 0 auto 32px;
  width: 110px;
}

.c--about-contents-subtitle.tomamu {
  width: 110px;
}

.c--about-contents-subtitle.yatsugatake {
  width: 180px;
}

.c--about-contents-title {
  letter-spacing: 0.03em;
  font-size: 3.5rem;
  font-weight: 300;
  margin: 0 0 32px;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-align: center;
}

.c--about-contents-text {
  font-size: 1.6rem;
  line-height: 1.875;
  text-align: center;
  font-weight: 300;
  margin: 0 0 35px;
}

.c--about-contents-button {
  display: flex;
  background-color: #000;
  border: 2px solid #000;
  background-image: url(../images/common/icon__arrow__02.svg);
  background-repeat: no-repeat;
  background-size: 42px 14px;
  background-position: 96.5% center;
  margin: 0 0 20px;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.c--about-contents-button span {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.0rem;
  line-height: 1.7;
  text-align: center;
  font-weight: 300;
}

.c--about-contents-button:link {
  color: #FFF;
  text-decoration: none;
}

.c--about-contents-button:visited {
  color: #FFF;
  text-decoration: none;
}

.c--about-contents-button:hover {
  color: #000;
  text-decoration: none;
  background-color: #FFF;
  background-image: url(../images/common/icon__arrow__02__over.svg);
}

.c--about-list {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
}

.c--about-list li {
  width: 30.55556%;
}

.c--about-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 3px solid #000;
  min-height: 50px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.c--about-list li a:link {
  color: #000;
  text-decoration: none;
}

.c--about-list li a:visited {
  color: #000;
  text-decoration: none;
}

.c--about-list li a:hover {
  color: #FFF;
  text-decoration: none;
  background-color: #000;
}

.c--about-list li a:hover span:after {
  background-image: url(../images/common/icon__exlinks__wh.svg);
}

.c--about-list li a span {
  display: block;
  padding: 0;
  position: relative;
}

.c--about-list li a span:after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 8px;
  top: 6px;
  right: -20px;
  background-image: url(../images/common/icon__exlinks.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.c--about-meta {
  margin: 0 0 20px;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.c--about-meta span {
  font-size: 2.7rem;
}

.c--about-info {
  display: flex;
  justify-content: space-between;
}

.c--about-info li {
  width: 48.35%;
  display: flex;
  align-items: center;
}

.c--about-info .head {
  border: 1px solid #000;
  padding: 5px;
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0 20px 0 0;
  min-width: 80px;
  text-align: center;
}

.c--about-info .content {
  font-size: 1.4rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .c--about {
    padding: 10.66667vw 5.33333vw;
  }
  .c--about__inner {
    max-width: initial;
  }
  .c--about-title {
    font-size: 6.4vw;
    margin: 0 0 8vw;
    line-height: 1.25;
  }
  .c--about-main {
    margin: 0 -5.36vw;
  }
  .c--about-main img {
    width: 100%;
    vertical-align: bottom;
  }
  .c--about-contents {
    top: -4.66vw;
    width: 89.33333vw;
    margin: 0 auto;
  }
  .c--about-contents__inner {
    padding: 10.66667vw 5.33333vw;
  }
  .c--about-contents-subtitle {
    margin: 0 auto 4vw;
    width: 21.33333vw;
  }
  .c--about-contents-title {
    font-size: 6.4vw;
    margin: 0 0 4vw;
  }
  .c--about-contents-text {
    font-size: 3.73333vw;
    text-align: left;
    margin: 0 0 5.33333vw;
  }
  .c--about-contents-text br {
    display: none;
  }
  .c--about-contents-button {
    display: flex;
    background-size: 6.4vw 1.86667vw;
    min-height: 21.33333vw;
  }
  .c--about-contents-button span {
    font-size: 4.8vw;
    line-height: 1.30769;
  }
  .c--about-list {
    margin: 0 0 5.33333vw;
    display: block;
  }
  .c--about-list li {
    width: auto;
    margin: 0 0 2.66667vw;
  }
  .c--about-list li a {
    border: 0.53333vw solid #000;
    min-height: 16vw;
  }
  .c--about-list li a span {
    display: block;
    padding: 0;
    position: relative;
    font-size: 3.46667vw;
  }
  .c--about-list li a span:after {
    content: "";
    display: block;
    position: absolute;
    width: 2.66667vw;
    height: 2.26667vw;
    top: 0.8vw;
    right: -5.33vw;
  }
  .c--about-meta {
    margin: 0 0 5.33333vw;
    font-size: 4.26667vw;
    text-align: center;
    line-height: 1.5;
  }
  .c--about-meta span {
    font-size: 6.4vw;
  }
  .c--about-info {
    display: block;
  }
  .c--about-info li {
    width: auto;
    display: flex;
    align-items: center;
  }
  .c--about-info .head {
    padding: 1.33333vw;
    font-size: 3.2vw;
    margin: 0 5.33333vw 0 0;
  }
  .c--about-info .content {
    font-size: 4.26667vw;
  }
}

/*--------------------------------------------------------------
    # _stay.scss
--------------------------------------------------------------*/
/*  stay [tomamu]
--------------------------------------------------------------*/
@font-face {
  font-family: "Notera";
  src: url("../font/Notera.eot");
  src: url("../font/Notera.woff") format("woff"), url("../font/Notera.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* stay */
.wrap {
  box-sizing: content-box;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.wrap.-narrow {
  max-width: 980px;
}

.stay {
  margin-top: 120px;
  padding-top: 90px;
  padding-bottom: 100px;
  background-color: #d6e9e7;
  letter-spacing: .1em;
  line-height: 1.75;
}

.stay img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-transition: .5s;
  transition: .5s;
}

.stay__headline {
  font-size: 32px;
  font-size: 3.2rem;
  text-align: center;
}

.stay__lead {
  margin-top: 25px;
  font-family: "Lato", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, メイリオ, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  /*
		> span {
			position: relative;
			&::before,
			&::after {
				content: "";
				position: absolute;
				top: 50%;
				width: 338px;
				height: 16px;
				background: url(/assets/img/common/ic_line.png) left center no-repeat;
			}
			&::before {
				right: calc(100%  + 20px);
				transform: translateY(-50%);
			}
			&::after {
				left: calc(100%  + 20px);
				transform: translateY(-50%) scale(-1, -1);
			}
		}
		*/
}

@media only screen and (max-width: 768px) {
  .stay {
    margin-top: 65px;
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .stay__headline {
    font-size: 2.2rem;
  }
  .stay__lead {
    margin-top: 15px;
    font-size: 1.2rem;
  }
  .stay__lead > span:before, .stay__lead > span:after {
    content: none;
  }
}

/* enjoy-schedule */
.enjoy-schedule {
  position: relative;
  margin-top: 80px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #fff;
  border: 1px solid #878787;
}

.enjoy-schedule__headline {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 484px;
  height: 62px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.enjoy-schedule__headline:before, .enjoy-schedule__headline:after {
  content: "";
  position: absolute;
  top: 13px;
  width: 60px;
  height: 62px;
  border: 1px solid #878787;
  background-color: #fff;
}

.enjoy-schedule__headline:before {
  left: -37px;
}

.enjoy-schedule__headline:after {
  right: -37px;
}

.enjoy-schedule__headline > span {
  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: relative;
  z-index: 3;
  height: 100%;
  border: 1px solid #878787;
  background-color: #fff;
}

.enjoy-schedule__headline br {
  display: none;
}

.enjoy-schedule__unit {
  margin-top: 80px;
}

.enjoy-schedule__unit:first-child {
  margin-top: 0;
}

.enjoy-schedule__unit:first-child .enjoy-schedule__item:first-child {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.enjoy-schedule__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.enjoy-schedule__day {
  font-family: "Crimson Text", sans-serif;
  font-size: 70px;
  font-size: 7rem;
  letter-spacing: normal;
  line-height: 1;
}

.enjoy-schedule__day span {
  margin-right: 5px;
  font-family: "Notera", sans-serif;
  font-size: 60px;
  font-size: 6rem;
  letter-spacing: normal;
}

.enjoy-schedule__lead {
  margin-left: 40px;
  font-size: 16px;
  font-size: 1.6rem;
}

.enjoy-schedule__contents {
  margin-top: 35px;
}

.enjoy-schedule__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.enjoy-schedule__item:not(:first-child) {
  margin-top: 50px;
}

.enjoy-schedule__item.-rev .enjoy-schedule__text {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -ms-flex-preferred-size: 335px;
  flex-basis: 335px;
}

.enjoy-schedule__item.-rev .enjoy-schedule__photo {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -ms-flex-preferred-size: calc(600 / 980 * 100%);
  flex-basis: calc(600 / 980 * 100%);
  margin-right: 45px;
  margin-left: 0;
}

.enjoy-schedule__item.-rev + .enjoy-schedule__sub {
  margin-top: -25px;
}

.enjoy-schedule__item.-typeL {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.enjoy-schedule__item.-has-illust {
  margin-bottom: 80px;
}

.enjoy-schedule__text {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -ms-flex-preferred-size: 280px;
  flex-basis: 280px;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 1;
}

.enjoy-schedule__text p {
  margin-bottom: 20px;
  line-height: 1.75;
}

.enjoy-schedule__time {
  color: #acacac;
  font-family: "Crimson Text", sans-serif;
  font-size: 60px;
  font-size: 6rem;
  letter-spacing: normal;
  line-height: 1;
}

.enjoy-schedule__headline-day {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}

.enjoy-schedule__photo {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -ms-flex-preferred-size: calc(680 / 980 * 100%);
  flex-basis: calc(680 / 980 * 100%);
  margin-left: 20px;
}

.enjoy-schedule__illust {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: -14.286%;
}

.enjoy-schedule__illust.-other01 {
  top: 0;
  bottom: auto;
  margin-top: -12.755%;
  margin-bottom: 0;
}

.enjoy-schedule__illust.-other02 {
  right: calc(700 / 980 * 100%);
  margin-bottom: -4.592%;
}

.enjoy-schedule__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  margin-top: 25px;
}

.enjoy-schedule__sub + .enjoy-schedule__item {
  margin-top: 25px;
}

.enjoy-schedule__sub.-rev {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: -25px;
}

.enjoy-schedule__sub.-rev .enjoy-schedule__sub-photo, .enjoy-schedule__sub.-rev .enjoy-schedule__sub-illust {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.enjoy-schedule__sub.-rev .enjoy-schedule__sub-illust {
  margin-right: 0;
  margin-left: 40px;
}

.enjoy-schedule__sub-photo {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 34.694%;
}

.enjoy-schedule__sub-photo-2nd {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  -ms-flex-preferred-size: calc(680 / 980 * 100%);
  flex-basis: calc(680 / 980 * 100%);
  margin-top: 25px;
  margin-right: calc(230 / 980 * 100%);
}

.enjoy-schedule__sub-photo-2nd:last-child {
  margin-right: calc(200 / 980 * 100%);
}

.enjoy-schedule__sub-photo-2nd + .enjoy-schedule__sub-illust {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
  margin: -100px 0 0 calc(30 / 980 * 100%);
}

.enjoy-schedule__sub-photo-2nd + .enjoy-schedule__sub-illust.-small {
  margin-top: -80px;
}

.enjoy-schedule__sub-illust {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 20.408%;
  margin-top: 115px;
  margin-right: 40px;
}

.enjoy-schedule__sub-illust.-other01 {
  position: absolute;
  top: -50px;
  right: calc(700 / 980 * 100%);
  width: 16.327%;
  margin-top: 0;
  margin-right: 0;
}

.enjoy-schedule__sub-illust.-other02 {
  width: 16.327%;
  margin-top: 45px;
}

.enjoy-schedule__sub-illust.-small img {
  width: 60%;
}

.enjoy-schedule__column {
  margin-top: 100px;
}

.enjoy-schedule__item-only {
  margin-top: 40px;
}

@media only screen and (max-width: 980px) {
  .enjoy-schedule__illust {
    margin-bottom: -22.286%;
  }
  .enjoy-schedule__illust.-other02 {
    margin-bottom: -16.592%;
  }
}

@media only screen and (max-width: 767px) {
  .enjoy-schedule {
    margin: 50px -5.334vw 0;
    padding-top: 60px;
    padding-bottom: 80px;
    border-right: 0;
    border-left: 0;
  }
  .enjoy-schedule__headline {
    max-width: 250px;
    height: 70px;
    font-size: 1.6rem;
  }
  .enjoy-schedule__headline:before, .enjoy-schedule__headline:after {
    width: 30px;
    height: 70px;
  }
  .enjoy-schedule__headline:before {
    left: -13px;
  }
  .enjoy-schedule__headline:after {
    right: -13px;
  }
  .enjoy-schedule__headline br {
    display: block;
  }
  .enjoy-schedule__unit {
    margin-top: 55px;
  }
  .enjoy-schedule__unit:first-child {
    margin-top: 0;
  }
  .enjoy-schedule__header {
    display: block;
  }
  .enjoy-schedule__day {
    font-size: 5rem;
  }
  .enjoy-schedule__day span {
    font-size: 5rem;
  }
  .enjoy-schedule__lead {
    margin-top: 25px;
    margin-left: 0;
  }
  .enjoy-schedule__contents {
    margin-top: 35px;
  }
  .enjoy-schedule__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .enjoy-schedule__item:not(:first-child) {
    margin-top: 35px;
  }
  .enjoy-schedule__item.-rev .enjoy-schedule__text {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    padding-left: 6.667vw;
  }
  .enjoy-schedule__item.-rev .enjoy-schedule__photo {
    margin-right: 7.334vw;
    margin-left: -5.334vw;
  }
  .enjoy-schedule__item.-rev + .enjoy-schedule__sub {
    margin-top: 15px;
  }
  .enjoy-schedule__item.-rev.-typeL .enjoy-schedule__text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-top: 10px;
  }
  .enjoy-schedule__item.-rev.-typeL .enjoy-schedule__photo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 0;
  }
  .enjoy-schedule__item.-rev.-typeL .enjoy-schedule__illust {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .enjoy-schedule__item.-typeL .enjoy-schedule__text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-top: 0;
  }
  .enjoy-schedule__item.-typeL .enjoy-schedule__photo {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-item-align: end;
    align-self: flex-end;
    width: 77.334vw;
    margin: 20px 0 0;
  }
  .enjoy-schedule__item.-has-illust {
    margin-bottom: 0;
  }
  .enjoy-schedule__text, .enjoy-schedule__photo {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .enjoy-schedule__text {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    padding-top: 10px;
    padding-bottom: 0;
  }
  .enjoy-schedule__time {
    font-size: 5rem;
  }
  .enjoy-schedule__headline-day {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .enjoy-schedule__headline-day br {
    display: none;
  }
  .enjoy-schedule__photo {
    margin-left: 4vw;
    margin-right: -5.334vw;
  }
  .enjoy-schedule__photo > img {
    width: 100%;
    height: auto;
  }
  .enjoy-schedule__illust {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    position: static;
    width: 26.667vw;
    margin-top: 10px;
    margin-bottom: 0;
  }
  .enjoy-schedule__illust.-other01 {
    margin-top: 10px;
    margin-bottom: -24vw;
  }
  .enjoy-schedule__illust.-other02 {
    margin-left: auto;
    margin-bottom: 0;
  }
  .enjoy-schedule__sub {
    margin-top: 15px;
  }
  .enjoy-schedule__sub + .enjoy-schedule__item {
    margin-top: 25px;
  }
  .enjoy-schedule__sub.-rev {
    margin-top: 15px;
  }
  .enjoy-schedule__sub.-rev .enjoy-schedule__sub-illust {
    margin-right: 0;
    margin-left: 20px;
  }
  .enjoy-schedule__sub-photo {
    width: 45.334vw;
  }
  .enjoy-schedule__sub-photo > img {
    width: 100%;
    height: auto;
  }
  .enjoy-schedule__sub-photo-2nd {
    margin-top: 15px;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin-right: 29.334vw;
  }
  .enjoy-schedule__sub-photo-2nd:last-child {
    margin-right: 29.334vw;
  }
  .enjoy-schedule__sub-photo-2nd + .enjoy-schedule__sub-illust {
    margin: -13.334vw 0 0;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .enjoy-schedule__sub-photo-2nd + .enjoy-schedule__sub-illust.-small {
    margin-top: -10.667vw;
  }
  .enjoy-schedule__sub-illust {
    width: 26.667vw;
    margin-top: 65px;
    margin-right: 20px;
  }
  .enjoy-schedule__sub-illust.-other01 {
    position: static;
    width: 21.334vw;
    margin-top: 65px;
    margin-right: 20px;
  }
  .enjoy-schedule__sub-illust.-other02 {
    width: 21.334vw;
    margin-top: 65px;
  }
  .enjoy-schedule__sub-illust > img {
    width: 100%;
  }
  .enjoy-schedule__column {
    margin-top: 80px;
  }
  .enjoy-schedule__item-only {
    margin-top: 20px;
  }
}

/* column-schedule */
.column-schedule {
  position: relative;
  border: 1px solid #222;
  padding: 35px;
}

.column-schedule__headline {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 120px;
  margin-right: auto;
  margin-left: auto;
  border-right: 1px solid #222;
  border-left: 1px solid #222;
  background-color: #fff;
  font-family: "Lato", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, メイリオ, sans-serif;
  line-height: 1.5;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.column-schedule__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.column-schedule__unit-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.column-schedule__unit-headline {
  margin-bottom: 10px;
  font-weight: bold;
}

.column-schedule__unit-photo {
  -ms-flex-preferred-size: 41.026%;
  flex-basis: 41.026%;
  margin-left: 30px;
}

.column-schedule__headline-sub {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.column-schedule__list-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 780px;
  margin: 25px auto 0;
  text-align: center;
}

.column-schedule__list-photo li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.column-schedule__list-photo li:not(:first-child) {
  margin-left: 8px;
}

.column-schedule__list-photo li > img {
  width: 100%;
}

.column-schedule__list-photo li > p {
  margin-top: 5px;
}

@media only screen and (max-width: 767px) {
  .column-schedule__unit {
    display: block;
  }
  .column-schedule__unit-photo {
    margin-top: 20px;
    margin-left: 0;
  }
  .column-schedule__unit-photo > img {
    width: 100%;
  }
  .column-schedule__headline-sub {
    text-align: left;
    margin-bottom: 10px;
  }
  .column-schedule__list-photo {
    display: block;
    margin-top: 15px;
  }
  .column-schedule__list-photo li:not(:first-child) {
    margin-top: 8px;
    margin-left: 0;
  }
  .column-schedule__list-photo li > img {
    width: 80%;
  }
  .column-schedule__text {
    text-align: left;
    line-height: 1.75;
  }
}

/* access */
.access {
  margin-top: 100px;
  margin-bottom: 100px;
  line-height: 1.75;
}

.access__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.access__photo {
  -ms-flex-preferred-size: 48.98%;
  flex-basis: 48.98%;
}

.access__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 45px;
}

.access__headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 5px;
  padding-bottom: 15px;
  color: #eb8287;
  font-size: 20px;
  font-size: 2rem;
}

.access__name {
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid #d5d5d5;
  font-weight: bold;
  width: 80%;
}

.access__address {
  font-size: 13px;
  font-size: 1.3rem;
}

.access__map {
  margin-top: 20px;
  width: 80%;
}

.access__map img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.access__btn {
  margin: 25px;
}

.text-more:not(:first-child) {
  margin-top: 50px;
}

.text-more {
  margin-bottom: 25px;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .access {
    margin-top: 75px;
    margin-bottom: 80px;
  }
  .access__unit {
    display: block;
  }
  .access__photo {
    display: none;
  }
  .access__text {
    display: block;
    margin-left: 0;
  }
  .access__headline {
    display: block;
    padding-top: 0;
    padding-bottom: 15px;
    font-size: 1.8rem;
  }
  .access__inner {
    margin: 0 5.334vw;
  }
  .access__name {
    width: 100%;
  }
  .access__map {
    text-align: center;
    width: 100%;
  }
  .access__text-more {
    margin: 15px 4vw 0;
    text-align: left;
  }
  .access__text-more br {
    display: block;
  }
  .access__btn {
    max-width: none;
    margin: 15px 4vw 0;
  }
}

/* btn
------------------------------ */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

.btn:before, .btn:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transition: .5s;
  transition: .5s;
}

.btn:before {
  width: 28px;
  border-top: 2px solid #222;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn:after {
  width: 10px;
  height: 10px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.btn.-default {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 580px;
  height: 90px;
  margin-right: auto;
  margin-left: auto;
  padding: 3px 70px;
  border: 2px solid #222;
  background-color: #fff;
  color: #222;
  text-align: center;
}

.btn.-default:before, .btn.-default:after {
  right: 30px;
}

.btn.-default:hover {
  background-color: #222;
  color: #fff;
}

.btn.-default:hover:before {
  border-top-color: #fff;
}

.btn.-default:hover:after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.btn.-primary {
  height: 40px;
  padding: 3px 40px 3px 15px;
  border: 2px solid #222;
  background-color: #fff;
  color: #222;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .1em;
}

.btn.-primary:before, .btn.-primary:after {
  right: 18px;
}

.btn.-primary:before {
  width: 16px;
  border-top-width: 1px;
  -webkit-transform: none;
  transform: none;
}

.btn.-primary:after {
  width: 6px;
  height: 6px;
  border-top-width: 1px;
  border-right-width: 1px;
  -webkit-transform: translateY(-50%) translateY(0.5px) rotate(45deg);
  transform: translateY(-50%) translateY(0.5px) rotate(45deg);
}

.btn.-primary:hover {
  background-color: #222;
  color: #fff;
}

.btn.-primary:hover:before {
  border-top-color: #fff;
}

.btn.-primary:hover:after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.btn.-primary[target="_blank"]:before {
  right: 19px;
  width: 8px;
  height: 11px;
  border: 1px solid #222;
  box-shadow: -3px -3px 0 -1px #fff, -3px -3px 0 0 #222;
  -webkit-transform: translateY(-50%) translateY(1px);
  transform: translateY(-50%) translateY(1px);
}

.btn.-primary[target="_blank"]:after {
  content: none;
}

.btn.-primary[target="_blank"]:hover:before {
  border-color: #fff;
  box-shadow: -3px -3px 0 -1px #222, -3px -3px 0 0 #fff;
}

.btn.-more {
  height: 44px;
  padding: 3px 70px 3px 3px;
  border-bottom: 2px solid #222;
  color: #222;
  font-family: "Lato", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, メイリオ, sans-serif;
}

.btn.-more:before, .btn.-more:after {
  right: 5px;
}

.btn.-finder {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  height: 80px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #ffc8bf;
  color: #222;
  font-family: "Lato", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, メイリオ, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: normal;
  text-align: center;
}

.btn.-finder:before, .btn.-finder:after {
  content: none;
}

.btn.-finder:hover {
  background-color: #222;
  color: #fff;
}

.btn.-finder:hover:before {
  border-top-color: #fff;
}

.btn.-finder:hover:after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.btn.-detail {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  height: 80px;
  margin-right: auto;
  margin-left: auto;
  padding: 3px 50px;
  border-radius: 10px;
  background-color: #ffc8bf;
  color: #222;
  text-align: center;
}

.btn.-detail:before, .btn.-detail:after {
  right: 17px;
}

.btn.-detail:hover {
  background-color: #222;
  color: #fff;
}

.btn.-detail:hover:before {
  border-top-color: #fff;
}

.btn.-detail:hover:after {
  border-top-color: #fff;
  border-right-color: #fff;
}

@media only screen and (max-width: 768px) {
  .btn:before {
    width: 18px;
  }
  .btn:after {
    width: 7px;
    height: 7px;
  }
  .btn.-default {
    height: 60px;
    width: calc(100% - 30px);
    padding-right: 45px;
    padding-left: 15px;
  }
  .btn.-default:before, .btn.-default:after {
    right: 15px;
  }
  .btn.-default[type="submit"] {
    padding-left: 45px;
    text-align: center;
  }
  .btn.-primary {
    padding-right: 35px;
  }
  .btn.-primary:before, .btn.-primary:after {
    right: 12px;
  }
  .btn.-primary:before {
    width: 12px;
  }
  .btn.-primary:after {
    width: 5px;
    height: 5px;
  }
  .btn.-primary[target="_blank"]:before {
    right: 12px;
  }
  .btn.-more {
    height: 30px;
    padding-right: 35px;
  }
  .btn.-more:before, .btn.-more:after {
    right: 10px;
  }
  .btn.-finder {
    height: 60px;
    padding: 5px 10px;
  }
  .btn.-finder:hover {
    background-color: #ffc8bf;
    color: #222;
  }
  .btn.-finder:hover:before {
    border-top-color: #222;
  }
  .btn.-finder:hover:after {
    border-top-color: #222;
    border-right-color: #222;
  }
  .btn.-detail {
    height: 60px;
    padding-right: 45px;
    padding-left: 15px;
    font-size: 1.3rem;
    text-align: left;
  }
}

@media only screen and (max-width: 374px) {
  .btn.-longtext {
    font-size: 1.2rem;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .btn.-finder:hover {
    background-color: #ffc8bf;
    color: #222;
  }
  .btn.-finder:hover:before {
    border-top-color: #222;
  }
  .btn.-finder:hover:after {
    border-top-color: #222;
    border-right-color: #222;
  }
}

/**
 # Objects -  utility -
 */
/*========== utility.scss ==========*/
.u-radius5 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.u-radiusC {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.pc {
  display: block !important;
}

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

.smp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .smp {
    display: block !important;
  }
}

/*--------------------------------------------------------------
    # _print.scss
--------------------------------------------------------------*/
@media print {
  .l--header {
    opacity: 100;
    position: relative;
    width: 100%;
  }
  .fadein {
    opacity: 1.0;
    transform: translate(0, 0);
  }
  .keyVisual__pritBlock {
    display: block !important;
  }
  .keyVisual__pritBlock img {
    width: 100%;
  }
  .keyVisual {
    height: auto !important;
  }
  .h--productsBox__thum {
    width: 640px;
    height: 480px;
    position: absolute;
    overflow: hidden;
    right: 0;
    top: -60px;
  }
  .h--productsBox__thum img {
    width: 100%;
    transition: none !important;
  }
  .h--productsBox__thumCover {
    width: 640px;
    height: 480px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: none;
    z-index: 10;
    transition: none !important;
  }
  .h--productsBox__title {
    position: absolute;
    margin: 0;
    padding: 0;
    text-align: center;
    top: 200px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    color: #FFF;
    line-height: 1.0;
  }
  .h--productsBox__titleEn {
    font-family: "Roboto", sans-serif;
    display: block;
    font-size: 3.2rem;
    margin: 0 0 10px;
  }
  .h--productsBox__titleJp {
    font-size: 1.8rem;
  }
}
/*# sourceMappingURL=style.css.map */
