@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lilita+One&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oranienbaum&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rochester&family=Shippori+Mincho&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://use.typekit.net/puv5inx.css");
@font-face {
  font-family: "Optima";
  font-style: normal;
  font-weight: normal;
  src: local("Optima"), url("OPTIMA.woff") format("woff");
}
@media screen and (max-width: 743px) {
  .sp_hidden {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
}

main {
  overflow: hidden;
}

a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

body,
h2,
h3,
h4,
p,
span,
a {
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  color: #000;
}

a:hover {
  opacity: 0.8;
  transition-duration: 0.8s;
}

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

.image_wrap {
  width: 100%;
}

.swiper {
  width: 100%;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.active {
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInOnTheSpot {
  opacity: 0;
  animation: fadeIn 1s forwards;
  overflow: hidden;
}

.fadeInImgT {
  opacity: 0;
}
.fadeInImgT.active {
  animation-name: fadeInImgFromTop;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fadeInImgFromTop {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
.fadeInImgTOnTheSpot {
  opacity: 0;
  animation-name: fadeInImgFromTop;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.fadeInImgB {
  opacity: 0;
}
.fadeInImgB.active {
  animation-name: fadeInImgFromBottom;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fadeInImgFromBottom {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
.fadeInImgBOnTheSpot {
  opacity: 0;
  animation-name: fadeInImgFromBottom;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.fadeInImgL {
  opacity: 0;
}
.fadeInImgL.active {
  animation-name: fadeInImgFromLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fadeInImgFromLeft {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
.fadeInImgLOnTheSpot {
  opacity: 0;
  animation-name: fadeInImgFromLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.fadeInImgR {
  opacity: 0;
}
.fadeInImgR.active {
  animation-name: fadeInImgFromRight;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fadeInImgFromRight {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
.fadeInImgROnTheSpot {
  opacity: 0;
  animation-name: fadeInImgFromRight;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.fadeUp {
  opacity: 0;
}
.fadeUp.active {
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpOnTheSpot {
  opacity: 0;
  animation: fadeUp 1s forwards;
}

.shrink {
  width: 100%;
  overflow: hidden;
  animation-name: shrink;
  animation-duration: 3s;
}

.shrinkAccordingToScroll {
  width: 100%;
  overflow: hidden;
}
.shrinkAccordingToScroll.active img {
  animation-name: shrink;
  animation-duration: 3s;
}

@keyframes shrink {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.shrinkOnTheSpot {
  width: 100%;
  overflow: hidden;
  animation-name: shrinkOnTheSpot;
  animation-duration: 3s;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes shrinkOnTheSpot {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.floating {
  opacity: 0;
}
.floating.active {
  opacity: 1;
  animation: floating-y 1s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.pop-up {
  opacity: 0;
}
.pop-up.active {
  animation: popup 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.popUpOnTheSpot {
  opacity: 0;
  animation: popup 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(10px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
.main_visual {
  position: relative;
  width: 100%;
  margin-bottom: 13.86666vw;
}
.main_visual .logo_wrap {
  z-index: 9999;
  position: absolute;
  top: 5.335vw;
  left: 5.335vw;
  max-width: 21.068vw;
  width: 100%;
}
.main_visual .swiper::after {
  content: "";
  z-index: 8888;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65.335vw;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000 200%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), #000 200%);
}
.main_visual .image_wrap {
  display: none;
}
.main_visual .image_wrap::after {
  content: "";
  z-index: 8888;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 29.942vw;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000 200%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), #000 200%);
}
.main_visual .image_wrap img {
  max-width: 33.3333333333%;
}
.main_visual .image_wrap img.first.fadeInImgTOnTheSpot {
  animation-delay: 0.2s;
}
.main_visual .image_wrap img.third.fadeInImgTOnTheSpot {
  animation-delay: 0.2s;
}
.main_visual .title_wrap {
  z-index: 9999;
  position: absolute;
  bottom: 10.93333vw;
  right: 0;
  left: 0;
  max-width: 87.735vw;
  width: 100%;
  margin: auto;
  /*========= 手書き風文字（MV） ===============*/
  /* 手書き風文字SVG画像の表示設定　*/
  /* 手書き風文字SVG画像の配置　*/
  /* 手書き風文字SVG画像の大きさ　*/
  /*========= 手書き風に見せるためのCSS ===============*/
}
.main_visual .title_wrap .title {
  position: relative;
  width: 100%;
}
.main_visual .title_wrap .title img {
  display: block;
}
.main_visual .title_wrap .title img.catchphrase {
  max-width: 26.6667vw;
  margin: 0 -3.2vw 29.6vw auto;
}
.main_visual .title_wrap .title img.catchphrase.popUpOnTheSpot {
  animation-delay: 0.8s;
}
.main_visual .title_wrap .title img.highlight {
  position: absolute;
  bottom: -1.8vw;
  right: 0;
  left: 0;
  margin: auto;
}
.main_visual .title_wrap .title img.highlight.fadeInImgLOnTheSpot {
  animation-delay: 0.6s;
}
.main_visual .title_wrap .title img.title_text_top {
  max-width: 63.468vw;
  margin: 0 auto 1.066666vw 8.8vw;
}
.main_visual .title_wrap .title img.title_text_top.fadeInImgTOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .title_wrap .title img.title_text_bottom {
  margin-bottom: 1.066666vw;
}
.main_visual .title_wrap .title img.title_text_bottom.fadeInImgROnTheSpot {
  animation-delay: 0.2s;
}
.main_visual .title_wrap #handwritten {
  z-index: -9999;
  position: absolute;
  top: -1.5vw;
  left: 11vw;
  max-width: 36.8vw;
  width: 100%;
  height: 18.4vw;
}
.main_visual .title_wrap #handwritten_text {
  position: absolute;
  top: 0;
  left: 0;
}
.main_visual .title_wrap #handwritten_text svg {
  width: 36.8vw;
  height: 18.4vw;
}
.main_visual .title_wrap #mask-sp .cls-1,
.main_visual .title_wrap #mask-pc .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-width: 90; /*線の太さを指定する*/
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500; /* 線の間隔を指定する */
  stroke-dashoffset: 1500; /* 線の位置を指定する */
}

.main_description {
  width: 100%;
  margin-bottom: 25.868vw;
  line-height: 2.5714285714;
  text-align: center;
}

#index {
  width: 100%;
  margin-bottom: 26.6667vw;
}
#index .head {
  width: 100%;
  margin-bottom: 8.53334vw;
  font-family: "Roboto", sans-serif;
  font-size: 23px;
  text-align: center;
}
#index .anchor_link_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4.26666vw 3.7333275vw;
  max-width: 90.1333vw;
  width: 100%;
  margin: 0 auto;
}
#index .anchor_link_wrap .anchor_link {
  position: relative;
  max-width: 26.6667vw;
  width: 100%;
  padding: 6.93333vw 0 0 2.66667vw;
}
#index .anchor_link_wrap .anchor_link a {
  display: block;
  position: relative;
  max-width: 24.00003vw;
}
#index .anchor_link_wrap .anchor_link .style_number_wrap {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 13.33333vw;
  width: 100%;
  height: 12.268vw;
}
#index .anchor_link_wrap .anchor_link .style_number_wrap .style_number {
  font-family: "monotype-grotesque", sans-serif;
  font-size: 52px;
  font-style: italic;
  font-weight: 300;
}
#index .anchor_link_wrap .anchor_link .style_number_wrap .underline {
  width: 100%;
  height: 100%;
  margin: -6px auto 0 4px;
}
#index .anchor_link_wrap .anchor_link .style_number_wrap .underline.fadeInImgL {
  animation-delay: 0.2s;
}
#index .anchor_link_wrap .anchor_link .style_number_wrap .underline .trap {
  display: block;
  --cut: 18%; /* 右下の“切り込み”量（= 100% - 82%） */
  width: 36px;
  height: 3px;
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - var(--cut)) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - var(--cut)) 100%, 0 100%);
}
#index .anchor_link_wrap .anchor_link .style_number_wrap.style01 .style_number, #index .anchor_link_wrap .anchor_link .style_number_wrap.style03 .style_number, #index .anchor_link_wrap .anchor_link .style_number_wrap.style04 .style_number, #index .anchor_link_wrap .anchor_link .style_number_wrap.style06 .style_number {
  color: #2db99e;
}
#index .anchor_link_wrap .anchor_link .style_number_wrap.style01 .underline .trap, #index .anchor_link_wrap .anchor_link .style_number_wrap.style03 .underline .trap, #index .anchor_link_wrap .anchor_link .style_number_wrap.style04 .underline .trap, #index .anchor_link_wrap .anchor_link .style_number_wrap.style06 .underline .trap {
  background: #2db99e;
}
#index .anchor_link_wrap .anchor_link .style_number_wrap.style02 .style_number, #index .anchor_link_wrap .anchor_link .style_number_wrap.style05 .style_number {
  color: #12bbc9;
}
#index .anchor_link_wrap .anchor_link .style_number_wrap.style02 .underline .trap, #index .anchor_link_wrap .anchor_link .style_number_wrap.style05 .underline .trap {
  background: #12bbc9;
}

.introduction {
  margin-bottom: 22.4vw;
}
.introduction .head_wrap {
  width: 100%;
}
.introduction .head_wrap .item {
  font-family: "monotype-grotesque", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
}
.introduction .head_wrap .item_name {
  font-family: "monotype-grotesque", sans-serif;
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
}
.introduction .image_wrap_parent {
  position: relative;
  width: 100%;
  margin: 0 auto 2.66667vw;
}
.introduction .image_wrap_parent .feature_wrap {
  position: absolute;
}
.introduction .image_wrap_parent .feature_wrap .feature {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 9999px;
}
.introduction .image_wrap_parent .feature_wrap .feature.green {
  background: #2db99e;
}
.introduction .image_wrap_parent .feature_wrap .feature.blue {
  background: #12bbc9;
}
.introduction .image_wrap_parent .feature_wrap .feature.pop-up {
  animation-delay: 1.8s;
}
.introduction .image_wrap_parent .feature_wrap .feature .text {
  line-height: 1.2857142857;
  text-align: center;
}
.introduction .image_wrap_parent .feature_wrap .navigation_line {
  position: relative;
  width: 100%;
}
.introduction .image_wrap_parent .feature_wrap .navigation_line span {
  display: block;
  position: absolute;
  background: #000;
}
.introduction .item_name_ja p {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 2px 0 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  text-align: center;
}
.introduction .item_name_ja p.green {
  border: 1px solid #2db99e;
}
.introduction .item_name_ja p.blue {
  border: 1px solid #12bbc9;
}
.introduction .item_name_ja p.top {
  margin-bottom: 8px;
}
.introduction.main .head_wrap {
  margin-bottom: 14.93333vw;
}
.introduction.main .head_wrap .item {
  display: block;
  max-width: 11.46666vw;
  width: 100%;
  margin: 0 auto 4.8vw;
  padding-bottom: 1px;
  border-bottom: 2px solid #000;
  text-align: center;
}
.introduction.main .head_wrap .item_name {
  margin-bottom: 3.2vw;
  text-align: center;
}
.introduction.main .head_wrap .scroll_down {
  position: relative;
  max-width: 12px;
  width: 100%;
  margin: 0 auto 5.86666vw;
}
.introduction.main .head_wrap .scroll_down .arrow {
  z-index: 9999;
  position: absolute;
  right: 0;
  left: 0;
  width: 8.5px;
  height: 8.5px;
  margin: auto;
  background: rgba(255, 255, 255, 0);
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  opacity: 0;
  transform: rotate(-45deg);
  animation: arrowMove 3s ease-out infinite;
}
.introduction.main .head_wrap .scroll_down .arrow:first-child {
  animation: arrowMove 3s ease-out 1s infinite;
}
.introduction.main .head_wrap .scroll_down .arrow:nth-child(2) {
  animation: arrowMove 3s ease-out 2s infinite;
}
@keyframes arrowMove {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(7px) rotate(-45deg);
  }
  67% {
    opacity: 1;
    transform: translateY(14px) rotate(-45deg);
  }
  100% {
    opacity: 0;
    transform: translateY(24px) rotate(-45deg) scale3d(0.5, 0.5, 0.5);
  }
}
.introduction.sub .head_wrap {
  max-width: 84.267vw;
  margin: 0 auto 3.7333275vw;
}
.introduction.sub .head_wrap .item {
  margin-bottom: 2.133334vw;
}
.introduction.sub .head_wrap .item_name {
  font-size: 16px;
}
.introduction.style01.main .image_wrap_parent {
  max-width: 82.668vw;
}
.introduction.style01.main .image_wrap_parent .feature_wrap {
  top: -22px;
  right: -10px;
  width: 106px;
  height: 183px;
}
.introduction.style01.main .image_wrap_parent .feature_wrap .feature {
  margin: 0 0 0 auto;
}
.introduction.style01.main .image_wrap_parent .feature_wrap .navigation_line {
  max-width: 68px;
  height: 117px;
  margin: -10px auto 0 0;
}
.introduction.style01.main .image_wrap_parent .feature_wrap .navigation_line span.top {
  bottom: -2px;
  right: 15px;
  width: 1px;
  height: 122px;
  transform: rotate(15deg);
}
.introduction.style01.main .image_wrap_parent .feature_wrap .navigation_line span.top.fadeInImgB {
  animation-delay: 0.8s;
}
.introduction.style01.main .image_wrap_parent .feature_wrap .navigation_line span.bottom {
  bottom: 0;
  left: 0;
  width: 37px;
  height: 1px;
}
.introduction.style01.main .image_wrap_parent .feature_wrap .navigation_line span.bottom.fadeInImgL {
  animation-delay: 0.4s;
}
.introduction.style01.main .item_name_ja p.top {
  max-width: 29.8667vw;
}
.introduction.style01.main .item_name_ja p.bottom {
  max-width: 42.6667vw;
}
.introduction.style02.sub .head_wrap .item {
  text-align: right;
}
.introduction.style02.sub .head_wrap .item_name {
  text-align: right;
}
.introduction.style02.sub .image_wrap_parent {
  max-width: 80.8vw;
}
.introduction.style02.sub .image_wrap_parent .feature_wrap {
  top: -39px;
  left: -8px;
  width: 139px;
  height: 76px;
}
.introduction.style02.sub .image_wrap_parent .feature_wrap .navigation_line {
  max-width: 69px;
  height: 19px;
  margin: -38px 0 auto auto;
}
.introduction.style02.sub .image_wrap_parent .feature_wrap .navigation_line span.top {
  top: 0;
  left: -0.1px;
  width: 56px;
  height: 1px;
}
.introduction.style02.sub .image_wrap_parent .feature_wrap .navigation_line span.top.fadeInImgR {
  animation-delay: 0.8s;
}
.introduction.style02.sub .image_wrap_parent .feature_wrap .navigation_line span.bottom {
  bottom: 0.4px;
  right: 7.2px;
  width: 1px;
  height: 20px;
  transform: rotate(-34deg);
}
.introduction.style02.sub .image_wrap_parent .feature_wrap .navigation_line span.bottom.fadeInImgB {
  animation-delay: 0.4s;
}
.introduction.style02.sub .item_name_ja p.top {
  max-width: 29.8667vw;
}
.introduction.style02.sub .item_name_ja p.bottom {
  max-width: 21.33334vw;
}
.introduction.style03.sub .image_wrap_parent {
  max-width: 82.668vw;
}
.introduction.style03.sub .image_wrap_parent .feature_wrap {
  top: -33px;
  right: -8px;
  width: 106px;
  height: 197px;
}
.introduction.style03.sub .image_wrap_parent .feature_wrap .feature {
  margin: 0 0 0 auto;
}
.introduction.style03.sub .image_wrap_parent .feature_wrap .navigation_line {
  max-width: 68px;
  height: 117px;
  margin: -9px auto 0 0;
}
.introduction.style03.sub .image_wrap_parent .feature_wrap .navigation_line span.top {
  bottom: -2px;
  right: 15px;
  width: 1px;
  height: 122px;
  transform: rotate(15deg);
}
.introduction.style03.sub .image_wrap_parent .feature_wrap .navigation_line span.top.fadeInImgB {
  animation-delay: 0.8s;
}
.introduction.style03.sub .image_wrap_parent .feature_wrap .navigation_line span.bottom {
  bottom: 0;
  left: 0;
  width: 37px;
  height: 1px;
}
.introduction.style03.sub .image_wrap_parent .feature_wrap .navigation_line span.bottom.fadeInImgL {
  animation-delay: 0.4s;
}
.introduction.style03.sub .item_name_ja p.top {
  max-width: 29.8667vw;
}
.introduction.style03.sub .item_name_ja p.bottom {
  max-width: 42.6667vw;
}
.introduction.style04 {
  margin-bottom: 0;
  padding: 21.33334vw 0 22.4vw;
  background: #f5f5f5;
}
.introduction.style04.main .image_wrap_parent {
  max-width: 86.934vw;
}
.introduction.style04.main .image_wrap_parent .feature_wrap {
  top: -32px;
  right: -5px;
  width: 139px;
  height: 96px;
}
.introduction.style04.main .image_wrap_parent .feature_wrap .feature {
  margin: 0 0 0 auto;
}
.introduction.style04.main .image_wrap_parent .feature_wrap .navigation_line {
  max-width: 88px;
  height: 28px;
  margin: -13px auto 0 0;
}
.introduction.style04.main .image_wrap_parent .feature_wrap .navigation_line span.top {
  top: 0;
  right: 0;
  width: 1px;
  height: 40px;
  transform: rotate(45deg);
}
.introduction.style04.main .image_wrap_parent .feature_wrap .navigation_line span.top.fadeInImgB {
  animation-delay: 0.8s;
}
.introduction.style04.main .image_wrap_parent .feature_wrap .navigation_line span.bottom {
  bottom: -6.5px;
  left: 13.7px;
  width: 60px;
  height: 1px;
}
.introduction.style04.main .image_wrap_parent .feature_wrap .navigation_line span.bottom.fadeInImgL {
  animation-delay: 0.4s;
}
.introduction.style04.main .item_name_ja p.top {
  max-width: 21.33334vw;
}
.introduction.style04.main .item_name_ja p.bottom {
  max-width: 34.135vw;
}
.introduction.style05 {
  margin-bottom: 0;
  padding: 21.068vw 0 22.4vw;
  background: #f5f5f5;
}
.introduction.style05.sub .image_wrap_parent {
  max-width: 93.068vw;
}
.introduction.style05.sub .image_wrap_parent .feature_wrap {
  top: -41px;
  right: 9px;
  width: 147px;
  height: 76px;
}
.introduction.style05.sub .image_wrap_parent .feature_wrap .feature {
  margin: 0 0 0 auto;
}
.introduction.style05.sub .image_wrap_parent .feature_wrap .navigation_line {
  max-width: 76px;
  height: 21px;
  margin: -38px auto 0 0;
}
.introduction.style05.sub .image_wrap_parent .feature_wrap .navigation_line span.top {
  top: 0;
  right: 0;
  width: 63px;
  height: 1px;
}
.introduction.style05.sub .image_wrap_parent .feature_wrap .navigation_line span.top.fadeInImgL {
  animation-delay: 0.8s;
}
.introduction.style05.sub .image_wrap_parent .feature_wrap .navigation_line span.bottom {
  bottom: 1.4px;
  left: 7.1px;
  width: 1px;
  height: 21px;
  transform: rotate(34deg);
}
.introduction.style05.sub .image_wrap_parent .feature_wrap .navigation_line span.bottom.fadeInImgB {
  animation-delay: 0.4s;
}
.introduction.style05.sub .item_name_ja p.bottom {
  max-width: 42.6667vw;
}
.introduction.style06 {
  margin-bottom: 0;
  padding-bottom: 22.4vw;
  background: #f5f5f5;
}
.introduction.style06.sub .head_wrap .item {
  text-align: right;
}
.introduction.style06.sub .head_wrap .item_name {
  text-align: right;
}
.introduction.style06.sub .image_wrap_parent {
  max-width: 93.068vw;
}
.introduction.style06.sub .image_wrap_parent .feature_wrap {
  top: -59px;
  left: 31px;
  width: 121px;
  height: 129px;
}
.introduction.style06.sub .image_wrap_parent .feature_wrap .navigation_line {
  max-width: 68px;
  height: 62px;
  margin: -11px 0 0 auto;
}
.introduction.style06.sub .image_wrap_parent .feature_wrap .navigation_line span.top {
  top: 0;
  left: 0;
  width: 1px;
  height: 68px;
  transform: rotate(-25deg);
}
.introduction.style06.sub .image_wrap_parent .feature_wrap .navigation_line span.top.fadeInImgB {
  animation-delay: 0.8s;
}
.introduction.style06.sub .image_wrap_parent .feature_wrap .navigation_line span.bottom {
  bottom: -3.3px;
  right: 14.5px;
  width: 39px;
  height: 1px;
}
.introduction.style06.sub .image_wrap_parent .feature_wrap .navigation_line span.bottom.fadeInImgR {
  animation-delay: 0.4s;
}
.introduction.style06.sub .item_name_ja p.top {
  max-width: 21.33334vw;
}
.introduction.style06.sub .item_name_ja p.bottom {
  max-width: 34.135vw;
}

section {
  width: 100%;
  margin-bottom: 21.33334vw;
}
section .label_image_wrap {
  position: relative;
  width: 100%;
  margin-bottom: 10.66666vw;
}
section .label_image_wrap .label {
  z-index: 8888;
  position: absolute;
  top: -6.4vw;
  left: -2.66667vw;
  max-width: 38.934vw;
  width: 100%;
}
section .label_image_wrap .label .text_wrap {
  z-index: 9999;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: 100%;
  margin: auto;
}
section .label_image_wrap .label .text_wrap span {
  display: block;
  font-family: "monotype-grotesque", sans-serif;
  font-size: 12px;
  color: #fff;
}
section .label_image_wrap .label .text_wrap span.style {
  font-size: 12px;
}
section .label_image_wrap .label .text_wrap span.number {
  font-size: 40px;
  font-style: italic;
}
section .head_wrap {
  max-width: 300px;
  width: 100%;
  margin: 0 auto 10.66666vw 6.93333vw;
}
section .head_wrap .text {
  z-index: 1;
  display: block;
  position: relative;
  width: 100%;
  font-size: 20px;
  line-height: 2;
  white-space: nowrap;
}
section .head_wrap .text .underline {
  z-index: -9999;
  display: block;
  position: absolute;
  bottom: 10.2px;
  left: 0;
  width: 100%;
  height: 2px;
}
section .head_wrap .text .underline.green {
  background: #2db99e;
}
section .head_wrap .text .underline.blue {
  background: #12bbc9;
}
section .image_wrap.second,
section .swiper.second {
  max-width: 66.667vw;
  margin: 0 auto 10.66666vw;
}
section .description {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 7.46666vw;
  line-height: 2.1428571429;
}
section .credit_wrap {
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto;
}
section .credit_wrap:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 1px;
}
section .credit_wrap .credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section .credit_wrap .credit.sp_hidden {
  display: none;
}
section .credit_wrap .credit:not(:last-of-type) {
  margin-bottom: 16px;
}
section .credit_wrap .credit .items_wrap p {
  line-height: 1;
}
section .credit_wrap .credit .items_wrap .item {
  margin-bottom: 2px;
  font-size: 12px;
}
section .credit_wrap .credit .items_wrap .price {
  font-family: "Crimson Text", serif;
  font-size: 17px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
section .credit_wrap .credit .items_wrap .price .tax {
  font-size: 9px;
}
section .credit_wrap .credit .details_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 1.066666vw;
       column-gap: 1.066666vw;
  max-width: 54.4vw;
  width: 100%;
}
section .credit_wrap .credit .details_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 26.6667vw;
  width: 100%;
  height: 30px;
}
section .credit_wrap .credit .details_wrap a span {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
section .credit_wrap .credit .details_wrap.green a {
  background: #2db99e;
}
section .credit_wrap .credit .details_wrap.blue a {
  background: #12bbc9;
}
section .accordion_wrap {
  margin: 5.335vw 0 8.53334vw;
}
section .accordion_wrap button.other_item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  height: 11.2vw;
  margin: 5.335vw auto;
  background: #fff;
  border: 1px solid #000;
}
section .accordion_wrap button.other_item.show {
  margin-bottom: 5.335vw;
}
section .accordion_wrap button.other_item.show:before {
  opacity: 0;
}
section .accordion_wrap button.other_item span {
  font-family: "Crimson Text", serif;
}
section .accordion_wrap .accordion {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
section .accordion_wrap .accordion .credit_wrap {
  padding-top: 0;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap {
  margin-bottom: 0;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap a {
  max-width: 100%;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap.green a {
  background: #2db99e;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap.blue a {
  background: #12bbc9;
}
section .other_style {
  position: relative;
  width: 100%;
  padding-bottom: 6.4vw;
}
section .other_style:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 50vw;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 45%);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 45%); /* 左上（上端の左の高さ）,右上（上端の右の高さ）,右下（水平）,左下（水平） */
}
section .other_style .scroll_navigation {
  position: relative;
  margin-bottom: 10.66666vw;
  overflow: hidden;
}
section .other_style .scroll_navigation .border {
  position: relative;
  top: 0;
  width: 100%;
  height: 93px;
  overflow: hidden;
}
section .other_style .scroll_navigation:before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 46.5px;
  top: 0;
  left: 0;
  right: 0;
  background: #000;
  animation: scrollNavigation 2s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollNavigation {
  0% {
    height: 0;
    top: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}
section .other_style .how_to {
  margin: 0 0 8.53334vw;
  font-family: "monotype-grotesque", sans-serif;
  font-size: 12px;
  font-style: italic;
  text-align: center;
}
section .other_style .comment_image_wrap {
  position: relative;
  max-width: 78.935vw;
  width: 100%;
  margin: 0 auto 8.53334vw;
}
section .other_style .comment_image_wrap .image_wrap {
  border: 5px solid #fff;
}
section .other_style .comment_image_wrap .comment_wrap {
  z-index: 9999;
  position: absolute;
  width: 100%;
}
section .other_style .comment_image_wrap .comment_wrap .speech_bubble {
  width: 100%;
}
section .other_style .comment_image_wrap .comment_wrap .handwritten {
  position: absolute;
}
section .other_style .comment_image_wrap .comment_wrap .comment {
  position: absolute;
  width: 100%;
}
section#style01 .head_wrap .text.top {
  max-width: 276px;
}
section#style01 .head_wrap .text.bottom {
  max-width: 300px;
}
section#style01 .other_style {
  background: #f5f5f5;
}
section#style01 .other_style:before {
  background: #fff;
}
section#style01 .other_style .comment_image_wrap .image_wrap {
  border: 5px solid #fff;
}
section#style01 .other_style .comment_image_wrap .comment_wrap {
  top: 17.33334vw;
  left: -4.53333vw;
  max-width: 26vw;
}
section#style01 .other_style .comment_image_wrap .comment_wrap .handwritten {
  top: 6.9vw;
  left: 4.8vw;
}
section#style01 .other_style .comment_image_wrap .comment_wrap .comment {
  top: 2.3vw;
  left: 2.9vw;
  max-width: 18.93334vw;
}
section#style02 .head_wrap .text.top, section#style02 .head_wrap .text.bottom {
  max-width: 240px;
}
section#style03 .head_wrap .text.top {
  max-width: 276px;
}
section#style03 .head_wrap .text.bottom {
  max-width: 280px;
}
section#style04 {
  margin-bottom: 0;
  background: #f5f5f5;
}
section#style04 .head_wrap .text.top {
  max-width: 280px;
}
section#style04 .head_wrap .text.bottom {
  max-width: 212px;
}
section#style04 .other_style {
  background: #fff;
}
section#style04 .other_style:before {
  background: #f5f5f5;
}
section#style04 .other_style .comment_image_wrap .swiper {
  border: 5px solid #f5f5f5;
}
section#style04 .other_style .comment_image_wrap .comment_wrap {
  bottom: 10.4vw;
  right: -4.53333vw;
  max-width: 21.868vw;
}
section#style04 .other_style .comment_image_wrap .comment_wrap .handwritten {
  top: 22.6vw;
  left: -14.8vw;
  transform: rotate(90deg);
}
section#style04 .other_style .comment_image_wrap .comment_wrap .comment {
  top: 2.8vw;
  left: 6vw;
  max-width: 12.6vw;
}
section#style05 {
  margin-bottom: 0;
  background: #f5f5f5;
}
section#style05 .head_wrap .text.top {
  max-width: 296px;
}
section#style05 .head_wrap .text.bottom {
  max-width: 300px;
}
section#style05 .accordion_wrap {
  margin: 5.335vw 0 0;
  padding-bottom: 13.33333vw;
}
section#style06 {
  margin-bottom: 0;
  background: #f5f5f5;
}
section#style06 .head_wrap .text.top {
  max-width: 196px;
}
section#style06 .head_wrap .text.middle {
  max-width: 158px;
}
section#style06 .head_wrap .text.bottom {
  max-width: 276px;
}
section#style06 .accordion_wrap {
  margin: 5.335vw 0 0;
  padding-bottom: 8vw;
}

.other_items_wrap {
  width: 100%;
  padding-bottom: 16vw;
  background: #f5f5f5;
}
.other_items_wrap .other_items {
  max-width: 89.6vw;
  width: 100%;
  height: 20.8vw;
  margin: 0 auto;
}
.other_items_wrap .other_items a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #12bbc9;
}
.other_items_wrap .other_items a span {
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
}

footer {
  width: 100%;
  padding: 16vw 0 6.4vw;
  background: #12bbc9;
}
footer .logo_wrap {
  max-width: 21.33334vw;
  width: 100%;
  margin: 0 auto 13.86666vw;
}
footer .instagram {
  width: 8vw;
  height: 8vw;
  margin: 0 auto 12.53333vw;
}
footer .related_links_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 8.53334vw;
}
footer .related_links_wrap .related_link {
  display: flex;
  align-items: center;
  max-width: 78.935vw;
  width: 100%;
  height: 15.735vw;
  margin: 0 auto;
  border: 1px solid #000;
}
footer .related_links_wrap .related_link:not(:last-of-type) {
  margin-bottom: 4.26666vw;
}
footer .related_links_wrap .related_link a {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 15.735vw;
  text-align: center;
}
footer .annotation {
  max-width: 78.935vw;
  width: 100%;
  margin: 0 auto 13.86666vw;
  font-size: 12px;
  line-height: 2.1666666667;
}
footer .onward_crosset {
  max-width: 42.135vw;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 744px) {
  .pc_hidden {
    display: none;
  }
  .main_visual {
    margin-bottom: 7.32066vw;
  }
  .main_visual .swiper.pc_hidden {
    display: none;
  }
  .main_visual .image_wrap {
    display: flex;
  }
  .main_visual .logo_wrap {
    top: 1.5625vw;
    left: 1.756955vw;
    max-width: 5.7838vw;
  }
  .main_visual .title_wrap {
    bottom: 3.66032vw;
    max-width: 47.438vw;
    /*========= 手書き風文字（MV） ===============*/
    /* 手書き風文字SVG画像の表示設定　*/
    /* 手書き風文字SVG画像の大きさ　*/
  }
  .main_visual .title_wrap .title img.catchphrase {
    position: absolute;
    top: -0.80527vw;
    right: -1.02489vw;
    max-width: 9.73649vw;
    margin: auto;
  }
  .main_visual .title_wrap .title img.highlight {
    bottom: -0.8vw;
  }
  .main_visual .title_wrap .title img.title_text_top {
    max-width: 31.9917vw;
    margin: 0 auto 0.80527vw 4.466vw;
  }
  .main_visual .title_wrap .title img.title_text_bottom {
    margin-bottom: 0.58565vw;
  }
  .main_visual .title_wrap #handwritten {
    top: -1.2vw;
    left: 26vw;
    max-width: 20.9376vw;
    height: 10.542vw;
  }
  .main_visual .title_wrap #handwritten_text svg {
    width: 20.9376vw;
    height: 10.542vw;
  }
  .main_description {
    max-width: 100%;
    margin: 0 auto 9.151vw;
  }
  .content_wrap_for_pc {
    width: 100%;
  }
  .content_wrap_for_pc #index {
    display: none;
    position: fixed;
    top: 7.02782vw;
    left: 5.7838vw;
    max-width: 29.417vw;
    margin-bottom: 0;
  }
  .content_wrap_for_pc #index.isFixed {
    display: block;
  }
  .content_wrap_for_pc #index.isHidden {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .content_wrap_for_pc #index .head {
    margin-bottom: 2.342603vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap {
    justify-content: center;
    gap: 1.1713vw 0.292826vw;
    max-width: 100%;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link {
    max-width: 8.234vw;
    padding: 1.90337vw 0 0 0.732066vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link a {
    max-width: 6.588594vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link .style_number_wrap {
    top: -0.5vw;
    left: -0.5vw;
    max-width: 3.66032vw;
    height: 3.807vw;
  }
  .content_wrap_for_pc .section_wrap {
    max-width: 27.526vw;
    width: 100%;
    margin: 0 auto;
  }
  .content_wrap_for_pc .section_wrap .introduction {
    display: none;
    max-width: 25.5496vw;
    width: 100%;
    margin-bottom: 0;
  }
  .content_wrap_for_pc .section_wrap .introduction.js-fixed-elm.is-fixed {
    display: block;
    position: fixed;
    top: 4.75842vw;
    right: 6.36896vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .image_wrap_parent {
    margin: 0 auto 0.732066vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.main .head_wrap {
    margin-bottom: 4.1vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.main .head_wrap .item {
    max-width: 3.14788vw;
    margin: 0 auto 1.5625vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.main .head_wrap .item_name {
    margin-bottom: 0.87848vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.main .head_wrap .scroll_down {
    margin: 0 auto 1.61054vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.sub .head_wrap {
    max-width: 100%;
    margin: 0 auto 1.02489vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.sub .head_wrap .item {
    margin-bottom: 0.58565vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style01.main .image_wrap_parent {
    max-width: 22.694vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style01.main .item_name_ja p.top {
    max-width: 8.1996vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style01.main .item_name_ja p.bottom {
    max-width: 11.7136vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style02.sub .image_wrap_parent {
    max-width: 22.182vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style02.sub .item_name_ja p.top {
    max-width: 8.1996vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style02.sub .item_name_ja p.bottom {
    max-width: 5.856512vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style03.sub .image_wrap_parent {
    max-width: 22.694vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style03.sub .item_name_ja p.top {
    max-width: 8.1996vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style03.sub .item_name_ja p.bottom {
    max-width: 11.7136vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style04 {
    padding: 0;
    background: #fff;
  }
  .content_wrap_for_pc .section_wrap .introduction.style04.main .image_wrap_parent {
    max-width: 23.8658vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style04.main .item_name_ja p.top {
    max-width: 5.856512vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style04.main .item_name_ja p.bottom {
    max-width: 9.370995vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style05 {
    padding: 0;
    background: #fff;
  }
  .content_wrap_for_pc .section_wrap .introduction.style05.sub .image_wrap_parent {
    max-width: 100%;
  }
  .content_wrap_for_pc .section_wrap .introduction.style05.sub .item_name_ja p.bottom {
    max-width: 11.7136vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style06 {
    padding-bottom: 0;
    background: #fff;
  }
  .content_wrap_for_pc .section_wrap .introduction.style06.sub .image_wrap_parent {
    max-width: 100%;
  }
  .content_wrap_for_pc .section_wrap .introduction.style06.sub .item_name_ja p.top {
    max-width: 5.856512vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style06.sub .item_name_ja p.bottom {
    max-width: 9.370995vw;
  }
  .content_wrap_for_pc .section_wrap section {
    margin-bottom: 7.5408vw;
  }
  .content_wrap_for_pc .section_wrap section .label_image_wrap {
    margin-bottom: 2.92826vw;
  }
  .content_wrap_for_pc .section_wrap section .label_image_wrap .label {
    top: -1.756955vw;
    left: -0.732066vw;
    max-width: 10.9287vw;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap {
    margin: 0 auto 2.92826vw 1.90337vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap.second,
  .content_wrap_for_pc .section_wrap section .swiper.second {
    max-width: 18.302vw;
    margin: 0 auto 2.92826vw;
  }
  .content_wrap_for_pc .section_wrap section .description {
    max-width: 24.5977vw;
    margin: 0 auto 2.04978vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap {
    max-width: 24.5977vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit.sp_hidden {
    display: none;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap {
    -moz-column-gap: 4px;
         column-gap: 4px;
    max-width: 15.27vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap a {
    max-width: 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap {
    margin: 1.5625vw 0 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap button.other_item {
    max-width: 24.5977vw;
    height: 3.07467vw;
    margin: 2.342603vw auto;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap button.other_item.show {
    margin-bottom: 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap .accordion {
    max-width: 24.5977vw;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap .accordion .credit_wrap .credit .details_wrap a {
    max-width: 100%;
  }
  .content_wrap_for_pc .section_wrap section .other_style {
    padding-bottom: 2.63543vw;
  }
  .content_wrap_for_pc .section_wrap section .other_style:before {
    height: 5.4178vw;
  }
  .content_wrap_for_pc .section_wrap section .other_style .scroll_navigation {
    margin-bottom: 2.92826vw;
  }
  .content_wrap_for_pc .section_wrap section .other_style .how_to {
    margin: 0 0 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .other_style .comment_image_wrap {
    max-width: 21.6696vw;
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .other_style .comment_image_wrap .comment_wrap {
    top: 4.75842vw;
    left: -1.24451vw;
    max-width: 7.02782vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .other_style .comment_image_wrap .comment_wrap .handwritten {
    top: 1.85vw;
    left: 1.3vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .other_style .comment_image_wrap .comment_wrap .comment {
    top: 0.65vw;
    left: 0.8vw;
    max-width: 5.19766vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .other_style .comment_image_wrap .comment_wrap {
    bottom: 3.2211vw;
    right: -0.87848vw;
    max-width: 5.92972vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .other_style .comment_image_wrap .comment_wrap .handwritten {
    top: 6.2vw;
    left: -4.1vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .other_style .comment_image_wrap .comment_wrap .comment {
    top: 0.8vw;
    left: 1.65vw;
    max-width: 3.4vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 .accordion_wrap {
    margin: 1.5625vw 0 0;
    padding-bottom: 7.5408vw;
  }
  .content_wrap_for_pc .section_wrap section#style06 .accordion_wrap {
    margin: 1.5625vw 0 0;
    padding-bottom: 4.39239vw;
  }
  .content_wrap_for_pc .other_items {
    max-width: 24.5977vw;
    height: 5.7106vw;
    margin: 0 auto 7.32066vw;
  }
  footer {
    padding: 4.466vw 0 1.756955vw;
  }
  footer .logo_wrap {
    max-width: 5.856512vw;
    margin: 0 auto 3.73353vw;
  }
  footer .instagram {
    width: 2.19619vw;
    height: 2.19619vw;
    margin: 0 auto 3.4407vw;
  }
  footer .related_links_wrap {
    justify-content: space-between;
    max-width: 69.693vw;
    margin: 0 auto 3.4407vw;
  }
  footer .related_links_wrap .related_link {
    max-width: 21.6696vw;
    height: 4.3197vw;
    margin: 0;
  }
  footer .related_links_wrap .related_link:not(:last-of-type) {
    margin-bottom: 0;
  }
  footer .related_links_wrap .related_link a {
    line-height: 4.3197vw;
  }
  footer .annotation {
    max-width: 100%;
    margin: 0 auto 3.807vw;
    text-align: center;
  }
  footer .onward_crosset {
    max-width: 11.567vw;
  }
}
@media screen and (744px <= width < 1336px) {
  #index .anchor_link_wrap .anchor_link .style_number_wrap .style_number {
    font-size: 40px;
  }
  #index .anchor_link_wrap .anchor_link .style_number_wrap .underline {
    margin: -4px auto 0 0;
  }
  .content_wrap_for_pc .section_wrap .introduction.main .head_wrap {
    margin-bottom: 6.2vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style01.main .image_wrap_parent .feature_wrap {
    top: -6.5vw;
    right: -3.6vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style01.main .item_name_ja p.top {
    max-width: 12vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style01.main .item_name_ja p.bottom {
    max-width: 17vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style02.sub .image_wrap_parent .feature_wrap {
    top: -4.1vw;
    left: -4.1vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style02.sub .item_name_ja p.top {
    max-width: 12vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style02.sub .item_name_ja p.bottom {
    max-width: 9vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style03.sub .image_wrap_parent .feature_wrap {
    top: -6.5vw;
    right: -2.3vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style03.sub .item_name_ja p.top {
    max-width: 12vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style03.sub .item_name_ja p.bottom {
    max-width: 17vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style04.main .image_wrap_parent .feature_wrap {
    top: -5vw;
    right: -3.7vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style04.main .item_name_ja p.top {
    max-width: 9vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style04.main .item_name_ja p.bottom {
    max-width: 14vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style05.sub .image_wrap_parent .feature_wrap {
    top: -4.4vw;
    right: -3.3vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style05.sub .item_name_ja p.bottom {
    max-width: 17vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style06.sub .image_wrap_parent .feature_wrap {
    top: -7.8vw;
    left: -0.6vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style06.sub .item_name_ja p.top {
    max-width: 9vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style06.sub .item_name_ja p.bottom {
    max-width: 14vw;
  }
  .content_wrap_for_pc .section_wrap section .label_image_wrap .label .text_wrap span.number {
    font-size: 32px;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap .text {
    font-size: 18px;
  }
  .content_wrap_for_pc .section_wrap section#style01 .head_wrap {
    margin: 0 auto 2.92826vw 0.2vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .head_wrap .text.top {
    max-width: 251px;
  }
  .content_wrap_for_pc .section_wrap section#style01 .head_wrap .text.bottom {
    max-width: 270px;
  }
  .content_wrap_for_pc .section_wrap section#style01 .other_style .comment_image_wrap .comment_wrap {
    top: 5vw;
    left: -3.6vw;
    max-width: 9.4vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .other_style .comment_image_wrap .comment_wrap .handwritten {
    top: 2.5vw;
    left: 1.7vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .other_style .comment_image_wrap .comment_wrap .comment {
    top: 0.75vw;
    left: 0.85vw;
    max-width: 7.19766vw;
  }
  .content_wrap_for_pc .section_wrap section#style02 .head_wrap .text.top, .content_wrap_for_pc .section_wrap section#style02 .head_wrap .text.bottom {
    max-width: 214px;
  }
  .content_wrap_for_pc .section_wrap section#style03 .head_wrap {
    margin: 0 auto 2.92826vw 1.3vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .head_wrap .text.top {
    max-width: 249px;
  }
  .content_wrap_for_pc .section_wrap section#style03 .head_wrap .text.bottom {
    max-width: 250px;
  }
  .content_wrap_for_pc .section_wrap section#style04 .head_wrap {
    margin: 0 auto 2.92826vw 1.2vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .head_wrap .text.top {
    max-width: 251px;
  }
  .content_wrap_for_pc .section_wrap section#style04 .head_wrap .text.bottom {
    max-width: 190px;
  }
  .content_wrap_for_pc .section_wrap section#style04 .other_style .comment_image_wrap .comment_wrap {
    bottom: 3.6vw;
    right: -4.8vw;
    max-width: 7.92972vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .other_style .comment_image_wrap .comment_wrap .handwritten {
    top: 8.3vw;
    left: -5.6vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .other_style .comment_image_wrap .comment_wrap .comment {
    top: 0.95vw;
    left: 2.15vw;
    max-width: 4.7vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 .head_wrap {
    margin: 0 auto 2.92826vw 0.4vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 .head_wrap .text.top {
    max-width: 266px;
  }
  .content_wrap_for_pc .section_wrap section#style05 .head_wrap .text.bottom {
    max-width: 268px;
  }
  .content_wrap_for_pc .section_wrap section#style06 .head_wrap {
    margin: 0 auto 2.92826vw 1.4vw;
  }
  .content_wrap_for_pc .section_wrap section#style06 .head_wrap .text.top {
    max-width: 176px;
  }
  .content_wrap_for_pc .section_wrap section#style06 .head_wrap .text.middle {
    max-width: 143px;
  }
  .content_wrap_for_pc .section_wrap section#style06 .head_wrap .text.bottom {
    max-width: 248px;
  }
}
@media screen and (1001px <= width < 1201px) {
  .content_wrap_for_pc .section_wrap .introduction.style01.main .image_wrap_parent .feature_wrap {
    top: -4.7vw;
    right: -2.7vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style02.sub .image_wrap_parent .feature_wrap {
    top: -3.7vw;
    left: -2.9vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style03.sub .image_wrap_parent .feature_wrap {
    top: -4.7vw;
    right: -1.3vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style04.main .image_wrap_parent .feature_wrap {
    top: -4.2vw;
    right: -2.5vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style05.sub .image_wrap_parent .feature_wrap {
    top: -3.9vw;
    right: -1.9vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style06.sub .image_wrap_parent .feature_wrap {
    top: -6.6vw;
    left: 0.4vw;
  }
}
@media screen and (1201px <= width < 1336px) {
  .content_wrap_for_pc .section_wrap .introduction.style01.main .image_wrap_parent .feature_wrap {
    top: -3.3vw;
    right: -1.9vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style02.sub .image_wrap_parent .feature_wrap {
    top: -3.2vw;
    left: -1.8vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style03.sub .image_wrap_parent .feature_wrap {
    top: -3.5vw;
    right: -0.5vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style04.main .image_wrap_parent .feature_wrap {
    top: -3.4vw;
    right: -1.6vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style05.sub .image_wrap_parent .feature_wrap {
    top: -3.5vw;
    right: -0.8vw;
  }
  .content_wrap_for_pc .section_wrap .introduction.style06.sub .image_wrap_parent .feature_wrap {
    top: -5.6vw;
    left: 1.1vw;
  }
}/*# sourceMappingURL=common.css.map */