@charset "UTF-8";
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: ローディング*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
.loadingBar {
  width: 0;
  height: 2px;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  z-index: 300001;
}

#loadbg {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999999999;
}
@media print {
  #loadbg {
    display: none;
  }
}

#loadbg-logo {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/logo.svg);
  background-size: 430px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #loadbg-logo {
    background-size: 70% auto;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: PC/SP共通 */
.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.en {
  font-family: "Jost", sans-serif;
}

.Roboto {
  font-family: "Roboto", sans-serif;
}

sub {
  bottom: 0;
  font-size: 0.5em;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: カラー */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: スクリーンリーダー*/
/* スクリーンリーダーテキスト の名称設定 */
/* 処理 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: ボタン */
.btn_box .btn_lead_text {
  margin: 60px auto 20px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .btn_box .btn_lead_text {
    margin: 7.8125vw auto 2.8125vw;
    font-size: 4vw;
  }
}
.btn_box .btn {
  background: #4f7d85;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  max-width: 480px;
  width: 90%;
  height: 80px;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  overflow: hidden;
  border-radius: 50px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .btn_box .btn {
    font-size: 3.8vw;
    height: auto;
    padding: 2vw;
  }
}
.btn_box .btn:before {
  content: "";
  background: url(../images/icon_catalog.svg) no-repeat;
  display: inline-block;
  background-size: contain;
  width: 60px;
  height: 43px;
  margin-right: 20px;
}
.btn_box .btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 120%;
  height: 100%;
  background: #223c51;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: skewX(-30deg) scale(0, 1);
  -ms-transform: skewX(-30deg) scale(0, 1);
  transform: skewX(-30deg) scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.btn_box .btn:hover {
  color: #ffffff;
}
.btn_box .btn:hover:before {
  background: url(../images/icon_catalog.svg) no-repeat;
}
.btn_box .btn:hover:after {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: skewX(-30deg) scale(1, 1);
  -ms-transform: skewX(-30deg) scale(1, 1);
  transform: skewX(-30deg) scale(1, 1);
}
.btn_box .btn.map_btn:before {
  content: "";
  background: url(../images/icon_map.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin-right: 50px;
}
.btn_box .btn.map_btn:after {
  content: "";
  display: inline-block;
  margin-right: 50px;
}
.btn_box .btn.map_btn:hover:before {
  background: url(../images/icon_map.svg) no-repeat;
}

a.c_btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d70d18;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #d70d18;
  width: 260px;
  height: 50px;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  border-radius: 5px;
}
a.c_btn::after {
  content: "";
  position: absolute;
  background: url(../images/btn_arrow.svg) no-repeat;
  display: inline-block;
  background-size: contain;
  width: 9px;
  height: 13px;
  right: 18px;
}
a.c_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 120%;
  height: 100%;
  background: #d70d18;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: skewX(-30deg) scale(0, 1);
  -ms-transform: skewX(-30deg) scale(0, 1);
  transform: skewX(-30deg) scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
a.c_btn:hover {
  color: #ffffff;
}
a.c_btn:hover:after {
  background: url(../images/index/btn_arrow_w.svg) no-repeat;
}
a.c_btn:hover:before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: skewX(-30deg) scale(1, 1);
  -ms-transform: skewX(-30deg) scale(1, 1);
  transform: skewX(-30deg) scale(1, 1);
}
a.c_btn.back_btn {
  width: 360px;
}
a.c_btn.back_btn:after {
  top: 0;
  bottom: 0;
  margin: auto;
  right: 18px;
}
@media screen and (max-width: 768px) {
  a.c_btn.back_btn {
    width: 280px;
  }
  a.c_btn.back_btn:after {
    right: inherit;
    left: 18px;
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: PC */
@media screen and (min-width: 769px), print {
  .nosp {
    display: block;
  }
  .nopc {
    display: none;
  }
  html {
    font-size: 10px;
  }
  #container {
    overflow: visible;
  }
  #contents {
    font-family: "Noto Sans JP", sans-serif;
    overflow: visible;
    width: 100%;
  }
  #contents b {
    color: #000;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: パンくず */
  .breadcrumb {
    max-width: 1140px;
    margin: auto;
    padding: 10px 0;
    width: 90%;
    font-size: 1.2rem;
  }
  .breadcrumb span + span {
    margin-left: 3px;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: メインビジュアル */
  .mainVisual {
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  .mainVisual__ttl {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    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;
  }
  .mainVisual__ttl img {
    opacity: 0;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease; /* 1秒でふわっと */
    width: 30%;
  }
  .mainVisual__ttl img.show {
    opacity: 1;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: コンテンツリスト */
  .container {
    max-width: 1100px;
    width: 90%;
    margin: auto;
    color: #000;
  }
  p {
    font-size: clamp(13px, 1.0416666667vw, 15px);
    font-weight: 500;
    line-height: 1.75;
  }
  img {
    width: 100%;
    height: auto;
  }
  .section-title {
    font-size: 35px;
    text-align: center;
    line-height: 1.75;
    margin-bottom: 70px;
  }
  .lead {
    font-size: 15px;
    line-height: 2;
    text-align: center;
  }
  .flex {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .content_list {
    border-top: 15px solid #223c51;
  }
  .content_list .flex .txt {
    max-width: 510px;
    margin: auto;
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .content_list .flex .txt p {
    line-height: 2.2;
    margin-bottom: 50px;
  }
  .content_list .flex .txt p.head {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 15px;
  }
  .content_list .flex .txt figure {
    max-width: 240px;
  }
  .content_list .flex .img {
    width: 50%;
  }
  .content_list .flex.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .content_list_wrapper {
    background: #fff;
  }
  .content_list_wrapper .sticky_nav {
    position: absolute;
    bottom: 0;
    top: auto;
    right: 10px;
    z-index: 5;
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .content_list_wrapper .sticky_nav_wrapper {
    position: sticky;
    top: 98%;
    right: 10px;
    z-index: 5;
    mix-blend-mode: difference;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 {
    right: inherit;
    left: 10px;
    top: 98%;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 .sticky_nav {
    bottom: 0;
    top: auto;
    right: inherit;
    left: 10px;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 li a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 li a::after {
    content: none;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 li a::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 100vw;
    background: #fff;
    border: 2px solid #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-right: 1rem;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 li a span {
    margin-left: 5px;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 li a span small {
    font-size: clamp(14px, 1.1111111111vw, 14px);
    position: absolute;
    left: 3.5rem;
    bottom: -1.5rem;
    width: 100%;
    letter-spacing: 1px;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 li a.active {
    margin-bottom: 2rem;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 li a.active::before {
    background: #000;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 li a:hover::before {
    background: #000;
  }
  .content_list_wrapper .sticky_nav li {
    list-style: none;
  }
  .content_list_wrapper .sticky_nav li a {
    color: #fff;
    font-size: clamp(23px, 1.7361111111vw, 25px);
    line-height: 1.2;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
  }
  .content_list_wrapper .sticky_nav li a::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 100vw;
    background: #fff;
    border: 2px solid #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .content_list_wrapper .sticky_nav li a span {
    display: none;
    font-size: clamp(23px, 1.7361111111vw, 25px);
  }
  .content_list_wrapper .sticky_nav li a span small {
    display: block;
    font-size: clamp(12px, 0.9722222222vw, 14px);
  }
  .content_list_wrapper .sticky_nav li a.active {
    font-size: clamp(33px, 2.4305555556vw, 35px);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .content_list_wrapper .sticky_nav li a.active::after {
    background: #000;
  }
  .content_list_wrapper .sticky_nav li a.active span {
    display: block;
  }
  .content_list_wrapper .sticky_nav li a:hover::after {
    background: #000;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: content_list3 - sticky layout */
  .content_list3 .sticky-side {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .content_list3 .sticky-side img {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    -o-object-fit: contain;
       object-fit: contain;
    background: url(../images/content3-bg.jpg) no-repeat center/cover;
  }
  .content_list3 .sticky-side.content_list4 img {
    background-image: url(../images/content4-bg.jpg);
  }
  .content_list3 .sticky-side.content_list5 img {
    background-image: url(../images/content5-bg.jpg);
  }
  .content_list3 .sticky-side.content_list6 img {
    background-image: url(../images/content6-bg.jpg);
  }
  .content_list3 .sticky-side.content_list7 img {
    background-image: url(../images/content7-bg.jpg);
  }
  .content_list3 .sticky-side.content_list8 img {
    background-image: url(../images/content8-bg.jpg);
  }
  .content_list3 .img-side {
    width: 540px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .content_list3 .img-side img {
    position: relative;
    top: 0;
    width: 100%;
    height: 100vh;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .content_list3 .img-side img.content_list6 {
    background-image: url(../images/content6-bg.jpg);
  }
  .content_list3 .content-side {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 180vh;
    width: 50%;
  }
  .content_list3 .content-side .box {
    min-height: 100vh;
    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;
    padding: 0 80px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .content_list3 .content-side .box .head {
    font-size: clamp(22px, 1.6666666667vw, 24px);
    font-weight: 900;
    margin-top: 15px;
  }
  .content_list3 .content-side .box .text {
    font-size: clamp(16px, 1.25vw, 18px);
  }
  .content_list3 .content-side .box1 .box_inner {
    max-width: 360px;
  }
  .content_list3 .content-side .box2 .box_inner {
    max-width: 575px;
  }
  .content_list3 .content-side .box2 figure {
    margin: 35px 0 20px;
  }
  .content_list3 .content-side .box2 .movie img {
    width: 130px;
  }
  .content_list3 .content-side .box2 .movie p {
    margin: 10px 0;
  }
  .content_list3 .content-side .box2 a {
    background: #fff;
    border: 1px solid #6c7683;
    border-radius: 20px;
    color: #6c7683;
    font-size: 15px;
    font-weight: 500;
    max-width: 180px;
    padding: 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .content_list3 .content-side .box2 a .arrow {
    background: url(../images/arrow.svg) no-repeat center/cover;
    width: 22px;
    height: 22px;
    aspect-ratio: 1/1;
    display: block;
  }
  .content_list3 .content-side .box3 .box_inner {
    max-width: 560px;
  }
  .content_list3 .content-side .box3 .flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 5rem;
  }
  .content_list3 .content-side .box3 p {
    margin-top: 1rem;
    line-height: 1.5;
  }
  .content_list3 .content-side .min-height {
    min-height: 50vh;
  }
  .content_list3 .content-side.content_type2 {
    min-height: 115vh;
  }
  .content_list3 .content-side.content_type2 .box .box_inner {
    max-width: 630px;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: content_list9 */
  .content_list9 {
    margin-bottom: 50px;
  }
  .content_list9 .img {
    position: relative;
    margin-bottom: 50px;
  }
  .content_list9 .img h3 {
    position: absolute;
    bottom: -50px;
    right: 0;
    max-width: 460px;
  }
  .content_list9 .head {
    font-size: clamp(24px, 1.8055555556vw, 26px);
    font-weight: 900;
    margin-bottom: 15px;
  }
  .content_list9 .text {
    font-size: clamp(18px, 1.3888888889vw, 20px);
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: content_list10 - sticky layout */
  .content_list_type02 .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .content_list_type02 .sticky-side {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .content_list_type02 .sticky-side-inner {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    height: 100vh;
    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;
  }
  .content_list_type02 .sticky-side-inner .img {
    height: 50vh;
    background: url(../images/content10.jpg) no-repeat center/cover;
  }
  .content_list_type02 .sticky-side-inner .img.content_list11 {
    background-image: url(../images/content11.jpg);
  }
  .content_list_type02 .sticky-side-inner .img.content_list12 {
    background-image: url(../images/content12.jpg);
  }
  .content_list_type02 .sticky-side-inner .img.content_list13 {
    background-image: url(../images/content13.jpg);
  }
  .content_list_type02 .sticky-side-inner .content {
    height: 50vh;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 85%;
    max-width: 700px;
    margin: auto;
  }
  .content_list_type02 .sticky-side-inner .content p {
    margin-top: 3rem;
  }
  .content_list_type02 .content-side {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 200vh;
    width: 50%;
  }
  .content_list_type02 .content-side .box {
    min-height: 100vh;
    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;
  }
  .content_list_type02 .content-side .box .en {
    color: #223c51;
    font-size: clamp(18px, 1.3888888889vw, 20px);
    font-weight: 400;
    letter-spacing: 0.055em;
    max-width: 480px;
    position: absolute;
    top: 50px;
    margin: auto;
  }
  .content_list_type02 .content-side .box .box_inner {
    max-width: 480px;
    margin: auto;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: カタログ・資料請求 */
  .contact {
    margin: 100px 0;
  }
  .contact h2 {
    color: #223c51;
    font-size: clamp(26px, 1.9444444444vw, 28px);
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
  }
  .contact h2 span {
    display: block;
    font-size: clamp(38px, 2.7777777778vw, 40px);
    font-weight: 700;
  }
  .contact .flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
  }
  .contact .link-btn {
    max-width: 300px;
    margin: 30px auto 0;
  }
  .contact .link-btn a {
    border: 2px solid #223c51;
    border-radius: 100vw;
    color: #223c51;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: clamp(18px, 1.3888888889vw, 20px);
    font-weight: 600;
    padding: 8px;
  }
  .contact .link-btn .arrow {
    content: "";
    background: url(../images/arrow-1.svg) no-repeat center/cover;
    width: 30px;
    height: 30px;
  }
  .contact .link-btn.reservation a {
    background: #223c51;
    color: #fff;
  }
  .contact .link-btn.reservation .arrow {
    background-image: url(../images/arrow-2.svg);
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: 建物ラインナップ */
  .lineup {
    background: #f0ede7;
  }
  .lineup a.c_btn {
    margin: 50px auto 0;
  }
  .lineup_inner {
    width: 1000px;
    margin: auto;
    padding: 60px 0;
  }
  .lineup_title {
    font-weight: normal;
    text-align: center;
    line-height: 1;
    margin-bottom: 30px;
  }
  .lineup_title span {
    display: block;
    font-size: 40px;
    margin-bottom: 30px;
  }
  .lineup_title small {
    display: block;
    font-size: 14px;
    line-height: 1;
  }
  .lineup_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
  .lineup_list li {
    width: 20%;
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lineup_list li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .lineup_list li a figure {
    overflow: hidden;
  }
  .lineup_list li a figure img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
  }
  .lineup_list li a:hover figure img {
    -webkit-transform: scale(1.15, 1.15);
    -ms-transform: scale(1.15, 1.15);
    transform: scale(1.15, 1.15);
  }
  .lineup_list li a h3 {
    text-align: center;
    margin: 15px auto;
  }
  .lineup_list li a h3 img {
    max-width: 80px;
    width: 100%;
    height: auto;
  }
  .lineup_list li a p {
    font-size: 13px;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: バナーエリア */
  .bnr_area {
    margin-top: 0;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: アニメーション */
  .anm {
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .anm.show {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
@media print {
  .anm {
    opacity: 1;
  }
}
@media screen and (min-width: 769px), print {
  .anm_view {
    opacity: 1;
    -webkit-animation: view_anm_slide_reset 1s;
    animation: view_anm_slide_reset 1s;
  }
  .anm_view.show {
    -webkit-animation: view_anm_slide 1s;
    animation: view_anm_slide 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
  }
  .anm_lr {
    -webkit-transform: translate(-100px, 0);
    -ms-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
  }
  .anm_rl {
    -webkit-transform: translate(100px, 0);
    -ms-transform: translate(100px, 0);
    transform: translate(100px, 0);
  }
  .anm_up {
    -webkit-transform: translate(0, 100px);
    -ms-transform: translate(0, 100px);
    transform: translate(0, 100px);
  }
  .anm_up_out {
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
  }
  .anm_down {
    -webkit-transform: translate(0, -100px);
    -ms-transform: translate(0, -100px);
    transform: translate(0, -100px);
  }
  .anm_scaleUp {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
  }
  .anm_scaleDown {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  .anm_rotateL {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .anm_rotateR {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .anm_height {
    height: 151px;
  }
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: SP */
@media screen and (max-width: 768px) {
  * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .nosp {
    display: none;
  }
  .nopc {
    display: block;
  }
  #container header {
    top: 0;
  }
  #container #contents {
    padding-top: 9.375vw;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: SP メインビジュアル */
  .mainVisual {
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  .mainVisual__ttl {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    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;
  }
  .mainVisual__ttl img {
    opacity: 0;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease; /* 1秒でふわっと */
    width: 75%;
  }
  .mainVisual__ttl img.show {
    opacity: 1;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: SP コンテンツリスト */
  .container {
    width: 94%;
    margin: auto;
    color: #333;
  }
  img {
    width: 100%;
    height: auto;
  }
  p {
    font-size: clamp(13px, 1.953125vw, 15px);
    line-height: 1.75;
  }
  .section-title {
    font-size: 5vw;
    line-height: 7.5vw;
    margin-bottom: 5vw;
    text-align: center;
  }
  .lead {
    font-size: 3vw;
    line-height: 5.5vw;
    text-align: center;
  }
  .flex {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .content_list {
    border-top: 7px solid #223c51;
  }
  .content_list .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 30px auto 0;
    width: 90%;
  }
  .content_list .flex .txt p {
    line-height: 2.2;
    margin-bottom: 30px;
  }
  .content_list .flex .txt p.head {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.75;
    margin-bottom: 15px;
  }
  .content_list .flex .txt figure {
    max-width: 235px;
  }
  .content_list .flex .img {
    margin: 30px calc(50% - 50vw) 0;
    width: 100vw;
  }
  .content_list .flex.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 0;
  }
  .content_list .flex.reverse .img {
    margin-top: 0;
    margin-bottom: 30px;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: sticky_nav */
  .content_list_wrapper {
    position: relative;
  }
  .content_list_wrapper .sticky_nav {
    position: relative;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .content_list_wrapper .sticky_nav_wrapper {
    position: sticky;
    top: calc(100vh - 120px);
    right: auto;
    height: 0;
    z-index: 10;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 {
    top: calc(100vh - 80px);
    right: auto;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 .sticky_nav {
    bottom: 0;
    left: 0;
    right: auto;
    top: auto;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 .sticky_nav li a {
    font-size: 18px;
  }
  .content_list_wrapper .sticky_nav_wrapper.nav_type02 .sticky_nav li a span {
    font-size: 14px;
  }
  .content_list_wrapper .sticky_nav li {
    list-style: none;
  }
  .content_list_wrapper .sticky_nav li a {
    background: rgba(255, 255, 255, 0.8);
    color: #223c51;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 5px 10px;
    position: relative;
    white-space: nowrap;
  }
  .content_list_wrapper .sticky_nav li a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 100vw;
    background: #223c51;
    border: 1px solid #223c51;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .content_list_wrapper .sticky_nav li a span small {
    display: block;
  }
  .content_list_wrapper .sticky_nav li a.active {
    background: rgba(34, 60, 81, 0.8);
    color: #fff;
  }
  .content_list_wrapper .sticky_nav li a.active::before {
    background: #fff;
    border-color: #223c51;
  }
  .content_list_wrapper .sticky_nav li a.active span {
    display: block;
  }
  .content_list_wrapper .sticky_nav li a:hover::before {
    background: #fff;
    border-color: #223c51;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: sticky layout */
  .content_list3 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content_list3 .sticky-side {
    background: url(../images/content3-bg.jpg) no-repeat center/cover;
  }
  .content_list3 .sticky-side.content_list4 {
    background-image: url(../images/content4-bg.jpg);
  }
  .content_list3 .sticky-side.content_list5 {
    background-image: url(../images/content5-bg.jpg);
  }
  .content_list3 .sticky-side.content_list6 {
    background-image: url(../images/content6-bg.jpg);
  }
  .content_list3 .sticky-side.content_list7 {
    background-image: url(../images/content7-bg.jpg);
  }
  .content_list3 .sticky-side.content_list8 {
    background-image: url(../images/content8-bg.jpg);
  }
  .content_list3 .content-side {
    margin: 50px 0;
    display: grid;
    gap: 30px;
  }
  .content_list3 .content-side.content-side-last {
    margin-bottom: 50px;
  }
  .content_list3 .content-side .box {
    margin: auto;
    width: 90%;
  }
  .content_list3 .content-side .box .head {
    font-size: clamp(20px, 2.8645833333vw, 22px);
    font-weight: 900;
    margin-top: 15px;
  }
  .content_list3 .content-side .box .text {
    font-size: clamp(14px, 2.0833333333vw, 16px);
  }
  .content_list3 .content-side .box .movie img {
    width: 130px;
  }
  .content_list3 .content-side .box .movie p {
    margin: 10px 0;
  }
  .content_list3 .content-side .box a {
    background: #fff;
    border: 1px solid #6c7683;
    border-radius: 20px;
    color: #6c7683;
    font-size: 14px;
    font-weight: 500;
    max-width: 180px;
    padding: 8px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .content_list3 .content-side .box a .arrow {
    background: url(../images/arrow.svg) no-repeat center/cover;
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
    display: block;
  }
  .content_list3 .content-side .box.box1 {
    margin: auto;
    width: 70%;
  }
  .content_list3 .content-side .box.box2 figure {
    margin: 20px 0;
  }
  .content_list3 .content-side .box.box3 .flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .content_list3 .content-side .box.box3 .flex p {
    margin-top: 10px;
    line-height: 1.5;
  }
  .content_list3 .content-side .box.sp_box3 {
    width: 80%;
  }
  .content_list3 .content-side .box.sp_box3 figure {
    margin: 0;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: facae selection */
  .content_list9 {
    margin-top: 120px;
  }
  .content_list9 .img {
    position: relative;
  }
  .content_list9 .img h3 {
    margin: -1px 0 0 auto;
    width: 50%;
  }
  .content_list9 .container {
    margin-top: 25px;
    margin-bottom: 40px;
    width: 90%;
  }
  .content_list9 .container .head {
    font-size: clamp(17px, 2.6041666667vw, 20px);
    margin-bottom: 10px;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: content_list10 - sticky layout */
  .content_list_type02 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content_list_type02 .sticky-side {
    width: 100%;
  }
  .content_list_type02 .sticky-side-inner {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    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;
  }
  .content_list_type02 .sticky-side-inner .content {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 85%;
    margin: 45px auto;
  }
  .content_list_type02 .sticky-side-inner .content p {
    margin-top: 1.5rem;
  }
  .content_list_type02 .content-side {
    width: 100%;
    display: grid;
    gap: 50px;
    margin-bottom: 60px;
  }
  .content_list_type02 .content-side .box {
    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;
  }
  .content_list_type02 .content-side .box .en {
    color: #223c51;
    font-size: clamp(18px, 1.3888888889vw, 20px);
    font-weight: 400;
    letter-spacing: 0.055em;
    max-width: 480px;
    margin: 0 auto 20px;
    width: 90%;
  }
  .content_list_type02 .content-side .box .box_inner figure {
    margin: auto;
    width: 80%;
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: カタログ・資料請求 */
  .contact {
    margin: 120px 0 50px;
  }
  .contact h2 {
    color: #223c51;
    font-size: clamp(16px, 2.34375vw, 18px);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
  }
  .contact h2 span {
    display: block;
    font-size: clamp(28px, 3.90625vw, 30px);
    font-weight: 700;
  }
  .contact .flex {
    display: grid;
    gap: 3rem;
  }
  .contact .link-btn {
    max-width: 250px;
    margin: 15px auto 0;
  }
  .contact .link-btn a {
    border: 2px solid #223c51;
    border-radius: 100vw;
    color: #223c51;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: clamp(14px, 2.0833333333vw, 16px);
    font-weight: 600;
    padding: 10px 8px 8px;
  }
  .contact .link-btn .arrow {
    content: "";
    background: url(../images/arrow-1.svg) no-repeat center/cover;
    width: 20px;
    height: 20px;
  }
  .contact .link-btn.reservation a {
    background: #223c51;
    color: #fff;
  }
  .contact .link-btn.reservation .arrow {
    background-image: url(../images/arrow-2.svg);
  }
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: SP 建物ラインナップ */
  .lineup {
    background: #f0ede7;
  }
  .lineup a.c_btn {
    margin: 5vw auto 0;
  }
  .lineup_inner {
    width: 100%;
    margin: auto;
    padding: 7.8125vw 0;
  }
  .lineup_title {
    font-weight: normal;
    text-align: center;
    line-height: 1;
    margin-bottom: 2.4vw;
  }
  .lineup_title span {
    display: block;
    font-size: 4.8vw;
    margin-bottom: 2.4vw;
  }
  .lineup_title small {
    display: block;
    font-size: 2vw;
    line-height: 1;
  }
  .lineup_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
  }
  .lineup_list li {
    width: 50%;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lineup_list li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .lineup_list li a figure {
    overflow: hidden;
  }
  .lineup_list li a figure img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
  }
  .lineup_list li a:hover figure img {
    -webkit-transform: scale(1.15, 1.15);
    -ms-transform: scale(1.15, 1.15);
    transform: scale(1.15, 1.15);
  }
  .lineup_list li a h3 {
    text-align: center;
    margin: 15px auto;
  }
  .lineup_list li a h3 img {
    max-width: 100px;
    width: 100%;
    height: auto;
  }
  .lineup_list li a p {
    font-size: 3.73vw;
  }
}/*# sourceMappingURL=style.css.map */