@charset "UTF-8";
/* foundation
===================================================== */
/* speed
============================================ */
/* fadeIn
============================================ */
.fadeIn {
  opacity: 0;
  transition: opacity 1.2s;
}
.fadeIn.on {
  opacity: 1;
}

.animeWrap .animeWrap_item__in {
  opacity: 0;
  transition: opacity 1.2s;
}
.animeWrap.on .animeWrap_item__in {
  opacity: 1;
}

/* fadeUp
============================================ */
.fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s, transform 1.2s;
}
.fadeUp.on {
  opacity: 1;
  transform: translateY(0);
}

.animeWrap .animeWrap_item__up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s, transform 1.2s;
}
.animeWrap.on .animeWrap_item__up {
  opacity: 1;
  transform: translateY(0);
}

/* fadeDown
============================================ */
.fadeDown {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1.2s, transform 1.2s;
}
.fadeDown.on {
  opacity: 1;
  transform: translateY(0);
}

.animeWrap .animeWrap_item__down {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1.2s, transform 1.2s;
}
.animeWrap.on .animeWrap_item__down {
  opacity: 1;
  transform: translateY(0);
}

/* fadeLeft
============================================ */
.fadeLeft {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 1.2s, transform 1.2s;
}
.fadeLeft.on {
  opacity: 1;
  transform: translateX(0);
}

.animeWrap .animeWrap_item__left {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 1.2s, transform 1.2s;
}
.animeWrap.on .animeWrap_item__left {
  opacity: 1;
  transform: translateX(0);
}

/* fadeRight
============================================ */
.fadeRight {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1.2s, transform 1.2s;
}
.fadeRight.on {
  opacity: 1;
  transform: translateX(0);
}

.animeWrap .animeWrap_item__right {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1.2s, transform 1.2s;
}
.animeWrap.on .animeWrap_item__right {
  opacity: 1;
  transform: translateX(0);
}

/* 
===================================================== */
.fadeInZoomOut {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s, transform 1.2s;
}
.fadeInZoomOut.on {
  opacity: 1;
  transform: scale(1);
}

.animeWrap .animeWrap_item__fadeInZoomOut {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s, transform 1.2s;
}
.animeWrap.on .animeWrap_item__fadeInZoomOut {
  opacity: 1;
  transform: scale(1);
}

/* colorBeta
============================================ */
.colorBeta {
  opacity: 0;
  position: relative;
  transition: opacity 1.2s;
}
.colorBeta::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 1s;
  transition-delay: 0.5s;
  opacity: 1;
}
.colorBeta.on {
  opacity: 1;
}
.colorBeta.on::before {
  opacity: 0;
}

.colorBetaWrap .colorBetaWrap_item {
  opacity: 0;
  position: relative;
  transition: opacity 1.2s;
}
.colorBetaWrap .colorBetaWrap_item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 1s;
  transition-delay: 0.5s;
  opacity: 1;
}
.colorBetaWrap.on .colorBetaWrap_item {
  opacity: 1;
}
.colorBetaWrap.on .colorBetaWrap_item::before {
  opacity: 0;
}

/* blur
===================================================== */
.blur {
  opacity: 0;
  filter: blur(5px);
}
.blur.on {
  animation-name: blurAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.animeWrap .animeWrap_item__blur {
  opacity: 0;
  filter: blur(5px);
  transform: scale(1.02);
}
.animeWrap.on .animeWrap_item__blur {
  animation-name: blurAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes blurAnime {
  from {
    opacity: 0;
    filter: blur(5px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
/* slide
============================================ */
.slide {
  transform: translateX(-105%);
  transition: transform 1.2s ease;
  overflow: hidden;
}
.slide .slide_item {
  transform: translateX(105%);
  transition: transform 1.2s ease;
}
.slide.on {
  transform: translateX(0);
}
.slide.on .slide_item {
  transform: translateX(0);
}

.animeWrap .animeWrap_item__slide {
  overflow: hidden;
  transform: translateX(-105%);
  transition: transform 1.2s ease;
}
.animeWrap .animeWrap_item__slide .animeWrap_item__slideImg {
  transform: translateX(105%);
  transition: transform 1.2s ease;
}
.animeWrap.on .animeWrap_item__slide,
.animeWrap.on .animeWrap_item__slideImg {
  transform: translateX(0);
}

/* slideBlur
============================================ */
.animeWrap .animeWrap_item__slideBlur {
  overflow: hidden;
  transform: translateX(-105%);
  transition: transform 1.2s ease;
  filter: blur(15px);
}
.animeWrap .animeWrap_item__slideBlur .animeWrap_item__slideBlurImg {
  transform: translateX(105%);
  transition: transform 1.2s ease;
}
.animeWrap.on .animeWrap_item__slideBlur {
  animation-name: blurAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.animeWrap.on .animeWrap_item__slideBlur,
.animeWrap.on .animeWrap_item__slideBlurImg {
  transform: translateX(0);
}

/* loop
============================================ */
/* loop__y
============================================ */
/* use
===================================================== */
/* 
===================================================== */
/* 
===================================================== */
.wrapper {
  color: #000000;
}

/* DNP ShueiGoGinStd
===================================================== */
/* 
===================================================== */
.wrapper {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* font-size
===================================================== */
/* device
===================================================== */
/* 
===================================================== */
/* 
===================================================== */
/* 
===================================================== */
/* margin
===================================================== */
/* bg
===================================================== */
/* media query
===================================================== */
/* line-heightの上下をなくす
===================================================== */
/* letter-spacingの文末をなくす
===================================================== */
/* clearfix
===================================================== */
/* hover
===================================================== */
/* linkcolor
===================================================== */
/* z-index
===================================================== */
/* rem変換
===================================================== */
/* %変換
===================================================== */
/* vh変換(SP用)
===================================================== */
/* vw変換(SP用)
===================================================== */
/* vw変換(PC用) minとmax
===================================================== */
/* spをpcへ引き伸ばし(px)
===================================================== */
/* spをpcへ引き伸ばし(vw)
===================================================== */
/* ラインハイト計算
===================================================== */
/* レタースペーシング計算
===================================================== */
/* right-arrow
===================================================== */
/* aspect-area(padding-top)
===================================================== */
/* aspect-area-h(height)
===================================================== */
/* youtube
===================================================== */
/* margin: 0 auto
===================================================== */
/* common
===================================================== */
html,
body {
  overflow: hidden;
  pointer-events: none;
}
html.scroll,
body.scroll {
  overflow: visible;
  pointer-events: auto;
}

.wrapper {
  width: 100%;
  letter-spacing: 0;
  line-height: 1.6;
  background-image: url("../images/bg.jpg");
  background-size: 375px;
  background-repeat: repeat;
}
@media screen and (min-width: 769px) {
  .wrapper {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
}
a[href=""] {
  pointer-events: none;
}

img {
  width: 100%;
  display: block;
}

video {
  width: 100%;
  display: block;
}

/* vue
===================================================== */
[v-cloak] {
  opacity: 0;
}

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

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

/* use
===================================================== */
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* layout
===================================================== */
/* use
===================================================== */
/* use
===================================================== */
/* 
===================================================== */
.p-content__left {
  position: sticky;
  top: 0;
}

.p-content__right {
  position: sticky;
  top: 0;
}

@media screen and (min-width: 769px) {
  .l-colmn2 {
    display: flex;
    justify-content: space-between;
  }
  .p-fv {
    width: 41.25%;
    max-height: 100vh;
    position: sticky;
    top: 0;
  }
  .l-right {
    width: 58.75%;
  }
}
/* 
===================================================== */
@media screen and (max-width: 768px) {
  .p-fv {
    margin-bottom: 67px;
  }
}

@media screen and (min-width: 769px) {
  .p-lead {
    padding-top: min(9.3043478261vw, 107px);
    margin-bottom: min(12.6086956522vw, 145px);
  }
}
@media screen and (max-width: 768px) {
  .p-lead {
    margin-bottom: 83px;
  }
}

@media screen and (min-width: 769px) {
  .p-areaTitle {
    margin-bottom: min(6.0869565217vw, 70px);
  }
}
@media screen and (max-width: 768px) {
  .p-areaTitle {
    margin-bottom: 45px;
  }
}

@media screen and (min-width: 769px) {
  .p-nav {
    margin-bottom: min(10.2608695652vw, 118px);
    width: min(46.0869565217vw, 530px);
  }
}
@media screen and (max-width: 768px) {
  .p-nav {
    margin-bottom: 94px;
    width: 88.5333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .l-colmn2 {
    padding-bottom: min(14.7826086957vw, 170px);
  }
}
@media screen and (max-width: 768px) {
  .l-colmn2 {
    padding-bottom: 130px;
  }
}

.l-colmn1 {
  border-top: 1px solid #000000;
}
@media screen and (min-width: 769px) {
  .l-colmn1 {
    padding-top: min(9.7391304348vw, 112px);
  }
}
@media screen and (max-width: 768px) {
  .l-colmn1 {
    padding-top: 104px;
  }
}

@media screen and (max-width: 768px) {
  .p-slot,
  .p-gallery {
    width: 90.6666666667vw;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 769px) {
  .p-slot {
    margin-bottom: min(12.8695652174vw, 148px);
  }
}
@media screen and (max-width: 768px) {
  .p-slot {
    margin-bottom: 103px;
  }
}

@media screen and (min-width: 769px) {
  .p-gallery {
    margin-bottom: min(10.4347826087vw, 120px);
  }
}
@media screen and (max-width: 768px) {
  .p-gallery {
    margin-bottom: 87px;
  }
}

@media screen and (min-width: 769px) {
  .p-btn {
    margin-bottom: min(17.8260869565vw, 205px);
  }
}
@media screen and (max-width: 768px) {
  .p-btn {
    margin-bottom: 145px;
  }
}

/* 
===================================================== */
/* components
===================================================== */
/* foundation
===================================================== */
/* use
===================================================== */
/* use
===================================================== */
/* .p-areaTitle
===================================================== */
.p-areaTitle {
  position: relative;
  font-family: "quiche-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-areaTitle {
    font-size: min(3.2173913043vw, 37px);
  }
}
@media screen and (max-width: 768px) {
  .p-areaTitle {
    font-size: 25px;
  }
}
.p-areaTitle .p-areaTitle__txt {
  display: block;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .p-areaTitle .p-areaTitle__txt.p-areaTitle__txtM {
    font-size: min(2.9565217391vw, 34px);
  }
}
@media screen and (max-width: 768px) {
  .p-areaTitle .p-areaTitle__txt.p-areaTitle__txtM {
    font-size: 21px;
  }
}
@media screen and (min-width: 769px) {
  .p-areaTitle .p-areaTitle__txt.p-areaTitle__txtS {
    font-size: min(2vw, 23px);
  }
}
@media screen and (max-width: 768px) {
  .p-areaTitle .p-areaTitle__txt.p-areaTitle__txtS {
    font-size: 17px;
  }
}
.p-areaTitle::before {
  content: "";
  display: block;
  border-radius: 999%;
  border: 1px solid #B5D0E2;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-44.8deg);
}
@media screen and (min-width: 769px) {
  .p-areaTitle::before {
    width: min(10.8695652174vw, 125px);
    height: min(4.8695652174vw, 56px);
  }
}
@media screen and (max-width: 768px) {
  .p-areaTitle::before {
    width: 43px;
    height: 97px;
  }
}

/* projects
===================================================== */
/* foundation
===================================================== */
/* use
===================================================== */
/* use
===================================================== */
/* .p-loading
===================================================== */
.p-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  pointer-events: none;
  z-index: 999;
  transition: opacity 1.2s;
}
.p-loading.is-hide {
  opacity: 0;
}

/* foundation
===================================================== */
/* use
===================================================== */
/* use
===================================================== */
/* .p-fv
===================================================== */
@media screen and (min-width: 769px) {
  .p-fv__inner {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative;
  }
}

@media screen and (min-width: 769px) {
  .p-fv__movie {
    height: 100%;
    width: auto;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
}

/* foundation
===================================================== */
/* use
===================================================== */
/* use
===================================================== */
/* .p-lead
===================================================== */
.p-lead__logo {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .p-lead__logo {
    width: min(13.4782608696vw, 155px);
    margin-bottom: min(4.347826087vw, 50px);
  }
}
@media screen and (max-width: 768px) {
  .p-lead__logo {
    width: 101px;
    margin-bottom: 45px;
  }
}

.p-lead__title {
  font-family: "quiche-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .p-lead__title {
    margin-bottom: min(2.347826087vw, 27px);
  }
}
@media screen and (max-width: 768px) {
  .p-lead__title {
    margin-bottom: 20px;
  }
}
.p-lead__title .p-lead__titleL,
.p-lead__title .p-lead__titleS {
  display: block;
  text-align: center;
  letter-spacing: 0.02em;
}
.p-lead__title .p-lead__titleL {
  line-height: 1.0416666667;
  text-transform: uppercase;
}
@media screen and (min-width: 769px) {
  .p-lead__title .p-lead__titleL {
    margin-bottom: min(0.6956521739vw, 8px);
    font-size: min(3.2173913043vw, 37px);
  }
}
@media screen and (max-width: 768px) {
  .p-lead__title .p-lead__titleL {
    margin-bottom: 3px;
    font-size: 24px;
  }
}
.p-lead__title .p-lead__titleS {
  line-height: 1.6666666667;
}
@media screen and (min-width: 769px) {
  .p-lead__title .p-lead__titleS {
    font-size: min(1.7391304348vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .p-lead__title .p-lead__titleS {
    font-size: 15px;
  }
}

.p-lead__txt {
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 2.0833333333;
}
@media screen and (min-width: 769px) {
  .p-lead__txt {
    font-size: min(1.3913043478vw, 16px);
  }
}
@media screen and (max-width: 768px) {
  .p-lead__txt {
    font-size: 12px;
  }
}

/* foundation
===================================================== */
/* use
===================================================== */
/* use
===================================================== */
/* .p-nav
===================================================== */
.p-nav {
  margin-left: auto;
  margin-right: auto;
}

.p-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .p-nav__list {
    gap: min(0.8695652174vw, 10px) min(0.9565217391vw, 11px);
  }
}
@media screen and (max-width: 768px) {
  .p-nav__list {
    gap: 6px 8px;
  }
}

@media screen and (min-width: 769px) {
  .p-nav__item:nth-of-type(-n + 2), .p-nav__item:nth-of-type(n + 6) {
    width: min(22.5217391304vw, 259px);
  }
}
@media screen and (max-width: 768px) {
  .p-nav__item:nth-of-type(-n + 2), .p-nav__item:nth-of-type(n + 6) {
    width: 43.2vw;
  }
}
@media screen and (min-width: 769px) {
  .p-nav__item:nth-of-type(3), .p-nav__item:nth-of-type(4), .p-nav__item:nth-of-type(5) {
    width: min(14.6086956522vw, 168px);
  }
}
@media screen and (max-width: 768px) {
  .p-nav__item:nth-of-type(3), .p-nav__item:nth-of-type(4), .p-nav__item:nth-of-type(5) {
    width: 28vw;
  }
}

.p-nav__link {
  display: block;
  position: relative;
}

.p-nav__name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-transform: uppercase;
  font-family: "quiche-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  line-height: 1.2857142857;
}
@media screen and (min-width: 769px) {
  .p-nav__name {
    font-size: min(1.9130434783vw, 22px);
  }
}
@media screen and (max-width: 768px) {
  .p-nav__name {
    font-size: 3.7333333333vw;
  }
}
.p-nav__name span {
  display: block;
  white-space: nowrap;
}

/* foundation
===================================================== */
/* use
===================================================== */
/* use
===================================================== */
/* .p-content
===================================================== */
.p-content {
  border-top: 1px solid #000000;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* ..p-content__left / .p-content__right
===================================================== */
.p-content__left,
.p-content__right {
  height: 100vh;
  height: 100svh;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-content__left,
  .p-content__right {
    width: 9.3333333333vw;
  }
}

/* .p-content__left
===================================================== */
@media screen and (min-width: 769px) {
  .p-content__left {
    width: min(6.6086956522vw, 76px);
  }
}

.p-content__leftTxt {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.14em;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(-90deg);
}
@media screen and (min-width: 769px) {
  .p-content__leftTxt {
    font-size: min(1.5652173913vw, 18px);
  }
}
@media screen and (max-width: 768px) {
  .p-content__leftTxt {
    font-size: 3.4666666667vw;
  }
}

/* .p-content__right
===================================================== */
@media screen and (min-width: 769px) {
  .p-content__right {
    width: min(5.5652173913vw, 64px);
  }
}

.p-content__rightList {
  height: 100%;
}

.p-content__rightItem {
  height: 33.3333333333vh;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-content__rightItem {
    font-size: min(1.652173913vw, 19px);
  }
}
@media screen and (max-width: 768px) {
  .p-content__rightItem {
    font-size: 3.7333333333vw;
  }
}
.p-content__rightItem:nth-of-type(1) .p-content__rightNaiyo, .p-content__rightItem:nth-of-type(2) .p-content__rightNaiyo {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.p-content__rightItem:nth-of-type(1) {
  font-family: "kings-caslon", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.p-content__rightItem:nth-of-type(2) {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  font-family: "kings-caslon", sans-serif;
  font-weight: 400;
  font-style: italic;
  white-space: nowrap;
}
.p-content__rightItem:nth-of-type(3) .p-content__rightNaiyo {
  animation-name: spin;
  animation-duration: 7s;
  animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(-15deg);
  }
  10% {
    transform: translate(-50%, -50%) rotate(15deg);
  }
  20% {
    transform: translate(-50%, -50%) rotate(-15deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(390deg);
  }
  65% {
    transform: translate(-50%, -50%) rotate(330deg);
  }
  80% {
    transform: translate(-50%, -50%) rotate(375deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-15deg);
  }
}
@media screen and (min-width: 769px) {
  .p-content__rightItem:nth-of-type(3) .p-content__rightNaiyo {
    width: min(2.0869565217vw, 24px);
  }
}
@media screen and (max-width: 768px) {
  .p-content__rightItem:nth-of-type(3) .p-content__rightNaiyo {
    width: 5.0666666667vw;
  }
}

.p-content__rightNaiyo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

/* .p-content__center
===================================================== */
.p-content__center {
  width: 100%;
  position: relative;
}
.p-content__center::before, .p-content__center::after {
  content: "";
  display: block;
  width: 1px;
  position: absolute;
  background-color: #000000;
  top: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .p-content__center::before, .p-content__center::after {
    height: calc(100% + min(14.7826086957vw, 170px));
  }
}
@media screen and (max-width: 768px) {
  .p-content__center::before, .p-content__center::after {
    height: calc(100% + 130px);
  }
}
.p-content__center::before {
  left: 0;
}
.p-content__center::after {
  right: 0;
}

/* foundation
===================================================== */
/* use
===================================================== */
/* use
===================================================== */
/* 
---------------------------------------- */
@media screen and (max-width: 768px) {
  .stack {
    position: sticky;
  }
}

/* .p-sec
===================================================== */
.p-sec {
  background-image: url("../images/bg.jpg");
  background-size: 375px;
  background-repeat: repeat;
}
@media screen and (max-width: 768px) {
  .p-sec {
    padding-top: 83px;
  }
}
@media screen and (max-width: 768px) {
  .p-sec:not(:last-of-type) {
    padding-bottom: 83px;
  }
}
@media screen and (min-width: 769px) {
  .p-sec:not(:first-of-type) {
    padding-top: min(19.4782608696vw, 224px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec:not(:first-of-type) {
    border-top: 1px solid #000000;
  }
}
@media screen and (min-width: 769px) {
  .p-sec:first-of-type {
    padding-top: min(13.9130434783vw, 160px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec:nth-of-type(n + 2) {
    margin-top: 30vh;
  }
}

/* .p-sec__top
===================================================== */
.p-sec__top {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .p-sec__top {
    width: min(36.6956521739vw, 422px);
    margin-bottom: min(11.7391304348vw, 135px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec__top {
    width: 61.8666666667vw;
    margin-bottom: 50px;
  }
}

.p-sec__imgMain a {
  display: block;
}

.p-sec__tap {
  text-transform: uppercase;
  background-color: #B5D0E2;
  border-radius: 50%;
  text-align: center;
  font-family: "quiche-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: absolute;
  transform: rotate(-13.26deg);
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .p-sec__tap {
    width: min(7.3913043478vw, 85px);
    line-height: min(7.3913043478vw, 85px);
    font-size: min(1.9130434783vw, 22px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec__tap {
    width: 12.5333333333vw;
    line-height: 12.5333333333vw;
    font-size: 3.4666666667vw;
  }
}

.p-sec__title {
  pointer-events: none;
}
.p-sec__title img {
  position: absolute;
}

/* .p-sec__gallery
===================================================== */
.p-sec__gallery {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .p-sec__gallery {
    width: min(40.6086956522vw, 467px);
    margin-bottom: min(7.3913043478vw, 85px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec__gallery {
    width: 69.3333333333vw;
    margin-bottom: 45px;
  }
}

.p-sec__gallery__inner {
  position: relative;
}

.p-sec__galleryItem {
  position: absolute !important;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.09em;
  line-height: 1.4444444444;
}
@media screen and (min-width: 769px) {
  .p-sec__galleryItem {
    font-size: min(1.2173913043vw, 14px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec__galleryItem {
    font-size: 2.4vw;
  }
}

/* .p-sec__data
===================================================== */
.p-sec__data {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .p-sec__data {
    width: min(33.9130434783vw, 390px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec__data {
    width: 58.1333333333vw;
  }
}

.p-sec__itemImg {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-sec__itemImg {
    margin-bottom: min(1.7391304348vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec__itemImg {
    margin-bottom: 10px;
  }
}

.p-sec__name,
.p-sec__price {
  font-family: "quiche-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}
@media screen and (min-width: 769px) {
  .p-sec__name,
  .p-sec__price {
    font-size: min(2vw, 23px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec__name,
  .p-sec__price {
    font-size: 16px;
  }
}

@media screen and (min-width: 769px) {
  .p-sec__name {
    margin-bottom: max(-0.2608695652vw, -3px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec__name {
    margin-bottom: -0.8vw;
  }
}

@media screen and (min-width: 769px) {
  .p-sec__price {
    margin-bottom: min(1.652173913vw, 19px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec__price {
    margin-bottom: 10px;
  }
}

.p-sec__buy {
  font-family: "quiche-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  background-color: #000000;
  color: #EFDFC5;
  text-transform: uppercase;
  border-radius: 999px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-sec__buy {
    font-size: min(1.4782608696vw, 17px);
    width: min(8vw, 92px);
    line-height: min(2.6086956522vw, 30px);
    margin-bottom: min(3.0434782609vw, 35px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec__buy {
    font-size: 12px;
    width: 59px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}

.p-sec__txt {
  letter-spacing: 0.02em;
  line-height: 1.75;
}
@media screen and (min-width: 769px) {
  .p-sec__txt {
    font-size: min(1.3913043478vw, 16px);
    margin-bottom: min(5.652173913vw, 65px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec__txt {
    font-size: 12px;
    margin-bottom: 45px;
  }
}
.p-sec__txt span {
  display: block;
}

@media screen and (min-width: 769px) {
  .p-sec__movie video {
    border-radius: min(1.4782608696vw, 17px);
  }
}
@media screen and (max-width: 768px) {
  .p-sec__movie video {
    border-radius: 3.2vw;
  }
}

/* foundation
===================================================== */
/* use
===================================================== */
/* use
===================================================== */
/* .p-slot
===================================================== */
.p-slot__area {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .p-slot__area {
    width: 383px;
    height: 735px;
  }
}
@media screen and (max-width: 768px) {
  .p-slot__area {
    width: 90.6666666667vw;
    height: 173.8666666667vw;
  }
}

.p-slot__row {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .p-slot__row {
    gap: 10px;
    margin-bottom: 10px;
    transform: translateY(-298px);
  }
}
@media screen and (max-width: 768px) {
  .p-slot__row {
    gap: 2.1333333333vw;
    margin-bottom: 2.1333333333vw;
    transform: translateY(-70.4vw);
  }
}

.p-slot__item {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .p-slot__item {
    width: 121px;
  }
}
@media screen and (max-width: 768px) {
  .p-slot__item {
    width: 28.8vw;
  }
}

.p-slot__inner {
  padding-top: 114.8148148148%;
  position: relative;
  transform-style: preserve-3d;
}
.p-slot__inner > img {
  position: absolute;
  width: 100%;
  backface-visibility: hidden;
  top: 0;
  left: 0;
}
.p-slot__inner > img:nth-of-type(2) {
  transform: rotateX(180deg);
}

/* foundation
===================================================== */
/* use
===================================================== */
/* use
===================================================== */
/* .p-gallery
===================================================== */
@media screen and (min-width: 769px) {
  .p-gallery {
    width: min(41.1304347826vw, 473px);
    min-width: 383px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-gallery__title {
  text-transform: uppercase;
}

.LeeepListScrollInner {
  margin-bottom: 0 !important;
}

.LeeepStyleBorder .LeeepPost {
  border: none !important;
}

.LeeepListByLeeepContainer {
  display: none !important;
}

.LeeepSeeMore {
  border-radius: 999px;
  display: block;
  text-align: center;
  font-family: "quiche-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.02em;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  position: relative;
  height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  color: transparent !important;
}
@media screen and (min-width: 769px) {
  .LeeepSeeMore {
    width: min(16.8695652174vw, 194px) !important;
    line-height: min(4vw, 46px) !important;
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 768px) {
  .LeeepSeeMore {
    width: 140px !important;
    line-height: 33px !important;
    margin-top: 23px !important;
  }
}
.LeeepSeeMore::before {
  content: "more";
  display: block;
  color: #000000;
  border-radius: 999px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  border: 1px solid #000000;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg.jpg");
  background-size: 375px;
  background-repeat: repeat;
}
@media screen and (min-width: 769px) {
  .LeeepSeeMore::before {
    font-size: min(2.1739130435vw, 25px);
  }
}
@media screen and (max-width: 768px) {
  .LeeepSeeMore::before {
    font-size: 18px;
  }
}

/* foundation
===================================================== */
/* use
===================================================== */
/* use
===================================================== */
/* .p-btn
===================================================== */
.p-btn {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .p-btn {
    width: min(29.5652173913vw, 340px);
    line-height: min(5.3043478261vw, 61px);
  }
}
@media screen and (max-width: 768px) {
  .p-btn {
    width: 245px;
    line-height: 44px;
  }
}
.p-btn a {
  display: block;
  font-family: "quiche-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  color: #EFDFC5;
  background-color: #000000;
  border-radius: 999px;
  text-transform: uppercase;
}
@media screen and (min-width: 769px) {
  .p-btn a {
    font-size: min(2.1739130435vw, 25px);
  }
}
@media screen and (max-width: 768px) {
  .p-btn a {
    font-size: 18px;
  }
}

/* foundation
===================================================== */
/* use
===================================================== */
/* use
===================================================== */
/* .p-footer
===================================================== */
.p-footer {
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-footer {
    padding-bottom: min(3.4782608696vw, 40px);
  }
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding-bottom: 25px;
  }
}

.p-footer__logo {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .p-footer__logo {
    width: min(12.7826086957vw, 147px);
    margin-bottom: min(2.6086956522vw, 30px);
  }
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    width: 106px;
    margin-bottom: 24px;
  }
}
.p-footer__logo a {
  display: block;
}

.p-footer__copy small {
  display: block;
  font-family: "quiche-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-footer__copy small {
    font-size: min(1.3913043478vw, 16px);
  }
}
@media screen and (max-width: 768px) {
  .p-footer__copy small {
    font-size: 10px;
  }
}

.p-footer__toTop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .p-footer__toTop {
    padding: min(3.0434782609vw, 35px);
  }
}
@media screen and (max-width: 768px) {
  .p-footer__toTop {
    padding: 21px;
  }
}
@media screen and (min-width: 769px) {
  .p-footer__toTop svg {
    width: min(1.3913043478vw, 16px);
    margin-bottom: min(0.4347826087vw, 5px);
  }
}
@media screen and (max-width: 768px) {
  .p-footer__toTop svg {
    width: 15px;
    margin-bottom: 5px;
  }
}
.p-footer__toTop span {
  display: block;
  text-transform: uppercase;
  font-family: "quiche-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .p-footer__toTop span {
    font-size: min(1.5652173913vw, 18px);
  }
}
@media screen and (max-width: 768px) {
  .p-footer__toTop span {
    font-size: 12px;
  }
}

/* utility
===================================================== */
/* foundation
===================================================== */
/* use
===================================================== */
/* use
===================================================== */
/* #sec__1
===================================================== */
@media screen and (min-width: 769px) {
  #sec__1 .p-sec__title img {
    width: min(18.1vw, 208.15px);
    top: max(-2.8330434783vw, -32.58px);
    right: max(-2.2034782609vw, -25.34px);
  }
}
@media screen and (max-width: 768px) {
  #sec__1 .p-sec__title img {
    width: 30.6666666667vw;
    top: -4.8vw;
    right: -3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #sec__1 .p-sec__tap {
    left: max(-0.6295652174vw, -7.24px);
    bottom: max(-2.2034782609vw, -25.34px);
  }
}
@media screen and (max-width: 768px) {
  #sec__1 .p-sec__tap {
    left: -1.0666666667vw;
    bottom: -3.7333333333vw;
  }
}
#sec__1 .p-sec__gallery__inner {
  padding-top: 121.9230769231%;
}
#sec__1 .p-sec__galleryItem--1 {
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #sec__1 .p-sec__galleryItem--1 {
    width: min(26.9139130435vw, 309.51px);
  }
}
@media screen and (max-width: 768px) {
  #sec__1 .p-sec__galleryItem--1 {
    width: 45.6vw;
  }
}
#sec__1 .p-sec__galleryItem--2 {
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  #sec__1 .p-sec__galleryItem--2 {
    width: min(25.1826086957vw, 289.6px);
  }
}
@media screen and (max-width: 768px) {
  #sec__1 .p-sec__galleryItem--2 {
    width: 42.6666666667vw;
  }
}
#sec__1 .p-sec__galleryItem--3 {
  left: 0;
}
@media screen and (min-width: 769px) {
  #sec__1 .p-sec__galleryItem--3 {
    top: min(9.1286956522vw, 104.98px);
  }
}
@media screen and (max-width: 768px) {
  #sec__1 .p-sec__galleryItem--3 {
    top: 15.4666666667vw;
  }
}

/* #sec__2
===================================================== */
@media screen and (min-width: 769px) {
  #sec__2 .p-sec__title img {
    width: min(25.34vw, 291.41px);
    bottom: max(-2.2034782609vw, -25.34px);
    left: max(-2.0460869565vw, -23.53px);
  }
}
@media screen and (max-width: 768px) {
  #sec__2 .p-sec__title img {
    width: 42.9333333333vw;
    bottom: -3.7333333333vw;
    left: -3.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #sec__2 .p-sec__tap {
    right: max(-0.9443478261vw, -10.86px);
    top: max(-1.7313043478vw, -19.91px);
  }
}
@media screen and (max-width: 768px) {
  #sec__2 .p-sec__tap {
    right: -1.6vw;
    top: -2.9333333333vw;
  }
}
#sec__2 .p-sec__gallery__inner {
  padding-top: 113.0769230769%;
}
#sec__2 .p-sec__galleryItem--1 {
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  #sec__2 .p-sec__galleryItem--1 {
    width: min(24.2382608696vw, 278.74px);
  }
}
@media screen and (max-width: 768px) {
  #sec__2 .p-sec__galleryItem--1 {
    width: 41.0666666667vw;
  }
}
#sec__2 .p-sec__galleryItem--2 {
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #sec__2 .p-sec__galleryItem--2 {
    width: min(26.9139130435vw, 309.51px);
  }
}
@media screen and (max-width: 768px) {
  #sec__2 .p-sec__galleryItem--2 {
    width: 45.6vw;
  }
}
#sec__2 .p-sec__galleryItem--3 {
  text-align: right;
}
@media screen and (min-width: 769px) {
  #sec__2 .p-sec__galleryItem--3 {
    right: min(0.7869565217vw, 9.05px);
    top: min(7.5547826087vw, 86.88px);
  }
}
@media screen and (max-width: 768px) {
  #sec__2 .p-sec__galleryItem--3 {
    right: 1.3333333333vw;
    top: 12.8vw;
  }
}

/* #sec__3
===================================================== */
@media screen and (min-width: 769px) {
  #sec__3 .p-sec__title img {
    width: min(4.092173913vw, 47.06px);
  }
}
@media screen and (max-width: 768px) {
  #sec__3 .p-sec__title img {
    width: 6.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #sec__3 .p-sec__title img:nth-of-type(1) {
    top: max(-0.1573913043vw, -1.81px);
    left: max(-2.2034782609vw, -25.34px);
  }
}
@media screen and (max-width: 768px) {
  #sec__3 .p-sec__title img:nth-of-type(1) {
    top: -0.2666666667vw;
    left: -3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #sec__3 .p-sec__title img:nth-of-type(2) {
    bottom: max(-0.6295652174vw, -7.24px);
    right: max(-1.7313043478vw, -19.91px);
  }
}
@media screen and (max-width: 768px) {
  #sec__3 .p-sec__title img:nth-of-type(2) {
    bottom: -1.0666666667vw;
    right: -2.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #sec__3 .p-sec__tap {
    left: max(-1.8886956522vw, -21.72px);
    bottom: max(-0.9443478261vw, -10.86px);
  }
}
@media screen and (max-width: 768px) {
  #sec__3 .p-sec__tap {
    left: -3.2vw;
    bottom: -1.6vw;
  }
}
#sec__3 .p-sec__gallery__inner {
  padding-top: 129.6153846154%;
}
#sec__3 .p-sec__galleryItem--1 {
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #sec__3 .p-sec__galleryItem--1 {
    width: min(26.9139130435vw, 309.51px);
  }
}
@media screen and (max-width: 768px) {
  #sec__3 .p-sec__galleryItem--1 {
    width: 45.6vw;
  }
}
#sec__3 .p-sec__galleryItem--2 {
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  #sec__3 .p-sec__galleryItem--2 {
    width: min(25.1826086957vw, 289.6px);
  }
}
@media screen and (max-width: 768px) {
  #sec__3 .p-sec__galleryItem--2 {
    width: 42.6666666667vw;
  }
}
#sec__3 .p-sec__galleryItem--3 {
  left: 0;
}
@media screen and (min-width: 769px) {
  #sec__3 .p-sec__galleryItem--3 {
    top: min(9.1286956522vw, 104.98px);
  }
}
@media screen and (max-width: 768px) {
  #sec__3 .p-sec__galleryItem--3 {
    top: 15.4666666667vw;
  }
}

/* #sec__4
===================================================== */
#sec__4 .p-sec__title img {
  width: auto;
}
@media screen and (min-width: 769px) {
  #sec__4 .p-sec__title img {
    height: min(4.092173913vw, 47.06px);
  }
}
@media screen and (max-width: 768px) {
  #sec__4 .p-sec__title img {
    height: 6.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #sec__4 .p-sec__title img:nth-of-type(1) {
    top: max(-2.2034782609vw, -25.34px);
    left: min(1.8886956522vw, 21.72px);
  }
}
@media screen and (max-width: 768px) {
  #sec__4 .p-sec__title img:nth-of-type(1) {
    top: -3.7333333333vw;
    left: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  #sec__4 .p-sec__title img:nth-of-type(2) {
    bottom: max(-1.7313043478vw, -19.91px);
    right: max(-0.3147826087vw, -3.62px);
  }
}
@media screen and (max-width: 768px) {
  #sec__4 .p-sec__title img:nth-of-type(2) {
    bottom: -2.9333333333vw;
    right: -0.5333333333vw;
  }
}
#sec__4 .p-sec__tap {
  right: 0;
}
@media screen and (min-width: 769px) {
  #sec__4 .p-sec__tap {
    top: max(-1.1017391304vw, -12.67px);
  }
}
@media screen and (max-width: 768px) {
  #sec__4 .p-sec__tap {
    top: -1.8666666667vw;
  }
}
#sec__4 .p-sec__gallery__inner {
  padding-top: 117.6923076923%;
}
#sec__4 .p-sec__galleryItem--1 {
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  #sec__4 .p-sec__galleryItem--1 {
    width: min(24.2382608696vw, 278.74px);
  }
}
@media screen and (max-width: 768px) {
  #sec__4 .p-sec__galleryItem--1 {
    width: 41.0666666667vw;
  }
}
#sec__4 .p-sec__galleryItem--2 {
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #sec__4 .p-sec__galleryItem--2 {
    width: min(26.9139130435vw, 309.51px);
  }
}
@media screen and (max-width: 768px) {
  #sec__4 .p-sec__galleryItem--2 {
    width: 45.6vw;
  }
}
#sec__4 .p-sec__galleryItem--3 {
  text-align: right;
  right: 0;
}
@media screen and (min-width: 769px) {
  #sec__4 .p-sec__galleryItem--3 {
    top: min(7.8695652174vw, 90.5px);
  }
}
@media screen and (max-width: 768px) {
  #sec__4 .p-sec__galleryItem--3 {
    top: 13.3333333333vw;
  }
}

/* #sec__5
===================================================== */
@media screen and (min-width: 769px) {
  #sec__5 .p-sec__title img {
    width: min(27.5434782609vw, 316.75px);
    top: max(-2.6756521739vw, -30.77px);
    right: max(-2.3608695652vw, -27.15px);
  }
}
@media screen and (max-width: 768px) {
  #sec__5 .p-sec__title img {
    width: 46.6666666667vw;
    top: -4.5333333333vw;
    right: -4vw;
  }
}
@media screen and (min-width: 769px) {
  #sec__5 .p-sec__tap {
    left: max(-2.2034782609vw, -25.34px);
    bottom: max(-0.9443478261vw, -10.86px);
  }
}
@media screen and (max-width: 768px) {
  #sec__5 .p-sec__tap {
    left: -3.7333333333vw;
    bottom: -1.6vw;
  }
}
#sec__5 .p-sec__gallery__inner {
  padding-top: 128.8461538462%;
}
#sec__5 .p-sec__galleryItem--1 {
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #sec__5 .p-sec__galleryItem--1 {
    width: min(26.9139130435vw, 309.51px);
  }
}
@media screen and (max-width: 768px) {
  #sec__5 .p-sec__galleryItem--1 {
    width: 45.6vw;
  }
}
#sec__5 .p-sec__galleryItem--2 {
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  #sec__5 .p-sec__galleryItem--2 {
    width: min(25.1826086957vw, 289.6px);
  }
}
@media screen and (max-width: 768px) {
  #sec__5 .p-sec__galleryItem--2 {
    width: 42.6666666667vw;
  }
}
#sec__5 .p-sec__galleryItem--3 {
  text-align: right;
}
@media screen and (min-width: 769px) {
  #sec__5 .p-sec__galleryItem--3 {
    right: min(0.7869565217vw, 9.05px);
    bottom: min(13.0634782609vw, 150.23px);
  }
}
@media screen and (max-width: 768px) {
  #sec__5 .p-sec__galleryItem--3 {
    right: 1.3333333333vw;
    bottom: 22.1333333333vw;
  }
}

/* #sec__6
===================================================== */
@media screen and (min-width: 769px) {
  #sec__6 .p-sec__title img {
    width: min(26.4417391304vw, 304.08px);
    top: max(-2.0460869565vw, -23.53px);
    right: max(-1.8886956522vw, -21.72px);
  }
}
@media screen and (max-width: 768px) {
  #sec__6 .p-sec__title img {
    width: 44.8vw;
    top: -3.4666666667vw;
    right: -3.2vw;
  }
}
@media screen and (min-width: 769px) {
  #sec__6 .p-sec__tap {
    left: max(-0.9443478261vw, -10.86px);
    bottom: min(0.3147826087vw, 3.62px);
  }
}
@media screen and (max-width: 768px) {
  #sec__6 .p-sec__tap {
    left: -1.6vw;
    bottom: 0.5333333333vw;
  }
}
#sec__6 .p-sec__gallery__inner {
  padding-top: 113.0769230769%;
}
#sec__6 .p-sec__galleryItem--1 {
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  #sec__6 .p-sec__galleryItem--1 {
    width: min(24.2382608696vw, 278.74px);
  }
}
@media screen and (max-width: 768px) {
  #sec__6 .p-sec__galleryItem--1 {
    width: 41.0666666667vw;
  }
}
#sec__6 .p-sec__galleryItem--2 {
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #sec__6 .p-sec__galleryItem--2 {
    width: min(26.9139130435vw, 309.51px);
  }
}
@media screen and (max-width: 768px) {
  #sec__6 .p-sec__galleryItem--2 {
    width: 45.6vw;
  }
}
#sec__6 .p-sec__galleryItem--3 {
  left: 0;
}
@media screen and (min-width: 769px) {
  #sec__6 .p-sec__galleryItem--3 {
    bottom: min(4.7217391304vw, 54.3px);
  }
}
@media screen and (max-width: 768px) {
  #sec__6 .p-sec__galleryItem--3 {
    bottom: 8vw;
  }
}

/* #sec__7
===================================================== */
@media screen and (min-width: 769px) {
  #sec__7 .p-sec__title img {
    width: min(28.3304347826vw, 325.8px);
    bottom: max(-1.8886956522vw, -21.72px);
    left: max(-0.9443478261vw, -10.86px);
  }
}
@media screen and (max-width: 768px) {
  #sec__7 .p-sec__title img {
    width: 48vw;
    bottom: -3.2vw;
    left: -1.6vw;
  }
}
#sec__7 .p-sec__tap {
  right: 0;
}
@media screen and (min-width: 769px) {
  #sec__7 .p-sec__tap {
    top: max(-1.1017391304vw, -12.67px);
  }
}
@media screen and (max-width: 768px) {
  #sec__7 .p-sec__tap {
    top: -1.8666666667vw;
  }
}
#sec__7 .p-sec__gallery__inner {
  padding-top: 129.6153846154%;
}
#sec__7 .p-sec__galleryItem--1 {
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #sec__7 .p-sec__galleryItem--1 {
    width: min(26.9139130435vw, 309.51px);
  }
}
@media screen and (max-width: 768px) {
  #sec__7 .p-sec__galleryItem--1 {
    width: 45.6vw;
  }
}
#sec__7 .p-sec__galleryItem--2 {
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  #sec__7 .p-sec__galleryItem--2 {
    width: min(25.1826086957vw, 289.6px);
  }
}
@media screen and (max-width: 768px) {
  #sec__7 .p-sec__galleryItem--2 {
    width: 42.6666666667vw;
  }
}
#sec__7 .p-sec__galleryItem--3 {
  right: 0;
}
@media screen and (min-width: 769px) {
  #sec__7 .p-sec__galleryItem--3 {
    bottom: min(10.7026086957vw, 123.08px);
  }
}
@media screen and (max-width: 768px) {
  #sec__7 .p-sec__galleryItem--3 {
    bottom: 18.1333333333vw;
  }
}/*# sourceMappingURL=style.css.map */