:root {
  --main-green: #2FB4A1;
  --header-height-pc: 80px;
  --header-height-sp: 60px;
  --max-content-width: 1400px;
  --brand-gradient: linear-gradient(90deg, #FF789D 0%, #2FB4A1 50%, #6D9BCC 100%);
}
html {
  scroll-behavior: smooth;
}
a:hover{
    text-decoration: none !important;
}

.page-main{
  padding-bottom: 0;
}

.about-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height-pc);
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 9999;
  transition: all 0.3s ease;
}

.about-header__inner {
  max-width: var(--max-content-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-header__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.about-header__right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-header__nav-list {
    gap: 15px;
  }
}

.about-header__nav-list a {
  text-decoration: none;
  color: var(--main-green);
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.about-header__nav-list a:hover {
  color: var(--main-green);
}

.about-hamburger-btn {
  cursor: pointer;
  display: none;
  position: relative;
  width: 30px;
  height: 14px;
  z-index: 10000;
}

.about-hamburger-btn .bars {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-hamburger-btn .icon-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-green);
  display: block;
  transition: transform 0.3s ease, background-color 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.about-hamburger-btn .icon-bar:nth-child(1) {
  top: 0;
}

.about-hamburger-btn .icon-bar:nth-child(2) {
  bottom: 0;
}

.about-hamburger-btn .icon-bar:nth-child(3) {
  display: none;
}

.about-hamburger-btn.is-active .icon-bar:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.about-hamburger-btn.is-active .icon-bar:nth-child(2) {
  bottom: 6px;
  transform: rotate(-45deg);
}

.about-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(47, 180, 161, 0.9);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.about-drawer__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.about-drawer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.about-drawer__nav-list li {
  margin-bottom: 30px;
}

.about-drawer__nav-list a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.5rem;
  transition: opacity 0.3s ease;
  display: block;
}

.about-drawer__nav-list a:hover {
  opacity: 0.7;
}

.about-drawer.is-active {
  opacity: 1 !important;
  visibility: visible !important;
}

.about-mv {
  width: 100%;
  margin: -20px 0 0;
  padding: 0;
}

.about-mv__container {
  max-width: var(--max-content-width);
  height: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  perspective: 1000px;
}

.about-mv__curtain-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-style: preserve-3d;
}

.about-mv__curtain {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: aboutCurtainWave 8s ease-in-out infinite alternate;
}

.about-mv__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
}

.about-mv__logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 420px;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.about-mv__logo {
  width: 100%;
  height: auto;
  display: block;
}

.about-mv__brands-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  border-top-left-radius: 24px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  z-index: 20;
  width: 100%;
  max-width: 520px;
}

.about-mv__brands-title {
  font-size: 0.85rem;
  font-weight: 400;
  color: #393939;
  line-height: 1.5;
  white-space: nowrap;
}

.about-mv__brands-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.about-mv__brand-link {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.about-mv__brand-link:hover {
  opacity: 0.7;
}

.about-mv__brand-img {
  height: auto;
  object-fit: contain;
  display: block;
}

.about-mv__brand-link.gym .about-mv__brand-img {
  width: 137px;
}

.about-mv__brand-link.pilates .about-mv__brand-img {
  width: 94px;
}

.about-mv__brand-link.twentyfourgym .about-mv__brand-img {
  width: 60px;
}

.about-mv__brand-text {
  display: none;
}

@keyframes aboutCurtainWave {
  0% {
    transform: rotateY(-3deg) rotateX(1deg) skewY(-0.5deg);
  }
  33% {
    transform: rotateY(2deg) rotateX(-1deg) skewY(0.5deg) scaleX(1.01);
  }
  66% {
    transform: rotateY(-2deg) rotateX(2deg) skewY(-0.3deg) scaleX(0.99);
  }
  100% {
    transform: rotateY(3deg) rotateX(-1deg) skewY(0.4deg);
  }
}

@media (max-width: 767px) {
    .about-mv{
        margin-top: 0;
    }
  .about-header {
    height: var(--header-height-sp);
  }
  
  .about-header__inner {
    padding: 0 15px;
  }
  
  .about-header__logo img {
    height: 30px;
  }

  .about-header__right {
    gap: 0;
  }

  .about-header__nav {
    display: none;
  }

  .about-hamburger-btn {
    display: block;
  }

  .about-mv {
    padding: 0 15px;
  }

  .about-mv__container {
    height: auto;
    min-height: 480px;
    border-radius: 8px;
    perspective: 500px;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .about-mv__curtain-wrap {
    height: 540px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
  }

  .about-mv__bg {
    transform: scale(1.15);
  }

  .about-mv__logo-wrap {
    top:42.5%;
    max-width: 220px;
    padding: 0;
  }

  .about-mv__brands-nav {
    position: relative;
    width: calc(100% + 30px);
    margin-left: -15px;
    bottom: auto;
    right: auto;
    background-color: transparent;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: -30px;
    max-width: none;
  }

  .about-mv__brands-title {
    background-color: #ffffff;
    padding: 12px 16px;
    border-top-right-radius: 16px;
    border-top-left-radius: 0;
    margin-left: 15px;
    font-size: 0.85rem;
    position: relative;
    z-index: 25;
    display: inline-block;
  }

  .about-mv__brands-title br{
    display: none;
  }

  .about-mv__brands-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -16px;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at top left, transparent 15px, #ffffff 16px);
    pointer-events: none;
  }

  .about-mv__brands-list {
    width: 100%;
    background-color: #ffffff;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .about-mv__brand-link {
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-mv__brand-link.gym .about-mv__brand-img {
    width: 130px;
    max-width: 100%;
  }

  .about-mv__brand-link.pilates .about-mv__brand-img {
    width: 95px;
    max-width: 100%;
  }

  .about-mv__brand-link.twentyfourgym .about-mv__brand-img {
    width: 62px;
    max-width: 100%;
  }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  width: 100%;
}

.about-section__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 100px 0 110px;
  background-color: #ffffff;
  border-bottom: 2px solid transparent;
  border-image: var(--brand-gradient) 1;
}

.about-section__inner {
  max-width: 906px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-section__inner {
    flex-direction: column;
  }
}

.about-section__left,
.about-section__right {
  flex: 1;
}

.about-section__illust {
  width: 100%;
  height: auto;
  display: block;
}

.about-section__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin: 0 0 40px 0;
  
  /* 画像マスクの設定 */
  background-image: url(../img/about/text_bg.jpg);
  background-size: cover;
  background-position: left top 20px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

@media (max-width: 767px) {
 .about-section__title {
  background-image: url(../img/about/text_bg.jpg);
  background-size: cover;
  background-position: left top;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  }
}

.about-section__body {
  margin-bottom: 60px;
}

.about-section__body p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.15;
  margin: 0;
  color: #2fb4a1;
}

.about-section__btn-wrap {
  display: flex;
  justify-content: flex-start;
}

.about-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 280px;
  height: 56px;
  background-color: var(--main-green);
  border: 1px solid var(--main-green);
  border-radius: 6px;
  color: #ffffff !important;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.about-section__btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.about-section__btn:hover {
  background-color: transparent;
  color: var(--main-green) !important;
}

.about-section__btn:hover .about-section__btn-arrow {
  transform: translateX(6px);
}

@media (max-width: 767px) {
  .about-section__container {
    padding: 60px 0;
    margin: 0 15px;
    border-bottom-width: 2px;
  }

  .about-section__illust-wrap{
    max-width: 220px;
  }

  .about-section__inner {
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }

  .about-section__title {
    font-size: 2.25rem;
    margin-bottom: 25px;
  }

  .about-section__body{
    margin-bottom: 25px;
  }

  .about-section__body p {
    font-size: 1rem;
    font-weight: bold;
  }

  .about-section__btn-wrap {
    justify-content: center;
    max-width: 180px;
  }

  .about-section__btn {
    width: 100%;
    max-width: 320px;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Merit Section
   ========================================================================== */
.about-merit {
  width: 100%;
}

.about-merit__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 100px 0;
  background-color: #ffffff;
  border-bottom: 2px solid transparent;
  border-image: var(--brand-gradient) 1;
}

.about-merit__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-merit__section-header {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.about-merit__section-header span.row{
    display: flex;
    gap: 8px;
    color:var(--main-green);
    align-items: baseline;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--main-green) !important;
    letter-spacing: 0.05em;
}

.about-merit__section-logo {
  height: 52px;
  width: auto;
  display: block;
}

.about-merit__section-subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--main-green) !important;
  letter-spacing: 0.05em;
}

.about-merit__main-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin: 40px 0 80px 0;
  letter-spacing: 0.05em;
}


.about-merit__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
  width: 100%;
  padding: 0 30px 40px;
}

.about-merit__row:last-child {
  margin-bottom: 0;
}

.about-merit__row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background-color: #F4F3EF;
  border-radius: 12px;
  z-index: 1;
}

.about-merit__left {
  position: relative;
  width: 340px;
  z-index: 2;
  flex-shrink: 0;
}

.about-merit__label {
    font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--main-green) !important;
  display: block;
  margin-bottom: 15px;
  letter-spacing: 0.086em;
}

.about-merit__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--main-green) !important;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin: 0;
}

.about-merit__right {
  position: relative;
  display: flex;
  max-width: 550px;
  margin: auto;
  gap: 24px;
  flex: 1;
  z-index: 2;
}

.about-merit__right.wide{
    max-width: 830px;
}

.about-merit__item {
  flex: 1;
}

.about-merit__img-box {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  line-height: 0;
}

.about-merit__img-box img {
  width: 100%;
  height: auto;
}

.about-merit__number {
  position: absolute;
  bottom:  2px;
  left: 2px;
  width: 32px;
  height: 32px;
  background-color: #fff;
  color: var(--main-green) !important;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-merit__item-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--main-green) !important;
  margin: 0 0 8px 0;
  letter-spacing: 0.08em;
}

.about-merit__item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #393939;
  line-height: 1.6;
  margin: 0;
}

.about-merit__main-title br{
    display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
.about-merit__row{
  flex-direction: column;
}
.about-merit__right{
  margin-top: 20px;
}
}
@media (max-width: 767px) {
    .about-merit__main-title br{
    display: inline;
}
  .about-merit__container {
    padding: 60px 0 120px;
    margin: 0 15px;
  }

  .about-merit__section-header{
    gap: 0;
  }

  .about-merit__inner {
    padding: 0;
  }

  .about-merit__section-logo {
    height: 40px;
  }

  .about-merit__section-subtitle {
    font-size: 1.45rem;
  }

  .about-merit__main-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
    margin-top: 25px;
  }

  .about-merit__row {
    flex-direction: column;
    padding: 30px 15px;
    margin-bottom: 50px;
  }

  .about-merit__label{
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.4rem;
  }

  .about-merit__row::after {
    height: 100%;
    top:4%;
  }

  .about-merit__left {
    width: 100%;
    margin-bottom: 30px;
  }

  .about-merit__right {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
  .about-merit__item-text{
    font-size: 16px;
  }
  .about-merit__img-box{
    border-radius: 0;
  }
}

/* ==========================================================================
   Brand Section
   ========================================================================== */
.about-brand {
  width: 100%;
  padding: 0 20px;
}

.about-brand__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 100px 0;
  background-color: #ffffff;
}

.about-brand__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.about-brand__section-header {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 60px;
}

.about-brand__section-header span.row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--main-green) !important;
  letter-spacing: 0.05em;
}

.about-brand__section-logo {
  height: 52px;
  width: auto;
  display: block;
}

.about-brand__section-subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--main-green) !important;
  letter-spacing: 0.05em;
}

.about-brand__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-brand__card {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.about-brand__img-box {
  width: 480px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-brand__img-box{
    width: 300px;
  }
}

.about-brand__img {
  width: 100%;
  height: auto;
  display: block;
}

.about-brand__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0;
}

.about-brand__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.about-brand__card.gym .about-brand__title { color: #2FB4A1 !important; }
.about-brand__card.pilates .about-brand__title { color: #6D9BCC !important; }
.about-brand__card.twentyfour .about-brand__title { color: #FF789D !important; }

.about-brand__subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: block;
  letter-spacing: 0.08em;
}

.about-brand__card.gym .about-brand__subtitle { color: #2FB4A1 !important; }
.about-brand__card.pilates .about-brand__subtitle { color: #6D9BCC !important; }
.about-brand__card.twentyfour .about-brand__subtitle { color: #FF789D !important; }

.about-brand__body {
  margin: 15px 0;
}

.about-brand__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #393939;
  line-height: 1.6;
  margin: 0;
}

.about-brand__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 2em;
}

.about-brand__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
}

.about-brand__btn-arrow {
  position: relative;
  width: 12px;
  height: 12px;
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.about-brand__btn-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.about-brand__btn-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 2px;
  background-color: currentColor;
  transform: rotate(-45deg);
  transform-origin: top right;
}

.about-brand__card.gym .about-brand__btn { border: 1px solid #2FB4A1; color: #2FB4A1 !important; }
.about-brand__card.pilates .about-brand__btn { border: 1px solid #6D9BCC; color: #6D9BCC !important; }
.about-brand__card.twentyfour .about-brand__btn { border: 1px solid #FF789D; color: #FF789D !important; }

.about-brand__card.gym .about-brand__btn:hover { background-color: #2FB4A1; color: #ffffff !important; }
.about-brand__card.pilates .about-brand__btn:hover { background-color: #6D9BCC; color: #ffffff !important; }
.about-brand__card.twentyfour .about-brand__btn:hover { background-color: #FF789D; color: #ffffff !important; }

.about-brand__btn:hover .about-brand__btn-arrow {
  transform: translate(2px, -2px);
}

.about-brand__illust {
  height: 150px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: -20px;
}

@media (max-width: 767px) {
  .about-brand__container {
    padding: 60px 0 80px;
    margin: 0 auto;
  }

  .about-brand__body{
    margin: 7px 0;
  }

  .about-brand__inner {
    padding: 0;
  }

  .about-brand__section-header {
    margin-bottom: 40px;
    gap: 0;
  }

  .about-brand__section-logo {
    height: 24px;
  }

  .about-brand__section-header span.row {
    font-size: 1.45rem;
  }

  .about-brand__section-subtitle {
    font-size: 1.45rem;
  }

  .about-brand__content {
    gap: 50px;
  }

  .about-brand__card {
    flex-direction: column;
    gap: 16px;
  }

  .about-brand__img-box {
    width: 100%;
  }

  .about-brand__info {
    gap: 16px;
    padding: 0;
  }

  .about-brand__title {
    font-size: 24px;
  }

  .about-brand__text {
    font-size: 16px;
  }

  .about-brand__illust {
    height: 110px;
  }
  .about-brand__footer{
    margin-top: 0;
  }
  .about-brand__btn{
    padding: 0 10px;
  }
  .about-brand__btn-arrow::before{
    right:-1px;
  }
}

/* ==========================================================================
   Shop Section
   ========================================================================== */
.about-shop {
  width: 100%;
}

.about-shop__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 80px 20px;
}

.about-shop__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--main-green);
  border-radius: 12px;
  text-align: center;
}

.about-shop__main-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

.about-shop__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.about-shop__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 240px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 4px;
  color: var(--main-green) !important;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.about-shop__btn:hover {
  opacity: 0.9;
}

.about-shop__btn-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.about-shop__btn-arrow {
  position: relative;
  width: 14px;
  height: 10px;
  display: inline-block;
  flex-shrink: 0;
}

.about-shop__btn-arrow::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.about-shop__btn-arrow::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 13px;
  height: 2px;
  background-color: currentColor;
}

.about-news {
  width: 100%;
}

.about-news__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 20px 100px;
}

.about-news__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.about-news__title {
  font-family: "Oswald", sans-serif;
  font-size: 58px;
  font-weight: 400;
  color: var(--main-green) !important;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.6;
    margin-top: -65px;
    padding-top: 65px;
}

.about-news__list {
  max-width: 906px;
  margin: 0 auto;
}

.about-news__item {
  border-bottom: 1px solid transparent;
  border-image: var(--brand-gradient) 1;
}

.about-news__item-link {
  display: flex;
  align-items: center;
  padding: 24px 10px;
  text-decoration: none;
  color: #393939;
  transition: background-color 0.3s ease;
}

.about-news__item-link:hover {
  background-color: #f9f9f9;
}

.about-news__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95rem;
  color: #999999;
  margin-right: 25px;
  width: 100px;
}

.about-news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 15px;
  background-color: transparent;
  border: 1px solid var(--main-green);
  border-radius: 13px;
  color: var(--main-green);
  font-size: 0.75rem;
  font-weight: 400;
  margin-right: 25px;
}

.about-news__post-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-news__footer-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}

.about-news__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 240px;
  height: 56px;
  background-color: var(--main-green);
  border: 2px solid var(--main-green);
  border-radius: 4px;
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-news__more-btn:hover {
  background-color: transparent;
  color: var(--main-green) !important;
}

.about-news__more-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.about-news__more-arrow {
  position: relative;
  width: 14px;
  height: 10px;
  display: inline-block;
  flex-shrink: 0;
}

.about-news__more-arrow::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.about-news__more-arrow::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 13px;
  height: 2px;
  background-color: currentColor;
}

@media (min-width: 768px) {
    .about-shop__btn br{
        display: none;
    }
}

@media (max-width: 767px) {
  .about-shop__container {
    padding: 30px 15px;
  }

  .about-shop__inner {
    padding: 120px 15px;
  }

  .about-shop__main-title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  .about-shop__btns {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .about-shop__btn {
    width: 100%;
    max-width: 280px;
    height: 74px;
    flex-direction: column;
    gap: 8px;
    padding: 12px 8px;
  }

  .about-shop__btn-text {
    font-size: 14px;
    line-height: 1.2;
  }

  .about-news__container {
    padding: 0 15px 60px;
  }

  .about-news__title {
    font-size: 42px;
    margin-bottom: 25px;
    margin-top: -45px;
    padding-top: 45px;
  }

  .about-news__item-link {
    flex-wrap: wrap;
    padding: 20px 5px;
  }

  .about-news__date {
    width: auto;
    margin-right: 15px;
  }

  .about-news__category {
    margin-left: auto;
    margin-right: 0;
  }

  .about-news__post-title {
    width: 100%;
    margin-top: 10px;
    white-space: normal;
        flex: inherit;
  }

  .about-news__more-text{
    font-size: 1.05rem;
  }

  .about-news__footer-btns{
    margin-top: 20px;
  }

  .about-news__what-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 240px;
    height: 56px;
    background-color: var(--main-green);
    border: 2px solid var(--main-green);
    border-radius: 4px;
    color: #ffffff !important;
    text-decoration: none;
  }

  .about-news__what-text {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
  }

  .about-news__what-arrow {
    position: relative;
    width: 14px;
    height: 10px;
    display: inline-block;
    flex-shrink: 0;
  }

  .about-news__what-arrow::before {
    content: "";
    position: absolute;
    top: 2px;
    right: 0;
    width: 5px;
    height: 5px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
  }

  .about-news__what-arrow::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 13px;
    height: 2px;
    background-color: currentColor;
  }
}

.about-footer {
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid transparent;
  border-image: var(--brand-gradient) 1;
}

.about-footer__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 80px 20px 40px;
}
.about-footer__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 80px 20px 40px;
}

.about-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.about-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.about-footer__logo-box {
  width: 280px;
}

.about-footer__logo-link img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
}

.about-footer__nav-box {
  width: 240px;
}

.about-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-footer__nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--main-green) !important;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.about-footer__arrow {
  position: relative;
  width: 14px;
  height: 10px;
  display: inline-block;
}

.about-footer__arrow::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.about-footer__arrow::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 2px;
  background-color: currentColor;
}

.about-footer__bottom {
  border-top: 1px solid #e2e8f0;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-footer__sub-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-footer__sub-links a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.85rem;
  color: #393939;
  text-decoration: none;
}

.about-footer__sub-links a:hover {
  text-decoration: underline;
}

.about-footer__copyright {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8rem;
  color: #999999;
  margin: 0;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .about-footer__container {
    padding: 60px 20px 20px;
  }

  .about-footer__main {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
  }

  .about-footer__logo-box {
    width: 100%;
    max-width: 120px;
  }

  .about-footer__nav-box {
    width: 100%;
  }

  .about-footer__nav-list a {
    font-size: 1rem;
    padding: 5px 0;
  }

  .about-footer__bottom {
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .about-footer__sub-links {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .about-footer__sub-links a {
    font-size: 0.9rem;
  }
  .about-footer__copyright{
    font-size: 10px;
  }
}
/* ==========================================================================
   別ページ whats-flatte Section
   ========================================================================== */


.about-concept {
  width: 100%;
}

.about-concept__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 100px 0 110px;
  background-color: #ffffff;
  border-bottom: 2px solid transparent;
  border-image: var(--brand-gradient) 1;
}

.about-concept__inner {
  max-width: 906px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.about-concept__left {
  width: 280px;
  flex-shrink: 0;
}

.about-concept__right {
  flex: 1;
}

.about-concept__logo-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.about-concept__logo {
  height: 50px;
  width: auto;
  display: block;
}

.about-concept__logo-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--main-green);
}

.about-concept__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 66px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin: 0 0 40px;
  background-image: url(../img/about/text_bg.jpg);
  background-size: cover;
  background-position: left top 20px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

@media (max-width: 767px) {
  .about-concept__title {
  background-image: url(../img/about/text_bg.jpg);
  background-size: cover;
  background-position: left top;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  }
}

.about-concept__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-concept__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.15;
  margin: 0;
  color: #2fb4a1 !important;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-concept__title{
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .about-concept__container {
    padding: 60px 0;
    margin: 0 15px;
    border-bottom-width: 2px;
  }

  .about-concept__inner {
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }

  .about-concept__left {
    width: 100%;
  }

  .about-concept__logo-wrap {
    margin-bottom: 16px;
  }

  .about-concept__logo {
    height: 40px;
  }

  .about-concept__logo-text {
    font-size: 1rem;
  }

  .about-concept__title {
    font-size: 40px;
  }

  .about-concept__body {
    gap: 30px;
  }

  .about-concept__text {
    font-size: 1rem;
    font-weight: 700;
  }
}

.about-values {
  width: 100%;
}

.about-values__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 100px 0 50px;
  background-color: #ffffff;
}

.about-values__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-values__section-header {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 80px;
}

.about-values__section-header span.row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--main-green) !important;
  letter-spacing: 0.05em;
}

.about-values__section-logo {
  height: 52px;
  width: auto;
  display: block;
}

.about-values__section-subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--main-green) !important;
  letter-spacing: 0.05em;
}

.about-values__content {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-values__row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-values__img-box {
  width: 500px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

  .about-values__img-box {
    width: 300px;
  }
}

.about-values__img {
  width: 100%;
  height: auto;
  display: block;
}

.about-values__info {
  flex: 1;
}

.about-values__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--main-green) !important;
  line-height: 1.45;
  letter-spacing: 0.05em;
  margin: 0 0 24px 0;
}

.about-values__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #393939;
  line-height: 1.8;
  margin: 0;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-values__title{
    font-size: 30px;
  }
  .about-values__title br{
    display: none;
  }
}

@media (max-width: 767px) {
  .about-values__container {
    padding: 60px 0 80px;
    margin: 0 15px;
  }

  .about-values__inner {
    padding: 0;
  }

  .about-values__section-header {
    margin-bottom: 40px;
    gap:0;
  }

  .about-values__section-logo {
    height: 42px;
  }

  .about-values__section-header span.row {
    font-size: 1.45rem;
  }

  .about-values__section-subtitle {
    font-size: 1.45rem;
  }

  .about-values__content {
    gap: 60px;
  }

  .about-values__row,
  .about-values__row:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .about-values__img-box {
    width: 100%;
    border-radius: 8px;
  }

  .about-values__title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .about-values__text {
    font-size: 15px;
    line-height: 2.12;
  }
}