@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New&display=swap");
:root {
  --base: #000;
  --gray1: #686868;
  --gray2: #EBEBEB;
  --gray3: #E1E1E1;
  --green1: #00B900;
  --yellow1: #F7FF00;
}

/*-- リセット --*/
h1,
h2,
h3,
h4,
h5,
p,
b,
dt,
dd,
li,
span,
a,
strong {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  min-height: 0%;
  vertical-align: top;
}

figure {
  width: 100%;
  min-height: 0%;
  line-height: 0;
  margin: 0 auto;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  backface-visibility: hidden;
  transition: 0.3s;
}
a img {
  display: inline-block;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
@media only screen and (max-width: 1340px) {
  html {
    font-size: 0.7462686567vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  background: var(--bg);
  position: relative;
  font-family: "Zen Kaku Gothic New", serif;
  text-align: center;
  color: var(--base);
}
@media only screen and (max-width: 767px) {
  body {
    min-width: initial;
    overflow: hidden;
    overflow-y: scroll;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-family: "Arial", "Noto Sans JP", sans-serif;
}

label {
  cursor: pointer;
}

img {
  vertical-align: middle;
}

.l-main {
  display: block;
}

.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media only screen and (max-width: 1340px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.inline-pc {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .inline-pc {
    display: none;
  }
}

.inline-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .inline-sp {
    display: inline;
  }
}

.no-link {
  pointer-events: none;
}

.c-page-links {
  scroll-margin-top: 9.5rem;
}
@media only screen and (max-width: 767px) {
  .c-page-links {
    scroll-margin-top: 6rem;
  }
}

.l-main {
  display: block;
}

.l-header {
  display: grid;
  grid-template-columns: 0fr 7.6rem;
  gap: 3rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .l-header {
    display: block;
    position: static;
  }
}
.l-header.is-open {
  grid-template-columns: 1fr 7.6rem;
}
@media only screen and (max-width: 767px) {
  .l-header.is-open {
    grid-template-columns: 100%;
    grid-template-rows: auto 100vh;
  }
  .l-header.is-open .l-header__global {
    translate: 0 0;
  }
}
.l-header__content {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: calc(100vh - 6.8rem);
  margin-top: 3.4rem;
  padding: 5.36rem 0 3.02rem;
  border-radius: 100px;
  box-sizing: border-box;
  background: var(--base);
}
@media only screen and (max-width: 767px) {
  .l-header__content {
    grid-column: 1/2;
    flex-direction: row;
    width: calc(100% - 2rem);
    height: 4.6rem;
    margin: 0 auto;
    padding: 0 2.4rem;
    position: fixed;
    top: 1.5rem;
    left: 50%;
    translate: -50% 0;
    z-index: 10;
  }
}
.l-header__logo {
  width: 6.236rem;
}
@media only screen and (max-width: 767px) {
  .l-header__logo {
    width: 5.394rem;
  }
}
.l-header__logo_link {
  display: block;
}
.l-header__menu {
  width: 4.5rem;
  height: 1.1rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-header__menu {
    width: 2.7rem;
    height: 0.7rem;
  }
}
.l-header__menu::before, .l-header__menu::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  border-radius: 100px;
  box-sizing: border-box;
  background: #FFF;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .l-header__menu::before, .l-header__menu::after {
    height: 0.2rem;
  }
}
.l-header__menu::before {
  top: 0;
  rotate: -12deg;
}
.l-header__menu::after {
  bottom: 0;
  rotate: -12deg;
}
.l-header__menu.is-open::before {
  top: 50%;
  translate: 0 -50%;
  rotate: -372deg;
}
.l-header__menu.is-open::after {
  bottom: 50%;
  translate: 0 50%;
  rotate: 372deg;
}
.l-header__sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.45rem;
}
@media only screen and (max-width: 767px) {
  .l-header__sns {
    display: none;
  }
}
.l-header__sns_item {
  width: 2.8rem;
}
.l-header__global {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  height: 100vh;
  background: #FFF;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .l-header__global {
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    translate: 0 -100%;
    transition: 0.5s ease;
  }
}
.l-header__global_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  width: 24.2rem;
  line-height: 1.1875;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Montserrat", serif;
}
@media only screen and (max-width: 767px) {
  .l-header__global_list {
    width: 100%;
  }
}
.l-header__global_item {
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 1.2rem;
  position: relative;
}
.l-header__global_item::after {
  content: "";
  width: 0.6rem;
  aspect-ratio: 1/1;
  border-width: 0 1.5px 1.5px 0;
  border-style: solid;
  border-color: var(--base);
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  rotate: 45deg;
}
.l-header__global_item a {
  text-decoration: none;
  color: var(--base);
}
.l-header__global_line {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 4.8rem;
  border-radius: 100px;
  box-sizing: border-box;
  background: var(--green1);
  line-height: 1.2272727273;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "Montserrat", serif;
  color: #FFF;
}
.l-header__global_line span {
  display: inline-block;
  padding-left: 3.803rem;
  position: relative;
}
.l-header__global_line span::before {
  content: "";
  width: 2.893rem;
  height: 2.76rem;
  background: url(../img/icon_line-white.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

.l-footer {
  padding: 4.4rem 0 4rem;
  background: #FFF;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .l-footer {
    padding: 4rem 0 8rem;
  }
}
.l-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}
.l-footer__sns_item {
  width: 4rem;
}
.l-footer__copy {
  margin: 4.04rem auto 0;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .l-footer__copy {
    margin-top: 4.94rem;
  }
}

.l-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .l-container--ptn1 {
    padding: 0 3.75rem;
  }
}
.l-container--ptn2 {
  max-width: 106rem;
}
.l-container--ptn3 {
  max-width: 114rem;
}

@media only screen and (max-width: 767px) {
  .l-scroll-head {
    scroll-margin-top: 7.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .l-scroll-head--ptn2 {
    scroll-margin-top: 13rem;
  }
}

.l-fixed__bnr {
  display: block;
  width: 24rem;
  position: fixed;
  right: 1rem;
  bottom: 2.3rem;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .l-fixed__bnr {
    width: 22rem;
    right: 0.5rem;
    bottom: 0;
  }
}

.c-title--ptn1 {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: left;
}
.c-title--ptn1 .c-title__en {
  display: block;
}
.c-title--ptn1 .c-title__en.about {
  width: 80.823rem;
  margin-bottom: -0.2rem;
}
@media only screen and (max-width: 767px) {
  .c-title--ptn1 .c-title__en.about {
    width: 21.487rem;
  }
}
.c-title--ptn1 .c-title__en.order {
  width: 84.278rem;
  margin-bottom: 1.73rem;
}
@media only screen and (max-width: 767px) {
  .c-title--ptn1 .c-title__en.order {
    width: 24.527rem;
    margin-bottom: 1rem;
  }
}
.c-title--ptn1 .c-title__en.voice {
  width: 32.614rem;
  margin-bottom: 1.73rem;
}
@media only screen and (max-width: 767px) {
  .c-title--ptn1 .c-title__en.voice {
    width: 18.409rem;
    margin-bottom: 1rem;
  }
}
.c-title--ptn1 .c-title__en.shop {
  width: 30.969rem;
}
@media only screen and (max-width: 767px) {
  .c-title--ptn1 .c-title__en.shop {
    width: 16.841rem;
  }
}
.c-title--ptn1 .c-title__jp {
  display: block;
  padding-left: 10.6rem;
  position: relative;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .c-title--ptn1 .c-title__jp {
    padding-left: 3.8rem;
    font-size: 1.4rem;
  }
}
.c-title--ptn1 .c-title__jp::before {
  content: "";
  width: 8.6rem;
  height: 1px;
  background: var(--base);
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
@media only screen and (max-width: 767px) {
  .c-title--ptn1 .c-title__jp::before {
    width: 3rem;
  }
}

.p-mv {
  padding: 6rem 0 0;
  background: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-mv {
    padding-top: 7.4rem;
  }
}
.p-mv .slick-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin: 1rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-mv .slick-dots {
    margin-top: 1.7rem;
  }
}
.p-mv .slick-dots li {
  width: 2.6rem;
  height: 0.5rem;
  background: var(--gray3);
  overflow: hidden;
}
.p-mv .slick-dots li button {
  width: 2.6rem;
  height: 0.5rem;
  text-indent: -999999px;
}
.p-mv .slick-dots li.slick-active {
  background: var(--base);
}

.p-about__bg {
  width: 100vw;
  height: 100vh;
  background: url(../img/fixed_bg.webp) 50% 50%/cover no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .p-about__bg {
    background-image: url(../img/fixed_bg-sp2.webp);
  }
}
.p-about__head {
  padding: 9.8rem 0 3rem;
  background: #FFF;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-about__head {
    padding: 6.74rem 0 2.46rem;
  }
}
.p-about__head::after {
  content: "";
  width: 100%;
  height: 6.25vw;
  background: url(../img/block-decoration-top.webp) 50% 50%/100% no-repeat;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
}
@media only screen and (max-width: 767px) {
  .p-about__head::after {
    height: 6.4vw;
  }
}
.p-about__body {
  margin-top: 68rem;
  padding: 8.1rem 0 9.6rem;
  background: #FFF;
  position: relative;
  z-index: 1;
  line-height: 2.2222222222;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-about__body {
    margin-top: 24.8rem;
    padding: 4.8rem 0 6.3rem;
    line-height: 2;
    text-align: left;
    font-size: 1.4rem;
  }
}
.p-about__body::before {
  content: "";
  width: 100%;
  height: 6.25vw;
  background: url(../img/block-decoration-bottom.webp) 50% 50%/100% no-repeat;
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-about__body::before {
    height: 6.4vw;
  }
}
.p-about__body p + p {
  margin-top: 1.5em;
}
.p-about__body p img {
  display: inline-block;
  width: 17.494rem;
  margin: -1.4em 1em 0;
}
@media only screen and (max-width: 767px) {
  .p-about__body p img {
    width: 17.576rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__body p span {
    display: inline-block;
    margin-top: 2.2em;
  }
}

.p-feature {
  padding: 12rem 0 6.7rem;
  background: url(../img/feature_bg.webp) 50% 50%/cover no-repeat;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-feature {
    padding: 14rem 0 5.49rem;
    background-image: url(../img/feature_bg-sp.webp);
  }
}
.p-feature::before {
  content: "";
  width: 131.995rem;
  height: 10.722rem;
  background: url(../img/feature_title-en.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: -2.45rem;
  left: 50%;
  translate: -50%;
}
@media only screen and (max-width: 767px) {
  .p-feature::before {
    width: 37.5rem;
    height: 11.985rem;
    background-image: url(../img/feature_title-en-sp.svg);
    top: -1.01rem;
  }
}
.p-feature__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-feature__block {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.p-feature__block_content {
  width: calc(100% - 52rem - 4rem);
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-feature__block_content {
    width: 100%;
    line-height: 2;
    font-size: 1.4rem;
  }
}
.p-feature__block_title {
  margin: 0 0 4rem;
  line-height: 1.5925925926;
  font-size: 2.7rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-feature__block_title {
    margin-bottom: 3.2rem;
    line-height: 1.8095238095;
    font-size: 2.1rem;
  }
}
.p-feature__block_image {
  width: 52rem;
}
@media only screen and (max-width: 767px) {
  .p-feature__block_image {
    width: 100%;
  }
}

.p-thisis {
  padding: 10.9rem 0 8.68rem;
  background: #FFF;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-thisis {
    padding: 5rem 0 6.22rem;
  }
}
.p-thisis__lead {
  line-height: 2.2222222222;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-thisis__lead {
    line-height: 2;
    text-align: left;
    font-size: 1.4rem;
  }
}
.p-thisis__lead * + p {
  margin-top: 1.5em;
}
.p-thisis__image {
  max-width: 145.753rem;
  width: 100%;
  margin: 9.08rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-thisis__image {
    width: 31.218rem;
    margin-top: 4.66rem;
  }
}

.p-movie {
  padding: 16rem 0 20rem;
  background: url(../img/movie_bg.webp) 50% 50%/cover no-repeat;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-movie {
    padding: 7.2rem 0 7.22rem;
  }
}
.p-movie::before, .p-movie::after {
  content: "";
  width: 100%;
  height: 6.25vw;
  background: 50% 50%/100% no-repeat;
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .p-movie::before, .p-movie::after {
    height: 6.4vw;
  }
}
.p-movie::before {
  background-image: url(../img/block-decoration-top.webp);
  top: -1px;
}
.p-movie::after {
  background-image: url(../img/block-decoration-bottom.webp);
  bottom: -1px;
}
.p-movie__container {
  max-width: 98rem;
}
.p-movie__title {
  margin: 0 auto 2.4rem;
  line-height: 1.2222222222;
  font-size: 5.4rem;
  font-weight: 400;
  font-family: "Montserrat", serif;
}
@media only screen and (max-width: 767px) {
  .p-movie__title {
    font-size: 4rem;
  }
}
.p-movie__video {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-movie__video {
    width: calc(100% + 6rem);
    margin: 0 -3rem;
  }
}
.p-movie__video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.p-base {
  padding: 6.5rem 0 calc(40vw + 9.77rem);
  background: #FFF;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-base {
    padding: 6.12rem 0 calc(48vw + 6.2rem);
  }
}
.p-base::after {
  content: "";
  width: 100%;
  height: 40vw;
  background: url(../img/base_bg.webp) 50% 50%/100% no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .p-base::after {
    height: 48vw;
  }
}
.p-base__block {
  display: flex;
  max-width: 113.4rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-base__block {
    flex-direction: column-reverse;
    gap: 3.25rem;
    padding: 0 2rem;
  }
}
.p-base__block_content {
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-base__block_content {
    padding: 0 2rem;
    box-sizing: border-box;
    line-height: 2;
    font-size: 1.4rem;
  }
}
.p-base__block_title {
  display: flex;
  align-items: flex-end;
  gap: 1.6rem;
  margin: 0 0 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-base__block_title {
    margin-bottom: 2.4rem;
  }
}
.p-base__block_title .p-base__title_en {
  display: inline-block;
  line-height: 1.2222222222;
  font-size: 5.4rem;
  font-weight: 400;
  font-family: "Montserrat", serif;
}
@media only screen and (max-width: 767px) {
  .p-base__block_title .p-base__title_en {
    font-size: 4rem;
  }
}
.p-base__block_title .p-base__title_jp {
  display: inline-block;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-base__block_title .p-base__title_jp {
    font-size: 1.4rem;
  }
}
.p-base__block_image {
  width: 62.011rem;
  position: absolute;
  top: -2.9rem;
  right: -3.7rem;
}
@media only screen and (max-width: 767px) {
  .p-base__block_image {
    width: 100%;
    position: static;
  }
}

.p-born {
  padding: 10.22rem 0 10.9rem;
  background: #FFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-born {
    padding: 6em 0 6rem;
  }
}
.p-born__sign {
  width: 113.05rem;
  margin: 0 auto 7.8rem;
}
@media only screen and (max-width: 767px) {
  .p-born__sign {
    width: 35.659rem;
    margin-bottom: 5.03rem;
  }
}
.p-born__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin: 0 auto 10rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-born__title {
    gap: 0.4rem;
  margin-bottom: 3.2rem;
  margin-top: 3rem;
  }
}
.p-born__title_en {
  line-height: 1.2222222222;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Montserrat", serif;
}
@media only screen and (max-width: 767px) {
  .p-born__title_en {
    font-size: 1.4rem;
  }
}
.p-born__title_jp {
  line-height: 1.1944444444;
  letter-spacing: 0.1em;
  font-size: 3.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-born__title_jp {
    line-height: 1.3333333333;
    font-size: 2.4rem;
  }
}
.p-born__title.afterservice::after {
  content: "";
  width: 105.442rem;
  height: 16.7rem;
  background: url(../img/after-service_titleback.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .p-born__title.afterservice::after {
    width: 44.468rem;
    height: 7.043rem;
    top: 0;
  }
}
.p-born__title.considering::after {
  content: "";
  width: 119.495rem;
  height: 16.789rem;
  background: url(../img/considering_titleback.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .p-born__title.considering::after {
    width: 50.395rem;
    height: 7.08rem;
    top: 0;
  }
}
.p-born__block {
  max-width: 117rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  margin-top: 8rem;
  box-sizing: border-box;
}
.p-born__block + .p-born__block {
  margin-top: 15rem;
}
@media only screen and (max-width: 767px) {
  .p-born__block + .p-born__block {
    margin-top: 9rem;
  }
}
.p-born__box {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .p-born__box {
    flex-direction: column-reverse;
    gap: 3.2rem;
  }
}
.p-born__box.reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .p-born__box.reverse {
    flex-direction: column-reverse;
  }
}
.p-born__box_content {
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-born__box_content {
    padding: 0 1rem;
    box-sizing: border-box;
    line-height: 2;
    font-size: 1.4rem;
  }
}
.p-born__box_content.box-01 {
  width: calc(100% - 54rem - 5rem);
}
@media only screen and (max-width: 767px) {
  .p-born__box_content.box-01 {
    width: 100%;
  }
}
.p-born__box_content.box-02 {
  width: calc(100% - 48rem - 5rem);
  align-self: center;
}
@media only screen and (max-width: 767px) {
  .p-born__box_content.box-02 {
    width: 100%;
  }
}
.p-born__box_content.box-03 {
  width: calc(100% - 54rem - 5rem);
}
@media only screen and (max-width: 767px) {
  .p-born__box_content.box-03 {
    width: 100%;
  }
}
.p-born__box_content p + p {
  margin-top: 1.5em;
}
.p-born__box_title {
  margin: 0 0 4rem;
  line-height: 1.5925925926;
  letter-spacing: 0.05em;
  font-size: 2.7rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-born__box_title {
    margin-bottom: 3.2rem;
    line-height: 1.8095238095;
    font-size: 2.1rem;
  }
}
.p-born__box_image.box-01 {
  width: 54rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-born__box_image.box-01 {
    width: 29.6rem;
    margin: 0 0 0 1rem;
  }
}
.p-born__box_image.box-01::after {
  content: "";
  width: 58.822rem;
  height: 46rem;
  background: url(../img/img_back-01.webp) 50% 50%/100% no-repeat;
  position: absolute;
  top: 7rem;
  right: -5.92rem;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .p-born__box_image.box-01::after {
    width: 29.6rem;
    height: 26.8rem;
    top: 3rem;
    right: -2rem;
  }
}
.p-born__box_image.box-02 {
  width: 48rem;
}
@media only screen and (max-width: 767px) {
  .p-born__box_image.box-02 {
    width: 100%;
  }
}
.p-born__box_image.box-03 {
  width: 54rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-born__box_image.box-03 {
    width: 29.6rem;
    margin: 0 0 0 1rem;
  }
}
.p-born__box_image.box-03::after {
  content: "";
  width: 58.822rem;
  height: 38rem;
  background: url(../img/img_back-02.webp) 50% 50%/100% no-repeat;
  position: absolute;
  top: 7rem;
  right: -5.92rem;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .p-born__box_image.box-03::after {
    width: 29.6rem;
    height: 20.8rem;
    top: 3rem;
    right: -2rem;
  }
}

.p-order {
  padding: 22.1rem 0 18rem;
  background: url(../img/order_bg.webp) 50% 50% no-repeat;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-order {
    padding: calc(6.4vw + 10.2rem) 0 calc(6.4vw + 5.6rem);
  }
}
.p-order::before, .p-order::after {
  content: "";
  width: 100%;
  height: 6.25vw;
  background: 50% 50%/100% no-repeat;
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .p-order::before, .p-order::after {
    height: 6.4vw;
  }
}
.p-order::before {
  background-image: url(../img/block-decoration-top.webp);
  top: -1px;
}
.p-order::after {
  background-image: url(../img/block-decoration-bottom.webp);
  bottom: -1px;
}
.p-order__title {
  position: absolute;
  top: 3.3rem;
  left: 50%;
  translate: -50% 0;
}
@media only screen and (max-width: 767px) {
  .p-order__title {
    top: -5rem;
  }
}
.p-order__lead {
  margin: 6.4rem auto 0;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-order__lead {
    margin: 0 auto;
    line-height: 2;
    text-align: left;
    font-size: 1.4rem;
  }
}
.p-order__lead p + p {
  margin-top: 1.5em;
}
.p-order__frame {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.5rem;
  margin: 8.2rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-order__frame {
    grid-template-columns: 100%;
    gap: 6.6rem;
    margin-top: 6.7rem;
  }
}
.p-order__frame_item {
  position: relative;
}
.p-order__frame_item figcaption {
  display: block;
  margin: 1.8rem auto 0;
  line-height: 1.4444444444;
  font-size: 2.7rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-order__frame_item figcaption {
    margin-top: 1.6rem;
    line-height: 1.4583333333;
    font-size: 2.4rem;
  }
}
.p-order__frame_num {
  position: absolute;
  top: -1.18rem;
  left: -1.5rem;
}
@media only screen and (max-width: 767px) {
  .p-order__frame_num {
    top: -1rem;
    left: -1rem;
  }
}
.p-order__frame_num.num-01 {
  width: 9.037rem;
}
@media only screen and (max-width: 767px) {
  .p-order__frame_num.num-01 {
    width: 7.744rem;
  }
}
.p-order__frame_num.num-02 {
  width: 11.276rem;
}
@media only screen and (max-width: 767px) {
  .p-order__frame_num.num-02 {
    width: 9.663rem;
  }
}
.p-order__option {
  margin: 8.2rem auto 0;
  padding: 11.7rem 6.6rem 7.3rem;
  box-sizing: border-box;
  background: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-order__option {
    width: calc(100% + 3rem);
    margin: 5.6rem -1.5rem 0;
    padding: 6.2rem 2rem 3.2rem;
  }
}
.p-order__option_title {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0 auto 4.8rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-order__option_title {
    gap: 0.4rem;
    margin-bottom: 2.7rem;
  }
}
.p-order__option_title::before {
  content: "";
  width: 62.888rem;
  height: 8.502rem;
  background: url(../img/option_title-en.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .p-order__option_title::before {
    width: 26.721rem;
    height: 3.613rem;
  }
}
.p-order__option_title .p-order__option_en {
  line-height: 1.2222222222;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Montserrat", serif;
}
@media only screen and (max-width: 767px) {
  .p-order__option_title .p-order__option_en {
    font-size: 1.4rem;
  }
}
.p-order__option_title .p-order__option_jp {
  line-height: 1.1944444444;
  letter-spacing: 0.1em;
  font-size: 3.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-order__option_title .p-order__option_jp {
    font-size: 2.4rem;
  }
}
.p-order__option_table table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-order__option_table table {
    width: 64.4rem;
    white-space: nowrap;
  }
}
.p-order__option_table table thead th {
  padding: 1.7rem 2.4rem;
  box-sizing: border-box;
  background: var(--gray1);
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
}
.p-order__option_table table tbody tr:nth-child(even) {
  background: var(--gray2);
}
.p-order__option_table table tbody td {
  padding: 1.7rem 2.4rem;
  box-sizing: border-box;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 400;
}

/* テーブルテスト */
.custom-option-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(14px, 2vw, 18px);
  color: #000;
}

/* 基本セル */
.custom-option-table td {
  padding: 0.5em;
  vertical-align: middle;
  border: none;
}

/* 2行セットごとに背景色交互 */
.custom-option-table tr:nth-child(4n-3),
.custom-option-table tr:nth-child(4n-2) {
  background-color: #ddd;
}

/* 列ごとの幅と配置 */
.custom-option-table .col-num {
  text-align: center;
  width: 2.5em;
  font-weight: bold;
  font-size: clamp(16px, 2.5vw, 22px);
}

.custom-option-table .col-name {
  text-align: left;
  width: 55%;
  padding-left: 1em;
}

.custom-option-table .col-label {
  text-align: center;
  width: 13%;
  font-weight: bold;
  white-space: nowrap;
}

.custom-option-table .col-price {
  text-align: center;
  width: 15%;
  white-space: nowrap;
}


/* モバイル対応 */
@media screen and (max-width: 600px) {
  .custom-option-table .col-name {
    width: 60%;
  }
  .custom-option-table .col-label,
  .custom-option-table .col-price {
    font-size: clamp(12px, 4vw, 16px);
  }
}
@media (max-width: 768px) {
  .custom-option-table .col-label {
    min-width: 6em;
    font-size: clamp(12px, 4vw, 16px); /* 必要に応じてフォントも調整 */
  }
}


/* 備考クラスなど */
.zeikomi {
  font-size: clamp(8px, 2vw, 18px);
}

.p-order__option_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-order__option_items {
    flex-direction: column;
    gap: 4rem;
    margin: 4rem auto 0;
  }
}
.p-order__option_item figure img {
  width: auto;
  height: 24rem;
}
@media only screen and (max-width: 767px) {
  .p-order__option_item figure img {
    height: 21.529rem;
  }
}
.p-order__option_item figure figcaption {
  display: block;
  margin: 1.65rem auto 0;
  line-height: 1.4444444444;
  font-size: 1.8rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-order__option_item figure figcaption {
    margin-top: 1.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-order__option_item:nth-child(2) figure img {
    height: 24rem;
  }
}
.p-order__newoption {
  margin: 13.25rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-order__newoption {
    margin-top: 8.44rem;
  }
}
.p-order__newoption_sign {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.6rem;
  margin: 0 auto 5.7rem;
}
@media only screen and (max-width: 767px) {
  .p-order__newoption_sign {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 5.6rem;
  }
}
.p-order__newoption_en {
  line-height: 1;
  font-size: 5.4rem;
  font-weight: 400;
  font-family: "Montserrat", serif;
}
@media only screen and (max-width: 767px) {
  .p-order__newoption_en {
    line-height: 1.225;
    font-size: 4rem;
  }
}
.p-order__newoption_jp {
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-order__newoption_jp {
    line-height: 2;
    font-size: 1.4rem;
  }
}
.p-order__newoption_block + .p-order__newoption_block {
  margin-top: 4.8rem;
}
@media only screen and (max-width: 767px) {
  .p-order__newoption_block + .p-order__newoption_block {
    margin-top: 5.6rem;
  }
}
.p-order__newoption_title {
  margin: 0 auto 2rem;
  line-height: 1.5925925926;
  letter-spacing: 0.05em;
  font-size: 2.7rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-order__newoption_title {
    font-size: 2.4rem;
  }
}
.p-order__newoption_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 2rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-order__newoption_bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
}
.p-order__newoption_caption {
  display: block;
  width: 60rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-order__newoption_caption {
    width: 100%;
  }
}
.p-order__newoption_caption span {
  font-size: 0.75em;
}
.p-order__newoption_price {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
  line-height: 1.4444444444;
  font-size: 1.8rem;
}
.p-order__newoption_price-head {
  font-weight: 700;
}

.p-voice {
  padding: 20rem 0 12rem;
  background: #FFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-voice {
    padding: 9.4rem 0 8rem;
  }
}
.p-voice::before {
  content: "";
  width: 190.075rem;
  height: 26.517rem;
  background: url(../img/voice_titleback.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 10rem;
  left: 50%;
  translate: -50% 0;
}
@media only screen and (max-width: 767px) {
  .p-voice::before {
    width: 50.596rem;
    height: 7.059rem;
    top: 6.4rem;
  }
}
.p-voice__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90.3rem;
  width: 100%;
  margin: 6rem auto 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-voice__block {
    flex-direction: column-reverse;
    gap: 2.4rem;
    margin-top: 5.59rem;
    padding: 0 3rem;
    box-sizing: border-box;
  }
}
.p-voice__block.reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .p-voice__block.reverse {
    flex-direction: column-reverse;
  }
}
.p-voice__block.reverse .p-voice__block_image {
  margin: 0 0 0 -2rem;
}
@media only screen and (max-width: 767px) {
  .p-voice__block.reverse .p-voice__block_image {
    margin: 0 auto;
  }
}
.p-voice__block + .p-voice__block {
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .p-voice__block + .p-voice__block {
    margin-top: 5.6rem;
  }
}
.p-voice__block_content {
  width: calc(100% - 55.087rem - 3.25rem);
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-voice__block_content {
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }
}
.p-voice__block_title {
  margin: 0 0 1.7rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-size: 2.1rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-voice__block_title {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
  }
}
.p-voice__block_comment {
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-voice__block_comment {
    line-height: 2;
    font-size: 1.4rem;
  }
}
.p-voice__block_image {
  width: 57.087rem;
  margin-right: -2rem;
}
@media only screen and (max-width: 767px) {
  .p-voice__block_image {
    width: 100%;
    margin: 0 auto;
  }
}
.p-voice-move {
  max-width: 111.2rem;
  width: 100%;
  margin: 14.15rem auto 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-voice-move {
    margin: 0;
    padding-top: 47.6rem;
  }
}
.p-voice-move__content {
  width: 47rem;
  padding-left: 3rem;
  box-sizing: border-box;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-voice-move__content {
    width: 100%;
    padding: 0 3rem;
  }
}
.p-voice-move__title {
  margin: 0 0 6.4rem;
  position: relative;
  z-index: 1;
  line-height: 1.675;
  letter-spacing: 0.1em;
  font-size: 4rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-voice-move__title {
    margin-bottom: 3.2rem;
    line-height: 1.6666666667;
    font-size: 3rem;
  }
}
.p-voice-move__title::after {
  content: "";
  width: 61.4rem;
  height: 44.3rem;
  background: url(../img/move_titleback.webp) 50% 50%/100% no-repeat;
  position: absolute;
  top: -12.9rem;
  right: 4.2rem;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .p-voice-move__title::after {
    width: 37.5rem;
    height: 16.9rem;
    background-image: url(../img/move_titleback-sp.webp);
    top: -8rem;
    left: -4rem;
    right: auto;
  }
}
.p-voice-move__copy {
  margin: 0 0 4rem;
  position: relative;
  z-index: 1;
  line-height: 1.5925925926;
  letter-spacing: 0.05em;
  font-size: 2.7rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-voice-move__copy {
    margin-bottom: 3.2rem;
    line-height: 1.8095238095;
    font-size: 2.1rem;
  }
}
.p-voice-move__caption {
  margin: 0 0 4rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-voice-move__caption {
    margin-bottom: 4.8rem;
    line-height: 2;
    font-size: 1.4rem;
  }
}
.p-voice-move__caption p + p {
  margin-top: 1.5em;
}
.p-voice-move__box {
  display: grid;
  grid-template-columns: 17.9rem 1fr;
  margin: 0;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-voice-move__box {
    grid-template-columns: 13.9rem 1fr;
  }
}
.p-voice-move__box + .p-voice-move__box {
  margin-top: 1.6rem;
}
.p-voice-move__box_title {
  font-weight: 700;
}
.p-voice-move__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4.4rem 0 3.7rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-voice-move__price {
    margin: 2.4rem 0 2.39rem;
  }
}
.p-voice-move__price::after {
  content: "";
  width: 45.011rem;
  height: 12.404rem;
  background: url(../img/move_priceback.webp) 50% 50%/100% no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .p-voice-move__price::after {
    width: 34.5rem;
    height: 9.508rem;
  }
}
.p-voice-move__price_head {
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: 2.3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-voice-move__price_head {
    font-size: 1.9rem;
  }
}
.p-voice-move__price_body {
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-size: 2.4rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-voice-move__price_body {
    font-size: 2rem;
  }
}
.p-voice-move__price_body strong {
  font-size: 5.3rem;
}
@media only screen and (max-width: 767px) {
  .p-voice-move__price_body strong {
    font-size: 4.5rem;
  }
}
.p-voice-move__image {
  width: max(80rem, 50vw);
  position: absolute;
  top: 0;
  right: min((111.2rem - 100vw) / 2, -15.25vw);
}
@media only screen and (max-width: 767px) {
  .p-voice-move__image {
    width: 36.5rem;
    top: 8rem;
    right: 0;
    z-index: 1;
  }
}

.p-present {
  padding: 3.4rem 0 3.3rem;
  background: linear-gradient(to bottom, #FFF 3.4rem, var(--green1) 3.4rem, var(--green1) calc(100% - 3.3rem), #FFF calc(100% - 3.3rem));
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-present {
    padding: 5.4rem 0;
    background: linear-gradient(to bottom, #FFF 2.4rem, var(--green1) 2.4rem, var(--green1) calc(100% - 2.4rem), #FFF calc(100% - 2.4rem));
  }
}
.p-present::before, .p-present::after {
  content: "";
  width: 100%;
  height: 6.25vw;
  background: 50% 50%/100% no-repeat;
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .p-present::before, .p-present::after {
    height: 6.4vw;
  }
}
.p-present::before {
  background-image: url(../img/block-decoration-top-02.webp);
  top: 0;
}
@media only screen and (max-width: 767px) {
  .p-present::before {
    background-image: url(../img/block-decoration-top-02-sp.webp);
  }
}
.p-present::after {
  background-image: url(../img/block-decoration-bottom-02.webp);
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .p-present::after {
    background-image: url(../img/block-decoration-bottom-02-sp.webp);
  }
}
.p-present__bnr {
  display: block;
  max-width: 92rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .p-present__bnr {
    width: 32.5rem;
  }
}
.p-present__bnr:hover {
  transform: scale(1.109);
}

.p-shop {
  padding: 34rem 0 10.2rem;
  background: #FFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-shop {
    padding: 18rem 0 8rem;
  }
}
.p-shop::before {
  content: "";
  width: 162.391rem;
  height: 14.36rem;
  background: url(../img/paint_decoration.webp) 50% 50%/100% no-repeat;
  position: absolute;
  top: 12rem;
  left: 50%;
  translate: -50% 0;
}
@media only screen and (max-width: 767px) {
  .p-shop::before {
    width: 37.5rem;
    height: 3.316rem;
    top: 6.4rem;
  }
}
.p-shop__head {
  display: flex;
  justify-content: space-between;
  max-width: 98rem;
  width: 100%;
  margin: 4.4rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-shop__head {
    flex-direction: column;
    gap: 1.65rem;
    margin-top: 6.4rem;
    box-sizing: border-box;
  }
}
.p-shop__head_image {
  width: 44rem;
}
@media only screen and (max-width: 767px) {
  .p-shop__head_image {
    width: 100%;
  }
}
.p-shop__head_content {
  width: calc(100% - 44rem - 8rem);
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-shop__head_content {
    width: 100%;
  }
}
.p-shop__head_title {
  margin: 0 0 2.3rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-shop__head_title {
    margin-bottom: 2.4rem;
    font-size: 2.1rem;
  }
}
.p-shop__box {
  display: grid;
  grid-template-columns: 11rem 1fr;
  margin: 0 auto;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-shop__box {
    grid-template-columns: 9.9rem 1fr;
    font-size: 1.4rem;
  }
}
.p-shop__box + .p-shop__box {
  margin-top: 1.6rem;
}
.p-shop__box_title {
  font-weight: 700;
}
.p-shop__map {
  max-width: 98rem;
  width: 100%;
  margin: 2.4rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-shop__map {
    width: calc(100% + 6rem);
    margin: 3.2rem -3rem 0;
  }
}
.p-shop__map iframe {
  width: 100%;
  height: 32rem;
}

.p-contact {
  padding: 13rem 0 6.953rem;
  background: linear-gradient(to bottom, #FFF 3.4rem, var(--green1) 3.4rem, var(--green1) calc(100% - 3.3rem), #FFF calc(100% - 3.3rem));
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-contact {
    padding: 7.4rem 0 4.43rem;
    background: linear-gradient(to bottom, #FFF 2.4rem, var(--green1) 2.4rem, var(--green1) calc(100% - 2.4rem), #FFF calc(100% - 2.4rem));
  }
}
.p-contact::before, .p-contact::after {
  content: "";
  width: 100%;
  height: 6.25vw;
  background: 50% 50%/100% no-repeat;
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .p-contact::before, .p-contact::after {
    height: 6.4vw;
  }
}
.p-contact::before {
  background-image: url(../img/block-decoration-top-02.webp);
  top: 0;
}
@media only screen and (max-width: 767px) {
  .p-contact::before {
    background-image: url(../img/block-decoration-top-02-sp.webp);
  }
}
.p-contact::after {
  background-image: url(../img/block-decoration-bottom-02.webp);
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .p-contact::after {
    background-image: url(../img/block-decoration-bottom-02-sp.webp);
  }
}
.p-contact__title {
  width: 66.61rem;
  position: absolute;
  top: 5rem;
  left: 50%;
  translate: -50% 0;
}
@media only screen and (max-width: 767px) {
  .p-contact__title {
    width: 28.187rem;
  }
}
.p-contact__block {
  max-width: 98rem;
  width: 100%;
  margin: 0 auto;
  padding: 12.997rem 0 13.947rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-contact__block {
    padding: 8.502rem 0 8.502rem;
  }
}
.p-contact__block::before, .p-contact__block::after {
  content: "";
  width: 98rem;
  height: 9.747rem;
  background: url(../img/contact_img-01.webp) 50% 50%/100% no-repeat;
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .p-contact__block::before, .p-contact__block::after {
    width: 25.9rem;
    height: 5.272rem;
    background-image: url(../img/contact_img-01-sp.webp);
    left: 50%;
    translate: -50% 0;
  }
}
.p-contact__block::before {
  top: 0;
}
.p-contact__block::after {
  bottom: 0;
}
.p-contact__sign {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 2.3rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__sign {
    margin-bottom: 2.6rem;
  }
}
.p-contact__sign_sub {
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--yellow1);
}
@media only screen and (max-width: 767px) {
  .p-contact__sign_sub {
    display: inline-block;
    margin: 0 auto 0.35rem;
    font-size: 1.9rem;
  }
}
.p-contact__sign_main {
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: 2.6rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-contact__sign_main {
    display: inline-block;
    margin-bottom: 0.753rem;
    padding-left: 4.353rem;
    position: relative;
    font-size: 2.1rem;
  }
  .p-contact__sign_main::before {
    content: "";
    width: 2.753rem;
    height: 1.772rem;
    background: url(../img/icon_mail-white.svg) 50% 50%/100% no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
  }
}
.p-contact__sign_main strong {
  font-size: 5.4rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__sign_main strong {
    font-size: 3.4rem;
  }
}
.p-contact__sign_lead {
  display: inline-block;
  margin: 1.1rem auto 0;
  padding-left: 5.911rem;
  position: relative;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: 3.3rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-contact__sign_lead {
    margin: 0 auto;
    padding: 0;
    font-size: 2rem;
  }
}
.p-contact__sign_lead::before {
  content: "";
  width: 4.311rem;
  height: 2.774rem;
  background: url(../img/icon_mail-white.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
@media only screen and (max-width: 767px) {
  .p-contact__sign_lead::before {
    display: none;
  }
}
.p-contact__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 54rem;
  height: 8.8rem;
  margin: 0 auto;
  border-radius: 100px;
  box-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  background: var(--yellow1);
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-decoration: none;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green1);
}
@media only screen and (max-width: 767px) {
  .p-contact__btn {
    width: 32.5rem;
    height: 6.4rem;
    font-size: 2.1rem;
  }
}
.p-contact__btn small {
  font-size: 2.3rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__btn small {
    font-size: 1.4rem;
  }
}

.button {
    margin: 10px;
    width: 180px;
    height: 50px;   
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    color: #000;
    border: 1px solid;
    cursor: pointer;
}

.yazirusi {
    display: inline-flex;
    margin-left: 10px;
    width: 100px;
    height: 10px;
    position: relative;
    right: 60px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: skew(45deg);
    transform: skew(45deg);
}