/* CSS Variables */
:root {
  /* Colors */
  --color-primary: #00a591;
  --color-bg: #f1f1f1;

  --color-text: #2b1d1d;
  --color-white: #fff;
  --color-black: #000;

  --color-error: #ff4444;
  --color-success: #4caf50;
  --color-warning: #ff9800;

  /* Typography */
  --font-primary: "Noto Sans JP", "Zen Maru Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-heading: "Zen Maru Gothic", sans-serif;

  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 30px;
  --font-size-4xl: 40px;
  --font-size-5xl: 50px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Layout */
  --container-max-width-sp: 345px;
  --container-max-width-pc: 1200px;

  --vh-sp: 610px;
  --gap-sp: 5px;
  --vh-pc: 845px;
  --gap-pc: 10px;
}

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

main {
  overflow-x: hidden;
}

/* Common Styles */
.container {
  max-width: var(--container-max-width-sp);
  margin: 0 auto;
}

.section__title {
  font-family: "Zen Maru Gothic";
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-light);
  text-align: center;
  color: var(--color-text);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s;
  border-radius: 5px;
  width: 200px;
  height: 45px;
  position: relative;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

.btn img {
  transition: transform 0.3s ease;
}

.btn:hover img {
  transform: translateX(5px);
}

.page-fv {
  height: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(#fff 0%, #f1f1f1 100%);
}

.page-title {
  text-align: center;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-light);
  font-family: "Zen Maru Gothic";
  position: relative;
  width: fit-content;
  padding-top: 89px;
}

.page-title._category {
  font-family: "Noto Sans JP";
}

.page-sub-title {
  text-align: center;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-light);
  font-family: "Zen Maru Gothic";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
}

.page-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15.5px;
}

@media (min-width: 768px) {
  .container {
    max-width: var(--container-max-width-pc);
    margin: 0 auto;
    padding: 0 15px;
  }

  .section__title {
    font-size: var(--font-size-5xl);
  }

  .page-fv {
    height: 316px;
  }

  .page-sub-title {
    bottom: 71px;
  }

  .page-title {
    font-size: var(--font-size-5xl);
  }

  .page-title::after {
    width: 50px;
    bottom: -20.5px;
  }
}


@media (min-width: 1200px) {
  .container {
    padding: 0;
  }
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 99;
}

.header__container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  padding-left: 15px;
}

.header__logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  transition: all 0.5s;
}

.header__logo a:hover {
  opacity: 0.7;
}

.header__logo img {
  height: 22px;
}

.header__nav {
  display: none;
}

.nav__list {
  display: flex;
}

.nav__item {
  position: relative;
}

.nav__item._pc {
  display: none;
}

.nav__link {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  transition: color 0.5s;
  display: block;
}

.nav__link:hover {
  color: var(--color-primary);
}

.dropdown__menu {
  position: absolute;
  top: calc(100% + 30px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border-radius: 5px;
}

.nav__item--dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
}

.dropdown__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dropdown__list li:not(:first-of-type) {
  border-top: solid 1px rgba(255, 255, 255, 0.3);
}

.dropdown__link {
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-base);
  transition: all 0.5s;
  color: var(--color-white);
}

.dropdown__link:hover {
  opacity: 70%;
}

.header__menu-btn {
  background-color: var(--color-primary);
  border: none;
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99;
  padding-top: 15px;
  padding-bottom: 7px;
}

.header__menu-btn.active {
  padding-top: 10px;
  padding-bottom: 6px;
}

.header__menu-btn.active .menu-btn__text {
  margin-top: 10px;
}

.header__menu-btn.active .menu-btn__line:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
  height: 1.25px;
}

.header__menu-btn.active .menu-btn__line:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -1px);
  height: 1.25px;
}

.menu-btn__line {
  width: 21.88px;
  height: 2px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 4px;
}

.menu-btn__line:nth-child(2) {
  margin-bottom: 0;
}

.menu-btn__text {
  color: var(--color-white);
  font-size: 9px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.03em;
  margin-top: 6px;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-bg);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  width: 100%;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 60px;
}

.mobile-nav__list {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-items: center;
  row-gap: 30px;
}

.mobile-nav__link {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
}

.mobile-nav__link--dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.mobile-nav__link--dropdown img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  margin-top: 2px;
}

.mobile-nav__item--dropdown.active .mobile-nav__link--dropdown img {
  transform: rotate(180deg);
}

.mobile-dropdown__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav__item--dropdown.active .mobile-dropdown__list {
  max-height: 300px;
  margin-top: 20px;
  overflow: scroll;
}

.mobile-dropdown__link {
  display: block;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  padding: 10px 0;
  text-align: center;
}

.mobile-dropdown__link:hover {
  color: var(--color-primary);
}

.mobile-menu__social {
  display: flex;
  column-gap: 9px;
}

.social__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  transition: all 0.5s;
}

.social__link:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.social__link img {
  width: 30px;
  height: 30px;
}

@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }

  .nav__list {
    display: flex;
    align-items: center;
    column-gap: 10px;
  }

  .nav__item .nav__link {
    color: var(--color-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    font-family: "Zen Maru Gothic";
    width: 141px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .nav__item--dropdown .nav__link::after {
    content: url("../images/common/triangle.svg");
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, 4px) scale(0.8);
    width: 22px;
    height: 20px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
  }

  .nav__link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 5px;
    position: relative;
  }

  .nav__item:hover>.nav__link {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 5px;
    position: relative;
  }

  .nav__item--dropdown:hover .nav__link::after {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
  }

  .header__menu-btn {
    display: none;
  }

  .header__container {
    width: 100%;
    height: 75px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .header__logo img {
    width: 258.4px;
    height: 36px;
  }
}

@media (min-width: 1200px) {
  .nav__item._pc {
    display: block;
    white-space: nowrap;
    width: fit-content;
  }

  .nav__item._pc .nav__link {
    width: fit-content;
    padding-right: 10px;
    padding-left: 10px;

  }
}

/* information */
.home .information {
  padding-top: 40px;
}

.information__title {
  font-size: var(--font-size-3xl);
  font-family: "Zen Maru Gothic";
  font-weight: var(--font-weight-light);
  margin-bottom: 20px;
  text-align: center;
}

.information__pc {
  display: none;
}

.information__sp {
  background-color: var(--color-primary);
  padding-top: 21.5px;
  padding-bottom: 26.5px;
}

.information__sp--inner {
  width: 345px;
  margin-left: auto;
  margin-right: auto;
}

.information__sp--head {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  color: var(--color-primary);
  height: 42px;
  margin-bottom: 27.5px;
  font-size: var(--font-size-xl);
  font-family: "Zen Maru Gothic";
  font-weight: var(--font-weight-bold);
  border-radius: 5px;
  max-width: 345px;
  margin-left: auto;
  margin-right: auto;
}

.information__sp--title {
  margin-bottom: 21px;
  text-align: center;
  font-size: var(--font-size-3xl);
  font-family: var(--font-weight-medium);
  color: var(--color-white);
}

.information__sp--app {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 29.6px;
  margin-bottom: 30.5px;
}

.information__sp--phone {
  width: 161px;
  height: 193px;
}

.information__sp--app-wrap {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.information__sp--apple {
  width: 155.25px;
  height: 45px;
}

.information__sp--google {
  width: 150.75px;
  height: 45px;
}

.information__box {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.information__card {
  width: 170px;
  height: 135px;
  background-color: var(--color-white);
  border-radius: 10px;
  padding-top: 5px;
}

.information__card picture {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.information__card--title {
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 25px;
  color: var(--color-white);
  border-radius: 25px;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--font-size-sm);
}

.information__card--coordinate {
  width: 167px;
  height: 80px;
  margin-top: 11px;
  margin-left: auto;
  margin-right: auto;
}

.information__card--stamp {
  width: 143px;
  height: 60px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.information__card--coupon {
  width: 159px;
  height: 83px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.information__card--store {
  width: 155px;
  height: 60px;
  margin-top: 19px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .home .information {
    padding-top: 50px;
  }

  .information__title {
    font-size: var(--font-size-5xl);
    margin-bottom: 80px;
  }

  .information__sp--inner {
    width: 90%;
  }

  .information__tab {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .information__box {
    width: 345px;
  }

  .information__card {
    width: 165px;
  }
}

@media (min-width: 1300px) {
  .information__sp {
    display: none;
  }

  .information__pc {
    display: block;
    height: 350px;
    background-color: var(--color-primary);
  }

  .information__pc--inner {
    width: 85.71%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: end;
    position: relative;
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .information__pc--head {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 325px;
    height: 42px;
    border-radius: 5px;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: var(--font-size-xl);
    font-family: var(--font-weight-bold);
    margin-bottom: 30px;
  }

  .information__pc--title {
    font-size: 36px;
    margin-bottom: 32.5px;
    font-family: var(--font-weight-medium);
    color: var(--color-white);
    text-align: center;
  }

  .information__pc--phone {
    position: absolute;
    width: 332px;
    height: 400px;
    left: 0;
    top: -50px;
  }

  .information__pc--app {
    width: 328.38px;
    margin-right: 62px;
  }


  .information__pc--app-wrap {
    display: flex;
    gap: 19.8px;
  }

  .information__pc--apple {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15.5px;
  }

  .information__pc--apple img._image_01 {
    width: 155.25px;
    height: 45px;
    object-fit: contain;
  }

  .information__pc--apple img._image_qr {
    width: 66px;
    height: 66px;
  }

  .information__pc--google {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15.5px;
  }

  .information__pc--google img._image_01 {
    width: 150.75px;
    height: 45px;
    object-fit: contain;
  }

  .information__pc--google img._image_qr {
    width: 66px;
    height: 66px;
  }

  .information__box {
    gap: 10px;
    width: 410px;
  }

  .information__card {
    width: 200px;
    height: 135px;
  }

  .information__card picture {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .information__card--title {
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
  }

  .information__card--store {
    width: 175px;
    height: 67px;
    margin-top: 12px;
  }

}

/* members-card */
.members-card {
  background-color: var(--color-white);
  padding-top: 30.5px;
  padding-bottom: 25px;
}

.members-card__title.section__title {
  margin-bottom: 13.5px;
  font-size: var(--font-size-3xl);
}

.members-card__info {
  background-color: #D9394E;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 15px;
  padding-left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
  text-align: center;
  width: fit-content;
}

.members-card__info--link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--color-white);
}

.members-card__info--link:hover {
  text-decoration: underline;
}

.members-card__wrap {
  border-radius: 10px;
  background-color: #EDF5F4;
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 25px;
}

.members-card__item:first-of-type {
  padding-bottom: 24.5px;
  border-bottom: solid 1px var(--color-primary);
}

.members-card__item:nth-child(2) {
  padding-top: 20.5px;
}

.members-card__item--title {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00A591;
  border-radius: 40px;
  margin-bottom: 20px;
  color: var(--color-white);
  font-weight: bold;
  font-size: 20px;
  height: 40px;
}

.members-card__item--title._02 {
  flex-direction: column;
  height: 70px;
  border-radius: 70px;
  margin-bottom: 21px;
}

.members-card__item--title._02 span {
  font-size: var(--font-size-base);
}

.members-card__item--head picture {
  width: 206.95px;
  height: 144.25px;
  margin-bottom: 23.8px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.members-card__item--head picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.members-card__body--title {
  font-size: 20px;
  color: var(--color-primary);
  font-weight: bold;
  margin-bottom: 17px;
}

.members-card__body--title._02 {
  margin-bottom: 14px;
}

.members-card__linktext._pc {
  display: none;
}

.members-card__linktext._sp {
  font-size: var(--font-size-sm);
}

.members-card__linktext a {
  color: #003399;
  text-decoration: underline;
}

.members-card__body--main {
  display: flex;
  gap: 10px;
}

.members-card__body--num {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: bold;
  font-size: var(--font-size-sm);
}

.members-card__body--text {
  margin-bottom: 23px;
  font-size: var(--font-size-base);
  line-height: 26px;
  margin-top: -4px;
}

.members-card__body--text span {
  font-size: var(--font-size-base);
  font-weight: bold;
  display: block;
  margin-bottom: 11px;
  line-height: 26px;
}

.members-card__body--text._02 {
  margin-bottom: 0;
}

.members-card__body--text._02 span {
  margin-bottom: 13px;
}

.members-card__body--list {
  margin-bottom: 37px;
}

.members-card__body--image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 23px;
}

.members-card__body--image picture {
  display: block;
  width: 100%;
}

.members-card__body--image._02 {
  background-color: var(--color-white);
  justify-content: start;
  padding-left: 15px;
  height: 40px;
}

.members-card__body--image._02 picture {
  width: 58px;
}

.members-card__body--image picture img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .members-card__linktext._pc {
    display: block;
    font-size: var(--font-size-sm);
    padding-left: 15px;
  }

  .members-card__linktext._sp {
    display: none;
  }

  .members-card {
    padding-top: 60px;
    padding-bottom: 68px;
  }

  .members-card__title.section__title {
    margin-bottom: 30px;
    font-size: var(--font-size-5xl);
  }

  .members-card__wrap {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 45px;
    padding-bottom: 32px;
  }

  .members-card__info {
    padding-right: 50px;
    padding-left: 50px;
  }

  .members-card__item:nth-child(2) {
    padding-top: 30.5px;
  }

  .members-card__item {
    display: flex;
    gap: 50px;
  }


  .members-card__item--title {
    border-radius: 50px;
    margin-bottom: 36px;
    font-size: 24px;
    height: 50px;
    width: 350px;
  }

  .members-card__item--title._02 {
    flex-direction: column;
    height: 80px;
    border-radius: 80px;
    margin-bottom: 66px;
  }

  .members-card__item--title._02 span {
    font-size: var(--font-size-base);
  }

  .members-card__item--head picture {
    width: 206.95px;
    height: 144.25px;
    margin-bottom: 23.8px;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  .members-card__body--title._02 {
    margin-bottom: 20px;
  }

  .members-card__body--text {
    margin-bottom: 29px;
  }

  .members-card__body--text._02 {
    margin-bottom: 0;
  }

  .members-card__body--text._02 span {
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .members-card__body--list {
    margin-bottom: 30px;
  }

  .members-card__body--image {
    margin-bottom: 0px;
  }

  .members-card__body--image._02 {
    padding-left: 24px;
    height: 68px;
  }

  .members-card__body--image._02 picture {
    width: 123px;
  }
}

@media (min-width: 1200px) {
  .members-card__body--text .br_sp {
    display: none;
  }
}

/* cta-recruit */
.cta-recruit {
  height: 280px;
  background-image: url("../images/home/recruit/recruit_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 9.1px;
  position: relative;
}

.cta-recruit__title {
  text-align: center;
  font-size: var(--font-size-3xl);
  font-family: "Zen Maru Gothic";
  margin-bottom: 10px;
}

.cta-recruit__text {
  font-size: var(--font-size-base);
  line-height: 30px;
  width: 90%;
  max-width: 345px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta-recruit .btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}

@media (min-width: 768px) {
  .cta-recruit {
    height: 350px;
    background-image: url("../images/home/recruit/recruit_bg.png");
    background-position: center;
    padding-top: 116.6px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .cta-recruit__inner {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }

  .cta-recruit__title {
    text-align: left;
    font-size: var(--font-size-4xl);
    margin-bottom: 25.9px;
  }

  .cta-recruit__text {
    font-size: var(--font-size-base);
    line-height: 30px;
    width: 90%;
    max-width: 567px;
    margin-left: 0;
    margin-bottom: 8.5px;
    text-align: left;
  }

  .cta-recruit .btn {
    position: static;
    left: auto;
    transform: none;
    bottom: auto;
    margin-right: 0;
  }
}

/* Main Visual Auto Scroll */
.main-visual {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  width: 100%;
  gap: 6px;
  padding-top: 50px;
}

.main-visual__wrap {
  display: flex;
  will-change: transform;
  animation: scroll 50s linear infinite;
  height: 180px;
}


.main-visual__wrap._middle {
  animation: scroll-reverse 100s linear infinite;
  height: 160px;
}

.main-visual__item {
  flex: 0 0 auto;
  height: 100%;
  width: auto;
  margin: 0 5px;
}

.main-visual__item img {
  height: 100%;
  width: auto;
  display: block;
}

@media (min-width: 768px) {

  .main-visual {
    gap: 10px;
    padding-top: 75px;
  }

  .main-visual__wrap {
    animation: scroll 200s linear infinite;
    height: 320px;
  }

  .main-visual__wrap._middle {
    animation: scroll-reverse 350s linear infinite;
    height: 251px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

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

@keyframes scroll-reverse {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Brand News */
.brand-news {
  padding-top: 40px;
  background-color: var(--color-bg);
}

.brand-news .brand-news__title {
  margin-bottom: 25px;
}

/* Instagram Section */
.instagram-section {
  margin-bottom: 60px;
}

.instagram-section__title {
  font-family: "Zen Maru Gothic";
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-light);
  text-align: center;
  margin-bottom: 33px;
  color: var(--color-text);
}

.instagram-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 40px;
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  width: 170px;
  height: 170px;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-btn {
  text-align: center;
}

@media (min-width: 768px) {

  /* Brand News */
  .brand-news {
    padding-top: 90px;
  }

  .brand-news .brand-news__title {
    margin-bottom: 40px;
  }

  /* Instagram Section */
  .instagram-section {
    margin-bottom: 90px;
  }

  .instagram-section__title {
    margin-bottom: 30px;
  }

  .instagram-list {
    column-gap: 10px;
    flex-wrap: nowrap;
  }

  .instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    width: 170px;
    height: 170px;
  }
}

@media (min-width: 1200px) {
  .instagram-item {
    border-radius: 30px;
    width: 292px;
    height: 292px;
  }
}

/* Brand News Slider */
.brand-news__slider-container {
  margin-bottom: 80px;
  position: relative;
}

.brand-news__slider {
  margin: 0;
  margin-bottom: 48px;
}

.brand-news__slider .news-card {
  width: 100%;
  max-width: 300px;
  margin: 0 10px;
  flex-shrink: 0;
  display: inline-block;
}

.news-card__link {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.news-card__link:hover .news-card__image img {
  transform: scale(1.1);
}

.news-card__link:hover .news-card__text,
.news-card__link:hover .news-card__head time {
  color: var(--color-primary);
}

.news-card__image {
  border-radius: 20px;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.5s;
}

.news-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.news-card__head time {
  font-size: var(--font-size-xs);
  transition: all 0.5s;
}

.news-card__head img {
  width: 130px;
  height: 25px;
  object-fit: contain;
}

.news-card__text {
  font-size: var(--font-size-lg);
  line-height: 26px;
  transition: all 0.5s;
}

.arrow__container {
  position: absolute;
  width: 100%;
  height: 30px;
  top: 118px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.slide-arrow {
  position: absolute;
  width: 30px;
  height: 50px;
  background-color: var(--color-primary);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.slide-arrow.prev-arrow {
  left: 0;
}

.slide-arrow.prev-arrow img {
  rotate: 90deg;
  width: 10px;
  height: 5.74px;
}

.slide-arrow.next-arrow {
  right: 0;
}

.slide-arrow.next-arrow img {
  rotate: -90deg;
  width: 10px;
  height: 5.74px;
}

@media (min-width: 376px) and (max-width: 767px) {
  .brand-news__slider .slick-list {
    padding: 0 calc((100vw - 300px) / 2) !important;
  }

  .brand-news__slider .slick-track {
    margin-left: 0 !important;
  }
}

@media (min-width: 1200px) {

  /* Brand News Slider */
  .brand-news__slider-container {
    margin-bottom: 100px;
  }

  .brand-news__slider {
    margin: 0 -25px;
    margin-bottom: 78px;
  }

  .brand-news__slider .news-card {
    margin: 0 25px;
    width: 300px;
    flex-shrink: 0;
    display: inline-block;
  }

  .arrow__container {
    top: 121px;
    max-width: 1260px;
    margin: auto;
  }
}

/* Photo Carousel */
.photo-carousel__container {
  padding: 0;
  overflow-x: hidden;
}

.photo-carousel {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 100vw;
}

/* CSS無限スクロール用のtrack */
.carousel-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: scrollX var(--scroll-duration, 40s) linear infinite;
  animation-play-state: paused;
}

.carousel-track.is-ready {
  animation-play-state: running;
}

@keyframes scrollX {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--scroll-distance)));
  }
}

.carousel-track .carousel-item {
  margin: 0 10px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 30px;
  flex-shrink: 0;
  width: 310px;
  transition: all 0.3s ease;
}

.carousel-track .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SP時の段違い効果（小さめ） */
.carousel-track .carousel-item:nth-child(even) {
  margin-top: 0;
  margin-bottom: 40px;
}

.carousel-track .carousel-item:nth-child(odd) {
  margin-top: 40px;
  margin-bottom: 0;
}

/* Brand Introduction */
.brand-list {
  padding-top: 40px;
  padding-bottom: 60px;
}

.brand-list__title {
  margin-bottom: 49px;
}

.brand-list__pc {
  display: none;
}

.brand-list__1 {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.brand-list__item.brand-palemo {
  width: 155px;
}

.brand-list__item.brand-ludic {
  width: 156px;
}

.brand-list__item.brand-rejsupure {
  width: 133.46px;
}

.brand-list__item.brand-noemie {
  width: 156px;
}

.brand-list__item.brand-harenohi {
  width: 187.68px;
}

.brand-list__item.brand-illusie {
  width: 127px;
}

.brand-list__item.brand-incense {
  width: 155.1px;
}

.brand-list__item.brand-lilou {
  width: 104px;
}

.brand-list__item.brand-daisy {
  width: 104px;
}

.brand-list__item.brand-forest {
  width: 105.71px;
}

.brand-list__item.brand-recherie {
  width: 70px;
}

.brand-list__item.brand-dosch {
  width: 70px;
}

.brand-list__item.brand-galfit {
  width: 70px;
}

.brand-list__item.brand-suzutan {
  width: 70px;
}

.brand-list__2 {
  display: flex;
  gap: 38.5px;
  justify-content: center;
  align-items: center;
  margin-bottom: 31.3px;
}

.brand-list__3 {
  display: flex;
  gap: 14.3px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.brand-list__4 {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 32px;
}

.brand-list__5 {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-bottom: 13px;
}

.brand-list__6 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.brand-list__item {
  text-align: center;
}

.brand-logo {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.brand-logo img {
  width: 100%;
  height: auto;
}

/* PC版のレイアウト */
@media (min-width: 768px) {
  .brand-list {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .brand-list__title {
    margin-bottom: 80px;
  }

  .brand-list__pc {
    display: none;
  }

  .brand-list__sp {
    display: none;
  }

  .brand-list__pc {
    display: block;
  }

  .brand-list__1 {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }

  .brand-list__item.brand-palemo {
    width: 260px;
    margin-right: 89px;
  }

  .brand-list__item.brand-ludic {
    width: 234px;
    margin-right: 91px;
  }

  .brand-list__item.brand-rejsupure {
    width: 197.6px;
  }

  .brand-list__item.brand-noemie {
    width: 234px;
    margin-right: 59px;
  }

  .brand-list__item.brand-harenohi {
    width: 279.68px;
    margin-right: 49.3px;
  }

  .brand-list__item.brand-illusie {
    width: 234px;
    margin-right: 35px;
  }

  .brand-list__item.brand-incense {
    width: 233.1px;
  }

  .brand-list__item.brand-lilou {
    width: 130px;
  }

  .brand-list__item.brand-daisy {
    width: 130px;
  }

  .brand-list__item.brand-forest {
    width: 130px;
  }

  .brand-list__item.brand-recherie {
    width: 130px;
  }

  .brand-list__item.brand-dosch {
    width: 130px;
  }

  .brand-list__item.brand-galfit {
    width: 130px;
  }

  .brand-list__item.brand-suzutan {
    width: 130px;
  }

  .brand-list__2 {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    margin-bottom: 93px;
  }

  .brand-list__3 {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }
}

/* Shop List */
.shop-list {
  padding-top: 40px;
  padding-bottom: 50.1px;
  background-color: var(--color-white);
}

.shop-list__title {
  margin-bottom: 22px;
}

.shop-list__content {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.shop-list__image {
  margin: auto;
}

.shop-list__image img {
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
}

.shop-list__area {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}

/* WebP Support - Shop List Background */
.webp-support .shop-list__area {
  background-image: url("../images/home/shop_list/shop_list_bg.webp");
}

/* No WebP Support - Shop List Background */
.no-webp-support .shop-list__area {
  background-image: url("../images/home/shop_list/shop_list_bg.png");
}

.area__title {
  text-align: center;
  font-size: var(--font-size-3xl);
  font-family: "Zen Maru Gothic";
  margin-bottom: 27px;
}

.area__text {
  text-align: center;
  margin-bottom: 41px;
  font-size: var(--font-size-base);
  line-height: 30px;
}

.area__select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../images/home/shop_list/area_select.svg");
  background-repeat: no-repeat;
  background-size: 10px 5.74px;
  background-position: right 20px center;
  width: 250px;
  height: 50px;
  border: solid 1px #cccccc;
  padding-left: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: var(--font-size-base);
  background-color: var(--color-white);
  margin: auto;
  margin-bottom: 30px;
  cursor: pointer;
}

.area__button {
  width: 200px;
  height: 45px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10.5px;
  font-size: var(--font-size-base);
  font-family: "Zen Maru Gothic";
  background-color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  margin: auto;
  transition: all 0.5s;
  cursor: pointer;
}

.area__button:hover {
  transform: scale(1.05);
}

.area__button img {
  width: 14.48px;
  height: 15px;
}

@media (min-width: 768px) {

  /* Shop List */
  .shop-list {
    padding-top: 60px;
    padding-bottom: 64.7px;
  }
}

@media (min-width: 1200px) {
  .shop-list__title {
    margin-bottom: 0px;
  }

  .shop-list__content {
    flex-direction: row;
    row-gap: 0;
    align-items: center;
    justify-content: center;
    column-gap: 29px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .shop-list__image {
    width: 500px;
    height: 300px;
  }

  .shop-list__area {
    background-position: center;
    width: 665.95px;
    height: 503.34px;
    padding-top: 106px;
  }

  .area__text {
    margin-bottom: 31px;
  }

  .area__text br {
    display: none;
  }
}

.palemo-store-online {
  margin-top: 100px;
  margin-bottom: 50px;
}

.palemo-store-online a {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.palemo-store-online a img {
  transition: all 0.5s;
}

.palemo-store-online a img:hover {
  transform: scale(1.025);
}

/* Recruit */
.recruit {
  background-color: var(--color-bg);
  padding-top: 82px;
  padding-bottom: 63.1px;
}

.recruit__content {
  position: relative;
}

.recruit__title {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  top: -32px;
  font-size: var(--font-size-4xl);
  font-family: "Zen Maru Gothic";
}

.recruit__image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: bottom center;
  margin-bottom: 26.9px;
  border-radius: 10px;
}

.recruit__text {
  font-size: var(--font-size-base);
  line-height: 30px;
  text-align: center;
}

.recruit__text._pc {
  display: none;
}

@media (min-width: 768px) {

  .palemo-store-online {
    margin-top: 150px;
    margin-bottom: 50px;
  }

  /* Recruit */
  .recruit {
    padding-top: 124px;
    padding-bottom: 90px;
  }

  .recruit__title {
    position: relative;
    font-size: var(--font-size-5xl);
  }

  .recruit__image {
    width: 100%;
    height: 670px;
    object-fit: cover;
    object-position: bottom center;
    margin-bottom: 0;
    border-radius: 30px;
  }

  .recruit__text._pc {
    display: block;
    margin-bottom: 30px;
  }

  .recruit__text._sp {
    display: none;
  }

  .recruit__text br {
    display: none;
  }
}

/* News */
.news {
  padding-top: 40px;
  padding-bottom: 33px;
  background-color: var(--color-white);
}

.news__title {
  text-align: center;
  font-size: var(--font-size-4xl);
  margin-bottom: 34px;
}

.news__list {
  margin-bottom: 40px;
}

.news__item {
  border-top: solid 1px #cccccc;
}

.news__link {
  display: flex;
  flex-direction: column;
  row-gap: 10.5px;
  padding-top: 25.5px;
  padding-bottom: 30px;
}

.news__link time {
  font-size: var(--font-size-xs);
}

.news__text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: 26px;
}

.news__item:last-of-type {
  border-bottom: solid 1px #cccccc;
}

@media (min-width: 768px) {

  /* News */
  .news {
    padding-top: 70px;
    padding-bottom: 64px;
  }

  .news__title {
    font-size: var(--font-size-5xl);
    margin-bottom: 38.5px;
  }

  .news__list {
    margin-bottom: 40.5px;
    max-width: 950px;
    margin-right: auto;
    margin-left: auto;
  }

  .news__link {
    flex-direction: row;
    align-items: center;
    row-gap: 0;
    column-gap: 52px;
    padding-top: 26.5px;
    padding-bottom: 27.5px;
    padding-left: 16px;
    transition: all 0.5s;
  }

  .news__link:hover {
    color: var(--color-primary);
  }
}

/* Footer */
.footer {
  padding-top: 60px;
  padding-bottom: 16px;
  background-color: var(--color-bg);
  position: relative;
}

.footer.page-footer {
  padding-top: 0;
}

.page-footer .footer__top {
  padding-top: 20px;
}

.page-footer .breadcrumb {
  width: 92%;
  margin-bottom: 40px;
  margin-right: auto;
  margin-left: auto;
}

.footer__hld {
  width: 345px;
  height: 140px;
  margin-right: auto;
  margin-left: auto;
  background-color: var(--color-white);
  border: solid 1px #cccccc;
  padding-top: 20px;
  padding-left: 11px;
  padding-right: 11px;
  padding-bottom: 8px;
  margin-bottom: 60px;
  display: block;
  cursor: pointer;
  transition: all 0.5s;
}

.footer__hld:hover {
  opacity: 0.7;
}

.footer__hld img {
  width: 322px;
  height: 112px;
  object-fit: contain;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  row-gap: 46px;
}

.footer__logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: auto;
  transition: all 0.5s;
}

.footer__logo a:hover {
  opacity: 0.7;
}

.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 9px;
  margin-bottom: 51px;
}

.footer__logo img {
  width: 215.34px;
  height: 30px;
  object-fit: contain;
}

.footer__menu {
  display: none;
}

.footer__copyright,
.footer__privacy,
.footer__topic {
  display: block;
  font-size: var(--font-size-xs);
}

.footer__bottom {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column-reverse;
  gap: 5px;
  text-align: center;
  margin-top: 10px;
}

.footer__bottom--wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.top__button {
  background-color: var(--color-primary);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: var(--font-size-xs);
  color: var(--color-white);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 99;
}

.top__button img {
  width: 6.5px;
  height: 6.5px;
}

@media (min-width: 1200px) {
  .footer {
    padding-top: 0;
    padding-bottom: 31px;
    background-color: var(--color-white);
    position: relative;
  }

  .footer__top {
    width: 100%;
    background-color: var(--color-bg);
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .footer.page-footer {
    padding-top: 0;
  }

  .page-footer .footer__top {
    padding-top: 30.5px;
  }

  .page-footer .breadcrumb {
    width: 1200px;
    margin-bottom: 69.5px;
  }

  .footer__hld {
    width: 800px;
    height: 110px;
    margin-right: auto;
    margin-left: auto;
    background-color: var(--color-white);
    border: solid 1px #cccccc;
    padding-top: 25px;
    padding-left: 155px;
    padding-right: 155px;
    padding-bottom: 25px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer__hld img {
    width: 490px;
    height: 60px;
    object-fit: contain;
  }

  .footer__content {
    background-color: var(--color-white);
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 57px;
    display: flex;
    column-gap: 75.6px;
  }

  .footer__nav {
    row-gap: 57px;
  }

  .footer__list {
    display: flex;
    column-gap: 90px;
  }

  .footer__link {
    color: var(--color-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    transition: all 0.5s;
  }

  .footer__link:hover {
    opacity: 0.7;
  }

  .footer__list--sub {
    display: flex;
    flex-direction: column;
    margin-top: 34px;
    row-gap: 10px;
  }

  .footer__link--sub {
    transition: all 0.5s;
  }

  .footer__link--sub:hover {
    color: var(--color-primary);
  }

  .footer__social {
    margin-bottom: 0;
  }

  .footer__logo img {
    width: 258.4px;
    height: 36px;
    object-fit: contain;
  }

  .footer__menu {
    display: flex;
  }

  .footer__bottom {
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    margin-top: 20px;
  }

  .footer__privacy,
  .footer__topic {
    transition: all .5s;
  }

  .footer__privacy:hover,
  .footer__topic:hover {
    opacity: 0.7;
    color: var(--color-primary);
  }

  .top__button {
    width: 80px;
    height: 80px;
    letter-spacing: 0.04em;
    row-gap: 10px;
    padding-top: 22.3px;
    padding-bottom: 10px;
    transition: all 0.5s;
  }

  .top__button:hover {
    opacity: 0.7;
  }

  .top__button img {
    width: 28.56px;
    height: 15.56px;
  }

  .footer__bottom--wrap {
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: var(--font-size-sm);
}

.breadcrumb ol {
  display: flex;
  gap: 11.7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__link {
  display: inline-flex;
  align-items: center;
  color: #606060;
  text-decoration: none;
}

.breadcrumb__link:hover {
  opacity: 0.7;
}

.breadcrumb__current {
  color: #606060;
}

.breadcrumb__item+.breadcrumb__item::before {
  content: url("../images/common/breadcrumb_arrow.svg");
  width: 5.71px;
  height: auto;
  margin-right: 9.7px;
}