@charset "UTF-8";
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 {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0; }

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

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden; }

.clearfix {
  display: inline-block; }

/* Hides from IE Mac */
* html .clearfix {
  height: 1%; }

.clearfix {
  display: block; }

/* ---------- 初期 ---------- */
body {
  letter-spacing: 0.01em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif; }

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  line-height: 0; }

a {
  text-decoration: none; }

strong {
  font-weight: bold; }

/* ---------- /共通部分 ---------- */
#jougetyuou {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: auto; }

#kadomaru {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px; }

#resbtn {
  -webkit-appearance: none; }

.ancr {
  position: relative;
  transition: 0.5s; }

.anca {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 10;
  cursor: pointer; }

.ancr:hover {
  opacity: 0.75;
  transition: 0.5s;
  cursor: pointer; }

/* ---------- /参考タグ部分 ---------- */
.font_cezanne {
  font-family: fot-cezanne-pron, sans-serif;
  font-weight: 500;
  font-style: normal; }

.font_helvetica {
  font-family: helvetica-lt-pro, sans-serif;
  font-style: normal; }

.font_helvetica-neue {
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 500;
  font-style: normal; }

html {
  font-size: calc(1vw * 100 / 1366);
  overscroll-behavior-y: none; }

@keyframes spin {
  0% {
    transform: rotate(0deg);
    /* 開始時：0度 */ }
  100% {
    transform: rotate(360deg);
    /* 終了時：360度（1周） */ } }
/* 上から下へマスクが開くアニメーション */
@keyframes maskShow {
  0% {
    -webkit-mask-position: 0 0;
    mask-position: 0 0; }
  100% {
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%; } }
/* 【追加】前の画像が残像を残さず消えるキーフレーム */
@keyframes prevFadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/* ==========================================
   斜めグラデーションマスクアニメーション
   ========================================== */
.reveal-diagonal {
  /* 斜めのグラデーションマスク（黒色が表示エリア、透明が非表示エリア） */
  -webkit-mask-image: linear-gradient(135deg, #000 0%, #000 35%, rgba(0, 0, 0, 0.15) 50%, transparent 65%);
  mask-image: linear-gradient(135deg, #000 0%, #000 35%, rgba(0, 0, 0, 0.15) 50%, transparent 65%);
  /* マスクのサイズを広げて移動できる幅を作る */
  -webkit-mask-size: 300% 300%;
  mask-size: 300% 300%;
  /* 初期状態: マスクの位置をずらして隠す */
  -webkit-mask-position: 100% 100%;
  mask-position: 100% 100%;
  opacity: 0;
  transition: mask-position 2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-mask-position 2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.5s ease;
  transition-delay: 0.3s;
  will-change: mask-position, -webkit-mask-position, opacity; }

.reveal-diagonal.is-in {
  /* 表示状態: マスクを元の位置に戻して全体を表示する */
  -webkit-mask-position: 0% 0%;
  mask-position: 0% 0%;
  opacity: 1; }

/* ==========================================
   PC・SP用 SVG見出し レスポンシブ & 初期状態（透明）設定
   ========================================== */
/* PC用・SP用SVG共通：枠からはみ出さない可変対応 */
#mv_ttl_svg_pc,
#mv_ttl_svg_sp {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block; }

/* 最初は文字パーツ（path・rect）を透明にしておく */
#mv_ttl_svg_pc path,
#mv_ttl_svg_pc rect,
#mv_ttl_svg_sp path,
#mv_ttl_svg_sp rect {
  opacity: 0; }

/* PC */
@media screen and (min-width: 769px) {
  .sponly {
    display: none !important; }

  #top_mv {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 805rem;
    max-height: 100vh;
    box-sizing: border-box;
    padding: 41rem 34rem 0;
    margin-bottom: 225rem;
    position: relative;
    /*background: url("../img/mv_bg.png?ver=1.1")no-repeat bottom center;
    background-size: 100% auto;*/ }
    #top_mv::before {
      position: absolute;
      content: "";
      width: 100%;
      height: 1322rem;
      top: 0;
      left: 0;
      background: url("../img/surface.png") no-repeat;
      background-size: cover;
      mix-blend-mode: hard-light;
      opacity: 0.5; }
    #top_mv::after {
      position: absolute;
      content: "";
      width: 100%;
      height: 225rem;
      bottom: -226rem;
      left: 0;
      background: url("../img/mv_bg.png?ver=1.1") no-repeat bottom center;
      background-size: 100% auto; }
    #top_mv .top_mv_img {
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
      transition: transform 0.1s ease-out;
      /* ← これを追加するとスクロールの動きが滑らかになります */ }
    #top_mv .top_mv_head {
      display: block; }
    #top_mv .top_mv_ttl {
      width: 100%;
      margin-bottom: 20rem;
      position: relative; }
    #top_mv .top_mv_txt {
      font-size: 40rem;
      line-height: 1.2em;
      color: #ECE9E1;
      text-align: right;
      box-sizing: border-box;
      padding-right: 47rem;
      position: relative;
      transition-delay: 1.7s; }
      #top_mv .top_mv_txt::before {
        position: absolute;
        content: "";
        width: 39rem;
        height: 40rem;
        top: 2rem;
        right: 0;
        background: url("../img/mv_txt_icon.png") no-repeat;
        background-size: contain;
        line-height: 0;
        /* 2. アニメーションを適用 */
        animation: spin 1.5s linear infinite; }
    #top_mv .top_mv_cont {
      position: relative;
      transition-delay: 2.6s; }
      #top_mv .top_mv_cont .top_mv_box {
        color: #fff;
        margin-bottom: 20rem; }
        #top_mv .top_mv_cont .top_mv_box dt {
          font-size: 16rem;
          line-height: 1;
          margin-bottom: 10rem;
          box-sizing: border-box;
          padding-left: 23rem;
          position: relative; }
          #top_mv .top_mv_cont .top_mv_box dt::before {
            position: absolute;
            content: "";
            width: 15rem;
            height: 15rem;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 100%;
            background: #FFB000; }
        #top_mv .top_mv_cont .top_mv_box dd {
          font-size: 50rem;
          line-height: 1;
          font-weight: bold;
          color: #ECE9E1; }
          #top_mv .top_mv_cont .top_mv_box dd.small {
            font-size: 23rem;
            line-height: 1;
            margin-top: 7rem; }
          #top_mv .top_mv_cont .top_mv_box dd span {
            display: inline-block;
            line-height: 1; }
            #top_mv .top_mv_cont .top_mv_box dd span.en {
              font-size: 24rem;
              margin-left: 5rem; }
    #top_mv .scroll_icon {
      width: 57rem;
      position: fixed;
      top: min(794rem, 95vh);
      right: 33rem; }

  .main_cont_bg {
    margin-top: -1rem;
    padding: 272rem 0 250rem;
    background: #ECE9E1; }

  .teaser_cont {
    width: 1300rem;
    margin: 0 auto; }
    .teaser_cont .teaser_box {
      width: 1226rem;
      margin-left: auto;
      padding-bottom: 120rem;
      position: relative; }
      .teaser_cont .teaser_box .teaser_box_left {
        width: 550rem;
        color: #5D3121; }
        .teaser_cont .teaser_box .teaser_box_left h2 {
          font-size: 50rem;
          letter-spacing: -0.01em;
          line-height: 1.24em; }
        .teaser_cont .teaser_box .teaser_box_left .teaser_jattl {
          font-size: 20rem;
          letter-spacing: -0.01em;
          line-height: 1.2em;
          text-decoration: underline 1rem;
          margin: 20rem 0 60rem; }
        .teaser_cont .teaser_box .teaser_box_left .teaser_txt {
          font-size: 16rem;
          letter-spacing: -0.01em;
          line-height: 2.125em; }
      .teaser_cont .teaser_box .teaser_box_img {
        width: 807rem;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        position: absolute;
        right: 0;
        top: 10rem; }
        .teaser_cont .teaser_box .teaser_box_img .teaser_small_images {
          width: 226rem;
          height: 269rem;
          position: relative;
          overflow: hidden; }
          .teaser_cont .teaser_box .teaser_box_img .teaser_small_images .teaser_small_img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 1;
            /* ----------------------------------
            【基本定義】最初からマスク構造をセットしておく
            ---------------------------------- */
            -webkit-mask-image: url("../img/mask.png");
            mask-image: url("../img/mask.png");
            -webkit-mask-position: 0 0;
            mask-position: 0 0;
            -webkit-mask-size: 100% 500%;
            mask-size: 100% 500%;
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
            /* 【追加】直前に表示されていた画像（下敷きとして全開表示しておく） */ }
            .teaser_cont .teaser_box .teaser_box_img .teaser_small_images .teaser_small_img img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              display: block; }
            .teaser_cont .teaser_box .teaser_box_img .teaser_small_images .teaser_small_img.prev-active {
              z-index: 2;
              -webkit-mask-position: 0 100%;
              mask-position: 0 100%;
              /* 前画像をゆっくり消していくアニメーション */
              animation-name: prevFadeOut;
              animation-duration: 1.2s;
              /* フェードアウトにかける時間 */
              animation-fill-mode: forwards; }
            .teaser_cont .teaser_box .teaser_box_img .teaser_small_images .teaser_small_img.is-active {
              z-index: 3;
              opacity: 1;
              /* 参考サイトのアニメーション設定 */
              animation-name: maskShow;
              animation-duration: 2.5s;
              /* アニメーション全体の長さ */
              animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
              /* 参考サイトのイージング */
              animation-delay: 0s;
              animation-fill-mode: both;
              /* 前後の状態を確実に保持 */ }
        .teaser_cont .teaser_box .teaser_box_img .teaser_big_images {
          width: 561rem;
          height: 742rem;
          position: relative;
          overflow: hidden; }
          .teaser_cont .teaser_box .teaser_box_img .teaser_big_images .teaser_big_img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 1;
            /* ----------------------------------
            【基本定義】最初からマスク構造をセットしておく
            ---------------------------------- */
            -webkit-mask-image: url("../img/mask.png");
            mask-image: url("../img/mask.png");
            -webkit-mask-position: 0 0;
            mask-position: 0 0;
            -webkit-mask-size: 100% 500%;
            mask-size: 100% 500%;
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat; }
            .teaser_cont .teaser_box .teaser_box_img .teaser_big_images .teaser_big_img img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              display: block; }
            .teaser_cont .teaser_box .teaser_box_img .teaser_big_images .teaser_big_img.prev-active {
              z-index: 2;
              -webkit-mask-position: 0 100%;
              mask-position: 0 100%;
              /* 前画像をゆっくり消していくアニメーション */
              animation-name: prevFadeOut;
              animation-duration: 2.0s;
              /* フェードアウトにかける時間 */
              animation-fill-mode: forwards; }
            .teaser_cont .teaser_box .teaser_box_img .teaser_big_images .teaser_big_img.is-active {
              z-index: 3;
              opacity: 1;
              /* 参考サイトのアニメーション設定 */
              animation-name: maskShow;
              animation-duration: 5.0s;
              /* アニメーション全体の長さ */
              animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
              /* 参考サイトのイージング */
              animation-delay: 0s;
              animation-fill-mode: both;
              /* 前後の状態を確実に保持 */ }
      .teaser_cont .teaser_box .teaser_slidebar {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        position: absolute;
        left: 0;
        bottom: 0; }
        .teaser_cont .teaser_box .teaser_slidebar .num {
          font-size: 16rem;
          line-height: 1;
          color: #B5B1A6; }
        .teaser_cont .teaser_box .teaser_slidebar .slidebar {
          width: 91rem;
          height: 3rem;
          margin: 0 8rem;
          border-radius: 10rem;
          background: #D6D2C8;
          overflow: hidden; }
          .teaser_cont .teaser_box .teaser_slidebar .slidebar span {
            display: inline-block;
            width: calc( 100% / 3 );
            height: 100%;
            border-radius: 10rem;
            background: #B5B1A6;
            /* 幅と色が変化する時に0.5秒かけてアニメーションさせる設定 */
            transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.6s ease; }

  footer {
    width: 100%;
    position: relative;
    background: #361C11; }
    footer .bg {
      position: relative;
      overflow: hidden;
      /* パララックスでみ出た要素を隠す */
      will-change: transform;
      /* ブラウザのアニメーション最適化 */
      background: url("../img/footer_bg.png") no-repeat center top #361C11;
      background-size: 100% auto;
      line-height: 0; }
      footer .bg::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 887rem;
        left: 0;
        bottom: 0;
        background: url("../img/surface.png") no-repeat;
        background-size: cover;
        mix-blend-mode: hard-light;
        opacity: 0.5; }
    footer .inner {
      width: 1300rem;
      margin: 0 auto;
      color: #ECE9E1;
      position: relative;
      z-index: 3; }
      footer .inner .footer_cont {
        display: flex;
        justify-content: space-between;
        padding: 260rem 0 140rem;
        padding: 300rem 0 140rem;
        border-bottom: solid 1rem rgba(181, 177, 166, 0.5); }
        footer .inner .footer_cont .footer_info .footer_ttl {
          font-size: 50rem;
          line-height: 1.2em;
          margin-bottom: 25rem; }
        footer .inner .footer_cont .footer_info .footer_txt {
          font-size: 16rem;
          letter-spacing: -0.01em;
          line-height: 1.5em; }
        footer .inner .footer_cont .footer_menu {
          width: 440rem; }
          footer .inner .footer_cont .footer_menu ul li a {
            display: block;
            font-size: 20rem;
            line-height: 1.2em;
            color: #ECE9E1;
            box-sizing: border-box;
            padding: 20rem 0 20rem 15rem;
            background: url("../img/footer_arrow_01.png") no-repeat right 20rem center;
            background-size: 8rem;
            border-bottom: solid 1rem rgba(181, 177, 166, 0.8);
            transition: 0.3s; }
            footer .inner .footer_cont .footer_menu ul li a:hover {
              color: #5D3121;
              background: url("../img/footer_arrow_02.png") no-repeat right 20rem center #ECE9E1;
              background-size: 8rem; }
          footer .inner .footer_cont .footer_menu ul li:first-child a {
            border-top: solid 1rem rgba(181, 177, 166, 0.8);
            padding-bottom: 19rem; }
      footer .inner .footer_btm {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20rem 0 30rem;
        padding: 20rem 0; }
        footer .inner .footer_btm .footer_logo {
          width: 190rem; }
        footer .inner .footer_btm .copyright {
          font-size: 13rem; } }
/* SP */
@media screen and (max-width: 768px) {
  .pconly {
    display: none !important; }

  html {
    font-size: calc(1vw * 100 / 375);
    overscroll-behavior-y: none; }

  #top_mv {
    width: 100%;
    box-sizing: border-box;
    padding: 93rem 21rem 83rem;
    position: relative; }
    #top_mv::before {
      position: absolute;
      content: "";
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: url("../img/mv_surface_sp.png") no-repeat;
      background-size: cover;
      mix-blend-mode: multiply;
      z-index: 2; }
    #top_mv::after {
      position: absolute;
      content: "";
      width: 100%;
      height: 62rem;
      bottom: -2rem;
      left: 0;
      background: url("../img/mv_bg_sp.png?ver=1.1") no-repeat center bottom;
      background-size: 100% 100%;
      z-index: 4; }
    #top_mv .top_mv_img {
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
      transition: transform 0.1s ease-out;
      /* ← これを追加するとスクロールの動きが滑らかになります */ }
    #top_mv .top_mv_parts {
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 3;
      transition: transform 0.1s ease-out;
      /* ← これを追加するとスクロールの動きが滑らかになります */ }
    #top_mv .top_mv_head {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column-reverse;
      margin-bottom: 200rem;
      position: relative;
      z-index: 2; }
    #top_mv .top_mv_ttl {
      width: 237rem; }
    #top_mv .top_mv_txt {
      font-size: 19rem;
      line-height: 1.2em;
      color: #ECE9E1;
      text-align: right;
      box-sizing: border-box;
      position: relative;
      margin-bottom: 15rem;
      padding-right: 24rem;
      transition-delay: 0.1s; }
      #top_mv .top_mv_txt::before {
        position: absolute;
        content: "";
        width: 19rem;
        height: 20rem;
        top: 0;
        right: 0;
        background: url("../img/mv_txt_icon.png") no-repeat;
        background-size: contain;
        line-height: 0;
        /* 2. アニメーションを適用 */
        animation: spin 1.5s linear infinite; }
    #top_mv .top_mv_cont {
      position: relative;
      z-index: 4;
      transition-delay: 2.0s; }
      #top_mv .top_mv_cont .top_mv_box {
        color: #fff;
        margin-bottom: 16rem; }
        #top_mv .top_mv_cont .top_mv_box:last-child {
          margin-bottom: 0; }
        #top_mv .top_mv_cont .top_mv_box dt {
          font-size: 14rem;
          line-height: 1;
          margin-bottom: 5rem;
          box-sizing: border-box;
          padding-left: 16rem;
          position: relative; }
          #top_mv .top_mv_cont .top_mv_box dt::before {
            position: absolute;
            content: "";
            width: 11rem;
            height: 11rem;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 100%;
            background: #FFB000; }
        #top_mv .top_mv_cont .top_mv_box dd {
          font-size: 32rem;
          line-height: 1;
          font-weight: bold;
          color: #ECE9E1; }
          #top_mv .top_mv_cont .top_mv_box dd.small {
            font-size: 16rem;
            margin-top: 3rem; }
          #top_mv .top_mv_cont .top_mv_box dd span {
            display: inline-block;
            font-size: 16rem;
            margin-left: 6rem; }

  .main_cont_bg {
    padding: 140rem 0 92rem;
    background: #ECE9E1;
    position: relative;
    z-index: 5; }

  .teaser_cont {
    width: 331rem;
    margin: 0 auto; }
    .teaser_cont .teaser_box {
      width: 100%;
      padding-bottom: 350rem;
      position: relative; }
      .teaser_cont .teaser_box .teaser_box_left {
        width: 100%;
        color: #5D3121;
        /* 日本語タイトル：0.3秒遅れて開始 */ }
        .teaser_cont .teaser_box .teaser_box_left h2 {
          width: 105%;
          font-size: 36rem;
          letter-spacing: -0.01em;
          line-height: 1.22em; }
        .teaser_cont .teaser_box .teaser_box_left .teaser_jattl {
          font-size: 18rem;
          letter-spacing: -0.01em;
          line-height: 1;
          margin: 25rem 0 60rem;
          text-decoration: underline 1rem; }
        .teaser_cont .teaser_box .teaser_box_left .teaser_txt {
          font-size: 14rem;
          letter-spacing: -0.01em;
          line-height: 2.1428em; }
        .teaser_cont .teaser_box .teaser_box_left .teaser_ttl.is-in .s-in .y.d04 {
          transition-delay: 0.35s; }
      .teaser_cont .teaser_box .teaser_box_img {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        position: absolute;
        right: 0;
        bottom: 0; }
        .teaser_cont .teaser_box .teaser_box_img .teaser_small_images {
          width: 115rem;
          height: 138rem;
          position: relative;
          overflow: hidden; }
          .teaser_cont .teaser_box .teaser_box_img .teaser_small_images .teaser_small_img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 1;
            /* ----------------------------------
            【基本定義】最初からマスク構造をセットしておく
            ---------------------------------- */
            -webkit-mask-image: url("../img/mask.png");
            mask-image: url("../img/mask.png");
            -webkit-mask-position: 0 0;
            mask-position: 0 0;
            -webkit-mask-size: 100% 500%;
            mask-size: 100% 500%;
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
            /* 【追加】直前に表示されていた画像（下敷きとして全開表示しておく） */ }
            .teaser_cont .teaser_box .teaser_box_img .teaser_small_images .teaser_small_img img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              display: block; }
            .teaser_cont .teaser_box .teaser_box_img .teaser_small_images .teaser_small_img.prev-active {
              z-index: 2;
              -webkit-mask-position: 0 100%;
              mask-position: 0 100%;
              /* 前画像をゆっくり消していくアニメーション */
              animation-name: prevFadeOut;
              animation-duration: 1.2s;
              /* フェードアウトにかける時間 */
              animation-fill-mode: forwards; }
            .teaser_cont .teaser_box .teaser_box_img .teaser_small_images .teaser_small_img.is-active {
              z-index: 3;
              opacity: 1;
              /* 参考サイトのアニメーション設定 */
              animation-name: maskShow;
              animation-duration: 2.5s;
              /* アニメーション全体の長さ */
              animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
              /* 参考サイトのイージング */
              animation-delay: 0s;
              animation-fill-mode: both;
              /* 前後の状態を確実に保持 */ }
        .teaser_cont .teaser_box .teaser_box_img .teaser_big_images {
          width: 208rem;
          height: 276rem;
          position: relative;
          overflow: hidden; }
          .teaser_cont .teaser_box .teaser_box_img .teaser_big_images .teaser_big_img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 1;
            /* ----------------------------------
            【基本定義】最初からマスク構造をセットしておく
            ---------------------------------- */
            -webkit-mask-image: url("../img/mask.png");
            mask-image: url("../img/mask.png");
            -webkit-mask-position: 0 0;
            mask-position: 0 0;
            -webkit-mask-size: 100% 500%;
            mask-size: 100% 500%;
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat; }
            .teaser_cont .teaser_box .teaser_box_img .teaser_big_images .teaser_big_img img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              display: block; }
            .teaser_cont .teaser_box .teaser_box_img .teaser_big_images .teaser_big_img.prev-active {
              z-index: 2;
              -webkit-mask-position: 0 100%;
              mask-position: 0 100%;
              /* 前画像をゆっくり消していくアニメーション */
              animation-name: prevFadeOut;
              animation-duration: 2.0s;
              /* フェードアウトにかける時間 */
              animation-fill-mode: forwards; }
            .teaser_cont .teaser_box .teaser_box_img .teaser_big_images .teaser_big_img.is-active {
              z-index: 3;
              opacity: 1;
              /* 参考サイトのアニメーション設定 */
              animation-name: maskShow;
              animation-duration: 5.0s;
              /* アニメーション全体の長さ */
              animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
              /* 参考サイトのイージング */
              animation-delay: 0s;
              animation-fill-mode: both;
              /* 前後の状態を確実に保持 */ }

  footer {
    width: 100%;
    position: relative;
    background: #361C11; }
    footer .bg {
      position: relative;
      overflow: hidden;
      /* パララックスでみ出た要素を隠す */
      background: url("../img/footer_bg.png") no-repeat center top #361C11;
      background-size: 100% auto;
      z-index: 5;
      line-height: 0; }
      footer .bg::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 960rem;
        left: 0;
        bottom: 0;
        background: url("../img/surface_sp.png") no-repeat;
        background-size: cover;
        mix-blend-mode: hard-light; }
    footer .inner {
      width: 331rem;
      margin: 0 auto;
      color: #ECE9E1;
      position: relative;
      z-index: 3; }
      footer .inner .footer_cont {
        padding: 170rem 0 118rem;
        border-bottom: solid 1rem rgba(181, 177, 166, 0.5); }
        footer .inner .footer_cont .footer_info {
          margin-bottom: 90rem; }
          footer .inner .footer_cont .footer_info .footer_ttl {
            font-size: 36rem;
            letter-spacing: -0.01em;
            line-height: 1.2em;
            margin-bottom: 30rem; }
          footer .inner .footer_cont .footer_info .footer_txt {
            font-size: 14rem;
            letter-spacing: -0.01em;
            line-height: 1.85em; }
        footer .inner .footer_cont .footer_menu ul li a {
          display: block;
          font-size: 18rem;
          line-height: 1.22em;
          color: #ECE9E1;
          box-sizing: border-box;
          padding: 16rem 0 16rem 11rem;
          background: url("../img/footer_arrow_01.png") no-repeat right 11rem center;
          background-size: 6rem;
          border-bottom: solid 1rem rgba(181, 177, 166, 0.8);
          transition: 0.3s; }
          footer .inner .footer_cont .footer_menu ul li a:hover {
            color: #5D3121;
            background: url("../img/footer_arrow_02.png") no-repeat right 11rem center #ECE9E1;
            background-size: 6rem; }
        footer .inner .footer_cont .footer_menu ul li:first-child a {
          border-top: solid 1rem rgba(181, 177, 166, 0.8);
          padding-bottom: 15rem; }
      footer .inner .footer_btm {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 15rem 0 37rem; }
        footer .inner .footer_btm .footer_logo {
          width: 138rem; }
        footer .inner .footer_btm .copyright {
          font-size: 11rem;
          line-height: 1; } }

/*# sourceMappingURL=style.css.map */
