@charset "UTF-8";
body {
  font-family: "maru-maru-gothic-blr-stdn";
  color: #6a6a6a;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
}

html.is-drawer-open {
  overflow: hidden;
}

body.is-drawer-open {
  overflow: hidden;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
}

.btn-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  width: 300px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 9999px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  color: #6a6a6a;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.btn-more__content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-more__icon {
  width: 36px;
  height: 36px;
}

.btn-more__text {
  letter-spacing: 0.8px;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

h1 {
  opacity: 0;
}

/* ========================================
   Header & Drawer
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  top: -95px;
  z-index: 100;
  transition: top 0.6s ease-in-out;
}
@media screen and (min-width: 821px) {
  .header {
    opacity: 0.9;
  }
}

.header.is-visible {
  top: 0;
}

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

.header__logo {
  position: relative;
  z-index: 100;
}

/* --- Mobile Icons (Default) --- */
.header__icons {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 100;
}

.cart-btn {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.cart-btn img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.drawer__icon {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  transition: all 0.3s linear;
  z-index: 101;
  cursor: pointer;
}
.drawer__icon .drawer__icon-bar {
  position: absolute;
  width: 30px;
  height: 1.5px;
  left: 0;
  background-color: #a3a3a3;
  transition: all 0.3s ease-in-out;
}
.drawer__icon .drawer__icon-bar:nth-child(1) {
  top: 6px;
}
.drawer__icon .drawer__icon-bar:nth-child(2) {
  top: 15px;
}
.drawer__icon .drawer__icon-bar:nth-child(3) {
  top: 23px;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-child(2) {
  opacity: 0;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 14px;
}

/* --- Navigation Drawer (Mobile) --- */
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 780px;
  background: #fff;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header__nav.is-checked {
  opacity: 1;
  pointer-events: auto;
}

.header__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 300px;
}

.header__item {
  width: 100%;
  text-align: center;
  padding: 0;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  opacity: 0;
  filter: blur(4px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, filter 0.4s ease-out;
}
.header__item a {
  display: block;
  padding: 36px 0;
  color: #6a6a6a;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.3s;
}
.header__item a:hover {
  opacity: 0.5;
}

.header__nav.is-checked .header__item {
  /* 表示状態: 不透明で、定位置に戻り、ブラーが解除される */
  opacity: 1;
  filter: blur(0);
}

.header__item:first-child {
  border-top: 1px solid #e0e0e0;
}

/* --- PC Button (Hidden on Mobile) --- */
.header__btn-wrapper--pc {
  display: none;
}

/* ========================================
     PC Styles (821px and up)
       ======================================== */
@media screen and (min-width: 821px) {
  .header__inner {
    padding: 0 40px;
    justify-content: space-between;
  }
  .header__logo {
    flex-shrink: 0;
  }
  .header__icons {
    display: none;
  }
  .header__nav {
    position: static;
    height: auto;
    width: auto;
    background: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    flex-direction: row;
    align-items: center;
    flex-grow: 1;
  }
  .header__list {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    max-width: none;
    width: 100%;
  }
  .header__item {
    width: auto;
    border: none;
    opacity: 1;
    filter: none;
  }
  .header__item a {
    padding: 0;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    white-space: nowrap;
    color: #6a6a6a;
  }
  .header__item:first-child {
    border-top: none;
  }
  .header__btn-wrapper--pc {
    display: block;
  }
  .btn-more--header {
    width: 240px;
    height: 60px;
    padding: 0 24px;
    flex-shrink: 0;
  }
  .btn-more--header .btn-more__content {
    gap: 10px;
  }
  .btn-more--header .btn-more__icon {
    width: 20px;
    height: 20px;
  }
  .btn-more--header .btn-more__text {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  .btn-more--header .news-card__arrow {
    width: 30px;
  }
}
/* ========================================
     fv
     ======================================== */
.fv {
  margin-top: -40px;
  background-image: url(image/t_pc_image_fv.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1080px) {
  .fv {
    background-image: url(image/t_pc_image_fv.jpg);
    background-size: cover;
    background-position: 75% 50%;
  }
}

.fv__logo {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (min-width: 1080px) {
  .fv__logo {
    left: 20%;
    top: 45%;
  }
}

.news__inner {
  padding: 50px 15px 70px 15px;
}
@media screen and (min-width: 821px) {
  .news__inner {
    padding: 110px 15px 220px 15px;
  }
}

.news__title {
  text-align: center;
  font-weight: 400;
  letter-spacing: 1px;
  color: #a3a3a3;
  padding-bottom: 30px;
}
@media screen and (min-width: 821px) {
  .news__title {
    padding-bottom: 40px;
  }
}

.news__card__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (min-width: 821px) {
  .news__card__container {
    padding-bottom: 50px;
  }
}

.news-card {
  display: block;
  padding: 24px 30px;
  background-color: #f7f7f7;
  border-radius: 20px;
  position: relative;
  transition: background-color 0.3s;
}
.news-card:hover {
  background-color: #ededed;
}
@media screen and (min-width: 821px) {
  .news-card {
    border-radius: 99px;
  }
}

.news-card__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 821px) {
  .news-card__content {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
}

.news-card__date {
  font-size: 14px;
}

.news-card__title {
  width: 90%;
}
@media screen and (min-width: 821px) {
  .news-card__title {
    width: 100%;
  }
}

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

.news-card__arrow {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 1px;
  margin-top: 5.2px;
  border-radius: 9999px;
  background-color: #a3a3a3;
  margin-bottom: 5px;
}

.news-card__arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #a3a3a3;
  transform: rotate(35deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

/*アバウトーーーーーーーーーーーーーーーーーーー*/
.about {
  overflow: hidden;
}

.about__inner {
  padding: 0 35px 173px;
  max-width: 1100px;
}
@media screen and (min-width: 821px) {
  .about__inner {
    padding-bottom: 300px;
  }
}

.about__content {
  position: relative;
  z-index: 2;
  padding-top: 300px;
}
@media screen and (min-width: 821px) {
  .about__content {
    padding-top: 100px;
  }
}

.about__image-wrapper {
  position: absolute;
  right: 0%;
  z-index: 1;
}
@media screen and (min-width: 821px) {
  .about__image-wrapper {
    right: -20%;
  }
}

.about__label {
  font-size: 20px;
  color: #a3a3a3;
  padding-bottom: 90px;
}

.about__title {
  color: #6a6a6a;
  line-height: 1.7;
  letter-spacing: 1.5px;
  font-size: 28px;
  padding-bottom: 80px;
  font-weight: 400;
}
@media screen and (min-width: 1080px) {
  .about__title {
    font-size: 40px;
  }
}

.about__text {
  line-height: 2.1;
  letter-spacing: 0.8px;
  padding-bottom: 80px;
}

@media screen and (min-width: 1080px) {
  .br-none {
    display: none;
  }
}

@media screen and (min-width: 821px) {
  .about__btn-wrapper {
    justify-content: flex-start;
  }
}

.about__inner {
  position: relative;
}

.about__content {
  position: relative;
  z-index: 2;
}

.about__image-wrapper {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 821px) {
  .about__image-wrapper {
    right: -20%;
    overflow: hidden;
  }
}
@media screen and (min-width: 1080px) {
  .about__image-wrapper {
    right: 0;
  }
}

.section__background {
  background: #f7f7f7;
}

.services__inner {
  position: relative;
  padding: 0 35px;
}

.services__content {
  position: relative;
  z-index: 2;
  padding-top: 200px;
}

.services__image-wrapper {
  position: absolute;
  top: -100px;
  left: 0%;
  z-index: 1;
}

.services__label {
  font-size: 20px;
  color: #a3a3a3;
  padding-bottom: 90px;
  text-align: right;
  font-weight: 400;
}

.services__title {
  color: #6a6a6a;
  line-height: 1.7;
  letter-spacing: 1.5px;
  font-size: 28px;
  padding-bottom: 80px;
  font-weight: 400;
}
@media screen and (min-width: 821px) {
  .services__title {
    text-align: right;
  }
}

.services__text {
  line-height: 2.1;
  letter-spacing: 0.8px;
  padding-bottom: 80px;
}
@media screen and (min-width: 821px) {
  .services__text {
    text-align: right;
  }
}

.services__btn-wrapper {
  padding-bottom: 80px;
}
@media screen and (min-width: 821px) {
  .services__btn-wrapper {
    justify-content: flex-end;
  }
}

.services__detail {
  padding: 0 15px;
}

.services__detail__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 30px 0 30px;
  border-radius: 20px 20px 0 0;
  background: #fff;
  max-width: 1400px;
}
@media screen and (min-width: 821px) {
  .services__detail__inner {
    padding: 100px 150px 0 150px;
  }
}

.services__detail__wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .services__detail__bg {
    display: flex;
    gap: 60px;
  }
}

.services__detail__content {
  padding-bottom: 80px;
}
@media screen and (min-width: 821px) {
  .services__detail__content {
    padding-bottom: 100px;
  }
}

.services__detail__number {
  text-align: center;
  color: #a3a3a3;
  padding-bottom: 20px;
}

.services__detail__title {
  color: #6a6a6a;
  text-align: center;
  padding-bottom: 30px;
  font-size: 20px;
  line-height: 1.7;
}
@media screen and (min-width: 821px) {
  .services__detail__title {
    padding-bottom: 60px;
  }
}

.services__detail__image {
  padding-bottom: 30px;
  text-align: center;
}

.services__detail__img {
  width: 100%;
}

.services__detail__text {
  line-height: 2.1;
  letter-spacing: 0.8px;
  padding-bottom: 40px;
}
@media screen and (min-width: 821px) {
  .services__detail__text {
    padding-bottom: 60px;
  }
}

.services__detail__btn-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact {
  background-image: url(image/t_sp_image_contact.png);
  color: #fff;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 821px) {
  .contact {
    background-image: url(image/t_pc_image_contact.png);
  }
}

.contact__inner {
  padding: 50px 0;
  text-align: center;
}
@media screen and (min-width: 821px) {
  .contact__inner {
    padding: 110px 0 119px;
  }
}

.contact__title {
  padding-bottom: 30px;
}

.contact__text {
  line-height: 2.1;
  letter-spacing: 0.8px;
  padding-bottom: 35px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: #f7f7f7;
  color: #6a6a6a;
  font-size: 14px;
  letter-spacing: 0.8px;
  border-radius: 30px 30px 0 0;
  margin: 20px 15px 0 15px;
  padding-bottom: 40px;
}
@media screen and (min-width: 821px) {
  .footer {
    background-color: #f7f7f7;
    margin: 0;
    border-radius: 30px 30px 0 0;
    margin: 50px 50px 0 50px;
  }
}

.footer__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0 40px 0;
}
@media screen and (min-width: 821px) {
  .footer__inner {
    padding: 108px 30px 40px;
  }
}
@media screen and (min-width: 1080px) {
  .footer__inner {
    padding: 108px 0 40px 0;
  }
}

/* --- SP Styles (Default) --- */
.footer__top,
.footer__divider {
  display: none;
}

.footer__logo--sp {
  margin-bottom: 40px;
  text-align: center;
}
.footer__logo--sp img {
  width: 120px;
}

.footer__bottom .btn-wrapper {
  margin-bottom: 30px;
}

.footer__shop-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  text-align: center;
}
.footer__shop-links a {
  display: inline-block;
  color: #6a6a6a;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
  transition: opacity 0.3s;
}
.footer__shop-links a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 821px) {
  .footer__shop-links a {
    padding-bottom: 3px;
  }
}

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

.footer__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #a3a3a3;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer__icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.footer__icon img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__icon.footer__icon--ramu span {
  font-size: 12px;
  margin-top: 4px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 1px;
}

.footer__copyright {
  text-align: center;
  font-size: 12px;
  color: #a3a3a3;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0.5px;
  margin-top: 40px;
}

/* --- Tablet & PC Styles --- */
@media screen and (min-width: 821px) {
  .footer__logo--sp {
    display: none;
  }
  /* 上段レイアウト */
  .footer__top {
    display: grid;
    grid-template-columns: auto 89px 1fr 1fr 1.5fr;
    gap: 30px;
    text-align: left;
  }
  .footer__logo img {
    width: 170px;
    height: 193px;
  }
  .footer__logo .footer__brand-name {
    display: block;
    font-size: 24px;
    letter-spacing: 0.2em;
    font-weight: 300;
    margin: 8px 0 5px;
    color: #666;
  }
  .footer__logo .footer__brand-subtitle {
    display: block;
    font-size: 9px;
    letter-spacing: 0.1em;
    margin: 0;
  }
  .footer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .footer__nav a {
    color: #6a6a6a;
    font-size: 20px;
    text-transform: uppercase;
  }
  .footer__nav a:hover {
    opacity: 0.7;
  }
  .footer__logo {
    grid-column: 1/2;
  }
  .footer__nav--1 {
    grid-column: 3/4;
  }
  .footer__nav--2 {
    grid-column: 4/5;
  }
  .footer__nav--3 {
    grid-column: 5/6;
  }
  .footer__sub-item a {
    text-transform: none;
    font-size: 13px;
  }
}
@media screen and (min-width: 821px) {
  .footer__divider {
    display: block;
    border: none;
    border-top: 1px solid #a3a3a3;
    max-width: 1000px;
    margin: 40px auto;
    margin-bottom: 75px;
    width: calc(100% - 60px);
  }
}

/* 下段レイアウト */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 821px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
@media screen and (min-width: 1080px) {
  .footer__bottom {
    padding: 0;
  }
}

@media screen and (min-width: 821px) {
  .footer__left-group {
    display: flex;
    align-items: center;
  }
  .footer__left-group .btn-wrapper {
    margin-right: 50px;
    margin-bottom: 0;
    width: auto;
  }
  .footer__left-group .footer__shop-links {
    margin: 0;
  }
}
.footer__bottom .btn-wrapper {
  margin: 0;
  width: auto;
}
@media screen and (min-width: 821px) {
  .footer__bottom .btn-wrapper {
    margin-right: 0;
    margin-bottom: 0;
    width: auto;
  }
}

.footer__shop-links {
  margin-top: 25px;
}
@media screen and (min-width: 821px) {
  .footer__shop-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.footer__shop-links a {
  border-bottom: 1px solid #ccc;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 821px) {
  .footer__left-group .footer__shop-links {
    margin: 0 0 0 20px;
  }
}
@media screen and (min-width: 1080px) {
  .footer__left-group .footer__shop-links {
    margin-left: 73px;
  }
}

.footer__social-icons {
  margin: 0;
  gap: 15px;
}

.footer__copyright {
  margin-top: 50px;
  text-align: center;
}

.news-card__arrow {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 1px;
  margin-top: 5.2px;
  border-radius: 9999px;
  background-color: #a3a3a3;
  margin-bottom: 5px;
}

.news-card__arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #a3a3a3;
  transform: rotate(35deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

@media screen and (min-width: 821px) {
  .footer__nav--3 ul {
    gap: 20px;
  }
}/*# sourceMappingURL=style.css.map */