@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');

/* MediaQuery = SP => Tablet(600px) => PC(1024px) */
/* 1em = 1vw */

/* -------------------------
  root設定
------------------------- */
:root {
  font-size: 62.5%;

  /* カラー変数 */
  --color_main:           hsl(0, 0%, 100%);
  --color_base:           hsl(0, 0%, 100%);
  --color_baseRGB:        255, 255, 255;
  --color_baseHalf:       rgb(194, 26, 0);
  --color_baseHalfRGB:    194, 26, 0;
  --color_baseDark:       rgb(163, 22, 0);
  --color_baseDarkRGB:    163, 22, 0;
  --color_accent:         #C09A5E;
  --color_accentRGB:      192, 154, 94;
  --color_accentDark:     #996515;
  --color_accentDarkRGB:  153, 101, 21;
  --color_links:          #039be5;
  --color_text:           hsl(0, 0%, 0%);

  /* フォントファミリー変数 */
  --font_family_ENG: "Inter", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  --font_weight_ENG: 700;
  
  /* border-radius変数 */
  --radius_xs:   3px;
  --radius_sm:   6px;
  --radius_md:   8px;
  --radius_lg:  12px;
  --radius_xl:  24px;

  /* line-height変数 */
  --line_height_sm:  1.3;
  --line_height_md:  1.5;
  --line_height_lg:  1.7;
  --line_height_xl:  2.0;
  --line_height_2xl: 2.2;

  /* サイズ変数 */
  --header_height: 50px;
  --contents__maxWidth: 100%;

 /* フォントサイズ変数 */
  --font_size_xs:   1.3vw;
  --font_size_sm:   1.4vw;
  --font_size_md:   1.6vw;
  --font_size_lg:   2.0vw;
  --font_size_xl:   2.4vw;
  --font_size_2xl:  3.0vw;
  --font_size_3xl:  3.8vw;
  --font_size_4xl:  5.2vw;
}

/* タブレット変数 */
@media (min-width: 600px) {
  :root {
    font-size: 72.5%;

    /* サイズ変数 */
    --header_height: 50px;
  }
}

/* PC変数 */
@media (min-width: 1024px) {
  :root {
    font-size: 72.5%;

    /* サイズ変数 */
    --header_height: 70px;
    --contents__maxWidth: 600px;
  }
}


/* -------------------------
  デバイス判定
------------------------- */
@media (max-width: 599px) {
  .pc {
    display: none !important;
  }
  .tablet:not(.sp) {
    display: none !important;
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  .tablet ~ .pc:not(.tablet) {
    display: none !important;
  }
  .sp:not(.tablet) {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .sp {
    display: none !important;
  }
  .tablet:not(.pc) {
    display: none !important;
  }
}
/* デバイスが縦長の向き */
@media (orientation: portrait) {
  .landscape {
    display: none !important;
  }
}
/* デバイスが横長の向き */
@media (orientation: landscape) {
  .portrait {
    display: none !important;
  }
}


/* -------------------------
  html body
------------------------- */
html {
  touch-action: manipulation;
  background-color: var(--color_base);
  overscroll-behavior: none;
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Sans JP', "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1vw;
  font-weight: normal;
  line-height: var(--line_height_md);
  background: var(--color_base);
  color: var(--color_text);
  text-align: left;
  font-feature-settings: "palt";
  background-color: var(--color_base);
}
@media (min-width: 600px) {
  body {
    font-size: calc(1vw * 0.8);
  }
}
@media (min-width: 1024px) {
  body {
    /* font-size: calc(var(--contents__maxWidth) * 0.01); */
    font-size: calc(var(--contents__maxWidth) * 0.008);
  }
}
body * {
  letter-spacing: 0.1em;
}


/* -------------------------
  ローディング中の画面
------------------------- */
.loading__mask {
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  width:  100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  user-select: none;
  text-align: center;
  background: var(--color_base);
  clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 50%, 100% 50%, 100% 50%, 0 50%, 0 100%, 100% 100%, 100% 0%);
  transition: clip-path 0.75s, opacity 0s 0.75s;
  will-change: clip-path;
}
body.loaded .loading__mask {
  clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0%, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
  opacity: 0;
}

.loading__progress {
  --progress_percent: 0%;
  --bar_height: 4px;
  color: var(--color_text);
  position: absolute;
  top: 0;
  left: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 70%;
  height: auto;
  max-width: 300px;
  pointer-events: none;
}
.loading__progressText {
  position: absolute;
  top: -1.3em;
  left: 0;
  width: 100%;
  font-size: 12px;
  height: 1em;
  line-height: 1;
}
.loading__progressText::before,
.loading__progressText::after {
  content: '';
  color: currentColor;
  font-family: system-ui;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.loading__progressText::before {
  content: 'LOADING...';
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  animation: loadingText 0.75s infinite linear;
}
@keyframes loadingText {
  0%   {content: 'LOADING   ';}
  25%  {content: 'LOADING.  ';}
  50%  {content: 'LOADING.. ';}
  75%  {content: 'LOADING...';}
  100% {content: 'LOADING   ';}
}

.loading__progressText::after {
  content: attr(data-progress);
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
}

.loading__progressBar {
  width: 100%;
  height: var(--bar_height);
  background-color: hsla(0, 0%, 0%, 0.1);
  border-radius: var(--bar_height);
  overflow: hidden;
}
.loading__progressBarFill {
  border-radius: var(--bar_height);
  height: 100%;
  width: var(--progress_percent);
  background-color: hsla(0, 0%, 0%, 1);
  transition: width 0.2s ease-in-out;
}


/* -------------------------
  common
------------------------- */
*:focus {
  outline: none;
}
img {
  display: block;
  /* Microsoft Edgeで画像検索無効に */
  pointer-events: none;
}
span.br {
  display: inline-block;
}
::selection {
  /* background-color: yellow; */
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.1em;
  line-height: var(--line_height_sm);
}
/* @media (any-hover: hover) {
  a[href] {
    transition: opacity 0.1s;
  }
  a[href]:hover {
    transition: opacity 0.2s;
    opacity: 0.5;
  }
} */
a[href] {
  transition: opacity 0.15s, scale 0.15s;
}
@media (any-hover: hover) {
  a[href]:hover {
    opacity: 0.7;
    transition: opacity 0.1s, scale 0.1s;
  }
}
a[href]:active {
  opacity: 0.7;
  transition: opacity 0.1s, scale 0.1s;
}

p>a[href^="http"] {
  color: var(--color_links);
}
p>a[href^="http"][target="_blank"] {
  position: relative;
  margin-left:  0.2em;
  margin-right: 0.2em;
}
p>a[href^="http"][target="_blank"]::after {
  content: "";
  position: relative;
  display: inline-block;
  width:  1em;
  height: 1em;
  aspect-ratio: 1 / 1;
  transform: translate(0, 15%);
  -webkit-mask: url(../img/icon__externaLlink.svg) center / contain no-repeat;
  mask: url(../img/icon__externaLlink.svg) center / contain no-repeat;
  background-color: var(--color_links);
}

.inner {
  padding-left:   8%;
  padding-right:  8%;
  padding-top:    12em;
  padding-bottom: 12em;
}
.sectionSpace {
  width: 100%;
  position: relative;
  padding-bottom: 12em;
}
.sectionBorder {
  display: none;
}
@media (min-width: 1024px) {
  .sectionBorder {
    display: block;
    position: relative;
    width: 84%;
    margin: auto;
    opacity: 0.15;
    padding-bottom: 6em;
    border-top-width: 2px;
    border-radius: 2px;
  }
}


.title__wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 5.34em;
}
.title__wrap p {
  font-size: 3.46em;
  font-weight: bold;
  line-height: var(--line_height_md);
}
.title__wrap h3 {
  font-size: 7.47em;
  font-weight: bold;
  line-height: var(--line_height_md);
}

/* -------------------------
  header
------------------------- */
header {
  position: absolute;
  top:  5.34em;
  left: 8%;
  z-index: 10;
  width: 32em;
}
@media (min-width: 1024px) {
  header {
    /* position: fixed; */
    left: calc(var(--variableSize__calc) + var(--contents__maxWidth) * 0.08);
  }
}
.header__logo {
  /* filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.25)); */
  width: 32em;
  display: block;
}
.header__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* -------------------------
  container
------------------------- */
.container__parallax {
  position: fixed;
  display: block;
  top:  0;
  left: 0;
  width:  100%;
  height: 100%;
  height: 100vh;
  height: 100lvh;
  max-height: 180vw;
}
.container__parallax img {
  width:  100%;
  /* width:  115%; */
  /* margin-left: -15%; */
  height: 100%;
  max-height: 180vw;
  object-fit: cover;
  object-position: center top;
}
@media (min-width: 1024px) {
  .container__parallax img {
    object-position: right 25%;
  }
}
.container__parallax::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 30vw;
  top: calc(180vw - 30vw);
  left: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.parallax__overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.parallax__overlay.aos-init.aos-animate {
  opacity: 1;
}
@media (min-width: 1024px) {
  .parallax__overlay.aos-init {
    transition: opacity 0.6s;
  }
  .parallax__overlay.aos-init.aos-animate {
    transition: opacity 0.6s;
  }
}

.container__main {
  display: contents;
}

@media (min-width: 1024px) {
  :root {
    /* バリアブルサイズ計算変数（画面幅に比例して上昇する数値） */
    --variableSize__minWindow:  1024; /* 想定する最小画面幅 */
    --variableSize__maxWindow:  1920; /* 想定する最大画面幅 */
    --variableSize__minSize:       0; /* 最小画面幅時の目標サイズ */
    --variableSize__maxSize:     200; /* 最大画面幅時の目標サイズ */
    --variableSize__calc: ((var(--variableSize__minSize) * 1px) + (var(--variableSize__maxSize) - var(--variableSize__minSize)) * (100vw - (var(--variableSize__minWindow) * 1px))/(var(--variableSize__maxWindow) - var(--variableSize__minWindow)));
  }
  .container__parallax::before {
    content: "";
    position: absolute;
    width: 40%;
    height: 100%;
    top:   0;
    left: 0;
    background-image: linear-gradient(-90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    z-index: 1;
  }
  .container__parallax {
    width: calc(100% - var(--contents__maxWidth));
    width: calc(100% - var(--contents__maxWidth) - var(--variableSize__calc) + 8%);
    width: calc(100% - var(--contents__maxWidth) - var(--variableSize__calc));
    width: calc(100% - (var(--contents__maxWidth) + var(--variableSize__calc)) + 16%);
    margin-left: calc(var(--contents__maxWidth) + var(--variableSize__calc)    - 16%);
  }
  .container__main,.footer__inner,.fixed__btnWrap {
    display: block;
    width: var(--contents__maxWidth);
    margin-left: calc(100% - var(--contents__maxWidth) - 8%);
    margin-left: calc(100% - var(--contents__maxWidth) - var(--variableSize__calc));
    margin-left: calc(var(--variableSize__calc));
  }
}

/* ローディング明けモーション */
body .container__parallax {
  overflow: hidden;
}
body .container__parallax img {
  filter: blur(2vw);
  scale: 1.15;
  transition: filter 1.5s, scale 3.0s;
}
body.loaded .container__parallax img {
  filter: blur(0);
  scale: 1;
}


/* -------------------------
  main
------------------------- */
main {
  
}


/* -------------------------
  hero
------------------------- */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url("../img/hero__gradation.png") bottom left / contain no-repeat;
  opacity: 0.92;
}
.hero h1 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
.hero h1 img {
  width: 100%;
}
@media (min-width: 1024px) {
  .hero::before {
    content: none;
  }
}

main section:not(.hero) {
  position: relative;
  width: 100%;
  background-color: hsla(0, 0%, 100%, 0.92);
}
@media (min-width: 1024px) {
  main section:not(.hero) {
    background-color: hsla(0, 0%, 100%, 0);
  }
}

/* btn__apply
------------------------- */
.btn__apply {
  display: block;
  width: auto;
  background-color: #fff;
  outline: solid 2px #000;
  outline-offset: -2px;
  border-radius: 12em;
}
.btn__apply img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero .btn__apply {
  position: absolute;
  bottom: 11.34em;
  left: 8%;
  /* height: 12em; */
  width: 66.67%;
  height: auto;
}
@media (min-width: 1024px) {
  .hero .btn__apply {
    max-width: 360px;
  }
}

a.btn__apply {
  position: relative;
  overflow: hidden;
  transition: scale 0.15s, background-color 0.15s;
}
a.btn__apply img {
  transition: filter 0.15s, scale 0.15s;
}
a.btn__apply::before {
  content: "";
  position: absolute;
  top:  50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transform-origin: top left;
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  border-radius: 50%;
  background-color: #000;
  opacity: 0;
  scale: 0 0.25;
  transition: all 0.15s ease, scale 0s 0.15s;
}
@media (any-hover: hover) {
  a.btn__apply:hover {
    opacity: 1 ;
    /* background-color: hsl(60, 85%, 85%); */
    transition: scale 0.1s, background-color 0.3s;
  }
  a.btn__apply:hover img {
    filter: invert(100%);
    scale: 1.04;
    transition: filter 0.3s, scale 0.3s;
  }
  a.btn__apply:hover::before {
    opacity: 1;
    scale: 1;
    transition: scale 0.3s ease;
  }
}
a.btn__apply:active {
  opacity: 1;
  scale: 0.95;
  /* background-color: hsl(60, 75%, 75%); */
  transition: scale 0.1s, background-color 0.1s;
}

/* scrolldown
------------------------- */
.scrolldown {
  position: absolute;
  bottom: 11.34em;
  right:  8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.34em;
  opacity: 0.3;
}
.scrolldown__text {
  font-size: 2.67em;
  writing-mode: vertical-rl;
  line-height: 1;
  font-family: var(--font_family_ENG);
  font-weight: 600;
}
.scrolldown__line {
  --scrolldown_line_height: 20em;
  width: 1px;
  height: var(--scrolldown_line_height);
  display: block;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 50%);
  background-position: 0 calc(var(--scrolldown_line_height) * -1);
  background-size: 100% 200%;
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}
@keyframes scrolldown {
  0% {
    background-position: 0 calc(var(--scrolldown_line_height) * -1);
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 var(--scrolldown_line_height);
  }
}

/* -------------------------
  introduction
------------------------- */
.introduction {
  
}
.introduction .inner {
  display: flex;
  flex-direction: column;
  gap: 9.34em;
}
.introduction h2 {
  font-size: 5.34em;
  font-weight: bold;
  line-height: var(--line_height_xl);
}
.introduction p {
  font-size: 3.46em;
  line-height: var(--line_height_2xl);
  opacity: 0.7;
  text-align: justify;
}


/* -------------------------
  gravure
------------------------- */
.gravure {

}
.gravure__gallery {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 1.34em;
}
@media (min-width: 600px) {
  .gravure__gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.gravure__gallery a {
  width: 100%;
  height: auto;
}
.gravure__gallery a img {
  width: 100%;
  height: auto;
}
a.photoswipeItem {
  position: relative;
}
a.photoswipeItem::after {
  content: "";
  position: absolute;
  right:  0px;
  bottom: 0px;
  width:  20px;
  height: 20px;
  background: url(../img/icon__plus.svg) center / contain no-repeat,hsla(0, 0%, 0%, 0.5);
  z-index: 10;
}


/* -------------------------
  profile
------------------------- */
.profile__detail p {
  font-size: 3.46em;
  text-align: justify;
  line-height: var(--line_height_xl);
}
.profile__sns {
  margin-top: 5.34em;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}
.profile__sns a {
  width:  44px;
  height: 44px;
  padding: 12px;
  border-radius: 22px;
  background: hsla(0, 0%, 0%, 0.85);
}
.profile__sns a img {
  width:  100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}
.profile__sns p {
  font-family: var(--font_family_ENG);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: hsla(0, 0%, 0%, 1);
  letter-spacing: 0.2em;
  margin: 0 5px;
}
.profile__pr {
  margin-top: 5.34em;
  background-color: hsl(0, 0%, 90%);
  width: fit-content;
}
.profile__pr p {
  font-size: 3.46em;
  padding: 0.5em 1em;
  line-height: var(--line_height_lg);
  color: hsl(0, 0%, 30%);
}


/* -------------------------
  movie
------------------------- */
.movie {

}

.iframeClickable__wrap {
  position: relative;
  width:  100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background-color: #000;
  /* width: 160%; */
  /* scale: 0.625; */
  /* transform-origin: top left; */
}
@media (min-width: 600px) {
  .iframeClickable__wrap {
    width: 100%;
    scale: 1;
  }
}
.iframeClickable__wrap iframe {
  background-color: #000;
  width:  100%;
  height: 100%;
}
.iframeClickable__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.iframeClickable__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iframeClickable__thumb::after {
  content: "";
  position: absolute;
  top:  50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width:  34%;
  height: 34%;
  max-width:  80px;
  max-height: 80px;
  opacity: 0.9;
  background: url(../img/iframeClickable__thumbIcon.svg) no-repeat center / contain;
  transition: scale 0.3s;
  transform-origin: top left;
}
.iframeClickable__thumb::before {
  content: "";
  position: absolute;
  top:  0;
  left: 0;
  width:  100%;
  height: 100%;
  opacity: 0.25;
  background: #000;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .iframeClickable__thumb:hover::after {
    scale: 1.1;
  }
  .iframeClickable__thumb:hover::before {
    opacity: 0;
  }
}
.iframeClickable__thumb:active::before {
  opacity: 0;
}



/* -------------------------
  photobook
------------------------- */
.photobook__item {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4em;
}
.photobook__cover {
  width: 100%;
}
.photobook__cover a {
  width: 100%;
  display: block;
}
.photobook__cover a img {
  width: 100%;
}
.photobook__detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.photobook__detailPrefix {
  font-size: 3.2em;
  font-weight: bold;
  opacity: 0.4;
}
.photobook__detailTitle {
  font-size: 4.8em;
  font-weight: bold;
}
.photobook__detailPrice {
  font-size: 4em;
  font-weight: bold;
  opacity: 0.4;
  margin-top:    0.5em;
  margin-bottom: 0.5em;
  letter-spacing: 0.005em;
}
.photobook__detailPrice .yen {
  font-size: 0.9em;
}
.photobook__detailPrice small {
  font-size: 0.7em;
}
.photobook__detailLinks {
  display: flex;
  flex-direction: column;
  gap: 1.6em;
  margin-top: 2.67em;
  width: fit-content;
}
.photobook__detailLinks a,
.photobook__detailLinks form {
  display: block;
}
.photobook__detailLinks button {
  background-color: hsla(0, 0%, 0%, 0.85);
  color: #fff;
  padding: 2.4em 5.33em;
  border-radius: 10em;
  width: 100%;
  transition: 0.15s;
}
.photobook__detailLinks button p {
  font-size: 3.2em;
  font-weight: bold;
}
@media (any-hover: hover) {
  .photobook__detailLinks a:hover {
    opacity: 1;
  }
  .photobook__detailLinks button:hover {
    opacity: 0.7;
  }
}


/* -------------------------
  event
------------------------- */
.event__detail p {
  font-size: 4.27em;
  text-align: justify;
  line-height: var(--line_height_lg);
  font-weight: bold;
}


/* -------------------------
  flow
------------------------- */
main section.flow {
  background-color: hsl(0, 0%, 90%);
}
main section.flow .inner {
  padding-bottom: 16em;
}
@media (min-width: 1024px) {
  main section.flow {
    background-color: transparent;
  }
}
.flow h3 {
  font-size: 7.46em;
  font-weight: bold;
  line-height: var(--line_height_md);
}
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 5.34em;
  margin-top: 5.34em;
}
.flow__listItem {
  display: grid;
  grid-template-columns: 8em 1fr;
}
.flow__listItemNumber {
  font-size: 5.87em;
  font-family: var(--font_family_ENG);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}
.flow__listItem p:not([class]) {
  font-size: 3.46em;
  font-weight: bold;
  line-height: var(--line_height_xl);
  text-align: justify;
}

/* cheki
------------------------- */
.cheki__wrap {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2em 1.5em;
  pointer-events: none;
  user-select: none;
}
.cheki__wrap::after {
  content: "SAMPLE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font_family_ENG);
  font-weight: 600;
  font-size: 20em;
  color: hsl(0, 0%, 50%);
  opacity: 0.5;
  rotate: -20deg;
  transform-origin: top left;
  mix-blend-mode: difference;
}
.cheki__item {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.05));
  pointer-events: none;
  user-select: none;
  border-radius: 0.5em;
}
@media (min-width: 1024px) {
  .cheki__item {
    filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.1));
  }
}
.cheki__wrap + p {
  font-size: 1.1rem;
  text-align: justify;
  line-height: var(--line_height_lg);
  opacity: 0.5;
  margin-top: 1em;
}


/* -------------------------
  caution
------------------------- */
main section.caution {
  background-color: hsl(0, 0%, 80%);
}
main section.caution .inner {
  padding-bottom: 16em;
}
@media (min-width: 1024px) {
  main section.caution {
    background-color: transparent;
  }
  main section.caution .inner {
    padding-top: 6em;
  }
}
.caution h3 {
 font-size: 5.34em;
 font-weight: bold;
 line-height: var(--line_height_md);
 opacity: 0.5;
}
.caution ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 5.34em;
  opacity: 0.5;
}
.caution ul li {
  font-size: 1.1rem;
  text-align: justify;
  line-height: var(--line_height_lg);
}


/* -------------------------
  footer
------------------------- */
footer {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100%;
  min-height: 100vh;
  min-height: 100lvh;
  /* background: hsla(0, 0%, 0%, 0.4); */
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  color: #fff;
  display: flex;
  flex-direction: column;
}
.footer__inner {
  margin-top: auto;
  width: var(--contents__maxWidth);
  padding-top: 32em;
  padding-bottom: calc(70px + 8em);
}
@media (min-width:1024px){
  .footer__inner {
    padding-bottom: calc(90px + 8em);
  }
}
.footer__inner .inner {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2.67em;
}
.footer__title {
  display: block;
  width: 53.4em;
  /* margin-bottom: 10.73em; */
  margin-bottom: 2.67em;
}
.footer__border {
  border-bottom: 2px;
  width: 75%;
  opacity: 0.5;
  margin-top:    5.34em;
  margin-bottom: 5.34em;
}
.footer__logo {
  display: block;
  width: 48em;
  margin-bottom: 2.67em;
}
.footer__notice {
  font-size: 1.0rem;
  opacity: 0.8;
  line-height: var(--line_height_xl);
}
.footer__copyright {
  font-size: 1.0rem;
  opacity: 0.8;
  line-height: var(--line_height_xl);
}


/* -------------------------
  pagetop
------------------------- */
.fixed__btnWrap {
  position: fixed;
  bottom: 20px;
  left:   8%;
  right:  8%;
  width: auto;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom 0.3s;
  pointer-events: none;
}
@media (min-width:1024px){
  .fixed__btnWrap {
    bottom: 20px;
    left:  auto;
    right: auto;
    width: var(--contents__maxWidth);
    padding: 0 calc(var(--contents__maxWidth) * 0.08);
  }
}
.fixed__btnWrap > * {
  pointer-events: all;
}
.fixed__btnWrap.aos-init:not(.aos-animate) {
  bottom: -50px;
}
.fixed__btnWrap .btn__pageTop {
  width: 50px;
  height: 50px;
  line-height: 1;
  text-align: right;
  background: rgba(0,0,0,1);
  border-radius: 25px;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed__btnWrap .btn__pageTop img {
  margin-top: 2px;
}
@media (any-hover: hover) {
  .fixed__btnWrap .btn__pageTop:hover {
    background: rgba(0,0,0,0.75);
  }
}
.fixed__btnWrap .btn__pageTop:active {
  background: rgba(0,0,0,1);
}

.fixed__btnWrap .btn__apply {
  height: 50px;
  width: auto;
  max-width: calc(100% - 60px);
}
@media (min-width:600px){
  .fixed__btnWrap.aos-init:not(.aos-animate) {
  bottom: -60px;
  }
  .fixed__btnWrap .btn__apply {
    height: 60px;
  }
}
@media (min-width:1024px){
  .fixed__btnWrap.aos-init:not(.aos-animate) {
    bottom: -60px;
    }
    .fixed__btnWrap .btn__apply {
    height: 60px;
  }
}

/* -------------------------
  AOS animation
------------------------- */
.aos-init {
}
.aos-init.aos-animate {
}

