
@charset "UTF-8";

/* laquan.netの共通スタイルシートです。 */
/*
    ------------MEMO-------------
    1,header
    2,footer
    3,common（laquan.net共通）
    4,template（一部共通）

*/

/*=============================
画像保護
=============================*/
img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none; /* 長押し時の挙動を無効化 */
  -webkit-user-select: none; /* 文章の範囲選択を無効化 */
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}
a img,
button img { pointer-events: initial; }

/*=============================
  1,header
  =============================*/

/*=============================
  header-content
  =============================*/
.header {
  width: 100%;
  background-color: rgb(247 235 230 / 40%);
  z-index: 9990;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.header__inner {
  width: calc(100% - 4em);
  max-width: 1360px;
  padding: 16px 0 12px;
  display: block;
  margin: 0 auto;
}
.header__logo {
  text-align: center;
}
.header-sns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.header-hamb-sns {
  display: none;
}
.header-sns-link,
.header-hamb-sns-link {
  display: inline-block;
}
.header__cv {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.header__cv-btn {
  display: block;
  width: 100%;
  background-color: #e5b7b0;
  color: #fff;
  border: 1px solid #e5b7b0;
  border-radius: 8px;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  padding: 0.2rem 0.4rem;
  position: relative;
}
.header__cv-btn.after-arrow-right::after {
  /* vertical-align: middle; */
  position: absolute;
  right: 8px;
}
.header__cv-nav {
  color: #fff;
  background-color: #e5b7b0;
  padding: 6px 10px;
  border-radius: 100vmax;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  transition: all .3s;
}
.header__cv-nav > *:first-child {
  margin-right: 5px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(146deg) brightness(168%) contrast(101%);
}
.header__cv-nav > *:last-child {
  font-size: 12px;
}
.header__cv-nav:hover {
  background-color: #fff;
  transition: all .3s;
}
.header__cv-nav:hover > *:first-child {
  filter: invert(168%) sepia(77%) saturate(80%) hue-rotate(292deg) brightness(92%) contrast(130%);
  transition: all .3s;
}
.header__cv-nav:hover > *:last-child {
  color: #e5b7b0;
  transition: all .3s;
}
.header__sub-menu > * {
  margin-left: 0.5rem;
}
.header__sub-cat {
  font-size: 1rem;
  color: #777;
  border-left: 3px solid #bcb395;
  line-height: 1;
  padding-left: 0.5rem;
  margin: 1rem 0;
}

@media screen and (max-width: 1199px) {
  .header {
    position: absolute;
    background: none;
    left: 0;
    right: 0;
  }
  .header__logo img {
    width: 180px;
  }
  .header__sub-menu {
    margin-left: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  .header__nav {
    font-size: 1rem;
    /* line-height: 3.5; */
  }
  .header-sns {
    display: none;
  }
  .header-hamb-sns {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 24px;
    justify-content: center;
  }
  .header_social_nav {
    background-color: #242424;
  }
  .header_social_nav > * {
    margin-bottom: 3rem;
  }
  .header__sns-menu,
  .header__company-menu {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
  }
  .header__sns-menu {
    width: 84px;
    margin: 0 auto 3rem;
  }
  .header__company-menu {
    font-size: 0.8rem;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    color: #fff;
    padding: 1rem 0;
  }
  .head-menu-grid-2-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
  .header__nav a {
    display: block;
    width: 100%;
    padding: 1rem 0;
  }
  /* test */
  .header__nav > * {
    border-top: 1px solid #cdcdcd;
  }

  .header__nav > *:last-child {
    padding: 0 0 2rem;
    border-bottom: unset;
  }

  .header__menu-list {
    position: relative;
    padding: 1.2rem 0;
  }

  .header__menu-list::after {
    position: absolute;
    top: 40%;
    bottom: 50%;
    right: 1em;
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    margin: auto;
    content: "";
    transform: rotate(135deg);
    transition: 0.2s;
    border-top: 1px solid;
    border-right: 1px solid;
  }

  .header__menu-list.open::after {
    transform: rotate(-45deg);
    top: 45%;
  }

  .header__nav > *,
  .header__sub-menu > * {
    opacity: 0;
    transition: 1s;
    transform: translateX(-40px);
  }

  .header__nav > *.show,
  .header__sub-menu > *.show {
    opacity: 1;
    transform: translateX(0);
  }

  .js-ac-inner {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .header {
    font-size: 0.8rem;
  }

  .header__inner {
    display: grid;
    grid-template-columns: 200px auto 96px 220px;
    column-gap: 1rem;
    justify-items: end;
    align-items: center;
  }

  .header__nav > * {
    text-align: center;
    display: inline-block;
  }

  .header__nav > * + * {
    margin-left: 1rem;
  }

  .header__sub-menu {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    text-align: left;
    letter-spacing: 0.1rem;
    line-height: 2.5;
    top: 100%;
    padding: 1rem 0.8rem 0.8rem;
    width: 225px;
    transform: translateX(-50%);
    left: 50%;
    display: none;
  }

  .header__sub-cat {
    font-size: 0.8rem;
  }

  .header__nav > *::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #bcb395;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.5s;
  }

  .header__nav > * {
    position: relative;
  }

  .header__nav > *:hover::after {
    transform: scale(1, 1);
  }
}

@media screen and (min-width: 768px) {
  .header_social_nav {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .header-nav-for-sp {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .header-nav-for-pc {
    display: none;
  }
}

/*=============================
  ドロップダウンメニュー
  =============================*/
@media screen and (max-width: 1199px) {
  .header__dd {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    /* padding: .5rem 4% 125px; */
    padding: 0.5rem 0 0;
    position: fixed;
    top: 100%;
    left: 0;
    overflow: scroll;
    transition: 0.4s ease-out;
    z-index: 9998;
  }

  .header__dd > * {
    padding: 0 4%;
  }

  .header__dd > *:last-child {
    padding: 3rem 4% 160px;
  }

  .header__dd.active {
    top: 0;
    padding-bottom: 56px;
  }

  .close-btn {
    width: 44px;
    text-align: center;
    margin-left: auto;
    margin-bottom: 1rem;
    transition: 2s ease-out;
    opacity: 0;
  }

  .header__dd.active .close-btn {
    opacity: 1;
  }

  .close-btn-icon {
    display: block;
    position: relative;
    width: 44px;
    height: 44px;
  }

  .close-btn-icon::before,
  .close-btn-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    /* 棒の幅（太さ） */
    height: 35px;
    /* 棒の高さ */
    background: #3c3c3c;
    /* バツ印の色 */
  }

  .close-btn-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .close-btn-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .close-btn-text {
    font-size: 8px;
    letter-spacing: 0.1rem;
  }

  .cam-area > * {
    margin-bottom: 1rem;
  }

  .cam-area .grid-1-2 {
    grid-gap: 1rem;
  }

  .header__sub-menu span {
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    padding: 0.2em 0.2em;
  }
}

@media screen and (min-width: 1200px) {
  .header__menu {
    position: relative;
  }
}

/*=============================
  ボトムナビ
  =============================*/
.btm-nav {
  font-size: 0.8rem;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  border-top: 1px solid #ccc;
  background-color: #fff;
  letter-spacing: 0.1rem;
}

.btm-nav__container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  place-items: start;
}

.btm-nav__container > * {
  padding: 5px 0 2px;
  text-align: center;
  width: 100%;
}

.btm-nav__icon {
  /*    max-height: 20px;*/
  display: block;
  /*    margin: 0 auto 7px;*/
}

.btm-nav__icon {
  color: #bcb395;
  font-size: 24px;
}

/*=============================
  ハンバーガーメニュー
  =============================*/
.btn-trigger {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.btn-trigger span {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #bcb395;
  border-radius: 4px;
}

.btn-trigger,
.btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 2px;
}

.btn-trigger span:nth-of-type(2) {
  top: 10px;
}

.btn-trigger span:nth-of-type(3) {
  top: 18px;
}

.js-dd-btn.active .btn-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.js-dd-btn.active .btn-trigger span:nth-of-type(2) {
  opacity: 0;
}

.js-dd-btn.active .btn-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

/*=============================
  グローバルナビゲーション レスポンシブ
  =============================*/
@media screen and (min-width: 1024px) {
  .nav-for-sp {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .nav-for-pc {
    display: none;
  }
}

/*=============================
  1,header End
  =============================*/

/*=============================
  2,footer
  =============================*/

/*=============================
  net_cv-box-content
  =============================*/
.rv-grid-2-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.rv-grid-2-2 > *:first-child {
  border-right: 1px solid;
}

.st-grid-1-2 {
  border-bottom: 1px solid;
  margin-bottom: 6rem;
}

.btn-rv {
  padding: 3rem 0 6rem;
  transition: all 0.3s;
}

.btn-rv.btn--arrow-right {
  padding-left: 1em;
  padding-right: 1em;
}

/* .btn-rv:hover {
  background-color: #fff;
  color: #bcb395;
} */

.btn-rv:hover {
  background-color: #fff;
  color: rgb(161, 62, 64);
}

.btn-rv.btn--arrow-right::after {
  position: absolute;
  transform: none;
  right: 0;
  top: auto;
  margin-top: 16px;
  left: 0;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .btn-rv {
    padding: 6rem 0;
  }

  .btn-rv.btn--arrow-right::after {
    position: absolute;
    transform: none;
    right: 1em;
    top: 50%;
    margin-top: auto;
    transform: translateY(-50%);
    left: auto;
    bottom: auto;
  }
}

/*=============================
  footer-contents
  =============================*/
/* .footer-bgc {
  color: #fff;
  background-color: #242424;
} */

.footer-bgc {
  color: #fff;
  background: linear-gradient(0deg, rgba(233, 199, 196, 1) 2%, rgba(255, 255, 255, 1) 280%);
}

.footer-inner {
  width: calc(100% - 1rem);
  max-width: 1024px;
  margin: 0 auto;
  padding: 75px 0 75px;
}

.f-main {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 4rem;
}

.f-main > *:first-child {
  width: 264px;
  margin-bottom: 3rem;
}

.f-sns-list {
  display: flex;
}

.f-sns-list-item + .f-sns-list-item {
  margin-left: 16px;
}

.f-menu-list {
  display: none;
}

.f-txt-bold {
  font-weight: bold;
}

.f-menu-btm-S {
  margin-bottom: 3rem;
}

.copy_right {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.copy_right br {
  display: block;
}

@media screen and (min-width: 768px) {
  .footer-inner {
    padding: 120px 0 120px;
  }

  .f-main {
    justify-content: space-between;
  }

  .f-main > *:first-child {
    width: auto;
    margin-bottom: 0;
  }

  .f-menu-list {
    display: block;
  }

  .f-menu-list > * {
    margin-bottom: 6rem;
  }

  .f-menu-list .f-menu-2 {
    margin-bottom: 3rem;
  }

  .f-menu-1 {
    display: grid;
    grid-template-columns: 0.7fr 0.4fr 0.5fr 2fr;
    grid-gap: 1rem;
  }

  .f-menu-1 > *,
  .f-menu-2 > * {
    font-size: 14px;
    line-height: 2;
  }

  .f-menu-2 {
    display: flex;
    flex-flow: row wrap;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 1rem 0;
  }

  .f-menu-2 > * {
    margin-right: 2rem;
  }

  /* .f-menu-3 {
    display: flex;
    justify-content: space-between;
  } */

  .f-menu-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .f-menu-shoplist {
    display: grid;
    grid-template-columns: 0.4fr 0.5fr 0.5fr;
    grid-gap: 1rem;
  }

  /* .f-menu-ttl {
    display: block;
    background-color: #fff;
    color: #242424;
    padding: 0 0.5rem;
    margin: 0.5rem 0;
  } */
  .f-menu-ttl {
    display: block;
    background-color: #ffffff;
    color: #e9c7c4;
    padding: 0 0.5rem;
    margin: 0.5rem 0;
  }
  .copy_right br {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .f-menu-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 6rem;
  }

  .f-menu-1 > *:last-child {
    grid-area: 2/1/2/4;
  }

  /* .f-menu-3 > * {
    flex-basis: calc(100% / 5 - 1rem);
  } */

  .f-menu-shoplist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
}

/*=============================
  footer-contents-btn_hover
  =============================*/
.f-menu-1 a,
.f-menu-2 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

/* .f-menu-1 a::after,
.f-menu-2 a::after {
  position: absolute;
  margin-bottom: 4px;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #bcb395;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
} */

.f-menu-1 a::after,
.f-menu-2 a::after {
  position: absolute;
  margin-bottom: 4px;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: rgb(161, 62, 64);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

/* .f-menu-1 a:hover,
.f-menu-2 a:hover {
  color: #bcb395;
} */

.f-menu-1 a:hover,
.f-menu-2 a:hover {
  color: rgb(161, 62, 64);
}

.f-menu-1 a:hover::after,
.f-menu-2 a:hover::after {
  transform: scale(1, 1);
}

/*=============================
  2,footer End
  =============================*/

/*=============================
  3,common（laquan.net共通）Start
  =============================*/

/*=============================
  base-contents
  =============================*/
/* --- ベースからの変更があればここに追加 --- */
/* html {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.2rem;
  overflow-wrap: break-word;
  word-break: break-all;
  font-family: Jost-main, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体",
    "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  color: #3c3c3c;
  font-feature-settings: "palt";
  box-sizing: border-box;
} */

@media screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 320px) {
  html {
    font-size: 12px;
  }
}

html a {
  tap-highlight-color: rgba(188, 179, 149, 0.6);
  -webkit-tap-highlight-color: rgba(188, 179, 149, 0.6);
}

img {
  max-width: 100%;
  height: auto;
}

li {
  list-style: none;
}

a[disabled] {
  pointer-events: none;
}

/*コンテンツ*/
.content {
  padding-top: 50px;
  /*グローバルナビの高さ分のマージン*/
}

/*=============================
  responsive
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

/*=============================
  inner-content-variation
  =============================*/
/* --- ベースからの変更があればここに追加 --- */
.inner-900,
.inner-900-b {
  width: calc(100% - 4rem);
  max-width: 900px;
  margin: 0 auto;
}

.inner-1024,
.inner-1024-b {
  width: calc(100% - 4rem);
  max-width: 1024px;
  margin: 0 auto;
}

.inner-1200 {
  width: calc(100% - 3rem);
  max-width: 1200px;
  margin-inline: auto;
  padding-block: 75px;
}

@media screen and (min-width: 768px) {
  .inner-1200 {
    padding-block: 120px;
  }
}

/*=============================
  content-wrapper-set
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

/*=============================
  list-content-set
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

/*=============================
  css-counter-list-set
  =============================*/
/* --- ベースからの変更があればここに追加 --- */
.counter,
.counter-b {
  counter-reset: num;
}

.counter > li {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.counter > li:last-child {
  margin-bottom: 0;
}

.counter > li:before {
  counter-increment: num;
  content: counter(num);
  font-size: 1rem;
  border: 1px solid #bcb395;
  box-sizing: border-box;
  border-radius: 50%;
  height: 2rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  letter-spacing: 0;
  background-color: #bcb395;
  color: white;
}

.counter-b {
  position: relative;
}

.counter-b > * {
  position: relative;
}

.counter-b > *:before {
  position: absolute;
  display: inline-block;
  counter-increment: num;
  content: counter(num);
  left: -2.2em;
  width: 2em;
  text-align: center;
}

.recommend-point .counter-description {
  position: absolute;
  margin-top: 0.1rem;
  display: none;
  font-size: 0.9rem;
}

.recommend-point .counter > li {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .recommend-point .counter-description {
    display: block;
  }
  .recommend-point .counter > li {
    margin-bottom: 2.5rem;
  }
}
/*=============================
  content-back-set
  =============================*/
.back-1,
.back-2,
.back-3 {
  padding: 1rem 0.5rem;
}

@media screen and (min-width: 1024px) {
  .back-1,
  .back-2,
  .back-3 {
    padding: 2.5rem;
  }
}

.back-1 {
  color: #fff;
  background-color: #bcb395;
  border-color: #bcb395;
}

.back-2,
.back-2-b {
  background-color: #f4f2ec;
  position: relative;
  padding-top: 4rem;
}

.back-2::before {
  content: "";
  display: inline-block;
  border-top: 1.5rem solid #bcb395;
  border-right: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-left: 1.5rem solid #bcb395;
  position: absolute;
  top: 0;
  left: 0;
}

.back-2-b {
  padding: 1rem;
}

.back-2-c {
  background-color: #fff;
  position: relative;
  padding: 2rem;
}

.back-3 {
  border: 1px solid #bcb395;
}

/*=============================
  block-bottom-set
  =============================*/
/* --- ベースからの変更があればここに追加 --- */
.blk-btm-XS {
  margin-bottom: 1rem;
}

.blk-btm-S {
  margin-bottom: 3rem;
}

.blk-btm-M {
  margin-bottom: 6rem;
}

.blk-btm-L {
  margin-bottom: 9rem;
}

/*=============================
  section-border-content-set
  =============================*/
/* --- ベースからの変更があればここに追加 --- */
.sec-border {
  position: relative;
}

.sec-border::after {
  content: "";
  position: absolute;
  border: 1px solid #3e3e3e;
  width: 100%;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}

.sec-border-top,
.sec-border-top-b {
  position: relative;
}

.sec-border-top::after,
.sec-border-top-b::after {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  width: 100%;
  top: 0;
  margin: auto;
  left: 0;
  right: 0;
}

.sec-border-top-b::after {
  border-color: #242424;
}

/*=============================
  head-content-set
  =============================*/
/* --- ベースからの変更があればここに追加 --- */
.head-XS.hdng-sub::before {
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .head-XS.hdng-sub.hdng-pre {
    white-space: pre;
  }
}

/*=============================
  lead-text-content-set
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

/* 以下は削除予定 */
/* .lead {
  text-align: center;
  margin-bottom: 3rem;
}

.head-XS.hdng-sub+.lead {
  margin-bottom: 6rem;
} */

/*=============================
  title-content-set
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

/* 以下は削除予定 */
/* .ttl-XS, .ttl-S, .ttl-M, .ttl-L, .ttl-XL,
.ttl-L-b {
  font-weight: bold;
  letter-spacing: .1rem;
  margin: .5em auto;
}

.ttl-XS {
  font-size: .9rem
}

.ttl-S {
  font-size: 1rem;
}

.ttl-M {
  font-size: 1.1rem;
}

.ttl-L, .ttl-L-b {
  font-size: 1.3rem;
}

.ttl-XL {
  font-size: 1.6rem;
}

.ttl-M.bgc-1 {
  padding: .2rem .5rem;
  margin-top: 0;
}

.ttl-L.bgc-1 {
  padding: .6rem;
  margin-bottom: 2rem;
}

.ttl-L-b {
  border-top: 1px solid #BCB395;
  border-bottom: 1px solid #BCB395;
  padding: .8rem 0;
  margin-bottom: 1.5rem;
  color: #BCB395;
} */

/*=============================
  text-content-set
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

.baloon-text {
  position: relative;
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 16px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 5rem;
}

.baloon-text:before {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 5.7rem;
  margin-left: -15px;
  border: 14px solid transparent;
  border-top: 24px solid #fff;
  z-index: 2;
}

.baloon-text-border {
  position: relative;
  display: inline-block;
  padding: 1rem 1.5rem;
  font-size: 16px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 5rem;
  border: 1px solid #bcb395;
}
.baloon-text-border:before,
.baloon-text-border:after {
  content: "";
  position: absolute;
  left: 60px;
  margin-left: -15px;
  border: 14px solid transparent;
  z-index: 2;
}
.baloon-text-border:before {
  bottom: -34px;
  border-top: 20px solid #bcb395;
}
.baloon-text-border:after {
  bottom: -32.5px;
  border-top: 20px solid #fff;
}
@media screen and (min-width: 768px) {
  .baloon-text-border:before,
  .baloon-text-border:after {
    left: 90px;
    margin-left: -15px;
    border: 14px solid transparent;
  }
  .baloon-text-border:before {
    bottom: -38px;
    border-top: 24px solid #bcb395;
  }
  .baloon-text-border:after {
    bottom: -36px;
    border-top: 24px solid #fff;
  }
}

.recommend-decoration svg {
  position: absolute;
  z-index: 3;
  width: 115px;
  height: auto;
  left: -1.8rem;
  top: -2.3rem;
}

/*=============================
  font-family-set
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

@font-face {
  font-family: "Ephesis-rg";
  src: url("file/Ephesis-Regular.ttf") format("truetype");
  font-display: swap;
}

.ephesis {
  font-family: "Ephesis-rg", "sans-serif";
  font-weight: normal;
  -webkit-text-stroke: 1px;
}

/*=============================
  decoration-content
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

.label {
  border-top: none;
  border-right: none;
  border-bottom: none;
  padding: 0 0 0 0.8em;
}

/*=============================
  background-color-set
  =============================*/
.bgc-1 {
  color: #fff;
  background-color: #bcb395;
  border-color: #bcb395;
}

.bgc-2 {
  background-color: #f4f2ec;
}

.bgc-3 {
  color: #3c3c3c;
  background-color: #fff;
}

.bgc-4 {
  color: #fff;
  background-color: #242424;
}

.bgc-5 {
  background-color: rgb(244, 242, 235);
}

.bgc-6 {
  color: #707070;
  background-color: #e2b9b4;
  background: linear-gradient(0deg, rgb(240 218 217) 0%, rgb(241, 217, 215, 0.5) 80%, rgb(251 250 246) 100%);
  border-color: #bcb395;
}

.bgc-7 {
  color: #707070;
  background-color: #e2b9b4;
  background: linear-gradient(180deg, rgb(251 250 246) 0%, rgb(240 227 186 / 8%) 20%, rgb(234 202 199 / 14%) 75%, rgb(252 251 246) 100%);
  border-color: #bcb395;
}

.bgc-af1,
.bgc-af2 {
  position: relative;
}

.bgc-af1:after {
  content: "";
  position: absolute;
  background: #faf4f2;
  width: 88%;
  height: 50%;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
}

.bgc-af2:after {
  content: "";
  position: absolute;
  background: #f4f2eb;
  width: 88%;
  height: 50%;
  display: block;
  top: auto;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.bg-8e3b46 { background: #8e3b46; }

/*=============================
  text-color-set
  =============================*/
.color-1 {
  color: #bcb395;
}

.color-2 {
  color: #ff0000;
}

.color-3 {
  color: #ffffff;
}

.color-4 {
  color: rgb(233, 199, 196);
}

/*=============================
  btn-content
  =============================*/
.btn-1,
.btn-1-L,
.btn-2,
.btn-2-L,
.btn-3,
.btn-3-L,
.btn-4,
.btn-5,
.btn-5-L,
.btn-7,
.btn-8 {
  display: block;
  margin: 0 auto;
  width: calc(100% - 2em);
  max-width: 360px;
  padding: 16px 10px;
  /* font-weight: bold; */
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  border: 1px solid currentColor;
  border-radius: 100vmax;
}

.btn-1-L:focus,
.btn-1-L:hover,
.btn-1:focus,
.btn-1:hover {
  opacity: 0.8;
}

.btn-1-L {
  max-width: 100%;
}

.btn-2,
.btn-2-L {
  color: #bcb395;
}

.btn-2:hover,
.btn-2-L:hover {
  background-color: #bcb395;
  color: #fff;
  border-color: #bcb395;
}

.btn-2-L {
  max-width: 480px;
}

.btn-3,
.btn-3-L {
  color: #fff;
  background-color: #242424;
}

.btn-3:hover,
.btn-3-L:hover {
  background-color: #fff;
  color: #242424;
}

.btn-3-L {
  max-width: 480px;
}

.btn-4 {
  color: #fff;
}

.btn-5,
.btn-5-L {
  color: #fff;
  background-color: #bcb395;
  border: 1px solid #bcb395;
}

.btn-5-L {
  width: 100%;
  max-width: unset;
}

.btn-5:hover,
.btn-5-L:hover {
  background-color: #fff;
  border-color: #bcb395;
  color: #bcb395;
}

.btn-6 {
  position: relative;
  text-align: right;
  padding-right: 1rem;
  font-weight: bold;
}

.btn-6::after {
  position: absolute;
  font-family: "Material Icons";
  content: "navigate_next";
  right: 0;
}

.btn-7 {
  color: #fff;
  background-color: #bcb395;
  border: 1px solid #fff;
}

.btn-7:hover {
  background-color: #fff;
  color: #bcb395;
}

.btn-8 {
  color: #fff;
  background-color: #242424;
  border: 1px solid #242424;
}

.btn-8:hover {
  background-color: #fff;
  color: #242424;
}

.btn-9 {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.btn-9::after {
  position: absolute;
  margin-bottom: 4px;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #bcb395;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.btn-9:hover {
  color: #bcb395;
}

.btn-9:hover::after {
  transform: scale(1, 1);
}

.btn-lft {
  margin-left: 0;
}

/*=============================
  btn-decoration-content
  =============================*/
.btn--arrow-right {
  position: relative;
  padding-left: 2em;
  padding-right: 2em;
}

.btn--arrow-right::after {
  font-family: "Material Icons";
  content: "navigate_next";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}

.btn--arrow-left {
  position: relative;
  padding-left: 2em;
  padding-right: 2em;
}

.btn--arrow-left::after {
  font-family: "Material Icons";
  content: "navigate_before";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
}

.btn--arrow-up {
  position: relative;
  padding-left: 2em;
  padding-right: 2em;
}

.btn--arrow-up::after {
  font-family: "Material Icons";
  content: "expand_less";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}

.btn--arrow-down {
  position: relative;
  padding-left: 2em;
  padding-right: 2em;
}

.btn--arrow-down::after {
  font-family: "Material Icons";
  content: "expand_more";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}

.btn--open-new {
  position: relative;
  padding-left: 2em;
  padding-right: 2em;
}

.btn--open-new::after {
  font-family: "Material Icons";
  content: "open_in_new";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}

/*=============================
  flex-layout
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

/* --- Romantic-レイアウト ---  */
.ly-type-romanticA,
.ly-type-romanticB,
.ly-type-romanticC {
  display: flex;
  flex-flow: row wrap;
  position: relative;
}

.ly-type-romanticA + *,
.ly-type-romanticC + * {
  grid-area: 1;
}

.ly-type-romanticA .romanticA1 {
  width: 90%;
  position: relative;
}

.ly-type-romanticA .romanticA2 {
  width: 50%;
  margin-left: auto;
  position: relative;
  bottom: 2%;
}

.ly-type-romanticA .romanticA3 {
  width: 50%;
  position: absolute;
  left: 4%;
  top: 60%;
  z-index: 1;
}

.ly-type-romanticB .romanticB1 {
  width: 40%;
  position: relative;
  margin-left: auto;
  margin-bottom: 2rem;
}

.ly-type-romanticB .romanticB2 {
  width: 56%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.ly-type-romanticC .romanticC1 {
  width: 45%;
  position: relative;
  order: 1;
  margin-top: 40%;
  margin-left: auto;
}

.ly-type-romanticC .romanticC2 {
  width: 70%;
  margin-left: auto;
  position: relative;
  bottom: 2%;
}

.ly-type-romanticC .romanticC3 {
  width: 45%;
  position: relative;
  margin-top: 10%;
}

@media screen and (min-width: 768px) {
  .ly-type-romanticA .romanticA1 {
    width: 64%;
    position: relative;
  }

  .ly-type-romanticA .romanticA2 {
    width: 38%;
    position: absolute;
    top: 14%;
    right: 0;
  }

  .ly-type-romanticA .romanticA3 {
    width: 40%;
    position: absolute;
    left: 18%;
    bottom: 0%;
    top: auto;
  }

  .ly-type-romanticB .romanticB1 {
    width: 56%;
    position: relative;
    margin-left: auto;
  }

  .ly-type-romanticB .romanticB2 {
    width: 70%;
    position: absolute;
    left: -34%;
    bottom: -12%;
  }

  .ly-type-romanticC .romanticC1 {
    width: 40%;
    position: relative;
    margin-top: 10%;
    order: initial;
  }

  .ly-type-romanticC .romanticC2 {
    width: 60%;
    position: relative;
    left: -4%;
    bottom: auto;
    z-index: 1;
  }

  .ly-type-romanticC .romanticC3 {
    width: 30%;
    position: absolute;
    margin-top: 36%;
    right: -20%;
  }

  .ly-type-romanticA + *,
  .ly-type-romanticC + * {
    grid-area: auto;
  }
}

/* 以下は削除予定 */
/* .col-1-2 {
  display: block;
}

.col-1-2 > * {
  margin-bottom: 2rem;
}

.col-1-3 {
  display: block;
}

.col-1-4 {
  display: block;
}

.col-2-1 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.col-2-1 > * {
  flex-basis: calc(100% / 2 - 1rem);
}

.col-2-2, .col-2-2-b {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.col-2-2 > * {
  flex-basis: calc(100% / 2 - .5rem);
}

.col-2-2-b > *:first-child {
  flex-basis: calc(40%);
}

.col-2-2-b > *:last-child {
  flex-basis: calc(56%);
}

.col-2-3 {
  display: flex;
  flex-flow: row wrap;
}

.col-2-3 > * {
  flex-basis: calc(100% / 2);
}

.col-3-5 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.col-3-5 > * {
  flex-basis: calc(100% / 3 - .5rem);
}

.col-5-5 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.col-5-5 > * {
  flex-basis: calc(100% / 5 - .5rem);
}

@media screen and (min-width: 768px) {
  .col-1-2 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .col-1-2 > * {
    flex-basis: calc(100% / 2 - 1.5rem);
  }

  .col-1-3 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .col-1-3>* {
    flex-basis: calc(100% / 3 - 1rem);
  }

  .col-1-4 {
    display: flex;
  }

  .col-1-4 > * {
    flex-basis: calc(100% / 4);
  }

  .col-2-1 {
    display: block;
  }

  .col-2-3 > * {
    flex-basis: calc(100% / 3);
  }

  .col-3-5 > * {
    flex-basis: calc(100% / 5 - .5rem);
  }

  .row-reverse {
    flex-direction: row-reverse;
  }
} */

/*=============================
  grid-layout
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

.grid-1-2_t1,
.grid-1-2_t2 {
  display: grid;
  grid-gap: 2rem;
}

@media screen and (min-width: 768px) {
  .grid-1-2_t1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 2rem;
  }

  .grid-1-2_t2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 2rem;
  }
}

@media (min-width: 768px) {
  .cpbnr {
    grid-column: 1/3;
  }
}

/* 以下は削除予定 */
/* .grid-1-2, .grid-1-2-S {
  display: grid;
  grid-gap: 2rem;
}

.grid-1-3, .grid-1-3-b {
  display: grid;
  grid-gap: 1.5rem;
}

.grid-1-3-b {
  grid-gap: 3rem;
}

.grid-2-2, .grid-2-2-b {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}

.grid-2-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}

.grid-2-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}

.grid-3-3,
.grid-3-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}

.grid-1-1--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}

.grid-1-1--2>* {
  grid-column: 1/ 3;
}

.grid-1-2--3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: .5rem;
}

.grid-1-2--3>*:first-child {
  grid-column: 1/3;
}

.grid-1-3--4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: .5rem;
}

.grid-1-3--4>*:first-child {
  grid-column: 1/4;
}

@media screen and (min-width:768px) {
  .grid-1-2, .grid-1-2-S {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
  }

  .grid-1-2-S {
    grid-gap: 2rem;
  }

  .grid-1-3, .grid-1-3-b {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
  }

  .grid-1-3-b {
    row-gap: 4rem
  }

  .grid-2-2, .grid-2-2-b {
    grid-gap: 2rem;
  }

  .grid-2-2-b {
    grid-template-columns: 4fr 6fr;
  }

  .grid-2-1,
  .grid-3-1 {
    display: block;
  }

  .grid-2-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }

  .grid-2-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
  }

  .grid-1-1--2>*:nth-child(n+2) {
    grid-column: auto;
  }

  .grid-1-2--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: .75rem;
  }

  .grid-1-3--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: .75rem;
  }

  .grid-1-2--3>*:first-child,
  .grid-1-3--4>*:first-child {
    grid-column: auto;
  }
  .grid-1-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
  }
} */

/*=============================
  3,common（laquan.net共通）End
  =============================*/

/*=============================
  4,template（一部共通）Start
  =============================*/

/*=============================
  page-main-visual-content
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

.MV:has(.main-view__container) {
  overflow: visible;
}

/* #wedding-top {
  position: relative;
}

#wedding-top:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(252, 250, 245, 1) -100%, rgb(251, 250, 247, 1) 280%, rgb(250, 250, 250, 1) 100%);
  background-size: cover;
  z-index: -5;
} 

#wedding-top .MV {
  overflow: visible;
  display: contents;
} */

main {
  position: relative;
}

main:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(252, 250, 245, 1) -100%, rgb(251, 250, 247, 1) 280%, rgb(250, 250, 250, 1) 100%);
  background-size: cover;
  z-index: -5;
}

main .MV {
  overflow: visible;
  display: contents;
}

/* .main-view__container {
  padding: 0 1rem;
  position: relative;
} */

.main-view__container {
  padding: 16px 0 0 5vh;
  position: relative;
}

.main-view__container:after {
  content: "";
  position: absolute;
  display: block;
  background-color: #f7ebe6;
  height: calc(100% + 15vw);
  width: 100%;
  top: -25vw;
  left: 0;
  z-index: 0;
}

/* .main-view__title {
  position: absolute;
  filter: drop-shadow(0px 0px 5px #ffffff);
  text-align: left;
  padding: 11vw 0 0 4vw;
  line-height: 1.8;
  letter-spacing: 0.4rem;
  font-size: clamp(0.875rem, 4.5vw, 7rem);
} */

.main-view__title {
  position: absolute;
  bottom: 5vw;
  left: 0;
  z-index: 2;
  filter: none;
  text-align: left;
  padding: 8vw 4vw;
  line-height: 1.8;
  letter-spacing: 0.2rem;
  font-size: clamp(0.875rem, 4.5vw, 7rem);
  text-shadow: 0 0 20px #e06453;
  color: #fff;
  background: linear-gradient(90deg, rgba(226, 185, 180, 0.6) 0%, rgba(224, 193, 189, 0.2740283613445378) 78%);
  max-width: fit-content;
}

.main-view__subtitle {
  display: grid;
  margin-top: -40px;
  margin-top: -9vw;
}

.main-view__subtitle .subtitle__jp {
  order: 2;
  font-size: 3.5vw;
  letter-spacing: 1vw;
}

.main-view__subtitle .subtitle__en {
  order: 1;
  font-size: 14vw;
  line-height: 1.2;
  margin-bottom: 3.2vw;
  color: #d5b4b1;
}

@media (min-width: 768px) {
  /* .main-view__container {
    padding: 0 6.25vw;
  } */

  .main-view__container {
    padding: 16px 8vw 0;
  }

  .main-view__container img {
    width: 100%;
  }

  /* .main-view__title {
    position: absolute;
    text-align: center;
    padding: 0;
    line-height: 1.6;
    letter-spacing: 0.5rem;
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    font-size: 1.6vw;
    left: 0;
    right: 0;
    top: clamp(3.275rem, 5.4vw, 5rem);
    top: 6.8vw;
  } */

  .main-view__title {
    position: absolute;
    text-align: justify;
    padding: 0;
    line-height: 1.6;
    letter-spacing: 0.2rem;
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    font-size: 1.6vw;
    left: 4vw;
    right: 0;
    top: auto;
    padding: 4vw 6vw;
  }

  .main-view__subtitle {
    margin: clamp(-3.8rem, -4vw, -2.5rem) -3.8vw 0 0;
    margin: -4.9vw -4.9vw 0 0;
    text-align: right;
  }

  .main-view__subtitle .subtitle__jp {
    order: initial;
    font-size: 0.6vw;
    font-size: 1vw;
    letter-spacing: 0.3vw;
    margin-bottom: 0.1vw;
    filter: drop-shadow(0px 0px 5px #ffffff);
  }

  .main-view__subtitle .subtitle__en {
    letter-spacing: 0.2vw;
    font-size: clamp(2.625rem, 4.4vw, 4rem);
    font-size: 5.5vw;
    margin-bottom: 0;
  }
}

.wedding-attraction__container {
  margin-top: 17vw;
  padding: 0 1rem 0;
}

.wedding-attraction__text {
  font-size: 1.2rem;
  line-height: 2.4;
  letter-spacing: 0.2rem;
}

.wedding-attraction__image {
  margin-top: 4.6rem;
}

@media screen and (min-width: 768px) {
  .wedding-attraction__container {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    padding: 0 0.5rem;
    max-width: 1090px;
    margin: 7.5vw auto 5.5rem;
  }

  .wedding-attraction__text {
    font-size: 0.9rem;
    line-height: 2.3;
    letter-spacing: 0.2rem;
    display: grid;
    place-content: center;
    margin-left: -3rem;
  }

  .wedding-attraction__image {
    margin-top: 0;
  }
}

/*=============================
  page-main-concept-content
  =============================*/

.wd-concept-blk {
  padding: 80px 0;
  display: grid;
}

.wd-concept-text-box {
  width: calc(100% - 6em);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6rem;
  z-index: 0;
  text-align: justify;
  position: relative;
  grid-row: 1;
}

.wd-concept-deco-txt01 {
  position: relative;
}

.wd-concept-deco-txt01 {
  position: relative;
  width: 100%;
  height: 100px;
  display: block;
  z-index: 1;
  /* margin-top: -2rem; */
  left: -6vw;
}

.wd-concept-ttl {
  font-size: clamp(1.375rem, 1.33rem + 0.23vw, 1.5rem);
  line-height: 1.5;
  text-align: justify;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.wd-concept-txt {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}

.wd-concept-txt > * {
  line-height: 1.75;
}

.wd-concept-txt > *:last-child {
  position: relative;
}

.wd-concept-txt > *:last-child:after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(226, 185, 180, 0.6) 0%, rgba(224, 193, 189, 0.03) 78%);
  width: 100%;
  height: 300%;
  display: block;
  left: -8vw;
  top: -16px;
  bottom: auto;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .wd-concept-blk {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-concept-text-box {
    grid-row: auto;
    margin-left: 6vw;
    margin-bottom: 0;
    z-index: 1;
  }
}

.wd-concept-img-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  position: relative;
  margin-left: auto;
  z-index: 0;
  width: calc(100% - 1rem);
  height: fit-content;
  max-width: 640px;
}

@media screen and (min-width: 768px) {
  .wd-concept-img-box {
    grid-template-rows: 0.1fr auto;
    left: 3vw;
  }
}

.wd-concept-img01 {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
  margin-bottom: 4%;
}

.wd-concept-img02 {
  grid-column: 2 / span 1;
  grid-row: 1 / span 2;
  margin-left: 4%;
}

.wd-concept-img03 {
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
  margin-left: 13.4%;
}

/*=============================
  cv-content
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

/* 以下は削除予定 */
/* .cv-box {
  width: calc(100% - 1rem);
  max-width: 1024px;
  margin: 0 auto;
  padding: 2rem;
} */

/*=============================
  qa-content
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

/* 以下は削除予定 */
/* .qa-box .wrap-M > * {
  border: 1px solid #BCB395;
  margin-bottom: 1rem;
}

.qa-box .acc-trigger {
  padding: .75rem 3rem .75rem 5rem;
  padding-left: 3rem;
  position: relative;
}

.qa-box .acc-item {
  padding-left: 3rem;
}

.qa-box .acc-trigger::after {
  position: absolute;
  top: 25%;
  right: 1em;
  display: block;
  width: 1em;
  height: 1em;
  margin: auto;
  content: '';
  transform: rotate(135deg);
  transition: .2s;
  border-top: 2px solid #BCB395;
  border-right: 2px solid #BCB395;
}

.qa-box .acc-trigger.open::after {
  transform: rotate(-45deg);
  top: 40%;
}

.qa-box .acc-trigger {
  padding: .75rem 3rem .75rem 5rem;
}

.qa-box .acc-trigger::before {
  content: "Q";
  font-family: "Jost-exl", 'sans-serif';
  font-weight: normal;
  -webkit-text-stroke: 1px;
  display: inline-block;
  text-align: center;
  width: calc(1rem * 1.6 + 1.5rem);
  height: calc(1rem * 1.6 + 1.5rem);
  color: #fff;
  border: 1px solid #BCB395;
  background-color: #BCB395;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5rem;
  line-height: calc(1rem * 1.6 + 1.5rem);
}

.qa-box .acc-item {
  padding: .75em 3em .75em 5em;
} */

/*=============================
  flow-content
  =============================*/
.flow-container {
  display: grid;
  grid-gap: 3rem;
  color: #bcb395;
  counter-reset: flow-num;
}

.flow-item {
  background-color: #f4f2ec;
  text-align: center;
  padding: 1rem 2rem;
  position: relative;
}

.flow-item::before {
  content: counter(flow-num);
  counter-increment: flow-num;
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
}

.flow-item + .flow-item::after {
  content: "";
  width: 15px;
  height: 15px;
  border-right: 1px solid #bcb395;
  display: block;
  border-bottom: 1px solid #bcb395;
  transform: translate(-50%, 50%) rotate(45deg);
  top: -2.9rem;
  left: 50%;
  position: absolute;
}

@media screen and (min-width: 1024px) {
  .flow-container {
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 3rem;
  }

  .flow-item {
    padding: 3rem 1rem 1rem;
  }

  .flow-item::before {
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .flow-item + .flow-item::after {
    transform: translate(50%, -50%) rotate(-45deg);
    top: 50%;
    left: -2.7rem;
  }
}

/*=============================
  price-content
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

/* 以下は削除予定 */
/* .price-item-1::before, .price-item-1-b::before, .price-item-1-c::before, .price-item-1-d::before,
.price-item-1::after, .price-item-1-b::after, .price-item-1-c::after, .price-item-1-d::after {
  content: "";
  display: block;
  width: 3px;
  height: 15px;
  background-color: #BCB395;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: -28px;
}

.price-item-1-c::before,
.price-item-1-c::after {
  background-color: #3c3c3c;
  top: auto;
  bottom: 0;
  margin-bottom: -36px;
  right: 50%;
  left: 50%;
}

.price-item-1-d::before,
.price-item-1-d::after {
  right: -14px;
}

.price-item-2-d::before,
.price-item-2-d::after {
  content: "";
  display: block;
  width: 15px;
  height: 3px;
  background-color: #3c3c3c;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: -20px;
}

.price-item-2-d::after {
  margin-top: 2px;
}

.price-item-1-b::before, .price-item-1-d::before,
.price-item-1-b::after, .price-item-1-d::after {
  background-color: #3c3c3c;
}

.price-item-1::after, .price-item-1-b::after,
.price-item-1-c::after, .price-item-1-d::after {
  transform: rotate(90deg);
}

.price-box, .price-box-c, .price-box-d {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 53px;
}

.price-box-c {
  width: calc(80% - 2em);
  margin: 0 auto 1.5em;
  align-items: center;
}

.price-box-d {
  width: 100%;
  margin: 0 auto 1.5em;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  letter-spacing: 0.05em;
}

.price-item-1, .price-item-1-b, .price-item-1-c, .price-item-1-d {
  grid-column: 1/2;
  border: 1px solid;
  padding: 1.5rem .5rem;
  position: relative;
}

.price-item-1-c {
  grid-column: 1/3;
  height: 100%;
  padding: 2.5rem .5rem;
}

.price-item-1-d, .price-item-2-d, .price-item-3-d {
  height: 100%;
}

.price-item-2, .price-item-2-b, .price-item-2-c, .price-item-2-d {
  grid-column: 2/3;
  border: 1px solid #BCB395;
  padding: 1.5rem .5rem;
  position: relative;
}

.price-item-2-b, .price-item-2-d {
  border: 1px solid #3c3c3c;
}

.price-item-2-c {
  grid-column: 1/3;
  height: 100%;
  border: 1px solid #3c3c3c;
}

.price-item-2::after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 1px solid #BCB395;
  border-bottom: 1px solid #BCB395;
  position: absolute;
  transform: rotate(-45deg) translateX(-50%);
  bottom: 1rem;
  left: 50%;
}

.price-item-3-d {
  grid-column: 3/3;
  border: 1px solid;
  padding: 1.5rem .5rem;
  position: relative;
}

.price-border-c {
  position: relative;
}

.price-border-c:after {
  display: block;
  content: "";
  height: 1px;
  width: calc(70% - 2rem);
  margin: 8px auto;
  background-color: #333;
}

@media screen and (min-width:768px) {
  .price-box {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 53px;
  }

  .price-box-c {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-box-d {
    width: 80%;
    grid-gap: 53px;
  }

  .price-item-1, .price-item-1-b {
    grid-column: 2/3;
  }

  .price-item-1-c {
    grid-column: 1/2;
  }

  .price-item-2, .price-item-2-b {
    grid-column: 3/4;
  }

  .price-item-2-c {
    grid-column: 2/4;
  }

  .price-item-1-c::before,
  .price-item-1-c::after {
    top: 50%;
    margin-top: -8px;
    margin-bottom: 0;
    right: -28px;
    left: auto;
  }

  .price-item-1-d::before,
  .price-item-1-d::after {
    right: -28px;
  }

  .price-item-2-d::before,
  .price-item-2-d::after {
    right: -34px;
  }

  .price-border-c:after {
    width: calc(60% - 2rem);
  }
} */

/*=============================
  plan-course-content
  =============================*/
.course-options,
.course-options-b {
  padding: 2rem 1rem 0;
}

.course-options > *,
.course-options-b > * {
  margin-bottom: 2rem;
  align-self: center;
}

.opt-ttl,
.opt-ttl-b {
  text-align: center;
}

.opt-fd-ttl {
  position: relative;
  line-height: 1.25;
  font-feature-settings: "palt";
  width: fit-content;
  margin-inline: auto;
  padding: .85rem 1.2rem;
  border: 1px solid;
  border-radius: 100vmax;
  background: rgb(252 251 247);
}

.opt-fd-ttl:before,
.opt-fd-ttl:after {
  content:"";
  position: absolute;
  bottom: 0;
  left: 40%;
  transform: translate(-40%, 98%);
  height: 0;
  width: 0;
  border-width: 0px 16px 10px 0px;
  border-color: transparent #fbfaf6 transparent transparent;
}

.opt-fd-ttl:after {
  z-index:-1;
  border-width: 1px 18px 11px 0px;
  border-color: transparent #bcb395 transparent transparent;
}


.opt-container,
.opt-container-b,
.opt-container-c {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.opt-container > *,
.opt-container-b > * {
  flex-basis: calc(100% / 4);
  margin-bottom: 2rem;
}

.opt-container-c > * {
  flex-basis: calc(100% / 3);
  margin-bottom: 2rem;
}

.opt-container img,
.opt-container-b img {
  max-width: 65%;
}

.opt-container-c img {
  max-width: 50%;
}

@media screen and (min-width: 768px) {
  .course-options {
    display: grid;
    grid-template-columns: 2fr 8fr;
    grid-gap: 1rem;
    padding: 2rem;
  }

  .opt-ttl {
    text-align: center;
    margin-bottom: 0;
  }

  .opt-container,
  .opt-container-c {
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .opt-container > *,
  .opt-container-c > * {
    flex-basis: calc(100% / 8);
    margin-bottom: 0;
  }

  .opt-container img,
  .opt-container-b img {
    max-width: 50%;
  }
}

/*=============================
  gallery-content
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

/* 以下は削除予定 */
/* .gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(6, 138px);
  grid-gap: 8px;
}

.g-1 {
  grid-column: span 4;
}

.g-2 {
  grid-column: span 6;
}

.g-3 {
  grid-column: span 5;
  grid-row: span 2;
}

.g-4 {
  grid-column: span 5;
  grid-row: span 2;
}

.g-5 {
  grid-column: span 10;
  grid-row: span 2;
}

.g-6 {
  grid-column: span 4;
}

.g-7 {
  grid-column: span 6;
}

@media screen and (min-width: 768px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(3, 427px);
    grid-gap: 20px;
  }

  .g-1 {
    grid-column: span 3;
  }

  .g-2 {
    grid-column: span 4;
  }

  .g-3 {
    grid-column: span 2;
    grid-row: unset;
  }

  .g-4 {
    grid-column: span 2;
    grid-row: unset;
  }

  .g-5 {
    grid-column: span 3;
    grid-row: unset;
  }

  .g-6 {
    grid-column: span 3;
  }

  .g-7 {
    grid-column: span 4;
  }
} */

/*=============================
  css-num-content-set
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

/* 以下は削除予定(class名が汎用性持たないので固有でもいい) */
main {
  counter-reset: i;
}

.num {
  position: relative;
  padding-top: 5rem;
}

.num::before {
  counter-increment: i;
  content: counter(i, decimal-leading-zero);
  font-size: 8rem;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  color: #f4f2ec;
  z-index: -1;
  line-height: 1;
}

.num-1_list {
  counter-reset: n1;
}

.num-1 {
  position: relative;
  font-size: 1.6rem;
  color: #d7b4b1;
  width: 100%;
  border-bottom: 1px solid;
}

.num-1::after {
  counter-increment: n1;
  content: counter(n1);
  font-size: 4rem;
  box-sizing: border-box;
  line-height: 1;
  vertical-align: bottom;
}

/*=============================
  shop-content-set
  =============================*/
.parking {
  border: 1px solid #bcb395;
}

.parking-ttl {
  padding: 1rem;
  background-color: #bcb395;
  color: #fff;
}

.parking-box {
  padding: 1rem;
}

/*=============================
  content-border-outline
  =============================*/
.outline-offset {
  outline-offset: -0.5rem;
  outline: 1px solid #bcb395;
  padding: 0 0 4rem;
}

.outline-offset .outline-offset__body {
  padding: 0 1rem;
}

@media screen and (min-width: 1024px) {
  .outline-offset {
    outline-offset: -1rem;
  }

  .outline-offset .outline-offset__body {
    padding: 0 2rem;
  }
}

/*=============================
  sp-accordion-js
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

/* 以下は削除予定(class名が汎用性持たないので固有でもいい) */
.js-acc-trigger-sp::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-left: 2px solid #bcb395;
  border-bottom: 2px solid #bcb395;
  transform: rotate(-45deg) translateX(-50%);
  position: absolute;
  left: 50%;
}

.js-acc-trigger-sp {
  position: relative;
  height: 2rem;
  margin-bottom: 2rem;
}

.js-acc-item-sp {
  display: none;
}

@media screen and (min-width: 768px) {
  .js-acc-item-sp {
    display: block !important;
  }
}

/*=============================
  recommended-content
  =============================*/
.rec::after {
  content: "";
  display: block;
  width: 150px;
  height: 75px;
  background: url(../../net/img/recommended.png) no-repeat;
  position: absolute;
  z-index: 99;
  left: 25%;
  top: -45%;
  transform: translateX(-50%);
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .rec::after {
    width: 300px;
    height: 151px;
    top: -50%;
    left: 30%;
  }
}

.rec {
  position: relative;
}

/*=============================
  popular-content
  =============================*/
.pop::after {
  content: "";
  display: block;
  width: 125px;
  height: 96px;
  background: url(../../net/img/Popular.png) no-repeat;
  position: absolute;
  z-index: 99;
  left: 25%;
  top: -55%;
  transform: translateX(-50%);
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .pop::after {
    width: 200px;
    height: 153px;
  }
}

.pop {
  position: relative;
}

/* --- TOP-content --- */
.recammended,
.popular {
  position: relative;
}

.recammended::before,
.popular::before {
  position: absolute;
  content: "";
  width: 273px;
  height: 100px;
  display: block;
  background-image: url(net/img/recommended.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 99;
  bottom: 0;
  left: 10%;
}

.recammended::before {
  width: 40%;
  top: 50%;
  margin-top: -32px;
  left: 56%;
}

.popular::before {
  background-image: url(net/img/Popular.png);
  width: 32%;
  top: 50%;
  margin-top: -36px;
  left: 64%;
}

@media screen and (min-width: 768px) {
  .recammended::before {
    margin-top: -45px;
    left: 50%;
  }

  .popular::before {
    margin-top: -56px;
    left: 50%;
  }
}

.txt__sub-inner-a {
  padding: 1rem 2.5rem 0;
}

.txt__sub-inner-b {
  padding: 0rem 2.5rem;
}

/*=============================
  product-content-set
  =============================*/
.product-caption {
  margin: 1.5rem 0;
}

.gallery-frame-table {
  border-collapse: separate;
  border-spacing: 1em 0.5em;
  width: 100%;
  border: 1px solid;
  padding: 0.5em 0.3em;
}

/*=============================
  nenga-content-set
  =============================*/
.nengacp-ttl {
  text-align: center;
  padding: 0.5em;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.nenga-box {
  padding: 1em;
  text-align: center;
  letter-spacing: 0.05em;
}

.nenga-price-txt {
  font-size: 1.4rem;
}

.nenga-box-border {
  border: 4px solid #bcb395;
  border-top: 0;
}

.nenga-gallery {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
}

.nenga-gallery img {
  border: 1px solid #3c3c3c;
}

@media screen and (min-width: 768px) {
  .nenga-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*slick-slider スタジオ背景スライダー*/

/* swiperで作成した背景スライダーに以降予定_20220613  */
.slide-wrap {
  max-width: 1100px;
  margin: 0 auto 80px auto;
  padding: 0;
  transition: all 0.5s;
}

.slide-wrap img {
  width: 100%;
  height: auto;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider .thumb-wrap {
  position: relative;
  height: 100%;
  overflow: auto;
}

.slider .thumb-wrap .thumb .slick-track {
  left: 0 !important;
  width: 100%;
  opacity: 1;
}

.slider .thumb-wrap .thumb .slick-slide {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
  padding: 5px 5px 5px 0;
}

.slider .thumb-wrap .thumb .slick-slide:hover {
  opacity: 0.5;
}

.slider .thumb-wrap .slick-arrow {
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slider .thumb-wrap .slick-prev {
  right: 0;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #444444;
}

.slider .thumb-wrap .slick-next {
  left: 0;
  border-width: 6px 12px 6px 0;
  border-color: transparent #444444 transparent transparent;
}

@media screen and (min-width: 1024px) {
  .slider .main-slide {
    float: left;
    width: 86%;
  }

  .slider .thumb-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    width: 14%;
    padding: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .slider .thumb-wrap .thumb .slick-list {
    padding: 0 !important;
  }

  .slider .thumb-wrap .thumb .slick-track {
    left: 0 !important;
  }

  .slider .thumb-wrap .thumb .slick-slide {
    padding: 0 5px 5px 5px;
  }

  .slider .thumb-wrap .slick-arrow {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .slider .thumb-wrap .slick-prev {
    top: auto;
    bottom: -1.5em;
    border-width: 18px 9px 0 9px;
    border-color: #444444 transparent transparent transparent;
  }

  .slider .thumb-wrap .slick-next {
    top: -1.5em;
    border-width: 0 9px 18px 9px;
    border-color: transparent transparent #444444 transparent;
  }
}

.prev-arrow,
.next-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: block;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.7);
}

.prev-arrow {
  left: 0;
  box-shadow: 2px 2px 2px #ccc;
}

.next-arrow {
  right: 0;
  box-shadow: -2px 2px 2px #ccc;
}

.prev-arrow::before,
.next-arrow::before {
  content: "";
  width: 20px;
  height: 20px;
  border-left: 2px solid #3e3e3e;
  border-bottom: 2px solid #3e3e3e;
  display: inline-block;
  position: absolute;
  top: 15px;
}

.prev-arrow::before {
  transform: rotate(45deg);
  left: 18px;
}

.next-arrow::before {
  transform: rotate(225deg);
  right: 18px;
}

/*グーグルマップ*/
.gmap {
  height: 295px;
}

@media screen and (min-width: 768px) {
  .gmap {
    height: 500px;
  }
}

/*=============================
  modal-content
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

.modalArea {
  display: none;
  position: fixed;
  z-index: 100;
  /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1024px;
  padding: 0 1rem;
}

.closeArea {
  width: 100%;
  max-width: 1024px;
}

.closeModal {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  display: inline-block;
  position: absolute;
  right: 1rem;
  top: -3rem;
}

.modalContents {
  background-color: #fff;
  padding: 2rem;
  height: 65vh;
  overflow: auto;
}

@media screen and (max-width: 767px) {
  .modalContents .grid-1-2 {
    grid-gap: 0;
  }
}

.closeModal:before,
.closeModal:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  /* 棒の幅（太さ） */
  height: 35px;
  /* 棒の高さ */
  background: #fff;
  /* バツ印の色 */
}

.closeModal:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.closeModal:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*=============================
  page-top-btn
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

.btn-pagetop {
  width: 56px;
  height: 56px;
  /*border: solid 2px rgba(110, 110, 110, 0.6);*/
  border-radius: 50%;
  right: 1.5em;
  bottom: 72px;
  color: #fff;
  position: fixed;
  text-align: center;
  background-color: rgba(110, 110, 110, 0.6);
  z-index: 6000;
  padding-top: 1.5em;
  letter-spacing: 0.05px;
}

@media screen and (min-width: 768px) {
  .btn-pagetop {
    right: 2em;
    bottom: 2em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .btn-pagetop {
    bottom: 80px;
  }
}

.btn-pagetop::before {
  position: absolute;
  font-family: "Material Icons";
  content: "expand_less";
  font-size: 20px;
  top: 0;
  right: 0;
  left: 0;
}

/*=============================
  slide-campaign-content-set
  =============================*/
.wp-cp-multi-items .slide-cp-box {
  padding: 0 1.5rem;
}

@media screen and (min-width: 768px) {
  .wp-cp-multi-items .slide-cp-box {
    padding: 0;
  }
}

.wp-cp-items,
.wp-cp-multi-items {
    visibility: hidden;
}

.wp-cp-multi-items + * {
    display: none;
}

.wp-cp-items:before,
.wp-cp-multi-items:before {
    content: "現在開催中のキャンペーンはありません";
    position: relative;
    visibility: visible;
    display: block;
    text-align: center;
    margin-inline: auto;
    width: calc(100% - 2em);
    max-width: 70%;
    border: 1px solid #707070;
    padding: 2rem;
    grid-column: 1 / span 2;
}

.wp-cp-items:has(.wd-cp-item),
.wp-cp-multi-items:has(.slide-cp-box) {
    visibility: visible;
}

.wp-cp-multi-items:has(.slide-cp-box) + * {
    display: block;
}

.wp-cp-items:has(.wd-cp-item):before,
.wp-cp-multi-items:has(.slide-cp-box):before {
    content: none;
}

.wd-cp-sub-items {
  display: none;
}

.wd-cp-sub-items:has(.wd-cp-item) {
  display: grid;
}

.tempo_camp-none {
 display: block;
 text-align: center;
}

.tempo_camp-blk {
 padding-top: 0;
}

.tempo_camp-blk:has(.tempo_camp) .tempo_camp-none {
 display: none;
}

/*=============================
  top-pickup-content-set
  =============================*/
.top-pick-txt {
  padding: 0 1rem;
}

@media screen and (min-width: 768px) {
  .top-pick-txt {
    padding: 0;
  }
}

/*=============================
  detabase-pege-content
  =============================*/
/* -- costume-page-content -- */
.dress.list-open .kimono,
.dress.list-open .mens,
.kimono.list-open .dress,
.kimono.list-open .mens,
.mens.list-open .dress,
.mens.list-open .kimono {
  display: none;
}

.dealers-list::before {
  content: "取扱店舗：";
}

/* -- thumbnail-image-content-change -- */
.no-image-1 {
  display: none;
}

.no-image-2:nth-child(n + 3) {
  display: none;
}

.no-image-3 .no-image-3:nth-child(n + 1) {
  display: none;
}

.no-image-4 .no-image-4:nth-child(n + 2) {
  display: none;
}

.no-image-5 .no-image-5:nth-child(n + 3) {
  display: none;
}

/* -- shop-cp-content-change -- */
.com-contents {
  display: none;
}

/*=============================
  image-size-fit
  =============================*/
.fit-image,
.fit-image-b {
  position: relative;
}

.fit-image::before,
.fit-image-b::before {
  padding-top: 100%;
  display: block;
  content: "";
}

.fit-image img,
.fit-image-b img {
  position: absolute;
  object-fit: cover;
  top: 0;
  width: 100%;
  height: 100%;
}

.fit-image-b img {
  object-fit: contain;
}

/*=============================
  search-box-content-js
  =============================*/
/* --- ベースからの変更があればここに追加 --- */
.select-label {
  position: absolute;
}

.js-search-box {
  height: 100%;
}

select.js-search-box {
  font-size: 16px;
  transform: scale(1);
}

/*=============================
  cvFix-content
  =============================*/
/* --- ベースからの変更があればここに追加 --- */

.cvFix {
  background-color: #fff;
  filter: drop-shadow(0px 0px 2px #999);
}

.cvFix .slideBtn {
  background-color: #bcb395;
  border-color: #bcb395;
}

.cvFix-btn {
  color: #bcb395;
}

@media print {
  header,
  .cvFix {
    display: none !important;
    visibility: hidden !important;
  }
}

/*=============================
  price-simulation
  =============================*/
.s-list-ttl-tag {
  background-color: #bcb395;
}

.p_sim .ttl-2 {
  color: #bcb395;
}

.s-list-total,
.s-list-total2 {
  border: 2px solid #bcb395;
}

.p_sim .pink {
  color: #ff0000;
}

/*=============================
  movie-block
  =============================*/
.movie-box {
  width: 100%;
  display: block;
}

.movie-blk-contents {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 1rem;
}

.movie-blk-contents .movie-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thum-mov {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 1rem;
}

.movbox-list {
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .movbox-list {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 1em;
  }
  .thum-mov {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1em;
  }
}

.thum-mov > * img {
  filter: brightness(0.6);
}

.thum-mov > *.thum-on img {
  filter: brightness(1);
}

.thum-mov > * img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.mov-num > * {
  position: relative;
}

.mov-num > *:after {
  background-color: #333;
  display: block;
  font-size: 13px;
  color: #fff;
  padding: 0.5em;
  white-space: pre;
  line-height: 1.2;
  font-weight: normal;
  text-align: center;
}

.mov-num > *:nth-of-type(1):after {
  content: attr(data-thum-title1);
}

.mov-num > *:nth-of-type(2):after {
  content: attr(data-thum-title2);
}

.mov-num > *:nth-of-type(3):after {
  content: attr(data-thum-title3);
}

.mov-num > *:nth-of-type(4):after {
  content: attr(data-thum-title4);
}

.mov-num > *:nth-of-type(5):after {
  content: attr(data-thum-title5);
}

/*=============================
  about-block
  =============================*/
.about-us__text {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 1rem;
}

.about-us__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.about-us__container--full {
  max-width: 1920px;
  margin-bottom: 6rem;
}

.about-us__text__wrap {
  display: grid;
}

.about-us__title {
  font-size: clamp(1rem, 2.2vw, 1.8rem);
}

.about-us__title:before {
  content: attr(title)"";
  display: block;
}

.about-us__sub-title {
  font-size: clamp(1rem, 2.2vw, 1.8rem);
  margin-top: 0.2rem;
  letter-spacing: 0.2rem;
}

.about-us__keyword {
  font-size: clamp(1rem, 3.2vw, 2.4rem);
  margin-top: -0.2rem;
}

.about-us__keyword--en {
  font-size: clamp(1rem, 3.7vw, 2.8rem);
  display: inline-block;
  padding: 0 clamp(1rem, 2.1vw, 1.6rem);
  position: relative;
  letter-spacing: 0.2rem;
  line-height: 1.8;
}

.about-us__keyword--brackets {
  font-size: clamp(1rem, 2vw, 3.7rem);
  display: inline-block;
}

.about-us__keyword--en::before,
.about-us__keyword--en::after {
  position: absolute;
  font-size: clamp(1rem, 2.7vw, 2.1rem);
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.about-us__keyword--en::before {
  content: "「";
  left: 1%;
  top: 5%;
}

.about-us__keyword--en::after {
  content: "」";
  bottom: 18%;
  right: 2%;
}

.about-us__feeling {
  margin-top: clamp(0.2rem, 1vw, 0.3rem);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 2;
}

.about-us__button {
  background: #fff;
  margin: 2.5rem 0 0 0;
}

/* SP */
@media screen and (max-width: 767px) {
  .about-us__container.for-pc {
    display: none !important;
  }
  .about-us__text {
    position: relative;
    width: 100%;
    background: #e9d8c6;
    display: block;
    padding: 5.4rem 0 1rem;
    height: auto;
    display: flex;
    justify-content: center;
  }

  .about-us__container {
    display: grid;
  }

  .about-us__bg {
    order: 2;
  }

  .about-us__text__wrap {
    padding: 0 1.2rem;
  }

  .about-us__button {
    width: 100%;
    margin-top: 2.2rem;
  }

  .about-us__title {
    font-size: 2.1rem;
  }

  .about-us__sub-title {
    margin-top: 1.4rem;
    font-size: 1.3rem;
  }

  .about-us__keyword {
    font-size: 2.1rem;
    margin-top: 0;
  }

  .about-us__keyword--en {
    font-size: 2.2rem;
    width: fit-content;
    letter-spacing: 0.1rem;
  }

  .about-us__keyword--en::before {
    left: 0;
    font-size: 2rem;
    top: -0.2rem;
  }

  .about-us__keyword--en::after {
    bottom: 0.4rem;
    right: 0;
    font-size: 2rem;
  }

  .about-us__text::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 30px 15px 19px #e9d8c6;
  }
  .about-us__feeling {
    margin-top: 1.2rem;
    font-size: 1.1rem;
    text-wrap: balance;
    line-height: 2.1;
  }
}

/* パララックス */
.about-us__parallax {
  overflow: hidden;
  height: 640px;
  position: relative;
}

.about-us__parallax .parallax {
  background-image: none !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  z-index: 0;
}

.about-us__parallax .parallax::before {
  content: "";
  position: fixed;
  /* top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  inset: 0px;
  top: 0;
  z-index: -3;
}

.about-us__parallax .parallax::before {
  background-image: url(/net/img/net-about-bg-sp02.jpg);
}

.about-us__parallax .about-us__text {
  position: absolute;
  background: none;
  bottom: 0;
  top: auto;
  padding: 5.4rem 0 3rem;
}

.about-us__parallax .about-us__text::after {
  content: none;
}

@media screen and (min-width: 768px) {
  .about-us__parallax {
    height: 550px;
    margin-top: 100px;
  }

  .about-us__parallax .parallax::before {
    background-image: url(/net/img/net-about-bg02.jpg);
  }

  .about-us__parallax .about-us__text {
    bottom: auto;
    top: 0;
    padding: initial;
  }
}

/*=============================
  4,template（一部共通）End
  =============================*/

@media screen and (min-width: 768px) {
  .flex-stretch {
    display: flex;
    flex-direction: column;
  }
  .flex-stretch-tg {
    flex: 1;
  }
}

.nasu-container {
  padding: 68px 0;
  background: linear-gradient(60deg, #EBD8D6, #FFF8F7);
}
.nasu-imgtxt-imglink {
  display: block;
  margin: 0 15px;
}
.nasu-imgtxt-img {
  box-shadow: 3px 3px 7px #666;
}
.nasu-imgtxt-paraph {
  margin: 38px 0 0;
  padding: 0 25px;
}
.nasu-imgtxt-balloon {
  text-align: center;
}
.nasu-imgtxt-balloon-box {
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 100vh;
  font-size: 16px;
}
.nasu-imgtxt-balloon-box:before {
  content: '';
  position: absolute;
  top: -30px;
  left: -20px;
  background: url('/net/img/df-location-photo-deg.png') no-repeat center / contain;
  width: 129px;
  height: 72px;
}
.nasu-imgtxt-balloon-box:after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 60px;
  width: 30px;
  height: 15px;
  background-color: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.nasu-imgtxt-ttl {
  margin: 32px 0 0;
  font-size: 32px;
  line-height: 1.1;
}
.nasu-imgtxt-txt {
  margin: 14px 0 0;
  line-height: 2.4;
}
.nasu-imgtxt-btn {
  margin: 50px 0 0;
}
.nasu-imgtxt-link {
  position: relative;
  padding: 10px 30px 10px 0;
  letter-spacing: 0.8px;
}
.nasu-imgtxt-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 1px;
  background-color: #000;
}
.nasu-imgtxt-link:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.nasu-slide {
  display: flex;
  overflow: hidden;
  margin: 50px 0 0;
}
.nasu-slide-pic {
  animation: loop-left 30s infinite linear 0s both;
}
.nasu-slide-pic + .nasu-slide-pic {
  margin: 0 0 0 10px;
}
.nasu-slide-img {
  max-width: fit-content;
  height: 193px;
}
@media screen and (min-width: 768px) {
  .nasu-container {
    padding: 100px 0;
    background: linear-gradient(50deg, #EBD8D6, #FFF8F7);
  }
  .nasu-imgtxt {
    display: flex;
    justify-content: center;
  }
  .nasu-imgtxt-imglink {
    margin: 0;
    transition: opacity .3s;
  }
  .nasu-imgtxt-imglink:hover {
    opacity: 0.7;
  }
  .nasu-imgtxt-pic {
  }
  .nasu-imgtxt-img {
    width: min(45vw, 530px);
    padding: 0;
  }
  .nasu-imgtxt-paraph {
    flex: 1;
    max-width: 570px;
    margin: 0 0 0 2.8%;
    padding: 0;
  }
  .nasu-imgtxt-balloon {
    margin: 30px 0 0;
    text-align: left;
  }
  .nasu-imgtxt-balloon-box {
    padding: 22px 30px 22px 40px;
  }
  .nasu-imgtxt-balloon-box:before {
    top: -35px;
    left: -40px;
    width: 154px;
    height: 92px;
  }
  .nasu-imgtxt-balloon-box:after {
    bottom: -14px;
    left: 70px;
    width: 30px;
    height: 15px;
  }
  .nasu-imgtxt-ttl {
    margin: 25px 0 0;
    padding: 0 0 0 5px;
    letter-spacing: 3px;
    line-height: normal;
  }
  .nasu-imgtxt-txt {
    margin: 12px 0 0;
    padding: 0 0 0 5px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 2px;
  }
  .nasu-imgtxt-btn {
    margin: 30px 0 0;
    padding: 0 0 0 4px;
  }
  .nasu-imgtxt-link {
    padding: 14px 38px 14px 0;
    font-size: 14px;
  }
  .nasu-imgtxt-link:hover {
    color: #AF5B65;
  }
  .nasu-imgtxt-link:hover:before {
    background-color: #AF5B65;
  }
  .nasu-imgtxt-link:hover:after {
    border-top: 1px solid #AF5B65;
    border-right: 1px solid #AF5B65;
  }
  .nasu-slide {
    margin: 40px 0 0;
  }
  .nasu-slide-pic {
    animation: loop-left 40s infinite linear 0s both;
  }
  .nasu-slide-pic + .nasu-slide-pic {
    margin: 0 0 0 22px;
  }
  .nasu-slide-img {
    height: 300px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .nasu-imgtxt {
    margin: 0 28px;
  }
  .nasu-imgtxt-img {
    width: min(40vw, 530px);
    height: 100%;
    box-shadow: 3px 3px 7px #666;
    object-fit: cover;
    object-position: 30% center;
  }
  .nasu-imgtxt-link {
    display: inline-block;
    padding: 12px 30px 12px 0;
  }
  .nasu-imgtxt-balloon-box:before {
    left: -15px;
  }
  .nasu-slide-img {
    height: 200px;
  }
}
@keyframes loop-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.u-sp {
  display: block;
}
.u-pc {
  display: none;
}

/* MV */
.mv {
}
.mv-container {
}
.mv-slider {
  overflow: hidden;
}
.mv-slider .mv-slide:nth-child(n+2) .mv-slide-img {
  display: none;
}
.mv-slider.slick-initialized .mv-slide:nth-child(n+2) .mv-slide-img {
  display: block;
}
.mv-slide {
}
.mv-slide-img {
  width: 100%;
  /* height: calc(100vh - 60px - 52px); */
  object-fit: cover;
  object-position: top;
}

/* 那須ロケーション撮影 */
.location-container {
  position: relative;
  padding: 80px 0;
}
.location-container:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 40vw;
  height: 100%;
  background: linear-gradient(0deg, #FCF7F7 0%, #F5E5E4 100%);
}
.location-box {
  padding: 0 0 0 28px;
}
.location-paraph {
  position: relative;
  z-index: 1;
}
.location-title {
  position: relative;
  padding: 0 0 33px;
  font-size: 30px;
}
.location-title:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 8%;
  background: url('/net/img/df-location-photo.png') no-repeat center / contain;
  width: 221px;
  height: 74px;
  z-index: -1;
}
.location-title-lg {
  font-size: 52px;
}
.location-start {
  position: relative;
  margin: 2% 0 0;
  font-size: 16px;
  font-family: "optima", "Marcellus-Regular";
  font-weight: 100;
  -webkit-text-stroke: 0;
}
.location-start:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 25%;
  height: 1px;
  margin: 0 0 0 20px;
  background-color: #000;
  transform: translateY(-50%);
}
.location-text {
  margin: 26% 0 0;
  font-size: 16px;
  line-height: 2.6;
}
.location-rb {
  margin: 20px 0 0;
}
.location-rb-picture {
  position: relative;
  display: block;
}
.location-rb-picture:before {
  content: '';
  position: absolute;
  top: 15px;
  left: -15px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #E6E6E6;
}

/* フォトスタジオ */
.studio-container {
  padding: 60px 0;
}
.studio-lead-text {
  text-align: center;
  font-size: 22px;
}
.studio-lead-picture {
  display: block;
  text-align: center;
  margin: 7% 0 0;
  padding: 0 30px;
}
.studio-bg {
  margin: 106% 0 0;
  padding: 80px 0;
  background-color: #FBF2F1;
}
.studio-about {
  margin: -112% 28px 0 0;
}
.studio-about-list {
  position: relative;
  margin: 26% 0 0 20%;
  padding: 20% 0 0;
}
.studio-about-list:before {
  content: '';
  position: absolute;
  top: -11%;
  left: -15%;
  background: url('/net/img/df-about-studio.png') no-repeat center / contain;
  width: 218px;
  height: 79px;
}
.studio-about-item {
  position: relative;
  padding: 0 0 0 60px;
  font-size: 16px;
}
.studio-about-item:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #333;
}
.studio-about-item + .studio-about-item {
  margin: 30px 0 0;
}
.studio-about-item-em {
  color: #AF5B65;
}
.studio-plan {
  position: relative;
  padding: 80px 0;
  margin: 55px 0 0;
  overflow: hidden;
}
.studio-plan:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 97%;
  height: 100%;
  background-color: rgb(255 255 255 / 0.6);
  border-radius: 135px 0 0 0;
}
.studio-plan-round {
  position: absolute;
  top: 0px;
  left: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  background: linear-gradient(133deg, #EFE2C5 0%, #BFAA79 50%, #AD9153 100%);
  border-radius: 100vh;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #fff;
}
.studio-plan-round:after {
  content: '※';
  position: absolute;
  bottom: 14px;
  right: 10px;
  font-size: 12px;
  color: #fff;
}
.studio-plan-inner {
  position: relative;
  z-index: 1;
  padding: 0 30px;
}
.studio-plan-date {
  color: #AF5B65;
  font-size: 24px;
  font-family: "optima", "Marcellus-Regular";
  font-weight: 100;
  -webkit-text-stroke: 0;
  text-align: center;
}
.studio-plan-title {
  text-align: center;
}
.studio-plan-title-inner {
  position: relative;
  display: inline-block;
}
.studio-plan-title-hdg {
  font-size: 36px;
  text-align: center;
}
.studio-plan-sm {
  font-size: 21px;
}
.studio-plan-read {
  margin: 40px 0 0;
  font-size: 20px;
  text-align: center;
}
.studio-plan-note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 14px;
  color: #838383;
}
.studio-plan-menu {
}
.studio-plan-menu-1 {
  margin: 50px 0 0;
}
.studio-plan-menu-2 {
}
.studio-plan-menu-label {
  display: inline-block;
  padding: 6px 20px;
  background: linear-gradient(90deg, #D38B94, #EECDCB);
  color: #fff;
}
.studio-plan-slider {
  position: relative;
  margin: 20px 0 0;
}
.studio-plan-slider .swiper-wrapper {
}
.studio-plan-slider .swiper-slide {
  padding: 0 4px;
}
.studio-plan-slider .swiper-button-prev,
.studio-plan-slider .swiper-button-next {
  top: 67%;
  background-color: unset;
  box-shadow: none;
}
.studio-plan-slider .swiper-button-prev:after,
.studio-plan-slider .swiper-button-next:after {
  content: '';
  background: url('net/img/icon-slider-arrow.png') no-repeat center / contain;
  width: 50px;
  height: 50px;
}
.studio-plan-slider .swiper-button-prev {
  left: -10px;
  transform: rotate(180deg);
}
.studio-plan-slider .swiper-button-next {
  right: -10px;
}
.studio-plan-item {
  border: 1px solid #E6E6E6;
}
.studio-plan-course {
  padding: 18px;
  background: #fff;
}
.studio-plan-course.--popular,
.studio-plan-course.--recommended {
  position: relative;
}
.studio-plan-course.--popular:before {
  content: '';
  position: absolute;
  top: -27px;
  left: 12px;
  width: 94px;
  height: 70px;
  background: url('/net/img/df-popular.png') no-repeat center / contain;
}
.studio-plan-course.--recommended:before {
  content: '';
  position: absolute;
  top: -46px;
  left: 8px;
  width: 170px;
  height: 100px;
  background: url('/net/img/df-recommended.png') no-repeat center / contain;
}
.studio-plan-course-title {
  text-align: center;
  font-size: 20px;
}
.studio-plan-course-title-num {
  font-size: 25px;
  color: #AF5B65;
}
.studio-plan-course-opt {
  margin: 8px 0 0;
  text-align: center;
}
.studio-plan-course-opt-bg {
  display: inline-block;
  min-width: 180px;
  padding: 4px 20px;
  background: #FBF2F1;
  border-radius: 100vh;
  text-align: center;
  font-size: 15px;
}
.studio-plan-course-price {
  margin: 15px 0 0;
  text-align: center;
  font-size: 18px;
}
.studio-plan-course-price + .studio-plan-course-price {
  margin: 0;
}
.studio-plan-course-price-sub {
  font-size: 14px;
  color: #AF5B65;
}
.studio-plan-course-price-tax {
  font-size: 14px;
}
.studio-plan-course-note {
  text-align: center;
  font-size: 14px;
}
.studio-plan-links {
  padding: 18px;
  background: #f7f8f8;
}
.studio-plan-link-bg {
  text-align: center;
}
.studio-plan-link-bg + .studio-plan-link-bg {
  margin: 10px 0 0;
}
.studio-plan-link {
  position: relative;
  padding: 0 20px 6px 0;
  font-size: 12px;
}
.studio-plan-link:before,
.studio-plan-link:after {
  content: '';
  position: absolute;
}
.studio-plan-link:before {
  bottom: 0;
  left: 0;
  width: 95%;
  height: 1px;
  background: #000;
}
.studio-plan-link:after {
  top: 2px;
  right: 0;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.studio-plan-menu-note {
  padding: 16px;
  margin: 25px 0 0;
  border: 1px solid #838383;
}
.studio-plan-menu-note-title {
  font-size: 14px;
}
.studio-plan-menu-note-list {
}
.studio-plan-menu-note-item {
  font-size: 14px;
}
.studio-plan-menu-box {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 45px 0;
  padding: 40px 20px;
  margin: 20px 0 0;
  background: #fff;
}
.studio-plan-menu-box-inner {
}
.studio-plan-menu-box-en {
  font-size: 16px;
  text-align: center;
}
.studio-plan-menu-box-ja {
  margin: 8px 0 0;
  font-size: 20px;
  color: #AF5B65;
  text-align: center;
}
.studio-plan-menu-box-price {
  margin: 12px 0 0;
  font-size: 18px;
  text-align: center;
}
.studio-plan-menu-box-price-sm {
  font-size: 14px;
}
.studio-plan-menu-box-note {
  margin: 12px 0 0;
  font-size: 14px;
  text-align: center;
}
.studio-plan-menu-box-text {
  font-size: 14px;
}
.studio-plan-menu-box-button {
  margin: 40px 0 0;
  text-align: center;
}
.studio-plan-menu-box-link {
  display: inline-flex;
  flex-direction: column;
  max-width: 300px;
  width: 100%;
  padding: 12px 35px;
  font-size: 16px;
  line-height: 1.4;
  font-family: "optima", "Marcellus-Regular";
  font-weight: 100;
  -webkit-text-stroke: 0;
}
.studio-plan-menu-box-link-sm {
  font-size: 14px;
}
.studio-plan-present {
  position: relative;
  padding: 20px;
  margin: 40px 0 0;
  background: #fff;
}
.studio-plan-present:before,
.studio-plan-present:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 80px;
}
.studio-plan-present:before {
  top: 10px;
  left: 10px;
  border-top: 1px solid #AF5B65;
  border-left: 1px solid #AF5B65;
}
.studio-plan-present:after {
  right: 10px;
  bottom: 10px;
  border-right: 1px solid #AF5B65;
  border-bottom: 1px solid #AF5B65;
}
.studio-plan-present-inner {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 40px 0;
  padding: 20px;
  background: linear-gradient(10deg, #F2D7D4, #FAF7F2);
}
.studio-plan-present-praph {
}
.studio-plan-present-label {
  position: relative;
  padding: 6px 0 4px;
  font-size: 14px;
}
.studio-plan-present-label:before,
.studio-plan-present-label:after {
  content: '';
  position: absolute;
  left: 0;
  width: 90%;
  height: 1px;
  background: #3c3c3c;
}
.studio-plan-present-label:before {
  top: 0;
}
.studio-plan-present-label:after {
  bottom: 0;
}
.studio-plan-present-sub {
  margin: 25px 0 0;
  font-size: 14px;
}
.studio-plan-present-main {
  margin: 20px 0 0;
  color: #AF5B65;
  font-size: 25px;
}
.studio-plan-present-main-sm {
  font-size: 20px;
}
.studio-plan-present-opt {
  color: #AF5B65;
  font-size: 14px;
}
.studio-plan-present-note {
  margin: 20px 0 0;
  font-size: 14px;
}
.studio-plan-mark {
  position: relative;
  padding: 50px 0;
}
.studio-plan-and {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 45px;
  height: 5px;
  background: linear-gradient(80deg, #D48E96, #EECDCB);
}
.studio-plan-and + .studio-plan-and {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.studio-flow {
  padding: 60px 0;
  background: linear-gradient(70deg, #F2EBDF 10%, #fff);
}
.studio-flow-inner {
  padding: 0 30px;
}
.studio-flow-flex {
  display: flex;
  flex-direction: column;
}
.studio-flow-head {
}
.studio-flow-title {
  position: relative;
  padding: 100px 0 0;
}
.studio-flow-title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url('/net/img/df-flow.png') no-repeat center / contain;
  width: 81px;
  height: 86px;
}
.studio-flow-body {
  margin: 46px 0 0;
}
.studio-flow-box {
  padding: 0 0 0 25px;
  border-left: 1px solid #3c3c3c
}
.studio-flow-box + .studio-flow-box {
  margin: 50px 0 0;
}
.studio-flow-tri {
  position: relative;
  padding: 0 0 0 24px;
}
.studio-flow-tri:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #BBB398 transparent transparent transparent;
}
.studio-flow-text {
  line-height: 2;
  margin-top: 15px;
}
.studio-flow-text-underline {
  text-decoration: underline;
}
.studio-flow-button {
  margin: 10px 0 0;
}
.studio-flow-link-1 {
  background: #fff;
  width: 100%;
}
.studio-flow-link-2 {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  padding: 12px 35px;
  font-size: 16px;
  line-height: 1.4;
  font-family: "optima", "Marcellus-Regular";
  font-weight: 100;
  -webkit-text-stroke: 0;
}
.studio-flow-link-2-sm {
  font-size: 14px;
}
.studio-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(8, 138px);
  grid-gap: 8px;
  margin: 45px 0 0;
  padding: 0 28px;
}
.studio-gallery-item {
}
.studio-gallery-item-1 {
  grid-column: span 3;
  grid-row: span 2;
}
.studio-gallery-item-2 {
  grid-column: span 3;
  grid-row: span 2;
}
.studio-gallery-item-3 {
  grid-column: span 6;
  grid-row: span 2;
}
.studio-gallery-item-4 {
  grid-column: span 4;
}
.studio-gallery-item-5 {
  grid-column: span 2;
}
.studio-gallery-item-6 {
  grid-column: span 3;
  grid-row: span 2;
}
.studio-gallery-item-7 {
  grid-column: span 3;
  grid-row: span 2;
}
.studio-gallery-item-8 {
  grid-column: span 4;
}
.studio-gallery-item-9 {
  grid-column: span 2;
}
.studio-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-concept {
  position: relative;
  overflow: hidden;
}
.studio-concept-inner {
  position: relative;
  z-index: 1;
  margin: 0 28px;
  padding: 65px 0;
}
.studio-concept-title {
  position: relative;
  padding: 125px 0 30px;
  font-size: 14px;
}
.studio-concept-title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url('/net/img/df-concept.png') no-repeat center / contain;
  width: 159px;
  height: 95px;
}
.studio-concept-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 105px;
  height: 1px;
  background-color: #000;
}
.studio-concept-caption {
  margin: 35px 0 0;
}
.studio-concept-caption + .studio-concept-caption {
  margin: 50px 0 0;
}
.studio-concept-caption-text {
  margin: 30px 0 0;
}
.studio-concept-caption-paraph {
  display: block;
  font-size: 16px;
  line-height: 2;
}
.studio-concept-caption-paraph + .studio-concept-caption-paraph {
  margin: 50px 0 0;
}
.studio-concept-blur {
  position: absolute;
  aspect-ratio: 1 / 1;
  background: radial-gradient(
    circle,
    rgb(249 232 225),
    rgb(243 209 206 / 0%)
  );
  border-radius: 100vh;
  filter: blur(120px);
}
.studio-concept-blur.--item1 {
  top: 20%;
  left: 0%;
  width: min(100%, 420px);
}
.studio-concept-blur.--item2 {
  top: 50%;
  left: 24%;
  width: min(100%, 350px);
}

/* CTA */
.cta {
  background-color: #F6F2EB;
}
.cta-container {
  margin: 0 30px;
  padding: 60px 0;
}
.cta-text-1 {
  text-align: center;
  font-size: 18px;
}
.cta-button {
  margin: 20px 0 0;
  text-align: center;
}
.cta-button-link {
  display: inline-flex;
  flex-direction: column;
  padding: 12px 45px;
  font-size: 26px;
  line-height: 1.4;
  font-family: "optima", "Marcellus-Regular";
  font-weight: 100;
  -webkit-text-stroke: 0;
}
.cta-button-link-sm {
  font-size: 14px;
}
.cta-text-2 {
  margin: 20px 0 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #BBB395;
}

@media screen and (max-width: 767px) {
  .studio-concept-caption-video {
    position: relative;
    width: 100vw;
    margin-left: -28px;
    padding-top: 61.6%;
  }
  .studio-concept-caption-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .u-sp {
  display: none;
  }
  .u-pc {
    display: block;
  }

  /* MV */
  .mv {
  }
  .mv-container {
  }
  .mv-slider {
  }
  .mv-slide {
  }
  .mv-slide-img {
    height: calc(100vh - 60px);
  }

  /* 那須ロケーション撮影 */
  .location-container {
    padding: 150px 0;
  }
  .location-box {
    display: flex;
    justify-content: flex-end;
    padding: 0;
  }
  .location-paraph {
    flex: 1;
    margin: 0 20px 0 0;
    padding: 0 0 0 14.5%;
  }
  .location-title {
    margin: 20px 0 0;
    padding: 0 0 55px;
    font-size: 44px;
    line-height: 1.3;
  }
  .location-title:before {
    left: 21%;
    right: auto;
    width: 317px;
    height: 106px;
  }
  .location-title-lg {
    font-size: 75px;
  }
  .location-start {
    margin: 2% 0 0;
    font-size: 24px;
    letter-spacing: 5px;
  }
  .location-start:after {
    width: 26%;
    height: 2px;
  }
  .location-text {
    margin: 24% 0 0;
    line-height: 2.7;
  }
  .location-rb {
    margin: 0;
  }
  .location-rb-picture:before {
    top: 20px;
    left: -20px;
  }
  .location-rb-img {
    width: min(50vw, 960px);
  }

  /* フォトスタジオ */
  .studio-container {
    padding: 120px 0 0;
  }
  .studio-lead {
    max-width: 1024px;
    margin: 0 auto;
  }
  .studio-lead-picture {
    padding: 0;
  }
  .studio-bg {
    margin: 280px 0 0;
    padding: 100px 0;
  }
  .studio-about {
    display: flex;
    margin: -200px 0 0;
  }
  .studio-about-list {
    margin: 0 0 0 7.5%;
    padding: 12.1% 0 0;
  }
  .studio-about-list:before {
    top: 8.5%;
    left: -13.5%;
    width: 254px;
    height: 92px;
  }
  .studio-about-item {
    padding: 0 0 0 80px;
    letter-spacing: 2px;
  }
  .studio-about-item:before {
    top: 14px;
    width: 50px;
  }
  .studio-about-item + .studio-about-item {
    margin: 10% 0 0;
  }
  .studio-about-img {
    width: clamp(380px, 47vw, 900px);
  }
  .studio-plan {
    padding: 120px 0;
    margin: 90px 0 0;
  }
  .studio-plan:before {
    width: 90%;
  }
  .studio-plan-round {
    position: absolute;
    top: 55%;
    left: -110px;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    font-size: 20px;
    letter-spacing: -1px;
  }
  .studio-plan-round:after {
    bottom: 16px;
    right: 12px;
  }
  .studio-plan-inner {
    max-width: 1084px;
    margin: 0 auto;
  }
  .studio-plan-date {
  }
  .studio-plan-title {
  }
  .studio-plan-title-hdg {
  }
  .studio-plan-sm {
    font-size: 26px;
  }
  .studio-plan-read {
    margin: 60px 0 0;
  }
  .studio-plan-note {
    margin: 20px 0 0;
  }
  .studio-plan-menu {
  }
  .studio-plan-menu-1 {
    margin: 60px 0 0;
  }
  .studio-plan-menu-2 {
  }
  .studio-plan-menu-label {
  }
  .studio-plan-slider .swiper-button-prev,
  .studio-plan-slider .swiper-button-next {
    display: none;
  }
  .studio-plan-slider .swiper-wrapper {
  }
  .studio-plan-slider .swiper-slide {
    flex-shrink: unset;
    padding: 0 8px;
  }
  .studio-plan-slider .swiper-slide:nth-of-type(1) {
    padding-left: 0;
  }
  .studio-plan-slider .swiper-slide:nth-of-type(3) {
    padding-right: 0;
  }
  .studio-plan-course {
    padding: 5%;
  }
  .studio-plan-course-title {
  }
  .studio-plan-course-title-num {
  }
  .studio-plan-course-opt {
  }
  .studio-plan-course-price {
  }
  .studio-plan-course-price-sub {
  }
  .studio-plan-course-note {
  }
  .studio-plan-links {
    padding: 5%;
  }
  .studio-plan-link-bg {
  }
  .studio-plan-link {
    transition: .3s;
  }
  .studio-plan-link:hover {
    color: #AF5B65;
  }
  .studio-plan-link:hover:before {
    background-color: #AF5B65;
  }
  .studio-plan-link:hover:after {
    border-color: #AF5B65;
  }
  .studio-plan-slider  {
  }
  .studio-plan-menu-note {
    padding: 25px;
  }
  .studio-plan-menu-note-title {
  }
  .studio-plan-menu-note-list {
  }
  .studio-plan-menu-note-item {
  }
  .studio-plan-menu-box {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0 45px;
    padding: 40px;
    margin: 15px 0 0;
  }
  .studio-plan-menu-box-inner {
  }
  .studio-plan-menu-box-en {
  }
  .studio-plan-menu-box-ja {
  }
  .studio-plan-menu-box-price {
  }
  .studio-plan-menu-box-price-sm {
  }
  .studio-plan-menu-box-note {
  }
  .studio-plan-menu-box-text {
  }
  .studio-plan-menu-box-button {
    margin: 8px 0 0;
    text-align: left;
  }
  .studio-plan-menu-box-link {
  }
  .studio-plan-present {
    max-width: 950px;
    margin: 40px auto 0;
  }
  .studio-plan-present-inner {
    grid-template-columns: auto auto;
    gap: 0 40px;
  }
  .studio-plan-present-praph {
    margin: 20px 0 0;
  }
  .studio-plan-present-label {
  }
  .studio-plan-present-label:before,
  .studio-plan-present-label:after {
    width: 60%;
  }
  .studio-plan-present-sub {
  }
  .studio-plan-present-main {
    margin: 10px 0 0;
  }
  .studio-plan-present-opt {
  }
  .studio-plan-present-note {
  }
  .studio-plan-present-image {
    text-align: right;
  }
  .studio-plan-present-img {
  }
  .studio-flow {
    padding: 120px 0;
    background: linear-gradient(60deg, #F2EBDF 30%, #fff);
  }
  .studio-flow-inner {
    max-width: 1084px;
    margin: 0 auto;
  }
  .studio-flow-flex {
    flex-direction: row;
  }
  .studio-flow-head {
  }
  .studio-flow-title {
  }
  .studio-flow-body {
    margin: 0 0 0 2.6vw;
    flex: 1;
  }
  .studio-flow-box {
    padding: 0 0 0 30px;
  }
  .studio-flow-tri {
  }
  .studio-flow-text {
  }
  .studio-flow-button {
  }
  .studio-flow-link-1 {
    margin: 0;
  }
  .studio-flow-link-2 {
    max-width: 380px;
    padding: 10px 50px;
    font-size: 20px;
    line-height: 1.6;
  }
  .studio-flow-link-2-sm {
    font-size: 14px;
  }
  .studio-gallery {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(3, 427px);
    grid-gap: 20px;
    max-width: 1024px;
    margin: 68px auto 0;
    padding: 0;
  }
  .studio-gallery-item-1 {
    grid-column: span 2;
    grid-row: unset;
  }
  .studio-gallery-item-2 {
    grid-column: span 2;
    grid-row: unset;
  }
  .studio-gallery-item-3 {
    grid-column: span 5;
    grid-row: unset;
  }
  .studio-gallery-item-4 {
    grid-column: span 5;
  }
  .studio-gallery-item-5 {
    grid-column: span 2;
  }
  .studio-gallery-item-6 {
    grid-column: span 2;
    grid-row: unset;
  }
  .studio-gallery-item-7 {
    grid-column: span 2;
    grid-row: unset;
  }
  .studio-gallery-item-8 {
    grid-column: span 5;
  }
  .studio-gallery-item-9 {
    grid-column: span 2;
  }
  .studio-concept-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 120px 0 240px;
  }
  .studio-concept-title {
    padding: 135px 0 30px;
  }
  .studio-concept-title:before {
    width: 179px;
    height: 107px;
  }
  .studio-concept-title:after {
    width: 135px;
  }
  .studio-concept-caption {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
  .studio-concept-caption.--reverse {
    flex-direction: row-reverse;
  }
  .studio-concept-caption + .studio-concept-caption {
    margin: 80px 0 0;
  }
  .studio-concept-caption-picture {
    flex: 1;
  }
  .studio-concept-caption-text {
    margin: 0 0 0 36px;
  }
  .studio-concept-caption.--reverse .studio-concept-caption-text {
    margin: 0 36px 0 0;
  }
  .studio-concept-caption-paraph {
    font-size: 16px;
    line-height: 3;
  }
  .studio-concept-caption-paraph + .studio-concept-caption-paraph {
    margin: 40px 0 0;
  }
  .studio-concept-blur.--item1 {
    top: 6%;
    left: 25%;
    width: min(100%, 880px);
    height: min(100%, 640px);
  }
  .studio-concept-blur.--item2 {
    top: 60%;
    left: 45%;
    width: min(100%, 590px);
    height: min(100%, 540px);
  }

  /* CTA */
  .cta-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 90px 0;
  }
  .cta-button {
    margin: 30px 0 0;
  }
  .cta-button-link {
    max-width: 500px;
    padding: 20px 50px;
    font-size: 28px;
    line-height: 1.6;
  }
  .cta-button-link-sm {
    font-size: 14px;
  }
  .cta-text-2 {
    margin: 30px 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* 那須ロケーション撮影 */
  .location-container {
    padding: 100px 0;
  }
  .location-paraph {
    padding: 0 0 0 5%;
  }
  .location-title {
    padding: 0 0 38px;
    font-size: 30px;
  }
  .location-title:before {
    left: 30%;
    right: auto;
    width: 211px;
    height: 71px;
  }
  .location-title-lg {
    font-size: 50px;
  }
  .location-start {
    font-size: 18px;
  }
  .location-start:after {
    width: 20%;
  }
  .location-text {
    margin: 16% 0 0;
    font-size: 16px;
  }
  .location-rb-img {
    height: 380px;
    object-fit: cover;
  }
  /* フォトスタジオ */
  .studio-container {
    padding: 90px 0 0;
  }
  .studio-bg {
    margin: 250px 0 0;
  }
  .studio-gallery {
    grid-template-rows: repeat(3, 285px);
    padding: 0 28px;
  }
  .studio-about-img {
    height: 100%;
    object-fit: cover;
  }
  .studio-about-list {
    margin: 0 3% 0 5%;
    padding: 20% 0 0;
  }
  .studio-about-list:before {
    top: 16%;
    left: -4%;
    width: 169px;
    height: 61px;
  }
  .studio-about-item {
    padding: 0 0 0 70px;
  }
  .studio-about-item:before {
    top: 13px;
    width: 40px;
  }
  .studio-about-item + .studio-about-item {
    margin: 5% 0 0;
  }
  .studio-plan:before {
    width: 97%;
  }
  .studio-plan-link {
    font-size: 10px;
  }
  .studio-concept-inner {
    padding: 120px 0 180px;
    margin: 0 28px;
  }
  .studio-concept-title {
    padding: 105px 0 25px;
  }
  .studio-concept-title:before {
    width: 119px;
    height: 71px;
  }
  .studio-concept-caption {
    margin: 30px 0 0;
  }
  .studio-concept-caption + .studio-concept-caption {
    margin: 60px 0 0;
  }
  .studio-concept-caption.--reverse .studio-concept-caption-text {
    margin: 0 24px 0 0;
  }
  .studio-concept-caption-text {
    margin: 0 0 0 24px;
  }
  .studio-concept-caption-paraph {
    line-height: 2.5;
  }
  .studio-concept-caption-iframe {
    width: 47vw;
    height: auto;
    aspect-ratio: 563 / 347;
  }
  .studio-concept-blur.--item1 {
    top: 5%;
    left: 50%;
    width: min(100%, 587px);
    height: min(100%, 427px);
    transform: translateX(-50%);
  }
  .studio-concept-blur.--item2 {
    top: 55%;
    left: 55%;
    width: min(100%, 393px);
    height: min(100%, 360px);
    transform: translateX(-50%);
  }
}
/* 店舗キャンペーン一覧ブロック出しわけ */
.shop-cp-section {
    display: none;
}
.shop-cp-section:has(.shop-cpbnr) {
    display:block;
}
.shop-cpItem {
    border: 1px solid #ccc;
}
.shop-cpImg {
    height: 100%;
    object-fit: cover;
}
.shop-cpBox {
    position: relative;
    padding: 1.8rem .2rem 1rem 0rem;
}
.shop-cpBox:before {
    content: "";
    display: inline-block;
    position:absolute;
    font-size: .8rem;
    font-weight: bold;
    color: white;
    letter-spacing: .1rem;
    background-color: #bcb395;
    padding: .1rem .4rem;
    top: .6rem;
    margin-bottom: .6rem;
}
@media screen and (max-width:768px){
.shop-cpBox .ttl-S {
  font-size: .8rem;
}
}
.shop-cpBox.ny::before {
content: "吉祥寺N.Y店";
}
.shop-cpBox.koganei::before {
content: "小金井店";
}
.shop-cpBox.mitaka::before {
content: "三鷹東八店";
}
.shop-cpBox.tachikawa::before {
content: "立川店";
}
.shop-cpBox.edogawa::before {
content: "江戸川店";
}
.shop-cpBox.harajyuku::before {
content: "原宿店";
}
.shop-cpBox.machida::before {
content: "町田店";
}
.shop-cpBox.tamaplaza::before {
content: "たまプラーザ店";
}
.shop-cpBox.fujisawa::before {
content: "藤沢トレアージュ白旗店";
}
.shop-cpBox.higashiomiya::before {
content: "東大宮ハレノテラス店";
}
.shop-cpBox.utsunomiya::before {
content: "宇都宮インターパーク店";
}
.shop-cpBox.oyama::before {
content: "小山店";
}
.shop-cpBox.sendai::before {
content: "仙台東店";
}
.shop-cpBox.sendai-izumi::before {
content: "仙台泉中央店";
}
.shop-cpBox.sendai-tomizawa::before {
content: "仙台富沢店";
}
.shop-cpBox.kasukabe::before {
content: "春日部店";
}
.shop-cpBox.minamisenju::before {
content: "南千住店";
}
.shop-cpBox.matsudo::before {
content: "松戸店";
}
.shop-cpBox.oizumi-gakuen::before {
content: "大泉学園店";
}

.studio-plan-present.--gold {
  margin-top: 50px;
}
.studio-plan-present.--gold:before {
  border-top: 1px solid #BBB398;
  border-left: 1px solid #BBB398;
}
.studio-plan-present.--gold:after {
  border-right: 1px solid #BBB398;
  border-bottom: 1px solid #BBB398;
}
.studio-plan-present.--gold .studio-plan-present-inner {
  gap: 20px 0;
  background: linear-gradient(10deg, #F2EBDF, #FAF7F2);
}
.studio-plan-present.--gold .studio-plan-present-praph {
  margin-top: 0;
}
.studio-plan-present.--gold .studio-plan-present-sub {
  margin-top: 10px;
}
.studio-plan-present.--gold .studio-plan-present-main {
  margin-top: 0;
  color: #3C3C3C;
}
.studio-plan-tbox {
  position: relative;
  margin-top: 30px;
  border: 2px solid #BBB398;
}
.studio-plan-tbox-label {
  position: absolute;
  top: -14px;
  left: 10px;
  padding: 2px 8px;
  background: linear-gradient(10deg, #A7955B, #DDD4B8);
  color: #fff;
  font-size: 14px;
}
.studio-plan-tbox-flex {
  background-color: #fff;
}
.studio-plan-tbox-text {
  padding: 22px 10px 6px;
  font-size: 19px;
  color: #A2925F;
}
.studio-plan-tbox-text-sm {
  font-size: 16px;
}
.studio-plan-present-img,
.studio-plan-tbox-img {
  width: 100%;
}
.studio-plan-pr {
  margin-top: 15px;
}
.studio-plan-pr-link {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .studio-plan-present.--gold {
    margin-top: 100px;
  }
  .studio-plan-present.--gold .studio-plan-present-inner {
    gap: 0 40px;
  }
  .studio-plan-present.--gold .studio-plan-present-praph {
    margin-top: 0;
  }
  .studio-plan-present.--gold .studio-plan-present-sub {
    margin-top: 10px;
  }
  .studio-plan-present.--gold .studio-plan-present-main {
    margin-top: 0;
  }
  .studio-plan-tbox-flex {
    display: flex;
    justify-content: space-between;
  }
  .studio-plan-tbox-text {
    padding: 16px 10px 6px;
  }
  .studio-plan-tbox-picture {
    flex: 1;
    max-width: 150px;
  }
  .studio-plan-pr-link {
    max-width: 250px;
    margin-inline: 0;
  }
}


/*
.studio-plan-present-inner {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 40px 0;
  padding: 20px;
  background: linear-gradient(10deg, #F2D7D4, #FAF7F2);
}
.studio-plan-present-praph {
}
.studio-plan-present-label {
  position: relative;
  padding: 6px 0 4px;
  font-size: 14px;
}
.studio-plan-present-label:before,
.studio-plan-present-label:after {
  content: '';
  position: absolute;
  left: 0;
  width: 90%;
  height: 1px;
  background: #3c3c3c;
}
.studio-plan-present-label:before {
  top: 0;
}
.studio-plan-present-label:after {
  bottom: 0;
}
.studio-plan-present-sub {
  margin: 25px 0 0;
  font-size: 14px;
}
.studio-plan-present-main {
  margin: 20px 0 0;
  color: #AF5B65;
  font-size: 25px;
}
.studio-plan-present-main-sm {
  font-size: 20px;
}
.studio-plan-present-opt {
  color: #AF5B65;
  font-size: 14px;
}
.studio-plan-present-note {
  margin: 20px 0 0;
  font-size: 14px;
}
*/

.for_sp { display: block; }
.for_pc { display: none; }
@media screen and (min-width: 768px) {
  .for_sp { display: none; }
  .for_pc { display: block; }
}

.sims_fixed {
  left: 50%;
  transform: translateX(-50%);
}
.s-list-total2 .total-text {
  width: 130px;
  font-size: 2.2rem;
}
.s-list-total2 .total-text-tax {
  width: 72px;
  font-size: 1.2rem;
}
.border-ccc { border-color: #ccc; }
.border-ddd { border-color: #ddd; }
.news-label {
  display: inline-block;
  height: fit-content;
  border-radius: 4px;
  background-color: #ddd;
  padding-inline: 4px;
  margin-inline: 16px;
  font-size: 12px;
  line-height: 1.5;
}
#storeNews:not(:has([data-category])) { display: none; }
@media screen and (min-width: 768px) {
  .news-label {
    font-size: 16px;
  }
}

/* 婚礼タブ見せ */
:root {
  --primary-color: #bcb395;
  --color-b5656f: #b5656f;
  --color-f7d7d4: #f7d7d4;
  --color-fff4f0: #fff4f0;
}
.text-b5656f { color: var(--color-b5656f); }
.text-primary { color: var(--primary-color); }
.text-c3c3c3 { color: #c3c3c3; }
.bg-3e3e3e { background: #3e3e3e; }
.bg-f7f8f8 { background: #f7f8f8; }
.bg-c8c8c8 { background: #c8c8c8; }
.bg-fae5ed { background: #fae5ed; }
.bg-primary { background: var(--primary-color); }
.bg-f4f2ec { background: #f4f2ec; }
.bg-f7d7d4-fff4f0 { background: linear-gradient(75deg, var(--color-f7d7d4) 0%, var(--color-fff4f0) 80%); }
.bg-c3c3c3-e5e5e5 { background: linear-gradient(90deg, #c3c3c3 0%, #e5e5e5 100%); }
.border-primary { border-color: var(--primary-color); }
.rounded-tr-4xl { border-top-right-radius: 2.5rem; }
.ico-arrow-r-loca { position: relative; }
.ico-arrow-r-loca:after {
  content: '';
  position: absolute;
  bottom: 8px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-b5656f);
  border-right: 1px solid var(--color-b5656f);
  transform: rotate(45deg);
}
.tab-button.select {
  border: none;
  background: linear-gradient(90deg, #bcb395 0%, #ece5ca 100%);
}
.tab-list img { margin: auto; }
.tab-list.select {
  display: block !important;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}
.pre-check {
  position: relative;
  padding: 1.5rem 0 1.5rem 6rem;
}
.pre-check:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 76px;
  height: 58px;
  mask-image: url('/net/img/df-check.svg');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--primary-color);
}
.pre-check-mark {
  position: relative;
  padding: 0.5rem 0 0.5rem 2.5rem;
}
.pre-check-mark:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url('/net/img/pre-check-net.png') no-repeat left top / contain;
}
.pre-triangle,
.suf-border { position: relative; }
.pre-triangle { padding-left: 1.25rem; }
.pre-triangle:before,
.suf-border:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pre-triangle:before {
  left: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: var(--primary-color) transparent transparent transparent;
}
.suf-border:after {
  right: 0;
  width: 40%;
  height: 1px;
  background: var(--primary-color);
}
.opt-fd-ttl {
  position: relative;
  line-height: 1.25;
  font-feature-settings: "palt";
  width: fit-content;
  margin-inline: auto;
  padding: .85rem 1.2rem;
  border: 1px solid #bcb395;
  border-radius: 100vmax;
  background: #f7f8f8;
}
.opt-fd-ttl:before,
.opt-fd-ttl:after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 40%;
  transform: translate(-40%, 98%);
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 0px 16px 10px 0px;
  border-color: transparent #fbfaf6 transparent transparent;
}
.opt-fd-ttl:after {
  z-index: -1;
  border-width: 1px 18px 11px 0px;
  border-color: transparent #bcb395 transparent transparent;
}
.suf-text-arrow {
  position: relative;
  padding-right: 0.5rem;
}
.suf-text-arrow:after {
  content: '';
  position: absolute;
  right: 0;
  top: 48%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
}
.pd-prev,
.pd-next {
  position: absolute;
  top: 15%;
  width: 30px;
  height: 30px;
  font-size: 0px;
  z-index: 1;
}
.pd-prev.slick-disabled,
.pd-next.slick-disabled {
  opacity: 0.7;
}
.pd-prev {
  left: -5%;
  background: url('/net/img/pd-slide-prev.png') no-repeat left top / contain;
}
.pd-next {
  right: -5%;
  background: url('/net/img/pd-slide-next.png') no-repeat left top / contain;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@media screen and (min-width: 768px) {
  .pc\:rounded-tr-5xl { border-top-right-radius: 3.5rem; }
  .pc\:flow-unset { flex-flow: unset; }
  .pc\:flow-row-reverse { flex-flow: row-reverse; }
  .tab-button { cursor: pointer; }
  .suf-border:after { width: 76%; }
  .pre-mark-ml { position: relative; }
  .pre-mark-ml:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    aspect-ratio: 1;
    clip-path: polygon(0 0,100% 0,0 100%);
    background: var(--primary-color);
  }
}

