/*
Theme Name: Karadaroots
Author: Karadaroots
Version: 1.0
*/

/* =========================================================
  Common
========================================================= */

body {
  background-color: var(--bg-white);
}

/* SP〜1099pxは上部固定ヘッダー分だけ押し下げ */
main {
  padding-top: var(--sp-header-height);
}

/* PC左固定ヘッダー時のみ、mainを右へ逃がす */
@media (min-width: 1100px) {
  main {
    padding-top: 0;
    margin-left: var(--pc-side-header-width);
  }
}

/* SP下固定コンタクト分 */
@media (max-width: 767.98px) {
  .footer {
    padding-bottom: calc(7rem + 1.5rem);
  }
}

/* アンカー位置補正 */
[id] {
  scroll-margin-top: var(--sp-header-height);
}

@media (min-width: 1100px) {
  [id] {
    scroll-margin-top: 0;
  }
}


/* Safariの上下をこちらで塗る */
html,
body {
  background-color: var(--bg-white);
}

body::before,
body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99999;
  pointer-events: none;
  background-color: var(--bg-white);
}

body::before {
  top: 0;
  height: env(safe-area-inset-top, 0px);
}

body::after {
  bottom: 0;
  height: env(safe-area-inset-bottom, 0px);
}


/* =========================================================
  Header - Base
========================================================= */

.l-header {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--sp-header-height);
  padding: 0 1.5rem;
  background-color: var(--green);
}

.l-header .l-pc-wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: block;
  width: 4.5rem;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================================================
  Header - PC Layout
========================================================= */

@media (min-width: 1100px) {
  .l-header {
    width: var(--pc-side-header-width);
    height: 100vh;
    padding: clamp(2.4rem, 4vh, 4.8rem) 3.2rem;
    overflow-y: auto;
    scrollbar-width: none;
  }

  .l-header::-webkit-scrollbar {
    display: none;
  }

  .l-header .l-pc-wrapper {
    max-width: none;
    width: 100%;
    min-height: 100%;
    height: auto;
    margin: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .logo {
    width: clamp(9rem, 8vw, 12rem);
  }
}


/* =========================================================
  Header - Animation
========================================================= */

/* SP〜1099px Header animation */
@media (max-width: 1099.98px) {
  #header.UpMove {
    animation: UpAnime .5s forwards;
  }

  @keyframes UpAnime {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-100px);
    }
  }

  #header.DownMove {
    animation: DownAnime .5s forwards;
  }

  @keyframes DownAnime {
    from {
      opacity: 0;
      transform: translateY(-100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #header.no-anim {
    animation: none !important;
    transition: none !important;
  }
}

/* PCでは左固定ヘッダーなので、必ず表示 */
@media (min-width: 1100px) {
  #header,
  #header.UpMove,
  #header.DownMove,
  #header.no-anim {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* =========================================================
  Hamburger
========================================================= */

.menu-btn {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  z-index: 10001;
  cursor: pointer;
  padding: 0 0.5rem 0 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  display: block;
  position: relative;
  width: 2.6rem;
  height: 0.25rem;
  background: var(--white);
  border-radius: 999px;
  transition: 0.3192s cubic-bezier(.04, .04, .12, .96) 0.1008s;
}

.navicon::before,
.navicon::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 999px;
  transition: 0.3192s cubic-bezier(.04, .04, .12, .96) 0.1008s;
}

.navicon::before {
  top: 0.9rem;
}

.navicon::after {
  bottom: 0.9rem;
}

/* 三本線 → × */
.menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
  transition: 0.2192s cubic-bezier(.04, .04, .12, .96) 0.1008s;
}

.menu-btn:checked ~ .menu-icon .navicon::before {
  top: 0;
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon::after {
  bottom: 0;
  transform: rotate(45deg);
}


/* =========================================================
  Menu - Base
========================================================= */

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__sns-sp {
  display: none;
}

.header-sns-sp {
  display: none;
}


/* =========================================================
  Menu - SP
========================================================= */

@media (max-width: 1099.98px) {
  .menu {
    position: fixed;
    top: var(--sp-header-height);
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    height: calc(100dvh - var(--sp-header-height));
    padding: 0 1.5rem 5rem;
    background: var(--green);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-1.2rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.45s cubic-bezier(0.25, 0.9, 0.25, 1),
      opacity 0.35s ease,
      visibility 0.35s ease;
  }

  .menu-btn:checked ~ .menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu li {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem 0;
    margin: 0;
  }

  .menu li.header__sns-sp {
    border-bottom: 0;
  }

  .menu a {
    display: block;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.6;
  }

  .menu .header__sns-sp {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 0;
    padding: 3.2rem 0 0;
  }

  .menu .header-sns-sp {
    display: flex;
    align-items: center;
    gap: 2.4rem;
  }

  .menu .header-sns-sp__link {
    display: block;
    width: 5.6rem;
    flex: 0 0 5.6rem;
  }

  .menu .header-sns-sp__link img {
    display: block;
    width: 100%;
    max-width: 5.6rem;
    height: auto;
  }
}


/* =========================================================
  Menu - PC
========================================================= */

@media (min-width: 1100px) {
  .menu-btn,
  .menu-icon {
    display: none;
  }

  .menu {
    position: static;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(1.4rem, 2.2vh, 2.4rem);
    width: 100%;
    margin: clamp(3.2rem, 5vh, 5.6rem) 0 0;
    padding: 0;
    background: transparent;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .menu li {
    border: 0;
    padding: 0;
    margin: 0;
  }

  .menu a {
    display: block;
    color: var(--white);
    font-size: clamp(1.4rem, 1vw, 1.6rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.6;
  }

  .menu a:hover {
    color: var(--bg-yellow);
    opacity: 1;
  }
}


/* =========================================================
  PC Header Contact
========================================================= */

.header-contact {
  display: none;
}

@media (min-width: 1100px) {
  .header-contact {
    display: block;
    width: 100%;
    margin-top: auto;
    padding-top: clamp(3.2rem, 6vh, 6.4rem);
  }

  .header-contact__tel {
    color: var(--white);
    font-family: var(--font-family-en);
    font-size: clamp(2rem, 1.8vw, 2.4rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .header-contact__line {
    display: block;
    width: 100%;
    max-width: 24rem;
    margin-top: 1.2rem;
  }

  .header-contact__line img {
    display: block;
    width: 100%;
    height: auto;
  }

  .header-contact__text {
    margin-top: 1.6rem;
    color: var(--white);
    font-size: clamp(1.4rem, 1vw, 1.6rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.6;
  }

  .header-contact__text span {
    display: block;
  }

  .header-sns {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-top: clamp(2.4rem, 4vh, 4rem);
  }

  .header-sns__link {
    display: block;
    width: clamp(4.8rem, 4vw, 5.6rem);
  }

  .header-sns__link img {
    display: block;
    width: 100%;
    height: auto;
  }
}


/* =========================================================
  PC Header - Narrow Height Adjustment
========================================================= */

@media (min-width: 1100px) and (max-height: 760px) {
  .l-header {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .logo {
    width: 10rem;
  }

  .menu {
    gap: 1.2rem;
    margin-top: 2.4rem;
  }

  .menu a {
    font-size: 1.3rem;
  }

  .header-contact {
    padding-top: 2.4rem;
  }

  .header-contact__tel {
    font-size: 2.2rem;
  }

  .header-contact__line {
    max-width: 18rem;
    margin-top: 1rem;
  }

  .header-contact__text {
    margin-top: 1.2rem;
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .header-sns {
    margin-top: 2rem;
    gap: 1.2rem;
  }

  .header-sns__link {
    width: 4.8rem;
  }
}


/* =========================================================
  PC Header - Narrow Width Adjustment
========================================================= */

@media (min-width: 1100px) and (max-width: 1180px) {
  .header-contact__tel {
    font-size: clamp(1.8rem, 1.55vw, 2rem);
    letter-spacing: 0;
  }
}


/* =========================================================
  SP Fixed Contact
========================================================= */

.sp-fixed-contact {
  display: none;
}

@media (max-width: 767.98px) {
  .sp-fixed-contact {
    position: fixed;
    z-index: 10002;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    height: 6.4rem;
  }

  .sp-fixed-contact__line,
  .sp-fixed-contact__tel {
    display: flex;
    align-items: center;
    min-width: 0;
    height: 100%;
    color: var(--white);
    font-family: var(--font-family-h);
    font-weight: var(--font-weight-extra-bold);
    overflow: hidden;
  }

  .sp-fixed-contact__line {
    width: 50%;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.2rem;
    background-color: #06C755;
  }

  .sp-fixed-contact__tel {
    width: 50%;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.2rem;
    background-color: var(--bg-yellow);
  }

  .sp-fixed-contact__line-icon {
    display: block;
    flex-shrink: 0;
    width: 5.2rem;
    margin-right: -0.5rem;

  }

  .sp-fixed-contact__tel-icon {
    display: block;
    flex-shrink: 0;
    width: 4.8rem;
    margin-right: -0.5rem;
  }

  .sp-fixed-contact__line-icon img,
  .sp-fixed-contact__tel-icon img {
    display: block;
    width: 80%;
    height: auto;
  }

  .sp-fixed-contact__line-text,
  .sp-fixed-contact__tel-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    color: var(--white);
    font-family: var(--font-family-h);
    font-weight: var(--font-weight-extra-bold);
    line-height: 1.08;
    white-space: nowrap;
  }

  .sp-fixed-contact__line-text {
    font-size: clamp(1.6rem, 4.1vw, 1.8rem);
    letter-spacing: -0.04em;
	margin-top: -0.3rem;
  }

  .sp-fixed-contact__tel-text {
    font-size: clamp(1.6rem, 4.1vw, 1.8rem);
    letter-spacing: -0.04em;
	margin-top: -0.3rem;
  }

  .sp-fixed-contact__dot {
  display: inline-block;
  margin-inline: -0.18em;
  }
}


/* =========================================================
  Main Visual
========================================================= */

.mv {
  background-color: var(--bg-white);
}

.mv__visual {
  position: relative;
  width: 100%;
  min-height: calc(100svh - var(--sp-header-height));
  overflow: hidden;
  background-color: var(--bg-white);
}


/* -------------------------
  PC images
------------------------- */

.mv__pc-images {
  display: none;
}

.mv__pc-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* -------------------------
  SP slider
------------------------- */

.mv__sp-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.mv__sp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  overflow: hidden;
  transition: opacity 2.6s ease;
}

.mv__sp-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.mv__sp-slide.is-initial {
  opacity: 1;
  z-index: 2;
  transition: none;
}

.mv__sp-slide.is-leaving {
  opacity: 0;
  z-index: 3;
}

.mv__sp-slide picture,
.mv__sp-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.mv__sp-slide img {
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1);
  transform-origin: center bottom;
  transition: transform 10.5s linear;
}

.mv__sp-slide.is-active img {
  transform: scale(1.08);
}

.mv__sp-slide.is-active.is-leaving img {
  transform: scale(1.08);
}


/* -------------------------
  MV Content
------------------------- */

.mv__content {
  position: absolute;
  z-index: 6;
}

.mv__copy {
  position: static;
  width: 100%;
}

.mv__title-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.mv__title-picture,
.mv__title-img {
  display: block;
  width: 100%;
  height: auto;
}

.mv__certification {
  position: static;
  display: flex;
  align-items: center;
}

.mv__certification-icon {
  display: block;
  flex-shrink: 0;
}

.mv__certification-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.mv__certification-text-picture,
.mv__certification-text-img {
  display: block;
  width: 100%;
  height: auto;
  margin: -0.5rem 0 0 -1rem;
}


/* =========================================================
  Main Visual - SP
========================================================= */

@media (max-width: 767.98px) {
  .mv__visual {
    height: calc(100svh - var(--sp-header-height) - 7rem);
    min-height: 58rem;
  }

  .mv__sp-slide img {
    object-position: center bottom;
  }

  .mv__content {
    left: 50%;
    top: 7rem;
    width: min(96%, 39rem);
    transform: translateX(-50%);
  }

  .mv__certification {
    width: min(88%, 36rem);
    margin-inline: auto;
    align-items: center;
	padding-top:1.5rem;
  }

  .mv__certification-icon {
    width: 8.8rem;
  }

  .mv__certification-text-picture {
    flex: 1;
    min-width: 0;
  }
}


/* 縦が短いスマホ用 */
@media (max-width: 767.98px) and (max-height: 700px) {
  .mv__visual {
    min-height: 56rem;
  }

  .mv__content {
    top: 7rem;
    width: min(92%, 37rem);
  }

  .mv__certification {
    width: min(86%, 34rem);
  }

  .mv__certification-icon {
    width: 8rem;
  }
}


/* 横幅が広いスマホ〜タブレット手前 */
@media (min-width: 480px) and (max-width: 767.98px) {
  .mv__sp-slide img {
    object-position: center bottom;
  }

  .mv__content {
    top: 7rem;
    width: min(86vw, 52rem);
  }

  .mv__certification {
    width: min(72vw, 42rem);
  }
}


/* =========================================================
  Main Visual - PC
========================================================= */

@media (min-width: 768px) {
  .mv__visual {
    min-height: 100svh;
    background-color: var(--bg-white);
  }

  .mv__sp-slider {
    display: none;
  }

  .mv__pc-images {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    pointer-events: none;

    --mv-pc-side-gap: 5rem;
    --mv-pc-image-gap: -1.2rem;
    --mv-pc-image-width: calc(
      (100% - (var(--mv-pc-side-gap) * 2) - (var(--mv-pc-image-gap) * 2)) / 3
    );
    --mv-pc-image-top: 32rem;
    --mv-pc-image-step: 9.5rem;
  }

  .mv__pc-image {
    position: absolute;
    overflow: visible;
    width: var(--mv-pc-image-width);
  }

  .mv__pc-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .mv__pc-image--01 {
    left: var(--mv-pc-side-gap);
    top: var(--mv-pc-image-top);
    bottom: auto;
  }

  .mv__pc-image--02 {
    left: calc(
      var(--mv-pc-side-gap) + var(--mv-pc-image-width) + var(--mv-pc-image-gap)
    );
    top: calc(var(--mv-pc-image-top) - var(--mv-pc-image-step));
    bottom: auto;
  }

  .mv__pc-image--03 {
    right: var(--mv-pc-side-gap);
    top: calc(var(--mv-pc-image-top) - (var(--mv-pc-image-step) * 2));
    bottom: auto;
  }

  .mv__pc-image::after {
    display: none;
  }

  .mv__content {
    position: absolute;
    inset: 0;
    z-index: 6;
    width: 100%;
    transform: none;
    pointer-events: none;
  }

  .mv__copy {
    position: absolute;
    top: clamp(2.8rem, 4.8vw, 6.4rem);
    left: clamp(4.8rem, 6vw, 8rem);
    width: min(68vw, 90rem);
  }

  .mv__title-picture,
  .mv__title-img {
    display: block;
    width: 100%;
    height: auto;
  }

  .mv__certification {
    position: absolute;
    right: clamp(8rem, 9vw, 13rem);
    bottom: clamp(11rem, 14vh, 16rem);
    width: min(48vw, 58rem);
    margin-top: 0;
    margin-inline: 0;
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }

  .mv__certification-icon {
    width: clamp(8rem, 6.8vw, 10.4rem);
  }

  .mv__certification-text-picture {
    flex: 1;
    min-width: 0;
  }
}


/* 1400px以下はPC画像の左右余白を詰める */
@media (min-width: 768px) and (max-width: 1400px) {
  .mv__pc-images {
    --mv-pc-side-gap: 0rem;
  }
}



/* =========================================================
  About Sections
========================================================= */
.about {
  
  margin-top: 100px ;
  
}

.about-top {
    padding: 2.4rem;
}


/*セクションタイトル部分*/
.section-title {
  position: relative;
  display: inline-block;
}

.section-title img {
  position: absolute;
  top: -5px;
  left: 10px;
  width: 80px;
  opacity: 1;
  z-index: 1;
}
.title-en {
  position: relative;
  z-index: 2;
 
  margin: 0;
   font-family: var(--font-family-en-big);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;

  color: var(--title-pink);
}

.title-ja {
  position: relative;
  z-index: 2;
  font-family: var( --font-family-mincho);
  margin: 2px 0 0;
  font-size: 3rem;
  font-weight: 700;
  color: var(--title-pink);
  line-height: 1.2;
  letter-spacing: 0.05em;
}



/*セクションタイトル部分*/
.section-title-green {
  position: relative;
  display: inline-block;
}

.section-title-green img {
  position: absolute;
  top: -5px;
  left: 10px;
  width: 80px;
  opacity: 1;
  z-index: 1;
}
.title-en-green {
  position: relative;
  z-index: 2;
 
  margin: 0;
   font-family: var(--font-family-en-big);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;

  color: var(--darkgreen);
}

.title-ja-green {
  position: relative;
  z-index: 2;
  font-family: var(--font-family-mincho);
  margin: 2px 0 0;
  font-size: 3rem;
  font-weight: 700;
  color: var(--darkgreen);
  line-height: 1.2;
  letter-spacing: 0.05em;
}


/*タイトル下　文章部分*/
.about-top-text {
  margin-top: 2rem;
  color: #2D2A26;
}
.about-top-text p {
 
  font-family: var(--font-family-mincho);
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: var(--font-weight-medium);
  line-height: 2;
}

/*about center部分*/
.about-center {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

/*card1 部分*/
.about-center-card1 {
  position: relative;
  display: inline-block;
  padding-right: 30px;
}


.about-center-card1 img {
  display: block;
  width: 78%;
  height: auto;
}


.card1-title {
  position: absolute;
  top: -20px;
  right: 8%;

  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--title-pink);
  font-family: var( --font-family-mincho);
  white-space: nowrap;
}

.card1-text1 {
  position: absolute;
  top: 30px;
  right: 18%;

  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size:1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--brown);
   font-family: var( --font-family-mincho);
  white-space: nowrap;
}
.card1-text2 {
  position: absolute;
  top: 60px;
  right: 24%;

  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size:1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--brown);
   font-family: var( --font-family-mincho);
  white-space: nowrap;
}


/* card2 部分 */
.about-center-card2 {
  position: relative;
  display: inline-block;
  padding: 70px 0 30px 0;
  
}

.about-center-card2 img {
  display: block;
  width: 78%;
  height: auto;
  margin-left: auto; /* 画像を右寄せ */
}
.card2-title{
  position: absolute;
  top: 40px;
  left: 21%;
  white-space: nowrap;
}
.card2-title2{
    position: absolute;
    top: 65px;
    left: 13%;
    white-space: nowrap;
   
}
.card2-title,
.card2-title2 {


  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
   color: var(--title-pink);
  font-family: var(--font-family-mincho);
}

.card2-text1 {
  position: absolute;
  top: 120px;
  left: 4%;

  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--brown);
   font-family: var( --font-family-mincho);
  white-space: nowrap;
}

.card2-text2 {
  position: absolute;
  top: 75px;
  left: 4%;

  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: var(--brown);
   font-family: var( --font-family-mincho);
  white-space: nowrap;
}


/*card3 部分*/
.about-center-card3 {
  position: relative;
  display: inline-block;
  padding-right: 30px;
}


.about-center-card3 img {
  display: block;
  width: 78%;
  height: auto;
}


.card3-title {
  position: absolute;
  top: -20px;
  right: 8%;

  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
   color: var(--title-pink);
  font-family: var(--font-family-mincho);
  white-space: nowrap;
}

.card3-title2 {
  position: absolute;
  top: 15px;
  right: 16%;

  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--title-pink);
  font-family: var(--font-family-mincho);
  white-space: nowrap;
}

.card3-text1 {
  position: absolute;
  top: 60px;
  right: 24%;

  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.15em;
  color: var(--brown);
   font-family: var( --font-family-mincho);
  white-space: nowrap;
}

/* card4 部分 */
.about-center-card4 {
  position: relative;
  display: inline-block;
  padding: 70px 0 30px 0;
  
}

.about-center-card4 img {
  display: block;
  width: 78%;
  height: auto;
  margin-left: auto; /* 画像を右寄せ */
}
.card4-title{
  position: absolute;
  top: 45px;
  left: 20%;

  
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
   color: var(--title-pink);
  font-family: var(--font-family-mincho);
  white-space: nowrap;
}


.card4-text1 {
  position: absolute;
  top: 150px;
  left: 5%;

  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--brown);
   font-family: var( --font-family-mincho);
  white-space: nowrap;
}

.card4-text2 {
  position: absolute;
  top: 90px;
  left: 12%;

  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: var(--brown);
   font-family: var( --font-family-mincho);
  white-space: nowrap;
}



/*about bottom部分*/
.about-bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  gap: 20px;

  margin-top: 100px;
  
  position: relative;

  overflow: hidden;
 background-size: contain;
background-repeat: no-repeat;
background-position: center;
  
}

.about-bottom-text{
   margin: 0;
   margin-left: 20px;
  
}
.about-bottom1,
.about-p1,
.about-p2,
.about-p3 {
    color: var(--brown);
    font-family: var(--font-family-mincho);
    font-size: 1.8rem;
    font-weight: 500;
    padding-bottom: 1.6rem;
     line-height: 1.8;
     letter-spacing: 0.08em;
     white-space: nowrap;
}

.about-p1{
    padding-left:20px
}
.about-p2{
    padding-left:10px
}
.about-p3{
    padding-left:30px
}


.about-bottom1-accent{
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.1em;
     color: var(--title-pink);
    white-space: nowrap;
}

.about-bottom-img{
    position: relative;
    z-index: 2;
  width: min(300px, 50vw);
  flex-shrink: 0;
  margin-top: 100px;
    
}

.about-bottom-img img{
  display: block;
  width: 100%;
  height: auto;
   margin-left: 20px;
}


.card-under-slid{
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 15px;
  width: max-content;

  animation: marquee 20s linear infinite;
}
.card-under-slid img{
  width: 100px;
  height: auto;
  flex-shrink: 0;
}
.slid-img1{
  padding-bottom: 5px;
}
.slid-img2{
  padding-top: 5px;
}
@keyframes marquee{
  from{
    transform: translateX(-50%);
  }
  to{
    transform: translateX(0);
  }
}

/*pc 画面でのabout center部分の横並び*/
@media (min-width: 768px)  {
  


    .about-top{
        max-width: 500px;
        text-align: left;
        margin-bottom: -100px;
    }


   .about-center{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:100px 120px;
    align-items:start;
  }

  .about-center-card1{
    grid-column:2;
    grid-row:1;
    
  }

  .about-center-card2{
    grid-column:1;
    grid-row:1;
    margin-top:100px; /* 少し下げる */
  }

  .about-center-card3{
    grid-column:2;
    grid-row:2;
    margin-top:-140px; /* 少しあげる */
    
  }

  .about-center-card4{
    grid-column:1;
    grid-row:2;
    margin-top:10px; /* 少し下げる */
  }

    /* ↓追加 */

  .about-bottom{
    grid-column:2;
    grid-row:3;

    margin-top:-250px; /* 上へ引き上げる */
    margin-left:-100px; /* 少し左へ */

    

    display:flex;
    
    gap:10px;

   
  }

  .about-bottom1,
.about-p1,
.about-p2,
.about-p3 {
    color: var(--brown);
    font-family: var(--font-family-mincho);
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 1.6rem;
     line-height: 1.8;
     letter-spacing: 0.08em;
     white-space: nowrap;
}

  .about-bottom-img{
    width:220px;
    margin-top:0;
    margin-right:0px;

   overflow:visible;
  }

  .about-bottom-img img{
    width:100%;
    height:auto;
    display:block;
    overflow:visible;
  }
 
 .card-under-slid img{
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

}

@media (min-width: 1100px) {
  

  .about-bottom-img{
    width:220px;
    margin-top:0;
    margin-right:-5px;

   
  }

  .about-bottom-img img{
    width:100%;
    height:auto;
    display:block;
    overflow:visible;
  }
 
 .card-under-slid img{
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
}







/* =========================================================
  Voice Sections
========================================================= */

.voice{
    background-image: url("images/bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.voice-inner{
  margin: 0 2.4rem 100px 2.4rem;
 padding: 80px 0;
}
.voice-title-wrap{
  padding-top: 50px;
}

.voice-card{
    display: flex;
    flex-direction: column;
}

.voice1,
.voice2,
.voice3 {
   margin-top: 80px; 
   text-align: center;
  
}
.voice3{
  padding-bottom: 50px;
}

.voice-img {
   padding:0 4rem 3.2rem 4rem;
}
.voice-img img {
    display: block;
    width: 100%;
    height: auto;
}

.voice-title{
    font-weight: 700;
    font-size: 1.8rem;
     font-family: var( --font-family-mincho);
}

.voice-p{
    font-size: 1.6rem;
    text-align: left;
    margin-top: 1.2rem;
    font-weight: 400;
    padding: 0 0.8rem;
     font-family: var( --font-family-mincho);
}

@media (min-width: 768px) {
 .voice-title-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
 }

 .voice-card{
        flex-direction: row;
        gap: 40px;
    }

.voice1,
.voice2,
.voice3{
    flex: 1;
}
}





/* =========================================================
  Before　After　BA Sections
========================================================= */
.ba{
  margin: 100px 2.4rem;
}

.ba-img{
  display: flex;
  padding-top: 30px;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {

.ba-img{
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding-top: 50px;
}
}




/* =========================================================
  SNS Sections
========================================================= */
.sns {
    margin: 200px 2.4rem;
    text-align: center;
}
.google-map-wrap iframe{
    width:100%;
  height:450px;
  border:none;
  
}

.review-btn{
  display:inline-block;
  padding:12px 24px;
  background:var(--darkgreen);
  color:#fff;
  border-radius:999px;
  text-decoration:none;
  margin-top: 1.6rem;
  font-size: 1.8rem;
}


.youtube-insta-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
/*youtube*/
.youtube{
    margin: 100px 2.4rem;
    text-align: left;

}


.youtube-top{
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: var(--darkgreen);
    margin-bottom: 40px;
    font-family: var(--font-family-mincho);
}

.youtube-box{
    position: relative;
    width: 100%;
    max-width: 500px; /* 必要に応じて調整 */
    margin: 0 auto;
}

.youtube-box iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
}
.insta-top{
   font-family: var(--font-family-mincho);
}


@media (min-width: 768px) {
 .youtube-insta-wrap{
  margin-top: 100px;
    flex-direction: row;
    gap: 80px;
 }
 .youtube{
    flex:1;
    margin-top:0;
    padding: 2.4em;
}
 .instagram{
    flex:1;
    margin-top:0;
}
}





/* =========================================================
  INFO Sections
========================================================= */
.info{
     background-image: url("images/bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
   
}
.info-inner{
  margin: 200px 2.4rem;
  padding-top: 50px;
  padding-bottom: 50px;
}


.info-img {
  display:flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: center;
  margin-top: 30px;
}

.info-img1{
  width:200px;
}



.info-text1{
  margin: 2.4rem 0;
  text-align: left;
   font-family: var(--font-family-base);
}
 .info-text1-title{
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-family-base);
 }

 .info-address,
 .info-phone{
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
 }



 .info-text-title{
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-family-base);
 }

 .info-time{
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
 }

 .time1,
.time2{
  position: relative;
  padding-left: 18px; /* 四角分の余白 */

  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
 }

.time1::before,
.time2::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 10px;
  height: 10px;
  background: var(--yellow); /* 黄色 */
}

.info-p{
  line-height: 2.5;
  font-weight: 400;
  font-size: 1.6rem;
  }
.info-span{
  font-weight: 700;
}

/*lineと予約*/
.line-reserve{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 60px 0;
}

.info-bottom-p1{
  font-weight: 600;
  font-size: 1.8rem;
  color: #06C755;
  margin-bottom: 20px;
 }
.underline-link {
    text-decoration: underline;
    font-size: 1.4rem;
 }


@media (min-width: 768px) {
  .info-pc-wrap {
    display: flex;
    align-items: flex-start; /* 上揃え */
    gap: 60px;
}

.pc-info-left {
    width: 42%;
    padding-top: 40px;
}

.pc-right {
    width: 58%;
}
.info-img {
    display: flex;
    gap: 15px;
}


.line-reserve{
  display: flex;
  flex-direction: row;
  gap: 160px;

}
.line-reserve img{
  min-width: 300px;
}
}



/* =========================================================
  Price Sections
========================================================= */

.price{
  margin: 2.4rem;
  padding-bottom: 100px;
}
.price-menu{
   margin-top: 50px;
}

/*初回料金*/
.first-price-wrap{
  display: flex;
  gap: 12px;
  
}
.first-price,
.repeat-price{
  font-family: var(--font-family-base);
  font-size: 2.4rem;
}

.first-price-title {
  position: relative;
  padding-left: 30px;
   font-size: 2.4rem;
  font-family: var(--font-family-base);
}

.first-price-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 20px;
  height: 20px;
  background: var(--yellow); /* 黄色 */
}

/*リピート料金*/
.repeat-price-wrap{
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.repeat-price-box{
  display: flex;
  gap: 12px;
}

.repeat-price-title {
  position: relative;
  padding-left: 30px;
  font-family: var(--font-family-base);
   font-size: 2.4rem;
}

.repeat-price-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 20px;
  height: 20px;
  background: var(--yellow); /* 黄色 */
}

.repeat-p{
  font-weight: 400;
  font-size: 1.6rem;
  margin-left: 5rem;
}


/*price-text*/
.price-text-p{
  color: var(--darkgreen);
  font-weight: 700;
  font-size: 1.8rem;
  margin: 3.2rem 0;
}


/*コース*/
.price-course{
  margin: 4rem 0;
}


.course1,
.course2,
.course3{
  margin-bottom: 3.2rem;
}
.course-title{
  padding-bottom:1.4rem;
  font-family: var(--font-family-mincho);
  font-weight: 600;
}
.course-text{
  padding-bottom: 1.4rem;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--font-family-mincho);
}

/*支払方法*/
.payment{
  margin-top: 2.4rem;
}

.payment-title{
  padding-bottom: 1.4rem;
  font-family: var(--font-family-base);
}
.payment-p{
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 1.8rem;
  line-height: 2;
 }

.payment-img-pc{
  display: none;
}




@media (min-width: 768px) {
  
  .price-menu{
    display: flex;
    align-items: baseline;
    gap: 4.8rem;
  }

  .first-price-title,
  .first-price,
  .repeat-price-title,
  .repeat-price{
    font-size: 2.4rem;
    white-space: nowrap;
  }

 .repeat-price-title,
 .first-price-title {
    padding-left: 0;
  }

  .repeat-price-title::before ,
  .first-price-title::before {
    display: none;
  }

  .price-course{
    display: flex;
    align-items: stretch;
    gap: 2rem;
  }

  .course-title{
    font-size: 1.6rem;
    white-space: nowrap;
  }
  .course-text{
    font-size: 1.4rem;
  }

.course1,
.course2,
.course3 {
  flex: 1;
}
.course1 img,
.course2 img,
.course3 img {
  width: 100%;
  height: auto;
}
.course-title {
  min-height: 2.5em;
}

.course-text {
  min-height: 4em;
}

.payment-img-sp{
  display: none;
}
.payment-img-pc{
  display: block;
  padding-right: 80px;
}


}




/* =========================================================
  Service Sections
========================================================= */
.service{
  margin-bottom: 100px;
}
.pc-service-img{
  display: none;
}
.service-top{
  margin: 2.4rem;
  padding-top: 100px;
 
}


.service-text{
  padding: 2.4rem 0;
}
.service-p{
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
 }

.service-p-yellow{
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
}

/*各カード*/
.service-card1,
.service-card2,
.service-card3{
  position: relative;
  margin-top: 4.8rem;
 
}

.service-card-title{
  font-size: 3.2rem;
  color: var(--darkgreen);
  font-weight: 700;
  letter-spacing: 0.1em;
 padding-top: 70px;
 padding-bottom: 20px;
 line-height: 1.3;
 font-family: var(--font-family-base);
 
}
.service-number1,
.service-number2,
.service-number3{
  position: absolute;
  top: 25%;
  right: 7%;

  color: rgba(245, 195, 77, 0.2);
  font-family: var(--font-family-en-atomic);
  font-size: 10rem;
}
.service-card1 img,
.service-card2 img,
.service-card3 img{
  margin-top: 20px;
  z-index: 999;
}
.service-card-p{
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 1.8rem;
  line-height: 2;
 }

.service-card-span{
  font-size: 2rem;
}

.service-img-under,
.service-img-under2{
  display: none;
}





@media (min-width: 768px) {

  .pc-service-img{
  display: block;
}

.service-img,
.service-img2{
  display: none;
}
 

  .service-card1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 120px;

    position: relative;
  }

  .service-card-inner{
    width: 55%;
   
   
  }

  .service-card-p-wrap{
    width: 35%;
  }

   .service-card2{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 120px;
    position: relative;
  }

  .service-card2-inner{
    width: 55%;
  }

  .service-card2-p-wrap{
    width: 40%;
   margin-top: 15%;
  }

    .service-card3{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .service-card-p-wrap{
    width: 40%;
     margin-top: 15%;
  }

 
  .service-img{
    margin-left: -30px;
    overflow: hidden;
  }
  .service-img2{
    margin-right: -50px;
    overflow: hidden;
    
  }




  .service-number1,
  .service-number3{
    position: absolute;
    top: 20%;
    left: 37%;

     z-index: 3;
  }
.service-number2{
   top: 20%;
   right: 6%;
  }
  
.service-card-title{
  
 padding-bottom: 0px;
 
}



 

}






/*=========================
なやみごと
====================*/

.service-worries{
  margin-top: 70px;
    background-image: url("images/bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

   padding: 2.4rem;
  }


.worries-text{
  font-size: 2rem;
  color: var(--darkgreen);
  font-weight: 700;
  font-family: var(--font-family-base);
  letter-spacing: 0.05em;
}


.worries1{
  margin-top: 30px;
}
.w-inner1-set,
.w-inner1-set2,
.w-inner2-set,
.w-inner2-set2,
.w-inner3-set{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  margin: 2rem 0;
}
.worries-inner-img{
  width: 50px;
}

.w-inner1-set2,
.w-inner2-set2{
  padding-left: 40px;
}

.worries-inner-p{
  font-weight: 600;
  font-size: 1.8rem;
 }



.worries2{
  display: flex;
 
}
.worries2-img{
  flex: 1;
  margin-left: -20%;
}
.worries2-text{
  flex: 1;
  padding-top: 15%;
  color: var(--yellow);
  text-align: center;
  line-height: 1.5;
  padding-right: 40px;
  white-space: nowrap;
  font-family: var(--font-family-base);
}


.worries2-text-p{
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.8;
 }
.worries2-span-yellow{
  color: var(--yellow);
}

.sp-none-br{
  display: none;
}

.worries-span-inner{
  margin: 2.4rem 0;
  display: block;
  line-height: 2.5;
}

.worries3{
  margin-top: 50px;

}

.worries3-h2{
  font-size: 1.6rem;
  font-family: var(--font-family-base);
  font-weight: 600;
  color: var(--darkgreen);
  text-align: center;
  padding-top: 10px;

  display: inline-flex;
  
  align-items: center; /* ←縦中央揃え */
}

.worries3-h2::before{
  content: "";
  width: 15px;
  height: 15px;
  background: var(--yellow);
  flex-shrink: 0;
  margin-right: 6px;
}

.worries3-inner-set{
  text-align: center;

}


.worries3-inner-top,
.worries3-inner-bottom{
  display: flex;
  justify-content: center;
  gap: 30px;
}

.worries3-inner-top .worries3-inner-set:nth-child(2){
  margin-top: 40px;
}

.worries3-inner-bottom .worries3-inner-set:nth-child(1){
  margin-top: -20px;
}

.worries3-inner-bottom .worries3-inner-set:nth-child(2){
  margin-top: 30px;
}


.worries3-under-text{
  margin-top: 50px;
}

.worries3-under-text-p{
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  
}



@media (min-width: 768px) {

.w-inner1-set2,
.w-inner2-set2{
  padding-left: 0px;
}

.service-worries{
  padding-left: 5.6em;
}

.worries-inner1{
  display: flex;
  gap: 40px;
   padding-left: 50px;
}

.worries-inner2{
  display: flex;
  gap: 40px;
}

.worries-inner3{
  padding-left: 50px;
}





.worries2{
  margin-top: 80px;
}

.worries2-img{
  flex: 1;
 margin-left: 0%;
  max-width: 300px;
}

.pc-none-br{
  display: none;
}
.sp-none-br{
  display: block;
}





  .worries3-wrap{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  
  }

  .worries3-inner-top,
  .worries3-inner-bottom{
    display: contents;
  }


.worries3-inner-top .worries3-inner-set:nth-child(2){
  margin-top: 0px;
}

.worries3-inner-bottom .worries3-inner-set:nth-child(1){
  margin-top: 0px;
}

.worries3-inner-bottom .worries3-inner-set:nth-child(2){
  margin-top: 0px;
}



.worries3-under-text{
  margin-top: 50px;
  padding: 4rem;
}

}




/* =========================================================
  Message Sections
========================================================= */
.message{
 
  margin: 100px 2.4rem 50px 2.4rem;
}
.message-img{
  margin-top: 40px;
}

.message-pc-right{
  padding: 3.2rem 0;
}
.message-p{
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
 }



@media (min-width: 768px) {

  .message{
    display: flex;
    gap: 20px;

    align-items: flex-start;
    justify-content: space-between;
  }

  .message-pc-left{
    flex: 4;
    margin-top: 30px;
  }
  
  .message-pc-right{
    flex: 6;
   
  }

}



/* =========================================================
  Access Sections
========================================================= */
.access{
  margin: 100px 0 ;
}
.access-img{
  margin-top: 50px;
}



.info-inner{
  margin: 200px 2.4rem;
  padding-top: 50px;
  padding-bottom: 50px;
}


.access-img {
  display:flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: flex-start;
  margin-top: 30px;
}

.info-img1{
  width:200px;
}

.info-img2{
  width:120px;
  height:auto;
}

.info-img3{
  width:120px;
  height:auto;
}

.info-text1{
  margin: 2.4rem 0;
  text-align: left;
   font-family: var(--font-family-base);
}
 .info-text1-title{
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-family-base);
 }

 .info-address,
 .info-phone{
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
 }



 .info-text-title{
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-family-base);
 }

 .info-time{
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
 }

 .time1,
.time2{
  position: relative;
  padding-left: 18px; /* 四角分の余白 */

  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
 }

.time1::before,
.time2::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 10px;
  height: 10px;
  background: var(--yellow); /* 黄色 */
}

.info-p{
  line-height: 2.5;
  font-weight: 400;
  font-size: 1.6rem;
  }
.info-span{
  font-weight: 700;
}

.access-under{
  margin-top: -180px;
}
.access-under-left{
  width: 100%;
}

.access-under-left iframe {
    width: 100%;
    max-width: 100%;
    display: block;
}

.access-under-right{
  margin-top: 50px;
 
  position: relative;
}

.parking-img{
  overflow: hidden;
  padding: 0 1.8rem;
}
.access-under-p{
  color: var(--darkgreen);
  font-weight: 600;
  font-size: 1.8rem;
  position: absolute;
  bottom: 8%;
  left: 4%;

}
.red{
  color: var(--red);

}
.pc-irame{
  display: none;
}



@media (min-width: 768px) {

  .access-under{
    display: flex;
    gap: 40px;
    padding: 2.4rem;
    
  }

  .access-under-left iframe{
    width:100%;
    aspect-ratio:16/9;
    height:auto;
    border:0;
}
  .access-under-left{
    flex: 6;
  }

  .access-under-right{
    flex: 4;
     margin-top: -65px;

  }

  .access-under-p{
  color: var(--darkgreen);
  font-weight: 600;
  font-size: 1.4rem;
  position: absolute;

  bottom: -15px;
  left: 4%;

}



}



/* =========================================================
  Flow Sections
========================================================= */


.flow {
    padding: 80px 2.4rem;
     background-image: url("images/flow-bg.webp");
     margin-bottom: 50px;
}

.flow-list {
    display: flex;
    padding: 0 30px;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.flow-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 25px;
}

.flow-num {
    position: absolute;
    top: -10px;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0c6f74;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    font-family: var(--font-family-h);
}

.flow-item img {
    width: 120px;
    display: block;
    flex-shrink: 0;
}

.flow-item p {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 600;
}

.flow-arrow {
    display: none;
}



@media (min-width: 768px) {

    .flow-list {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 18px;
        margin-top: 60px;
    }

    .flow-item {
        width: 180px;
        display: block;
        padding-left: 0;
    }

    .flow-num {
        top: -12px;
        left: -12px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .flow-item img {
        width: 100%;
        margin-bottom: 15px;
    }

    .flow-item p {
        font-size: 14px;
        line-height: 1.8;
        font-weight: 500;
    }

    .flow-arrow {
        display: block;
        position: relative;
        width: 20px;
        height: 20px;
        margin-top: 55px;
        flex-shrink: 0;
    }

    .flow-arrow::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 8px solid #d9a32d;
    }
}





/* =========================================================
  FAQ Sections
========================================================= */
.faq{
  margin-bottom: 100px;
}
.question-text,
.answer-text {
  font-family:var(--font-family-mincho);
  
}
.qa-item summary {
  font-family: inherit;
  font-weight: inherit;
}


/*faqの背景*/
.faq {
  padding-top: 100px;
  color: var(--basecolor);
}

/*faqのタイトル*/
.faq-title {
  margin-top: 3.2rem;
    text-align: center;
    
}
.faq-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
} 



/*QandAの見た目調整*/
.faq-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 760px;   /* ← ここが重要 */
  padding: 0 1.6rem; 
 
}

.faq-inner {
  padding: 2.4rem;
}

/*各質問答えセットの間*/
.qa-item {
  margin: 50px auto;
  width: 100%;
  
}

/*質問と答えの囲い*/
.qa-question,
.qa-answer {
   display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
}

/* summary自体のスタイル */
.qa-question {
  position: relative;       /* 矢印を右端に配置するため */
  width: 100%;
  cursor: pointer;
  list-style: none;         /* デフォルトマーカー非表示 */
  display: flex;
  flex-direction: row;   /* 縦並びにする */
  align-items: flex-start;      /* 中央寄せ */
  text-align: left;       /* テキストも中央揃え */
  gap: 12px;              /* Qとテキストの間隔 */

}

/*質問と押したら開く矢印の囲い*/
.question-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  
   width: 100%;
}

/* デフォルトの三角マーカーを消す */
.qa-question::-webkit-details-marker {
  display: none;
}

/* Q / A の文字 */
.q,
.a {
  font-weight: 800;
  font-size: clamp(2.4rem, calc(2.2rem + 1.333vw), 3.2rem);
  margin-bottom: 0.5rem;    /* テキストとの間隔 */
  font-family: var(--font-family-en-league);
}
.q {
  color: var(--darkgreen);
  font-family: var(--font-family-en-league);
}
.a {
  color: var(--red);
  font-family: var(--font-family-en-league);
}

/* 質問文 / 回答文 */
.question-text,
.answer-text {
  font-weight: 500;
  font-size: clamp(1.6rem, calc(2.2rem + 1.333vw), 1.8rem);
  line-height: 1.8;
  white-space: 0.1em;
  text-align: left;
}
.answer-text{
  padding-left: 12px;

}
/* 矢印のスタイル（閉じている状態） */
.arrow {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 0.4em;

  transform: rotate(45deg);
  border-right: 3px solid #F4AEA1;
  border-bottom: 3px solid #F4AEA1;

  transition: transform 0.3s ease;
}

/* 開いている状態（JSで付け外し） */
.arrow.is-open {
  transform: rotate(-135deg);
}


/* ===== 回答ラッパー（高さ制御用） ===== */
.qa-answer-wrap {
   max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
/* ===== 回答本体（アニメーション本体） ===== */
.qa-answer {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: row;
  gap: 12px;
   align-items: flex-start; /* ← 上揃え */

  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.6s ease, transform 0.6s ease;

  pointer-events: none;
}

.qa-answer.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.qa-answer.hide {
  opacity: 0;
}




/*-----------PC FAQ よくある質問-------------*/
@media (min-width: 768px) {
.faq {
  padding-top: 10px;
}
.faq-wrapper {
  max-width: 1060px;
}
/* FAQ 全体をグリッド化 */
.faq-inner {
  display: grid;
 grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem; /* 余白を少し広めに */
}

/*各質問、答えのブロック*/
.qa-item {
  margin: 0 auto;
  padding: 2rem 0rem; 
  border-radius: 20px;
  width: 100%;
}

/*QとAの文字を左寄せに変更*/
.qa-question,
.qa-answer {
  align-items: flex-start; 
}

/*質問と押したら開く矢印の囲い*/
.question-wrapper {
   padding-right: 4rem;
}


}

/* =========================================================
  Image Sections
========================================================= */

.image-section {
  width: 100%;
  background-color: var(--bg-white);
}

.image-section__picture,
.image-section__img {
  display: block;
  width: 100%;
}

.image-section__img {
  height: auto;
}

/* 画像セクション間の余白を消す */
.image-section + .image-section {
  margin-top: 0;
}

/* PC・タブレットは画像を全幅表示 */
@media (min-width: 768px) {
  .image-section__picture,
  .image-section__img {
    width: 100%;
  }
}

/* スマホ下固定ボタンがある場合、最後の画像が隠れないようにする */
@media (max-width: 767.98px) {
  .image-section--faq {
    padding-bottom: 7rem;
  }
}

/* bredgeはSP専用 */

@media (min-width: 768px) {

  .image-section--bredge {

    display: none;

  }

}

.image-section {
  position: relative;
}

.image-section__link {
  position: absolute;
  z-index: 10;
  display: block;
}

/* =========================================================
  Info section links
========================================================= */

/* SP */
@media (max-width: 767.98px) {
  .image-section__link--info-line {
    left: 3.5%;
    top: 76.5%;
    width: 93%;
    height: 10.2%;
  }

  .image-section__link--info-cancel {
    left: 4%;
    top: 91.5%;
    width: 61%;
    height: 3.2%;
  }
}

/* PC */
@media (min-width: 768px) {
  .image-section__link--info-line {
    left: 7.2%;
    top: 68.5%;
    width: 25.5%;
    height: 17%;
  }

  .image-section__link--info-cancel {
    left: 5.2%;
    top: 89.8%;
    width: 22.5%;
    height: 4%;
  }
}

@media (max-width: 767.98px) {
  .image-section__link--info-tel {
left: 5%;
        top: 34.6%;
        width: 41%;
        height: 3.2%;
  }
}

@media (min-width: 768px) {
  .image-section__link--info-tel {
    display: none;
  }
}


/* =========================================================
  Cancel Policy Page
========================================================= */

.page-main--cancel-policy {
  background-color: var(--bg-white);
}

.cancel-policy {
  padding: 8rem 0 10rem;
}

.cancel-policy__inner {
  width: min(90%, 86rem);
  margin-inline: auto;
}

.cancel-policy__title {
  color: var(--darkgreen);
  font-family: var(--font-family-h);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: var(--font-weight-extra-bold);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.cancel-policy__body {
  margin-top: 4rem;
}

.cancel-policy__body p {
  color: var(--basecolor);
  font-family: var(--font-family-base);
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: var(--font-weight-medium);
  line-height: 2;
}

.cancel-policy__body p + p {
  margin-top: 2rem;
}

@media (max-width: 767.98px) {
  .cancel-policy {
    padding: 5.6rem 0 10rem;
  }

  .cancel-policy__body {
    margin-top: 3.2rem;
  }
}

/* =========================================================
  Text Pages
========================================================= */

.page-main--privacy-policy,
.page-main--cancel-policy {
  background-color: var(--bg-white);
}

.policy-page,
.cancel-policy {
  padding: 8rem 0 10rem;
}

.policy-page__inner,
.cancel-policy__inner {
  width: min(90%, 86rem);
  margin-inline: auto;
}

.policy-page__title,
.cancel-policy__title {
  color: var(--darkgreen);
  font-family: var(--font-family-h);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: var(--font-weight-extra-bold);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.policy-page__body,
.cancel-policy__body {
  margin-top: 4rem;
}

.policy-page__body h2 {
  margin-top: 4rem;
  color: var(--darkgreen);
  font-family: var(--font-family-h);
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: var(--font-weight-extra-bold);
  line-height: 1.5;
}

.policy-page__body p,
.policy-page__body li,
.cancel-policy__body p {
  color: var(--basecolor);
  font-family: var(--font-family-base);
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  font-weight: var(--font-weight-medium);
  line-height: 2;
}

.policy-page__body p + p,
.cancel-policy__body p + p {
  margin-top: 2rem;
}

.policy-page__body ol,
.policy-page__body ul {
  margin-top: 1.6rem;
  padding-left: 1.5em;
}

.policy-page__body li + li {
  margin-top: 0.8rem;
}

.policy-page__address {
  margin-top: 2rem;
  color: var(--basecolor);
  font-family: var(--font-family-base);
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: 2;
}

.policy-page__address a {
  color: var(--darkgreen);
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .policy-page,
  .cancel-policy {
    padding: 5.6rem 0 10rem;
  }

  .policy-page__body,
  .cancel-policy__body {
    margin-top: 3.2rem;
  }
}

@media (max-width: 767.98px) {
  .image-section__link--access-tel {
    left: 4%;
    top: 21.5%;
    width: 38%;
    height: 2%;
  }
}

@media (min-width: 768px) {
  .image-section__link--access-tel {
    display: none;
  }
}


/* =========================================================
  Footer
========================================================= */

.footer {
  width: 100%;
  height: auto;
  background-color: var(--bg-main);
  color: var(--white);
}

.footer__inner {
  padding-top: 7rem;
  padding-bottom: 1rem;
}

.footer__contents {
  display: flex;
  flex-direction: column;
}

.footer__left,
.footer__right {
  width: 100%;
}

/* 左：ロゴ＋屋号 / 右：SNS */
.footer__brand {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.4rem;
}

.footer__brand-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo {
  display: block;
  width: 6.5rem;
  flex-shrink: 0;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__shop-name {
  margin-top: 1.6rem;
  color: var(--white);
  font-family: var(--font-family-base);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

.footer__address {
  display: none;
}


/* SNS */
.footer__sns--sp {
  display: none;
}

@media (max-width: 1099.98px) {
  .footer__sns--sp {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 1.2rem;
    width: 12.8rem;
    margin-top: 0;
    flex-shrink: 0;
  }

  .footer__sns--sp .footer__sns-link {
    display: block;
    width: 5.6rem;
    flex-shrink: 0;
  }

  .footer__sns--sp .footer__sns-link img {
    display: block;
    width: 100%;
    height: auto;
  }
}


/* 営業時間テーブル */
.footer-hours {
  width: 100%;
  margin-top: 2.2rem;
}

.footer-hours__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background-color: var(--bg-white);
}

.footer-hours__table th,
.footer-hours__table td {
  border: 1px solid var(--basecolor);
  color: var(--darkgreen);
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-extra-bold);
  text-align: center;
  vertical-align: middle;
}

.footer-hours__table thead th {
  padding: 0.8rem 0.2rem;
  background-color: #f1f1f1;
  font-size: clamp(1.3rem, 3.4vw, 1.8rem);
  line-height: 1.2;
}

.footer-hours__table tbody th {
  padding: 1rem 0.2rem;
  font-size: clamp(1.3rem, 3.4vw, 1.7rem);
  line-height: 1.2;
}

.footer-hours__table td {
  padding: 1rem 0.2rem;
  font-size: clamp(1.3rem, 3.4vw, 1.7rem);
}

.footer-hours__table th:first-child {
  width: 30%;
}

.footer-hours__open {
  color: var(--yellow);
}

.footer-hours__closed {
  color: var(--lightgreen);
}


/* 住所・電話番号 */
.footer__info {
  margin-top: 2rem;
}

.footer__info p {
  color: var(--white);
  font-family: var(--font-family-base);
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.8;
}


/* ポリシー */
.footer__policy--sp {
  display: none;
}

@media (max-width: 1099.98px) {
  .footer__policy--sp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
    margin-top: 4rem;
  }

  .footer__policy--sp a {
    color: var(--white);
    font-family: var(--font-family-h);
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.6;
    text-align: center;
  }

  .footer__policy.f-sp-none {
    display: none !important;
  }

  .footer__info.f-pc-none {
    display: block !important;
  }
}


/* コピーライト */
.footer__copyright {
  margin: 5.4rem 0 6rem 0;
  color: var(--white);
  font-family: var(--font-family-en);
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  text-align: center;
}


/* =========================================================
  Footer - Common PC offset
========================================================= */

@media (min-width: 1100px) {
  .footer {
    margin-left: var(--pc-side-header-width);
    width: calc(100% - var(--pc-side-header-width));
  }
}


/* =========================================================
  Footer - Middle Layout 1100px - 1349px
========================================================= */

@media (min-width: 1100px) and (max-width: 1349.98px) {
  .footer {
    background-color: var(--bg-green);
  }

  .footer__inner {
    max-width: 72rem;
    margin-inline: auto;
    padding: 7.2rem 4rem 4rem;
  }

  .footer__contents {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__left,
  .footer__right {
    width: 100%;
  }

  .footer__left {
    display: flex;
    justify-content: center;
  }

  .footer__brand {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer__brand-main {
    display: grid;
    grid-template-columns: 7.2rem minmax(0, auto);
    align-items: center;
    gap: 2.4rem;
  }

  .footer__logo {
    width: 7.2rem;
  }

  .footer__shop-name {
    margin-top: 0;
    color: var(--white);
    font-family: var(--font-family-base);
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
  }

  .footer__address {
    display: block;
    margin-top: 0.4rem;
    color: var(--white);
    font-family: var(--font-family-base);
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.5;
    white-space: nowrap;
  }

  .footer__sns--sp {
    display: none;
  }

  .footer__policy.f-sp-none {
    display: none !important;
  }

  .footer__right {
    margin-top: 2.8rem;
    display: flex;
    justify-content: center;
  }

  .footer-hours {
    width: 100%;
    max-width: 58rem;
    margin-top: 0;
  }

  .footer-hours__table {
    width: 100%;
    table-layout: fixed;
  }

  .footer-hours__table th,
  .footer-hours__table td {
    white-space: nowrap;
    box-sizing: border-box;
  }

  .footer-hours__col-time {
    width: 32%;
  }

  .footer-hours__col-day {
    width: 9.7%;
  }

  .footer-hours__col-holiday {
    width: 9.8%;
  }

  .footer-hours__table thead th {
    padding: 1rem 0.4rem;
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .footer-hours__table tbody th {
    padding: 1rem 0.4rem;
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .footer-hours__table td {
    padding: 1rem 0.2rem;
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .footer-hours__table thead th:last-child {
    font-size: 1.6rem;
    letter-spacing: -0.04em;
  }

  .footer__info.f-pc-none {
    display: none !important;
  }

  .footer__policy--sp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-top: 4.8rem;
  }

  .footer__policy--sp a {
    color: var(--white);
    font-family: var(--font-family-base);
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.6;
    text-align: center;
    white-space: nowrap;
  }

  .footer__copyright {
    margin: 4rem 0 0;
    font-size: 1.3rem;
  }
}


/* =========================================================
  Footer - PC
========================================================= */

@media (min-width: 1350px) {
  .footer {
    background-color: var(--bg-green);
  }

  .footer__inner {
    max-width: 104rem;
    margin-inline: auto;
    padding: 7.6rem 4rem 3.2rem;
  }

  .footer__contents {
    display: grid;
    grid-template-columns: 44rem minmax(52rem, 58rem);
    gap: clamp(1.2rem, 2vw, 4.8rem);
    align-items: start;
    justify-content: center;
    max-width: none;
    margin-inline: auto;
  }

  .footer__left {
    display: flex;
    flex-direction: column;
  }

  .footer__brand {
    display: grid;
    grid-template-columns: 8rem minmax(0, 1fr);
    gap: 2.4rem;
    align-items: flex-start;
  }

  .footer__brand-main {
    display: contents;
  }

  .footer__logo {
    width: 6.8rem;
  }

  .footer__shop-name {
    margin-top: 0;
    font-size: 2rem;
    line-height: 1.4;
  }

  .footer__address {
    display: block;
    margin-top: 0.4rem;
    color: var(--white);
    font-family: var(--font-family-h);
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
  }

  .footer__policy.f-sp-none {
    display: flex !important;
  }

  .footer__policy {
    justify-content: flex-start;
    gap: 3rem;
    margin-top: 5.2rem;
  }

  .footer__policy a {
    font-size: 1.4rem;
  }

  .footer__right {
    width: 100%;
    max-width: 58rem;
  }

  .footer-hours {
    width: 100%;
    max-width: 58rem;
    margin-top: 0;
  }

  .footer-hours__table {
    width: 100%;
    table-layout: fixed;
  }

  .footer-hours__col-time {
    width: 32%;
  }

  .footer-hours__col-day {
    width: 9.7%;
  }

  .footer-hours__col-holiday {
    width: 9.8%;
  }

  .footer-hours__table th,
  .footer-hours__table td {
    white-space: nowrap;
    box-sizing: border-box;
  }

  .footer-hours__table thead th {
    padding: 1rem 0.4rem;
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .footer-hours__table tbody th {
    padding: 1rem 0.4rem;
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .footer-hours__table td {
    padding: 1rem 0.2rem;
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .footer-hours__table thead th:last-child {
    font-size: 1.6rem;
    letter-spacing: -0.04em;
  }

  .footer__copyright {
    margin: 5.2rem 0 2.5rem 0;
    font-size: 1.4rem;
  }
}
