@charset "UTF-8";
/* =============================================================================
   #Foundation
   ========================================================================== */
body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0px;
  padding: 0px;
}

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

fieldset, img, abbr, acronym {
  border: 0px;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

img {
  vertical-align: bottom;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

ol.reset, ul.reset {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

body {
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.03em;
}

:root {
  --spacer: 0.5rem;
  --header-h: 50px;
}

@media screen and (min-width: 900px) {
  :root {
    --spacer: 0.7rem;
    --header-h: 80px;
  }
}
.spacer-t {
  margin-top: calc(50 * 1px);
}
@media screen and (min-width: 900px) {
  .spacer-t {
    margin-top: clamp(calc(50 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
  }
}

.spacer-mb {
  margin-bottom: calc(50 * 1px);
}
@media screen and (min-width: 900px) {
  .spacer-mb {
    margin-bottom: clamp(calc(50 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
  }
}

.spacer-y, .p-flow-j, .p-flow-c, .p-flow-b, .p-furisode-e, .p-furisode-d, .p-hakama-c, .p-hakama-b, .p-shop-c, .p-shop-b, .p-top-sec-h, .p-top-sec-g, .p-top-sec-d, .p-top-sec-c, .p-top-sec-b, .p-top-sec-a {
  padding-top: calc(50 * 1px);
  padding-bottom: calc(50 * 1px);
}
@media screen and (min-width: 900px) {
  .spacer-y, .p-flow-j, .p-flow-c, .p-flow-b, .p-furisode-e, .p-furisode-d, .p-hakama-c, .p-hakama-b, .p-shop-c, .p-shop-b, .p-top-sec-h, .p-top-sec-g, .p-top-sec-d, .p-top-sec-c, .p-top-sec-b, .p-top-sec-a {
    padding-top: clamp(calc(50 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
    padding-bottom: clamp(calc(50 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
  }
}

.spacer-yb, .p-flow-a, .p-present-b, .p-furisode-c, .p-furisode-a, .p-hakama-a, .p-shop-a {
  padding-bottom: calc(50 * 1px);
}
@media screen and (min-width: 900px) {
  .spacer-yb, .p-flow-a, .p-present-b, .p-furisode-c, .p-furisode-a, .p-hakama-a, .p-shop-a {
    padding-bottom: clamp(calc(50 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
  }
}

.spacer-yt, .p-furisode-c {
  padding-top: calc(0 * 1px);
}
@media screen and (min-width: 900px) {
  .spacer-yt, .p-furisode-c {
    padding-top: clamp(calc(0 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
  }
}

.spacer-yt-b, .p-flow-h {
  padding-top: calc(50 * 1px);
}
@media screen and (min-width: 900px) {
  .spacer-yt-b, .p-flow-h {
    padding-top: clamp(calc(50 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  color: #000;
  outline: 0;
  overflow: hidden scroll;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  margin-bottom: 0 !important;
}

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

img[src$=".svg"] {
  width: 100%;
}

.br-sp {
  display: block;
}
@media screen and (min-width: 600px) {
  .br-sp {
    display: none;
  }
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.5, 0.5, 1);
  transition: all 0.2s cubic-bezier(0, 0.5, 0.5, 1);
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/*
=============================================================================
   #Layout
=============================================================================
*/
.l-header {
  height: var(--header-h);
  width: 100%;
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2%;
}
@media screen and (min-width: 1281px) {
  .l-header {
    padding-left: 5%;
  }
}
.l-header .logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header .logo .inner__logo {
  margin-right: 4%;
}
@media screen and (min-width: 600px) {
  .l-header .logo .inner__logo {
    margin-right: 2.5%;
  }
}
@media screen and (min-width: 900px) {
  .l-header .logo .inner__logo {
    margin-right: 4%;
  }
}
@media screen and (min-width: 1281px) {
  .l-header .logo .inner__logo {
    margin-right: 28px;
  }
}
.l-header .logo img {
  width: clamp(calc(180 * 1px), calc(100 / 1350 * 400 * 1vw), calc(400 * 1px));
}
.l-header .logo h1 {
  display: inline-block;
  font-size: 0.9rem;
  line-height: 1.5;
}
@media screen and (max-width: 340px) {
  .l-header .logo h1 {
    font-size: 0.6rem;
  }
}
@media screen and (min-width: 600px) {
  .l-header .logo h1 {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 900px) {
  .l-header .logo h1 {
    font-size: 1.4rem;
  }
}
.l-header .sns .insta {
  width: clamp(calc(20 * 1px), calc(100 / 1350 * 30 * 1vw), calc(30 * 1px));
}
.l-header .sns .map {
  width: clamp(calc(16 * 1px), calc(100 / 1350 * 20 * 1vw), calc(20 * 1px));
}
.l-header .l-header-contact {
  display: none;
}
@media screen and (min-width: 900px) {
  .l-header .l-header-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-header .l-header-tel {
  display: none;
}
@media screen and (min-width: 900px) {
  .l-header .l-header-tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-header .menu-btn {
  width: var(--header-h);
  height: var(--header-h);
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.l-header-contact {
  background-color: #000;
  height: var(--header-h);
  color: #FFF;
  letter-spacing: 0 !important;
}
.l-header-contact img {
  width: clamp(calc(14 * 1px), calc(100 / 1350 * 20 * 1vw), calc(20 * 1px));
}

.l-header-tel {
  background-color: #e45e32;
  height: var(--header-h);
  color: #FFF;
  line-height: 1;
}
.l-header-tel .tel-inner {
  display: inline-grid;
  grid-column-gap: calc(var(--spacer) * 1);
  grid-template-columns: auto auto;
  grid-template-areas: "area-a area-b" "area-c area-d";
}
.l-header-tel .tel-inner .number {
  grid-area: area-d;
  line-height: calc(24 / 28);
  letter-spacing: 0.1rem;
  font-size: clamp(calc(18 * 1px), calc(100 / 1350 * 28 * 1vw), calc(28 * 1px));
  font-weight: 400;
}
.l-header-tel .tel-inner img {
  grid-area: area-c;
  width: clamp(calc(14 * 1px), calc(100 / 1350 * 20 * 1vw), calc(20 * 1px));
}
.l-header-tel .tel-inner p {
  grid-area: area-b;
}
.l-header-tel a {
  color: #FFF;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.1s cubic-bezier(0, 0.5, 0.5, 1);
  transition: all 0.1s cubic-bezier(0, 0.5, 0.5, 1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 27px;
  height: 16px;
}
@media screen and (min-width: 900px) {
  .menu-trigger {
    width: 43px;
    height: 30px;
  }
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFF;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 50%;
  margin-top: -1px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
          transform: translateY(7px) rotate(-45deg);
}
@media screen and (min-width: 900px) {
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(14px) rotate(-45deg);
            transform: translateY(14px) rotate(-45deg);
  }
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(45deg);
          transform: translateY(-7px) rotate(45deg);
}
@media screen and (min-width: 900px) {
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-14px) rotate(45deg);
            transform: translateY(-14px) rotate(45deg);
  }
}

.l-top-main-image {
  position: relative;
}
.l-top-main-image .image {
  height: 500px;
  position: relative;
  z-index: 1;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 600px) {
  .l-top-main-image .image {
    height: 900px;
  }
}
.l-top-main-image .image.image1 {
  background-image: url("../image/top/top-main-image1-sp.jpg");
}
@media screen and (min-width: 600px) {
  .l-top-main-image .image.image1 {
    background-image: url("../image/top/top-main-image1.jpg");
  }
}
.l-top-main-image .image.image2 {
  background-image: url("../image/top/top-main-image2-sp.jpg");
}
@media screen and (min-width: 600px) {
  .l-top-main-image .image.image2 {
    background-image: url("../image/top/top-main-image2.jpg");
  }
}
.l-top-main-image .image.image3 {
  background-image: url("../image/top/top-main-image3-sp.jpg");
}
@media screen and (min-width: 600px) {
  .l-top-main-image .image.image3 {
    background-image: url("../image/top/top-main-image3.jpg");
  }
}
.l-top-main-image .image.image4 {
  background-image: url("../image/top/top-main-image4-sp.jpg");
}
@media screen and (min-width: 600px) {
  .l-top-main-image .image.image4 {
    background-image: url("../image/top/top-main-image4.jpg");
  }
}
.l-top-main-image .image.image5 {
  background-image: url("../image/top/top-main-image5-sp.jpg");
  background-position: right top;
}
@media screen and (min-width: 600px) {
  .l-top-main-image .image.image5 {
    background-image: url("../image/top/top-main-image5.jpg");
  }
}
.l-top-main-image .image.image6 {
  background-image: url("../image/top/top-main-image6-sp.jpg");
}
@media screen and (min-width: 600px) {
  .l-top-main-image .image.image6 {
    background-image: url("../image/top/top-main-image6.jpg");
  }
}
.l-top-main-image .image.image7 {
  background-image: url("../image/top/top-main-image7-sp.jpg");
}
@media screen and (min-width: 600px) {
  .l-top-main-image .image.image7 {
    background-image: url("../image/top/top-main-image7.jpg");
  }
}
.l-top-main-image .hdg {
  position: absolute;
  width: 100%;
  height: 445px;
  top: var(--header-h);
  z-index: 3;
}
@media screen and (min-width: 600px) {
  .l-top-main-image .hdg {
    height: 800px;
  }
}
.l-top-main-image .hdg h1 {
  line-height: calc(80 / 42);
  letter-spacing: 0rem;
  font-size: clamp(calc(28 * 1px), calc(100 / 1350 * 42 * 1vw), calc(42 * 1px));
  font-weight: 500;
  color: #FFF;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.9);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 600px) {
  .l-top-main-image .hdg h1 {
    left: initial;
    right: 10%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.l-wrapper {
  overflow-x: hidden;
}
.l-wrapper.blur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.l-wrapper.spacer {
  padding-top: calc(calc(var(--spacer) * 11) + var(--header-h));
}

.l-insta {
  background-color: #e45e32;
  text-align: center;
  padding-top: calc(30 * 1px);
  padding-bottom: calc(30 * 1px);
}
@media screen and (min-width: 900px) {
  .l-insta {
    padding-top: clamp(calc(30 * 1px), calc(60 * 100 / 1350 * 1vw), calc(60 * 1px));
    padding-bottom: clamp(calc(30 * 1px), calc(60 * 100 / 1350 * 1vw), calc(60 * 1px));
  }
}
.l-insta .hdg {
  line-height: calc(40 / 40);
  letter-spacing: 0.2rem;
  font-size: clamp(calc(20 * 1px), calc(100 / 1350 * 40 * 1vw), calc(40 * 1px));
  font-weight: 500;
  text-align: center;
  color: #FFF;
}
.l-insta .layout-a {
  display: inline-grid;
  grid-template-rows: auto 1px auto;
  grid-row-gap: calc(var(--spacer) * 4);
  grid-column-gap: calc(var(--spacer) * 6);
  margin-left: auto;
  margin-right: auto;
  color: #FFF;
  line-height: calc(28 / 20);
  letter-spacing: 0rem;
  font-size: clamp(calc(15 * 1px), calc(100 / 1350 * 20 * 1vw), calc(20 * 1px));
}
@media screen and (min-width: 900px) {
  .l-insta .layout-a {
    grid-template-columns: 1fr 1px 1fr;
    grid-row-gap: initial;
  }
}
.l-insta .layout-a .item {
  color: #FFF;
}
.l-insta .layout-a .border {
  background-color: #f1aa92;
}
.l-insta .layout-a .item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
}
.l-insta .layout-a .item-inner img {
  width: clamp(calc(30 * 1px), calc(100 / 1350 * 56 * 1vw), calc(56 * 1px));
}

.l-footer {
  color: #FFF;
  background-color: #000;
  padding-top: calc(20 * 1px);
  padding-bottom: calc(20 * 1px);
}
@media screen and (min-width: 900px) {
  .l-footer {
    padding-top: clamp(calc(20 * 1px), calc(80 * 100 / 1350 * 1vw), calc(80 * 1px));
  }
}
@media screen and (min-width: 900px) {
  .l-footer {
    padding-bottom: clamp(calc(20 * 1px), calc(60 * 100 / 1350 * 1vw), calc(60 * 1px));
  }
}
.l-footer .info {
  line-height: calc(32 / 20);
  letter-spacing: 0.1rem;
  font-size: clamp(calc(14 * 1px), calc(100 / 1350 * 20 * 1vw), calc(20 * 1px));
}
.l-footer .l-footer-inner {
  display: grid;
  grid-row-gap: 20px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 900px) {
  .l-footer .l-footer-inner {
    grid-template-columns: 1fr auto;
    grid-row-gap: initial;
    width: 92%;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-footer .l-footer-inner .column-a {
  width: 92%;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .l-footer .l-footer-inner .column-a {
    text-align: left;
  }
}
.l-footer .l-footer-menu {
  display: grid;
  grid-row-gap: 1px;
  grid-column-gap: 1px;
  grid-template-columns: auto auto;
  line-height: calc(32 / 16);
  letter-spacing: 0.1rem;
  font-size: clamp(calc(14 * 1px), calc(100 / 1350 * 16 * 1vw), calc(16 * 1px));
  background-color: #FFF;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
@media screen and (min-width: 900px) {
  .l-footer .l-footer-menu {
    background-color: initial;
    grid-row-gap: calc(var(--spacer) * 1.5);
    grid-column-gap: calc(var(--spacer) * 9);
    border: initial;
  }
}
.l-footer .l-footer-menu li {
  background-color: #000;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .l-footer .l-footer-menu li {
    background-color: initial;
    text-align: left;
    padding: initial !important;
  }
}
.l-footer a {
  color: #FFF;
}
.l-footer .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.l-footer .sns .icon {
  width: clamp(calc(16 * 1px), calc(100 / 1350 * 24 * 1vw), calc(24 * 1px));
  line-height: 1 !important;
}

.l-copyright-m {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr auto;
}
.l-copyright-m p {
  font-size: 10px;
  letter-spacing: 0 !important;
}
.l-copyright-m a {
  font-size: 10px;
}

.l-globalnavi-sp {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  z-index: 90;
  background-color: #efeeee;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.5, 0.5, 1);
  transition: all 0.2s cubic-bezier(0, 0.5, 0.5, 1);
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.l-globalnavi-sp.open {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
.l-globalnavi-sp .l-globalnavi-sp__inner {
  height: 100%;
  width: 100%;
  overflow: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.l-globalnavi-sp ul {
  text-align: center;
}
.l-globalnavi-sp ul a {
  padding-top: calc(var(--spacer) * 2);
  padding-bottom: calc(var(--spacer) * 2);
  display: block;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.5, 0.5, 1);
  transition: all 0.2s cubic-bezier(0, 0.5, 0.5, 1);
}
.l-globalnavi-sp ul a:hover {
  background-color: #FFF;
  position: relative;
  color: #e45e32;
  opacity: 1;
}
.l-globalnavi-sp ul a:hover:before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #e45e32;
  border-right: 1px solid #e45e32;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  position: absolute;
  right: 10%;
  top: 50%;
}
.l-globalnavi-sp .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.l-globalnavi-sp .contact .l-header-contact {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-globalnavi-sp .contact .l-header-tel {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*
=============================================================================
   #Object
=============================================================================
*/
/* -----------------------------------------------------------------------------
   #Component
   -------------------------------------------------------------------------- */
.c-hdg-a {
  line-height: calc(68 / 42);
  letter-spacing: 0.4rem;
  font-size: clamp(calc(22 * 1px), calc(100 / 1350 * 42 * 1vw), calc(42 * 1px));
  font-weight: 500;
  margin-bottom: calc(25 * 1px);
}
@media screen and (min-width: 900px) {
  .c-hdg-a {
    margin-bottom: clamp(calc(25 * 1px), calc(40 * 100 / 1350 * 1vw), calc(40 * 1px));
  }
}
.c-hdg-a .inner__text {
  line-height: calc(68 / 38);
  letter-spacing: 0.4rem;
  font-size: clamp(calc(18 * 1px), calc(100 / 1350 * 38 * 1vw), calc(38 * 1px));
}

.c-hdg-b {
  line-height: calc(76 / 44);
  letter-spacing: 0.4rem;
  font-size: clamp(calc(24 * 1px), calc(100 / 1350 * 44 * 1vw), calc(44 * 1px));
  font-weight: 500;
  margin-bottom: calc(25 * 1px);
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .c-hdg-b {
    margin-bottom: clamp(calc(25 * 1px), calc(40 * 100 / 1350 * 1vw), calc(40 * 1px));
  }
}
.c-hdg-b:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: clamp(calc(50 * 1px), calc(100 / 1350 * 70 * 1vw), calc(70 * 1px));
  background-color: #e45e32;
}
.c-hdg-b .inner__text {
  line-height: calc(76 / 40);
  letter-spacing: 0.4rem;
  font-size: clamp(calc(20 * 1px), calc(100 / 1350 * 40 * 1vw), calc(40 * 1px));
}

.c-hdg-c, .p-flow-j .layou-a li {
  line-height: calc(50 / 32);
  letter-spacing: 0rem;
  font-size: clamp(calc(19 * 1px), calc(100 / 1350 * 32 * 1vw), calc(32 * 1px));
  font-weight: 500;
  text-align: center;
}
.c-hdg-c.color-a, .p-flow-j .layou-a li.color-a {
  color: #e45e32;
}
.c-hdg-c .inner__text, .p-flow-j .layou-a li .inner__text {
  line-height: calc(50 / 26);
  letter-spacing: 0rem;
  font-size: clamp(calc(14 * 1px), calc(100 / 1350 * 26 * 1vw), calc(26 * 1px));
}

.price {
  line-height: calc(43 / 44);
  letter-spacing: 0rem;
  font-size: clamp(calc(23 * 1px), calc(100 / 1350 * 44 * 1vw), calc(44 * 1px));
  color: #e45e32;
  font-weight: 500;
}

.c-hdg-d {
  line-height: calc(76 / 40);
  letter-spacing: 0rem;
  font-size: clamp(calc(20 * 1px), calc(100 / 1350 * 40 * 1vw), calc(40 * 1px));
  font-weight: 500;
}
.c-hdg-d.color-a {
  color: #e45e32;
}
.c-hdg-d .inner__text {
  line-height: calc(76 / 36);
  letter-spacing: 0rem;
  font-size: clamp(calc(16 * 1px), calc(100 / 1350 * 36 * 1vw), calc(36 * 1px));
}

.c-btn-a {
  height: clamp(calc(50 * 1px), calc(100 / 1350 * 80 * 1vw), calc(80 * 1px));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: calc(48 / 26);
  letter-spacing: 0rem;
  font-size: clamp(calc(15 * 1px), calc(100 / 1350 * 26 * 1vw), calc(26 * 1px));
  font-weight: 500;
  letter-spacing: 0.4rem !important;
  border: 1px solid #e45e32;
  background-color: #FFF;
}
.c-btn-a span {
  position: relative;
  color: #e45e32;
}
.c-btn-a span:before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #e45e32;
  border-right: 1px solid #e45e32;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  position: absolute;
  right: -20%;
  top: 50%;
}
@media screen and (min-width: 900px) {
  .c-btn-a span:before {
    width: 15px;
    height: 15px;
    border-top: 2px solid #e45e32;
    border-right: 2px solid #e45e32;
  }
}
.c-btn-a.var-b {
  background-color: initial;
  border: 1px solid #000;
}
.c-btn-a.var-b span {
  color: #000;
}
.c-btn-a.var-b span:before {
  border-color: #000;
  border-color: #000;
}
.c-btn-a.var-c {
  background-color: initial;
  border: 1px solid #FFF;
}
.c-btn-a.var-c span {
  color: #FFF;
}
.c-btn-a.var-c span:before {
  border-color: #FFF;
  border-color: #FFF;
}
.c-btn-a.var-d {
  background-color: #e45e32;
  border: 1px solid #FFF;
}
.c-btn-a.var-d span {
  color: #FFF;
}
.c-btn-a.var-d span:before {
  border-color: #FFF;
  border-color: #FFF;
}

.swiper-next {
  width: 25px;
  height: 25px;
  border-top: 1px solid #e45e32;
  border-right: 1px solid #e45e32;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
          transform: rotate(45deg) translate(-50%, -50%);
  cursor: pointer;
}

.swiper-prev {
  width: 25px;
  height: 25px;
  border-bottom: 1px solid #e45e32;
  border-left: 1px solid #e45e32;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
          transform: rotate(45deg) translate(-50%, -50%);
  cursor: pointer;
}

.c-image-a {
  position: relative;
}
.c-image-a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-image-a.height-auto img {
  height: auto;
}

.c-c-width-a {
  margin-left: auto;
  margin-right: auto;
  width: 92%;
  max-width: 1350px;
}

.c-c-width-b {
  margin-left: auto;
  margin-right: auto;
  width: 92%;
  max-width: 1250px;
}

.overlay {
  position: relative;
  margin-top: clamp(50px, 7.4074074074vw, 100px);
  margin-bottom: clamp(50px, 7.4074074074vw, 100px);
  padding: 0;
}
.overlay iframe {
  position: relative;
  z-index: 0;
}
.overlay__target {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 100;
}

/* -----------------------------------------------------------------------------
   #Project
   -------------------------------------------------------------------------- */
.p-top-sec-a .hdg {
  text-align: center;
  line-height: calc(58 / 28);
  letter-spacing: 0rem;
  font-size: clamp(calc(18 * 1px), calc(100 / 1350 * 28 * 1vw), calc(28 * 1px));
}

.p-top-sec-b {
  background-color: #f7ded7;
  overflow-x: hidden;
}
.p-top-sec-b .p-top-sec-b-inner {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .p-top-sec-b .p-top-sec-b-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 5%;
  }
}
.p-top-sec-b .p-top-sec-b-inner .hdg {
  line-height: calc(48 / 24);
  letter-spacing: 0rem;
  font-size: clamp(calc(20 * 1px), calc(100 / 1350 * 24 * 1vw), calc(24 * 1px));
  text-align: center;
}
.p-top-sec-b .p-top-sec-b-inner .item .image {
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .p-top-sec-b .p-top-sec-b-inner .item .image {
    width: initial;
  }
}
.p-top-sec-b .swiper-b {
  position: relative;
}
.p-top-sec-b .swiper-b .swiper-b-next {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 3;
}
.p-top-sec-b .swiper-b .swiper-b-prev {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 3;
}
.p-top-sec-b .swiper-b .hdg {
  font-size: clamp(18px, 2vw, 20px);
  letter-spacing: 0.1rem;
}
.p-top-sec-b .swiper-b .annotation {
  font-size: clamp(10px, 2vw, 12px);
  text-align: center;
  margin-top: 0.5rem;
}
.p-top-sec-b .c-btn-a {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .p-top-sec-b .c-btn-a {
    max-width: 600px;
  }
}

.p-top-sec-c .p-top-sec-c-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: calc(var(--spacer) * 6);
}
@media screen and (min-width: 900px) {
  .p-top-sec-c .p-top-sec-c-inner {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 5%;
  }
}
.p-top-sec-c .p-top-sec-c-inner .item {
  display: grid;
  grid-row-gap: calc(var(--spacer) * 9);
  grid-template-columns: 1fr 1.6fr;
  text-align: left;
  grid-column-gap: 5%;
}
@media screen and (min-width: 900px) {
  .p-top-sec-c .p-top-sec-c-inner .item {
    grid-template-columns: 1fr;
    text-align: center;
    grid-template-rows: auto 1fr;
  }
}
.p-top-sec-c .p-top-sec-c-inner .hdg {
  line-height: calc(56 / 32);
  letter-spacing: 0rem;
  font-size: clamp(calc(17 * 1px), calc(100 / 1350 * 32 * 1vw), calc(32 * 1px));
  padding-bottom: calc(var(--spacer) * 2.5);
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-top-sec-c .p-top-sec-c-inner .hdg {
    padding-bottom: calc(var(--spacer) * 4);
  }
}
.p-top-sec-c .p-top-sec-c-inner .hdg::before {
  content: "";
  width: clamp(calc(40 * 1px), calc(100 / 1350 * 70 * 1vw), calc(70 * 1px));
  height: 1px;
  background-color: #e45e32;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 900px) {
  .p-top-sec-c .p-top-sec-c-inner .hdg::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-top-sec-c .p-top-sec-c-inner .hdg-b {
  line-height: calc(42 / 24);
  letter-spacing: 0rem;
  font-size: clamp(calc(13 * 1px), calc(100 / 1350 * 24 * 1vw), calc(24 * 1px));
  margin-top: calc(var(--spacer) * 2.5);
}
@media screen and (min-width: 900px) {
  .p-top-sec-c .p-top-sec-c-inner .hdg-b {
    margin-top: calc(var(--spacer) * 4);
  }
}

.p-top-sec-d {
  background-color: #fcf6ee;
  position: relative;
  overflow-x: hidden;
}
.p-top-sec-d .hdg {
  text-align: center;
}
.p-top-sec-d .hdg .color-primary {
  color: #e45e32;
  font-weight: bold;
}
.p-top-sec-d .c-btn-a {
  width: 90%;
  max-width: 660px;
  background-color: initial;
  margin-left: auto;
  margin-right: auto;
}
.p-top-sec-d .p-top-sec-d-inner {
  position: relative;
  z-index: 5;
}
.p-top-sec-d .pattern-a {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(calc(140 * 1px), calc(100 / 1350 * 660 * 1vw), calc(660 * 1px));
}
.p-top-sec-d .pattern-b {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: clamp(calc(40 * 1px), calc(100 / 1350 * 80 * 1vw), calc(80 * 1px));
}
.p-top-sec-d .pattern-c {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: clamp(calc(110 * 1px), calc(100 / 1350 * 360 * 1vw), calc(360 * 1px));
}

.p-top-sec-e {
  position: relative;
  z-index: 2 !important;
}
.p-top-sec-e .swiper-slide img {
  width: 100%;
}

.swiper-c {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .swiper-c {
    max-width: 1350px;
  }
}
.swiper-c .swiper-c-next {
  position: absolute;
  right: 5%;
  top: 50%;
  z-index: 3;
}
.swiper-c .swiper-c-prev {
  position: absolute;
  left: 5%;
  top: 50%;
  z-index: 3;
}

.p-top-sec-f {
  background-color: #fcf6ee;
  padding-top: calc(50 * 1px);
  padding-bottom: calc(50 * 1px);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .p-top-sec-f {
    padding-top: clamp(calc(50 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
    padding-bottom: clamp(calc(50 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
  }
}
.p-top-sec-f .hdg {
  text-align: center;
}
.p-top-sec-f .c-btn-a {
  width: 100%;
  background-color: initial;
  margin-left: auto;
  margin-right: auto;
}
.p-top-sec-f .p-top-sec-f-inner {
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 900px) {
  .p-top-sec-f .p-top-sec-f-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.p-top-sec-f .pattern-a {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: clamp(calc(110 * 1px), calc(100 / 1350 * 470 * 1vw), calc(470 * 1px));
}
.p-top-sec-f .pattern-b {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(calc(140 * 1px), calc(100 / 1350 * 660 * 1vw), calc(660 * 1px));
}
.p-top-sec-f .pattern-c {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: clamp(calc(40 * 1px), calc(100 / 1350 * 80 * 1vw), calc(80 * 1px));
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-top-sec-f .kirinuki {
  position: absolute;
  right: -15%;
  top: 10%;
  z-index: 1;
  width: clamp(calc(180 * 1px), calc(100 / 1350 * 600 * 1vw), calc(600 * 1px));
}
@media screen and (min-width: 900px) {
  .p-top-sec-f .kirinuki {
    right: 5%;
    top: -5%;
  }
}

.p-top-sec-g iframe {
  width: 100% !important;
  height: 100px !important;
}
@media screen and (min-width: 600px) {
  .p-top-sec-g iframe {
    height: 200px !important;
  }
}
@media screen and (min-width: 900px) {
  .p-top-sec-g iframe {
    height: 320px !important;
  }
}
@media screen and (min-width: 1281px) {
  .p-top-sec-g iframe {
    height: 550px !important;
  }
}

.p-top-sec-h {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  grid-row-gap: calc(var(--spacer) * 6);
  grid-column-gap: 3%;
}
@media screen and (min-width: 900px) {
  .p-top-sec-h {
    grid-template-columns: 1fr 1fr;
  }
}

.p-top-sec-i {
  background-color: #f4bfad;
  padding-top: calc(0 * 1px);
  padding-bottom: calc(0 * 1px);
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-top-sec-i {
    background-color: initial;
  }
}
@media screen and (min-width: 900px) {
  .p-top-sec-i {
    padding-top: clamp(calc(0 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
    padding-bottom: clamp(calc(0 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
  }
}
.p-top-sec-i .bg {
  width: 100%;
  height: 300px;
  background-image: url("../image/top/top-voice-image.jpg");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (min-width: 900px) {
  .p-top-sec-i .bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-size: auto 140%;
  }
}
.p-top-sec-i .hdg {
  text-align: center;
}
.p-top-sec-i .p-top-sec-i-inner {
  position: relative;
  z-index: 5;
  padding-top: calc(40 * 1px);
  padding-bottom: calc(40 * 1px);
}
@media screen and (min-width: 900px) {
  .p-top-sec-i .p-top-sec-i-inner {
    padding-top: clamp(calc(40 * 1px), calc(0 * 100 / 1350 * 1vw), calc(0 * 1px));
    padding-bottom: clamp(calc(40 * 1px), calc(0 * 100 / 1350 * 1vw), calc(0 * 1px));
  }
}
@media screen and (min-width: 900px) {
  .p-top-sec-i .p-top-sec-i-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: initial;
  }
}
.p-top-sec-i .p-top-sec-i-inner .item {
  grid-area: area-b;
}
.p-top-sec-i:before {
  content: "";
  width: 55%;
  height: 100%;
  background-color: #e45e32;
  position: absolute;
  /*mix-blend-mode: multiply;*/
  right: 0;
  top: 0;
  z-index: 2;
  opacity: 0.6;
}

.p-top-sec-j {
  margin-top: calc(50 * 1px);
  border: 1px solid #e45e32;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "area-a" "area-b";
}
@media screen and (min-width: 900px) {
  .p-top-sec-j {
    margin-top: clamp(calc(50 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
  }
}
@media screen and (min-width: 900px) {
  .p-top-sec-j {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "area-a area-b";
  }
}
.p-top-sec-j .bg {
  height: 300px;
  background-position: center top;
  background-image: url("../image/top/top-flow-image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  grid-area: area-a;
}
@media screen and (min-width: 900px) {
  .p-top-sec-j .bg {
    height: initial;
    background-position: center center;
  }
}
.p-top-sec-j .c-hdg-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-top-sec-j .c-hdg-a .icon {
  width: clamp(calc(32 * 1px), calc(100 / 1350 * 59 * 1vw), calc(59 * 1px));
}
.p-top-sec-j .hdg {
  text-align: center;
}
.p-top-sec-j .p-top-sec-j-inner {
  color: #e45e32;
  padding: calc(var(--spacer) * 4);
  grid-area: area-b;
}
@media screen and (min-width: 900px) {
  .p-top-sec-j .p-top-sec-j-inner {
    padding: calc(var(--spacer) * 6);
  }
}

.p-top-sec-k {
  background-color: #7f7f7f;
  padding-top: calc(0 * 1px);
  padding-bottom: calc(0 * 1px);
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-top-sec-k {
    background-color: initial;
  }
}
@media screen and (min-width: 900px) {
  .p-top-sec-k {
    padding-top: clamp(calc(0 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
    padding-bottom: clamp(calc(0 * 1px), calc(100 * 100 / 1350 * 1vw), calc(100 * 1px));
  }
}
.p-top-sec-k .bg {
  width: 100%;
  height: 300px;
  background-image: url("../image/top/top-shop.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (min-width: 900px) {
  .p-top-sec-k .bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
  }
}
.p-top-sec-k .hdg {
  text-align: center;
}
.p-top-sec-k .p-top-sec-k-inner {
  padding-top: calc(40 * 1px);
  padding-bottom: calc(40 * 1px);
  position: relative;
  z-index: 5;
  color: #FFF;
  color: #FFF;
}
@media screen and (min-width: 900px) {
  .p-top-sec-k .p-top-sec-k-inner {
    padding-top: clamp(calc(40 * 1px), calc(0 * 100 / 1350 * 1vw), calc(0 * 1px));
    padding-bottom: clamp(calc(40 * 1px), calc(0 * 100 / 1350 * 1vw), calc(0 * 1px));
  }
}
@media screen and (min-width: 900px) {
  .p-top-sec-k .p-top-sec-k-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.p-top-sec-k:before {
  content: "";
  width: 55%;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0.5;
}

.p-shop-a {
  text-align: center;
}

.p-shop-b {
  background-color: #f7ded7;
}
.p-shop-b .p-shop-b-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: calc(var(--spacer) * 4);
}
@media screen and (min-width: 900px) {
  .p-shop-b .p-shop-b-inner {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 3%;
  }
}
.p-shop-b .p-shop-b-inner img {
  width: 100%;
}

.p-shop-c .map iframe {
  width: 100%;
  height: 383px;
}
@media screen and (min-width: 900px) {
  .p-shop-c .map iframe {
    height: 733px;
  }
}

.p-hakama-a .image {
  max-width: 1040px;
  height: clamp(calc(260 * 1px), calc(100 / 1350 * 520 * 1vw), calc(520 * 1px));
  margin-left: auto;
  margin-right: auto;
}
.p-hakama-a .prices {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-column-gap: calc(var(--spacer) * 4);
  grid-row-gap: calc(var(--spacer) * 4);
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
}

.p-hakama-b {
  background-color: #f7ded7;
}
.p-hakama-b .p-hakama-b-inner {
  width: 90%;
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
}
.p-hakama-b .circle {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  grid-column-gap: calc(var(--spacer) * 4);
  margin-left: auto;
  margin-right: auto;
}
.p-hakama-b .circle .item {
  width: clamp(calc(80 * 1px), calc(100 / 1350 * 120 * 1vw), calc(120 * 1px));
  height: clamp(calc(80 * 1px), calc(100 / 1350 * 120 * 1vw), calc(120 * 1px));
  background-color: #e45e32;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  font-weight: 500;
}
.p-hakama-b .frame {
  background-color: #FFF;
  border: 1px solid #e45e32;
}

.p-hakama-list-a {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 5%;
  grid-row-gap: calc(var(--spacer) * 9);
}
@media screen and (min-width: 900px) {
  .p-hakama-list-a {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.p-hakama-list-b {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 5%;
  grid-row-gap: calc(var(--spacer) * 6);
}
@media screen and (min-width: 900px) {
  .p-hakama-list-b {
    grid-template-columns: 1fr 1fr;
  }
}

.p-hakama-list-c {
  display: grid;
  grid-column-gap: 5%;
  grid-row-gap: calc(var(--spacer) * 6);
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "area-a area-a" "area-b area-c";
}
@media screen and (min-width: 900px) {
  .p-hakama-list-c {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.p-hakama-list-c .first {
  grid-area: area-a;
  width: 47.5%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .p-hakama-list-c .first {
    grid-area: initial;
    width: initial;
  }
}

.p-price-list {
  line-height: calc(42 / 24);
  letter-spacing: 0rem;
  font-size: clamp(calc(13 * 1px), calc(100 / 1350 * 24 * 1vw), calc(24 * 1px));
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-column-gap: calc(var(--spacer) * 4);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
}

.p-furisode-a .frame {
  background-color: #FFF;
  border: 1px solid #e45e32;
  color: #e45e32;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.p-furisode-b {
  position: relative;
  z-index: 2;
}
.p-furisode-b .swiper-slide img {
  width: 100%;
}

.swiper-a,
.swiper-c,
.swiper-d {
  position: relative;
}
.swiper-a .swiper-d-next,
.swiper-c .swiper-d-next,
.swiper-d .swiper-d-next {
  position: absolute;
  right: 5%;
  top: 50%;
  z-index: 3;
}
.swiper-a .swiper-d-prev,
.swiper-c .swiper-d-prev,
.swiper-d .swiper-d-prev {
  position: absolute;
  left: 5%;
  top: 50%;
  z-index: 3;
}

.swiper-pagination-bullet {
  border: 1px solid #e45e32;
  background-color: #FFF !important;
  width: 11px !important;
  height: 11px !important;
  margin: 0 5px;
  opacity: 1 !important;
  border-radius: 50% !important;
}

.swiper-pagination-bullet-active {
  background-color: #e45e32 !important;
}

.p-furisode-hdg {
  text-align: center;
}
.p-furisode-hdg .new {
  width: clamp(calc(73 * 1px), calc(100 / 1350 * 122 * 1vw), calc(122 * 1px));
  margin-left: auto;
  margin-right: auto;
}
.p-furisode-hdg .classical {
  width: clamp(calc(147 * 1px), calc(100 / 1350 * 245 * 1vw), calc(245 * 1px));
  margin-left: auto;
  margin-right: auto;
}
.p-furisode-hdg .modern {
  width: clamp(calc(135 * 1px), calc(100 / 1350 * 225 * 1vw), calc(225 * 1px));
  margin-left: auto;
  margin-right: auto;
}
.p-furisode-hdg .cute {
  width: clamp(calc(73 * 1px), calc(100 / 1350 * 122 * 1vw), calc(122 * 1px));
  margin-left: auto;
  margin-right: auto;
}
.p-furisode-hdg .retro {
  width: clamp(calc(81 * 1px), calc(100 / 1350 * 136 * 1vw), calc(136 * 1px));
  margin-left: auto;
  margin-right: auto;
}
.p-furisode-hdg h3 {
  font-weight: 500;
}

.p-furisode-c {
  background-color: #f7ded7;
}
.p-furisode-c .c-image-a {
  height: clamp(calc(240 * 1px), calc(100 / 1350 * 700 * 1vw), calc(700 * 1px));
}

.p-furisode-d .p-furisode-d-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 5%;
  grid-row-gap: calc(var(--spacer) * 6);
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .p-furisode-d .p-furisode-d-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.p-furisode-d .price-list {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-column-gap: 8%;
  grid-row-gap: calc(var(--spacer) * 1.5);
  margin-left: auto;
  margin-right: auto;
}
.p-furisode-d .price-list div {
  text-align: right;
  white-space: nowrap;
}
.p-furisode-d .frame {
  font-weight: 500;
  color: #e45e32;
  border: 1px solid #e45e32;
  text-align: center;
}
.p-furisode-d .hdg {
  background-color: #e45e32;
  color: #FFF;
}

.p-furisode-e {
  background-color: #f7ded7;
}
.p-furisode-e .list-a {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  grid-column-gap: calc(var(--spacer) * 2.5);
}
.p-furisode-e .list-b {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  grid-column-gap: calc(var(--spacer) * 2.5);
}
.p-furisode-e .list-item {
  line-height: calc(42 / 30);
  letter-spacing: 0rem;
  font-size: clamp(calc(16 * 1px), calc(100 / 1350 * 30 * 1vw), calc(30 * 1px));
  height: clamp(calc(74 * 1px), calc(100 / 1350 * 170 * 1vw), calc(170 * 1px));
  width: clamp(calc(74 * 1px), calc(100 / 1350 * 170 * 1vw), calc(170 * 1px));
  background-color: #e45e32;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
}
.p-furisode-e .plan__text {
  margin-bottom: 10px;
}
.p-furisode-e .prices {
  position: relative;
}
.p-furisode-e .hdg-b {
  background-color: #e45e32;
  color: #FFF;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.p-furisode-e .hdg-c {
  line-height: calc(42 / 22);
  letter-spacing: 0rem;
  font-size: clamp(calc(13 * 1px), calc(100 / 1350 * 22 * 1vw), calc(22 * 1px));
}
.p-furisode-e .photo-slide {
  margin-left: auto;
  margin-right: auto;
}

#mamafuri, #photo-seijin {
  padding-top: var(--header-h);
  margin-top: calc(-1 * var(--header-h));
}

.p-tomesode-a {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 5%;
  grid-row-gap: calc(var(--spacer) * 9);
  width: 92%;
  max-width: 1330px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(40 * 1px);
}
@media screen and (min-width: 900px) {
  .p-tomesode-a {
    grid-template-columns: 45% 50%;
  }
}
@media screen and (min-width: 900px) {
  .p-tomesode-a {
    margin-bottom: clamp(calc(40 * 1px), calc(135 * 100 / 1350 * 1vw), calc(135 * 1px));
  }
}
.p-tomesode-a .image {
  height: 465px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 900px) {
  .p-tomesode-a .image {
    height: initial;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-tomesode-b {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 900px) {
  .p-tomesode-b {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-tomesode-b .circle {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  grid-column-gap: calc(var(--spacer) * 4);
  margin-left: auto;
  margin-right: auto;
}
.p-tomesode-b .circle .item {
  width: clamp(calc(80 * 1px), calc(100 / 1350 * 100 * 1vw), calc(100 * 1px));
  height: clamp(calc(80 * 1px), calc(100 / 1350 * 100 * 1vw), calc(100 * 1px));
  background-color: #e45e32;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  font-weight: 500;
}
.p-tomesode-b .frame {
  background-color: #FFF;
  border: 1px solid #e45e32;
  font-weight: 500;
  color: #e45e32;
  max-width: 420px;
  text-align: center;
}
.p-tomesode-b .frame-b {
  border-top: 1px solid #e45e32;
  border-bottom: 1px solid #e45e32;
  position: relative;
  line-height: calc(40 / 22);
  letter-spacing: 0rem;
  font-size: clamp(calc(15 * 1px), calc(100 / 1350 * 22 * 1vw), calc(22 * 1px));
}
.p-tomesode-b .frame-b:before {
  content: "セット内容";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 0;
  line-height: calc(58 / 28);
  letter-spacing: 0rem;
  font-size: clamp(calc(20 * 1px), calc(100 / 1350 * 28 * 1vw), calc(28 * 1px));
  color: #e45e32;
  font-weight: 500;
  background-color: #FFF;
}
@media screen and (min-width: 900px) {
  .p-tomesode-b .frame-b:before {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 10%;
  }
}
.p-tomesode-b .frame-b .fs-b {
  line-height: calc(34 / 18);
  letter-spacing: 0rem;
  font-size: clamp(calc(14 * 1px), calc(100 / 1350 * 18 * 1vw), calc(18 * 1px));
}

.p-present-a .hdg-b {
  background-color: #e45e32;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF;
}
.p-present-a .hdg-b.w-lg {
  max-width: 980px;
  font-weight: 500;
  padding: 16px;
  margin-top: 0.5rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 600px) {
  .p-present-a .hdg-b.w-lg {
    margin-bottom: 5rem;
  }
}
.p-present-a .hdg-b.w-lg .dot {
  position: relative;
}
.p-present-a .hdg-b.w-lg .dot::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #FFF;
  font-size: clamp(23px, 3vw, 30px);
}
@media screen and (min-width: 600px) {
  .p-present-a .hdg-b.w-lg .dot::before {
    top: -27px;
  }
}
.p-present-a .annotation {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 500;
}

.p-present__target {
  max-width: 980px;
  color: #e45e32;
  font-size: clamp(18px, 1.6296296296vw, 22px);
  text-align: center;
  margin: 0 auto 4rem;
}
@media screen and (min-width: 600px) {
  .p-present__target {
    margin-bottom: 5rem;
  }
}
.p-present__target h2 {
  margin-bottom: 3rem;
}
.p-present__target p {
  width: 100%;
  background-color: rgba(228, 94, 50, 0.2);
  font-weight: 500;
  padding: 2rem 1.5rem;
}
.p-present__target p:first-of-type {
  margin-bottom: 1rem;
}
@media screen and (min-width: 600px) {
  .p-present__target p {
    width: 60%;
    margin: 0 auto;
  }
  .p-present__target p:first-of-type {
    margin-bottom: 1rem;
  }
}
.p-present__target p .inner__text {
  font-size: clamp(14px, 1.3333333333vw, 18px);
}

.p-present__options {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto 2rem;
}
.p-present__options::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "OR";
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #e45e32;
  color: #FFF;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 18px;
  line-height: 70px;
  font-weight: 500;
}
.p-present__options .option__item {
  width: 100%;
  border: 1px solid #e45e32;
}
.p-present__options .option__item:first-of-type {
  margin-bottom: 10rem;
}
@media screen and (min-width: 600px) {
  .p-present__options .option__item {
    width: 48%;
  }
  .p-present__options .option__item:first-of-type {
    margin-bottom: 0;
  }
}
.p-present__options .option__item-title {
  background-color: #e45e32;
  color: #FFF;
  font-size: clamp(18px, 1.6296296296vw, 22px);
  font-weight: bold;
  padding: 8px 16px;
}
.p-present__options .option__item-text, .p-present__options .option__item-note {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(15px, 1.4074074074vw, 19px);
}
.p-present__options .option__item-text {
  font-weight: lighter;
  margin-bottom: 1.5rem;
}
.p-present__options .option__item-text .font-weight {
  font-weight: normal;
}
.p-present__options .option__item-note {
  color: #e45e32;
  font-weight: bold;
}
.p-present__options .option__item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-present__options .option__item-img.mgb {
  margin-bottom: 1.5rem;
}
.p-present__options .option__item .inner {
  padding: 16px 24px;
}

.p-present-table {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 600px) {
  .p-present-table {
    margin-bottom: 80px;
  }
}
.p-present-table tr:first-of-type {
  border-bottom: 10px solid #FFFFFF;
}
.p-present-table th {
  display: block;
  width: 100%;
  background-color: rgba(228, 94, 50, 0.2);
  color: #e45e32;
  padding: 16px 32px;
}
@media screen and (min-width: 900px) {
  .p-present-table th {
    display: table-cell;
    width: 40%;
  }
}
.p-present-table td {
  display: block;
  background-color: #f1f1f1;
  text-align: left;
  padding: 10.5px 0 10.5px 32px;
}
@media screen and (min-width: 900px) {
  .p-present-table td {
    padding-left: 50px;
  }
}
.p-present-table td:first-of-type {
  border-bottom: 2px solid #FFFFFF;
}
.p-present-table td.font-red {
  color: #e45e32;
}

.p-present-circle {
  display: inline-grid;
  grid-template-columns: auto auto auto auto auto;
  grid-column-gap: calc(var(--spacer) * 1.5);
  margin-left: auto;
  margin-right: auto;
  place-items: center center;
}
@media screen and (min-width: 900px) {
  .p-present-circle {
    grid-column-gap: calc(var(--spacer) * 4);
  }
}
.p-present-circle .item {
  width: clamp(calc(90 * 1px), calc(100 / 1350 * 200 * 1vw), calc(200 * 1px));
  height: clamp(calc(90 * 1px), calc(100 / 1350 * 200 * 1vw), calc(200 * 1px));
  background-color: #e45e32;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FFF;
  line-height: calc(46 / 32);
  letter-spacing: 0rem;
  font-size: clamp(calc(15 * 1px), calc(100 / 1350 * 32 * 1vw), calc(32 * 1px));
  font-weight: 500;
}
.p-present-circle .cross {
  width: clamp(calc(18 * 1px), calc(100 / 1350 * 40 * 1vw), calc(40 * 1px));
  height: clamp(calc(18 * 1px), calc(100 / 1350 * 40 * 1vw), calc(40 * 1px));
  position: relative;
}
.p-present-circle .cross::before {
  content: "";
  height: 2px;
  background-color: #e45e32;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.p-present-circle .cross::after {
  content: "";
  height: 100%;
  background-color: #e45e32;
  width: 2px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-1px);
          transform: translateX(-1px);
}
.p-present-circle.type-b .item {
  background-color: #FFF;
  border: 1px solid #000;
  color: #000;
}
.p-present-circle.type-b .cross::before {
  background-color: #000;
}
.p-present-circle.type-b .cross::after {
  background-color: #000;
}

.p-present-b {
  padding-top: calc(60 * 1px);
  background-color: #f7ded7;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-present-b {
    padding-top: clamp(calc(60 * 1px), calc(140 * 100 / 1350 * 1vw), calc(140 * 1px));
  }
}
.p-present-b .frame {
  background-color: #FFF;
  border: 1px solid #e45e32;
  font-weight: 500;
  color: #e45e32;
  max-width: 280px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.p-present-b::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 120px 0 120px;
  border-color: #ffffff transparent transparent transparent;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .p-present-b::after {
    border-width: 100px 205px 0 205px;
  }
}
.p-present-b::before {
  content: "さらに";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -30%);
          transform: translate(-50%, -30%);
  color: #e45e32;
  line-height: calc(58 / 28);
  letter-spacing: 0rem;
  font-size: clamp(calc(20 * 1px), calc(100 / 1350 * 28 * 1vw), calc(28 * 1px));
  z-index: 2;
}

.p-gallery-a .hdg-a {
  line-height: calc(64 / 32);
  letter-spacing: 0rem;
  font-size: clamp(calc(18 * 1px), calc(100 / 1350 * 32 * 1vw), calc(32 * 1px));
  font-weight: 500;
}

.p-gallery-b {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: calc(var(--spacer) * 2.5);
  grid-column-gap: calc(var(--spacer) * 2.5);
}
@media screen and (min-width: 900px) {
  .p-gallery-b {
    grid-row-gap: calc(var(--spacer) * 9);
    grid-column-gap: calc(var(--spacer) * 9);
  }
}
.p-gallery-b a:before {
  padding-top: 100%;
  content: "";
  display: block;
}

.p-flow-a .hdg-a {
  line-height: calc(64 / 32);
  letter-spacing: 0rem;
  font-size: clamp(calc(18 * 1px), calc(100 / 1350 * 32 * 1vw), calc(32 * 1px));
  font-weight: 500;
}
.p-flow-a .layout-a {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacer) * 4);
}
@media screen and (min-width: 900px) {
  .p-flow-a .layout-a {
    max-width: 660px;
  }
}
.p-flow-a .frame-a {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  background-color: #f7ded7;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-flow-a .frame-a {
    max-width: 1000px;
  }
}
.p-flow-a .frame-b {
  border: 1px solid #e45e32;
}
.p-flow-a .layout-b {
  display: grid;
  grid-template-rows: repeat(8, auto);
  grid-template-columns: repeat(3, auto);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-row-gap: calc(var(--spacer) * 2.5);
  grid-auto-flow: column;
  text-align: left;
  line-height: calc(50 / 30);
  letter-spacing: 0rem;
  font-size: clamp(calc(18 * 1px), calc(100 / 1350 * 30 * 1vw), calc(30 * 1px));
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .p-flow-a .layout-b {
    grid-template-rows: repeat(5, auto);
    grid-template-columns: repeat(5, auto);
  }
}

.p-flow-number {
  line-height: calc(50 / 50);
  letter-spacing: 0.4rem;
  font-size: clamp(calc(24 * 1px), calc(100 / 1350 * 50 * 1vw), calc(50 * 1px));
  font-weight: 500;
  text-align: center;
  color: #e45e32;
}

.p-flow-image-a {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .p-flow-image-a {
    max-width: 500px;
  }
}

.p-flow-b {
  background-color: #f7ded7;
}
.p-flow-b .c-image-a {
  width: 250px;
  height: 250px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .p-flow-b .c-image-a {
    width: initial;
    height: initial;
    margin-left: initial;
    margin-right: initial;
  }
}
.p-flow-b .layout-a {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(var(--spacer) * 2.5);
}
@media screen and (min-width: 900px) {
  .p-flow-b .layout-a {
    grid-template-columns: 1.45fr 3fr;
    gap: calc(var(--spacer) * 4);
  }
}
.p-flow-b .layout-b {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--spacer) * 2.5);
}
@media screen and (min-width: 900px) {
  .p-flow-b .layout-b {
    grid-template-columns: repeat(6, 1fr);
    gap: calc(var(--spacer) * 4);
  }
}

.p-flow-c .image-a {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .p-flow-c .image-a {
    max-width: 1250px;
  }
}
.p-flow-c .layout-a {
  border: 1px solid #e45e32;
  text-align: center;
}
.p-flow-c .layout-b {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: calc(var(--spacer) * 4);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .p-flow-c .layout-b {
    max-width: 1250px;
  }
}
.p-flow-c .frame-b {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e45e32;
}
@media screen and (min-width: 900px) {
  .p-flow-c .frame-b {
    display: inline-block;
  }
}

.p-flow-d {
  display: grid;
  gap: calc(var(--spacer) * 2.5);
  grid-template-columns: auto auto auto;
  grid-template-areas: "area-a area-b area-c" "area-d area-d area-d" "area-e area-e area-e";
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  place-items: center center;
}
@media screen and (min-width: 900px) {
  .p-flow-d {
    display: inline-grid;
    gap: calc(var(--spacer) * 4);
    grid-template-columns: auto auto auto auto auto;
    grid-template-areas: "area-a area-b area-c area-d area-e";
  }
}
.p-flow-d .circle {
  width: clamp(calc(94 * 1px), calc(100 / 1350 * 200 * 1vw), calc(200 * 1px));
  height: clamp(calc(94 * 1px), calc(100 / 1350 * 200 * 1vw), calc(200 * 1px));
  background-color: #e45e32;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FFF;
  line-height: calc(46 / 32);
  letter-spacing: 0rem;
  font-size: clamp(calc(15 * 1px), calc(100 / 1350 * 32 * 1vw), calc(32 * 1px));
  font-weight: 500;
}
.p-flow-d .circle .hdg-a {
  line-height: calc(24 / 16);
  letter-spacing: 0rem;
  font-size: clamp(calc(11 * 1px), calc(100 / 1350 * 16 * 1vw), calc(16 * 1px));
}
.p-flow-d .frame-a {
  background-color: #e45e32;
  color: #FFF;
  line-height: calc(46 / 32);
  letter-spacing: 0rem;
  font-size: clamp(calc(15 * 1px), calc(100 / 1350 * 32 * 1vw), calc(32 * 1px));
  font-weight: 500;
  grid-area: area-e;
}
.p-flow-d .cross {
  width: clamp(calc(18 * 1px), calc(100 / 1350 * 40 * 1vw), calc(40 * 1px));
  height: clamp(calc(18 * 1px), calc(100 / 1350 * 40 * 1vw), calc(40 * 1px));
  position: relative;
  grid-area: area-d;
}
.p-flow-d .cross::before {
  content: "";
  height: 2px;
  background-color: #e45e32;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.p-flow-d .cross::after {
  content: "";
  height: 100%;
  background-color: #e45e32;
  width: 2px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-1px);
          transform: translateX(-1px);
}

.p-flow-e {
  display: inline-grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: calc(var(--spacer) * 1.5);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .p-flow-e {
    max-width: 790px;
  }
}
@media screen and (min-width: 900px) {
  .p-flow-e {
    grid-column-gap: calc(var(--spacer) * 4);
  }
}
.p-flow-e .hdg {
  line-height: calc(46 / 26);
  letter-spacing: 0rem;
  font-size: clamp(calc(14 * 1px), calc(100 / 1350 * 26 * 1vw), calc(26 * 1px));
  font-weight: 500;
  text-align: center;
}

.p-flow-f .item-a {
  display: grid;
}
@media screen and (min-width: 900px) {
  .p-flow-f .item-a {
    grid-template-columns: 2fr 2fr 1fr;
    gap: calc(var(--spacer) * 6);
    height: clamp(calc(200 * 1px), calc(100 / 1350 * 345 * 1vw), calc(345 * 1px));
  }
}
.p-flow-f .item-b {
  display: grid;
}
@media screen and (min-width: 900px) {
  .p-flow-f .item-b {
    grid-template-columns: 1.5fr 1.5fr 1.5fr 1fr;
    gap: calc(var(--spacer) * 6);
    height: clamp(calc(200 * 1px), calc(100 / 1350 * 345 * 1vw), calc(345 * 1px));
  }
}
.p-flow-f .item-c {
  display: grid;
}
@media screen and (min-width: 900px) {
  .p-flow-f .item-c {
    grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
    gap: calc(var(--spacer) * 6);
    height: clamp(calc(200 * 1px), calc(100 / 1350 * 345 * 1vw), calc(345 * 1px));
  }
}
.p-flow-f .item-d {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: calc(var(--spacer) * 4);
  height: clamp(calc(200 * 1px), calc(100 / 1350 * 345 * 1vw), calc(345 * 1px));
}
.p-flow-f .item-e {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: calc(var(--spacer) * 4);
  height: clamp(calc(200 * 1px), calc(100 / 1350 * 345 * 1vw), calc(345 * 1px));
}

.p-flow-g {
  background-color: #f7ded7;
  padding-top: calc(20 * 1px);
  padding-bottom: calc(20 * 1px);
}
@media screen and (min-width: 900px) {
  .p-flow-g {
    padding-top: clamp(calc(20 * 1px), calc(50 * 100 / 1350 * 1vw), calc(50 * 1px));
    padding-bottom: clamp(calc(20 * 1px), calc(50 * 100 / 1350 * 1vw), calc(50 * 1px));
  }
}
.p-flow-g .layou-a {
  width: 92%;
  max-width: 1160px;
  display: grid;
  grid-template-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .p-flow-g .layou-a {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3%;
  }
}
.p-flow-g .layou-a .hdg {
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 500;
  text-align: center;
}
.p-flow-g .layou-a .item {
  margin-bottom: 2rem;
}
@media screen and (min-width: 900px) {
  .p-flow-g .layou-a .item {
    margin-bottom: 0;
  }
}
.p-flow-g .layou-a .item img {
  width: 100%;
  max-width: initial;
}

.p-flow-h .layou-a {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacer) * 2.5);
}
@media screen and (min-width: 900px) {
  .p-flow-h .layou-a {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.p-flow-h .hdg-a {
  line-height: calc(42 / 22);
  letter-spacing: 0rem;
  font-size: clamp(calc(16 * 1px), calc(100 / 1350 * 22 * 1vw), calc(22 * 1px));
}

.p-flow-i {
  background-color: #f7ded7;
}
.p-flow-i .frame-a {
  display: block;
  background-color: #FFF;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e45e32;
}
@media screen and (min-width: 900px) {
  .p-flow-i .frame-a {
    display: inline-block;
  }
}
.p-flow-i .frame-b {
  background-color: #FFF;
  border: 1px solid #e45e32;
}
.p-flow-i .layou-a {
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-left: auto;
  margin-right: auto;
  gap: 3%;
}
.p-flow-i .layou-a .item {
  margin-bottom: 1rem;
}
@media screen and (min-width: 900px) {
  .p-flow-i .layou-a .item {
    margin-bottom: 2rem;
  }
}
.p-flow-i .layou-a .hdg {
  line-height: calc(36 / 24);
  letter-spacing: 0rem;
  font-size: clamp(calc(11 * 1px), calc(100 / 1350 * 24 * 1vw), calc(24 * 1px));
  font-weight: 500;
  text-align: center;
}
.p-flow-i .layou-a .hdg-b {
  line-height: calc(36 / 24);
  letter-spacing: 0rem;
  font-size: clamp(calc(11 * 1px), calc(100 / 1350 * 24 * 1vw), calc(24 * 1px));
  font-weight: 500;
  text-align: center;
}

.p-flow-j .layou-a {
  display: grid;
  gap: calc(var(--spacer) * 4);
  margin-left: auto;
  margin-right: auto;
  max-width: 790px;
}
.p-flow-j .layou-a li {
  background-color: #FFF;
  border: 1px solid #e45e32;
  color: #e45e32;
}
.p-flow-j .image-a {
  margin-left: auto;
  margin-right: auto;
  width: clamp(calc(206 * 1px), calc(100 / 1350 * 412 * 1vw), calc(412 * 1px));
}

.p-contact-a .tel-num {
  color: #e45e32;
  letter-spacing: 0.3rem;
}

.p-contact-b {
  background-color: rgba(228, 94, 50, 0.2);
  padding: 40px 0;
}
@media screen and (min-width: 600px) {
  .p-contact-b {
    padding: 80px 0;
  }
}
.p-contact-b .inner__container {
  width: 92%;
  max-width: 1113px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .p-contact-b .inner__container {
    width: 70%;
  }
}
.p-contact-b form .required::after {
  content: "※必須";
  display: inline-block;
  color: #fe0000;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  padding-left: 16px;
}
.p-contact-b form .input-error {
  color: #fe0000;
  font-size: 14px;
}
.p-contact-b form .border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.p-contact-b form input[type=text],
.p-contact-b form input[type=email],
.p-contact-b form input[type=tel],
.p-contact-b form select,
.p-contact-b form textarea {
  border: 1px solid #d55c36;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.p-contact-b form input[type=text].is__error,
.p-contact-b form input[type=email].is__error,
.p-contact-b form input[type=tel].is__error,
.p-contact-b form select.is__error,
.p-contact-b form textarea.is__error {
  border: 2px solid #d55c36;
}
.p-contact-b form input[type=text],
.p-contact-b form input[type=email],
.p-contact-b form input[type=tel] {
  width: 100%;
  height: 50px;
  letter-spacing: 0.1rem;
  padding: 8px 16px;
}
@media screen and (min-width: 900px) {
  .p-contact-b form input[type=text],
  .p-contact-b form input[type=email],
  .p-contact-b form input[type=tel] {
    width: 60%;
  }
}
.p-contact-b form #address03 {
  width: 100%;
}
.p-contact-b form textarea {
  width: 100%;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: 0.1rem;
  padding: 8px 16px;
}
.p-contact-b form .select__container {
  position: relative;
  width: 80%;
}
@media screen and (min-width: 900px) {
  .p-contact-b form .select__container {
    width: 50%;
  }
}
.p-contact-b form .select__container::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 30px;
  width: 15px;
  height: 15px;
  border-top: 1px solid #d55c36;
  border-right: 1px solid #d55c36;
  -webkit-transform: rotate(135deg) translateY(-50%);
          transform: rotate(135deg) translateY(-50%);
}
.p-contact-b form select {
  width: 100%;
  height: 50px;
  background-color: #FFF;
  padding: 8px 16px;
}
.p-contact-b form select::-ms-expand {
  display: block;
}
.p-contact-b form .text__link {
  text-decoration: underline;
}
.p-contact-b form .color-b {
  color: #e45e32;
}
.p-contact-b form .form__button {
  width: 200px;
  height: 50px;
  border: none;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  cursor: pointer;
  -webkit-transition: background-color linear;
  transition: background-color linear;
}
@media screen and (min-width: 900px) {
  .p-contact-b form .form__button {
    width: 300px;
    height: 60px;
  }
}
.p-contact-b form .form__button.is__submit {
  position: relative;
  background-color: #e45e32;
}
.p-contact-b form .form__button.is__submit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 15px;
  height: 15px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.p-contact-b form .form__button.is__submit:hover {
  background-color: rgba(228, 94, 50, 0.9);
}
.p-contact-b form .form__button.is__back {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  line-height: 50px;
  margin-right: 40px;
  margin-bottom: 16px;
}
@media screen and (min-width: 900px) {
  .p-contact-b form .form__button.is__back {
    line-height: 60px;
    vertical-align: bottom;
    margin-bottom: 0;
  }
}

/* -----------------------------------------------------------------------------
   #Utility
   -------------------------------------------------------------------------- */
.u-d-p, .p-top-sec-i:before, .p-top-sec-k:before {
  display: none;
}
@media screen and (min-width: 900px) {
  .u-d-p, .p-top-sec-i:before, .p-top-sec-k:before {
    display: block;
  }
}

.u-d-m, .p-top-sec-b .swiper-b .swiper-b-next, .p-top-sec-b .swiper-b .swiper-b-prev, .swiper-c .swiper-c-next, .swiper-c .swiper-c-prev {
  display: block;
}
@media screen and (min-width: 900px) {
  .u-d-m, .p-top-sec-b .swiper-b .swiper-b-next, .p-top-sec-b .swiper-b .swiper-b-prev, .swiper-c .swiper-c-next, .swiper-c .swiper-c-prev {
    display: none;
  }
}

.u-d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-m-xxs {
  margin: calc(var(--spacer) * 1);
}

.u-m-xs {
  margin: calc(var(--spacer) * 1.5);
}

.u-m-sm {
  margin: calc(var(--spacer) * 2.5);
}

.u-m-md {
  margin: calc(var(--spacer) * 4);
}

.u-m-lg {
  margin: calc(var(--spacer) * 6);
}

.u-m-xl {
  margin: calc(var(--spacer) * 9);
}

.u-m-xxl {
  margin: calc(var(--spacer) * 11);
}

.u-mt-none {
  margin-top: 0 !important;
}

.u-mt-xxs {
  margin-top: calc(var(--spacer) * 1);
}

.u-mt-xs, .l-insta .layout-a .item-inner {
  margin-top: calc(var(--spacer) * 1.5);
}

.u-mt-sm, .p-price-list, .p-flow-e .hdg, .p-flow-i .layou-a .hdg-b {
  margin-top: calc(var(--spacer) * 2.5);
}

.u-mt-md, .p-top-sec-b .p-top-sec-b-inner .hdg {
  margin-top: calc(var(--spacer) * 4);
}

.u-mt-lg-sp {
  margin-top: calc(var(--spacer) * 6);
}
@media screen and (min-width: 900px) {
  .u-mt-lg-sp {
    margin-top: 0;
  }
}

.u-mt-lg, .p-top-sec-f .hdg, .p-top-sec-i .hdg, .p-top-sec-k .hdg, .p-privacy-list dt {
  margin-top: calc(var(--spacer) * 6);
}

.u-mt-xl, .p-tomesode-b .frame-b {
  margin-top: calc(var(--spacer) * 9);
}

.u-mt-xxl {
  margin-top: calc(var(--spacer) * 11);
}

.u-mr-xxs, .l-header-contact img {
  margin-right: calc(var(--spacer) * 1);
}

.u-mr-xs, .p-top-sec-j .c-hdg-a .icon {
  margin-right: calc(var(--spacer) * 1.5);
}

.u-mr-sm, .l-insta .layout-a .item-inner img {
  margin-right: calc(var(--spacer) * 2.5);
}

.u-mr-md, .l-footer .sns .icon {
  margin-right: calc(var(--spacer) * 4);
}

.u-mr-lg, .l-header .sns img {
  margin-right: calc(var(--spacer) * 6);
}

.u-mr-xl {
  margin-right: calc(var(--spacer) * 9);
}

.u-mr-xxl {
  margin-right: calc(var(--spacer) * 11);
}

.u-mb-xxs, .p-privacy-list dt {
  margin-bottom: calc(var(--spacer) * 1);
}

.u-mb-xs {
  margin-bottom: calc(var(--spacer) * 1.5);
}

.u-mb-sm, .p-furisode-e .prices, .p-flow-g .layou-a .hdg, .p-flow-i .layou-a .hdg {
  margin-bottom: calc(var(--spacer) * 2.5);
}

.u-mb-md {
  margin-bottom: calc(var(--spacer) * 4);
}

.u-mb-lg, .p-furisode-hdg {
  margin-bottom: calc(var(--spacer) * 6);
}

.u-mb-xl {
  margin-bottom: calc(var(--spacer) * 9);
}

.u-mb-xxl {
  margin-bottom: calc(var(--spacer) * 11);
}

.u-ml-xxs {
  margin-left: calc(var(--spacer) * 1);
}

.u-ml-xs {
  margin-left: calc(var(--spacer) * 1.5);
}

.u-ml-sm {
  margin-left: calc(var(--spacer) * 2.5);
}

.u-ml-md {
  margin-left: calc(var(--spacer) * 4);
}

.u-ml-lg {
  margin-left: calc(var(--spacer) * 6);
}

.u-ml-xl {
  margin-left: calc(var(--spacer) * 9);
}

.u-ml-xxl {
  margin-left: calc(var(--spacer) * 11);
}

.u-mx-xxs {
  margin-left: calc(var(--spacer) * 1);
  margin-right: calc(var(--spacer) * 1);
}

.u-mx-xs {
  margin-left: calc(var(--spacer) * 1.5);
  margin-right: calc(var(--spacer) * 1.5);
}

.u-mx-sm {
  margin-left: calc(var(--spacer) * 2.5);
  margin-right: calc(var(--spacer) * 2.5);
}

.u-mx-md {
  margin-left: calc(var(--spacer) * 4);
  margin-right: calc(var(--spacer) * 4);
}

.u-mx-lg {
  margin-left: calc(var(--spacer) * 6);
  margin-right: calc(var(--spacer) * 6);
}

.u-mx-xl {
  margin-left: calc(var(--spacer) * 9);
  margin-right: calc(var(--spacer) * 9);
}

.u-mx-xxl {
  margin-left: calc(var(--spacer) * 11);
  margin-right: calc(var(--spacer) * 11);
}

.u-my-xxs {
  margin-top: calc(var(--spacer) * 1);
  margin-bottom: calc(var(--spacer) * 1);
}

.u-my-xs {
  margin-top: calc(var(--spacer) * 1.5);
  margin-bottom: calc(var(--spacer) * 1.5);
}

.u-my-sm {
  margin-top: calc(var(--spacer) * 2.5);
  margin-bottom: calc(var(--spacer) * 2.5);
}

.u-my-sm {
  margin-top: calc(var(--spacer) * 2.5);
  margin-bottom: calc(var(--spacer) * 2.5);
}

.u-my-md {
  margin-top: calc(var(--spacer) * 4);
  margin-bottom: calc(var(--spacer) * 4);
}

.u-my-lg {
  margin-top: calc(var(--spacer) * 6);
  margin-bottom: calc(var(--spacer) * 6);
}

.u-my-xl {
  margin-top: calc(var(--spacer) * 9);
  margin-bottom: calc(var(--spacer) * 9);
}

.u-my-xxl {
  margin-top: calc(var(--spacer) * 11);
  margin-bottom: calc(var(--spacer) * 11);
}

.u-p-xxs, .p-furisode-d .hdg, .p-furisode-e .hdg-b, .p-present-a .hdg-b {
  padding: calc(var(--spacer) * 1);
}

.u-p-xs, .p-hakama-b .frame, .p-furisode-a .frame, .p-furisode-d .frame, .p-tomesode-b .frame, .p-present-b .frame {
  padding: calc(var(--spacer) * 1.5);
}

.u-p-sm, .p-flow-d .frame-a {
  padding: calc(var(--spacer) * 2.5);
}

.u-p-md {
  padding: calc(var(--spacer) * 4);
}

.u-p-lg {
  padding: calc(var(--spacer) * 6);
}

.u-p-xl {
  padding: calc(var(--spacer) * 9);
}

.u-p-xxl {
  padding: calc(var(--spacer) * 11);
}

.u-pt-xxs {
  padding-top: calc(var(--spacer) * 1);
}

.u-pt-xs {
  padding-top: calc(var(--spacer) * 1.5);
}

.u-pt-sm {
  padding-top: calc(var(--spacer) * 2.5);
}

.u-pt-md {
  padding-top: calc(var(--spacer) * 4);
}

.u-pt-lg, .p-tomesode-b .frame-b {
  padding-top: calc(var(--spacer) * 6);
}

.u-pt-xl {
  padding-top: calc(var(--spacer) * 9);
}

.u-pt-xxl {
  padding-top: calc(var(--spacer) * 11);
}

.u-pr-xxs {
  padding-right: calc(var(--spacer) * 1);
}

.u-pr-xs {
  padding-right: calc(var(--spacer) * 1.5);
}

.u-pr-sm {
  padding-right: calc(var(--spacer) * 2.5);
}

.u-pr-md {
  padding-right: calc(var(--spacer) * 4);
}

.u-pr-lg {
  padding-right: calc(var(--spacer) * 6);
}

.u-pr-xl {
  padding-right: calc(var(--spacer) * 9);
}

.u-pr-xxl {
  padding-right: calc(var(--spacer) * 11);
}

.u-pb-xxs {
  padding-bottom: calc(var(--spacer) * 1);
}

.u-pb-xs {
  padding-bottom: calc(var(--spacer) * 1.5);
}

.u-pb-sm, .p-furisode-e .prices {
  padding-bottom: calc(var(--spacer) * 2.5);
}

.u-pb-md, .l-globalnavi-sp ul, .p-tomesode-b .frame-b {
  padding-bottom: calc(var(--spacer) * 4);
}

.u-pb-lg, .c-hdg-b {
  padding-bottom: calc(var(--spacer) * 6);
}

.u-pb-xl {
  padding-bottom: calc(var(--spacer) * 9);
}

.u-pb-xxl {
  padding-bottom: calc(var(--spacer) * 11);
}

.u-pl-xxs {
  padding-left: calc(var(--spacer) * 1);
}

.u-pl-xs {
  padding-left: calc(var(--spacer) * 1.5);
}

.u-pl-sm {
  padding-left: calc(var(--spacer) * 2.5);
}

.u-pl-md {
  padding-left: calc(var(--spacer) * 4);
}

.u-pl-lg {
  padding-left: calc(var(--spacer) * 6);
}

.u-pl-xl {
  padding-left: calc(var(--spacer) * 9);
}

.u-pl-xxl {
  padding-left: calc(var(--spacer) * 11);
}

.u-px-xxs {
  padding-left: calc(var(--spacer) * 1);
  padding-right: calc(var(--spacer) * 1);
}

.u-px-xs, .p-flow-a .frame-a {
  padding-left: calc(var(--spacer) * 1.5);
  padding-right: calc(var(--spacer) * 1.5);
}

.u-px-sm, .l-header .l-header-contact, .l-header .l-header-tel, .p-tomesode-b .frame-b:before, .p-flow-c .layout-a, .p-flow-i .frame-b {
  padding-left: calc(var(--spacer) * 2.5);
  padding-right: calc(var(--spacer) * 2.5);
}

.u-px-md, .p-flow-a .frame-b, .p-flow-c .frame-b, .p-flow-i .frame-a, .p-flow-j .layou-a li {
  padding-left: calc(var(--spacer) * 4);
  padding-right: calc(var(--spacer) * 4);
}

.u-px-lg {
  padding-left: calc(var(--spacer) * 6);
  padding-right: calc(var(--spacer) * 6);
}

.u-px-xl {
  padding-left: calc(var(--spacer) * 9);
  padding-right: calc(var(--spacer) * 9);
}

.u-px-xxl {
  padding-left: calc(var(--spacer) * 11);
  padding-right: calc(var(--spacer) * 11);
}

.u-py-xxs {
  padding-top: calc(var(--spacer) * 1);
  padding-bottom: calc(var(--spacer) * 1);
}

.u-py-xs, .p-flow-c .frame-b, .p-flow-i .frame-a, .p-flow-j .layou-a li {
  padding-top: calc(var(--spacer) * 1.5);
  padding-bottom: calc(var(--spacer) * 1.5);
}

.u-py-sm, .l-footer .l-footer-menu li, .l-globalnavi-sp .contact .l-header-contact, .l-globalnavi-sp .contact .l-header-tel {
  padding-top: calc(var(--spacer) * 2.5);
  padding-bottom: calc(var(--spacer) * 2.5);
}

.u-py-md {
  padding-top: calc(var(--spacer) * 4);
  padding-bottom: calc(var(--spacer) * 4);
}

.u-py-lg, .p-flow-a .frame-a, .p-flow-a .frame-b, .p-flow-c .layout-a, .p-flow-i .frame-b {
  padding-top: calc(var(--spacer) * 6);
  padding-bottom: calc(var(--spacer) * 6);
}

.u-py-xl, .p-flow-i {
  padding-top: calc(var(--spacer) * 9);
  padding-bottom: calc(var(--spacer) * 9);
}

.u-py-xxl {
  padding-top: calc(var(--spacer) * 11);
  padding-bottom: calc(var(--spacer) * 11);
}

.u-fs-xxl {
  line-height: calc(50 / 36);
  letter-spacing: 0.1rem;
  font-size: clamp(calc(24 * 1px), calc(100 / 1350 * 36 * 1vw), calc(36 * 1px));
}

.u-fs-xl, .p-top-sec-d .hdg, .p-top-sec-f .hdg, .p-top-sec-i .hdg, .p-top-sec-j .hdg, .p-top-sec-k .hdg, .p-hakama-b .circle .item, .p-furisode-hdg h3 {
  line-height: calc(48 / 24);
  letter-spacing: 0rem;
  font-size: clamp(calc(15 * 1px), calc(100 / 1350 * 24 * 1vw), calc(24 * 1px));
}

.u-fs-lg, .p-furisode-d .price-list, .p-furisode-d .frame, .p-furisode-e .plan__text, .p-furisode-e .prices, .p-tomesode-b .circle .item, .p-tomesode-b .frame, .p-present-b .frame {
  line-height: calc(40 / 22);
  letter-spacing: 0rem;
  font-size: clamp(calc(18 * 1px), calc(100 / 1350 * 22 * 1vw), calc(22 * 1px));
}

.u-fs-md, .l-globalnavi-sp ul a {
  line-height: calc(34 / 18);
  letter-spacing: 0rem;
  font-size: clamp(calc(16 * 1px), calc(100 / 1350 * 18 * 1vw), calc(18 * 1px));
}

.u-fs-n, body {
  line-height: calc(27 / 16);
  letter-spacing: 0.1rem;
  font-size: clamp(calc(14 * 1px), calc(100 / 1350 * 16 * 1vw), calc(16 * 1px));
}

.u-fs-sm, .l-header-tel .tel-inner p {
  line-height: calc(21 / 13);
  letter-spacing: 0.1rem;
  font-size: clamp(calc(11 * 1px), calc(100 / 1350 * 13 * 1vw), calc(13 * 1px));
}

.u-fs-xs {
  line-height: calc(18 / 11);
  letter-spacing: 0rem;
  font-size: clamp(calc(10 * 1px), calc(100 / 1350 * 11 * 1vw), calc(11 * 1px));
}

.u-ff-a, .l-header-contact, .l-header-tel, .l-insta .layout-a, .l-footer {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.u-fw-b, .l-header-contact, .l-header-tel .tel-inner p, .l-insta .layout-a .item-inner, .l-footer, .p-privacy-list dt {
  font-weight: bold !important;
}

.u-fw-br {
  font-weight: bolder !important;
}

.u-fw-lr {
  font-weight: lighter !important;
}

.u-fw100 {
  font-weight: 100 !important;
}

.u-fw200 {
  font-weight: 200 !important;
}

.u-fw300 {
  font-weight: 300 !important;
}

.u-fw400 {
  font-weight: 400 !important;
}

.u-fw500 {
  font-weight: 500 !important;
}

.u-fw600 {
  font-weight: 600 !important;
}

.u-fw700 {
  font-weight: 700 !important;
}

.u-fw800 {
  font-weight: 800 !important;
}

.u-fw900 {
  font-weight: 900 !important;
}

.u-fsmt {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-j {
  text-align: justify !important;
}

.u-ta-l-pc {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .u-ta-l-pc {
    text-align: left;
  }
}

.u-br-m {
  display: block;
}
@media screen and (min-width: 600px) {
  .u-br-m {
    display: none;
  }
}

.u-br-p {
  display: none;
}
@media screen and (min-width: 600px) {
  .u-br-p {
    display: block;
  }
}

span.br {
  display: inline-block;
}

.u-lh-1 {
  line-height: 1;
}

.u-lh-14 {
  line-height: 1.4;
}