@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.1.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/
*/

/* =========================================================
   基本レイアウト調整
========================================================= */
.page-style-club .l-content,
.page-template-page-misacli-style .l-content,
.page-template-page-mystyle .l-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box;
}
.page .l-content {
  padding-top: 0 !important;
}

#main_content section[id^="tag-"]{
  border: 1px solid #e5e5e5;
  padding: 2rem;
  margin-top: 3rem;
}
#main_content section[id^="tag-"] h2{
  margin-top: 0;
}
/* =========================================================
   共通設定
========================================================= */
a {
  text-decoration: none;
  transition: 0.5s all ease;
  color: var(--color_main);
  display: inline-block;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
.white a {
  color: #fff;
}

/* =========================================================
   汎用ボタン (btn__link)
========================================================= */
.btn__link {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid rgba(97, 91, 81, 0.2);
  border-bottom: 1px solid rgba(97, 91, 81, 0.2);
  margin: 0 auto 1em;
  color: var(--color_main);
  transition: all 0.3s ease;
  position: relative;
}

.btn__link--noborder {
  border: none;
}

.btn__link::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background: url("/wp-content/themes/swell_child/img/common/arrow_common_right_black01.png") no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.btn__link:hover {
  color: #000;
  border-color: rgba(97, 91, 81, 0.4);
  transform: translateY(-2px);
}

.btn__link:hover::after{
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .btn__link {
    font-size: 0.95rem;
    padding: 14px 0;
  }
}
/* =========================================================
   CTA
========================================================= */
.follow-banner {
  position: fixed;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
}

.follow-banner a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  writing-mode: vertical-rl;
  color: #fff;
  background-color: var(--color_main);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1.5em 1em;
  border-radius: 10px 0 0 10px;
  transition: opacity 0.25s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.follow-banner a:hover {
  opacity: 0.7;
}

.follow-banner .swl-inline-icon::after {
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .follow-banner {
	display: flex;
    top: auto;
    bottom: 16px;
    left: 16px;
    right: auto;
    transform: none;
  }

  .follow-banner a {
    writing-mode: horizontal-tb;
    font-size: 14px;
    padding: 0.75em 1em;
    border-radius: 999px;
    border: 1px solid #fff;
	writing-mode: horizontal-tb;
    white-space: nowrap;
    background-color: color-mix(
      in srgb,
      var(--color_main) 80%,
      transparent
    );
  }
}

.guerrilla-cta {
  position: fixed;
  bottom: 40px;
  right: 10%;
  z-index: 9999;
  width: 53px;
  height: 53px;
  background-color: #d9006c;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.8;
}
.guerrilla-cta a {
  color: #fff;
}
@media (max-width: 767px) {
  .guerrilla-cta {
    position: fixed;
    bottom: 17px;
    right: 20%;
	}
}

.guerrilla-cta:hover {
  opacity: 0.5;
  transform: scale(1.05);
}

.guerrilla-cta__link {
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
}
/* =========================================================
   見出しユーティリティ
========================================================= */
:root {
  --gold-gradient: linear-gradient(90deg, #dab251 2.28%, #e0c871 82.72%); 
  --gold-font: "Playfair Display", serif;
}
.page .heading--gold {
  font-family: var(--gold-font);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin-bottom: 1rem;
　padding-left: -20px;
}
.page .is-small {
  font-size: 2rem;
  margin: 0 auto;
}
.page .is-medium {
  font-size: 3.5rem;
  margin: 0 auto;
}
.page .is-large {
  font-size: 5rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page .is-small {
    font-size: 1.5rem;
  }
  .page .is-medium {
    font-size: 2.5rem;
  }
  .page .is-large {
    font-size: 3rem;
  }
}
.page .label {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  width: fit-content;
  margin: 1rem auto;
}

/* =========================================================
   Heroセクション
  background: url("/wp-content/themes/swell_child/img/common/texture_common_40.svg"),
              linear-gradient(90deg, #605a50 0%, #897a6b 25%, #605a50 100%);
========================================================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100vw;
  max-width: 100vw;
  height: 20vw;
  margin-inline: calc(50% - 50vw);
  background: var(--color_main);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 64px;
  overflow: hidden;
  position: relative;
  margin-bottom: 2em;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero {
    padding-block: 40px;
	height: 40vw;
  }
}

.hero__inner {
  max-width: 1000px;
  width: 90%;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.hero .c-pageTitle[data-style="b_bottom"],
.hero .c-pageTitle[data-style="b_bottom"] .c-pageTitle__inner {
  border: none !important;
}

.hero .c-pageTitle__inner {
  font-family: var(--gold-font);
  font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.05em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin-bottom: 16px;
}

.hero .c-pageTitle__subTitle {
  font-family: var(--gold-font);
  display: block;
  margin: 2em 0;
  font-weight: 600;
  font-style:normal;
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  line-height: 1.3;
  text-align: left;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  opacity: 10;
}

.hero__parentTitle {
  font-family: var(--gold-font);
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  letter-spacing: 0.05em;
  opacity: 0.85;
  margin-bottom: 8px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__bg-text {
  position: absolute;
  right: 0;
  bottom: -48px;
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  font-size: clamp(5rem, 15vw, 11.5rem);
  line-height: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(102, 102, 102, 0.12) 73.75%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: overlay;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 767px) {
  .hero__bg-text {
    right: -56px;
    bottom: -26px;
  }
}

/* =========================================================
   目次
========================================================= */
.page #main_content .p-toc,
.single #main_content .p-toc {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.page .p-toc__list,
.single .p-toc__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(16px, 3vw, 48px);
  row-gap: clamp(15px, 2vw, 24px);
  padding: 0;
  margin: 0;
}

.page .p-toc__list > li,
.single .p-toc__list > li {
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.page .p-toc__list > li::before,
.single .p-toc__list > li::before {
  display: none;
}

.page .p-toc__link,
.single .p-toc__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  font-size: clamp(0.95rem, 1.2vw, 1rem);
  padding: clamp(12px, 1.5vw, 14px) 24px clamp(12px, 1.5vw, 14px) 0;
  position: relative;
}

.page .p-toc__link::after,
.single .p-toc__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("/wp-content/themes/swell_child/img/common/arrow_common_right_black01.png")
    no-repeat center center / contain;
  transition: transform .25s;
}

.page .p-toc__link:hover::after,
.single .p-toc__link:hover::after {
  transform: translate(4px, -50%);
}

@media (max-width: 1024px) {
  .page .p-toc__list,
  .single .p-toc__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .page .p-toc__list,
  .single .p-toc__list {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .page .p-toc__link,
  .single .p-toc__link {
    padding-right: 30px;
  }
}

/* =========================================================
   ハンバーガーメニューをPCでも表示
========================================================= */
 @media (min-width: 960px) {
  .l-header {
    position: fixed!important;
    filter: invert(0);
    background: rgba(0, 0, 0, 0);
    mix-blend-mode: normal;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
}

header .l-container,
.l-fixHeader .l-container {
  max-width: 100% !important;
  padding-left: var(--swl-pad_container, 20px);
  padding-right: var(--swl-pad_container, 20px);
}
.l-header__menuBtn.sp_ {
  display: block!important;
}

@media (min-width: 960px) {
  .l-header__menuBtn.sp_ {
    align-self: center;
  }
}
.p-spMenu {
  display: block;
}
/* =========================================================
   コンタクトフォーム
========================================================= */
.cf-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2em 0;
  border-bottom: 1px dashed var(--gold-gradient);
  transition: all 0.3s;
  font-size: clamp(1rem, 1.1vw, 0.95rem);
}

.cf-area:last-child {
  border-bottom: none;
}

.cf-area dt {
  width: 200px;
  padding-right: 30px;
  text-align: right;
  line-height: 1.5em;
  color: var(--color_main);
}

.cf-area dd {
  flex: 1;
}

.cf-area input,
.cf-area textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #f9f9f9;
  resize: vertical;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px #ddd;
}

.cf-area input:focus,
.cf-area textarea:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 2px var(--color_main);
}

.cf-required {
  background: var(--color_main);
  color: #fff;
  font-size: 0.8em;
  padding: 0 6px 3px;
  border-radius: 4px;
  margin: 5px 0 0 5px;
  display: inline-block;
}

/* 送信ボタン */
.cf-send input {
  display: block;
  background: var(--color_main);
  width: 100%;
  height: 60px;
  margin: 30px auto 0;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .cf-area {
    display: block;
  }

  .cf-area dt {
    width: 100%;
    margin-bottom: 5px;
    padding-right: 0;
    text-align: left;
    line-height: 1.5em;
  }
}

/* =========================================================
   ループスライダー
========================================================= */
.loop-slider {
    display: flex;
    overflow: hidden;
}

.loop-slider .wp-block-group__inner-container,
.loop-slider .swell-block-columns {
    display: contents;
}

.loop-slider .swell-block-columns__inner {
    flex-wrap: nowrap;
    animation: infinity-scroll-left 60s infinite linear; /* アニメーションの時間を指定 */
	gap: 0rem;
}

.loop-slider .swell-block-column figure {
    aspect-ratio: 16 / 10;
    width: 300px;
    margin: 0;
}

.loop-slider .swell-block-column figure::before {
    display: none;
}

.loop-slider .swell-block-column figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media screen and (max-width: 959px) {
    .loop-slider .swell-block-column figure {
        width: 200px;
    }
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.loop-slider .swell-block-column {
    margin-left: 0 !important;
    padding: 0 !important;
    width: auto !important;
}

/* =========================================================
   パララックス設定
========================================================= */
/* カバー全体のclip対策（iOSで背景が崩れる問題回避） */
.wp-block-cover.has-parallax {
  -webkit-clip-path: inset(0); /* iOS Safari対策 */
  clip-path: inset(0);
}

/* 背景画像を強制的に固定表示にする */
.wp-block-cover__image-background.has-parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}
