@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cantata+One&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
/* fonts */
/*
min-font-size ($font_size, $min_font_size)

$font_size (vw):     可変フォントサイズ
$min_font_size (px): 最小フォントサイズ
*/
/*
max-font-size ($font_size, $max_font_size)

$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/*
@mixin clamp-font-size ($min_font_size, $font_size, $max_font_size)

$min_font_size (px): 最小フォントサイズ
$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/* ==========================================================================
 #Foundation
========================================================================== */
/* #Reset 
----------------------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* #Typography
----------------------------------------------------------------- */
body,
html {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  color: #030000;
  font-size: 0.9259259259vw;
}
@media screen and (min-width: 1080px) {
  body,
html {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  body,
html {
    font-size: 1.5625vw;
  }
}

*::-moz-selection {
  color: #030000;
}

*::selection {
  color: #030000;
}

b,
strong,
.bold {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

/* IEだけに適応 */
_:lang(x)::-ms-backdrop,
.selector {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
}

li,
ol {
  list-style: none;
}

/* #base
----------------------------------------------------------------- */
html {
  -webkit-font-smoothing: antialiased;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

svg {
  width: 100%;
  height: auto;
}

img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* ==========================================================================
 #Layout
========================================================================== */
/* #header
----------------------------------------------------------------- */
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background-color: #fff;
}
.l-header__inner {
  margin: auto;
  width: 90%;
  padding: 1.5rem 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px ) {
  .l-header__inner {
    padding: 1.9rem 0;
    width: 51rem;
  }
}
.l-header__logo {
  width: 12.5rem;
}
.l-header__nav {
  padding-top: 0.3rem;
}
.l-header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__nav ul a {
  color: #000;
  font-weight: 700;
  font-size: 1.5rem;
  display: block;
  -webkit-transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.l-header__nav ul a:hover {
  opacity: 0.75;
}
.l-header__nav ul li:last-child {
  margin-left: 4rem;
}
.l-header__nav ul li:last-child a {
  width: 3.3rem;
}

/* #main
----------------------------------------------------------------- */
.l-main {
  display: block;
  width: 100%;
  overflow: hidden;
}

/* #footer
----------------------------------------------------------------- */
.l-footer {
  padding: 150px 20px 40px;
}
@media screen and (max-width: 767px ) {
  .l-footer {
    padding: 80px 6.25vw 4.6875vw;
  }
}
.l-footer__inner {
  max-width: 1050px;
  width: 100%;
  margin: auto;
}
.l-footer__unit--underline {
  padding-bottom: 150px;
  margin-bottom: 100px;
  border-bottom: 1px solid #e2e2e2;
}
@media screen and (max-width: 767px ) {
  .l-footer__unit--underline {
    padding-bottom: 21.875vw;
    margin-bottom: 18.75vw;
  }
}
.l-footer__snsNav {
  width: 36.8rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px ) {
  .l-footer__snsNav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-footer__snsItem {
  display: block;
  height: auto;
  -webkit-transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.l-footer__snsItem:hover {
  opacity: 0.75;
}
.l-footer__snsItem--logo {
  width: 16.32rem;
}
@media screen and (max-width: 767px ) {
  .l-footer__snsItem--logo {
    width: 21.84em;
    margin-bottom: 18.75vw;
  }
}
.l-footer__snsItem--insta {
  width: 8.16rem;
}
@media screen and (max-width: 767px ) {
  .l-footer__snsItem--insta {
    width: 10.9rem;
  }
}
.l-footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
  width: 77rem;
  margin-inline: auto;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px ) {
  .l-footer__link {
    width: 100%;
  }
}
.l-footer__linkItem {
  position: relative;
  width: calc(50% - 1.5rem);
}
.l-footer__linkInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 11rem;
  background-color: #c78484;
}
@media screen and (max-width: 767px ) {
  .l-footer__linkInner {
    height: 14rem;
  }
}
.l-footer__linkImage {
  width: 3rem;
}
.l-footer__linkText {
  font-family: "Noto Serif JP", serif;
  margin-top: 0.8rem;
  color: #fff;
  font-style: italic;
  font-size: max(1.8rem, 10px);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px ) {
  .l-footer__linkText {
    margin-top: 1.4rem;
  }
}
.l-footer__linkText--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
}
@media screen and (max-width: 767px ) {
  .l-footer__linkText--row {
    margin-top: 0.8rem;
  }
}
.l-footer__linkText--row small {
  margin-right: 1.8rem;
  font-size: max(1.3rem, 10px);
  line-height: 1.2;
}
.l-footer__note {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .l-footer__note {
    font-size: 2rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
    text-align: justify;
    width: 100%;
  }
}
.l-footer__logo {
  margin-inline: auto;
}
.l-footer__logo--instagram {
  width: 6.4rem;
  margin-top: 8rem;
}
@media screen and (max-width: 767px ) {
  .l-footer__logo--instagram {
    width: 8rem;
    margin-top: 12rem;
  }
}
.l-footer__logo--corporate {
  width: 18rem;
  margin-top: 4.8rem;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px ) {
  .l-footer__logo--corporate {
    width: 24rem;
    margin-top: 8rem;
  }
}
.l-footer__copyright {
  margin-top: 4.8rem;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px ) {
  .l-footer__copyright {
    margin-top: 12rem;
    font-size: max(1.2rem, 10px);
  }
}

/* #sec2
----------------------------------------------------------------- */
.l-sec2 {
  background-color: #f8f3e7;
}

/* ==========================================================================
 #component
========================================================================== */
/* #credit
----------------------------------------------------------------- */
.c-credit {
  width: 39.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.5rem;
  font-family: "Noto Serif JP", serif;
  height: 2.5rem;
}
@media screen and (max-width: 767px ) {
  .c-credit {
    width: 54rem;
  }
}
@media screen and (max-width: 767px ) {
  .c-credit {
    margin-top: 4rem;
  }
}
.c-credit__info {
  width: 48.2233502538%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.5rem;
}
@media screen and (max-width: 767px ) {
  .c-credit__info {
    width: 55.5555555556%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.c-credit__name {
  width: 42.6315789474%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px ) {
  .c-credit__name {
    width: 56.6666666667%;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.0416666667;
    letter-spacing: 0em;
  }
}
.c-credit__price {
  width: 58.4210526316%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px ) {
  .c-credit__price {
    width: 59.2592592593%;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.0416666667;
    letter-spacing: 0em;
  }
}
.c-credit__price small {
  font-size: 1rem;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px ) {
  .c-credit__price small {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
  }
}
.c-credit__btns {
  width: 44.4162436548%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px ) {
  .c-credit__btns {
    width: 40.7407407407%;
  }
}
.c-credit__btn {
  background-color: #c78484;
  display: block;
  width: 100%;
  height: auto;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  text-align: center;
  border: 1px solid transparent;
}
@media screen and (max-width: 767px ) {
  .c-credit__btn {
    width: 100%;
    font-size: 2.5rem;
  }
}
.c-credit__btn--small {
  width: 47.7272727273%;
}
.c-credit__btn:hover {
  color: #c78484;
  background-color: #ffffff;
  border: 1px solid;
}

/* #js-detail-trigger
----------------------------------------------------------------- */
.js-credit-trigger {
  background-color: aqua;
  margin-top: 3.62rem;
  width: 57rem;
  height: 7.2rem;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #030000;
  text-align: center;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
@media screen and (max-width: 767px ) {
  .js-credit-trigger {
    width: 100%;
  }
}
.js-credit-trigger__image {
  margin: auto;
  width: 14.472rem;
}
.js-credit-trigger:after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-size: contain;
  background-image: url(../images/credit-open.png);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4%;
}
.js-credit-trigger.open:after {
  background-image: url(../images/credit-close.png);
}

@media screen and (max-width: 767px ) {
  .js-credit-target {
    display: none;
  }
}

/* #js-scrollEffect
----------------------------------------------------------------- */
.js-scrollEffect--fadeInUp {
  will-change: opacity, transform;
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  -webkit-transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-scrollEffect--fadeInUp.action {
  opacity: 1 !important;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.js-scrollEffect--fadeIn {
  will-change: opacity;
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.76, 0.05, 0.86, 0.06);
  transition: opacity 0.5s cubic-bezier(0.76, 0.05, 0.86, 0.06);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-scrollEffect--fadeInicon {
  will-change: opacity;
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.76, 0.05, 0.86, 0.06);
  transition: opacity 0.6s cubic-bezier(0.76, 0.05, 0.86, 0.06);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-scrollEffect--fadeIn.action {
  opacity: 1 !important;
}
.js-scrollEffect--slideIn {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  -webkit-transition: -webkit-clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.js-scrollEffect--slideIn.action {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

/* ==========================================================================
 #project
========================================================================== */
/* #mv
----------------------------------------------------------------- */
.p-mv {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-mv {
    position: relative;
    height: 109.5rem;
  }
}
.p-mv__bg {
  background-image: url(../images/mv-image.jpg);
  width: 100%;
  height: 64.8148148148vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px ) {
  .p-mv__bg {
    background-image: url(../images/mv-image-sp.jpg);
    height: 70rem;
    will-change: opacity;
  }
}
.p-mv__text {
  width: 81.4814814815vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-mv__text {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 70rem;
  }
}
.p-mv__textInner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  padding: 2.8rem 5rem 5.7rem 5rem;
}
@media screen and (max-width: 767px ) {
  .p-mv__textInner {
    width: 100%;
    padding: 3rem 0;
  }
}
.p-mv__title {
  margin: auto;
  width: 14rem;
}
@media screen and (max-width: 767px ) {
  .p-mv__title {
    width: 33.4rem;
  }
}
.p-mv__icon {
  margin-top: 1.8rem;
  width: 24.6rem;
}
@media screen and (max-width: 767px ) {
  .p-mv__icon {
    width: 56.9rem;
    margin: auto;
    padding-top: 1.8rem;
  }
}
.p-mv__titleSub {
  margin: auto;
  padding-top: 2rem;
  width: 20.7rem;
}
@media screen and (max-width: 767px ) {
  .p-mv__titleSub {
    width: 38.9rem;
    padding-top: 2.6rem;
  }
}
.p-mv__title2 {
  padding-top: 3.25rem;
  padding-bottom: 1rem;
  margin: auto;
  width: 21.5rem;
}
@media screen and (max-width: 767px ) {
  .p-mv__title2 {
    width: 40.2rem;
  }
}
.p-mv__bg {
  will-change: opacity;
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.p-mv__title, .p-mv__title2 {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  -webkit-transition: -webkit-clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.p-mv__titleSub {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  -webkit-transition: -webkit-clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.p-mv__icon {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  -webkit-transition: -webkit-clip-path 1s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-clip-path 1s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 1s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 1s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-clip-path 1s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.p-mv.loaded .p-mv__bg {
  opacity: 1 !important;
}
.p-mv.loaded .p-mv__title {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.p-mv.loaded .p-mv__title2 {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.p-mv.loaded .p-mv__titleSub {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.p-mv.loaded .p-mv__icon {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

/* #nav
----------------------------------------------------------------- */
.p-nav {
  width: 88rem;
  margin: auto;
}
@media screen and (max-width: 767px ) {
  .p-nav {
    width: 57rem;
  }
}
.p-nav__titleInner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-nav__titleIcon {
  width: 1.5rem;
}
.p-nav__titleText {
  margin-left: 2.4rem;
  text-align: center;
  font-family: "Cantata One", serif;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.75em;
}
@media screen and (max-width: 767px ) {
  .p-nav__titleText {
    margin-left: 1.6rem;
    font-size: 30px;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0.45em;
  }
}
.p-nav__container {
  margin-top: 3.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px ) {
  .p-nav__container {
    margin-top: 1.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-nav__containerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 88rem;
}
@media screen and (max-width: 767px ) {
  .p-nav__containerInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 57rem;
    margin-top: 3.9rem;
  }
}
.p-nav__textInner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-nav__inner {
  width: 41.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px ) {
  .p-nav__inner {
    width: 57rem;
  }
}
@media screen and (max-width: 767px ) {
  .p-nav__innerFlex:nth-of-type(2n) {
    margin-top: 4.8rem;
  }
}
.p-nav__line {
  width: 12.4rem;
}
@media screen and (max-width: 767px ) {
  .p-nav__line {
    width: 20.2rem;
  }
}
.p-nav__innerTitle {
  text-align: center;
  font-family: "Cantata One", serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px ) {
  .p-nav__innerTitle {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.3em;
  }
}
.p-nav__innerContent {
  width: 41.1rem;
  margin-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px ) {
  .p-nav__innerContent {
    width: 57rem;
  }
}
.p-nav__image {
  width: 12rem;
}
@media screen and (max-width: 767px ) {
  .p-nav__image {
    width: 18rem;
  }
}
.p-nav__text {
  text-align: center;
  margin-top: 1rem;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.1111111111;
  letter-spacing: 0.15em;
  font-family: "Cantata One", serif;
  color: #030000;
}
@media screen and (max-width: 767px ) {
  .p-nav__text {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 0.8695652174;
    letter-spacing: 0.15em;
  }
}
.p-nav__item--2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.p-nav__item--3 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.p-nav__item--4 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.p-nav__item--5 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.p-nav__item--6 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

/* #sec1
----------------------------------------------------------------- */
.p-sec1 {
  width: 88rem;
  margin: auto;
  padding: 3rem 0 6rem 0;
}
@media screen and (max-width: 767px ) {
  .p-sec1 {
    width: 57rem;
    padding: 3rem 0 9rem;
  }
}
.p-sec1__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px ) {
  .p-sec1__title {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.6071428571;
    letter-spacing: 0em;
  }
}
.p-sec1__text {
  text-align: center;
  margin-top: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px ) {
  .p-sec1__text {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 2.0454545455;
    letter-spacing: 0em;
  }
}

/* #check
----------------------------------------------------------------- */
.p-check {
  width: 88rem;
  margin: auto;
  margin-top: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px ) {
  .p-check {
    width: 57rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 47.7rem 0 10.6rem 0;
    position: relative;
  }
}
.p-check__image {
  width: 40rem;
}
@media screen and (max-width: 767px ) {
  .p-check__image {
    width: 48rem;
  }
}
.p-check__title {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 0.9615384615;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: #030000;
}
@media screen and (max-width: 767px ) {
  .p-check__title {
    margin: auto;
    width: 52rem;
    position: absolute;
    top: 10.6rem;
    text-align: center;
    font-size: 35px;
    font-size: 3.5rem;
    line-height: 1.4285714286;
    letter-spacing: -0.045em;
  }
}
.p-check__text {
  margin-top: 2.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2.0833333333;
  letter-spacing: 0em;
  font-weight: 500;
  color: #030000;
}
@media screen and (max-width: 767px ) {
  .p-check__text {
    margin-left: auto;
    margin-right: auto;
    width: 49rem;
    position: absolute;
    top: 22rem;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 2.0454545455;
    letter-spacing: 0em;
  }
}
.p-check__contentInner {
  margin-top: 3.9rem;
}
@media screen and (max-width: 767px ) {
  .p-check__contentInner {
    margin-top: 2.9rem;
  }
}
.p-check__innerTitle {
  font-family: "Cantata One", serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.3em;
  color: #c78484;
}
@media screen and (max-width: 767px ) {
  .p-check__innerTitle {
    font-size: 30px;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0.3em;
  }
}
.p-check__list {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px ) {
  .p-check__list {
    margin-top: 2.9rem;
  }
}
.p-check__innerImage {
  width: 2.1rem;
}
@media screen and (max-width: 767px ) {
  .p-check__innerImage {
    width: 2rem;
  }
}
.p-check__item {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #c78484;
  padding-bottom: 0.9rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3888888889;
  letter-spacing: 0em;
  font-weight: 700;
  color: #030000;
  padding-left: 3.8rem;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-check__item {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.1363636364;
    letter-spacing: 0em;
    margin-top: 2.8rem;
  }
}
.p-check__item:before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border: 2px solid #030000;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px ) {
  .p-check__item:before {
    border: 1px solid #030000;
  }
}
.p-check__item:after {
  content: "";
  display: block;
  width: 2rem;
  height: 3rem;
  position: absolute;
  left: 0.3rem;
  background-image: url(../images/icon-check.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px ) {
  .p-check__item:after {
    left: 0.2rem;
  }
}
.p-check__item {
  will-change: opacity, transform;
  opacity: 0;
  -webkit-transform: translateY(4rem);
          transform: translateY(4rem);
  -webkit-transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-check__item:after {
  will-change: opacity;
  opacity: 0;
  -webkit-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-check__list.action .p-check__item {
  opacity: 1 !important;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-check__list.action .p-check__item:nth-of-type(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.p-check__list.action .p-check__item:nth-of-type(2) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.p-check__list.action .p-check__item:nth-of-type(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.p-check__list.action .p-check__item:nth-of-type(4) {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}
.p-check__list.action .p-check__item:nth-of-type(5) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.p-check__list.action .p-check__item:after {
  opacity: 1 !important;
}
.p-check__list.action .p-check__item:nth-of-type(1):after {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.p-check__list.action .p-check__item:nth-of-type(2):after {
  -webkit-transition-delay: 1.45s;
          transition-delay: 1.45s;
}
.p-check__list.action .p-check__item:nth-of-type(3):after {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}
.p-check__list.action .p-check__item:nth-of-type(4):after {
  -webkit-transition-delay: 1.95s;
          transition-delay: 1.95s;
}
.p-check__list.action .p-check__item:nth-of-type(5):after {
  -webkit-transition-delay: 2.25s;
          transition-delay: 2.25s;
}

/* #blockmain
----------------------------------------------------------------- */
.p-blockMain {
  padding: 8rem 0;
  background-color: #e0d3c7;
}
@media screen and (max-width: 767px ) {
  .p-blockMain {
    padding: 10rem 0;
  }
}
.p-blockMain--bgyellow {
  background-color: #f8f3e7;
}
.p-blockMain__taperedTitle {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 50px;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0.45em;
  font-weight: 500;
  color: #030000;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__taperedTitle {
    font-size: 50px;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: 0.24em;
  }
}
.p-blockMain__taperedSubtitle {
  text-align: center;
  margin-top: 2.3rem;
  font-family: "Cantata One", serif;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.3em;
  color: #030000;
}
.p-blockMain__taperedImage {
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__taperedImage {
    display: none;
  }
}
.p-blockMain__flexContent {
  margin: auto;
}
.p-blockMain__flex {
  margin: auto;
  width: 88rem;
  padding-top: 14rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__flex {
    width: 57rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px ) {
  .p-blockMain__flex--3 {
    position: relative;
    width: 100vw;
  }
}
.p-blockMain__flex--4 {
  margin-top: 3rem;
  padding-top: 0;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__flex--4 {
    width: 100vw;
  }
}
.p-blockMain__flex--5 {
  padding-top: 7.6rem;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__flex--5 {
    padding-top: 3.5rem;
  }
}
.p-blockMain__flex--6 {
  position: relative;
  margin-top: 14rem;
  padding-top: 0;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__flex--6 {
    width: 100vw;
    padding-top: 0;
  }
}
.p-blockMain__flex:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__flex:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-blockMain__flexRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.p-blockMain__image {
  width: 45rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__image {
    width: 54rem;
    margin: auto;
  }
}
@media screen and (max-width: 767px ) {
  .p-blockMain__image--style3 {
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px ) {
  .p-blockMain__image--style4 {
    margin-right: 0;
    margin-left: auto;
  }
}
.p-blockMain__image--style5 {
  width: 100vw;
  height: auto;
}
.p-blockMain__imageSub {
  position: relative;
}
.p-blockMain__imageSub--style3 {
  margin-top: 12.5rem;
  margin-right: -2rem;
  z-index: 0;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__imageSub--style3 {
    width: 54rem;
    position: absolute;
    margin-top: -20rem;
    margin-left: 0;
    margin-right: auto;
  }
}
.p-blockMain__imageSub--style4 {
  margin: auto;
  padding-top: 7.2rem;
  width: 55rem;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__imageSub--style4 {
    position: absolute;
    top: 77rem;
    margin-left: 0;
    margin-right: auto;
  }
}
.p-blockMain__imageSub--style5 {
  margin-top: 9.7rem;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__imageSub--style5 {
    margin-top: 16rem;
  }
}
.p-blockMain__imageSub--style602 {
  margin-top: 4.8rem;
  width: 60rem;
  z-index: 1;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__imageSub--style602 {
    width: 70%;
  }
}
.p-blockMain__imageSub--style603 {
  margin-top: 9.5rem;
  width: 32rem;
  margin-left: -2.6rem;
  z-index: 0;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__imageSub--style603 {
    width: 40%;
  }
}
.p-blockMain__icon {
  position: absolute;
}
.p-blockMain__icon--1 {
  top: -1rem;
  left: -3rem;
  width: 20rem;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__icon--1 {
    width: 19.4rem;
  }
}
.p-blockMain__icon--2 {
  top: -1rem;
  right: 1.6rem;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__icon--2 {
    width: 16.8rem;
  }
}
.p-blockMain__icon--3 {
  top: 1rem;
  left: -3rem;
  width: 28.6rem;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__icon--3 {
    margin-top: 35rem;
    left: auto;
    width: 31rem;
    margin-right: -8rem;
  }
}
@media screen and (max-width: 767px ) {
  .p-blockMain__icon--3 {
    width: 31rem;
    top: 5rem;
    right: 0;
  }
}
.p-blockMain__icon--4 {
  top: 1rem;
  left: -3rem;
  width: 16.3rem;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__icon--4 {
    width: 20.1rem;
  }
}
.p-blockMain__icon--5 {
  top: -5rem;
  left: -3rem;
  width: 28.6rem;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__icon--5 {
    width: 34.8rem;
  }
}
.p-blockMain__icon--6 {
  top: 55rem;
  right: -4rem;
  width: 46rem;
  z-index: 200;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__icon--6 {
    top: 68rem;
    right: -4rem;
    width: 52rem;
  }
}
.p-blockMain__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__content {
    width: 54rem;
    margin: auto;
    padding-top: 8rem;
  }
}
@media screen and (max-width: 767px ) {
  .p-blockMain__content--style3 {
    width: 100%;
  }
}
@media screen and (max-width: 767px ) {
  .p-blockMain__content--style6 {
    padding-top: 60rem;
  }
}
.p-blockMain__textContent {
  padding-left: 3.3rem;
  border-left: 2px solid #030000;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__textContent--style3 {
    width: 54rem;
    margin-right: auto;
    margin-left: auto;
    margin-top: 69rem;
  }
}
@media screen and (max-width: 767px ) {
  .p-blockMain__textContent--style4 {
    margin-top: 40rem;
  }
}
.p-blockMain__title {
  font-family: "Cantata One", serif;
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.3em;
  color: #030000;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__title {
    font-size: 50px;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: 0.3em;
  }
}
.p-blockMain__subTitle {
  margin-top: 1.9rem;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0em;
  color: #030000;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__subTitle {
    margin-top: 3.2rem;
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
  }
}
.p-blockMain__text {
  margin-top: 1.9rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2.0833333333;
  letter-spacing: 0em;
  font-weight: 500;
  color: #030000;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__text {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 2.1818181818;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px ) {
  .p-blockMain__block--style4 {
    position: relative;
  }
}
.p-blockMain__blockImagebox {
  width: 88rem;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__blockImagebox {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100vw;
    position: absolute;
    top: 82rem;
  }
}
@media screen and (max-width: 767px ) {
  .p-blockMain__credit {
    margin-top: 8em;
  }
}
.p-blockMain__credit--style3 {
  margin-top: 9.9rem;
}
@media screen and (max-width: 767px ) {
  .p-blockMain__credit--style3 {
    width: 54rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-blockMain__icon {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  -webkit-transition: -webkit-clip-path 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-clip-path 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: clip-path 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: clip-path 1s cubic-bezier(0.86, 0, 0.07, 1), -webkit-clip-path 1s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.p-blockMain__icon.action {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

/* #end
----------------------------------------------------------------- */
.p-end {
  width: 100%;
  margin-top: 13.6rem;
}
.p-end__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2.7rem;
  width: 35.5rem;
  height: 5.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  background-color: #c78484;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.12em;
  font-weight: 700;
  position: relative;
  top: 50%;
  color: #ffffff;
  -webkit-transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-end__link:hover {
  opacity: 0.75;
}
.p-end__link:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2rem;
  content: "";
  display: block;
  width: 8.4rem;
  height: 0.97rem;
  background: url(../images/icon-arrow.svg) no-repeat center center/contain;
}
.p-end__staff {
  margin-top: 9.4rem;
}
.p-end__staffInner {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2.0833333333;
  letter-spacing: 0em;
}

/* #side
----------------------------------------------------------------- */
.p-side__gotop {
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 100;
  display: none;
  width: 6rem;
  height: auto;
  z-index: 1000;
}
@media screen and (max-width: 767px ) {
  .p-side__gotop {
    right: 0;
  }
}
.p-side__nav {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}
.p-side__list {
  display: none;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-side__item {
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-side__item {
    width: 5rem;
  }
}

/* ==========================================================================
 #utility
========================================================================== */
/* #img
----------------------------------------------------------------- */
.u-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: text-bottom;
}

.u-imgLink {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.u-imgLink:hover {
  opacity: 0.75;
}

/* #pcsp
----------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .u-pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-spNone {
    display: none !important;
  }
}