@charset "UTF-8";
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}
/* animetion */
.st0 {
  fill: #231815;
}

.ani__path {
  display: block;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .ani__path {
    padding: 20px 0;
  }
}
.ani__path path {
  fill: none;
  opacity: 0;
}
.ani__path.is-active path {
  opacity: 1;
  stroke: #333;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 9;
  animation: logo 1s ease-in forwards;
}
.ani__path:hover.is-active path {
  opacity: 1;
  stroke: #333;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 9;
  animation: logo2 3s linear infinite;
}
@keyframes logo {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  50% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #333;
  }
}
@keyframes logo2 {
  0% {
    stroke-dashoffset: 4000;
    fill: transparent;
  }
  50% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.ani__blind {
  overflow: hidden;
  position: relative;
  opacity: 0.5;
  transition: all 2s;
}
.ani__blind::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.1;
  transition: all 1.2s 0.3s;
  pointer-events: none;
}
.ani__blind::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.5;
  transition: all 1.5s;
  pointer-events: none;
}

.ani__blind.is-active {
  position: relative;
  opacity: 1;
}
.ani__blind.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.2;
}
.ani__blind.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.2;
}

.ani__fade__up {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 2s;
}

.ani__fade__up.is-active {
  opacity: 1;
  transform: translate(0, 0);
}

.ani__frame {
  position: relative;
  opacity: 0;
}
.ani__frame::before, .ani__frame::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #a0a0a0;
}
.ani__frame::before {
  top: 0;
  left: 0;
}
.ani__frame::after {
  bottom: 0;
  right: 0;
}
.ani__frame__inner::before, .ani__frame__inner::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #a0a0a0;
}
.ani__frame__inner::before {
  top: 0;
  right: 0;
}
.ani__frame__inner::after {
  bottom: 0;
  left: 0;
}
.ani.is-active {
  animation-name: frameBase;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.ani.is-active::before {
  animation: frameTB 0.5s linear 0s forwards;
  /*表示されて0秒後に上線が0.5秒かけて表示*/
}
.ani.is-active::after {
  animation: frameTB 0.5s linear 1s forwards;
  /*表示されて1秒後に下線が0.5秒かけて表示*/
}
.ani.is-active .ani__frame__inner::before {
  animation: frameLR 0.5s linear 0.5s forwards;
  /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}
.ani.is-active .ani__frame__inner::after {
  animation: frameLR 0.5s linear 1.5s forwards;
  /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}
.ani.is-active .ani__frame__hide {
  animation: frameHide 0.5s linear 1.5s forwards;
  /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0;
  /*初期値を透過0にする*/
}

@keyframes frameBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes frameTB {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes frameLR {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes frameHide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.6em;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 1200px) {
  body {
    letter-spacing: 0.04vw;
  }
}

.cap {
  position: absolute;
  inset: auto 0.4rem 0.4rem auto;
  font-size: 1.2rem;
  text-shadow: 0 0 3px #fff;
}
.cap.w {
  color: #fff;
  text-shadow: 0 0 3px #000;
}

.note {
  font-size: 1.2rem;
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .note {
    padding: 13vw 0 0;
  }
}

section {
  background: #fff;
}
section .inner {
  margin: 0 auto;
  padding: 0 50px;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  section .inner {
    padding: 0 2.2rem;
  }
}
section h2 {
  margin: 0 0 0.8rem;
  font-size: 4.4rem;
  font-family: "bodoni-urw", serif;
}
@media screen and (max-width: 1200px) {
  section h2 {
    font-size: 3.7vw;
  }
}
@media screen and (max-width: 767px) {
  section h2 {
    font-size: 8.51vw;
  }
}
section .sub__ttl {
  margin: 0 0 3.5rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 1200px) {
  section .sub__ttl {
    margin: 0 0 3.4vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  section .sub__ttl {
    margin: 0 0 7.82vw;
    font-size: 3.45vw;
  }
}
section .btn {
  display: inline-block;
  width: auto;
}
section .btn a {
  position: relative;
  display: inline-block;
  padding: 1.7rem 7rem;
  font-size: 1.6rem;
  color: #fff;
  background: #666564;
  font-family: "lato", sans-serif;
  transition: 0.6s;
}
@media screen and (max-width: 1200px) {
  section .btn a {
    padding: 1.3vw 5.8vw;
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 767px) {
  section .btn a {
    padding: 2.99vw 13.34vw;
    font-size: 2.99vw;
  }
}
section .btn a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
}
section .btn a:hover {
  color: #000;
  background: #fff;
}

#footer {
  overflow: hidden;
  position: relative;
  text-align: center;
  padding-top: 45px;
  position: relative;
  z-index: 0;
  background: #fff;
  font-family: "noto-sans", sans-serif;
}
@media screen and (max-width: 1200px) {
  #footer {
    padding-top: 3.5vw;
  }
}
@media screen and (max-width: 767px) {
  #footer {
    padding-top: 8.05vw;
  }
}

.f_nav li {
  font-size: 12px;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .f_nav li {
    font-size: 1vw;
  }
}

@media screen and (max-width: 767px) {
  .f_nav {
    margin: 0 0 5vw;
  }
  .f_nav li {
    font-size: 10px;
    line-height: 2.5;
  }
}
.f_nav li:nth-child(1):before {
  content: "|";
  margin-right: 0.25em;
}

.f_nav li:after {
  content: "|";
  margin: 0 0.1em 0 0.5em;
}

@media screen and (max-width: 767px) {
  .f_nav li:after {
    margin: 0 0 0 0.2em;
  }
}
@media screen and (max-width: 767px) {
  .f_nav li:nth-child(4):before {
    content: "|";
    margin-right: 0.25em;
  }
  .f_nav li:nth-child(n+4) {
    position: relative;
    top: -0.5em;
  }
  .f_nav a[target=_blank]:after {
    content: "";
    display: inline-block;
    background: url(assets/img/ico_link_b.svg) no-repeat 50%/contain;
    width: 0.75rem;
    height: 0.55rem;
    margin: 0 0.2em;
  }
}
.f_logo {
  background: url(assets/img/f_line.png) no-repeat center top/100% 2px;
  margin: 36px auto 0;
  padding: 36px 0;
}
@media screen and (max-width: 1200px) {
  .f_logo {
    margin: 3vw auto 0;
    padding: 3vw 0;
  }
}
@media screen and (max-width: 767px) {
  .f_logo {
    margin: 5vw auto 0;
    padding: 5vw 0;
  }
}

.f_logo img {
  height: 32px;
}
@media screen and (max-width: 1200px) {
  .f_logo img {
    height: 2.7vw;
  }
}
@media screen and (max-width: 767px) {
  .f_logo img {
    height: 4.8vw;
  }
}

.f_copy {
  margin: 15px 0 0;
  font-size: 9px;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .f_copy {
    margin: 1.4vw 0 0;
    font-size: 0.75vw;
  }
}
@media screen and (max-width: 767px) {
  .f_copy {
    font-size: 2.3vw;
  }
}

#imageBox {
  transition: opacity 0.3s ease-in-out;
  /* Set the transition properties */
}

.hum {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: #e6e6e2;
}
.hum .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10vw;
  background: #e6e6e2;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .hum .flex {
    margin: 0 auto;
    width: 1500px;
    height: auto;
  }
}
.hum .flex .img__box {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .hum .flex .img__box {
    display: none;
  }
}
.hum .flex .img__box .logo {
  position: absolute;
  top: 30px;
  left: 30px;
  text-align: center;
  z-index: 3;
  mix-blend-mode: multiply;
}
.hum .flex .img__box .logo img {
  height: 4.37vw;
  width: auto;
}
@media screen and (min-width: 1200px) {
  .hum .flex .img__box .logo img {
    height: 23px;
  }
}
.hum .flex .img__box .box {
  position: relative;
  width: 100%;
  height: 40vw;
}
@media screen and (max-height: 750px) {
  .hum .flex .img__box .box {
    height: calc(100vh - 12vw);
  }
}
.hum .flex .img__box .box p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s;
}
.hum .flex .img__box .box p.active {
  opacity: 1;
}
.hum .flex .img__box .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hum .flex nav {
  width: calc(50% - 7vw);
}
@media screen and (max-width: 767px) {
  .hum .flex nav {
    width: 100%;
  }
}
.hum .flex nav ul {
  overflow: hidden;
}
.hum .flex nav ul li {
  margin: 0 0 1.6vw;
  width: 18vw;
  font-size: 2.5vw;
  font-family: "bodoni-urw", serif;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .hum .flex nav ul li {
    margin: 0 0 30px;
    width: 300px;
    font-size: 50px;
  }
}
@media screen and (max-height: 750px) {
  .hum .flex nav ul li {
    margin: 0 0 15px;
    font-size: 42px;
  }
}
@media screen and (max-width: 767px) {
  .hum .flex nav ul li {
    margin: 0 0 3vw;
    width: 100%;
    font-size: 10vw;
  }
}
.hum .flex nav ul li:last-child {
  margin: 0 0 3vw;
}
@media screen and (min-width: 1200px) {
  .hum .flex nav ul li:last-child {
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .hum .flex nav ul li:last-child {
    margin: 0 0 8vw;
  }
}
.hum .flex nav ul li span {
  display: block;
  font-size: 14px;
  font-family: "shippori-mincho", sans-serif;
}
.hum .flex nav ul li a {
  position: relative;
  display: block;
  padding: 0 0 10px;
}
.hum .flex nav ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: transparent;
  transition: 1s;
}
.hum .flex nav ul li a:hover::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
}
.hum .flex nav ul .img2,
.hum .flex nav ul .img3 {
  position: relative;
}
.hum .flex nav ul .img2::after,
.hum .flex nav ul .img3::after {
  display: grid;
  place-items: center;
  height: 2.4rem;
  position: absolute;
  top: 1rem;
  border-radius: 0.2rem;
  color: #fff;
  font-family: sans;
  font-size: 1.3rem;
}
.hum .flex nav ul .img2::after,
.hum .flex nav ul .img3::after {
  content: "UPDATE";
  width: 8rem;
  left: 15rem;
  background: #8c8b89;
}
@media screen and (max-width: 767px) {
  .hum .flex nav ul .img2::after,
  .hum .flex nav ul .img3::after {
    left: 11rem;
  }
}
.hum .flex nav ul .img2::after {
  left: 29rem;
}
@media screen and (max-width: 767px) {
  .hum .flex nav ul .img2::after {
    left: 21rem;
  }
}
.hum .flex nav .btn {
  display: inline-block;
  width: auto;
}
.hum .flex nav .btn a {
  display: inline-block;
  padding: 1.6vw 5vw 1.6vw 3vw;
  color: #fff;
  font-size: 0.9vw;
  background: #987b69;
  font-family: "noto-sans", sans-serif;
  border-radius: 3px;
  transition: 0.6s;
  border: 1px solid #987b69;
}
@media screen and (min-width: 1200px) {
  .hum .flex nav .btn a {
    padding: 25px 60px 25px 40px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .hum .flex nav .btn a {
    padding: 6.9vw 16.1vw 6.9vw 16.1vw;
    font-size: 4vw;
  }
}
.hum .flex nav .btn a:hover {
  color: #000;
  background: #fff;
  border: 1px solid #000;
}

.menu-btn {
  position: fixed;
  top: 19px;
  right: 45px;
  z-index: 100;
  width: 70px;
  mix-blend-mode: difference;
  transition: 1s;
  line-height: 12px;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .menu-btn {
    top: 1.6vw;
    width: 6vw;
    right: 4vw;
    line-height: 1vw;
  }
}
@media screen and (max-width: 767px) {
  .menu-btn {
    top: 3.68vw;
    width: 13.8vw;
    right: 2.2rem;
    line-height: 2.3vw;
  }
}
.menu-btn span {
  display: inline-block;
  height: 2px;
  width: 100%;
  background: #fff;
  transform: 1s;
  transform: rotate(0);
}
.menu-btn.is-active span:nth-child(1) {
  position: relative;
  top: 24.4px;
  transform: rotate(-20deg);
  transform-origin: left top;
}
@media screen and (max-width: 1200px) {
  .menu-btn.is-active span:nth-child(1) {
    top: 2.1vw;
  }
}
@media (max-width: 820px) {
  .menu-btn.is-active span:nth-child(1) {
    top: 2.25vw;
  }
}
@media screen and (max-width: 767px) {
  .menu-btn.is-active span:nth-child(1) {
    top: 4.945vw;
  }
}
.menu-btn.is-active span:nth-child(2) {
  background: transparent;
}
.menu-btn.is-active span:nth-child(3) {
  position: relative;
  top: -24.4px;
  transform: rotate(20deg);
  transform-origin: left top;
}
@media screen and (max-width: 1200px) {
  .menu-btn.is-active span:nth-child(3) {
    top: -2.1vw;
  }
}
@media (max-width: 820px) {
  .menu-btn.is-active span:nth-child(3) {
    top: -2.25vw;
  }
}
@media screen and (max-width: 767px) {
  .menu-btn.is-active span:nth-child(3) {
    top: -4.945vw;
  }
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #555;
}

.menu__item {
  width: 100%;
  height: auto;
  padding: 0.5em 1em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.menu {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s linear;
}

.menu.is-active {
  pointer-events: auto;
  opacity: 1;
}

.menu__dis {
  position: fixed;
  top: 33px;
  right: 160px;
  z-index: 1;
  mix-blend-mode: difference;
}
@media screen and (max-width: 1200px) {
  .menu__dis {
    top: 2.5vw;
    right: 13.5vw;
  }
}
@media screen and (max-width: 767px) {
  .menu__dis {
    top: 5.75vw;
    right: 31.05vw;
  }
}
.menu__dis a {
  padding: 1.3rem 6rem 1.3rem 3rem;
  color: #fff;
  font-size: 14px;
  font-family: "noto-sans", sans-serif;
  transition: 0.6s;
  border: 1px solid #fff;
  border-radius: 3px;
}
@media screen and (max-width: 1200px) {
  .menu__dis a {
    padding: 1vw 5.2vw 1vw 2.34vw;
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .menu__dis a {
    display: none;
    padding: 2.3vw 11.96vw 2.3vw 5.382vw;
    font-size: 2.76vw;
  }
}
.menu__dis a:hover {
  background: #595758;
  border: 1px solid #595758;
}

.btnlinestretches {
  position: relative;
  width: 100%;
  height: 100%;
}
.btnlinestretches.more {
  border: 1px solid #666564;
}

.btnlinestretches::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 43px);
  height: 1px;
  background: #fff;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .btnlinestretches::before {
    left: calc(100% - 3.7vw);
  }
}
@media screen and (max-width: 767px) {
  .btnlinestretches::before {
    left: calc(100% - 8vw);
  }
}

.btnlinestretches::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: 100%;
  /*矢印の形状*/
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 1200px) {
  .btnlinestretches::after {
    top: calc(50% - 0.35vw);
    left: auto;
    width: 0.7vw;
    height: 0.7vw;
  }
}
@media screen and (max-width: 767px) {
  .btnlinestretches::after {
    top: calc(50% - 0.805vw);
    left: calc(100% - 5vw);
    width: 1.61vw;
    height: 1.61vw;
  }
}

.btnlinestretches::before {
  animation: arrowlong01 2s ease infinite;
}

.btnlinestretches::after {
  animation: arrowlong02 2s ease infinite;
}

.btnlinestretches:hover::before {
  background: #000;
}
.btnlinestretches:hover::after {
  border-top: 1px solid #000;
}

@keyframes arrowlong01 {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0;
    opacity: 1;
  }
  80% {
    width: 21px;
    opacity: 1;
  }
  100% {
    width: 21px;
    opacity: 0;
  }
}
@media screen and (max-width: 1200px) {
  @keyframes arrowlong01 {
    0% {
      width: 0;
      opacity: 0;
    }
    20% {
      width: 0;
      opacity: 1;
    }
    80% {
      width: 2vw;
      opacity: 1;
    }
    100% {
      width: 2vw;
      opacity: 0;
    }
  }
}
@media screen and (max-width: 767px) {
  @keyframes arrowlong01 {
    0% {
      width: 0;
      opacity: 0;
    }
    20% {
      width: 0;
      opacity: 1;
    }
    80% {
      width: 4.3vw;
      opacity: 1;
    }
    100% {
      width: 4.3vw;
      opacity: 0;
    }
  }
}
@keyframes arrowlong02 {
  0% {
    left: calc(100% - 53px);
    opacity: 0;
  }
  20% {
    left: calc(100% - 53px);
    opacity: 1;
  }
  80% {
    left: calc(100% - 31px);
    opacity: 1;
  }
  100% {
    left: calc(100% - 31px);
    opacity: 0;
  }
}
@media screen and (max-width: 1200px) {
  @keyframes arrowlong02 {
    0% {
      left: calc(100% - 5vw);
      opacity: 0;
    }
    20% {
      left: calc(100% - 5vw);
      opacity: 1;
    }
    80% {
      left: calc(100% - 2.5vw);
      opacity: 1;
    }
    100% {
      left: calc(100% - 2.5vw);
      opacity: 0;
    }
  }
}
@media screen and (max-width: 767px) {
  @keyframes arrowlong02 {
    0% {
      left: calc(100% - 11.5vw);
      opacity: 0;
    }
    20% {
      left: calc(100% - 11.5vw);
      opacity: 1;
    }
    80% {
      left: calc(100% - 5.75vw);
      opacity: 1;
    }
    100% {
      left: calc(100% - 5.75vw);
      opacity: 0;
    }
  }
}
#index {
  /* popup */
}
#index section.key {
  position: relative;
  height: 100vh;
  background: #000;
  z-index: 0;
}
#index section.key #app_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  #index section.key #app_sp {
    display: block;
  }
}
#index section.key .slider__slide-parts:after {
  display: none;
}
#index section.index__list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
}
#index section.index__list ul li {
  width: 33.3333333333%;
  text-align: center;
  transition: 0.6s;
}
#index section.index__list ul li:nth-child(1) {
  background: #cac7c5;
}
#index section.index__list ul li:nth-child(2) {
  background: #e6e6e2;
}
#index section.index__list ul li:nth-child(3) {
  background: #cac7c5;
}
#index section.index__list ul li h2 {
  margin: 0 0 3px;
  font-size: 4.6rem;
  font-family: "bodoni-urw", serif;
}
@media screen and (max-width: 1200px) {
  #index section.index__list ul li h2 {
    font-size: 3.85vw;
  }
}
#index section.index__list ul li .dis__jp {
  margin: 0 0 3.5rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 1200px) {
  #index section.index__list ul li .dis__jp {
    margin: 0 0 2.9vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.index__list ul li .dis__jp {
    font-size: 2.8vw;
  }
}
#index section.index__list ul li .icon {
  margin: 0 0 4rem;
}
@media screen and (max-width: 1200px) {
  #index section.index__list ul li .icon {
    margin: 0;
  }
}
#index section.index__list ul li .icon svg {
  height: 150px;
}
@media screen and (max-width: 1200px) {
  #index section.index__list ul li .icon svg {
    height: 12vw;
  }
}
#index section.index__list ul li .txt {
  font-size: 1.9rem;
  line-height: 3.2rem;
}
@media screen and (max-width: 1200px) {
  #index section.index__list ul li .txt {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #index section.index__list ul li .txt {
    font-size: 2.8vw;
    line-height: 4vw;
  }
}
#index section.index__list ul li .txt br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  #index section.index__list ul li .txt br.sp {
    display: block;
  }
}
#index section.index__list ul li.brightness {
  filter: brightness(60%);
}
#index section.brand {
  padding: 13rem 0;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  #index section.brand {
    padding: 10.8vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.brand {
    padding: 19.44vw 2.2rem;
  }
}
#index section.brand .brand__content {
  margin: 0 0 8rem;
}
@media screen and (max-width: 1200px) {
  #index section.brand .brand__content {
    margin: 0 0 6.7vw;
  }
}
#index section.brand .ttl__logo {
  margin: 0 0 6rem;
}
#index section.brand .ttl__logo img {
  height: 63px;
}
@media screen and (max-width: 1200px) {
  #index section.brand .ttl__logo {
    margin: 0 0 5.05vw;
  }
  #index section.brand .ttl__logo img {
    height: 5.2vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.brand .ttl__logo {
    margin: 0 0 8.395vw;
  }
  #index section.brand .ttl__logo img {
    height: 9.2vw;
  }
}
#index section.brand .sub__ttl {
  margin: 0 0 4rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 1200px) {
  #index section.brand .sub__ttl {
    margin: 0 0 3.3vw;
    font-size: 2.04vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.brand .sub__ttl {
    margin: 0 0 7.59vw;
    font-size: 4.692vw;
  }
}
#index section.brand .txt {
  font-size: 1.6rem;
  line-height: 3rem;
}
@media screen and (max-width: 1200px) {
  #index section.brand .txt {
    font-size: 1.37vw;
    line-height: 3.35vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.brand .txt {
    font-size: 3.151vw;
    line-height: 7.705vw;
  }
}
#index section.brand .box {
  margin: 0 0 3.5rem;
}
#index section.brand .box .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #index section.brand .box .flex > div {
    padding: 1vw 0;
    width: 100%;
  }
}
#index section.brand .box .flex .ttl {
  width: 24rem;
  font-size: 4rem;
  font-family: "bodoni-urw", serif;
  border: 1px solid #cac7c5;
}
@media screen and (max-width: 1200px) {
  #index section.brand .box .flex .ttl {
    width: 16.7vw;
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.brand .box .flex .ttl {
    margin: 0 auto 2vw;
    width: 58.45vw;
    font-size: 8.75vw;
  }
}
#index section.brand .box .flex .ttl span {
  opacity: 0;
}
#index section.brand .box .flex .is-active.ttl span {
  opacity: 0;
  animation: letter-glow 6s 0s ease both;
}
#index section.brand .box .flex .is-active.ttl span {
  opacity: 1;
}
#index section.brand .box .flex .is-active.ttl span:nth-child(1) {
  animation-delay: 0.5s;
}
#index section.brand .box .flex .is-active.ttl span:nth-child(2) {
  animation-delay: 0.6s;
}
#index section.brand .box .flex .is-active.ttl span:nth-child(3) {
  animation-delay: 0.7s;
}
#index section.brand .box .flex .is-active.ttl span:nth-child(4) {
  animation-delay: 0.8s;
}
#index section.brand .box .flex .is-active.ttl span:nth-child(5) {
  animation-delay: 0.9s;
}
#index section.brand .box .flex .is-active.ttl span:nth-child(6) {
  animation-delay: 1s;
}
#index section.brand .box .flex .delay.is-active.ttl span {
  opacity: 0;
  animation: letter-glow 0.5s s ease both;
}
#index section.brand .box .flex .delay.is-active.ttl span:nth-child(1) {
  animation-delay: 1.6s;
}
#index section.brand .box .flex .delay.is-active.ttl span:nth-child(2) {
  animation-delay: 1.7s;
}
#index section.brand .box .flex .delay.is-active.ttl span:nth-child(3) {
  animation-delay: 1.8s;
}
#index section.brand .box .flex .delay.is-active.ttl span:nth-child(4) {
  animation-delay: 1.9s;
}
#index section.brand .box .flex .delay.is-active.ttl span:nth-child(5) {
  animation-delay: 2s;
}
#index section.brand .box .flex .delay.is-active.ttl span:nth-child(6) {
  animation-delay: 2.1s;
}
@keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}
#index section.brand .box .flex .icon {
  padding: 0 2rem;
}
@media screen and (max-width: 1200px) {
  #index section.brand .box .flex .icon {
    padding: 0 1.65vw;
  }
  #index section.brand .box .flex .icon img {
    height: 2vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.brand .box .flex .icon {
    margin: 0 auto 2.3vw;
    padding: 0 3.795vw;
  }
  #index section.brand .box .flex .icon img {
    height: 4.6vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.brand .box .flex .icon.rotate {
    transform: rotate(90deg);
  }
}
#index section.brand .box .flex .logo {
  opacity: 0;
  filter: blur(100px);
  transition: 2s;
  transition-delay: 2.5s;
}
#index section.brand .box .flex .logo img {
  width: auto;
  height: 3.4rem;
}
@media screen and (max-width: 1200px) {
  #index section.brand .box .flex .logo img {
    height: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.brand .box .flex .logo img {
    margin: 3vw 0 0;
    height: 7.5vw;
  }
}
#index section.brand .box .flex .logo.is-active {
  opacity: 1;
  filter: blur(0);
}
#index section.brand .box__txt {
  font-size: 1.6rem;
  line-height: 3rem;
}
@media screen and (max-width: 1200px) {
  #index section.brand .box__txt {
    font-size: 1.37vw;
    line-height: 3.35vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.brand .box__txt {
    font-size: 3.151vw;
    line-height: 7.705vw;
  }
}
#index section.lifestyle {
  padding: 12rem 0;
  background: #cac7c5;
}
@media screen and (max-width: 1200px) {
  #index section.lifestyle {
    padding: 10.8vw 0;
  }
}
@media screen and (max-width: 767px) {
  #index section.lifestyle {
    padding: 15vw 0;
  }
}
#index section.lifestyle .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#index section.lifestyle .flex > div:first-child {
  margin: 0 0 0 -50%;
  width: 90%;
}
#index section.lifestyle .flex > div:first-child span {
  display: block;
  height: 50rem;
  background: 50% 50%/cover url(assets/img/key_05.png) no-repeat;
}
@media screen and (max-width: 1200px) {
  #index section.lifestyle .flex > div:first-child span {
    height: 42vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.lifestyle .flex > div:first-child span {
    height: 63vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.lifestyle .flex > div:first-child {
    margin: 0 0 8vw;
    width: 100%;
  }
}
#index section.lifestyle .flex > div:last-child {
  width: calc(60% - 8rem);
}
@media screen and (max-width: 1200px) {
  #index section.lifestyle .flex > div:last-child {
    width: calc(60% - 6.7vw);
  }
}
@media screen and (max-width: 767px) {
  #index section.lifestyle .flex > div:last-child {
    width: 100%;
  }
}
#index section.lifestyle .flex > div:last-child .txt {
  margin: 0 0 3rem;
  font-size: 1.5rem;
  line-height: 3rem;
}
@media screen and (max-width: 1200px) {
  #index section.lifestyle .flex > div:last-child .txt {
    margin: 0 0 1.7vw;
    font-size: 1.3vw;
    line-height: 3vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.lifestyle .flex > div:last-child .txt {
    margin: 0 0 6.9vw;
    font-size: 2.99vw;
    line-height: 6.9vw;
  }
}
#index section.lifestyle .flex > div img {
  width: 100%;
}
#index section.lifestyle #flick {
  position: relative;
  left: -805px;
  width: calc(100% + 805px);
  z-index: 0;
}
@media screen and (max-width: 1200px) {
  #index section.lifestyle #flick {
    left: -59vw;
    width: calc(100% + 59vw);
  }
}
@media screen and (max-width: 767px) {
  #index section.lifestyle #flick {
    left: -35vw;
    width: calc(100% + 35vw);
  }
}
#index section.lifestyle #flick .flicking-panel {
  overflow: hidden;
  position: relative;
  margin: 0 4rem 0 0;
}
@media screen and (max-width: 1200px) {
  #index section.lifestyle #flick .flicking-panel {
    margin: 0 3.5vw 0 0;
  }
  #index section.lifestyle #flick .flicking-panel img {
    height: 17.5vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.lifestyle #flick .flicking-panel {
    margin: 0 5vw 0 0;
  }
  #index section.lifestyle #flick .flicking-panel img {
    height: 40.25vw;
  }
}
#index section.area {
  padding: 12rem 0;
}
@media screen and (max-width: 1200px) {
  #index section.area {
    padding: 10.8vw 0;
  }
}
@media screen and (max-width: 767px) {
  #index section.area {
    padding: 13vw 0;
  }
}
#index section.area .inner .txt {
  margin: 0 0 5rem;
  font-size: 1.5rem;
  line-height: 3.5rem;
}
@media screen and (max-width: 1200px) {
  #index section.area .inner .txt {
    margin: 0 0 4vw;
    font-size: 1.3vw;
    line-height: 3vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.area .inner .txt {
    margin: 0 0 7vw;
    font-size: 2.99vw;
    line-height: 6.9vw;
  }
}
#index section.area #flick2 {
  position: relative;
  left: -772px;
  margin: 0 0 50px;
  width: calc(100% + 772px);
  z-index: 0;
}
@media screen and (max-width: 1200px) {
  #index section.area #flick2 {
    left: -56vw;
    margin: 0 0 5vw;
    width: calc(100% + 56vw);
  }
}
@media screen and (max-width: 767px) {
  #index section.area #flick2 {
    margin: 0 0 6.9vw;
    left: -26vw;
    width: calc(100% + 26vw);
  }
}
#index section.area #flick2 .flicking-camera .modal-btn {
  cursor: pointer;
}
#index section.area #flick2 .flicking-panel {
  margin: 0 4rem 0 0;
}
@media screen and (max-width: 1200px) {
  #index section.area #flick2 .flicking-panel {
    margin: 0 3.5vw 0 0;
  }
  #index section.area #flick2 .flicking-panel img {
    height: 17.5vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.area #flick2 .flicking-panel {
    margin: 0 5vw 0 0;
  }
  #index section.area #flick2 .flicking-panel img {
    height: 40.25vw;
  }
}
#index section.area #flick2 .ani__blind {
  width: 28rem;
  aspect-ratio: 1/0.736;
}
@media screen and (max-width: 767px) {
  #index section.area #flick2 .ani__blind {
    width: 54.62vw;
  }
}
#index section.area #flick2 .ani__blind img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#index section.area #flick2 .name {
  margin: 10px 0 0;
  line-height: 20px;
  font-size: 15px;
}
@media screen and (max-width: 1200px) {
  #index section.area #flick2 .name {
    margin: 1.3vw 0 0;
    line-height: 1.65vw;
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.area #flick2 .name {
    margin: 2.99vw 0 0;
    line-height: 3.795vw;
    font-size: 2.875vw;
  }
}
#index section.area #flick2 .name span {
  display: block;
  font-size: 12px;
}
@media screen and (max-width: 1200px) {
  #index section.area #flick2 .name span {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.area #flick2 .name span {
    font-size: 2.3vw;
  }
}
#index section.plus {
  padding: 12rem 0;
  background: #f0f0eb;
}
@media screen and (max-width: 1200px) {
  #index section.plus {
    padding: 10vw 0;
  }
}
@media screen and (max-width: 767px) {
  #index section.plus {
    padding: 13vw 0;
  }
}
#index section.plus .logo {
  text-align: center;
  margin: 0 0 3.5rem;
}
@media screen and (max-width: 767px) {
  #index section.plus .logo {
    margin: 0 0 6.9vw;
  }
}
@media screen and (max-width: 767px) {
  #index section.plus .logo img {
    width: 35vw;
  }
}
#index section.plus .bnr a {
  display: block;
}
#index section.plus .bnr img {
  width: 100%;
  height: auto;
}
#index section.news {
  padding: 12rem 0;
  background: #e6e6e2;
}
@media screen and (max-width: 1200px) {
  #index section.news {
    padding: 10vw 0;
  }
}
@media screen and (max-width: 767px) {
  #index section.news {
    padding: 13vw 0;
  }
}
#index section.news #news_list {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #index section.news #news_list {
    font-size: 2.99vw;
  }
}
#index section.news #news_list li:not(:nth-child(-n+8)) {
  display: none;
}
#index .modal-close {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50px;
  right: 50px;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #index .modal-close {
    width: 7vw;
    height: 7vw;
    top: 5vw;
    right: 5vw;
  }
}
#index .modal-close:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(assets/img/icon_close_01.svg);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
#index .popup {
  display: none;
}
#index .popup.open_modal {
  display: block;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 99999;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: scroll;
}
#index .popup-inner {
  display: flex;
  flex-wrap: wrap;
  /*padding: 120px;*/
  justify-content: space-between;
  max-width: 1000px;
  margin: 80px auto;
}
@media screen and (max-width: 767px) {
  #index .popup-inner {
    max-width: 100%;
    margin: 0;
    padding: 16vw 2.2rem;
  }
}
#index .ttl-box {
  width: 250px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  #index .ttl-box {
    width: 100%;
    order: 3;
  }
}
#index .ttl-box h2 {
  color: white;
  font-size: 18px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #index .ttl-box h2 {
    font-size: 3.5vw;
  }
}
#index .ttl-box dl dt,
#index .ttl-box dl dd {
  color: white;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  #index .ttl-box dl dt,
  #index .ttl-box dl dd {
    font-size: 3vw;
  }
}
#index .ttl-box dl dt {
  display: flex;
}
#index .ttl-box dl dt:before {
  background-image: url("assets/img/icon_map_01.svg");
  width: 10px;
  height: 12px;
  margin-right: 5px;
  content: "";
  display: block;
}
#index .ttl-box dl dd {
  margin-top: 10px;
}
#index .thumbsSlider-wrapper {
  overflow: hidden;
  width: calc(100% - 250px - 80px);
}
@media screen and (max-width: 767px) {
  #index .thumbsSlider-wrapper {
    width: 100%;
    order: 2;
  }
}
#index .swiper {
  width: 100%;
  height: 100%;
}
#index .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#index .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#index .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
#index .swiper-slide {
  background-size: cover;
  background-position: center;
}
#index .mySwiper2 {
  height: 80%;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #index .mySwiper2 {
    order: 1;
  }
}
#index .thumbsSlider {
  cursor: pointer;
}
#index .mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
#index .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
#index .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
#index .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#index .thumbsSlider .mySwiper .swiper-slide {
  border: 3px solid transparent;
  background: transparent;
}
#index .thumbsSlider .mySwiper .swiper-slide-thumb-active {
  border: 3px solid white;
}

#subpage section {
  background: #e6e6e2;
}
#subpage h2 {
  margin: 0 0 50px;
  font-size: 30px;
  font-family: "shippori-mincho", sans-serif;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  #subpage h2 {
    margin: 0 0 2.5vw;
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  #subpage h2 {
    margin: 0 0 5.75vw;
    font-size: 4.6vw;
  }
}
#subpage p.txt {
  margin: 0 0 50px;
  font-size: 15px;
  font-family: "noto-sans", sans-serif;
  line-height: 30px;
}
@media screen and (max-width: 1200px) {
  #subpage p.txt {
    margin: 0 0 4vw;
    font-size: 1.25vw;
    line-height: 2.55vw;
  }
}
@media screen and (max-width: 767px) {
  #subpage p.txt {
    margin: 0 0 9.2vw;
    font-size: 2.875vw;
    line-height: 5.865vw;
  }
}
#subpage .inner {
  padding: 100px 50px;
  max-width: 1200px;
}
@media screen and (max-width: 1200px) {
  #subpage .inner {
    padding: 8.5vw 4.4vw;
  }
}
@media screen and (max-width: 767px) {
  #subpage .inner {
    padding: 13vw 2.2rem;
  }
}
#subpage .kv {
  position: relative;
  width: 100%;
  height: 620px;
}
@media screen and (max-width: 1200px) {
  #subpage .kv {
    height: 51.5vw;
  }
}
#subpage .kv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#subpage .kv .inner {
  display: flex;
  align-items: center;
  padding: 0 50px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #subpage .kv .inner {
    padding: 0 2.2rem;
  }
}
#subpage .kv h1 {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  #subpage .kv h1 {
    top: 2.5vw;
    left: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  #subpage .kv h1 {
    top: 5.75vw;
    left: 5.75vw;
  }
}
#subpage .kv h1 img {
  height: 23px;
}
@media screen and (max-width: 1200px) {
  #subpage .kv h1 img {
    height: 1.9vw;
  }
}
@media screen and (max-width: 767px) {
  #subpage .kv h1 img {
    height: 4.37vw;
  }
}
#subpage .kv h2 {
  position: relative;
  padding: 50px 0 0;
  color: #fff;
  font-size: 46px;
  font-family: "bodoni-urw", serif;
  z-index: 0;
}
@media screen and (max-width: 1200px) {
  #subpage .kv h2 {
    font-size: 3.8vw;
  }
}
@media screen and (max-width: 767px) {
  #subpage .kv h2 {
    position: absolute;
    inset: auto auto 10vw 50%;
    translate: -50% 0;
    font-size: 7.6vw;
  }
}
#subpage .kv__lifestyle {
  background: 50% 50%/cover url(assets/img/key_05.png) no-repeat;
}
#subpage .kv__area {
  background: 50% 50%/cover url(assets/img/key_03.png) no-repeat;
}
#subpage .kv__news {
  background: 50% 50%/cover url(assets/img/key_04.png) no-repeat;
}
#subpage section.lifestyle__content img {
  width: 100%;
}
#subpage section.lifestyle__content .pdt0 {
  padding-top: 0;
}
#subpage section.lifestyle__content .mb1 {
  margin: 0 0 40px;
}
@media screen and (max-width: 1200px) {
  #subpage section.lifestyle__content .mb1 {
    margin: 0 0 3.38vw;
  }
}
#subpage section.lifestyle__content .mb2 {
  margin: 0 0 60px;
}
@media screen and (max-width: 1200px) {
  #subpage section.lifestyle__content .mb2 {
    margin: 0 0 5vw;
  }
}
#subpage section.lifestyle__content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
#subpage section.lifestyle__content ul li {
  width: calc(33.3333333333% - 23px);
}
@media screen and (max-width: 1200px) {
  #subpage section.lifestyle__content ul li {
    width: calc(33.3333333333% - 2vw);
  }
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle__content ul li {
    width: 100%;
  }
}
#subpage section.lifestyle__content ul li .ani__blind {
  margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle__content ul li .ani__blind {
    margin: 0 0 2vw;
  }
}
#subpage section.lifestyle__content ul li img {
  width: 100%;
}
#subpage section.lifestyle__content ul li .dis {
  font-size: 13px;
  font-family: "noto-sans", sans-serif;
  line-height: 16px;
}
@media screen and (max-width: 1200px) {
  #subpage section.lifestyle__content ul li .dis {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle__content ul li .dis {
    margin: 0 0 9vw;
    font-size: 2.99vw;
  }
  #subpage section.lifestyle__content ul li .dis.none {
    margin: 0;
  }
}
#subpage section.lifestyle02__content h2 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content h2 {
    font-size: 5vw;
    margin-bottom: 8vw;
  }
}
#subpage section.lifestyle02__content .picture_box {
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  grid-template-rows: minmax 340px, 1fr;
  grid-gap: 5px;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: none;
  }
}
#subpage section.lifestyle02__content .picture_box .photo {
  height: 100%;
}
#subpage section.lifestyle02__content .picture_box .photo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#subpage section.lifestyle02__content .picture_box .photo.photo01 {
  grid-row: 1/3;
  grid-column: 1/31;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo01 {
    grid-column: 1/7;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo02 {
  grid-row: 3/4;
  grid-column: 1/10;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo02 {
    grid-column: 1/4;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo03 {
  grid-row: 3/4;
  grid-column: 10/19;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo03 {
    grid-column: 4/7;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo04 {
  grid-row: 4/5;
  grid-column: 1/19;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo04 {
    grid-column: 1/7;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo05 {
  grid-row: 3/5;
  grid-column: 19/31;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo05 {
    grid-column: 1/7;
    grid-row: 5/7;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo06 {
  grid-row: 5/6;
  grid-column: 1/31;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo06 {
    grid-column: 1/7;
    grid-row: 7/8;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo07 {
  grid-row: 6/6;
  grid-column: 1/11;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo07 {
    grid-column: 1/4;
    grid-row: 8/9;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo08 {
  grid-row: 6/7;
  grid-column: 11/21;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo08 {
    grid-column: 4/7;
    grid-row: 8/9;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo09 {
  grid-row: 6/7;
  grid-column: 21/31;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo09 {
    grid-column: 1/7;
    grid-row: 9/10;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo11 {
  grid-row: 1/4;
  grid-column: 1/16;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo11 {
    grid-column: 1/7;
    grid-row: 1/2;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo12 {
  grid-row: 1/3;
  grid-column: 16/31;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo12 {
    grid-column: 1/7;
    grid-row: 2/3;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo13 {
  grid-row: 3/3;
  grid-column: 16/31;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo13 {
    grid-column: 1/7;
    grid-row: 3/4;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo14 {
  grid-row: 4/5;
  grid-column: 1/11;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo14 {
    grid-column: 1/3;
    grid-row: 4/5;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo15 {
  grid-row: 4/5;
  grid-column: 11/21;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo15 {
    grid-column: 3/5;
    grid-row: 4/5;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo16 {
  grid-row: 4/5;
  grid-column: 21/31;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo16 {
    grid-column: 5/7;
    grid-row: 4/5;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo17 {
  grid-row: 5/6;
  grid-column: 1/19;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo17 {
    grid-column: 1/7;
    grid-row: 5/6;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo18 {
  grid-row: 5/6;
  grid-column: 19/31;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo18 {
    grid-column: 1/7;
    grid-row: 6/7;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo19 {
  grid-row: 6/7;
  grid-column: 1/11;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo19 {
    grid-column: 1/7;
    grid-row: 7/8;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo20 {
  grid-row: 6/7;
  grid-column: 11/21;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo20 {
    grid-column: 1/7;
    grid-row: 8/9;
  }
}
#subpage section.lifestyle02__content .picture_box .photo.photo21 {
  grid-row: 6/7;
  grid-column: 21/31;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box .photo.photo21 {
    grid-column: 1/7;
    grid-row: 9/10;
  }
}
#subpage section.lifestyle02__content .picture_box .photo .ani__frame__inner {
  height: 100%;
}
#subpage section.lifestyle02__content .picture_box + .ttl {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  #subpage section.lifestyle02__content .picture_box + .ttl {
    margin-top: 13vw;
  }
}
#subpage section.area__content {
  /*area*/
}
#subpage section.area__content .ttl {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #subpage section.area__content .ttl {
    font-size: 4.5vw;
    text-align: center;
    line-height: 1.5;
  }
}
#subpage section.area__content ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#subpage section.area__content ul::after {
  content: "";
  display: block;
  width: calc(33.3333333333% - 30px);
}
@media screen and (max-width: 1200px) {
  #subpage section.area__content ul::after {
    width: calc(33.3333333333% - 2.5vw);
  }
}
#subpage section.area__content ul li {
  position: relative;
  margin-top: 50px;
  width: calc(33.3333333333% - 30px);
  background: none !important;
}
@media screen and (max-width: 1200px) {
  #subpage section.area__content ul li {
    margin-top: 4.2vw;
    width: calc(33.3333333333% - 2.5vw);
  }
}
@media screen and (max-width: 767px) {
  #subpage section.area__content ul li {
    margin-top: 6vw;
    width: calc(50% - 1.5vw);
  }
}
@media screen and (max-width: 767px) {
  #subpage section.area__content ul li:nth-last-child(-n+3) {
    margin-top: 6vw;
  }
}
#subpage section.area__content ul li .modal-btn {
  cursor: pointer;
}
#subpage section.area__content ul li .ani__blind {
  height: 25rem;
}
@media screen and (max-width: 767px) {
  #subpage section.area__content ul li .ani__blind {
    height: 30vw;
  }
}
#subpage section.area__content ul li .ani__blind img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#subpage section.area__content ul li .name {
  margin: 15px 0 0;
  line-height: 20px;
  font-size: 15px;
}
@media screen and (max-width: 1200px) {
  #subpage section.area__content ul li .name {
    margin: 1.3vw 0 0;
    line-height: 1.65vw;
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  #subpage section.area__content ul li .name {
    margin: 3vw 0 0;
    font-size: 3vw;
  }
}
#subpage section.area__content ul li .name span {
  display: block;
  font-size: 12px;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  #subpage section.area__content ul li .name span {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  #subpage section.area__content ul li .name span {
    font-size: 2.5vw;
    margin-top: 1.5vw;
  }
}
#subpage section.area__content ul li a {
  display: block;
  transition: 0.6s;
}
#subpage section.area__content ul li a:hover {
  opacity: 0.5;
}
#subpage section.area__content ul li .pamph-btn {
  position: absolute;
  top: calc(25rem + 15px);
  right: 0;
}
@media screen and (max-width: 767px) {
  #subpage section.area__content ul li .pamph-btn {
    top: 31.5vw;
  }
}
#subpage section.area__content ul li .pamph-btn img {
  width: 40px;
}
@media screen and (max-width: 767px) {
  #subpage section.area__content ul li .pamph-btn img {
    width: 35px;
  }
}
#subpage section.area__content .txt-hide {
  display: none;
}
#subpage section.area__content .btn__wrp {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  #subpage section.area__content .btn__wrp {
    margin-top: 4.2vw;
  }
}
@media screen and (max-width: 767px) {
  #subpage section.area__content .btn__wrp {
    margin-top: 6vw;
  }
}
#subpage section.area__content .more {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 17px 70px;
  color: #fff;
  background: #666564;
  font-family: "lato", sans-serif;
  transition: 0.6s;
  transition: 0.5s;
  -erbkit-transition: 0.5s;
  border: 1px solid #666564;
}
@media screen and (max-width: 1200px) {
  #subpage section.area__content .more {
    padding: 1.4vw 5.9vw;
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 767px) {
  #subpage section.area__content .more {
    padding: 3.22vw 13.57vw;
    font-size: 2.99vw;
  }
}
#subpage section.area__content .more:hover {
  color: #000;
  background: #fff;
  border: 1px solid #000;
}
#subpage section.area__content .modal-close {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50px;
  right: 50px;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #subpage section.area__content .modal-close {
    width: 7vw;
    height: 7vw;
    top: 5vw;
    right: 5vw;
  }
}
#subpage section.area__content .modal-close:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(assets/img/icon_close_01.svg);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
#subpage section.area__content .popup {
  display: none;
}
#subpage section.area__content .popup.open_modal {
  display: block;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 99999;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: scroll;
}
#subpage section.area__content .popup-inner {
  display: flex;
  flex-wrap: wrap;
  /*padding: 120px;*/
  justify-content: space-between;
  max-width: 1000px;
  margin: 80px auto;
}
@media screen and (max-width: 767px) {
  #subpage section.area__content .popup-inner {
    max-width: 100%;
    margin: 0;
    padding: 16vw 2.2rem;
  }
}
#subpage section.area__content .ttl-box {
  width: 250px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  #subpage section.area__content .ttl-box {
    width: 100%;
    order: 3;
  }
}
#subpage section.area__content .ttl-box h2 {
  color: white;
  font-size: 18px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #subpage section.area__content .ttl-box h2 {
    font-size: 3.5vw;
  }
}
#subpage section.area__content .ttl-box dl dt,
#subpage section.area__content .ttl-box dl dd {
  color: white;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  #subpage section.area__content .ttl-box dl dt,
  #subpage section.area__content .ttl-box dl dd {
    font-size: 3vw;
  }
}
#subpage section.area__content .ttl-box dl dt {
  display: flex;
}
#subpage section.area__content .ttl-box dl dt:before {
  background: url("assets/img/icon_map_01.svg") center/contain no-repeat;
  width: 15px;
  height: 12px;
  margin-right: 5px;
  content: "";
  display: block;
}
#subpage section.area__content .ttl-box dl dd {
  margin-top: 10px;
}
#subpage section.area__content .thumbsSlider-wrapper {
  overflow: hidden;
  width: calc(100% - 250px - 80px);
}
@media screen and (max-width: 767px) {
  #subpage section.area__content .thumbsSlider-wrapper {
    width: 100%;
    order: 2;
  }
}
#subpage section.area__content .swiper {
  width: 100%;
  height: 100%;
}
#subpage section.area__content .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#subpage section.area__content .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#subpage section.area__content .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
#subpage section.area__content .swiper-slide {
  background-size: cover;
  background-position: center;
}
#subpage section.area__content .mySwiper2 {
  height: 80%;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #subpage section.area__content .mySwiper2 {
    order: 1;
  }
}
#subpage section.area__content .thumbsSlider {
  cursor: pointer;
}
#subpage section.area__content .mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
#subpage section.area__content .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
#subpage section.area__content .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
#subpage section.area__content .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#subpage section.area__content .thumbsSlider .mySwiper .swiper-slide {
  border: 3px solid transparent;
  background: transparent;
}
#subpage section.area__content .thumbsSlider .mySwiper .swiper-slide-thumb-active {
  border: 3px solid white;
}

.gotop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: auto 2rem 2rem auto;
  width: 5rem;
  height: 5rem;
  border: 1px solid #000;
  border-radius: 100%;
  z-index: 1;
  transition: 0.2s;
}
.gotop::before, .gotop::after {
  content: "";
  background: #000;
  width: 1.5rem;
  height: 1px;
}
.gotop::before {
  rotate: -45deg;
  translate: 0.25rem 0;
}
.gotop::after {
  rotate: 45deg;
  translate: -0.25rem 0;
}
.gotop:hover {
  background: #000;
}
.gotop:hover::before, .gotop:hover::after {
  background: #fff;
}

#news_year {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 5rem;
  font-size: 2rem;
  font-family: "noto-sans", sans-serif;
}
#news_year a.active {
  color: #987b69;
}

#news_list {
  font-family: "noto-sans", sans-serif;
}
#news_list li {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}
#news_list li.none {
  display: none;
}
#news_list a {
  text-decoration: underline;
}

.f_nav li:nth-child(1),
.menu__dis,
.hum .flex nav .btn {
  /*display: none;*/
}

.f_nav li:nth-child(2):before {
  content: "|";
  margin-right: 0.25em;
}

@media screen and (max-width: 767px) {
  .f_nav li:nth-child(n+4) {
    position: initial;
  }
  .f_nav li:nth-child(4):before {
    display: none;
  }
  .f_nav li:nth-child(5):before {
    content: "|";
    margin-right: 0.25em;
  }
}/*# sourceMappingURL=style.css.map */