@charset "UTF-8";
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: garamond-premier-pro, serif;
  font-weight: 400;
  font-style: normal;
  color: #111;
  background-color: #EFEFEF;
}

.caption {
  font-family: garamond-premier-pro, serif;
  font-weight: 500;
  font-style: normal;
}

.semi_b {
  font-family: garamond-premier-pro, serif;
  font-weight: 600;
  font-style: normal;
}

img,
video,
object {
  width: 100%;
  border: none;
  display: block;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #111;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.8;
    transition: all 0.5s;
    cursor: pointer;
  }
}
a[href=""] {
  pointer-events: none;
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

/*--------------------------------------*
* layout
*--------------------------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* ヘッダー
*--------------------------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* フッター
*--------------------------------------*/
footer {
  color: #111;
}
@media screen and (max-width: 768px) {
  footer .footer_bg {
    background-image: url(../assets/images/footer_sp.jpg);
    background-size: cover;
  }
}
@media screen and (min-width: 769px) {
  footer .footer_bg {
    background-image: url(../assets/images/footer_pc.jpg);
    background-size: cover;
  }
}
footer .footer_bg .inner {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer .footer_bg .inner {
    width: 84vw;
  }
}
@media screen and (min-width: 769px) {
  footer .footer_bg .inner {
    width: 57.1428571429vw;
  }
}
footer a:hover {
  opacity: 0.4;
}
footer .txt {
  text-align: center;
  font-size: 11px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  footer .txt {
    padding: 61.3333333333vw 0 36vw;
  }
}
@media screen and (min-width: 769px) {
  footer .txt {
    padding: 16.4285714286vw 0 9.6428571429vw;
  }
}
footer .txt p {
  font-size: 14px;
}
footer .logo_btn {
  max-width: 80px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer .logo_btn {
    padding: 8vw 0 16vw;
  }
}
@media screen and (min-width: 769px) {
  footer .logo_btn {
    padding: 2.1428571429vw 0 4.2857142857vw;
  }
}
footer .logo_btn svg {
  fill: #111;
}
footer .link ul {
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
}
footer .link ul li {
  margin-bottom: 18px;
}
footer .link ul li a {
  color: #111;
  display: inline-block;
}
footer .link ul li a::after {
  content: "";
  display: block;
  border-top: 1px solid #111;
  transform: scaleY(0.5);
  transform-origin: 100% 0;
}
footer .copyright {
  text-align: center;
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    padding: 0 0 2.6666666667vw;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 769px) {
  footer .copyright {
    padding: 0 0 1.4285714286vw;
    letter-spacing: 0.1em;
  }
}

/*--------------------------------------*
* object
*--------------------------------------*/
/*-------------------
* component
-------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* コンテンツ幅
*--------------------------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* 共通ボタン
*--------------------------------------*/
/*-------------------
* project
-------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
#fv {
  z-index: 2;
  min-height: 100svh;
}
@media screen and (min-width: 769px) {
  #fv {
    width: 100%;
    left: 0;
    bottom: 0;
    min-height: 100vh;
  }
}
#fv .inner {
  height: 100vh;
  height: 100svh;
}
@media screen and (min-width: 769px) {
  #fv .inner {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
#fv .inner::before {
  content: "";
  display: block;
  padding-top: 173.3333333333%;
}
#fv .inner h1 {
  position: absolute;
  color: #fff;
  z-index: 2;
  line-height: 1.2;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #fv .inner h1 {
    bottom: 41.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #fv .inner h1 {
    bottom: 2.1428571429vw;
  }
}
#fv .inner h1 .h1_main {
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #fv .inner h1 .h1_main {
    margin: 5.3333333333vw 0 6.6666666667vw;
    font-size: 13.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #fv .inner h1 .h1_main {
    margin: 1.4285714286vw 0 2.1428571429vw;
    font-size: 6.2857142857vw;
  }
}
#fv .inner h1 span {
  display: block;
}
@media screen and (max-width: 768px) {
  #fv .inner h1 span {
    font-size: 5.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #fv .inner h1 span {
    font-size: 2.6428571429vw;
  }
}
#fv .inner h1 span .vol {
  opacity: 0.4;
  display: inline-block;
  font-style: normal;
  background-color: #fff;
  color: #111;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #fv .inner h1 span .vol {
    font-size: 4.8vw;
    padding: 1.3333333333vw 2.6666666667vw 0.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #fv .inner h1 span .vol {
    font-size: 1.7857142857vw;
    padding: 0.6428571429vw 1.2857142857vw 0.2857142857vw;
  }
}
#fv .inner h1 span .vol::after {
  content: "";
  display: block;
  border-top: 1px solid #fff;
  transform: scaleY(0.5);
  transform-origin: 100% 0;
}
#fv .inner .fv_logo {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #fv .inner .fv_logo {
    width: 19.7333333333vw;
    left: 5.3333333333vw;
    top: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #fv .inner .fv_logo {
    width: 7.1428571429vw;
    left: 2.5vw;
    top: 2.1428571429vw;
  }
}
#fv .inner .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
#fv .inner .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.inview1 {
  opacity: 0; /*表示前に透明にしておく */
  transition: 1s; /*移動にかける時間 */
}

.inview1.show {
  opacity: 1;
}

.jsc-fadeIn-1,
.jsc-fadeIn-2,
.jsc-fadeIn-3,
.jsc-fadeIn-4,
.jsc-fadeIn-5 {
  opacity: 0;
  transition: opacity 1s;
}

.jsc-fadeIn-1.is-active,
.jsc-fadeIn-2.is-active,
.jsc-fadeIn-3.is-active,
.jsc-fadeIn-4.is-active,
.jsc-fadeIn-5.is-active {
  opacity: 1;
}

.jsc-fadeIn-1.is-active {
  transition-delay: 0.3s;
}

.jsc-fadeIn-2.is-active {
  transition-delay: 0.6s;
}

.jsc-fadeIn-3.is-active {
  transition-delay: 0.9s;
}

.jsc-fadeIn-4.is-active {
  transition-delay: 1.2s;
}

.jsc-fadeIn-5.is-active {
  transition-delay: 1.5s;
}

/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
@media screen and (max-width: 768px) {
  #lead {
    width: 88vw;
    margin: 16vw auto;
  }
}
@media screen and (min-width: 769px) {
  #lead {
    width: 32.1428571429vw;
    margin: 7.1428571429vw auto;
  }
}
#lead p {
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #lead p {
    font-size: 4vw;
    padding: 12vw 0;
  }
}
@media screen and (min-width: 769px) {
  #lead p {
    font-size: 1.5714285714vw;
    padding: 3.2142857143vw 0;
  }
}
#lead p::before {
  content: "“";
  font-size: 100px;
  color: #111;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.07;
}
#lead p::after {
  content: "”";
  font-size: 100px;
  color: #111;
  position: absolute;
  right: 0;
  opacity: 0.07;
}
@media screen and (max-width: 768px) {
  #lead p::after {
    top: 17.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #lead p::after {
    top: 4.6428571429vw;
  }
}

/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* credit
*--------------------------------------*/
.credit {
  font-family: garamond-premier-pro, serif;
  font-weight: 500;
  font-style: normal;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .credit {
    width: 86.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .credit {
    width: 28.5714285714vw;
  }
}
@media screen and (max-width: 768px) {
  .credit ul {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .credit ul {
    margin-top: 1.0714285714vw;
  }
}
.credit ul li {
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .credit ul li {
    margin-bottom: 2.6666666667vw;
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  .credit ul li {
    margin-bottom: 0.7142857143vw;
    font-size: 14px;
  }
}
.credit ul li:last-child {
  margin-bottom: 0;
}
.credit ul li a {
  color: #111;
  display: inline-block;
}
.credit ul li a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .credit ul li a .brand {
    font-size: 10px;
  }
}
@media screen and (min-width: 769px) {
  .credit ul li a .brand {
    font-size: 10px;
  }
}
.credit ul li a .price {
  display: inline-block;
}
.credit ul li a .price::after {
  content: "";
  display: block;
  border-top: 1px solid #111;
  transform: scaleY(0.5);
  transform-origin: 100% 0;
}

#look3 .credit,
#look5 .credit,
#look6 .credit {
  width: 100%;
  transform: none;
}
@media screen and (max-width: 768px) {
  #look3 .credit,
  #look5 .credit,
  #look6 .credit {
    left: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #look3 .credit,
  #look5 .credit,
  #look6 .credit {
    left: 2.1428571429vw;
  }
}

@media screen and (max-width: 768px) {
  #casual2 .credit {
    right: 4.8vw;
    top: 203.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #casual2 .credit {
    right: 1.2857142857vw;
    top: 59.4285714286vw;
  }
}

@media screen and (max-width: 768px) {
  #casual3 .credit {
    right: 4.8vw;
    bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  #casual3 .credit {
    right: 1.2857142857vw;
    bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  #casual4 .credit {
    right: 4.8vw;
    top: 187.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #casual4 .credit {
    right: 1.2857142857vw;
    top: 56.2142857143vw;
  }
}

@media screen and (max-width: 768px) {
  #casual5 .credit {
    left: 4.8vw;
    top: 283.2vw;
  }
}
@media screen and (min-width: 769px) {
  #casual5 .credit {
    left: 1.2857142857vw;
    top: 82.7142857143vw;
  }
}

@media screen and (max-width: 768px) {
  #casual6 .credit {
    left: 4.8vw;
    top: 141.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #casual6 .credit {
    left: 1.2857142857vw;
    top: 42.8571428571vw;
  }
}

@media screen and (max-width: 768px) {
  #classy1 .credit {
    left: 4.8vw;
    top: 244vw;
  }
}
@media screen and (min-width: 769px) {
  #classy1 .credit {
    left: 1.2857142857vw;
    top: 73.5714285714vw;
  }
}

@media screen and (max-width: 768px) {
  #classy2 .credit {
    left: 4.8vw;
    bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  #classy2 .credit {
    left: 1.2857142857vw;
    bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  #classy3 .credit {
    right: 4.8vw;
    bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  #classy3 .credit {
    right: 1.2857142857vw;
    bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  #classy4 .credit {
    right: 4.8vw;
    bottom: 0vw;
  }
}
@media screen and (min-width: 769px) {
  #classy4 .credit {
    right: 1.2857142857vw;
    bottom: 0vw;
  }
}

@media screen and (max-width: 768px) {
  #classy5 .credit {
    right: 4.8vw;
    bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  #classy5 .credit {
    right: 1.2857142857vw;
    bottom: 0;
  }
}

/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* セクション共通
*--------------------------------------*/
svg {
  display: block;
  width: 100%;
}

.inner {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}

.dummy {
  position: sticky;
  top: 0;
  z-index: -1;
  height: 500px;
  width: 100%;
}

section {
  overflow: hidden;
}

svg {
  width: 100%;
}

.fig_grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2列 */
}

#section_wrap {
  overflow: hidden;
  width: 100%;
}
#section_wrap .inner .index {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #section_wrap .inner .index {
    width: 90.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner .index {
    width: 57.1428571429vw;
  }
}
#section_wrap .inner .index ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
@media screen and (max-width: 768px) {
  #section_wrap .inner .index ul {
    row-gap: 20px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner .index ul li {
    width: 21.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner .index ul li {
    width: 5.7142857143vw;
  }
}
#section_wrap .inner .index ul li p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #section_wrap .inner .index ul li p {
    font-size: 3.2vw;
    margin-top: 2.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner .index ul li p {
    font-size: 0.8571428571vw;
    margin-top: 0.5714285714vw;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner .look {
    margin: 25.3333333333vw auto 0;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner .look {
    margin: 8.5714285714vw auto 0;
  }
}
#section_wrap .inner .sec_inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #section_wrap .inner .sec_inner {
    width: 29.2857142857vw;
  }
}
#section_wrap .inner .sec_inner::before {
  content: "";
  display: block;
}
#section_wrap .inner .sec_inner h2 {
  color: #111;
  font-weight: normal;
  bottom: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #section_wrap .inner .sec_inner h2 {
    font-size: 6.4vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner .sec_inner h2 {
    font-size: 1.7142857143vw;
    left: 26.7857142857vw;
  }
}
#section_wrap .inner .sec_inner figure {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look1 .sec_inner::before {
    padding-top: 315.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look1 .sec_inner::before {
    padding-top: 100.1428571429vw;
  }
}
#section_wrap .inner #look1 .sec_inner .fig1 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look1 .sec_inner .fig1 {
    width: 100vw;
    top: 0;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look1 .sec_inner .fig1 {
    width: 32.1428571429vw;
    top: 0;
  }
}
#section_wrap .inner #look1 .sec_inner .fig2 {
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look1 .sec_inner .fig2 {
    width: 48vw;
    left: 5.3333333333vw;
    top: 145.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look1 .sec_inner .fig2 {
    width: 15.4285714286vw;
    left: 1.4285714286vw;
    top: 46.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look1 .sec_inner .fig3 {
    width: 58.6666666667vw;
    right: 5.3333333333vw;
    top: 207.2vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look1 .sec_inner .fig3 {
    width: 18.8571428571vw;
    right: 1.4285714286vw;
    top: 66.5714285714vw;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look2 .sec_inner::before {
    padding-top: 271.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look2 .sec_inner::before {
    padding-top: 84.5vw;
  }
}
#section_wrap .inner #look2 .sec_inner .fig1 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look2 .sec_inner .fig1 {
    width: 100vw;
    top: 0;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look2 .sec_inner .fig1 {
    width: 32.1428571429vw;
    top: 0;
  }
}
#section_wrap .inner #look2 .sec_inner .fig2 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look2 .sec_inner .fig2 {
    width: 90.1333333333vw;
    top: 145.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look2 .sec_inner .fig2 {
    top: 29.2857142857vw;
    top: 46.4285714286vw;
  }
}
#section_wrap .inner #look2 .sec_inner .fig2.fig_grid {
  gap: 2px;
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look2 .sec_inner .fig2.fig_grid img {
    width: 14.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look3 .sec_inner::before {
    padding-top: 376.8vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look3 .sec_inner::before {
    padding-top: 116.7857142857vw;
  }
}
#section_wrap .inner #look3 .sec_inner .fig1 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look3 .sec_inner .fig1 {
    width: 100vw;
    top: 0;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look3 .sec_inner .fig1 {
    width: 32.1428571429vw;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look3 .sec_inner .fig2 {
    width: 49.3333333333vw;
    left: 0;
    top: 145.6vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look3 .sec_inner .fig2 {
    width: 14.4285714286vw;
    left: 0;
    top: 46.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look3 .sec_inner .fig3 {
    width: 49.3333333333vw;
    right: 0;
    top: 153.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look3 .sec_inner .fig3 {
    width: 14.4285714286vw;
    right: 0;
    top: 48.7142857143vw;
  }
}
#section_wrap .inner #look3 .sec_inner .fig4 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look3 .sec_inner .fig4 {
    width: 80vw;
    top: 238.4vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look3 .sec_inner .fig4 {
    width: 25.7142857143vw;
    top: 73.5714285714vw;
  }
}
#section_wrap .inner #look4 .sec_inner {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look4 .sec_inner::before {
    padding-top: 253.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look4 .sec_inner::before {
    padding-top: 79.3571428571vw;
  }
}
#section_wrap .inner #look4 .sec_inner .fig1 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look4 .sec_inner .fig1 {
    width: 100vw;
    top: 0;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look4 .sec_inner .fig1 {
    width: 32.1428571429vw;
    top: 0;
  }
}
#section_wrap .inner #look4 .sec_inner .fig2 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look4 .sec_inner .fig2 {
    top: 145.0666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look4 .sec_inner .fig2 {
    top: 46.4285714286vw;
  }
}
#section_wrap .inner #look4 .sec_inner .fig2 .slick_loop {
  position: relative;
  width: 600px; /* SP時の最大幅 */
  margin: 0 auto; /* 中央配置 */
  overflow: hidden; /* はみ出しを防ぐ */
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look4 .sec_inner .fig2 .slick_loop {
    width: 1680px; /* PC時は7枚分（240px × 7） */
  }
}
#section_wrap .inner #look4 .sec_inner .fig2 .slick_loop .loop_item {
  display: flex;
  justify-content: center; /* 画像を中央寄せ */
  align-items: center;
}
#section_wrap .inner #look4 .sec_inner .fig2 .slick_loop .loop_item img {
  width: 100%; /* 親要素の幅に合わせる */
  height: auto; /* 縦横比を維持 */
  -o-object-fit: cover;
     object-fit: cover; /* 画像を適切にトリミング */
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look4 .sec_inner .fig2 .slick_loop .loop_item img {
    max-width: 53.3333333333vw; /* SP時の1枚のスライド幅 */
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look4 .sec_inner .fig2 .slick_loop .loop_item img {
    max-width: 17.1428571429vw; /* PC時のスライド幅 */
  }
}
#section_wrap .inner #look4 .sec_inner .fig2 .slick-list {
  padding: 0 !important; /* 余計なパディングをなくす */
}
#section_wrap .inner #look4 .sec_inner .fig2 .slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look5 .sec_inner::before {
    padding-top: 393.0666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look5 .sec_inner::before {
    padding-top: 122.5vw;
  }
}
#section_wrap .inner #look5 .sec_inner .fig1 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look5 .sec_inner .fig1 {
    width: 100vw;
    top: 0;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look5 .sec_inner .fig1 {
    width: 32.1428571429vw;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look5 .sec_inner .fig2 {
    width: 67.2vw;
    right: 0;
    top: 145.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look5 .sec_inner .fig2 {
    width: 21.5714285714vw;
    right: 0;
    top: 46.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look5 .sec_inner .fig3 {
    width: 74.6666666667vw;
    left: 0;
    top: 196vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look5 .sec_inner .fig3 {
    width: 21.5714285714vw;
    left: 0;
    top: 62.5714285714vw;
  }
}
#section_wrap .inner #look5 .sec_inner .fig4 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look5 .sec_inner .fig4 {
    width: 80vw;
    top: 254.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look5 .sec_inner .fig4 {
    width: 26vw;
    top: 79.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look6 .sec_inner h2 {
    left: 91.2vw;
    bottom: 100vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look6 .sec_inner h2 {
    left: 26.8571428571vw;
    bottom: 29.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look6 .sec_inner::before {
    padding-top: 334.4vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look6 .sec_inner::before {
    padding-top: 105.2142857143vw;
  }
}
#section_wrap .inner #look6 .sec_inner .fig1 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look6 .sec_inner .fig1 {
    width: 100vw;
    top: 0;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look6 .sec_inner .fig1 {
    width: 32.1428571429vw;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look6 .sec_inner .fig2 {
    width: 80vw;
    top: 146.4vw;
    left: 10.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look6 .sec_inner .fig2 {
    width: 25.7142857143vw;
    top: 46.4285714286vw;
    left: 1.6289285714vw;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look6 .sec_inner .fig3 {
    width: 80vw;
    top: 227.4666666667vw;
    left: 10.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look6 .sec_inner .fig3 {
    width: 25.7142857143vw;
    top: 72.4285714286vw;
    left: 1.6289285714vw;
  }
}
#section_wrap .inner #look7 .sec_inner {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look7 .sec_inner::before {
    padding-top: 285.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look7 .sec_inner::before {
    padding-top: 88.2142857143vw;
  }
}
#section_wrap .inner #look7 .sec_inner .fig1 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look7 .sec_inner .fig1 {
    width: 100vw;
    right: 0;
    top: 0;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look7 .sec_inner .fig1 {
    width: 32.1428571429vw;
    right: 0;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look7 .sec_inner .fig2 {
    width: 56vw;
    left: 0;
    top: 170.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look7 .sec_inner .fig2 {
    width: 16.4285714286vw;
    left: 35.3571428571vw;
    top: 53.9285714286vw;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look7 .sec_inner .fig3 {
    width: 40vw;
    right: 0;
    top: 145.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look7 .sec_inner .fig3 {
    width: 11.7142857143vw;
    right: 35.3571428571vw;
    top: 46.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look7 .sec_inner .fig4 {
    width: 40vw;
    right: 0;
    top: 201.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look7 .sec_inner .fig4 {
    width: 11.7142857143vw;
    right: 35.3571428571vw;
    top: 62.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look8 .sec_inner::before {
    padding-top: 348.8vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look8 .sec_inner::before {
    padding-top: 110.2142857143vw;
  }
}
#section_wrap .inner #look8 .sec_inner .fig1 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look8 .sec_inner .fig1 {
    width: 100vw;
    right: 0;
    top: 0;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look8 .sec_inner .fig1 {
    width: 32.1428571429vw;
    right: 0;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look8 .sec_inner .fig2 {
    width: 64vw;
    top: 145.0666666667vw;
    left: 18vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look8 .sec_inner .fig2 {
    width: 20.5714285714vw;
    top: 46.3571428571vw;
    left: 4.3571428571vw;
  }
}
@media screen and (max-width: 768px) {
  #section_wrap .inner #look8 .sec_inner .fig3 {
    width: 94.9333333333vw;
    right: 0;
    top: 240vw;
  }
}
@media screen and (min-width: 769px) {
  #section_wrap .inner #look8 .sec_inner .fig3 {
    width: 30.5vw;
    right: auto;
    left: -0.6071428571vw;
    top: 76.6428571429vw;
  }
}

.all_btn {
  position: relative;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .all_btn {
    margin: 36vw auto 33.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .all_btn {
    margin: 9.6428571429vw auto 8.9285714286vw;
  }
}
.all_btn .moreLink {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.all_btn .moreLink .moreLinkText {
  text-align: center;
  transition: all 0.3s ease;
}
.all_btn .moreLink .moreLinkText .lineArrow {
  height: 15px;
  border-bottom: 1px solid #111;
  border-right: 1px solid #111;
  /*傾きを調節*/
  transform: skew(45deg);
  /*下線矢印をテキストに合わせてうまい具合にはめる*/
  margin: -10px 0 0 -25px;
}
@media screen and (max-width: 768px) {
  .all_btn .moreLink .moreLinkText .lineArrow {
    width: 66.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .all_btn .moreLink .moreLinkText .lineArrow {
    width: 17.8571428571vw;
  }
}

/*ホバーしたときに下線矢印も同時に色を変える*/
.moreLinkText:hover .lineArrow {
  opacity: 0.6;
}

.moreLinkText:hover {
  opacity: 0.6;
}

/* メニューのデザイン*/
.nav_content {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0; /* 画面内に常に存在させる */
  z-index: 99;
  background: #fff;
  /* ふわっと表示のための初期状態 */
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-in-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav_content .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.nav_content .inner .index {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .nav_content .inner .index {
    width: 90.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .nav_content .inner .index {
    width: 50vw;
  }
}
.nav_content .inner .index ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .nav_content .inner .index ul li {
    width: 24vw;
  }
}
@media screen and (min-width: 769px) {
  .nav_content .inner .index ul li {
    width: 10.7142857143vw;
  }
}
.nav_content .inner .index ul li p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .nav_content .inner .index ul li p {
    font-size: 3.2vw;
    margin-top: 2.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .nav_content .inner .index ul li p {
    font-size: 0.8571428571vw;
    margin-top: 0.5714285714vw;
  }
}

#hamburger_menu {
  /* ここから下がハンバーガーメニューに関するCSS */
  /* チェックボックスを非表示にする */
  /* ハンバーガーアイコンの設置スペース */
  /*このクラスが付与されると表示する*/
  /* ハンバーガーメニューのアイコン */
  /* 三本線の一番上の棒の位置調整 */
  /* 三本線の一番下の棒の位置調整 */
  /* アイコンがクリックされたら真ん中の線を透明にする */
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  /* ハンバーガーメニューが開いたときのスタイル */
}
#hamburger_menu .drawer_hidden {
  display: none;
}
#hamburger_menu .wrap_open {
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .wrap_open {
    top: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #hamburger_menu .wrap_open {
    top: 1.4285714286vw;
    right: 2.1428571429vw;
  }
}
#hamburger_menu .drawer_open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100; /* 重なり順を一番上にする */
  cursor: pointer;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .drawer_open {
    width: 12vw;
    height: 12vw;
  }
}
@media screen and (min-width: 769px) {
  #hamburger_menu .drawer_open {
    width: 3.2142857143vw;
    height: 3.2142857143vw;
  }
}
#hamburger_menu .active_menu {
  opacity: 1;
  visibility: visible;
}
#hamburger_menu .drawer_open span,
#hamburger_menu .drawer_open span:before,
#hamburger_menu .drawer_open span:after {
  content: "";
  display: block;
  height: 1.5px;
  width: 28px;
  background: #111;
  transition: 0.5s;
  position: absolute;
}
#hamburger_menu .drawer_open span:before {
  bottom: 8px;
}
#hamburger_menu .drawer_open span:after {
  top: 8px;
}
#hamburger_menu #drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
#hamburger_menu #drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#hamburger_menu #drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
#hamburger_menu #drawer_input:checked ~ .nav_content {
  opacity: 1;
  transform: scale(1); /* ふわっと拡大表示 */
  pointer-events: auto; /* メニューを開いたらクリックできるように */
}

/* 初期状態（ぼかし + 非表示） */
.target_blur {
  opacity: 0;
  filter: blur(15px);
  backface-visibility: hidden;
}

/* 表示領域に入ったらアニメーション */
.img_blur {
  opacity: 1;
  animation: imageBlur 1.5s ease-out both;
}

/* ぼかし + フェードインのアニメーション */
@keyframes imageBlur {
  from {
    opacity: 0;
    filter: blur(15px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
/* 初期状態（右にズレていて + ぼかし + 非表示） */
.target_blur_right {
  opacity: 0;
  transform: translateX(15%);
  filter: blur(15px);
  backface-visibility: hidden;
}

/* 表示領域に入ったらアニメーション */
.img_blur_right {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInRightBlur 1.5s ease-out both;
}

/* 右からスライド + ぼかし解除 + フェードイン */
@keyframes fadeInRightBlur {
  from {
    opacity: 0;
    transform: translateX(15%);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0px);
  }
}
/* 初期状態（左にズレていて + ぼかし + 非表示） */
.target_blur_left {
  opacity: 0;
  transform: translateX(-15%);
  filter: blur(15px);
  backface-visibility: hidden;
}

/* 表示領域に入ったらアニメーション */
.img_blur_left {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInLeftBlur 1.5s ease-out both;
}

/* 左からスライド + ぼかし解除 + フェードイン */
@keyframes fadeInLeftBlur {
  from {
    opacity: 0;
    transform: translateX(-15%);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0px);
  }
}
/* 初期状態（下にズレていて + ぼかし + 非表示） */
.target_blur_up {
  opacity: 0;
  transform: translateY(15%);
  filter: blur(15px);
  backface-visibility: hidden;
}

/* 表示領域に入ったらアニメーション */
.img_blur_up {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUpBlur 1.5s ease-out both;
}

/* 下からスライド + ぼかし解除 + フェードイン */
@keyframes fadeInUpBlur {
  from {
    opacity: 0;
    transform: translateY(15%);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}
/* 初期状態（上にズレていて + ぼかし + 非表示） */
.target_blur_down {
  opacity: 0;
  transform: translateY(-15%);
  filter: blur(15px);
  backface-visibility: hidden;
}

/* 表示領域に入ったらアニメーション */
.img_blur_down {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInDownBlur 1.5s ease-out both;
}

/* 上からスライド + ぼかし解除 + フェードイン */
@keyframes fadeInDownBlur {
  from {
    opacity: 0;
    transform: translateY(-15%);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}
/*===========
inview（その場で）
===========*/
.fadeIn_on {
  opacity: 0;
  transition: 4s;
}

.fadeIn_on.fadeIn {
  opacity: 1;
}

/*===========
inview（左から）
===========*/
.fadeIn_left {
  opacity: 0;
  transform: translate(-15%, 0);
  transition-duration: 2s;
  transition-timing-function: ease;
}

.fadeIn_left.fadeIn {
  transform: translate(0, 0);
  opacity: 1;
}

/*===========
inview（右から）
===========*/
.fadeIn_right {
  opacity: 0;
  transform: translate(15%, 0);
  transition: 2s;
  transition-timing-function: ease;
}

.fadeIn_right.fadeIn {
  transform: translate(0, 0);
  opacity: 1;
}

/*===========
inview（下から）
===========*/
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 20%);
  transition: 2s;
}

.fadeIn_up.fadeIn {
  transform: translate(0, 0);
  opacity: 1;
}

/*===========
inview（上から）
===========*/
.fadeIn_down {
  opacity: 0;
  transform: translate(0, -20%);
  transition: 2s;
}

.fadeIn_down.fadeIn {
  transform: translate(0, 0);
  opacity: 1;
}/*# sourceMappingURL=style.css.map */