@charset "UTF-8";
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
@font-face {
  font-family: "Antro_Vectra";
  src: url(../assets/fonts/Antro_Vectra.otf);
}
@font-face {
  font-family: "Antro_Vectra_R";
  src: url(../assets/fonts/Antro_Vectra.otf);
}
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #f8f8f4;
}
html.active,
body.active {
  overflow: hidden;
}

.ja {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
}

.en {
  font-family: "caflisch-script-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.cursive {
  font-family: "Antro_Vectra", sans-serif;
  font-weight: 400;
  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: #000;
}
a[href=""] {
  pointer-events: none;
}

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

/*--------------------------------------*
* layout
*--------------------------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* ヘッダー
*--------------------------------------*/
header .open_btn {
  border: 1px solid #000;
  width: 85px;
  height: 25px;
  position: fixed;
  border-radius: 100vmax;
  z-index: 999;
  font-size: 14px;
  background-color: #fff;
  transform-origin: right;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header .open_btn {
    bottom: 10px;
    left: 10px;
  }
}
header .open_btn p {
  padding: 5px 12px;
}
header .open_btn span {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 10px;
  width: 12px;
  height: 12px;
}
header .open_btn span:before, header .open_btn span:after {
  content: "";
  background-color: #000;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
header .open_btn span:before {
  width: 12px;
  height: 1px;
}
header .open_btn span:after {
  height: 12px;
  width: 1px;
}
header .menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  height: 100vh;
  display: grid;
  place-items: center;
  background-color: #fff;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  header .menu {
    height: 100svh;
    width: 300px;
  }
}
header .index_title {
  width: 130px;
  margin: 0 0 -15px -30px;
  position: relative;
  z-index: 2;
}
header .menu_li {
  width: 223px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
header .menu_li li {
  position: relative;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  header .menu_li li {
    width: 110px;
  }
}
header .btn {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 5px;
  background-color: #fff;
  text-align: center;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 80px;
  font-size: 12px;
  padding: 1px 0 0;
  border-radius: 100vmax;
  border: 1px solid transparent;
}
header .arrow {
  border-style: solid;
  border-right: 2px solid transparent;
  border-left: 2px solid transparent;
  border-top: 4px solid #000;
  border-bottom: 0;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  header .title_image {
    width: 140px;
    margin-inline: auto;
    padding-top: 15%;
  }
}

@media screen and (min-width: 769px) {
  header .open_btn {
    top: 25px;
    left: 15px;
    scale: 1.3;
    transform-origin: left;
  }
  header .menu_inner {
    width: 310px;
  }
  header .index_title {
    width: min(15vw, 180px);
    margin-left: -50px;
  }
  header .menu {
    width: 450px;
  }
  header .menu_li {
    width: 310px;
    grid-template-columns: 100px 100px 100px;
    gap: 5px;
    scale: 1.2;
  }
  header .menu_li li {
    width: fit-content;
    overflow: hidden;
  }
  header .menu_li li img {
    transition: all 0.4s;
  }
  header .menu_li li .btn {
    transition: 0.5s;
  }
  header .menu_li li:hover img {
    scale: 1.1;
    transition: all 0.4s;
  }
  header .menu_li li img {
    object-fit: cover;
    height: auto;
  }
  header .menu_li li:nth-child(1) .btn,
  header .menu_li li:nth-child(8) .btn {
    left: 75%;
  }
  header .menu_li li:nth-child(1) img,
  header .menu_li li:nth-child(8) img {
    width: 205px;
    height: 100px;
    object-position: 0 10%;
  }
  header .menu_li li:nth-child(2) img,
  header .menu_li li:nth-child(5) img {
    height: 205px;
    width: 100px;
    object-position: top;
  }
  header .menu_li li:nth-child(3) img,
  header .menu_li li:nth-child(4) img,
  header .menu_li li:nth-child(6) img,
  header .menu_li li:nth-child(7) img {
    width: 100px;
    height: 100px;
    object-position: top;
  }
  header .menu_li li:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/1;
  }
  header .menu_li li:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/4;
  }
  header .menu_li li:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  header .menu_li li:nth-child(4) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  header .menu_li li:nth-child(5) {
    grid-column: 3/4;
    grid-row: 1/3;
  }
  header .menu_li li:nth-child(6) {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  header .menu_li li:nth-child(7) {
    grid-column: 3/4;
    grid-row: 3/4;
  }
  header .menu_li li:nth-child(8) {
    grid-column: 2/4;
    grid-row: 4/5;
  }
  header .title_image {
    width: 180px;
    padding-top: 30%;
    margin-inline: auto;
  }
}
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* フッター
*--------------------------------------*/
footer {
  padding: 21.3333333333vw 0;
}
footer .container {
  width: 85.3333333333vw;
  margin-inline: auto;
}
footer .staff_title {
  font-size: 3.7333333333vw;
  padding-bottom: 1.3333333333vw;
}
footer .staff {
  font-size: 2.9333333333vw;
  line-height: 1.4545454545;
}
footer .middle {
  margin: 10.6666666667vw 0 29.3333333333vw;
  font-size: 3.7333333333vw;
}
footer .middle li:not(li:last-child) {
  margin-bottom: 4vw;
}
footer .middle a {
  position: relative;
  padding-left: 5.3333333333vw;
  text-decoration: underline;
}
footer .middle a:before {
  content: "";
  width: 4vw;
  height: 4vw;
  background-image: url(../assets/images/link_icon.png);
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
footer .bottom .logo {
  width: 53.3333333333vw;
  margin-bottom: 6.6666666667vw;
}
footer .bottom .copy {
  font-size: 2.6666666667vw;
}

@media screen and (min-width: 769px) {
  footer {
    padding: min(6.6666666667vw, 80px) 0 min(6.6666666667vw, 80px);
  }
  footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    width: 83.3333333333vw;
  }
  footer .staff_title {
    font-size: min(1.1666666667vw, 14px);
    padding-bottom: min(0.4166666667vw, 5px);
  }
  footer .staff {
    font-size: min(0.9166666667vw, 11px);
    line-height: 1.4545454545;
  }
  footer .middle {
    margin: 0;
    font-size: min(1.1666666667vw, 14px);
  }
  footer .middle li:not(li:last-child) {
    margin-bottom: min(1.25vw, 15px);
  }
  footer .middle a {
    padding-left: min(2.0833333333vw, 25px);
  }
  footer .middle a:before {
    width: min(1.25vw, 15px);
    height: min(1.25vw, 15px);
  }
  footer .bottom {
    margin: 0 0 0 auto;
  }
  footer .bottom .logo {
    width: min(16.6666666667vw, 200px);
    margin-bottom: min(2.0833333333vw, 25px);
  }
  footer .bottom .copy {
    font-size: min(0.8333333333vw, 10px);
  }
}
/*--------------------------------------*
* object
*--------------------------------------*/
/*-------------------
* component
-------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* コンテンツ幅
*--------------------------------------*/
.credit_card {
  position: relative;
}
.credit_card .plus {
  transition: all 0.5s;
  width: 30px;
  height: 30px;
  position: absolute;
  border: 1px solid #000;
  border-radius: 50px;
  z-index: 10;
  bottom: 15px;
  right: 15px;
}
.credit_card .plus:before, .credit_card .plus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  transition: all 0.5s;
}
.credit_card .plus:before {
  height: 1px;
  width: 13px;
}
.credit_card .plus:after {
  width: 1px;
  height: 13px;
}
.credit_card.active .plus {
  transform: rotate(90deg);
  transition: all 0.5s;
}
.credit_card.active .plus::before {
  opacity: 0;
  transition: all 0.5s;
}

.credit {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .credit {
    transform-origin: center;
    max-width: 77.3333333333vw;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 16vw;
    z-index: 10;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 3.7333333333vw;
    border: solid #000;
    border-width: 1px 0;
    display: flex;
  }
  .credit .bg {
    padding: 6.6666666667vw 0;
  }
}
@media screen and (max-width: 768px) {
  .credit li:not(li:last-child) {
    margin-bottom: 4.8vw;
  }
}
.credit li a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.credit li a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 6px solid #000;
  border-right: 0;
}
.credit li a:has(.store) {
  padding-left: 11px;
  color: #909090;
}
.credit li a:has(.store) .price, .credit li a:has(.store):before {
  display: none;
}
.credit .store {
  border: 1px solid #909090;
  font-size: 10px;
  padding: 2px 3px;
}

@media screen and (min-width: 769px) {
  .credit_card {
    pointer-events: none;
  }
  .credit li a:before {
    transition: all 0.4s;
  }
  .credit li a:hover {
    text-decoration: underline;
  }
  .credit li a:hover:before {
    scale: 1.8;
    transition: all 0.4s;
  }
}
/*-------------------
* project
-------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
.fv {
  position: relative;
  color: #8b8b8b;
}
.fv .bg {
  background-image: url(../assets/images/fv_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .fv .bg {
    background-size: 360%;
  }
}
.fv .bl_bg {
  position: absolute;
  inset: 0;
  background-color: #8b8b8b;
  height: 100vh;
  width: 100%;
  z-index: 96;
}
.fv .fixed_bg {
  position: absolute;
  inset: 0;
  background-color: #f8f8f4;
  height: 100vh;
  width: 100%;
  z-index: 999;
}
.fv .slider {
  position: relative;
  z-index: 97;
  height: 100%;
}
.fv .logo_text {
  position: relative;
  width: 100%;
  height: 33.3333333333%;
  display: block;
  -webkit-mask-image: url(../assets/images/logo_clip.svg);
  mask-image: url(../assets/images/logo_clip.svg);
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: auto 130%;
  mask-size: auto 130%;
  background-color: #f8f8f4;
}
.fv .logo_text.top {
  mask-position: 0 65%;
  animation: slideTop 20s infinite linear both;
}
.fv .logo_text.bottom {
  mask-position: 0 50%;
  animation: slideBottom 20s infinite linear both;
}
.fv .middle {
  background-color: #f8f8f4;
  height: 33.3333333333%;
  display: block;
}
@keyframes slideTop {
  0% {
    -webkit-mask-position: 0 65%;
    mask-position: 0 65%;
  }
  100% {
    -webkit-mask-position: 100% 65%;
    mask-position: 100% 65%;
  }
}
@keyframes slideBottom {
  0% {
    -webkit-mask-position: 0 50%;
    mask-position: 0 50%;
  }
  100% {
    -webkit-mask-position: -100% 50%;
    mask-position: -100% 50%;
  }
}
.fv .title {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 97;
}
@media screen and (max-width: 768px) {
  .fv .title {
    width: 88vw;
  }
}
@media screen and (max-width: 768px) {
  .fv .title h1 {
    width: 49.3333333333vw;
    margin: 0 auto;
  }
}
.fv .title p {
  text-align: center;
  line-height: 2.5;
  transform-origin: center;
  font-size: min(1.1666666667vw, 14px);
}
@media screen and (max-width: 768px) {
  .fv .title p {
    margin: 10.6666666667vw 0 0 0;
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 768px) {
  .fv .title .scroll {
    margin-top: 10.6666666667vw;
  }
}
.fv .title .scroll span {
  display: block;
}
.fv .title .scroll .arrow {
  width: fit-content;
  margin: 0 auto;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 9px solid #000;
  border-bottom: 0;
}

@media screen and (min-width: 769px) {
  .fv .title {
    width: min(54.1666666667vw, 650px);
  }
  .fv .title .ja {
    padding: min(3.3333333333vw, 40px) 0 0;
  }
  .fv h1 {
    width: min(20.8333333333vw, 250px);
    margin: 0 auto;
  }
}
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* INDEX
*--------------------------------------*/
@media screen and (max-width: 768px) {
  .index {
    padding: 8vw 0 21.3333333333vw;
  }
  .index .container {
    width: 92vw;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .index .index_title {
    width: 53.3333333333vw;
    margin-bottom: -4vw;
    position: relative;
    z-index: 3;
  }
}
.index .staff_index {
  display: grid;
}
.index .staff_index li:nth-child(2) .name,
.index .staff_index li:nth-child(4) .name {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .index .staff_index {
    margin: 0 auto;
    width: 77.3333333333vw;
    grid-template-columns: 1fr 1fr;
    gap: 2.6666666667vw;
  }
}
.index .staff_index li a {
  position: relative;
}
.index .staff_index li a:hover img {
  transition: all 0.4s;
  filter: grayscale(0);
}
.index img {
  transition: all 0.4s;
  filter: grayscale(100%);
}
.index .place {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  gap: 2.6666666667vw;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .index .place {
    width: 4vw;
    right: 4vw;
    top: 4vw;
  }
}
.index .number {
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .index .number {
    font-size: 4.2666666667vw;
  }
}
.index .shop {
  rotate: 90deg;
  transform-origin: left;
  position: absolute;
  transform: translateY(-50%);
  top: 70%;
}
@media screen and (max-width: 768px) {
  .index .shop {
    font-size: 2.9333333333vw;
    left: 0.5333333333vw;
  }
}
.index .name {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  text-align: center;
  width: 100%;
  rotate: -3deg;
}
@media screen and (max-width: 768px) {
  .index .name {
    font-size: 8vw;
    bottom: 13.3333333333vw;
  }
}
.index .btn {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 10px;
  background-color: #fff;
  text-align: center;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .index .btn {
    width: 26.6666666667vw;
    font-size: 3.2vw;
    padding: 0.8vw 0;
    border-radius: 50px;
  }
}
.index .arrow {
  border-style: solid;
  border-right: 2px solid transparent;
  border-left: 2px solid transparent;
  border-top: 4px solid #000;
  border-bottom: 0;
}

@media screen and (min-width: 769px) {
  .index .staff_wrap {
    margin: min(10.4166666667vw, 125px) auto;
    padding: 0 min(3.3333333333vw, 40px) min(3.3333333333vw, 40px) 0;
    display: flex;
    align-items: center;
    width: min(83.3333333333vw, 1000px);
    position: relative;
  }
  .index .staff_wrap:after {
    content: "";
    width: 100%;
    height: 90%;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
  .index .index_title {
    width: min(20.4166666667vw, 245px);
    margin: 5.3333333333vw auto 0;
    position: relative;
    z-index: 3;
  }
  .index .staff_index {
    position: relative;
    z-index: 3;
    width: min(49.1666666667vw, 590px);
    grid-template-columns: repeat(4, 1fr);
    gap: min(0.8333333333vw, 10px);
  }
  .index .staff_index li {
    overflow: hidden;
  }
  .index .staff_index li:hover img {
    scale: 1.1;
  }
  .index .place {
    width: min(1.25vw, 15px);
    right: min(1.25vw, 15px);
    top: min(1.25vw, 15px);
  }
  .index .number {
    font-size: min(1.3333333333vw, 16px);
  }
  .index .shop {
    font-size: min(0.9166666667vw, 11px);
    left: min(0.1666666667vw, 2px);
  }
  .index .name {
    font-size: min(2.5vw, 30px);
    bottom: min(4.1666666667vw, 50px);
  }
  .index .btn {
    width: min(8.3333333333vw, 100px);
    font-size: min(1vw, 12px);
    padding: min(0.25vw, 3px) 0;
    border-radius: 50px;
  }
}
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* section
*--------------------------------------*/
@media screen and (max-width: 768px) {
  .section {
    padding-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .section:not(#sec1) {
    margin-top: 32vw;
  }
}
.section .section_title {
  position: relative;
  border: solid #000;
  border-width: 1px 0;
}
@media screen and (max-width: 768px) {
  .section .section_title {
    width: 92vw;
    margin: 0 auto 6.6666666667vw;
    padding: 4vw 0;
  }
}
.section .section_title .title_index {
  position: absolute;
  background-color: #f8f8f4;
  left: 0;
}
@media screen and (max-width: 768px) {
  .section .section_title .title_index {
    font-size: 5.3333333333vw;
    top: -2.6666666667vw;
    padding-right: 2.6666666667vw;
  }
}
.section .section_title .title_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .section .section_title .title_flex {
    gap: 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .section .section_title .name {
    font-size: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .section .section_title .staff_data {
    font-size: 2.9333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .section .top_wrap {
    width: 92vw;
    margin: 0 0 21.3333333333vw auto;
  }
}
@media screen and (max-width: 768px) {
  .section .bottom_wrap {
    width: 92vw;
  }
}
.section .bottom_box .line {
  margin: 20px auto;
  height: 40px;
  width: 1px;
  background-color: #000;
}
.section .bottom_box h2 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section .bottom_box h2 {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.section .bottom_box .box {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .section .bottom_box .box {
    padding: 6.6666666667vw 10.6666666667vw;
  }
}
.section .bottom_box .grid {
  display: grid;
}
@media screen and (max-width: 768px) {
  .section .bottom_box .grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 4vw;
    align-items: center;
  }
}
.section .bottom_box .link_wrap {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section .bottom_box .link_wrap {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
.section .bottom_box .link_wrap a {
  background-color: #f8f8f4;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section .bottom_box .link_wrap a {
    font-size: 6.6666666667vw;
    padding: 3.2vw 0 0.8vw 0;
  }
}
.section .bottom_box .link_wrap a:after {
  content: ">";
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 21.3333333333vw;
}
@media screen and (max-width: 768px) {
  .section .bottom_box .link_wrap a:after {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .section .bottom_box .link_wrap a:nth-child(1) {
    margin-bottom: 2.6666666667vw;
  }
}
.section .bottom_box .link_wrap a p {
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.section .bottom_box .link_wrap a p::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #000;
  bottom: 7px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .section .bottom_box .name {
    font-size: 4.8vw;
    padding-bottom: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .section .bottom_box .comment {
    font-size: 3.2vw;
    line-height: 1.6666666667;
  }
}
.section .bottom_box .shop_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.section .bottom_box .shop {
  font-size: 18px;
}
.section .bottom_box .shop + span {
  font-size: 14px;
}
.section .bottom_box .line_btn {
  background-color: #f8f8f4;
  border: 1px solid #000;
  display: flex;
  font-size: 14px;
  padding: 3px 5px;
  gap: 3px;
}
.section .bottom_box .line_btn:after {
  content: ">";
  font-size: 12px;
}
.section .bottom_box .line_btn:hover {
  background-color: #000;
  color: #fff;
}
.section .bottom_box .access {
  font-size: 14px;
  margin-top: 15px;
  line-height: 1.4285714286;
}
@media screen and (max-width: 768px) {
  .section .img2,
  .section .img4 {
    overflow: hidden;
  }
}
.section .img1,
.section .img3 {
  position: relative;
}
@media screen and (max-width: 768px) {
  .section .img1,
  .section .img3 {
    overflow: hidden;
  }
}
.section .img1 .com_wrap,
.section .img3 .com_wrap {
  position: absolute;
  width: 56vw;
  color: #fff;
  bottom: 16vw;
  line-height: 1.4285714286;
}
.section .img1 .item,
.section .img3 .item {
  font-size: 8.5333333333vw;
  padding-bottom: 2.6666666667vw;
  position: relative;
  width: fit-content;
  z-index: 3;
}
.section .img1 .item:after,
.section .img3 .item:after {
  position: absolute;
  font-family: "caflisch-script-pro", sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #46dfc4;
  rotate: -10deg;
  left: -8vw;
  top: -6.6666666667vw;
  font-size: 12.2666666667vw;
  z-index: -1;
}
.section .img1 .com_text,
.section .img3 .com_text {
  font-size: 3.7333333333vw;
}
.section .img1 .com_wrap {
  right: 4vw;
}
.section .img1 .com_wrap .item {
  text-align: right;
  margin: 0 0 0 auto;
}
.section .img1 .com_wrap .item:after {
  content: "item1";
}
.section .img3 .com_wrap {
  left: 4vw;
}
.section .img3 .com_wrap .item:after {
  content: "item2";
  left: -2.6666666667vw;
}

#sec2 .img1 .com_wrap {
  bottom: 26.6666666667vw;
}
#sec2 .img3 .com_wrap {
  bottom: 40vw;
}

#sec3 .img3 .com_wrap {
  left: 8vw;
  bottom: 8vw;
}

#sec4 .img3 .com_wrap {
  bottom: 40vw;
}

#sec5 .img1 .com_wrap {
  bottom: inherit;
  top: 16vw;
}

#sec6 .img1 .com_wrap {
  bottom: inherit;
  right: inherit;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 60%;
}
#sec6 .img3 .com_wrap {
  left: 12vw;
  bottom: 10.6666666667vw;
}

@media screen and (min-width: 769px) {
  .section {
    padding-top: min(4.1666666667vw, 50px);
    width: min(83.3333333333vw, 1000px);
    margin: 0 auto;
  }
  .section:not(#sec1) {
    margin-top: min(16.6666666667vw, 200px);
  }
  .section .section_title {
    padding: min(2.5vw, 30px) 0 min(2.3333333333vw, 28px);
  }
  .section .section_title .title_index {
    font-size: min(2.6666666667vw, 32px);
    top: max(-0.8333333333vw, -10px);
    padding-right: min(1.6666666667vw, 20px);
  }
  .section .section_title .title_flex {
    gap: min(0.8333333333vw, 10px);
  }
  .section .section_title .name {
    font-size: min(2vw, 24px);
  }
  .section .section_title .staff_data {
    font-size: min(1.1666666667vw, 14px);
  }
  .section .pc_flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: min(57.5vw, 690px);
  }
  .section .pc_credit {
    grid-column: 1/3;
    grid-row: 2/3;
    margin-top: min(1.25vw, 15px);
  }
  .section .pc_credit ul {
    display: flex;
    flex-wrap: wrap;
    gap: min(0.8333333333vw, 10px) min(1.25vw, 15px);
  }
  .section .pc_credit li {
    width: fit-content;
  }
  .section .fade_slider {
    width: min(28.75vw, 345px);
  }
  .section .top_wrap {
    margin: min(4.1666666667vw, 50px) 0 0 0;
  }
  .section .bottom_wrap {
    margin: min(8.3333333333vw, 100px) 0 0 auto;
  }
  .section .bottom_wrap .pc_credit ul {
    justify-content: right;
  }
  .section .bottom_box .line {
    margin: 30px auto;
  }
  .section .bottom_box h2 {
    font-size: min(2vw, 24px);
    margin-bottom: min(1.6666666667vw, 20px);
  }
  .section .bottom_box .box {
    width: min(66.6666666667vw, 800px);
    margin: 0 auto;
  }
  .section .bottom_box .box .inner {
    padding: min(3.3333333333vw, 40px) min(7.5vw, 90px);
  }
  .section .bottom_box .grid {
    grid-template-columns: 180px 2fr;
    gap: min(2.0833333333vw, 25px);
    align-items: center;
  }
  .section .bottom_box .grid figure {
    width: min(15vw, 180px);
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .section .bottom_box .text {
    margin: auto 0 0 0;
  }
  .section .bottom_box .link_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: min(2.0833333333vw, 25px);
    gap: min(0.6666666667vw, 8px);
    margin: 0 0 auto 0;
  }
  .section .bottom_box .link_wrap a {
    border: 1px solid transparent;
    padding: min(0.8333333333vw, 10px) 0;
  }
  .section .bottom_box .link_wrap a:after {
    font-size: min(1.3333333333vw, 16px);
    right: min(3.3333333333vw, 40px);
  }
  .section .bottom_box .link_wrap a:hover {
    border: 1px solid #000;
  }
  .section .bottom_box .link_wrap p {
    padding-right: min(0.4166666667vw, 5px);
  }
  .section .bottom_box .name {
    font-size: min(2vw, 24px);
    margin-bottom: min(1.25vw, 15px);
  }
  .section .bottom_box .comment {
    font-size: min(1.1666666667vw, 14px);
    line-height: 1.7142857143;
  }
  .section .img1 .com_wrap,
  .section .img3 .com_wrap {
    width: min(17.5vw, 210px);
    bottom: min(8.3333333333vw, 100px);
    line-height: 1.4285714286;
  }
  .section .img1 .item,
  .section .img3 .item {
    font-size: min(2.6666666667vw, 32px);
    padding-bottom: min(0.8333333333vw, 10px);
  }
  .section .img1 .item:after,
  .section .img3 .item:after {
    left: max(-2.5vw, -30px);
    top: max(-2.0833333333vw, -25px);
    font-size: min(3.8333333333vw, 46px);
  }
  .section .img1 .com_text,
  .section .img3 .com_text {
    font-size: min(1.1666666667vw, 14px);
  }
  .section .img1 .com_wrap {
    right: min(1.6666666667vw, 20px);
  }
  .section .img3 .com_wrap {
    left: min(1.6666666667vw, 20px);
  }
  .section .img3 .com_wrap .item:after {
    left: max(-0.8333333333vw, -10px);
  }
  #sec2 .img1 .com_wrap {
    bottom: min(8.3333333333vw, 100px);
  }
  #sec2 .img3 .com_wrap {
    bottom: min(12.5vw, 150px);
  }
  #sec3 .img3 .com_wrap {
    left: min(2.5vw, 30px);
    bottom: min(2.5vw, 30px);
  }
  #sec4 .img3 .com_wrap {
    bottom: min(12.5vw, 150px);
  }
  #sec5 .img1 .com_wrap {
    bottom: inherit;
    top: min(5vw, 60px);
  }
  #sec6 .img3 .com_wrap {
    left: min(5vw, 60px);
    bottom: min(3.3333333333vw, 40px);
  }
}
/*--------------------------------------*
* foundation
*--------------------------------------*/
.gallery .sticky {
  position: sticky;
  top: 0;
  padding: calc((100svh - 120vw) / 2) 0;
}
.gallery .sticky .sticky_image {
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  width: 100%;
}
.gallery .sticky .inner {
  position: relative;
}
.gallery .dummy_sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  width: 100%;
}
.gallery .image_wrap {
  position: sticky;
  top: 0;
}
.gallery img {
  height: 100%;
  object-fit: cover;
}
.gallery .image_wrap {
  width: 92vw;
  margin: 0 auto;
}
.gallery li:nth-child(1) {
  width: 74.6666666667vw;
}
.gallery li:nth-child(2) {
  width: 74.6666666667vw;
  margin: 8vw 0 8vw auto;
}
.gallery li:nth-child(3) {
  width: 53.3333333333vw;
  margin: 0 0 8vw auto;
}
.gallery li:nth-child(4) {
  width: 53.3333333333vw;
  margin-inline: auto;
}
.gallery .fin {
  font-size: 8vw;
  rotate: -7deg;
  width: fit-content;
  margin: -10px 10px 0 61.3333333333vw;
}

@media screen and (min-width: 769px) {
  .gallery {
    max-width: 500px;
    margin: 0 auto;
  }
  .gallery .sticky {
    height: 100vh;
    display: grid;
    place-content: center;
  }
  .gallery .fin {
    font-size: min(2.5vw, 30px);
    rotate: -7deg;
    width: fit-content;
    margin: -10px 10px 0 auto;
  }
  .gallery .image_wrap {
    width: min(50vw, 600px);
    position: relative;
    translate: -50% 0;
    left: 50%;
  }
  .gallery li:nth-child(1) {
    width: min(23.3333333333vw, 280px);
  }
  .gallery li:nth-child(2) {
    width: min(23.3333333333vw, 280px);
    margin: max(-13.3333333333vw, -160px) 0 max(-2.5vw, -30px) auto;
  }
  .gallery li:nth-child(3) {
    width: min(20.8333333333vw, 250px);
    margin: 0 auto max(-2.5vw, -30px) min(3.3333333333vw, 40px);
  }
  .gallery li:nth-child(4) {
    width: min(20.8333333333vw, 250px);
    margin: max(-10vw, -120px) min(2.5vw, 30px) 0 auto;
  }
}/*# sourceMappingURL=style.css.map */