@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://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Roboto:ital,wght@0,100..900;1,100..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;
}

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

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

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

.image_wrap,
.swiper {
  overflow: hidden;
}
.image_wrap a,
.swiper a {
  position: relative;
  transition: 0.8s ease-out;
}
.image_wrap a:hover,
.swiper a:hover {
  transform: scale(1.03);
  transition: 0.4s;
  opacity: 1;
}

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% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    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% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    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% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    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% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    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;
  }
}
#menu {
  z-index: 8888;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 2.66667vw;
  bottom: 2.66667vw;
  width: 52px;
  height: 52px;
}

#modal_wrap {
  z-index: 9999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 8.53334vw 0 10.66666vw;
  background: #fff;
  overflow-y: auto;
}
#modal_wrap #modal {
  position: relative;
  width: 100%;
}
#modal_wrap #modal #close {
  cursor: pointer;
  z-index: 9999;
  position: absolute;
  top: -3.2vw;
  right: 5.335vw;
}
#modal_wrap #modal #modal_inner .head {
  max-width: 42.935vw;
  width: 100%;
  margin: 0 auto 7.46666vw;
}
#modal_wrap #modal #modal_inner .anchor_link_wrap {
  max-width: 78.668vw;
  width: 100%;
  margin: 0 auto;
}
#modal_wrap #modal #modal_inner .anchor_link_wrap .anchor_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#modal_wrap #modal #modal_inner .anchor_link_wrap .anchor_link.first {
  margin-bottom: 5.33333vw;
}
#modal_wrap #modal #modal_inner .anchor_link_wrap .anchor_link.second {
  margin-bottom: 5.33333vw;
}
#modal_wrap #modal #modal_inner .anchor_link_wrap .anchor_link.third {
  margin-bottom: 5.33333vw;
}

.main_visual {
  position: relative;
  width: 100%;
  margin-bottom: 13.86666vw;
  overflow: hidden;
}
.main_visual .title_wrap {
  z-index: 6666;
  position: absolute;
  bottom: 27.7333vw;
  right: 0;
  left: 0;
  max-width: 87.468vw;
  width: 100%;
  margin: auto;
}
.main_visual .title_wrap .subtitle {
  max-width: 70.134vw;
  width: 100%;
  margin: 0 auto 5.06666vw;
}
.main_visual .title_wrap .subtitle.fadeInImgBOnTheSpot {
  animation-delay: 0.8s;
}
.main_visual .title_wrap .title {
  width: 100%;
  margin: 0 auto;
}
.main_visual .title_wrap .title.top {
  margin-bottom: 6.135vw;
}
.main_visual .title_wrap .title.top.fadeInImgBOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .title_wrap .title.bottom {
  max-width: 52.8vw;
}
.main_visual .title_wrap .catchphrase {
  position: absolute;
  top: -21.868vw;
  right: -2.66667vw;
  max-width: 32vw;
  width: 100%;
  height: 19.2vw;
}
.main_visual .title_wrap .catchphrase .if_only_this {
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translateX(-50%) translateY(-39%);
  max-width: 24.268vw;
  width: 100%;
  margin: 0 auto;
}
.main_visual .title_wrap .catchphrase .if_only_this.fadeInImgBOnTheSpot {
  animation-delay: 1.2s;
}
.main_visual .logo_wrap {
  z-index: 6666;
  position: absolute;
  top: 4.8vw;
  right: 2.66667vw;
  max-width: 27.7333vw;
  width: 100%;
}
.main_visual .logo_wrap .anysis {
  width: 100%;
  margin: 0 auto 2.66667vw;
}
.main_visual .logo_wrap .any {
  max-width: 14.93333vw;
  width: 100%;
  margin: 0 0 0 auto;
}

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

.movie_wrap {
  max-width: 84.267vw;
  width: 100%;
  height: 100%;
  margin: 0 auto 16vw;
}
.movie_wrap iframe {
  width: 100%;
  min-height: 130.935vw;
  height: 100%;
  aspect-ratio: 16/9;
}

#index {
  width: 100%;
  margin-bottom: 21.33334vw;
}
#index .anchor_link_wrap {
  max-width: 78.668vw;
  width: 100%;
  margin: 0 auto;
}
#index .anchor_link_wrap .anchor_link:not(:last-child) {
  margin-bottom: 5.335vw;
}

section {
  width: 100%;
  margin-bottom: 21.33334vw;
  padding-top: 16vw;
  /*========= 手書き風文字 ===============*/
  /* 手書き風文字SVG画像の表示設定　*/
  /*========= 手書き風に見せるためのCSS ===============*/
}
section .head_wrap {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 16vw;
}
section .head_wrap .logo {
  max-width: 27.2vw;
  width: 100%;
  margin: 0 auto 6.4vw;
}
section .head_wrap .head {
  max-width: 81.335vw;
  width: 100%;
  margin: 0 auto;
}
section .sub_head {
  max-width: 26.9334vw;
  width: 100%;
  margin: 0 auto 5.6vw;
}
section .line {
  width: 100%;
  height: 1px;
  margin-bottom: 6.4vw;
  background: #000;
}
section .line.fadeInImgL {
  animation-delay: 0.4s;
}
section .line.white {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 6.4vw;
  background: #fff;
}
section .swiper {
  margin-bottom: 8.53334vw;
}
section .image_wrap {
  margin-bottom: 8.53334vw;
}
section .image_wrap_parent {
  position: relative;
}
section .image_wrap_parent .catchphrase {
  z-index: 6666;
  position: absolute;
  max-width: 16vw;
  width: 100%;
}
section .image_wrap_parent .off_look,
section .image_wrap_parent .put_on {
  z-index: 6666;
  position: absolute;
  width: 100%;
}
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.pink a {
  background: #f091a6;
}
section .credit_wrap .credit .details_wrap.salmon_pink a {
  background: #f89e9e;
}
section .credit_wrap .credit .details_wrap.brown a {
  background: #987c59;
}
section .credit_wrap .credit .details_wrap.white a {
  background: #fff;
}
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.pink a {
  background: #f091a6;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap.salmon_pink a {
  background: #f89e9e;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap.brown a {
  background: #987c59;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap.white a {
  background: #fff;
}
section .handwritten {
  z-index: 9999;
  position: absolute;
  width: 15px;
  height: 14px;
}
section #mask-sp .cls-1,
section #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; /* 線の位置を指定する */
}
section .ceremony_style1 .image_wrap_parent .image_wrap {
  max-width: 71.734vw;
  margin: 0 auto 8.53334vw 0;
}
section .ceremony_style1 .image_wrap_parent .catchphrase {
  bottom: 36vw;
  right: 5.335vw;
}
section .ceremony_style1 .image_wrap_parent .off_look {
  bottom: 20vw;
  left: 7.73334vw;
  max-width: 18.93334vw;
}
section .ceremony_style2 .image_wrap_parent .image_wrap.first {
  max-width: 89.6vw;
  margin: 0 auto 8.53334vw;
}
section .ceremony_style2 .image_wrap_parent .image_wrap.second {
  max-width: 71.734vw;
  margin: 0 auto 8.53334vw 0;
}
section .ceremony_style2 .image_wrap_parent .image_wrap.third {
  max-width: 71.734vw;
  margin: 0 0 8.53334vw auto;
}
section .ceremony_style2 .image_wrap_parent .catchphrase {
  bottom: 99vw;
  right: 5.335vw;
}
section .ceremony_style2 .image_wrap_parent .off_look {
  bottom: 59vw;
  left: 18.135vw;
  max-width: 20.8vw;
}
section .ceremony_style3 .image_wrap_parent .image_wrap,
section .ceremony_style3 .image_wrap_parent .swiper {
  max-width: 89.6vw;
  margin: 0 auto 8.53334vw;
}
section .ceremony_style3 .image_wrap_parent .catchphrase {
  top: 12vw;
  right: 13.6vw;
}
section .ceremony_style3 .image_wrap_parent:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 54px;
  right: 0;
  left: 0;
  width: 100%;
  height: 181vw;
  margin: auto;
  background: #f091a6;
}
section .ceremony_style4 .image_wrap_parent .image_wrap {
  max-width: 71.734vw;
  margin: 0 auto 8.53334vw 0;
}
section .ceremony_style4 .image_wrap_parent .catchphrase {
  bottom: 27.2vw;
  right: 5.335vw;
}
section .ceremony_style4 .image_wrap_parent .off_look {
  bottom: 55.468vw;
  right: 25.6vw;
  max-width: 20.8vw;
}
section .ceremony_style5 .image_wrap_parent .image_wrap {
  max-width: 71.734vw;
}
section .ceremony_style5 .image_wrap_parent .image_wrap.first {
  margin: 0 auto 8.53334vw 0;
}
section .ceremony_style5 .image_wrap_parent .image_wrap.third {
  margin: 0 0 8.53334vw auto;
}
section .ceremony_style5 .image_wrap_parent .catchphrase {
  top: 93.6vw;
  right: 6.135vw;
}
section .ceremony_style5 .image_wrap_parent .off_look {
  bottom: 69.6vw;
  left: 13.6vw;
  max-width: 20.8vw;
}
section .ceremony_style5 .image_wrap_parent:before {
  content: "";
  display: block;
  position: absolute;
  top: 194px;
  right: 0;
  left: 0;
  width: 100%;
  height: 265vw;
  margin: auto;
  background: #f091a6;
}
section .ceremony_style6 .image_wrap_parent .image_wrap.second {
  max-width: 71.734vw;
  margin: 0 0 8.53334vw auto;
}
section .ceremony_style6 .image_wrap_parent .image_wrap.third {
  max-width: 71.734vw;
  margin: 0 auto 8.53334vw 0;
}
section .ceremony_style6 .image_wrap_parent .catchphrase {
  top: 12.8vw;
  right: 5.6vw;
}
section .ceremony_style6 .image_wrap_parent .off_look {
  bottom: 70.4vw;
  right: 18.135vw;
  max-width: 20.8vw;
}
section .ceremony_style6 .image_wrap_parent:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 110px;
  right: 0;
  left: 0;
  width: 100%;
  height: 123vw;
  margin: auto;
  background: #f89e9e;
}
section .ceremony_style7 .image_wrap_parent .image_wrap.second {
  max-width: 78.935vw;
  margin: 0 0 8.53334vw auto;
}
section .ceremony_style7 .image_wrap_parent .image_wrap.third {
  max-width: 71.734vw;
  margin: 0 auto 8.53334vw 8vw;
}
section .ceremony_style7 .image_wrap_parent .catchphrase {
  top: 61.335vw;
  right: 8.8vw;
}
section .ceremony_style7 .image_wrap_parent .off_look {
  bottom: 72.8vw;
  left: 5.335vw;
  max-width: 20.8vw;
}
section .ceremony_style8 .image_wrap_parent .image_wrap.first {
  max-width: 89.6vw;
  margin: 0 auto 8.53334vw;
}
section .ceremony_style8 .image_wrap_parent .image_wrap.second {
  max-width: 71.734vw;
  margin: 0 auto 8.53334vw;
}
section .ceremony_style8 .image_wrap_parent .catchphrase {
  bottom: 80.535vw;
  right: 11.46666vw;
}
section .ceremony_style8 .image_wrap_parent:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 302vw;
  margin: auto;
  background: #f89e9e;
}
section .ceremony_style9 .image_wrap_parent .image_wrap.second {
  max-width: 71.734vw;
  margin: 0 auto 8.53334vw 0;
}
section .ceremony_style9 .image_wrap_parent .catchphrase {
  bottom: 67.7334vw;
  right: 5.335vw;
}
section .ceremony_style9 .image_wrap_parent .off_look {
  bottom: 25.868vw;
  right: 15.735vw;
  max-width: 18.93334vw;
}
section .ceremony_style10 .image_wrap_parent .image_wrap.first {
  margin-bottom: 0;
}
section .ceremony_style10 .image_wrap_parent .swiper.third {
  max-width: 71.734vw;
  margin: 0 auto 8.53334vw 0;
}
section .ceremony_style10 .image_wrap_parent .catchphrase {
  top: 112.267vw;
  right: 10.93333vw;
}
section .ceremony_style10 .image_wrap_parent .put_on {
  bottom: 55.468vw;
  right: 26.135vw;
  max-width: 19.2vw;
}
section .ceremony_style11 .image_wrap_parent .catchphrase {
  bottom: 72.268vw;
  left: 9.868vw;
}
section .ceremony_style11 .image_wrap_parent .put_on {
  bottom: 24vw;
  right: 14.4vw;
  max-width: 15.2vw;
}
section .ceremony_style12 .image_wrap_parent .image_wrap.first {
  max-width: 89.6vw;
  margin: 0 auto 8.53334vw;
}
section .ceremony_style12 .image_wrap_parent .image_wrap.second {
  max-width: 71.734vw;
  margin: 0 auto 8.53334vw;
}
section .ceremony_style12 .image_wrap_parent .catchphrase {
  bottom: 76.535vw;
  left: 10.93333vw;
}
section .ceremony_style12 .image_wrap_parent:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 302vw;
  margin: auto;
  background: #987c59;
}
section .ceremony_style13 .image_wrap_parent .swiper.first {
  max-width: 89.6vw;
  margin: 0 auto 8.53334vw;
}
section .ceremony_style13 .image_wrap_parent .image_wrap.second {
  max-width: 71.734vw;
  margin: 0 auto 8.53334vw;
}
section .ceremony_style13 .image_wrap_parent .catchphrase {
  top: 16vw;
  left: 15.2vw;
}
section .ceremony_style13 .image_wrap_parent:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 189px;
  right: 0;
  left: 0;
  width: 100%;
  height: 123vw;
  margin: auto;
  background: #987c59;
}
section .ceremony_style14 .image_wrap_parent .image_wrap.first {
  max-width: 71.734vw;
  margin: 0 auto 8.53334vw 0;
}
section .ceremony_style14 .image_wrap_parent .catchphrase {
  top: 88vw;
  right: 6.135vw;
}
section .ceremony_style14 .image_wrap_parent:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 205vw;
  margin: auto;
  background: #987c59;
}
section .ceremony_style15 .image_wrap_parent .swiper.first {
  margin-bottom: 0;
}
section .ceremony_style15 .image_wrap_parent .image_wrap.third {
  max-width: 71.734vw;
  margin: 0 0 8.53334vw auto;
}
section .ceremony_style15 .image_wrap_parent .catchphrase {
  bottom: 34.135vw;
  left: 7.73334vw;
}
section#section04 {
  margin-bottom: 0;
}
section#section04 .item_info_wrap {
  background: #798295;
}
section#section04 .item_info_wrap .sub_head {
  margin: 0 auto 8vw;
}
section#section04 .item_info_wrap .appeal_point {
  margin-bottom: 8.53334vw;
  font-size: 16px;
  line-height: 1.875;
  text-align: center;
  color: #fff;
}
section#section04 .item_info_wrap .description {
  color: #fff;
}
section#section04 .item_info_wrap .credit_wrap .credit .items_wrap p {
  color: #fff;
}
section#section04 .item_info_wrap .credit_wrap .credit .items_wrap .price .tax {
  color: #fff;
}
section#section04 .item_info_wrap .accordion_wrap button.other_item {
  border: none;
}
section#section04 .item_info_wrap .ceremony_item1 {
  padding: 16vw 0 21.33334vw;
}
section#section04 .item_info_wrap .ceremony_item1 .sub_head {
  max-width: 23.468vw;
}
section#section04 .item_info_wrap .ceremony_item1 .image_wrap_parent .image_wrap {
  max-width: 89.6vw;
  margin: 0 auto 8.53334vw 0;
}
section#section04 .item_info_wrap .ceremony_item2 {
  padding: 0 0 21.33334vw;
}
section#section04 .item_info_wrap .ceremony_item2 .sub_head {
  max-width: 47.735vw;
}
section#section04 .item_info_wrap .ceremony_item2 .image_wrap_parent .image_wrap {
  max-width: 89.6vw;
  margin: 0 0 8.53334vw auto;
}
section#section04 .item_info_wrap .ceremony_item3 {
  padding: 0 0 21.33334vw;
}
section#section04 .item_info_wrap .ceremony_item3 .sub_head {
  max-width: 59.735vw;
}

.other_information {
  width: 100%;
  padding: 16vw 0 17.06666vw;
  background: #fff;
}
.other_information .other_items {
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  height: 20.8vw;
  margin: 0 auto 18.135vw;
}
.other_information .other_items a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #f091a6;
}
.other_information .other_items a span {
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
}
.other_information .other_items .arrow_wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5.335vw;
}
.other_information .other_items .arrow_wrap .arrow {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 15px;
}
.other_information .other_items .arrow_wrap .arrow:before, .other_information .other_items .arrow_wrap .arrow:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10.8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000;
  transform-origin: calc(100% - 0.5px) 50%;
}
.other_information .other_items .arrow_wrap .arrow:before {
  transform: rotate(45deg);
}
.other_information .other_items .arrow_wrap .arrow:after {
  transform: rotate(-45deg);
}
.other_information .staff_credit p {
  font-family: "Bodoni Moda", serif;
  font-size: 12px;
  line-height: 2.1666666667;
  text-align: center;
}

footer {
  width: 100%;
}
footer .brand_information {
  padding: 16vw 0 16vw;
  background: #f091a6;
}
footer .brand_information .logo_wrap.anysis {
  max-width: 38.4vw;
  width: 100%;
  margin: 0 auto 5.335vw;
}
footer .brand_information .logo_wrap.any {
  max-width: 20.8vw;
  width: 100%;
  margin: 0 auto 10.66666vw;
}
footer .brand_information .instagram {
  width: 30px;
  height: 30px;
  margin: 0 auto 10.66666vw;
}
footer .brand_information .related_links_wrap {
  max-width: 78.935vw;
  width: 100%;
  margin: 0 auto;
}
footer .brand_information .related_links_wrap .accordion_wrap.official_brand_site button.other_item {
  border-bottom: 1px solid #000;
}
footer .brand_information .related_links_wrap .accordion_wrap button.other_item {
  position: relative;
  width: 100%;
  height: 16.268vw;
  border-top: 1px solid #000;
}
footer .brand_information .related_links_wrap .accordion_wrap button.other_item:before, footer .brand_information .related_links_wrap .accordion_wrap button.other_item:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 17px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
  transition: opacity 0.2s;
}
footer .brand_information .related_links_wrap .accordion_wrap button.other_item:after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s;
}
footer .brand_information .related_links_wrap .accordion_wrap button.other_item.show {
  border-bottom: none;
}
footer .brand_information .related_links_wrap .accordion_wrap button.other_item.show:before {
  opacity: 0;
}
footer .brand_information .related_links_wrap .accordion_wrap button.other_item.show:after {
  transform: translateY(-50%) rotate(180deg);
}
footer .brand_information .related_links_wrap .accordion_wrap button.other_item .text {
  display: block;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
footer .brand_information .related_links_wrap .accordion_wrap .accordion {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
footer .brand_information .related_links_wrap .accordion_wrap .accordion .logo_wrap.anysis {
  max-width: 27.7333vw;
  margin: 0 auto 8vw;
  padding-top: 8vw;
}
footer .brand_information .related_links_wrap .accordion_wrap .accordion .logo_wrap.any {
  max-width: 14.93333vw;
  margin: 0 auto 8vw;
}
footer .annotation_and_onward_crosset {
  padding: 10.66666vw 0 8.53334vw;
}
footer .annotation_and_onward_crosset .annotation {
  max-width: 78.935vw;
  width: 100%;
  margin: 0 auto 13.86666vw;
  font-size: 12px;
  line-height: 2.1666666667;
}
footer .annotation_and_onward_crosset .onward_crosset {
  max-width: 42.135vw;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 744px) {
  main {
    background: #fcdde4;
    transition: background-color 0.4s ease;
  }
  .pc_hidden {
    display: none;
  }
  #menu {
    display: none;
  }
  .main_visual {
    margin-bottom: 0;
    background: #f091a6;
  }
  .main_visual .swiper {
    display: none;
  }
  .main_visual .image_wrap {
    max-width: 87.848vw;
    margin: 0 auto;
  }
  .main_visual .title_wrap {
    bottom: 4.905vw;
    max-width: 73.7926vw;
  }
  .main_visual .title_wrap .subtitle {
    max-width: 35.94493vw;
    margin: 0 auto 2.63543vw;
  }
  .main_visual .title_wrap .subtitle.fadeInImgBOnTheSpot {
    animation-delay: 0.8s;
  }
  .main_visual .title_wrap .title.fadeInImgBOnTheSpot {
    animation-delay: 0.4s;
  }
  .main_visual .title_wrap .catchphrase {
    top: -4.246vw;
    right: auto;
    left: 4.6120096vw;
    max-width: 15.7399vw;
    height: 9.0044vw;
  }
  .main_visual .title_wrap .catchphrase .if_only_this {
    max-width: 12.4456vw;
  }
  .main_visual .logo_wrap {
    top: 1.537333vw;
    right: 1.537333vw;
    max-width: 12.0796vw;
  }
  .main_visual .logo_wrap .anysis {
    margin: 0 auto 1.1713vw;
  }
  .main_visual .logo_wrap .any {
    max-width: 6.5159vw;
  }
  .content_wrap_for_pc {
    width: 100%;
  }
  .content_wrap_for_pc #index {
    display: none;
    position: fixed;
    top: 10.2489vw;
    left: 7.1748vw;
    max-width: 34.627vw;
    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 .anchor_link_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.0986vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link {
    max-width: 16.7648vw;
    margin-bottom: 0;
  }
  .content_wrap_for_pc .section_wrap {
    max-width: 39.0928vw;
    width: 100%;
    margin: 0 12.07909vw 0 auto;
    background: #fff;
  }
  .content_wrap_for_pc .section_wrap .introduction_wrap {
    padding: 5.856512vw 0 4.39239vw;
    border-right: 1px solid #f091a6;
    border-left: 1px solid #f091a6;
  }
  .content_wrap_for_pc .section_wrap .introduction_wrap .main_description {
    margin-bottom: 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap .introduction_wrap .movie_wrap {
    max-width: 23.1333vw;
    margin: 0 auto;
  }
  .content_wrap_for_pc .section_wrap .introduction_wrap .movie_wrap iframe {
    min-height: 41.1425vw;
  }
  .content_wrap_for_pc .section_wrap section {
    margin-bottom: 0;
    padding-top: 4.39239vw;
    border-right: 1px solid #f091a6;
    border-left: 1px solid #f091a6;
  }
  .content_wrap_for_pc .section_wrap section#section03, .content_wrap_for_pc .section_wrap section#section04 {
    border: none;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap {
    max-width: 24.5977vw;
    margin: 0 auto 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap .logo {
    max-width: 7.4676vw;
    margin: 0 auto 1.756955vw;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap .head {
    max-width: 22.328vw;
  }
  .content_wrap_for_pc .section_wrap section .sub_head {
    margin: 0 auto 1.537333vw;
  }
  .content_wrap_for_pc .section_wrap section .line {
    margin-bottom: 1.756955vw;
  }
  .content_wrap_for_pc .section_wrap section .line.white {
    max-width: 24.5977vw;
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .swiper {
    margin-bottom: 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap {
    margin-bottom: 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap_parent .catchphrase {
    max-width: 5.4178vw;
  }
  .content_wrap_for_pc .section_wrap section .description {
    max-width: 27.526vw;
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap {
    max-width: 27.526vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap.hidden {
    display: none;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap {
    -moz-column-gap: 0.292826vw;
         column-gap: 0.292826vw;
    max-width: 14.9346vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap a {
    max-width: 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap.expand a {
    max-width: 100%;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap {
    margin: 1.46413vw 0 0;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap button.other_item {
    max-width: 27.526vw;
    height: 3.075vw;
    margin: 1.46413vw auto;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap button.other_item.show {
    margin-bottom: 1.46413vw;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap .accordion {
    max-width: 27.526vw;
    height: 0;
    overflow: hidden;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style1,
  .content_wrap_for_pc .section_wrap section .ceremony_style2,
  .content_wrap_for_pc .section_wrap section .ceremony_style3,
  .content_wrap_for_pc .section_wrap section .ceremony_style4,
  .content_wrap_for_pc .section_wrap section .ceremony_style6,
  .content_wrap_for_pc .section_wrap section .ceremony_style7,
  .content_wrap_for_pc .section_wrap section .ceremony_style8,
  .content_wrap_for_pc .section_wrap section .ceremony_style9,
  .content_wrap_for_pc .section_wrap section .ceremony_style10,
  .content_wrap_for_pc .section_wrap section .ceremony_style12,
  .content_wrap_for_pc .section_wrap section .ceremony_style13,
  .content_wrap_for_pc .section_wrap section .ceremony_style14 {
    margin-bottom: 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style5,
  .content_wrap_for_pc .section_wrap section .ceremony_style11,
  .content_wrap_for_pc .section_wrap section .ceremony_style15 {
    margin-bottom: 5.856512vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style1 .sub_head {
    max-width: 7.39388vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style1 .image_wrap_parent .image_wrap {
    max-width: 25.403vw;
    margin: 0 auto 2.342603vw 0;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style1 .image_wrap_parent .catchphrase {
    bottom: 13.6976vw;
    right: 3.95315vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style1 .image_wrap_parent .off_look {
    bottom: 7.32066vw;
    left: 3.95315vw;
    max-width: 5.7106vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style2 .sub_head {
    max-width: 7.4676vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style2 .image_wrap_parent .image_wrap.first {
    max-width: 29.722vw;
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style2 .image_wrap_parent .image_wrap.second {
    max-width: 23.7926vw;
    margin: 0 auto 2.342603vw 0;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style2 .image_wrap_parent .image_wrap.third {
    max-width: 23.7926vw;
    margin: 0 0 2.342603vw auto;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style2 .image_wrap_parent .catchphrase {
    bottom: 32.211vw;
    right: 3.95315vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style2 .image_wrap_parent .off_look {
    bottom: 21.523vw;
    left: 13.9824vw;
    max-width: 7.1748vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style3 .sub_head {
    max-width: 7.248vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style3 .image_wrap_parent .image_wrap,
  .content_wrap_for_pc .section_wrap section .ceremony_style3 .image_wrap_parent .swiper {
    max-width: 29.649vw;
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style3 .image_wrap_parent .catchphrase {
    top: 3.2211vw;
    right: 7.4676vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style3 .image_wrap_parent:before {
    bottom: 72px;
    height: 64.5686vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style4 .sub_head {
    max-width: 7.39388vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style4 .image_wrap_parent .image_wrap {
    max-width: 23.7926vw;
    margin: 0 auto 2.342603vw 0;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style4 .image_wrap_parent .catchphrase {
    bottom: 11.1277vw;
    right: 4.3197vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style4 .image_wrap_parent .off_look {
    bottom: 15.7399vw;
    right: 14.67069vw;
    max-width: 7.39388vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style5 {
    margin-bottom: 0;
    padding-bottom: 5.856512vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style5 .sub_head {
    max-width: 7.39388vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style5 .image_wrap_parent .image_wrap {
    max-width: 23.7926vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style5 .image_wrap_parent .image_wrap.first {
    margin: 0 auto 2.342603vw 0;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style5 .image_wrap_parent .image_wrap.third {
    margin: 0 0 2.342603vw auto;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style5 .image_wrap_parent .catchphrase {
    top: 20.864vw;
    right: 4.3197vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style5 .image_wrap_parent .off_look {
    bottom: 24.9255vw;
    left: 11.201vw;
    max-width: 5.7106vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style5 .image_wrap_parent:before {
    top: 183px;
    height: 101.977vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style6 .sub_head {
    max-width: 7.687vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style6 .image_wrap_parent .image_wrap.second {
    max-width: 23.8658vw;
    margin: 0 0 2.342603vw auto;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style6 .image_wrap_parent .image_wrap.third {
    max-width: 23.8658vw;
    margin: 0 auto 2.342603vw 0;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style6 .image_wrap_parent .catchphrase {
    top: 4.39239vw;
    right: 4.246vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style6 .image_wrap_parent .off_look {
    bottom: 23.8658vw;
    right: 14.4217vw;
    max-width: 6.22255vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style6 .image_wrap_parent:before {
    bottom: 177px;
    height: 33.8219vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style7 .sub_head {
    max-width: 7.4676vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style7 .image_wrap_parent .image_wrap.second {
    max-width: 26.135vw;
    margin: 0 0 2.342603vw auto;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style7 .image_wrap_parent .image_wrap.third {
    max-width: 23.7926vw;
    margin: 0 auto 2.342603vw 2.63543vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style7 .image_wrap_parent .catchphrase {
    top: 28.551vw;
    right: 4.246vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style7 .image_wrap_parent .off_look {
    bottom: 19.4vw;
    left: 1.83016vw;
    max-width: 5.7106vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style8 .sub_head {
    max-width: 7.76vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style8 .image_wrap_parent .image_wrap.first {
    max-width: 29.722vw;
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style8 .image_wrap_parent .image_wrap.second {
    max-width: 23.7926vw;
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style8 .image_wrap_parent .catchphrase {
    bottom: 31.9917vw;
    right: 3.5876vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style8 .image_wrap_parent:before {
    height: 113.763vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style9 .sub_head {
    max-width: 7.614vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style9 .image_wrap_parent .image_wrap.second {
    max-width: 23.7926vw;
    margin: 0 auto 2.342603vw 0;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style9 .image_wrap_parent .catchphrase {
    bottom: 20.498vw;
    right: 3.5876vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style9 .image_wrap_parent .off_look {
    bottom: 9.81vw;
    right: 11.7136vw;
    max-width: 5.7106vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style10 .sub_head {
    max-width: 10.176vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style10 .image_wrap_parent .swiper.third {
    max-width: 28.331vw;
    margin: 0 auto 2.342603vw 0;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style10 .image_wrap_parent .catchphrase {
    top: 40.4837vw;
    right: 5.7838vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style10 .image_wrap_parent .put_on {
    bottom: 22.694vw;
    right: 14.4949vw;
    max-width: 5.125vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style11 .sub_head {
    max-width: 9.883vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style11 .image_wrap_parent .image_wrap {
    margin-bottom: 0;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style11 .image_wrap_parent .catchphrase {
    bottom: 32.211vw;
    left: 4.026358vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style11 .image_wrap_parent .put_on {
    bottom: 10.3226vw;
    right: 6.735vw;
    max-width: 5.125vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style11 .description_credit_wrap {
    width: calc(100% + 2px);
    margin: 0px auto 0 -1px;
    padding-top: 2.342603vw;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style12 .head_wrap .head {
    max-width: 22.694vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style12 .sub_head {
    max-width: 9.883vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style12 .image_wrap_parent .image_wrap.first {
    max-width: 29.7955vw;
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style12 .image_wrap_parent .image_wrap.second {
    max-width: 23.8658vw;
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style12 .image_wrap_parent .catchphrase {
    bottom: 33.968vw;
    left: 5.92972vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style12 .image_wrap_parent:before {
    height: 113.763vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style13 .sub_head {
    max-width: 9.73649vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style13 .image_wrap_parent .swiper.first {
    max-width: 29.649vw;
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style13 .image_wrap_parent .image_wrap.second {
    max-width: 23.7926vw;
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style13 .image_wrap_parent .catchphrase {
    top: 5.19766vw;
    left: 7.9347vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style13 .image_wrap_parent:before {
    bottom: 233px;
    height: 44.656vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style14 .sub_head {
    max-width: 9.883vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style14 .image_wrap_parent .image_wrap.first {
    max-width: 23.7926vw;
    margin: 0 auto 2.342603vw 0;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style14 .image_wrap_parent .catchphrase {
    top: 30.637vw;
    right: 3.807vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style14 .image_wrap_parent:before {
    height: 78.697vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style15 .sub_head {
    max-width: 9.883vw;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style15 .image_wrap_parent .image_wrap.third {
    max-width: 23.8658vw;
    margin: 0 0 2.342603vw auto;
  }
  .content_wrap_for_pc .section_wrap section .ceremony_style15 .image_wrap_parent .catchphrase {
    bottom: 11.567vw;
    left: 4.539vw;
  }
  .content_wrap_for_pc .section_wrap section#section04 .head_wrap .head {
    max-width: 22.4012vw;
  }
  .content_wrap_for_pc .section_wrap section#section04 .item_info_wrap .sub_head {
    margin: 0 auto 2.19619vw;
  }
  .content_wrap_for_pc .section_wrap section#section04 .item_info_wrap .appeal_point {
    margin-bottom: 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section#section04 .item_info_wrap .ceremony_item1 {
    padding: 5.856512vw 0 0;
  }
  .content_wrap_for_pc .section_wrap section#section04 .item_info_wrap .ceremony_item1 .sub_head {
    max-width: 6.4427vw;
  }
  .content_wrap_for_pc .section_wrap section#section04 .item_info_wrap .ceremony_item1 .image_wrap_parent .image_wrap {
    max-width: 33.309vw;
    margin: 0 auto 2.342603vw 0;
  }
  .content_wrap_for_pc .section_wrap section#section04 .item_info_wrap .ceremony_item2 {
    padding: 5.856512vw 0 0;
  }
  .content_wrap_for_pc .section_wrap section#section04 .item_info_wrap .ceremony_item2 .sub_head {
    max-width: 13.10398vw;
  }
  .content_wrap_for_pc .section_wrap section#section04 .item_info_wrap .ceremony_item2 .image_wrap_parent .image_wrap {
    max-width: 33.309vw;
    margin: 0 0 2.342603vw auto;
  }
  .content_wrap_for_pc .section_wrap section#section04 .item_info_wrap .ceremony_item3 {
    padding: 5.856512vw 0 5.856512vw;
  }
  .content_wrap_for_pc .section_wrap section#section04 .item_info_wrap .ceremony_item3 .sub_head {
    max-width: 16.3988vw;
  }
  .other_information {
    padding: 7.32066vw 0 7.02782vw;
  }
  .other_information .other_items {
    max-width: 24.5977vw;
    height: 5.7106vw;
    margin: 0 auto 7.32066vw;
  }
  .other_information .other_items .arrow_wrap {
    right: 1.46413vw;
  }
  footer .brand_information {
    padding: 4.39239vw 0;
  }
  footer .brand_information .logo_wrap.anysis {
    max-width: 10.542vw;
    margin: 0 auto 1.46413vw;
  }
  footer .brand_information .logo_wrap.any {
    max-width: 5.7106vw;
    margin: 0 auto 2.92826vw;
  }
  footer .brand_information .instagram {
    margin: 0 auto 2.92826vw;
  }
  footer .brand_information .related_links_wrap {
    max-width: 79.5027vw;
  }
  footer .brand_information .related_links_wrap .accordion_wrap button.other_item {
    height: 4.466vw;
  }
  footer .brand_information .related_links_wrap .accordion_wrap .accordion .logo_wrap.anysis {
    max-width: 7.614vw;
    margin: 0 auto 2.19619vw;
    padding-top: 2.19619vw;
  }
  footer .brand_information .related_links_wrap .accordion_wrap .accordion .logo_wrap.any {
    max-width: 4.1vw;
    margin: 0 auto 2.19619vw;
  }
  footer .annotation_and_onward_crosset {
    padding: 2.92826vw 0 3.95315vw;
  }
  footer .annotation_and_onward_crosset .annotation {
    max-width: 100%;
    margin: 0 auto 4.39239vw;
    text-align: center;
  }
  footer .annotation_and_onward_crosset .onward_crosset {
    max-width: 11.567vw;
  }
}
@media screen and (744px <= width < 1100px) {
  svg.handwritten__svg {
    position: absolute;
    max-width: 16vw;
    top: 50%;
    transform: translateY(-47%);
  }
  .other_information .other_items {
    max-width: 30vw;
  }
}/*# sourceMappingURL=common.css.map */