@charset "UTF-8";
/*===========================================================
このファイルはsassで編集されています。
cssを編集しないでください。
=============================================================*/
/*=====================================================================
リセットcssの設定
=======================================================================*/
html {
  color: #000;
  background: #FFF; }

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0; }

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

fieldset, img {
  border: 0; }

ol, ul {
  list-style: none; }

caption, th {
  text-align: left; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

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

abbr, acronym {
  border: 0;
  font-variant: normal; }

sup {
  vertical-align: text-top; }

sub {
  vertical-align: text-bottom; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%; }

legend {
  color: #000; }

#yui3-css-stamp.cssreset {
  display: none; }

/*===========================================================
全体の設定
=============================================================*/
.en {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal; }

html {
  color: #00323d;
  font-family: "I-OTFゴシックオールドPro M";
  background: #EBEBD8; }
  @media screen and (max-width: 768px) {
    html {
      min-width: 100%; } }

@media screen and (max-width: 768px) {
  html, body {
    width: 100%;
    min-width: 100%;
    font-size: 60%; } }

h1, h2, h3, h4, h5, h6, p, li, ol, dl, dt, dd, a, td, th {
  color: #00323d;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .05rem; }

p, ul, li, dl, dt, dd, ol, a {
  font-size: 1.3rem;
  letter-spacing: .05rem;
  text-align: justify;
  line-height: 2; }
  @media screen and (max-width: 576px) {
    p, ul, li, dl, dt, dd, ol, a {
      font-size: 1.2rem;
      line-height: 2.4; } }

a {
  color: inherit;
  text-decoration: none;
  display: block; }
  a:active {
    text-decoration: none; }
  a:hover {
    text-decoration: none; }

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

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  line-break: auto; }

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box; }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none; }
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px; }

.is-menuOpen body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; }

.relative {
  position: relative; }

.xl-block {
  display: none !important; }
  @media screen and (max-width: 1200px) {
    .xl-block {
      display: block !important; } }

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

.lg-block {
  display: none !important; }
  @media screen and (max-width: 992px) {
    .lg-block {
      display: block !important; } }

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

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

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

.sm-block {
  display: none !important; }
  @media screen and (max-width: 576px) {
    .sm-block {
      display: block !important; } }

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

.container {
  margin: 0 auto;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1440px; }
  @media screen and (max-width: 768px) {
    .container {
      padding-left: 6%;
      padding-right: 6%;
      max-width: 100%;
      width: 100%;
      word-wrap: break-word;
      overflow-wrap: break-word; } }

.container_900 {
  margin: 0 auto;
  width: 940px;
  padding-left: 30px;
  padding-right: 30px; }
  @media screen and (max-width: 850px) {
    .container_900 {
      max-width: 100%;
      width: 100%;
      padding-left: 6%;
      padding-right: 6%;
      word-wrap: break-word;
      overflow-wrap: break-word; } }
  @media screen and (max-width: 576px) {
    .container_900 {
      padding-left: 6%;
      padding-right: 6%; } }

/*=====================================================================
共通パーツ
=======================================================================*/
/*=====================================================================
headerの設定
=======================================================================*/
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
header.header__pc {
  padding-top: 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  opacity: 0;
  animation-name: fadeInAnime;
  /*アニメーションの定義名*/
  animation-duration: 1s;
  /*アニメーション変化時間 ※デフォルト*/
  animation-fill-mode: forwards;
  /*アニメーションの開始と終了時の状態を指定*/
  animation-iteration-count: 1;
  animation-delay: 1s; }
  @media screen and (max-width: 992px) {
    header.header__pc {
      padding-top: 55px; } }
  header.header__pc .logo {
    width: 160px;
    height: auto;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%); }
    header.header__pc .logo svg .cls-1 {
      transition: .4s;
      fill: #fff;
      fill-rule: evenodd;
      stroke-width: 0px; }
    header.header__pc .logo:hover .cls-1 {
      fill: #15A598; }
    @media screen and (max-width: 992px) {
      header.header__pc .logo {
        width: 100px; } }
    @media screen and (max-width: 768px) {
      header.header__pc .logo {
        top: 20px; } }
  header.header__pc .d-flex.j-c-between {
    padding: 0 30px; }
  @media screen and (max-width: 768px) {
    header.header__pc .d-flex {
      display: none; } }
  header.header__pc .d-flex svg {
    width: 20px;
    padding-top: 5px; }
    header.header__pc .d-flex svg .cls-1 {
      fill: #fff;
      stroke-width: 0px; }
    header.header__pc .d-flex svg:hover .cls-1 {
      fill: #15A598; }
  header.header__pc .d-flex * {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: .12rem;
    color: #fff;
    transition: .4s; }
    header.header__pc .d-flex *:hover {
      color: #15A598; }
  header.header__pc .left a {
    font-size: 2.1rem; }
    @media screen and (max-width: 992px) {
      header.header__pc .left a {
        padding-top: 9px;
        font-size: 1.5rem; } }
  header.header__pc .left li {
    margin-right: 75px; }
    @media screen and (max-width: 992px) {
      header.header__pc .left li {
        margin-right: 45px; } }
  header.header__pc .right a {
    font-size: 1.5rem;
    padding-top: 9px; }
  header.header__pc .right li {
    margin-left: 70px; }
    @media screen and (max-width: 992px) {
      header.header__pc .right li {
        margin-left: 40px; } }

.header__sp {
  display: none; }
  @media screen and (max-width: 768px) {
    .header__sp {
      display: block; } }
  .header__sp .sp__logo {
    width: 120px;
    position: absolute;
    top: 20px;
    left: 5%;
    z-index: 998; }
    .header__sp .sp__logo img {
      width: 100%; }

.square__menu {
  /*========= ナビゲーションのためのCSS ===============*/
  /*========= ボタンのためのCSS ===============*/
  /*========= ボタンのためのCSS end===============*/ }
  .square__menu #g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #032B39;
    /*背景を少し透過させる*/
    /*動き*/
    transition: all .3s;
    overflow-y: scroll;
    /*アクティブクラスがついたら透過なしにして最前面へ*/ }
    .square__menu #g-nav .sp__logo {
      width: 140px; }
    .square__menu #g-nav #g-nav-list {
      /*ナビゲーションの縦スクロール*/
      /*ナビの数が増えた場合縦スクロール*/
      position: fixed;
      z-index: 999;
      width: 100%;
      height: 100vh;
      /*表示する高さ*/
      overflow: scroll;
      -webkit-overflow-scrolling: touch;
      transition: .5s; }
    .square__menu #g-nav #cover {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: -100;
      display: none; }
    .square__menu #g-nav.panelactive {
      opacity: 1;
      z-index: 999; }
      .square__menu #g-nav.panelactive #g-nav-list {
        right: 0; }
        .square__menu #g-nav.panelactive #g-nav-list li {
          opacity: 1;
          transition: .8s;
          top: 0; }
        .square__menu #g-nav.panelactive #g-nav-list .sns {
          opacity: 1;
          transition: .8s; }
      .square__menu #g-nav.panelactive #cover {
        display: block;
        z-index: 900; }
  .square__menu .openbtn {
    position: fixed;
    z-index: 999;
    /*ボタンを最前面に*/
    cursor: pointer;
    top: 20px;
    right: 20px;
    /*×に変化*/ }
    @media screen and (max-width: 768px) {
      .square__menu .openbtn {
        top: 20px;
        right: 6%;
        width: 35px; } }
    .square__menu .openbtn.is-active {
      z-index: 9999; }
  .square__menu #g-nav-list {
    padding: 150px 12% 0;
    height: auto;
    transition: 1s; }
    .square__menu #g-nav-list ul {
      width: 100%;
      position: static;
      top: unset;
      left: unset;
      transform: unset; }
      .square__menu #g-nav-list ul li {
        margin-bottom: 40px;
        opacity: 0;
        position: relative;
        top: -5px; }
        .square__menu #g-nav-list ul li a {
          text-align: left;
          color: #EBEBD8;
          font-family: "DM Serif Display", serif;
          font-weight: bold;
          display: flex;
          line-height: 1.3;
          justify-content: space-between;
          align-items: center; }
          .square__menu #g-nav-list ul li a span {
            display: inline-block; }
          .square__menu #g-nav-list ul li a:hover {
            color: #EBEBD8;
            transition: .3s; }
          .square__menu #g-nav-list ul li a img {
            height: 12px;
            width: auto; }
    .square__menu #g-nav-list .td_03 a {
      font-size: 2rem; }
    .square__menu #g-nav-list .td_04 a, .square__menu #g-nav-list .td_05 a {
      font-size: 4rem; }
    .square__menu #g-nav-list .td_06 a, .square__menu #g-nav-list .td_07 a {
      font-size: 1.7rem;
      margin-right: 25px;
      display: inline-block; }
      .square__menu #g-nav-list .td_06 a img, .square__menu #g-nav-list .td_07 a img {
        height: 20px; }

.btn__menu .btn__wrap {
  width: 40px; }
  .btn__menu .btn__wrap span {
    width: 6.1px;
    height: 6px;
    border-radius: 100px;
    background: #fff;
    margin-right: 1px;
    margin-bottom: 5px;
    transition: 1s; }
    .btn__menu .btn__wrap span:nth-child(5n) {
      margin-right: 0; }
  .btn__menu .btn__wrap .b2, .btn__menu .btn__wrap .b4 {
    position: relative;
    top: 6px; }
  .btn__menu .btn__wrap .b2, .btn__menu .btn__wrap .b3, .btn__menu .btn__wrap .b4, .btn__menu .btn__wrap .b5, .btn__menu .btn__wrap .b9, .btn__menu .btn__wrap .b10 {
    opacity: 0; }
.btn__menu.is-active .b6, .btn__menu.is-active .b7, .btn__menu.is-active .b13 {
  opacity: 0; }
.btn__menu.is-active .b2, .btn__menu.is-active .b4, .btn__menu.is-active .b5 {
  opacity: 1; }
.btn__menu.is-active .b12, .btn__menu.is-active .b14 {
  position: relative;
  top: -6px; }

/*=====================================================================
footerの設定
=======================================================================*/
footer {
  padding-bottom: 40px; }
  @media screen and (max-width: 768px) {
    footer {
      padding-bottom: 50px; } }
  footer p {
    font-size: 1.5rem;
    margin-right: 90px; }
    @media screen and (max-width: 768px) {
      footer p {
        width: 100%;
        margin-right: 0px;
        font-size: 1.2rem;
        line-height: 1.7;
        margin-bottom: 30px; } }
  @media screen and (max-width: 992px) {
    footer {
      text-align: center; }
      footer p {
        text-align: center !important; } }
  footer a {
    margin-left: 35px;
    display: flex;
    align-items: center;
    transition: .4s;
    font-size: 1.6rem; }
    footer a:hover {
      color: #15A598; }
    @media screen and (max-width: 768px) {
      footer a {
        width: 100%;
        margin-left: 0px;
        justify-content: center;
        margin-bottom: 25px; } }
    footer a img {
      width: 20px;
      margin-right: 15px; }
    footer a span {
      font-size: 1.3rem;
      margin-right: 18px; }
    footer a b {
      position: relative;
      top: -1px; }

.footer__img {
  margin-top: 160px;
  margin-bottom: 0px; }
  .footer__img img {
    width: 100%;
    height: auto; }

.copy p {
  padding-top: 110px;
  font-size: 1.2rem;
  transition: 0.8s !important; }
  @media screen and (max-width: 576px) {
    .copy p {
      padding-top: 40px; } }

/*=====================================================================
共通パーツの設定
=======================================================================*/
.head img {
  width: 100%;
  height: 200px;
  object-fit: cover; }
  @media screen and (max-width: 768px) {
    .head img {
      height: 150px;
      object-position: top; } }

.block {
  padding-top: 50px; }

main h2 {
  font-size: 1.5rem; }
main h2.en {
  font-size: 10rem; }
  @media screen and (max-width: 768px) {
    main h2.en {
      font-size: 5rem; } }
main h3.en {
  font-size: 4rem;
  margin-bottom: 65px; }
main .left, main .right {
  width: 49%; }
  @media screen and (max-width: 768px) {
    main .left, main .right {
      width: 100%;
      margin-bottom: 40px; } }

.midashi__clip strong {
  overflow: hidden;
  display: block;
  height: 125%; }
  .midashi__clip strong span {
    display: block;
    transform: translateY(101%) translateZ(0);
    transition: transform 1s cubic-bezier(0.2, 0.5, 0.4, 1);
    transition-delay: 0.7s !important;
    font-weight: 400; }
.midashi__clip.clip span {
  transform: none; }

.filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(17.5px);
  backdrop-filter: blur(17.5px);
  transition: .8s;
  transition-delay: 0.6s !important; }
  .filter.is-inview {
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0); }

.area5 .filter {
  height: calc(100vh + 170px); }

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #032B39;
  text-align: center;
  color: #fff;
  bottom: 0;
  left: 0;
  display: none; }
  #splash.on {
    display: block; }

#splash_logo__wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  clip-path: inset(0 0 0 0); }

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px; }

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 100%; }

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

.fadeUp-1 {
  position: absolute; }

.fadeUp-2 {
  position: absolute;
  animation-delay: 0.5s; }

.fadeUp-3 {
  position: absolute;
  animation-delay: 1s; }

.fadeUp-4 {
  animation-delay: 1.5s; }

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(15px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/*=====================================================================
TOPの設定
=======================================================================*/
#animated-image-1 {
  background-image: url("img/mv-2.png"); }
  #animated-image-1.js-inview2 {
    opacity: 0;
    transition: opacity 1s; }
    #animated-image-1.js-inview2.is-inview {
      opacity: 1; }

#animated-image-2 {
  background-color: #EBEBD8; }

#animated-image-3 {
  background-image: url("img/mv-3.png"); }

#animated-image-4 {
  background-color: #EBEBD8; }

#animated-image-5 {
  background-image: url("img/mv-4.png"); }

body#top {
  min-width: 1000px; }
  @media screen and (max-width: 768px) {
    body#top {
      min-width: 100%; } }

#front {
  opacity: 0;
  transition: .4s; }
  #front.on {
    opacity: 1; }
  #front .en {
    font-weight: 600; }
  @media screen and (max-width: 768px) {
    #front .d-flex .left, #front .right {
      width: 100%; } }
  #front .js-fadeUp {
    transition: 1s;
    transition-delay: 0.4s !important; }
  #front .area1 .container {
    position: relative; }
  #front .area1 * {
    color: #EBEBD8; }
  #front .area1 .wrap {
    position: absolute;
    top: 75px;
    right: 40px;
    z-index: 20; }
    #front .area1 .wrap p {
      font-size: 1.6rem;
      line-height: 2.6;
      margin-bottom: 25px; }
    #front .area1 .wrap span {
      border-bottom: 1px solid;
      padding-bottom: 5px; }
    @media screen and (max-width: 768px) {
      #front .area1 .wrap {
        width: 100%;
        position: static; }
        #front .area1 .wrap p {
          font-size: 1.3rem; } }
  #front .area1 a .icon-right-2 .cls-1 {
    transition: 0.6s !important;
    fill: #EBEBD8;
    stroke-width: 0px; }
  #front .area1 a:hover * {
    transition-delay: 0 !important;
    color: #15A598; }
  #front .area1 a:hover .cls-1 {
    fill: #15A598; }
  #front .area1 a .midashi__clip span, #front .area1 a .js-fadeUp {
    transition: 0.6s !important;
    transition-delay: 0s !important; }
  @media screen and (max-width: 768px) {
    #front .area1 h2 {
      font-size: 5rem;
      width: 100%; } }
  #front .area1 .d-flex {
    padding-top: 800px; }
    @media screen and (max-width: 576px) {
      #front .area1 .d-flex {
        padding-top: 150px; } }
    #front .area1 .d-flex .left, #front .area1 .d-flex .right {
      display: flex;
      align-content: space-between;
      flex-wrap: wrap;
      height: 400px;
      position: relative; }
      #front .area1 .d-flex .left p, #front .area1 .d-flex .right p {
        width: 100%; }
      #front .area1 .d-flex .left img, #front .area1 .d-flex .left svg, #front .area1 .d-flex .right img, #front .area1 .d-flex .right svg {
        position: absolute;
        right: 10%;
        bottom: 90px;
        width: 175px;
        height: auto; }
      @media screen and (max-width: 768px) {
        #front .area1 .d-flex .left, #front .area1 .d-flex .right {
          height: auto;
          align-content: unset; }
          #front .area1 .d-flex .left h2, #front .area1 .d-flex .right h2 {
            margin-bottom: 50px; }
          #front .area1 .d-flex .left img, #front .area1 .d-flex .left svg, #front .area1 .d-flex .right img, #front .area1 .d-flex .right svg {
            width: 90px;
            bottom: auto;
            width: 90px;
            top: 10px;
            right: 0; } }
  #front .area2 {
    padding-top: 270px;
    position: relative; }
    @media screen and (max-width: 576px) {
      #front .area2 {
        padding-top: 30px; } }
    #front .area2 h2 {
      font-size: 4rem;
      margin-bottom: 70px; }
      @media screen and (max-width: 576px) {
        #front .area2 h2 {
          margin-bottom: 50px;
          text-align: center; } }
    #front .area2 p {
      font-size: 1.2rem; }
    #front .area2 .right {
      text-align: right; }
      @media screen and (max-width: 768px) {
        #front .area2 .right {
          text-align: center;
          margin-top: 50px; } }
    #front .area2 img {
      width: 440px; }
      @media screen and (max-width: 1100px) {
        #front .area2 img {
          width: 350px; } }
      @media screen and (max-width: 768px) {
        #front .area2 img {
          width: 100%; } }
  #front .area4 {
    padding-top: 250px; }
    @media screen and (max-width: 576px) {
      #front .area4 {
        padding-top: 30px; } }
    #front .area4 h2 {
      font-size: 4rem;
      margin-bottom: 120px;
      position: relative; }
      @media screen and (max-width: 576px) {
        #front .area4 h2 {
          margin-bottom: 50px;
          text-align: center; } }
    #front .area4 li {
      width: 33.3%;
      text-align: center; }
      #front .area4 li * {
        text-align: center; }
      @media screen and (max-width: 768px) {
        #front .area4 li {
          width: 100%;
          margin-bottom: 50px; } }
      #front .area4 li p {
        font-size: 1.3rem; }
        #front .area4 li p a {
          display: inline-block;
          transition: .4s; }
          #front .area4 li p a:hover {
            color: #15A598; }
        #front .area4 li p span {
          font-size: 1.6rem;
          margin-top: 40px;
          display: block; }
          @media screen and (max-width: 576px) {
            #front .area4 li p span {
              margin-top: 30px; } }
  #front .area6 {
    background-color: #EBEBD8; }
    #front .area6 p {
      padding-top: 110px;
      font-size: 1.2rem;
      transition: 0.8s !important; }
      @media screen and (max-width: 576px) {
        #front .area6 p {
          padding-top: 40px; } }
  #front .item-top-2 {
    width: 90%;
    max-width: 120px;
    padding-top: 20px; }
  #front .item-top-1 {
    width: 125px;
    padding-top: 60px;
    position: absolute;
    left: -20px; }

.icon-eee {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 60%;
  z-index: -1; }

.js-fade {
  opacity: 0;
  transition: 2s;
  filter: blur(100px) brightness(0.2); }
  .js-fade.is-inview {
    opacity: 1;
    filter: blur(0px) brightness(1); }

.animated-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: scale(1.2); }

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

/*=====================================================================
下層の設定
=======================================================================*/
.page .container {
  max-width: 1840px; }
.page .ptb {
  padding-top: 120px;
  padding-bottom: 100px; }
  @media screen and (max-width: 768px) {
    .page .ptb {
      padding-bottom: 180px; } }
  .page .ptb p {
    line-height: 2.4; }
  .page .ptb .left {
    padding-left: 20px; }
    @media screen and (max-width: 768px) {
      .page .ptb .left {
        padding-left: 0px; } }
  .page .ptb .js-inview {
    transition-delay: 1s; }
  .page .ptb .h125 {
    height: 113px; }
    @media screen and (max-width: 768px) {
      .page .ptb .h125 {
        height: 55px; } }
.page .item-1 {
  width: 90%;
  max-width: 340px;
  padding-top: 90px;
  position: absolute;
  right: 30px; }
  @media screen and (max-width: 768px) {
    .page .item-1 {
      max-width: 250px;
      padding-top: 15px;
      right: 0px; } }
.page .item-2 {
  width: 90%;
  max-width: 280px;
  position: relative;
  right: 30px; }
  @media screen and (max-width: 768px) {
    .page .item-2 {
      right: 0px;
      max-width: 250px;
      padding-top: 25px; } }
.page .item-3 {
  width: 90%;
  max-width: 380px; }
.page .item-4 {
  width: 110%;
  position: relative;
  right: -40px; }
  @media screen and (max-width: 768px) {
    .page .item-4 {
      right: 0px;
      width: 70%; } }
.page .item-5 {
  width: 320px;
  position: relative;
  padding-top: 30px; }
.page .info {
  padding-left: 13%; }
  @media screen and (max-width: 768px) {
    .page .info {
      padding-left: 0; } }
.page .company {
  padding-top: 120px; }
  .page .company p {
    margin-bottom: 15px; }
  .page .company .right {
    padding-left: 100px; }
    @media screen and (max-width: 768px) {
      .page .company .right {
        padding-left: 0px; } }
  .page .company .h125 {
    height: 45px; }
    @media screen and (max-width: 768px) {
      .page .company .h125 {
        height: 45px; } }
.page .price__info {
  padding: 0 30px; }
  @media screen and (max-width: 768px) {
    .page .price__info {
      padding: 0; } }
  .page .price__info .tid p {
    text-indent: -1.2rem;
    margin-left: 1.2rem; }
    .page .price__info .tid p.tid__none {
      text-indent: unset;
      margin-left: unset; }
.page .text {
  padding-top: 50px; }

#tile {
  max-width: 100vw;
  overflow: hidden;
  padding: 0 20px; }
  @media screen and (max-width: 768px) {
    #tile {
      padding: 0 2%; } }
  #tile li {
    width: 24%; }
    @media screen and (max-width: 768px) {
      #tile li {
        width: 49%; } }
    #tile li .wrap {
      display: inline-block;
      margin-bottom: 20px;
      width: 100%; }
      @media screen and (max-width: 768px) {
        #tile li .wrap {
          margin-bottom: 2%; }
          #tile li .wrap img {
            margin-bottom: 2%; } }
    #tile li .item__left {
      transform: translateY(30px) scale(1.5);
      transform-origin: top right;
      opacity: 0;
      transition: transform 2s, opacity 2s; }
    #tile li .item__center {
      transform: translateY(70px) scale(1);
      transform-origin: top center;
      opacity: 0;
      transition: transform 2s, opacity 2s; }
    #tile li .item__right {
      transform: translateY(30px) scale(1.5);
      transform-origin: top left;
      opacity: 0;
      transition: transform 2s, opacity 2s; }

#zoom {
  background-image: url("../img/stay-back.jpg");
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 500px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1000px #EBEBD8;
  /* 初期状態でマスクされた状態にする */
  transition: box-shadow 1.2s ease;
  /* マスクの変更をスムーズに */ }
  @media screen and (max-width: 768px) {
    #zoom {
      padding-bottom: 150px; } }
  #zoom .tdd0 {
    transition-delay: 0s !important; }
  #zoom * {
    color: #EBEBD8; }
  #zoom h2 {
    font-size: 1.4rem;
    margin-bottom: 60px; }
  #zoom .num {
    font-size: 1.4rem;
    margin-bottom: 15px; }
  #zoom .d-flex li {
    width: 31.5%; }
    @media screen and (max-width: 768px) {
      #zoom .d-flex li {
        width: 100%;
        margin-bottom: 80px; } }
    #zoom .d-flex li h3 {
      font-family: "I-OTFゴシックオールドPro B";
      font-size: 1.5rem;
      margin: 30px 0 25px; }
  @media screen and (max-width: 768px) {
    #zoom .d-flex .li4 {
      margin-bottom: 0; } }
  #zoom .d-flex .li5 {
    padding-top: 97px; }
    @media screen and (max-width: 768px) {
      #zoom .d-flex .li5 {
        padding-top: 0; } }
  #zoom .d-flex .tid p {
    text-indent: -1.2rem;
    margin-left: 1.2rem; }
  #zoom .fade {
    opacity: 0;
    transition: 1s ease;
    transform: translateY(30px); }
    #zoom .fade.fadeIn {
      opacity: 1;
      transform: translateY(0); }
  #zoom .rerere-1 {
    position: absolute;
    right: -40px;
    bottom: -10px;
    width: 60%; }
    @media screen and (max-width: 768px) {
      #zoom .rerere-1 {
        width: 100%; } }

#img__area {
  margin-bottom: 130px;
  margin-top: 150px; }
  @media screen and (max-width: 768px) {
    #img__area {
      margin-bottom: 50px; } }
  #img__area img {
    object-fit: cover; }
  #img__area .area1 {
    margin-bottom: 1%; }
    #img__area .area1 img {
      width: 49.5%; }
  #img__area .area2 {
    margin-bottom: 1%; }
    #img__area .area2 img {
      width: 32.7%; }
  #img__area .js-fadeUp {
    transform: translateY(20px);
    opacity: 0;
    transition: 1s;
    transition-timing-function: ease-out; }
    #img__area .js-fadeUp.is-inview {
      opacity: 1;
      transform: translateY(0px); }
  #img__area .md-block img {
    margin-bottom: 1%; }
  #img__area .md-block .area3 {
    flex-wrap: nowrap; }
    #img__area .md-block .area3 img {
      width: 50%; }

/*=====================================================================
roomの設定
=======================================================================*/
.room {
  padding: 180px 0 140px; }
  .room .room__left {
    padding-right: 10%; }
    @media screen and (max-width: 768px) {
      .room .room__left {
        padding-right: 0%; } }
  .room li {
    width: 19%;
    margin-left: 10px;
    position: relative; }
    @media screen and (max-width: 768px) {
      .room li {
        width: 48%;
        margin-bottom: 40px;
        margin-left: 0; } }
    .room li .zoom__wrap {
      overflow: hidden;
      cursor: pointer;
      position: relative;
      padding-bottom: 140%;
      margin-bottom: 15px; }
      @media screen and (max-width: 768px) {
        .room li .zoom__wrap {
          margin-bottom: 10px; } }
      .room li .zoom__wrap .cover {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
        background: rgba(0, 50, 61, 0.8);
        transition: .4s;
        opacity: 0; }
        .room li .zoom__wrap .cover .center {
          color: #EBEBD8;
          width: 100%;
          font-size: 1.5rem;
          text-align: center; }
      .room li .zoom__wrap img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        transition: .4s; }
      .room li .zoom__wrap:hover .cover {
        opacity: 1; }
      .room li .zoom__wrap:hover img {
        transform: scale(1.1); }
  .room h3 {
    font-size: 1.5rem; }
    @media screen and (max-width: 992px) {
      .room h3 {
        font-size: 1.3rem; } }
    .room h3 span {
      border-radius: 100px;
      font-size: 1.3rem;
      width: 25px;
      height: 25px;
      border: 0.5px solid;
      display: inline-block;
      text-align: center;
      /* line-height: 20px; */
      margin-right: 5px;
      position: relative;
      line-height: 23px;
      top: -2px; }
      @media screen and (max-width: 768px) {
        .room h3 span {
          font-size: 1.1rem;
          width: 20px;
          height: 20px;
          line-height: 18px; } }
  @media screen and (max-width: 768px) {
    .room .d-flex.j-c-end {
      justify-content: space-between; } }
  .room .room__wrap {
    position: relative; }
  .room .icon-re {
    position: absolute;
    z-index: -1;
    top: -70%;
    left: -40px;
    width: 17%; }
    @media screen and (max-width: 768px) {
      .room .icon-re {
        top: -120px;
        left: -7%;
        width: 17%; } }

.dli-plus-circle {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: absolute;
  width: 25px;
  height: 25px;
  background: #15A598;
  border-radius: 50%;
  box-sizing: content-box;
  top: -10px;
  left: -7px;
  transition: .4s;
  z-index: 20; }

.dli-plus-circle > span {
  width: 52%;
  height: 2px;
  background: #EBEBD8;
  border-radius: 0.1em;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto; }

.dli-plus-circle > span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg); }

.popup {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 50, 61, 0.96);
  z-index: -1;
  opacity: 0;
  transition: .4s; }
  .popup.on {
    opacity: 1;
    z-index: 9999; }
  .popup .pb__cover {
    width: 100%;
    height: 100%; }
  .popup .center {
    width: 100%;
    max-width: 900px; }
    @media screen and (max-width: 768px) {
      .popup .center {
        width: 90%; } }
  .popup .close {
    position: absolute;
    top: -10px;
    right: 0;
    width: 35px;
    cursor: pointer; }
    @media screen and (max-width: 768px) {
      .popup .close {
        top: 0px;
        width: 25px; } }
  .popup h3 {
    font-size: 1.5rem;
    color: #EBEBD8; }
    .popup h3 span {
      border-radius: 100px;
      font-size: 1.3rem;
      width: 25px;
      height: 25px;
      border: 0.5px solid #EBEBD8;
      display: inline-block;
      text-align: center;
      margin-right: 15px;
      position: relative;
      line-height: 23px;
      top: -2px; }

.swiperMain {
  margin-top: 20px; }

.swiperThumbnail {
  margin-top: 20px;
  position: relative; }
  .swiperThumbnail .swiper-slide:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    width: 100%;
    height: 100%;
    transition: .4s; }
  .swiperThumbnail .swiper-slide-thumb-active:after {
    content: none; }

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 70px;
  width: 70px;
  transform: translateY(-50%); }
  @media screen and (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
      height: 30px;
      width: 30px;
      transform: unset; } }

.swiper-button-prev {
  left: -35px; }
  @media screen and (max-width: 768px) {
    .swiper-button-prev {
      left: -15px; } }

.swiper-button-next {
  right: -35px; }
  @media screen and (max-width: 768px) {
    .swiper-button-next {
      right: -15px; } }

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 70px;
  margin: auto;
  width: 70px; }
  @media screen and (max-width: 768px) {
    .swiper-button-prev::after,
    .swiper-button-next::after {
      height: 30px;
      width: 30px; } }

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url("../img/icon-left.svg"); }

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url("../img/icon-right.svg"); }

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%; }

/*=====================================================================
アニメーション
=======================================================================*/
.td_01 {
  transition-delay: 0.1s !important; }

.td_02 {
  transition-delay: 0.2s !important; }

.td_03 {
  transition-delay: 0.3s !important; }

.td_04 {
  transition-delay: 0.4s !important; }

.td_05 {
  transition-delay: 0.5s !important; }

.td_06 {
  transition-delay: 0.6s !important; }

.td_07 {
  transition-delay: 0.7s !important; }

.td_08 {
  transition-delay: 0.8s !important; }

.td_09 {
  transition-delay: 0.9s !important; }

.td_10 {
  transition-delay: 1s !important; }

.td_11 {
  transition-delay: 1.1s !important; }

.td_12 {
  transition-delay: 1.2s !important; }

.td_13 {
  transition-delay: 1.3s !important; }

.td_14 {
  transition-delay: 1.4s !important; }

.td_15 {
  transition-delay: 1.5s !important; }

.td_16 {
  transition-delay: 1.6s !important; }

.td_17 {
  transition-delay: 1.7s !important; }

.td_18 {
  transition-delay: 1.8s !important; }

.td_19 {
  transition-delay: 1.9s !important; }

.td_21 {
  transition-delay: 2.1s !important; }

.td_22 {
  transition-delay: 2.2s !important; }

.td_23 {
  transition-delay: 2.3s !important; }

.td_24 {
  transition-delay: 2.4s !important; }

.td_25 {
  transition-delay: 2.5s !important; }

.td_26 {
  transition-delay: 2.6s !important; }

.td_27 {
  transition-delay: 2.7s !important; }

.td_28 {
  transition-delay: 2.8s !important; }

.td_29 {
  transition-delay: 2.9s !important; }

.td_30 {
  transition-delay: 3s !important; }

.js-fadeUp {
  transform: translateY(30px);
  opacity: 0;
  transition: 1.5s;
  transition-timing-function: linear; }
  .js-fadeUp.is-inview {
    opacity: 1;
    transform: translateY(0px); }

.js-inview {
  transform: translateY(0px);
  opacity: 0;
  transition: 1s;
  transition-timing-function: linear; }
  .js-inview.is-inview {
    opacity: 1;
    transform: translateY(0px); }
