@charset "UTF-8";
/******
共通
******/
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

:root {
  /*カラー*/
  --color-white: #FFFFFF;
  --color-black1: #000000;
  --color-black2: #515151;
  --color-black3: #555555;
  --color-grey1: #F9F9F9;
  --color-grey2: #939393;
  --color-grey3: #C3C3C3;
  --color-green: #11AD76;
  /*フォントサイズ*/
  --font-size-base: 0.9375rem;
  --font-size-sm: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
  --font-size-xxxl: 1.875rem;
  /*フォントファミリー*/
  --font-family-base: "Zen Kaku Gothic New", sans-serif;
  --font-family-en: "Afacad", sans-serif;
  /*パディング*/
  --inner-padding: 15px;
  --header-height: 50px;
}
@media screen and (min-width: 768px) {
  :root {
    --inner-padding: 50px;
    --font-size-sm: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.75rem;
    --font-size-xxxl: 2.25rem;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --header-height: 120px;
  }
}

html {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 375px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 100%;
  }
}

body {
  font-size: var(--font-size-base);
  line-height: 1.8;
  font-family: var(--font-family-base);
  color: var(--color-black2);
}
@media screen and (min-width: 768px) {
  body {
    line-height: 2;
  }
}

/******
パーツ
******/
.c-heading-2 {
  font-size: var(--font-size-xxxl);
  letter-spacing: 0.2em;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--font-family-en);
  text-transform: uppercase;
}

.c-heading-3 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.c-heading-3-2 {
  --weight: 500;
  font-size: var(--font-size-xl);
  font-weight: var(--weight);
  line-height: 1.8;
}

.c-heading-3-2--bold {
  --weight: 700;
}

.c-heading-4 {
  font-size: var(--font-size-xxl);
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--font-family-en);
  letter-spacing: 0.2em;
}

.c-button {
  --width: min(100%, 400px);
  --height: 90px;
  --color: var(--color-black1);
  --border: var(--color-black1);
  position: relative;
  overflow: hidden;
  width: var(--width);
  height: var(--height);
  border: 1px solid var(--color-grey3);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  transition: all 0.2s linear;
}
.c-button__text {
  z-index: 2;
  position: relative;
  color: var(--color);
  letter-spacing: 0.3em;
}
.c-button__icon {
  z-index: 2;
  width: 0.7em;
  aspect-ratio: 1;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  rotate: 45deg;
  position: absolute;
  top: 50%;
  right: 10%;
  translate: 0 -50%;
}
.c-button::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  border-right: 50px solid transparent;
  border-bottom: var(--height) solid var(--color-black3);
  transform: translateX(-100%);
  transition: all 0.3s ease-out;
}

.c-button__text--upper {
  text-transform: uppercase;
}

.c-button__text--capital {
  text-transform: capitalize;
}

@media screen and (min-width: 1024px) {
  .c-button:hover {
    --color: var(--color-white);
    --border: var(--color-white);
  }
}
@media screen and (min-width: 1024px) {
  .c-button:hover::before {
    transform: translateX(0%);
  }
}

.u-only-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none;
  }
}

.u-only-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-only-pc {
    display: block;
  }
}

/******
ヘッダー
******/
.l-header {
  --opacity: 1;
  z-index: 999;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb( 255 255 255 / var(--opacity));
}

.l-header .l-container {
  --width: 100%;
  height: var(--header-height);
  padding: 0 0 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .l-header .l-container {
    padding: 0 40px 0 50px;
  }

  .l-header {
    --opacity: 0;
    transition: background-color 0.2s ease-out;
  }

  .l-header.is-active{
    --opacity: .9;
  }
}

.l-header__logo {
  display: block;
  width: 38px;
}
@media screen and (min-width: 1024px) {
  .l-header__logo {
    width: 100px;
  }
}
.l-header__logo img {
  display: block;
  width: 80%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-header__menu {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .l-header__menu {
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__menu {
    gap: 40px;
  }
}

.l-header__menu-main {
  padding: 30px 40px 100px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: 0.2s ease-out;
  position: absolute;
  top: var(--header-height);
  right: 0;
  background-color: var(--color-black1);
  width: 100%;
  overflow: scroll;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 600px) {
  .l-header__menu-main {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__menu-main {
    overflow: visible;
    min-height: auto;
    height: initial;
    flex-direction: column-reverse;
    gap: 10px;
    padding: 0;
    width: initial;
    position: static;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
  }
}
.l-header__menu-main.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}

.l-header__menu-main-items {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .l-header__menu-main-items {
    gap: 25px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__menu-main-items {
    gap: 30px;
  }
}
.l-header__menu-main-items a {
  position: relative;
  display: block;
  padding: 20px 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
}
@media screen and (min-width: 1024px) {
  .l-header__menu-main-items a {
    padding: 2px 0;
    color: var(--color-black1);
  }
}
.l-header__menu-main-items a::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-black2);
  scale: 0 1;
  transition: scale 0.2s ease-out;
  transform-origin: center center;
}
@media screen and (min-width: 1024px) {
  .l-header__menu-main-items a:hover::before {
    scale: 1 1;
  }
}

.l-header__menu-sns {
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .l-header__menu-sns {
    justify-content: flex-end;
  }
}
.l-header__menu-sns a {
  display: block;
  width: 24px;
  transition: filter 0.3s ease-out;
}
.l-header__menu-sns a img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-header__menu-sns a:hover {
    filter: opacity(0.8);
  }
}

.l-header__online-button {
  --width: 50px;
  --height: 50px;
  background-color: var(--color-black3);
  width: var(--width);
  height: var(--height);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-black3);
}
@media screen and (min-width: 1024px) {
  .l-header__online-button {
    --width: 240px;
    --height: 70px;
  }
}
.l-header__online-button img {
  display: block;
  width: 30%;
}
@media screen and (min-width: 1024px) {
  .l-header__online-button img {
    display: none;
  }
}
.l-header__online-button span {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__online-button span {
    color: #fff;
    z-index: 2;
    position: relative;
    font-family: var(--font-family-en);
    font-weight: 400;
    letter-spacing: 0.3em;
    display: inline-block;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__online-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-bottom: var(--height) solid var(--color-white);
    border-right: 50px solid transparent;
    width: 100%;
    transition: transform 0.2s ease-out;
    transform: translateX(-100%);
  }
}
@media screen and (min-width: 1024px) {
  .l-header__online-button:hover span {
    color: var(--color-black3);
  }
}
@media screen and (min-width: 1024px) {
  .l-header__online-button:hover::before {
    transform: translateX(0%);
  }
}

.c-hamburger {
  border: none;
  background-color: var(--color-black1);
  width: 50px;
  aspect-ratio: 1;
  display: block;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger span {
  --space: 5px;
  background-color: var(--color-white);
  height: 1px;
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.2s ease-out;
}
.c-hamburger span:nth-of-type(1) {
  translate: -50% calc(-50% - var(--space));
}
.c-hamburger span:nth-of-type(2) {
  translate: -50% -50%;
}
.c-hamburger span:nth-of-type(3) {
  translate: -50% calc(-50% + var(--space));
}

.c-hamburger.is-active span:nth-of-type(1) {
  translate: -50% -50%;
  rotate: 30deg;
}
.c-hamburger.is-active span:nth-of-type(2) {
  translate: -50% -50%;
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  translate: -50% -50%;
  rotate: -30deg;
}

/******
コンテナ
******/
.l-sitewrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-main {
  margin-top: var(--header-height);
  flex: 1;
}

.l-container {
  --width: min(100% - var(--inner-padding) * 2, 1100px);
  width: var(--width);
  margin-inline: auto;
}

.l-section {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .l-section {
    margin-bottom: 100px;
  }
}

.p-service, .p-product, .p-brand {
  padding-top: 60px;
  background-color: var(--color-grey1);
}
@media screen and (min-width: 768px) {
  .p-service, .p-product, .p-brand {
    padding-top: 100px;
  }
}

/******
セクション hero
******/
.p-hero {
  position: relative;
  overflow-x: clip;
}

@media screen and (min-width: 1024px) {
  .p-hero {
    padding-top: 30px;
    padding-bottom: 105px;
  }
}

.p-hero__inner{
  width: min(100%, 1310px);
  margin-inline: auto;
  position: relative;
}

.p-hero__bg{
  width: 100%;
  aspect-ratio: 1310 / 640;
  min-height: 530px;
  object-fit: cover;
  object-position: center bottom;
  height: auto;
  vertical-align: middle;
}


@media screen and (min-width: 768px) {
  .p-hero::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    background-color: var(--color-grey1);
    z-index: -1;
    width: calc(50% + 524px);
    height: calc(100% + var(--header-height));
  }
}

.p-hero__heading {
  margin-bottom: 1em;
  font-size: 1.375rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-hero__heading {
    font-size: 1.5rem;
  }
}

.p-hero__text {
  position: absolute;
  top: 80px;
  left: var(--inner-padding);
  width: calc( 100% - var(--inner-padding) * 2);
}
@media screen and (min-width: 768px) {
  .p-hero__text {
    top: 50%;
    transform: translate(0, -75%);
  }
}

/******
セクション about
******/
@media screen and (min-width: 768px) {
  .p-about__container.l-container {
    display: contents;
  }
}

.p-about__header {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .p-about__header {
    width: min(100% - var(--inner-padding) * 2, 1100px);
    margin-inline: auto;
    margin-bottom: 130px;
  }
}
.p-about__header h2 {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__header h2 {
    margin-bottom: 60px;
  }
}
.p-about__header p {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  line-height: 2;
  max-width: 500px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-about__header p {
    margin-bottom: 0px;
    line-height: 3;
    text-align: center;
    max-width: none;
  }
}
.p-about__header img {
  display: block;
  width: 100px;
  height: auto;
  margin-inline-start: auto;
}
@media screen and (min-width: 768px) {
  .p-about__header img {
    width: min(16.9166666667vw, 203px);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    translate: 0 50%;
  }
}

.p-about__content {
  width: min(100%, 500px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-about__content {
    width: min(100%, 1310px);
    gap: 0px;
  }
}

.p-about__content-item {
  --areas: "image" "text" ;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: var(--areas);
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-about__content-item {
    align-items: center;
    gap: 70px;
  }
}

@media screen and (min-width: 768px) {
  .p-about__content-item:nth-child(odd) {
    --areas: "image text";
    grid-template-columns: 41.9847328244% 1fr;
  }
}
@media screen and (min-width: 768px) {
  .p-about__content-item:nth-child(odd) .p-about__content-item-text {
    padding-right: 60px;
  }
}

@media screen and (min-width: 768px) {
  .p-about__content-item:nth-child(even) {
    --areas: "text image";
    grid-template-columns: 1fr 41.9847328244%;
  }
}
@media screen and (min-width: 768px) {
  .p-about__content-item:nth-child(even) .p-about__content-item-text {
    padding-left: 60px;
  }
}

.p-about__content-item-figure {
  grid-area: image;
}
.p-about__content-item-figure img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__content-item-text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__content-item-text {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/******
セクション
******/
.p-service__header h2 {
  text-align: center;
  margin-bottom: 60px;
}
.p-service__header h3 {
  margin-bottom: 50px;
}
.p-service__header h3, .p-service__header p {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-service__header h3, .p-service__header p {
    text-align: center;
    max-width: none;
  }
}

.p-service__content {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 70px;
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-service__content {
    margin-top: 115px;
    gap: 130px;
    max-width: none;
  }
}

.p-service__content-item {
  background-color: var(--color-white);
  padding: 50px 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-service__content-item {
    padding: min(7.2727272727%, 80px);
  }
}
.p-service__content-item::before {
  content: attr(data-number);
  display: block;
  width: 18.6666666667%;
  aspect-ratio: 1;
  background-color: var(--color-black3);
  color: var(--color-white);
  font-size: var(--font-size-xxl);
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-service__content-item::before {
    width: 6.3636363636%;
  }
}

.p-service__content-header {
  text-align: center;
  margin-bottom: 50px;
}
.p-service__content-header h3 {
  margin-bottom: 20px;
}

.p-service__content-item-block {
  --areas: "image" "text";
  --columns: 1fr;
  display: grid;
  grid-template-columns: var(--columns);
  grid-template-areas: var(--areas);
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-service__content-item-block {
    --columns: 1fr calc( 550 / 940 * 100%) ;
    --areas: "text image";
    gap: 70px;
  }
}

@media screen and (min-width: 768px) {
  .p-service__content-item-block.p-service__content-item-block--reverse {
    --areas: "image text";
    grid-template-columns: 58.5106382979% 1fr;
  }
}

.p-service__content-item-figure {
  grid-area: image;
}
.p-service__content-item-figure img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service__content-item-text {
  grid-area: text;
}

/******
セクション
******/
.p-brand {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-brand {
    padding-bottom: 100px;
  }
}

.p-service__button {
  margin-top: 35px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-service__button {
    margin-top: 70px;
  }
}

/******
セクション
******/
.p-product__heading,
.p-brand__heading,
.p-shop__heading,
.p-company__heading {
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .p-product__heading,
  .p-brand__heading,
  .p-shop__heading,
  .p-company__heading {
    margin-bottom: 60px;
  }
}

.p-product__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .p-product__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.p-product__content-item {
  display: flex;
  flex-direction: column;
}

.p-product__content-item-figure img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 168/134;
}
@media screen and (min-width: 600px) {
  .p-product__content-item-figure img {
    aspect-ratio: 340/272;
  }
}

.p-product__content-item-text {
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 20px 15px;
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  .p-product__content-item-text {
    padding: 40px 30px 45px;
  }
}
.p-product__content-item-text h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 600px) {
  .p-product__content-item-text h3 {
    font-size: 1.25rem;
  }
}
.p-product__content-item-text p {
  margin-bottom: 30px;
  font-size: 0.75rem;
}
@media screen and (min-width: 600px) {
  .p-product__content-item-text p {
    font-size: 0.9375rem;
  }
}

.p-product__content-item-link {
  display: block;
  margin-inline: auto;
  color: #939393;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}
@media screen and (min-width: 600px) {
  .p-product__content-item-link {
    font-size: 0.875rem;
  }
}
.p-product__content-item-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #939393;
  margin-top: 6px;
  scale: 0 1;
  transition: scale 0.2s ease-out;
  transform-origin: right;
}

@media screen and (min-width: 1024px) {
  .p-product__content-item-link:hover::after {
    transform-origin: left;
    scale: 1 1;
  }
}

/******
セクション
******/
.p-brand__container {
  --width: min(100% - var(--inner-padding) * 2, 1180px);
}

.p-brand__content-item > div {
  height: 100%;
}

.p-brand__content-item-image {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #D6D6D6;
  background-color: var(--color-white);
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 40px;
}
.p-brand__content-item-image img {
  display: block;
  width: 50%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
}

.swiper-body {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .swiper-body {
    padding: 0 40px;
  }
}

.swiper {
  overflow: hidden;
}

.swiper__next, .swiper__prev {
  --size: 10px;
  position: absolute;
  top: 50%;
  width: var(--size);
  aspect-ratio: 1;
  border-top: 1.5px solid var(--color-black2);
  border-right: 1.5px solid var(--color-black2);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .swiper__next, .swiper__prev {
    --size: 15px;
  }
}
.swiper__next::before, .swiper__prev::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  display: block;
  width: calc(var(--size) * 2.5);
  aspect-ratio: 1;
  border-radius: 50%;
}

.swiper__next {
  right: 0;
  rotate: 45deg;
  translate: -20% -50%;
}
@media screen and (min-width: 768px) {
  .swiper__next {
    translate: -50% -50%;
  }
}

.swiper__prev {
  left: 0;
  rotate: -135deg;
  translate: 20% -50%;
}
@media screen and (min-width: 768px) {
  .swiper__prev {
    translate: 50% -50%;
  }
}

/******
セクション
******/
.p-shop__header {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-shop__header {
    margin-bottom: 80px;
  }
}
.p-shop__header h3 {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .p-shop__header h3 {
    text-align: center;
  }
}
.p-shop__header p {
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .p-shop__header p {
    text-align: center;
  }
}

.p-shop__content {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-shop__content {
    margin-bottom: 100px;
    gap: 60px;
  }
}

.p-shop__content-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-shop__content-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.p-shop__content-images img {
  display: block;
  width: min(100%, 540px);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
  background-color: var(--color-grey1);
}

.p-shop__area {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-shop__area {
    flex-direction: row;
    gap: 70px;
  }
}

.p-shop__area-map {
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-shop__area-map {
    width: 57.2727272727%;
  }
}
.p-shop__area-map iframe {
  width: 100%;
  aspect-ratio: 630/595;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: aliceblue;
}

.p-shop__area-text {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-shop__area-text {
    flex: 1;
    display: block;
  }
}

.p-shop__area-text-name {
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.5;
  font-size: var(--font-size-lg);
}
.p-shop__area-text-name-en {
  font-family: var(--font-family-en);
}

@media screen and (min-width: 768px) {
  .p-shop__area-text-address {
    margin-bottom: 60px;
  }
}
.p-shop__area-text-address p {
  line-height: 2.5;
}
.p-shop__area-text-address a {
  color: var(--color-black2);
}
@media screen and (min-width: 1024px) {
  .p-shop__area-text-address a:hover {
    text-decoration: underline;
  }
}

.p-shop__area-text-tel,
.p-shop__area-text-mail {
  font-family: var(--font-family-en);
  font-weight: 400;
}

.p-shop__area-button {
  order: 99;
}

/******
セクション
******/
.p-banner {
  position: relative;
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .p-banner {
    padding: 100px 0;
  }
}
.p-banner::before, .p-banner .p-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.p-banner::before {
  z-index: 2;
  content: "";
  background-color: rgba(60, 60, 60, 0.9);
}
.p-banner .l-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-banner .l-container {
    flex-direction: row;
    align-items: flex-end;
  }
}

.p-banner__bg {
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-banner__text {
  color: #fff;
  flex: 1;
}

.p-banner__links {
  margin-inline: auto;
  padding-bottom: 20px;
  width: min(100%, 305px);
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .p-banner__links {
    margin-inline: none;
    width: 36.3636363636%;
  }
}

.p-banner__link,
.p-contact__content-tel {
  position: relative;
  overflow: hidden;
  --border: var(--color-white);
  --color: var(--color-white);
  --width: 100%;
  --height: 90px;
  width: var(--width);
  height: var(--height);
  border: 1px solid var(--border);
  color: var(--color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-banner__link,
  .p-contact__content-tel {
    --height: 120px;
  }
}
.p-banner__link::before,
.p-contact__content-tel::before {
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  border-bottom: var(--height) solid var(--color-white);
  border-right: 70px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  translate: -100% 0;
  transition: translate 0.4s ease-out;
  transform-origin: left;
}
.p-banner__link > div,
.p-contact__content-tel > div {
  position: relative;
  z-index: 2;
}

.p-contact__content-tel {
  --width: min(100%, 400px);
  --height: 100px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__content-tel {
    --height: 120px;
  }
}

@media screen and (min-width: 768px) {
  .p-banner__link:hover,
  .p-contact__content-tel:hover {
    --color: var(--color-black2);
  }
}
@media screen and (min-width: 768px) {
  .p-banner__link:hover::before,
  .p-contact__content-tel:hover::before {
    translate: 0 0;
  }
}

.p-banner__link-tel,
.p-contact__content-tel-text {
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-banner__link-tel svg,
.p-contact__content-tel-text svg {
  fill: var(--color);
}
.p-banner__link-tel div,
.p-contact__content-tel-text div {
  font-size: 1.875rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1;
}

.p-banner__link-text {
  font-size: 1.125rem;
  font-family: var(--font-family-en);
  font-weight: 400;
  letter-spacing: 0.2em;
}

.p-banner__header {
  line-height: 1;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-banner__header {
    margin-bottom: 60px;
  }
}
.p-banner__header div {
  margin-bottom: 10px;
}
.p-banner__header h2 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-banner__header h2 {
    font-size: 2.5rem;
  }
}

/******
セクション
******/
.p-company__content {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-company__content {
    margin-bottom: 100px;
    grid-template-columns: 1fr 29.0909090909%;
    gap: 60px;
  }
}

.p-company__content-text p:not(:last-child) {
  margin-bottom: 2em;
}

.p-company__content-figure {
  margin-inline: auto;
  width: min(100%, 320px);
}
.p-company__content-figure img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-company__content-header > div {
  color: var(--color-grey2);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: capitalize;
  margin-bottom: 10px;
  line-height: 1;
}

.p-company__content-header.p-company__content-header--bottom {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .p-company__content-header.p-company__content-header--bottom {
    margin-bottom: 50px;
  }
}

.p-company__dl-items {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-company__dl-items {
    gap: 80px;
  }
}

.p-company__dl-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-company__dl-item {
    flex-direction: row;
    gap: 100px;
  }
}
.p-company__dl-item > dt {
  position: relative;
  width: max(200px, 22.7272727273%);
}
.p-company__dl-item > dt::before {
  content: none;
  display: block;
  width: 5px;
  height: 100%;
  background-color: #F4F4F4;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-company__dl-item > dt::before {
    content: "";
  }
}
@media screen and (min-width: 768px) {
  .p-company__dl-item > dd {
    flex: 1;
  }
}

.p-company__dl-outline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-company__dl-outline {
    gap: 50px;
  }
}

.p-company__dl-outline-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 600px) {
  .p-company__dl-outline-item {
    flex-direction: row;
    gap: 60px;
  }
}
.p-company__dl-outline-item dt {
  width: 215px;
}
.p-company__dl-outline-item dd {
  flex: 1;
}

.p-company__bg {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/******
セクション
******/
.p-esg {
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .p-esg {
    margin-bottom: 200px;
  }
}

.p-esg__header {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-esg__header {
    margin-bottom: 80px;
  }
}
.p-esg__header h2 {
  margin-bottom: 60px;
}
.p-esg__header h2, .p-esg__header h3 {
  text-align: center;
}

.p-esg__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-esg__content {
    gap: 100px;
  }
}

.p-esg__content-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(to bottom, transparent 0px, transparent 55px, var(--color-grey1) 55.1px, var(--color-grey1) 100%);
}
@media screen and (min-width: 768px) {
  .p-esg__content-item {
    grid-template-columns: 21.8181818182% 1fr;
    background: linear-gradient(to right, transparent 0px, transparent 40px, var(--color-grey1) 40.1px, var(--color-grey1) 100%);
  }
}

.p-esg__content-item-header div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-green);
  aspect-ratio: 1;
  color: var(--color-white);
  line-height: 1;
  width: 120px;
}
@media screen and (min-width: 768px) {
  .p-esg__content-item-header div {
    width: 100%;
    translate: 0 -50px;
  }
}
.p-esg__content-item-header img {
  display: block;
  width: 20.8333333333%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-esg__content-item-header img {
    width: 25%;
  }
}
.p-esg__content-item-header h3 {
  font-family: var(--font-family-en);
  font-weight: 400;
  text-transform: capitalize;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-esg__content-item-header h3 {
    font-size: 1.5rem;
  }
}
.p-esg__content-item-header p {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-esg__content-item-header p {
    font-size: 0.9375rem;
  }
}

.p-esg__content-item-text {
  padding: 30px 20px 40px;
}
@media screen and (min-width: 768px) {
  .p-esg__content-item-text {
    padding: 80px;
  }
}
.p-esg__content-item-text p {
  font-weight: 500;
  font-size: var(--font-size-sm);
  margin-bottom: 30px;
}
.p-esg__content-item-text li {
  position: relative;
  padding-left: 1.3em;
}
.p-esg__content-item-text li::before {
  content: "";
  display: block;
  width: 4px;
  aspect-ratio: 1;
  background-color: var(--color-black2);
  border-radius: 50%;
  position: absolute;
  top: 0.9375rem;
  left: 0;
  translate: 0 -50%;
}

/******
セクション
******/
.p-contact {
  position: relative;
  padding: 60px 0 50px;
  background-color: var(--color-black3);
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding: 110px 0 100px;
  }
}

.p-contact__header {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 50px;
}
.p-contact__header h2 {
  margin-bottom: 20px;
}
.p-contact__header p {
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact__header p {
    font-size: 1rem;
  }
}

.p-contact__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(100%, 800px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.p-contact__content-line {
  transition: filter 0.3s ease-out;
  background-color: #00B900;
  width: min(100%, 400px);
  height: 100px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-contact__content-line {
    height: 120px;
  }
}
.p-contact__content-line div {
  line-height: 1.2;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__content-line div {
    font-size: 1.25rem;
  }
}
.p-contact__content-line div span {
  font-family: var(--font-family-en);
  font-size: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-contact__content-line:hover {
    filter: brightness(0.8);
  }
}

.p-contact__icon {
  position: absolute;
  top: 0;
  left: 50%;
  max-width: 100%;
  height: auto;
  translate: -50% -64%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
form
*/
.p-form__header {
  margin-bottom: 40px;
}
.p-form__header h2 {
  margin-bottom: 50px;
  text-align: center;
}
.p-form__header p {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-form__header p {
    text-align: center;
  }
}

.form-group {
  --align-items: center;
  margin-bottom: 20px;
  display: grid;
  align-items: var(--align-items);
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(100%, 1000px);
}
@media screen and (min-width: 768px) {
  .form-group {
    margin-bottom: 60px;
    gap: 30px;
    grid-template-columns: 260px 1fr;
  }
}
.form-group.form-group--start {
  --align-items: flex-start;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .form-group.form-group--start {
    margin-bottom: 70px;
  }
}
.form-group input, .form-group textarea {
  display: block;
  width: 100%;
  font-size: 0.9375rem;
  color: var(--color-black2);
  padding: 0.7em 1em;
  border: 1px solid var(--color-grey3);
  border-radius: none;
}
.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: var(--color-grey3);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--color-grey3);
}
.form-group textarea {
  min-height: 100px;
}

.form-label {
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .form-label {
    justify-content: space-between;
  }
}
.form-label .required {
  color: #fff;
  background-color: #D80000;
  width: 3.125rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-privacy-box {
  margin-bottom: 50px;
  padding: 40px;
  border: 1px solid var(--color-grey3);
  overflow-y: scroll;
  overflow-x: hidden;
  word-break: break-all;
  max-height: 440px;
}
@media screen and (min-width: 768px) {
  .form-privacy-box {
    margin-bottom: 80px;
    max-height: 270px;
  }
}
.form-privacy-box h3 {
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: 1em;
}

.form-privacy-box-block h4, .form-privacy-box-block h5 {
  font-size: 1rem;
  margin-bottom: 0.5em;
  font-weight: 500;
}
.form-privacy-box-block > p {
  margin-bottom: 1.5em;
}
.form-privacy-box-block ol > li {
  margin-bottom: 1.5em;
}
.form-privacy-box-block a {
  color: var(--color-black2);
}
@media screen and (min-width: 1024px) {
  .form-privacy-box-block a:hover {
    text-decoration: underline;
  }
}

.form-policy {
  margin-bottom: 50px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .form-policy {
    margin-bottom: 80px;
  }
}
.form-policy label {
  padding-left: 2em;
  cursor: pointer;
  position: relative;
}
.form-policy input {
  border: none;
  opacity: 0;
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form-policy .checkmark {
  z-index: -1;
  --width: 20px;
  line-height: 2;
  width: var(--width);
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 0.9375rem;
  left: 0;
  translate: 0 -50%;
  background-color: #eee;
  border: 2px solid #ddd;
  border-radius: 4px;
}
.form-policy input:checked ~ .checkmark {
  background: var(--color-black2);
}
.form-policy .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-policy input:checked ~ .checkmark:after {
  display: block;
}

.form-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.form-button {
  --height: 70px;
  cursor: pointer;
  opacity: 1;
  pointer-events: initial;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  border: 1px solid var(--color-black3);
  background-color: var(--color-black3);
  width: min(100%, 300px);
  height: var(--height);
}
@media screen and (min-width: 768px) {
  .form-button {
    --height: 90px;
    width: min(100%, 400px);
  }
}
.form-button span {
  --color: var(--color-white);
  z-index: 2;
  position: relative;
  color: #fff;
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
  color: var(--color);
}
@media screen and (min-width: 1024px) {
  .form-button::before {
    content: "";
    z-index: 1;
    border-bottom: var(--height) solid var(--color-white);
    border-right: 50px solid transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.2s ease-out;
  }
}
@media screen and (min-width: 1024px) {
  .form-button:hover span {
    --color: var(--color-black3);
  }
}
@media screen and (min-width: 1024px) {
  .form-button:hover::before {
    transform: translateX(0%);
  }
}

/******
フッター
******/
.l-footer {
  background-color: #F9F9F9;
  padding-bottom: 60px;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}

.l-footer__logo {
  margin-bottom: 30px;
  margin-inline: auto;
  width: min(100%, 100px);
}
.l-footer__logo img {
  display: block;
  width: 100%;
}

.l-footer__address {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__address {
    margin-bottom: 25px;
  }
}
.l-footer__address p {
  margin-bottom: 8px;
}

.l-footer__address-name {
  font-size: var(--font-size-lg);
  font-weight: 500;
  letter-spacing: 0.2em;
}

.l-footer__address-tel {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: filter 0.3s ease-out;
}
.l-footer__address-tel div {
  font-size: 1.875rem;
  font-family: var(--font-family-en);
  color: var(--color-black1);
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.l-footer__address-tel svg {
  fill: var(--color-black1);
}
@media screen and (min-width: 1024px) {
  .l-footer__address-tel:hover {
    filter: opacity(0.8);
  }
}

.l-footer__links {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .l-footer__links {
    margin-bottom: 60px;
  }
}
.l-footer__links a {
  display: block;
  width: min(100%, 24px);
  transition: filter 0.3s ease-out;
}
.l-footer__links a img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-footer__links a:hover {
    filter: opacity(0.8);
  }
}

.l-footer__copy {
  text-align: center;
}

/**
デフォルト
**/
.p-default {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-default {
    margin-top: 100px;
  }
}
.p-default h1 {
  margin-bottom: 60px;
  text-align: center;
}
.p-default p {
  margin-bottom: 40px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-default p {
    text-align: center;
  }
}
.p-default a {
  text-align: center;
  display: block;
  color: var(--color-black2);
  text-decoration: underline;
  transition: opacity 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .p-default a:hover {
    opacity: 0.8;
  }
}/*# sourceMappingURL=style.css.map */