@charset "UTF-8";
/* Reset and common styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header {
  position: relative;
}
img {
  vertical-align: top;
}

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

a {
  text-decoration: none;
  color: inherit; /* Combines :link style */
}

input[type=radio],
input[type=checkbox] {
  display: none;
  border: none;
}

input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  border: none;
  font-size: 1rem;
}

/* Color variables */
/* Body styles */
body {
  width: 100vw;
  text-align: center;
  color: #503314;
  overflow-x: clip;
}

header {
  position: relative;
}

/* Mixins */
/* Font styles */
/* Select wrapper styles */
.select__wrapper {
  position: relative;
  text-align: left;
}
.select__wrapper::after {
  content: "";
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 1em;
  height: 0.6062177826em;
  width: 0.7em;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #707070;
  margin: auto;
}
.select__wrapper select {
  width: 100%;
  height: 100%;
}

/* Animations */
.fadein-up {
  animation: fadein-up ease-out 1s;
  z-index: 5;
  animation-fill-mode: forwards;
}

@keyframes fadein-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadein {
  animation: fadein ease-out 0.5s;
  animation-fill-mode: forwards;
}

.fadeout {
  animation: fadeout ease-out 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Fade-in targets */
.fadein-up__target {
  opacity: 0;
}
#shop_name {
    /*position: absolute;*/
    bottom: 40%;
    left: 42%;
}
.cta__content {
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  transition: 0.5s all;
}

.cta__content:hover {
  box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.42);
}

/*---------------------------------General styles */
body {
  color: #503314;
  letter-spacing: 0.075em;
}

.wrapper {
  position: relative;
}

.monyou {
  margin: 0 auto;
}

.section__title {
  margin-top: 0.4em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  html {
    font-size: min(2vw,18px);
    padding-bottom: 164px; /*追従CTA分*/
  }
  .monyou img {
    width: 41px;
    height: 22px;
  }
  h1 {
    font-size: 3.125rem;
  }
  h2 {
    font-size: 1.6875rem;
  }
  h3 {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  /* General styles */
  html {
    font-size: min(5vw,17px);
    padding-bottom: 88px; /*追従CTA分*/
  }
  .monyou img {
    width: 24.92px;
    height: 13.14px;
  }
  h1 {
    font-size: 1.765rem;
  }
  h2 {
    font-size: 1.17rem;
  }
  h3 {
    font-size: 1rem;
  }
}
/*---------------------------------FV*/
.firstView {
  width: 100vw;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .firstView {
    aspect-ratio: 960/407;
  }
}
@media screen and (max-width: 768px) {
  .firstView {
    aspect-ratio: 375/594;
  }
}
/*---------------------------------CTA*/
.satei__content {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  margin: auto;
  display: flex;
}
.satei__content h3 {
  margin-bottom: 0.5em;
  color: black;
}

.cta__content {
  outline: 1px solid white; /* アウトラインの太さと色 */
  outline-offset: -5px; /* 内側にオフセット */
  display: flex;
  justify-content: center;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}
.cta__content img {
  aspect-ratio: 1/1;
}

.cta__line {
  background-color: #03c755;
}

.cta__form {
  background-color: #4db9d9;
}

@media screen and (min-width: 768px) {
  .satei__content {
    width: 75vw;
    max-width: 830px;
    padding: 40px 0;
    justify-content: space-between;
  }
  .satei__content h3 {
    font-size: min(2vw,21px);
  }
  .satei__content .satei__form {
    animation-delay: 0.2s;
  }
  .satei__content .cta__content {
    position: relative;
    width: 35vw;
    max-width: 395px;
    aspect-ratio: 395/91;
  }
  .satei__content .cta__content img {
    max-width: 54px;
    width: 15%;
    margin: auto;
  }
  .satei__content .cta__content p {
    margin: auto auto auto 0;
    color: white;
    font-size: min(1.5vw,16px);
  }
  .satei__content .cta__content p span {
    font-size: 1.75em;
  }
}
@media screen and (max-width: 768px) {
  .satei__content {
    width: 95vw;
    padding: 30px 0;
    flex-direction: column;
    gap: 20px;
    letter-spacing: normal;
  }
  .satei__content .cta__content {
    position: relative;
    width: 100%;
    aspect-ratio: 347/80;
    display: flex;
    justify-content: center;
    gap: 0 10vw;
  }
  .satei__content .cta__content img {
    min-width: 40px;
    width: 15%;
    margin: auto 0;
  }
  .satei__content .cta__content p {
    margin: auto 0;
    color: white;
    font-size: max(3vw,15px);
  }
  .satei__content .cta__content p span {
    font-size: 1.75em;
  }
}
/*---------------------------------追従CTA*/
.contact__following {
  position: fixed;
  background-color: white;
  width: 100%;
  bottom: 0;
  z-index: 100;
  color: #503314;
  box-shadow: 3px 0px 10px rgba(0, 0, 0, 0.16);
  opacity: 0;
  display: flex;
  flex-direction: column;
}
.contact__following h4 {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .contact__following {
    height: min(15vw,164px);
  }
  .contact__following h4 {
    font-size: clamp(16px,2vw,22px);
  }
  .contact__following div {
    max-width: 1100px;
    width: 80vw;
    display: flex;
    margin: 0 auto;
    justify-content: center;
  }
  .contact__following div a {
    display: block;
    width: 50%;
    max-width: 550px;
  }
  .contact__following .cta__content {
    position: relative;
    width: 100%;
    aspect-ratio: 550/106;
    display: flex;
    justify-content: center;
  }
  .contact__following .cta__content img {
    width: clamp(38px,5vw,58px);
    margin: auto 2vw auto auto;
  }
  .contact__following .cta__content p {
    margin: auto auto auto 2vw;
    color: white;
    font-size: min(1.2vw,16px);
  }
  .contact__following .cta__content p span {
    font-size: 1.75em;
  }
}
@media screen and (max-width: 768px) {
  .contact__following {
    height: clamp(88px,15vw,112px);
  }
  .contact__following h4 {
    font-size: clamp(14px,1.5vw,18px);
    height: clamp(22px,5vw,32px);
    line-height: clamp(22px,5vw,32px);
  }
  .contact__following div {
    width: 100vw;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    height: clamp(60px,10vw,80px);
  }
  .contact__following div a {
    display: block;
    width: 50%;
  }
  .contact__following .cta__content {
    position: relative;
    width: 100%;
    aspect-ratio: 187.5/59;
    display: flex;
    justify-content: center;
  }
  .contact__following .cta__content img {
    max-width: 27px;
    width: 15%;
    margin: auto;
  }
  .contact__following .cta__content p {
    letter-spacing: normal;
    color: white;
    margin: auto auto auto 0;
    font-size: max(1.5vw,12px);
  }
  .contact__following .cta__content p span {
    font-size: 1.5em;
  }
}
/*---------------------------------Souba wrapper*/
.souba__wrapper {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
  background-color: #f4f0e0;
}
.souba__wrapper .souba__price {
  margin: 0 auto 60px;
  max-width: 800px;
  width: 90vw;
}
.souba__wrapper .souba__price .souba__price--header {
  width: 100%;
  background-color: #503314;
  color: white;
  height: 2.5em;
  line-height: 2.5em;
}
.souba__wrapper .souba__price .souba__price--header span {
  font-size: 0.74em;
}
.souba__wrapper .souba__price .souba__price--box {
  margin-top: 5px;
  outline: 1px solid #503314;
  outline-offset: -1px;
  display: flex;
  justify-content: space-around;
  background-color: white;
  height: 3em;
  line-height: 3em;
}
.souba__wrapper .souba__price .souba__price--box p:nth-child(1) {
  width: 40%;
}
.souba__wrapper .souba__price .souba__price--box p:nth-child(3) {
  width: 60%;
}
.souba__wrapper .souba__price .souba__price--box .vertical__line {
  width: 1px;
  height: 70%;
  margin: auto;
  background-color: #503314;
}
.souba__wrapper .souba__graph {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  position: relative;
  max-width: 1100px;
  width: 90vw;
  padding: 30px 0;
  margin: 20px auto 0 auto;
  background-color: white;
}
.souba__wrapper .souba__graph .graph__content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.souba__wrapper .souba__graph .graph__content .graph__unit {
  text-align: right;
  margin: 0.75em 0 0.5em 0;
}
.souba__wrapper .souba__graph .graph__select select {
  outline: 1px solid #d5d5d5;
  border-radius: 4px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 1rem;
  height: 50px;
  padding-left: 0.5em;
}
.souba__wrapper .souba__graph .graph__radio {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}
.souba__wrapper .souba__graph .graph__radio input[type=radio]:checked + label {
  background: #a49065;
}
.souba__wrapper .souba__graph .graph__radio label {
  display: inline-block;
  background-color: #503314;
  color: white;
}
.souba__wrapper .souba__graph .graph__canvas {
  position: relative;
  margin: 0 auto;
  outline: 1px solid #707070;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .souba__wrapper {
    padding: 80px 0;
  }
  .souba__wrapper .souba__updatetime {
    margin: 60px 0 20px 0;
    font-size: 22px;
  }
  .souba__wrapper .souba__price {
    font-size: min(4vw,24px);
  }
  .souba__wrapper .souba__price .souba__price--header {
    font-size: min(3.8vw,27px);
  }
  .souba__wrapper .souba__graph .graph__content {
    width: 80%;
  }
  .souba__wrapper .souba__graph .graph__radio {
    font-size: 1.1875rem;
  }
  .souba__wrapper .souba__graph .graph__radio label {
    width: calc(16.6666666667% - 5px);
    height: 2.631em;
    line-height: 2.631em;
  }
  .souba__wrapper .souba__graph .graph__canvas {
    max-width: 800px;
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  .souba__wrapper {
    padding: 40px 0;
  }
  .souba__wrapper .souba__updatetime {
    margin: 20px 0 10px;
    font-size: 15px;
  }
  .souba__wrapper .souba__price {
    font-size: max(3vw,15px);
  }
  .souba__wrapper .souba__graph .graph__content {
    width: 90%;
  }
  .souba__wrapper .souba__graph .graph__select {
    margin: 0 auto;
    width: 80%;
  }
  .souba__wrapper .souba__graph .graph__radio {
    font-size: 0.85rem;
    gap: 8px 0;
    flex-wrap: wrap;
  }
  .souba__wrapper .souba__graph .graph__radio label {
    width: calc(33.3333333333% - 5px);
    height: 2.91em;
    line-height: 2.91em;
  }
  .souba__wrapper .souba__graph .graph__canvas {
    height: 300px;
  }
}
/*---------------------------------Tasyahikaku*/
.tasyahikaku__wrapper {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  background-image: url(../assets/3_2_tasyahikaku_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  letter-spacing: normal;
  aspect-ratio: 500/186;
}
.tasyahikaku__wrapper .tasyahikaku__header {
  white-space: nowrap;
  position: relative;
  z-index: 5;
}
.tasyahikaku__wrapper .tasyahikaku__header .header__info {
  position: absolute;
  translate: -50% 0;
  left: 50%;
  display: flex;
  align-items: flex-end;
  rotate: -3deg;
}
.tasyahikaku__wrapper .tasyahikaku__header .header__info img {
  height: 1em;
  aspect-ratio: 21/37;
}
.tasyahikaku__wrapper .tasyahikaku__header .header__info img:nth-of-type(2) {
  scale: -1 1;
}
.tasyahikaku__wrapper .tasyahikaku__header .header__bg {
  position: relative;
  display: flex;
  justify-self: center;
  align-items: center;
  overflow: hidden;
  width: 100vw;
}
.tasyahikaku__wrapper .tasyahikaku__header .header__bg img {
  position: relative;
  z-index: 0;
}
.tasyahikaku__wrapper .tasyahikaku__header .header__bg h1 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
  text-align: center;
  position: absolute;
  translate: -50% 0;
  left: 50%;
  z-index: 5;
  text-shadow: 0 0 8px #fff2ce;
  letter-spacing: 0.1em;
}
.tasyahikaku__wrapper .tasyahikaku__header::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 50%;
  top: -1px;
  left: 0;
  background-color: #f4f0e0;
}
.tasyahikaku__wrapper .tasyahikaku__main {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  overflow: hidden;
}
.tasyahikaku__wrapper .tasyahikaku__main h2 span {
  font-size: 1.5em;
  text-decoration: underline;
  text-decoration-thickness: 0.75em;
  text-decoration-color: #fff396;
  text-underline-offset: -0.25em;
}
.tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__header {
  position: relative;
  background-color: #503314;
  color: white;
  height: 2em;
  line-height: 2em;
  margin: 0 auto;
  z-index: 2;
  border-radius: 2em;
  translate: 0 50%;
}
.tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content {
  position: relative;
  margin: 0 auto;
  background-color: white;
  outline: 1px solid #503314;
  z-index: 1;
}
.tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content p:nth-child(1) {
  color: #503314;
  line-height: 0.8em;
}
.tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content p:nth-child(2) {
  color: #503314;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
}
.tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content p:nth-child(2) span {
  color: #c19941;
}
.tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__challenge {
  position: relative;
  height: 100px;
  background-color: #c19941;
  color: white;
}
.tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__challenge img {
  aspect-ratio: 300/322;
  position: absolute;
  z-index: 15;
}

@media screen and (min-width: 768px) {
  .tasyahikaku__wrapper .tasyahikaku__header .header__info {
    max-width: 900px;
    width: 80vw;
    font-size: 29px;
    justify-content: flex-start;
    gap: 30px;
  }
  .tasyahikaku__wrapper .tasyahikaku__header .header__bg {
    overflow: hidden;
  }
  .tasyahikaku__wrapper .tasyahikaku__header .header__bg img {
    margin: 0 auto;
    left: 50%;
    translate: -50% 0;
    min-width: 1980px;
    width: 110vw;
    aspect-ratio: 1100/132;
  }
  .tasyahikaku__wrapper .tasyahikaku__main {
    margin-top: -20px;
    padding-bottom: 1.5em;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou {
    max-width: 800px;
    width: 80vw;
    margin: 25px auto 0;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__header {
    width: 517px;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content {
    max-width: 800px;
    padding: 60px 0 30px 0;
    width: 100%;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content p:nth-child(1) {
    font-size: 30px;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content p:nth-child(2) {
    font-size: 44px;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content p:nth-child(2) span {
    color: #c19941;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content p:nth-child(2) span:nth-child(1) {
    font-size: 80px;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content p:nth-child(2) span:nth-child(2) {
    font-size: 53px;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__updatetime {
    font-size: 20px;
    margin-top: 10px;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__challenge {
    margin: 45px auto 0 auto;
    width: 100%;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__challenge p {
    font-size: min(2.8vw, 29px);
    line-height: 100px;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__challenge img {
    width: 370px;
    bottom: -70px;
    right: -170px;
  }
}
@media screen and (max-width: 768px) {
  .tasyahikaku__wrapper .tasyahikaku__header {
    font-size: 1.1rem;
  }
  .tasyahikaku__wrapper .tasyahikaku__header .header__info {
    font-size: min(4vw,17px);
    letter-spacing: normal;
    width: 90vw;
    justify-content: center;
    gap: 15px;
  }
  .tasyahikaku__wrapper .tasyahikaku__header .header__bg {
    width: 100vw;
    padding-top: 1.5em;
    margin: 0;
  }
  .tasyahikaku__wrapper .tasyahikaku__header .header__bg img {
    width: 100vw;
    aspect-ratio: 375/79;
  }
  .tasyahikaku__wrapper .tasyahikaku__main {
    padding: 1em 0 1em 0;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou {
    width: 90vw;
    margin: 1em auto 0;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__header {
    width: 80%;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content {
    padding: 40px 0 20px;
    width: 90%;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content p:nth-child(1) {
    font-size: max(4vw, 17px);
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content p:nth-child(2) {
    font-size: max(6vw, 25px);
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content p:nth-child(2) span:nth-child(1) {
    font-size: 1.75em;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__content p:nth-child(2) span:nth-child(2) {
    font-size: 1.1em;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__sankou .sankou__updatetime {
    margin-top: 10px;
    text-align: left;
    font-size: max(3.5vw, 13px);
    margin-left: 2em;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__challenge {
    margin: 20px auto 0;
    width: 90vw;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__challenge p {
    text-align: center;
    font-size: max(4vw, 19px);
    display: inline-block;
    position: absolute;
    left: 1em;
    position: absolute;
    translate: 0 -50%;
    top: 50%;
  }
  .tasyahikaku__wrapper .tasyahikaku__main .tasyahikaku__challenge img {
    width: clamp(180px,55vw,280px);
    bottom: -20px;
    right: -55px;
  }
}
/*---------------------------------見積もり*/
.mitsumori__wrapper {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  position: relative;
  z-index: 20;
  background-image: url(../assets/4_mitsumori_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 500/249;
  width: 100%;
  height: auto;
  text-align: center;
}
.mitsumori__wrapper .mitsumori__header {
  color: white;
}
.mitsumori__wrapper .mitsumori__header::after {
  position: absolute;
  translate: -50% 0;
  left: 50%;
  position: absolute;
  margin-top: -0.5px;
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #503314;
}
.mitsumori__wrapper .mitsumori__main {
  letter-spacing: normal;
  height: auto;
  margin: 0 auto;
  background-color: white;
  outline: 1px solid #707070;
  border-radius: 11px;
}
.mitsumori__wrapper .mitsumori__main ul {
  margin: 0 auto;
}
.mitsumori__wrapper .mitsumori__main li {
  text-align: left;
}
.mitsumori__wrapper .mitsumori__main li .mitsumori__listtitle div {
  display: inline-block;
  color: white;
  background-color: #503314;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  line-height: 1.5em;
  margin-right: 0.5em;
}
.mitsumori__wrapper .mitsumori__main li .select__metal {
  position: relative;
  display: flex;
}
.mitsumori__wrapper .mitsumori__main li .select__metal label {
  text-align: center;
  height: 2.5em;
  line-height: 2.5em;
  outline: 1px solid #707070;
  border-radius: 2.5em;
}
.mitsumori__wrapper .mitsumori__main li .select__metal input[type=radio]:checked + label {
  background: #e6d7b4; /* マウス選択時の背景色を指定する */
}
.mitsumori__wrapper .mitsumori__main li .mitsumori__weight {
  padding: 0 10px;
}
.mitsumori__wrapper .mitsumori__main li .mitsumori__select select {
  padding: 0 10px;
}
.mitsumori__wrapper .mitsumori__main li .mitsumori__weight,
.mitsumori__wrapper .mitsumori__main li .mitsumori__select {
  outline: 1px solid #707070;
}
.mitsumori__wrapper .mitsumori__arrows .triangle {
  margin: 0 auto;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #c19941;
}
.mitsumori__wrapper .mitsumori__price {
  position: relative;
  height: auto;
  background-color: white;
  outline: 1px solid #707070;
  border-radius: 11px;
  color: #503314;
}
.mitsumori__wrapper .mitsumori__price .price__header {
  background-color: #503314;
  color: white;
}
.mitsumori__wrapper .price__updatetime {
  letter-spacing: normal;
}

@media screen and (min-width: 768px) {
  .mitsumori__wrapper {
    padding-bottom: 60px;
  }
  .mitsumori__wrapper .mitsumori__header {
    position: relative;
    height: 144px;
    background-color: #503314;
  }
  .mitsumori__wrapper .mitsumori__header h2 {
    font-size: min(3.2vw, 38px);
    line-height: 144px;
  }
  .mitsumori__wrapper .mitsumori__header::after {
    height: 25px;
    width: 50px;
  }
  .mitsumori__wrapper h1 {
    padding: 60px 0 50px 0;
  }
  .mitsumori__wrapper .mitsumori__main {
    max-width: 1000px;
    width: 90vw;
  }
  .mitsumori__wrapper .mitsumori__main ul {
    width: 650px;
    padding: 30px 20px;
  }
  .mitsumori__wrapper .mitsumori__main li {
    font-size: 24px;
  }
  .mitsumori__wrapper .mitsumori__main li .select__metal {
    justify-content: center;
    width: 100%;
    margin: 20px 0;
  }
  .mitsumori__wrapper .mitsumori__main li .select__metal label {
    margin: 0 10px;
    width: max(45%,145px);
  }
  .mitsumori__wrapper .mitsumori__main li .select__metal input[type=radio]:checked + label {
    background: #e6d7b4; /* マウス選択時の背景色を指定する */
  }
  .mitsumori__wrapper .mitsumori__main li .mitsumori__weight {
    width: 240px;
  }
  .mitsumori__wrapper .mitsumori__main li .mitsumori__select {
    width: 280px;
  }
  .mitsumori__wrapper .mitsumori__main li .mitsumori__weight,
  .mitsumori__wrapper .mitsumori__main li .mitsumori__select {
    height: 50px;
    margin: 20px 0 20px 50px;
  }
  .mitsumori__wrapper .mitsumori__arrows {
    margin-top: -15px;
    margin-bottom: 20px;
  }
  .mitsumori__wrapper .mitsumori__arrows .triangle {
    height: 25px;
    width: 50px;
    margin-bottom: 5px;
  }
  .mitsumori__wrapper .mitsumori__price {
    max-width: 800px;
    width: 90vw;
    margin: 50px auto 0 auto;
  }
  .mitsumori__wrapper .mitsumori__price .price__header {
    position: absolute;
    translate: -50% -50%;
    left: 50%;
    width: 362px;
    height: 3em;
    line-height: 3em;
    border-radius: 3em;
  }
  .mitsumori__wrapper .mitsumori__price .price__calc {
    padding: 40px 0 10px 0;
    font-size: 50px;
  }
  .mitsumori__wrapper .mitsumori__price .price__updatetime {
    font-size: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .mitsumori__wrapper {
    padding-bottom: 40px;
  }
  .mitsumori__wrapper .mitsumori__header h2 {
    font-size: max(5vw, 22px);
    height: auto;
    background-color: #503314;
    padding-top: 1em;
  }
  .mitsumori__wrapper .mitsumori__header::after {
    height: 40px;
    width: 100vw;
  }
  .mitsumori__wrapper h1 {
    padding: 80px 0 25px 0;
  }
  .mitsumori__wrapper .mitsumori__main {
    width: calc(98vw - 30px);
    padding: 23px 15px;
  }
  .mitsumori__wrapper .mitsumori__main ul {
    width: 100%;
  }
  .mitsumori__wrapper .mitsumori__main li {
    font-size: max(3vw, 14px);
    letter-spacing: normal;
  }
  .mitsumori__wrapper .mitsumori__main li .select__metal {
    justify-content: space-between;
    width: calc(100% - 3.5em);
    margin: 1.5em 1.5em 2em 2em;
  }
  .mitsumori__wrapper .mitsumori__main li .select__metal label {
    width: 47.5%;
  }
  .mitsumori__wrapper .mitsumori__main li .select__metal input[type=radio]:checked + label {
    background: #e6d7b4; /* マウス選択時の背景色を指定する */
  }
  .mitsumori__wrapper .mitsumori__main li .mitsumori__weight {
    width: 190px;
    margin: 1.5em 0.5em 2em 2em;
  }
  .mitsumori__wrapper .mitsumori__main li .mitsumori__select {
    width: 70%;
    margin: 1.5em 0 0 2em;
  }
  .mitsumori__wrapper .mitsumori__main li .mitsumori__weight,
  .mitsumori__wrapper .mitsumori__main li .mitsumori__select {
    height: 40px;
  }
  .mitsumori__wrapper .mitsumori__arrows {
    margin-top: -10px;
    margin-bottom: -30px;
  }
  .mitsumori__wrapper .mitsumori__arrows .triangle {
    height: 16.5px;
    width: 33px;
    margin-bottom: 2.5px;
  }
  .mitsumori__wrapper .mitsumori__price {
    width: calc(98vw - 30px);
    margin: 20px auto;
    padding: 15px;
    z-index: -5;
  }
  .mitsumori__wrapper .mitsumori__price .price__header {
    display: block;
    position: relative;
    width: 80%;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 2.5em;
    margin: 0 auto;
  }
  .mitsumori__wrapper .mitsumori__price .price__calc {
    font-size: max(8vw, 36px);
    padding: 0.3em;
  }
  .mitsumori__wrapper .mitsumori__price .price__updatetime {
    font-size: min(3.4vw, 14px);
  }
}
/*---------------------------------店舗をさがす*/
.shopsearch__wrapper {
  color: #503314;
}
.shopsearch__wrapper h2 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}
.shopsearch__wrapper img {
  aspect-ratio: 757/155;
}

@media screen and (min-width: 768px) {
  .shopsearch__wrapper h2 {
    font-size: 26px;
    margin: 50px 0 25px 0;
  }
  .shopsearch__wrapper img {
    width: 378px;
    margin: 0 auto 50px auto;
  }
}
@media screen and (max-width: 768px) {
  .shopsearch__wrapper {
    margin: 40px 0;
  }
  .shopsearch__wrapper h2 {
    font-size: min(12vw, 22px);
    margin-bottom: 25px;
  }
  .shopsearch__wrapper img {
    width: 275px;
    margin: 0 auto;
  }
}
/*---------------------------------選ばれる理由*/
.reason__wrapper {
  background-image: url(../assets/6_0_reason_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 500/429;
  width: 100%;
  height: auto;
}
.reason__wrapper .reason__list {
  display: flex;
  flex-wrap: wrap;
}
.reason__wrapper .reason__list li {
  position: relative;
}
.reason__wrapper .reason__list li img {
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 400/290;
}
.reason__wrapper .reason__list li .list__num {
  color: #c19941;
  opacity: 0.2;
}
.reason__wrapper .reason__explain {
  background-color: white;
  margin: 0 auto;
}
.reason__wrapper .reason__explain h2 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #707070;
  line-height: 2em;
}

@media screen and (min-width: 768px) {
  .reason__wrapper {
    padding: 80px 0;
  }
  .reason__wrapper .reason__list {
    margin: 80px auto 60px auto;
    max-width: 1100px;
    width: 90vw;
    justify-content: center;
    gap: 50px 85px;
  }
  .reason__wrapper .reason__list li {
    width: 310px;
    height: 425px;
  }
  .reason__wrapper .reason__list li .list__num {
    font-size: 70px;
  }
  .reason__wrapper .reason__list li .list__description {
    font-size: 24px;
    height: 84px;
  }
  .reason__wrapper .reason__list li .list__description span {
    font-size: 34px;
  }
  .reason__wrapper .reason__list li hr {
    margin-top: 20px;
  }
  .reason__wrapper .reason__list li .center__text {
    line-height: 84px;
  }
  .reason__wrapper .reason__explain {
    max-width: 1100px;
    width: calc(100vw - 60px);
    padding: 30px;
  }
  .reason__wrapper .reason__explain p {
    font-size: 24px;
  }
  .reason__wrapper .reason__explain h2 {
    font-size: 30px;
    margin-top: 30px;
    text-underline-offset: 15px;
  }
}
@media screen and (max-width: 768px) {
  .reason__wrapper {
    padding: 40px 0;
  }
  .reason__wrapper .reason__list {
    margin: 10px auto 60px auto;
    width: 100vw;
    justify-content: space-between;
  }
  .reason__wrapper .reason__list li:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
  .reason__wrapper .reason__list hr {
    width: 80vw;
    margin-top: 20px;
  }
  .reason__wrapper .reason__list hr:nth-of-type(even) {
    margin-left: 20vw;
  }
  .reason__wrapper .reason__list li {
    display: flex;
    width: 100%;
    margin-top: 30px;
  }
  .reason__wrapper .reason__list li .list__img {
    position: relative;
    margin: auto;
  }
  .reason__wrapper .reason__list li .list__img img {
    max-width: 147px;
    aspect-ratio: 147/125;
  }
  .reason__wrapper .reason__list li .list__content {
    width: 60%;
  }
  .reason__wrapper .reason__list li .list__num {
    font-size: min(20vw, 64px);
    line-height: 1em;
    margin-bottom: 5px;
  }
  .reason__wrapper .reason__list li .list__description {
    letter-spacing: -0.05em;
    font-size: min(8vw, 18px);
  }
  .reason__wrapper .reason__list li .list__description span {
    font-size: 1.35em;
  }
  .reason__wrapper .reason__list li .center__text {
    line-height: 1.5em;
  }
  .reason__wrapper .reason__explain {
    width: calc(100vw - 26px);
    text-align: justify;
    text-justify: inter-ideograph;
    letter-spacing: normal;
    padding: 18px;
  }
  .reason__wrapper .reason__explain p {
    text-align: left;
    font-size: min(5vw, 17px);
    line-height: 2em;
  }
  .reason__wrapper .reason__explain h2 {
    line-height: 2em;
    text-align: center;
    font-size: min(6vw, 20px);
    margin-top: 30px;
    text-underline-offset: 8px;
  }
}
/*---------------------------------PR(今が売り時？)*/
.pr__wrapper {
  letter-spacing: 0.1em;
}
.pr__wrapper .pr__gold {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 250/167;
}
.pr__wrapper .pr__takahashihideki {
  position: absolute;
  aspect-ratio: 300/316;
}
.pr__wrapper .pr__explain {
  letter-spacing: normal;
  position: relative;
  z-index: 5;
}
.pr__wrapper .pr__explain .explain__title {
  background-color: #503314;
  color: white;
  margin: 0 auto;
}
.pr__wrapper .pr__explain .explain__title::after {
  content: "";
  position: absolute;
  height: 15px;
  width: 25px;
  bottom: -14px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #503314;
  margin: auto;
}
.pr__wrapper .pr__explain .explain__content p {
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 0 auto;
}
.pr__wrapper .pr__explain .explain__content p span {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #c72e00;
}
.pr__wrapper .pr__explain .pr__goal {
  margin: 40px auto;
  background-color: #f4f0e0;
  border-radius: 8px;
}
.pr__wrapper .pr__explain .pr__goal .goal__explain {
  margin: auto 0;
}
.pr__wrapper .pr__explain .pr__goal .goal__explain img {
  margin: 0 auto 20px auto;
  aspect-ratio: 728/95;
}
.pr__wrapper .pr__explain .pr__goal .goal__explain span {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #c72e00;
}
.pr__wrapper .pr__explain .pr__goal img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 400/228;
}

@media screen and (min-width: 768px) {
  .pr__wrapper {
    background-image: linear-gradient(0deg, rgb(247, 247, 247), rgb(230, 230, 230));
    padding: 0 0 60px 0;
  }
  .pr__wrapper .pr__gold {
    width: 636px;
  }
  .pr__wrapper h1 span {
    font-size: 60px;
  }
  .pr__wrapper .pr__title {
    position: relative;
    max-width: 1100px;
    width: 90vw;
    padding: 120px 0 104px 0;
    margin: 0 auto;
  }
  .pr__wrapper .pr__title .pr__takahashihideki {
    width: 223px;
    bottom: 0;
    right: 10%;
  }
  .pr__wrapper .pr__explain {
    max-width: 1100px;
    width: 90vw;
    margin: 0 auto 40px auto;
  }
  .pr__wrapper .pr__explain .explain__title {
    position: absolute;
    translate: -50% 0;
    left: 50%;
    top: -34px;
    max-width: 950px;
    width: 90%;
    height: 68px;
    font-size: 28px;
  }
  .pr__wrapper .pr__explain .explain__title h2 {
    line-height: 68px;
  }
  .pr__wrapper .pr__explain .explain__content {
    background-color: white;
    padding: 80px 0 40px 0;
  }
  .pr__wrapper .pr__explain .explain__content p {
    font-size: 20px;
    max-width: 890px;
    width: 90%;
  }
  .pr__wrapper .pr__explain .pr__goal {
    width: calc(100% - 80px);
    display: flex;
    padding: 40px;
    justify-content: space-between;
    gap: 20px;
  }
  .pr__wrapper .pr__explain .pr__goal .goal__explain {
    max-width: 550px;
    width: 50%;
  }
  .pr__wrapper .pr__explain .pr__goal .goal__explain p {
    text-align: center;
  }
  .pr__wrapper .pr__explain .pr__goal .goal__explain img {
    max-width: 365px;
    width: 80%;
  }
  .pr__wrapper .pr__explain .pr__goal .goal__explain p:nth-of-type(1) {
    font-size: 22px;
  }
  .pr__wrapper .pr__explain .pr__goal .goal__explain p:nth-of-type(2) {
    font-size: 18px;
  }
  .pr__wrapper .pr__explain .pr__goal .goal__explain span {
    font-weight: 600;
    color: #c72e00;
  }
  .pr__wrapper .pr__explain .pr__goal img {
    max-width: 435px;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .pr__wrapper .pr__gold {
    width: 100vw;
  }
  .pr__wrapper .pr__title {
    position: relative;
    width: 90vw;
    display: flex;
    margin: auto;
    padding: 100px 0 50px 0;
  }
  .pr__wrapper .pr__title .pr__takahashihideki {
    min-width: 150px;
    width: 40vw;
    bottom: 0;
    right: 0;
  }
  .pr__wrapper h1 {
    display: inline-block;
    font-size: max(6vw, 30px);
    margin-left: 0px;
  }
  .pr__wrapper .pr__explain {
    width: 95vw;
    margin: 0 auto;
  }
  .pr__wrapper .pr__explain .explain__title {
    position: relative;
    width: 100%;
    font-size: max(4vw, 20px);
    padding: 1em 0;
  }
  .pr__wrapper .pr__explain .explain__content {
    padding: 30px 0;
  }
  .pr__wrapper .pr__explain .explain__content p {
    width: 95%;
  }
  .pr__wrapper .pr__explain .pr__goal {
    padding: 22px;
  }
  .pr__wrapper .pr__explain .pr__goal .goal__explain {
    width: 100%;
  }
  .pr__wrapper .pr__explain .pr__goal .goal__explain img {
    width: 100%;
  }
  .pr__wrapper .pr__explain .pr__goal img {
    margin-top: 20px;
    width: 100%;
  }
}
/*---------------------------------金の買取事例*/
.case__wrapper {
  background-image: linear-gradient(0deg, rgb(253, 237, 172), rgb(237, 228, 191) 50%, rgb(244, 240, 224));
}
.case__wrapper .case__list {
  width: 95vw;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.case__wrapper .case__list li {
  background-color: white;
  display: flex;
}
.case__wrapper .case__list li img {
  aspect-ratio: 300/256;
}
.case__wrapper .case__list li div .price {
  color: #c72e00;
}
.case__wrapper .case__list li:nth-of-type(even) {
  animation-delay: 0.2s;
}

@media screen and (min-width: 768px) {
  .case__wrapper {
    padding: 80px 0 10px 0;
  }
  .case__wrapper h1 {
    padding-bottom: 60px;
  }
  .case__wrapper .case__list {
    max-width: 1100px;
    width: 90vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
  .case__wrapper .case__list li {
    width: 515px;
    height: 210px;
  }
  .case__wrapper .case__list li img {
    height: 100%;
  }
  .case__wrapper .case__list li div {
    margin: auto;
  }
  .case__wrapper .case__list li div .price {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .case__wrapper .case__list li div .price span {
    font-size: 33px;
  }
  .case__wrapper .case__list li:nth-of-type(even) {
    animation-delay: 0.2s;
  }
}
@media screen and (max-width: 768px) {
  .case__wrapper {
    padding: 40px 0 30px 0;
  }
  .case__wrapper h1 {
    padding-bottom: 30px;
  }
  .case__wrapper .case__list {
    justify-content: space-between;
    gap: 20px 0;
  }
  .case__wrapper .case__list li {
    width: 48.5%;
    flex-direction: column;
  }
  .case__wrapper .case__list li img {
    width: 100%;
  }
  .case__wrapper .case__list li div {
    padding: 10px 0;
  }
  .case__wrapper .case__list li div .price {
    font-size: max(4vw, 18px);
  }
  .case__wrapper .case__list li div .price span {
    font-size: 1.2em;
  }
  .case__wrapper .case__list li div .name {
    display: inline-block;
    font-size: max(3.5vw, 13px);
    margin: 5px 0;
  }
  .case__wrapper .case__list li:nth-of-type(-n + 2) .name {
    height: 2.5em;
    line-height: 2.5em;
  }
  .case__wrapper .case__list li:nth-of-type(n + 3) .name {
    line-height: 1.5em;
  }
  .case__wrapper::after {
    height: 40px;
    bottom: -40px;
  }
}
/*---------------------------------どんな状態の貴金属でも*/
.metalstate__wrapper {
  overflow-x: hidden;
}
.metalstate__wrapper .triangle {
  position: relative;
  display: block;
  z-index: 10;
  width: 100vw;
  height: 120px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #fdedac;
  top: -1px;
  z-index: -5;
}
.metalstate__wrapper h1 span {
  color: #c19941;
  border: 2px solid;
}
.metalstate__wrapper .metalstate__bg {
  width: 100vw;
}
.metalstate__wrapper .metalstate__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  overflow: hidden;
}
.metalstate__wrapper .metalstate__list figure {
  position: relative;
}
.metalstate__wrapper .metalstate__list figure img {
  position: relative;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  aspect-ratio: 300/203;
}
.metalstate__wrapper .metalstate__list figure figcaption {
  position: relative;
}

@media screen and (min-width: 768px) {
  .metalstate__wrapper {
    padding-bottom: 80px;
  }
  .metalstate__wrapper img {
    position: absolute;
    width: 700px;
    top: 0;
    left: 0;
    z-index: 5;
    aspect-ratio: 250/171;
  }
  .metalstate__wrapper h1 {
    letter-spacing: 0.1em;
    margin-top: 60px;
    line-height: 1.5em;
  }
  .metalstate__wrapper h1 span {
    padding: 5px 15px;
    margin-right: 15px;
  }
  .metalstate__wrapper p {
    font-size: 22px;
    margin: 40px 0 60px 0;
  }
  .metalstate__wrapper .metalstate__list {
    max-width: 1100px;
    width: 90vw;
    justify-content: center;
    gap: 40px 15px;
  }
  .metalstate__wrapper .metalstate__list figure {
    width: 205px;
  }
  .metalstate__wrapper .metalstate__list figure figcaption {
    margin-top: 5px;
    font-size: 19px;
  }
}
@media screen and (max-width: 768px) {
  .metalstate__wrapper {
    padding-bottom: 30px;
  }
  .metalstate__wrapper .triangle {
    position: relative;
    display: block;
    z-index: 10;
    width: 100vw;
    height: 40px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: #fdedac;
    top: -1px;
    z-index: 5;
  }
  .metalstate__wrapper img {
    position: absolute;
    width: 100vw;
    aspect-ratio: 300/235;
    top: 0;
    left: 0;
  }
  .metalstate__wrapper h1 {
    font-size: max(7vw, 24px);
    margin-top: 40px;
  }
  .metalstate__wrapper h1 span {
    padding: 2.5px 5px;
    margin-right: 10px;
  }
  .metalstate__wrapper p {
    font-size: max(4.5vw, 17px);
    margin: 10px 0 40px 0;
  }
  .metalstate__wrapper .metalstate__list {
    width: 80vw;
    justify-content: space-between;
    gap: 20px 0;
  }
  .metalstate__wrapper .metalstate__list figure {
    width: 48.5%;
    display: flex;
    flex-direction: column;
  }
  .metalstate__wrapper .metalstate__list figure img {
    top: 0;
  }
  .metalstate__wrapper .metalstate__list figure figcaption {
    margin-top: 10px;
  }
}
/*---------------------------------買取までの流れ*/
.flow__wrapper {
  background-color: #efe9e2;
  overflow-x: hidden;
}
.flow__wrapper .flow__content {
  position: relative;
  z-index: 10;
}
.flow__wrapper .flow__bg--top,
.flow__wrapper .flow__bg--bottom {
  position: absolute;
  mix-blend-mode: hard-light;
  opacity: 0.6;
  z-index: 5;
}
.flow__wrapper .flow__bg--top {
  top: 0;
  left: 0;
  aspect-ratio: 500/94;
}
.flow__wrapper .flow__bg--bottom {
  bottom: 0;
  right: 0;
  aspect-ratio: 500/232;
}
.flow__wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
.flow__wrapper ul li:nth-child(-n+6) .step {
  margin-bottom: 5px;
}
.flow__wrapper ul li:nth-child(-n+6) .step::after {
  content: "";
  position: absolute;
  translate: -50% 0;
  left: 50%;
  bottom: -27px;
  height: 28px;
  width: 100%;
  margin: 0 auto;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #a49065;
}
.flow__wrapper ul li {
  background-color: white;
  display: flex;
}
.flow__wrapper ul li .step {
  position: relative;
  background-color: #a49065;
  color: white;
  height: auto;
}
.flow__wrapper ul li .step img {
  width: 100%;
  aspect-ratio: 244/128;
}
.flow__wrapper ul li .step__explain {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .flow__wrapper {
    padding: 80px 0;
  }
  .flow__wrapper .flow__bg--top,
  .flow__wrapper .flow__bg--bottom {
    width: 1450px;
  }
  .flow__wrapper ul {
    width: 90vw;
    max-width: 1040px;
    margin: 60px auto;
  }
  .flow__wrapper ul li {
    padding: 0 30px;
  }
  .flow__wrapper ul li .step {
    width: 122px;
  }
  .flow__wrapper ul li .step p {
    margin: 10px 0 15px 0;
    font-size: 19px;
    line-height: 38px;
  }
  .flow__wrapper ul li .step p span {
    font-size: 42px;
  }
  .flow__wrapper ul li .step__explain {
    margin: 30px 0 30px 50px;
    width: 720px;
  }
  .flow__wrapper ul li .step__explain h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .flow__wrapper ul li .step__explain p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .flow__wrapper {
    padding: 40px 0;
  }
  .flow__wrapper .flow__bg--top,
  .flow__wrapper .flow__bg--bottom {
    width: 100%;
  }
  .flow__wrapper ul {
    width: 95vw;
    margin: 30px auto;
  }
  .flow__wrapper ul li {
    padding: 0 15px;
  }
  .flow__wrapper ul li .step {
    flex: 1;
  }
  .flow__wrapper ul li .step p {
    margin-top: 10px;
    font-size: max(3.5vw, 14px);
    line-height: 2em;
  }
  .flow__wrapper ul li .step p span {
    font-size: max(7vw, 30px);
  }
  .flow__wrapper ul li .step img {
    margin-top: 10px;
    scale: 1.2;
  }
  .flow__wrapper ul li .step__explain {
    flex: 4;
    margin: 10px 0 10px 20px;
  }
  .flow__wrapper ul li .step__explain h3 {
    font-size: max(4vw, 18px);
  }
  .flow__wrapper ul li .step__explain p {
    padding: 1em 0;
    font-size: max(3.5vw, 14px);
  }
}
/*---------------------------------店舗情報*/
.shopinfo__wrapper .shopinfo__about {
  display: flex;
  width: 97%;
}
.shopinfo__wrapper .shopinfo__about .shopinfo__shopname {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #a49065;
}
.shopinfo__wrapper .shopinfo__about img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 500/289;
}
.shopinfo__wrapper .shopinfo__about .shopinfo__access .access__box {
  text-align: left;
  margin: 10px 0;
  display: flex;
}
.shopinfo__wrapper .shopinfo__about .shopinfo__access .access__box h4 {
  width: 27.5%;
}
.shopinfo__wrapper .shopinfo__about .shopinfo__access .access__box p {
  width: 72.5%;
}
.shopinfo__wrapper .shopinfo__contact {
  display: flex;
  width: 100%;
}
.shopinfo__wrapper .googlemap {
  margin-top: 40px;
  border: none;
}
.shopinfo__list_name{
  font-size: 26px;
  background-color: #c19941;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .shopinfo__wrapper {
    padding: 80px 0;
  }
  .shopinfo__wrapper .shopinfo__about {
    /* max-width: 1100px; */
    margin: 40px auto 50px auto;
    justify-content: space-between;
  }
  .shopinfo__wrapper .shopinfo__about .shopinfo__shopname {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .shopinfo__wrapper .shopinfo__about img {
    max-width: 508px;
    width: 45%;
  }
  .shopinfo__wrapper .shopinfo__about .shopinfo__access {
    /* max-width: 530px; */
    width: 50%;
  }
  .shopinfo__wrapper .shopinfo__about .shopinfo__access .access__box {
    font-size: min(1.4vw,21px);
  }
  .shopinfo__wrapper .shopinfo__contact {
    justify-content: space-between;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
    max-width: 800px;
    margin: 5px auto 0;
    align-items: flex-end;
  }
  .shopinfo__wrapper .shopinfo__contact .contact__phone {
    max-width: 400px;
    width: 50%;
    display: flex;
    flex-direction: column;
    color: #a49065;
  }
  .shopinfo__wrapper .shopinfo__contact .contact__phone .contact__phone--top {
    display: flex;
    justify-content: center;
  }
  .shopinfo__wrapper .shopinfo__contact .contact__phone .contact__phone--top img {
    width: 35px;
    height: 34px;
    margin: auto 20px 5px 0;
  }
  .shopinfo__wrapper .shopinfo__contact .contact__phone .contact__phone--top p {
    font-size: 36px;
  }
  .shopinfo__wrapper .shopinfo__contact .contact__phone p {
    font-size: min(1.8vw, 21px);
    margin: 5px 0;
  }
  .shopinfo__wrapper .shopinfo__contact .contact__phone hr {
    color: #a49065;
  }
  .shopinfo__wrapper .shopinfo__contact .contact__line {
    max-width: 386px;
    width: 45%;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  }
  .shopinfo__wrapper .shopinfo__contact .contact__line .cta__content {
    position: relative;
    width: 35vw;
    max-width: 386px;
    aspect-ratio: 386/80;
    display: flex;
    justify-content: center;
  }
  .shopinfo__wrapper .shopinfo__contact .contact__line .cta__content img {
    max-width: 38px;
    width: 15%;
    margin: auto;
  }
  .shopinfo__wrapper .shopinfo__contact .contact__line .cta__content p {
    letter-spacing: normal;
    margin: auto auto auto 0;
    color: white;
    font-size: min(2vw,23px);
  }
  .googlemap {
    max-width: 800px;
    width: 90vw;
    aspect-ratio: 800/250;
  }
}
@media screen and (max-width: 768px) {
  .shopinfo__wrapper {
    padding: 40px 0;
  }
  .shopinfo__wrapper .shopinfo__about {
    margin: 20px auto;
    flex-direction: column;
  }
  .shopinfo__wrapper .shopinfo__about .shopinfo__shopname {
    font-size: max(5vw, 20px);
  }
  .shopinfo__wrapper .shopinfo__about img {
    width: 100%;
    margin: 15px 0;
  }
  .shopinfo__wrapper .shopinfo__about .shopinfo__access {
    width: 95%;
    margin: 0 auto;
  }
  .shopinfo__wrapper .shopinfo__about .shopinfo__access hr {
    height: 1px;
    background-color: black;
    border: none;
  }
  .shopinfo__wrapper .shopinfo__about .shopinfo__access .access__box {
    font-size: max(4vw, 16px);
  }
  .shopinfo__wrapper h3 {
    font-size: max(4vw, 14px);
  }
  .shopinfo__wrapper .shopinfo__contact {
    /* justify-content: space-around; */
    flex-direction: column;
    margin: 15px auto 0 auto;
    gap: 0 5px;
  }
  .shopinfo__wrapper .shopinfo__contact .cta__phone {
    background-color: #a49065;
  }
  .shopinfo__wrapper .shopinfo__contact .cta__content {
    position: relative;
    width: 100%;
    /* max-width: 148px; */
    /* aspect-ratio: 168/80; */
    min-height: 75px;
    margin-bottom: 8px;
  }
  .shopinfo__wrapper .shopinfo__contact .cta__content img {
    max-width: 27px;
    width: 15%;
    margin: auto;
  }
  .shopinfo__wrapper .shopinfo__contact .cta__content p {
    letter-spacing: normal;
    margin: auto auto auto 0;
    color: white;
    font-size: min(4.5vw,18px);
  }
  .googlemap {
    max-width: 343px;
    /* width: 100%; */
    aspect-ratio: 343/232;
    /* min-height: 300px; */
  }
  .shopinfo__list_name{
    font-size: 18px;
  }
  .shopinfo__wrapper .shopinfo__about {
    width: 100%;
  }
}
.f-accordion__list {
  margin: 0 auto;
  margin-top: 50px;
  max-width: 1100px;
  list-style: none;
  padding: 0;
  width: 90vw;
}
.f-accordion__item {
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
.f-accordion__head {
  /* background-color: #f5f5f5; */
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.f-accordion__icon {
  width: 15px;
  height: 15px;
  position: relative;
}
.f-accordion__icon::before, .f-accordion__icon::after {
  content: '';
  position: absolute;
  background-color: #fff;
  width: 15px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.f-accordion__icon::after {
  transform: translateY(-50%) rotate(90deg);
}
.f-accordion__item.active .f-accordion__head .f-accordion__icon::after{
  transform: translateY(-50%) rotate(0deg);
}
.f-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding: 0 15px;
  background-color: #fff;
}
.f-accordion__item.active .f-accordion__body {
  max-height: 500px; /* 適宜変更 */
  padding: 15px 15px 30px;
}

/*---------------------------------お客様の声*/
.customersvoice__wrapper {
  background-color: #f4f0e0;
}
.customersvoice__wrapper .customersvoice__content {
  width: 90vw;
  margin: 0 auto;
}
.customersvoice__wrapper .customersvoice__content .store__purchase {
  position: absolute;
  translate: -50% 0;
  left: 50%;
  color: white;
  background-color: #503314;
}
.customersvoice__wrapper .customersvoice__content .customersvoice__example .header__person img {
  aspect-ratio: 108/106;
}
.customersvoice__wrapper .customersvoice__content .customersvoice__example .example__text .text__box {
  position: relative;
  text-align: center;
}
.customersvoice__wrapper .customersvoice__content .customersvoice__example .example__text .text__box h3 {
  height: 3em;
  font-size: 1em;
}
.customersvoice__wrapper .customersvoice__content .customersvoice__example .example__text .text__box .text {
  text-align: justify;
  margin-top: 20px;
  font-size: 0.75em;
}

@media screen and (min-width: 768px) {
  .customersvoice__wrapper {
    padding: 80px 0;
  }
  .customersvoice__wrapper .customersvoice__content {
    max-width: 1100px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  .customersvoice__wrapper .customersvoice__content .customersvoice__example:nth-child(n+2) h3 {
    line-height: 3em;
    white-space: nowrap;
  }
  .customersvoice__wrapper .customersvoice__content .customersvoice__example {
    position: relative;
    padding: 40px 30px;
    background-color: white;
    border: 1px solid #503314;
    border-radius: 10px;
    margin-top: 110px;
  }
  .customersvoice__wrapper .customersvoice__content .customersvoice__example img {
    position: absolute;
    translate: -50% 0;
    left: 50%;
    top: -110px;
    height: 110px;
  }
  .customersvoice__wrapper .customersvoice__content .customersvoice__example .example__text {
    position: relative;
    width: 100%;
  }
  .customersvoice__wrapper .customersvoice__content .customersvoice__example .example__text .store__purchase {
    width: 117px;
    height: 2em;
    line-height: 2em;
    border-radius: 2em;
    top: -56px;
    z-index: 10;
  }
  .customersvoice__wrapper .customersvoice__content .customersvoice__example .example__text .text__box {
    max-width: 290px;
    font-size: clamp(18px,1.8vw, 22px);
  }
}
@media screen and (max-width: 768px) {
  .customersvoice__wrapper {
    padding: 40px 0 80px;
  }
  .customersvoice__wrapper .store__purchase {
    font-size: min(3vw,14px);
    width: 110%;
    height: 2em;
    line-height: 2em;
    border-radius: 2em;
    bottom: -1em;
  }
  .customersvoice__wrapper .customersvoice__content {
    margin-top: 40px;
    background-color: white;
    border: 1px solid #503314;
    border-radius: 17px;
    max-width: 90vw;
  }
  .customersvoice__wrapper .customersvoice__content .customersvoice__example {
    position: relative;
    width: 100%;
    padding: 20px 20px 40px 20px;
  }
  .customersvoice__wrapper .customersvoice__content .customersvoice__example .example__header {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 900;
    letter-spacing: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .customersvoice__wrapper .customersvoice__content .customersvoice__example .example__header .header__person {
    position: relative;
    height: 20vw;
    width: 20vw;
    border-radius: 100%;
    background-color: #f4f0e0;
  }
  .customersvoice__wrapper .customersvoice__content .customersvoice__example .example__header .header__person img {
    width: 100%;
  }
  .customersvoice__wrapper .customersvoice__content .customersvoice__example .example__header h2 {
    width: 58vw;
  }
  .customersvoice__wrapper .customersvoice__content .customersvoice__example .example__text {
    text-align: justify;
    margin-top: 30px;
    font-size: min(3.5vw,16px);
    line-height: 1.5em;
  }
  .customersvoice__wrapper .customersvoice__content .customersvoice__example .example__text .text__box {
    font-size: clamp(19px,1.8vw, 30px);
  }
}
/*---------------------------------お客様の声　Slick UI*/
@media screen and (max-width: 768px) {
  .dots__wrap {
    position: absolute;
    translate: -50% 0;
    left: 50%;
    bottom: -50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
  }
  .dots__wrap li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #503314;
    border-radius: 50%;
    cursor: pointer;
  }
  .dots__wrap li:hover,
  .dots__wrap li.slick-active {
    background: #c19941;
  }
  .dots__wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
  }
  .arrows__wrap {
    justify-content: space-between;
    display: flex;
    width: 90vw;
    position: absolute;
    translate: -50% 0;
    left: 50%;
    bottom: 30px;
    align-items: center;
    justify-content: space-between;
  }
  .prev-arrow,
  .next-arrow {
    display: block;
    width: 132px;
    height: 30px;
    background: #503314;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
  }
  .prev-arrow::before,
  .next-arrow::before {
    content: "";
    position: absolute;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
    height: 15px;
    width: 12.9903810568px;
    background-color: white;
  }
  .prev-arrow::before {
    -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
            clip-path: polygon(0 50%, 100% 0, 100% 100%);
  }
  .next-arrow::before {
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
}
/*---------------------------------よくある質問*/
.question__wrapper {
  letter-spacing: normal;
}
.question__wrapper .question__content li {
  text-align: justify;
}
.question__wrapper .question__content li .question {
  height: 55px;
  line-height: 55px;
  background-color: #a49065;
  color: white;
}
.question__wrapper .question__content li .question span {
  margin: auto 20px;
  text-align: center;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background-color: white;
  color: #c19941;
  border-radius: 30px;
}

@media screen and (min-width: 768px) {
  .question__wrapper {
    margin: 80px 0 40px 0;
  }
  .question__wrapper .question__content {
    width: 90vw;
    max-width: 880px;
    margin: 50px auto 0 auto;
  }
  .question__wrapper .question__content li .question {
    font-size: 20px;
  }
  .question__wrapper .question__content li .answer {
    padding: 20px 70px 40px 70px;
  }
}
@media screen and (max-width: 768px) {
  .question__wrapper {
    padding-top: 40px;
  }
  .question__wrapper .question__content {
    width: 95vw;
    margin: 40px auto 0 auto;
  }
  .question__wrapper .question__content li .question span {
    margin: auto 20px;
    text-align: center;
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    background-color: white;
    color: #c19941;
    border-radius: 30px;
  }
  .question__wrapper .question__content li .answer {
    padding: 10px 20px 40px;
  }
}
/*---------------------------------お問い合わせ*/
.p-contact__error {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  display: none;
  color: #c72e00;
  margin-bottom: 20px;
}

.contact__wrapper {
  background-color: #f4f0e0;
  /* カスタムチェックボックスのスタイル */
  /* チェックボックスの見た目を作る */
  /* チェック状態のスタイル */
  /* チェックマークを表示 */
}
.contact__wrapper .p-contact__item {
  margin-bottom: 10px;
}
.contact__wrapper .p-contact__inner {
  text-align: left;
  width: 90vw;
}
.contact__wrapper .p-contact__label {
  display: flex;
}
.contact__wrapper .p-contact__label span {
  text-align: center;
  height: 20px;
  width: 44px;
  background-color: #c72e00;
  color: white;
  font-size: 12px;
  margin: 4px 0 0 30px;
  border-radius: 2px;
}
.contact__wrapper .p-contact__input,
.contact__wrapper .p-contact__textarea,
.contact__wrapper .p-contact__select {
  margin: 10px 0;
  font-size: 1rem;
  outline: 1px solid #d5d5d5;
  border-radius: 4px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.contact__wrapper .p-contact__input,
.contact__wrapper .p-contact__select {
  height: 50px;
  padding-left: 20px;
}
.contact__wrapper .p-contact__chk label {
  position: relative;
  padding-left: 45px;
  margin: auto;
  cursor: pointer;
  font-size: 16px;
  color: #363636;
}
.contact__wrapper .p-contact__chk label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px; /* 四角形の幅 */
  height: 30px; /* 四角形の高さ */
  outline: 1px solid #d5d5d5;
  background-color: #fff; /* 背景色 */
  transition: background-color 0.3s, border-color 0.3s;
}
.contact__wrapper .p-contact__chk input[type=checkbox]:checked + label::before {
  background-color: #503314; /* チェック時の背景色 */
  border-color: #503314; /* チェック時の枠線色 */
}
.contact__wrapper .p-contact__chk input[type=checkbox]:checked + label::after {
  content: "✔";
  display: block;
  left: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #fff; /* チェックマークの色 */
  font-weight: bold;
}
.contact__wrapper .p-contact__container {
  position: relative;
  margin: 0 auto;
}
.contact__wrapper .p-contact__container button {
  text-align: center;
  line-height: 65px;
  display: block;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 100%;
  border: none;
  background-color: #a49065;
  color: white;
  font-size: 22px;
  box-shadow: 0 4px rgba(164, 144, 101, 0.6);
  border-radius: 65px;
}
.contact__wrapper .p-contact__container::after {
  content: "";
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 40px;
  height: 15px;
  width: 12.9903810568px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  background-color: white;
  margin: auto;
  transition: 0.5s;
}
.contact__wrapper .p-contact__btn:disabled {
  background-color: #a5a5a5;
}

@media screen and (min-width: 768px) {
  .contact__wrapper {
    padding: 80px 0;
    background-color: #f4f0e0;
  }
  .contact__wrapper .p-contact__inner {
    max-width: 800px;
    margin: 60px auto 80px auto;
  }
  .p-contact__textarea {
    width: calc(100% - 40px);
    padding: 20px;
    max-width: 720px;
    height: 150px;
  }
  .select__wrapper {
    width: calc(100% - 40px);
    max-width: 336px;
  }
  .p-contact__input {
    width: calc(100% - 20px);
  }
  .p-contact__input {
    max-width: 760px;
  }
  .p-contact__select {
    max-width: 336px;
  }
  .p-contact__chk {
    width: 300px;
    margin: 50px auto;
  }
  .p-contact__chk label::before {
    width: 30px; /* 四角形の幅 */
    height: 30px; /* 四角形の高さ */
    line-height: 30px;
    font-size: 14px;
    margin-left: -8px;
  }
  .p-contact__chk label {
    padding-left: 45px;
  }
  .p-contact__container {
    width: 340px;
    height: 65px;
  }
}
@media screen and (max-width: 768px) {
  .contact__wrapper {
    padding: 40px 0;
  }
  .contact__wrapper .p-contact__inner {
    margin: 40px auto 20px;
  }
  .contact__wrapper .p-contact__input {
    width: 100%;
  }
  .contact__wrapper .p-contact__textarea {
    width: 100%;
    padding: 20px;
    max-width: 720px;
    height: 150px;
  }
  .contact__wrapper .p-contact__chk {
    font-size: 16px;
    width: 270px;
    margin: 20px auto 30px auto;
  }
  .contact__wrapper .p-contact__chk label::before {
    width: 23px; /* 四角形の幅 */
    height: 23px; /* 四角形の高さ */
    line-height: 23px;
    font-size: 14px;
    margin-left: -4.5px;
  }
  .contact__wrapper .p-contact__chk label {
    padding-left: 30px;
    white-space: nowrap;
  }
  .contact__wrapper .p-contact__container {
    font-size: 20px;
    width: 275px;
    height: 61px;
  }
  .contact__wrapper .p-contact__container::after {
    content: "";
    position: absolute;
    translate: 0 -50%;
    top: 50%;
    right: 40px;
    height: 15px;
    width: 12.9903810568px;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
            clip-path: polygon(0 0, 0 100%, 100% 50%);
    background-color: white;
    margin: auto;
  }
}
/*---------------------------------Footer*/
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  footer {
    background-color: #503314;
    color: white;
    height: 31px;
  }
  footer p {
    font-size: 10px;
    line-height: 31px;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  footer {
    background-color: #503314;
    color: white;
    height: 31px;
  }
  footer p {
    font-size: 10px;
    line-height: 31px;
  }
}
/*---------------------------------アニメーション遅延*/
@media screen and (min-width: 768px) {
  .metalstate__list figure:nth-of-type(2) {
    animation-delay: 0.2s;
  }
  .metalstate__list figure:nth-of-type(3) {
    animation-delay: 0.2s;
  }
}
@media screen and (min-width: 768px) and (max-width: 1224px) {
  .reason__list li:nth-of-type(2) div {
    animation-delay: 0.2s;
  }
}
@media screen and (min-width: 1225px) {
  .reason__list li:nth-of-type(3n - 1) div {
    animation-delay: 0.2s;
  }
  .reason__list li:nth-of-type(3n) div {
    animation-delay: 0.4s;
  }
}
@media screen and (min-width: 1173px) {
  .case__list li:nth-of-type(even) {
    animation-delay: 0.2s;
  }
}
@media screen and (min-width: 1207px) {
  .metalstate__list figure:nth-of-type(5n-3) {
    animation-delay: 0.2s;
  }
  .metalstate__list figure:nth-of-type(5n-2) {
    animation-delay: 0.4s;
  }
  .metalstate__list figure:nth-of-type(5n-1) {
    animation-delay: 0.6s;
  }
  .metalstate__list figure:nth-of-type(5n) {
    animation-delay: 0.8s;
  }
}
@media screen and (min-width: 962px) and (max-width: 1206px) {
  .metalstate__list figure:nth-of-type(4n-2) {
    animation-delay: 0.2s;
  }
  .metalstate__list figure:nth-of-type(4n-1) {
    animation-delay: 0.4s;
  }
  .metalstate__list figure:nth-of-type(4n) {
    animation-delay: 0.6s;
  }
}
@media screen and (min-width: 768px) and (max-width: 961px) {
  .metalstate__list figure:nth-of-type(3n-1) {
    animation-delay: 0.2s;
  }
  .metalstate__list figure:nth-of-type(3n) {
    animation-delay: 0.4s;
  }
}
@media screen and (max-width: 768px) {
  .reason__list li div:nth-of-type(1) {
    animation-delay: 0.2s;
  }
  .case__list li:nth-of-type(even) {
    animation-delay: 0.2s;
  }
  .metalstate__list figure:nth-of-type(even) {
    animation-delay: 0.2s;
  }
}
/*---------------------------------フォント指定*/
.reason__list {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}

.reason__explain p {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}
.reason__explain h2 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}

.pr__wrapper {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}
.pr__wrapper .pr__explain {
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}
.pr__wrapper .pr__goal p {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-ideograph;
}
.pr__wrapper .pr__goal span {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #c72e00;
}

.case__wrapper {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}

.metalstate__wrapper h1 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
  line-height: 1.75em;
}
.metalstate__wrapper p {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}
.metalstate__wrapper figcaption {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 0.8rem;
}

.flow__wrapper {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
}
.flow__wrapper .step__explain p {
  font-size: 1rem;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.shopinfo__wrapper {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
}
.shopinfo__wrapper .access__box {
  font-size: 1rem;
}
.shopinfo__wrapper .access__box p {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
.shopinfo__wrapper h3 {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}

.customersvoice__content .store__purchase {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}
.customersvoice__content .example__text h3 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
}
.customersvoice__content .example__text .text {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.question__content .question {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
}
.question__content .answer {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.p-contact__label {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
}

.p-contact__chk {
  font-size: 1rem;
  letter-spacing: normal;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}

.p-contact__btn {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}

footer {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */