/*
 * Base
 * -------------------------------------------------------------------
 */
/*	Reset
-------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  padding: 0;
  margin: 0;
  border: 0;
}

a {
  text-decoration: none;
  outline: none;
}

/*	Typography
-------------------------------*/
html {
  font-size: 62.5%;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

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

/*	Layout
-------------------------------*/
article, aside, footer, header, nav, section, main {
  display: block;
}

* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table tr th, table tr td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

ol, ul {
  list-style: none;
}

img {
  border-style: none;
  vertical-align: middle;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

img, svg {
  width: auto;
  height: auto;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before,
q:after, q:before {
  content: "";
  content: none;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

label[for] {
  cursor: pointer;
}

/*	Attributes & States
-------------------------------*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

html {
  font-size: 62.5%;
  margin-top: 0 !important;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 2;
  letter-spacing: 0.08em;
  background-color: #F9F9F9;
  color: #3F494C;
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.3rem;
  }
}

.flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    display: block;
  }
}

main {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 0;
  }
}
@media screen and (max-width: 1250px) {
  main {
    padding-top: 59px;
  }
}

/*
 * Module
 * -------------------------------------------------------------------
 */
.header {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #F9F9F9;
  padding: 20px 40px;
  transition: all 0.6s;
}
@media screen and (max-width: 1250px) {
  .header {
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    display: block;
    top: -100vh;
    text-align: center;
  }
}

.header.open {
  width: 100%;
  margin: 0;
  top: 59px;
  opacity: 1;
  position: fixed;
}
.header.open .humburger > .humburger__item--1 {
  background: black;
  transform: rotate(135deg);
  top: 28px;
}
.header.open .humburger > .humburger__item--2 {
  background: black;
  opacity: 0;
}
.header.open .humburger > .humburger__item--3 {
  background: black;
  transform: rotate(45deg);
  top: 28px;
}
.header.open .header__logo {
  text-align: center;
}

.header::-webkit-scrollbar {
  display: none;
}

.header__logo {
  box-sizing: border-box;
  top: 0;
  left: 0;
  font-family: "bigmoore", serif;
  font-size: 60px;
  line-height: 1;
}
@media screen and (max-width: 1250px) {
  .header__logo {
    text-align: center;
    font-size: 31px;
  }
}

.header__inner {
  display: flex;
  z-index: 999;
}
@media screen and (max-width: 1250px) {
  .header__inner {
    display: block;
    margin: 30px auto 0;
  }
}

.header__item {
  display: block;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  color: black;
  font-size: 16px;
  position: relative;
}
@media screen and (max-width: 1250px) {
  .header__item {
    padding: 10px;
    border-bottom: none;
    font-size: 14px;
  }
}
.header__item ul {
  visibility: hidden;
  opacity: 0;
}
.header__item:hover {
  opacity: 0.6;
}
.header__item:hover > ul {
  visibility: visible;
  opacity: 1;
}
.header__item li:hover {
  opacity: 0.6;
}

.humburger {
  cursor: pointer;
  right: 0;
  top: 0;
  width: 100%;
  height: 59px;
  text-align: right;
  z-index: 1000;
  position: fixed;
  background-color: #F9F9F9;
  display: none;
}
@media screen and (max-width: 1250px) {
  .humburger {
    display: block;
  }
}
.humburger__item {
  width: 22px;
  height: 2px;
  background: black;
  transition: all 0.5s;
  position: absolute;
  right: 20px;
}
.humburger__item--1 {
  transform: rotate(0);
  top: 20px;
}
.humburger__item--2 {
  top: 27px;
  opacity: 1;
}
.humburger__item--3 {
  transform: rotate(0);
  top: 34px;
}

.footer {
  padding: 100px 120px;
  background-color: #93A2AC;
  color: white;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px;
  }
}

.footer__logo {
  width: 220px;
  height: 50px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    display: block;
  }
}

.footer__inner__address {
  width: 24.0833333333%;
}
.footer__inner__address p {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 1.6px;
}
.footer__inner__address p:last-of-type {
  font-size: 14px;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 768px) {
  .footer__inner__address {
    width: 100%;
  }
}

.footer__inner__menu div {
  display: flex;
}
.footer__inner__menu div:last-of-type {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .footer__inner__menu div:last-of-type {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner__menu div {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.footer__inner__menu div a {
  padding: 0 15px;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer__inner__menu div a {
    font-size: 14px;
    padding: 0 30px 0 0;
  }
}
.footer__inner__menu div a.sns {
  font-size: 14px;
  margin: 0 15px;
  padding: 7px 15px 7px 47px;
  color: #DF2E6E;
  border-radius: 22px;
  font-weight: bold;
  border: 1px solid #E56B8B;
  background-color: white;
  background-size: 24px 24px;
  background-position: top 9px left 16px;
  background-repeat: no-repeat;
}
.footer__inner__menu div a.sns.hotpepper {
  background-image: url(../asset/img/hotpepper_icon.svg);
}
.footer__inner__menu div a.sns.instagram {
  background-image: url(../asset/img/instagram_icon.svg);
}
@media screen and (max-width: 768px) {
  .footer__inner__menu div a.sns {
    margin: 15px 15px 0 0;
    font-size: 13px;
    padding: 5px 15px 5px 37px;
    background-size: 18px 18px;
    background-position: top 9px left 12px;
  }
}

.reserve {
  padding: 130px 40px;
}
@media screen and (max-width: 768px) {
  .reserve {
    padding-top: 100px;
  }
}

.reserve__inner {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}

.reserve__title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 3.1rem;
  line-height: 1;
  font-family: "bigmoore", serif;
}
@media screen and (max-width: 768px) {
  .reserve__title {
    font-size: 22px;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
  }
}

.reserve__text {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .reserve__text {
    margin-bottom: 24px;
    line-height: 28px;
  }
}

.reserve__link {
  text-align: center;
}

.reserve__link a {
  margin-top: 40px;
  display: inline-block;
  max-width: 400px;
  width: 400px;
  padding: 22px 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  border-radius: 46px;
  position: relative;
  background: rgb(210, 239, 255);
  background: linear-gradient(90deg, rgb(210, 239, 255) 0%, rgb(188, 171, 250) 40%, rgb(255, 226, 226) 100%);
}
@media screen and (max-width: 768px) {
  .reserve__link a {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
    padding: 13px;
  }
}
.reserve__link a::after {
  content: "";
  display: block;
  width: 16px;
  height: 10px;
  background-image: url(../asset/img/top/btn-arrow.svg);
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.shop__outer {
  padding: 0 40px 100px;
}

.shop {
  max-width: 916px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #3F494C;
  padding: 56px 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .shop {
    padding: 40px 20px;
  }
}

.shop__title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 3.1rem;
  line-height: 1;
  font-family: "bigmoore", serif;
}
@media screen and (max-width: 768px) {
  .shop__title {
    font-size: 22px;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
  }
}

.shop__text {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .shop__text {
    margin-bottom: 24px;
    line-height: 28px;
  }
}

.shop__link {
  text-align: center;
}

.shop__link a {
  margin-top: 40px;
  display: inline-block;
  max-width: 400px;
  width: 400px;
  padding: 22px 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  border-radius: 46px;
  position: relative;
  background: rgb(210, 239, 255);
  background: linear-gradient(90deg, rgb(210, 239, 255) 0%, rgb(188, 171, 250) 40%, rgb(255, 226, 226) 100%);
}
@media screen and (max-width: 768px) {
  .shop__link a {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
    padding: 13px;
  }
}
.shop__link a::after {
  content: "";
  display: block;
  width: 16px;
  height: 10px;
  background-image: url(../asset/img/btn-arrow.svg);
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.pageTitle {
  font-size: 60px;
  letter-spacing: 0.12em;
  font-family: "bigmoore", serif;
  margin: 80px auto 0;
  max-width: 1200px;
  width: 100%;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .pageTitle {
    font-size: 38px;
    margin-top: 94px;
  }
}

.mv {
  width: 100%;
  height: 520px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .mv {
    height: auto;
    aspect-ratio: 1/1;
    margin: 40px calc(50% - 50vw);
    width: auto;
  }
}
.mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catch {
  font-size: 16px;
  letter-spacing: 0.1em;
  max-width: 820px;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .catch {
    font-size: 14px;
    line-height: 28px;
    margin-top: 40px;
  }
}

.title {
  font-size: 31px;
  font-family: "bigmoore", serif;
  letter-spacing: 0.04em;
  text-align: center;
}

.tab-title h3 {
  margin: 7vh auto;
  font-size: 1.75em;
  font-family: "Yu mincho" !important;
}

li, ul {
  list-style: none;
}

.recruit-tabs {
  max-width: 820px;
  margin: 133px auto 0;
}

.tab-area {
  display: flex;
  border: 2px solid;
  cursor: pointer;
}

.tab-area {
  border: 2px solid #3F494C;
  border-bottom: 1px solid #ddd;
}

.tab {
  width: 33.3333333333%;
  padding: 5px;
  text-align: center;
}

.tab:nth-child(n+2) {
  border-left: 1px solid #ddd;
}

.tab.active {
  background-color: #3F494C;
  color: #fff;
}

.panel {
  display: none;
  text-align: center;
}

.panel ul {
  padding: 5vh;
}

.panel.active {
  display: block;
  text-align: inherit;
  border: 2px solid #3F494C;
  border-top: none;
}

.panel-row {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin: 0 30px 25px;
}
@media screen and (max-width: 768px) {
  .panel-row {
    margin: 0 15px 25px;
  }
}

.panel-row:first-child {
  padding-top: 25px;
}

.panel-row p {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .panel-row p {
    font-size: 14px;
  }
}

.panel-row p:first-child {
  flex: 2;
}
@media screen and (max-width: 768px) {
  .panel-row p:first-child {
    flex: 3;
  }
}

.panel-row p:last-child {
  flex: 8;
}
@media screen and (max-width: 768px) {
  .panel-row p:last-child {
    flex: 7;
  }
}

.btn.entry {
  margin: 7vh auto;
  width: 75%;
  max-width: 300px;
  padding: 10px;
}

/*
 * Page
 * -------------------------------------------------------------------
 */
.fv {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.fv__img {
  width: 50vw;
  height: 100vh;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 768px) {
  .fv__img {
    width: 100vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__img:nth-of-type(2n) {
    display: none;
  }
}

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

.fv__img-first {
  left: 0;
}

.fv__img-secound {
  right: 0;
}

.about {
  padding: 200px 60px 166px;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 80px 40px 0;
  }
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about__title {
  font-size: 3.1rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 80px;
  font-family: "bigmoore", serif;
}
@media screen and (max-width: 768px) {
  .about__title {
    font-size: 22px;
  }
}

.about__title-sub {
  font-size: 9rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  margin-bottom: 64px;
  font-family: "bigmoore", serif;
  background: rgb(226, 200, 200);
  background: linear-gradient(135deg, rgb(226, 200, 200) 0%, rgb(207, 197, 248) 50%, rgb(191, 216, 229) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .about__title-sub {
    font-size: 29px;
    margin-top: 60px;
    letter-spacing: 0.1em;
  }
}

.about__desc {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 74px;
  padding-top: 40px;
  position: relative;
}
.about__desc::before {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #3F494C;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .about__desc::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .about__desc {
    padding-top: 0;
    margin-top: 60px;
    margin-bottom: 0;
    display: block;
  }
}

.about__desc__title {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .about__desc__title {
    font-size: 18px;
    line-height: 36px;
  }
}

.about__desc__text {
  width: 50%;
  letter-spacing: 0.1em;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .about__desc__text {
    font-size: 14px;
    line-height: 28px;
    width: 100%;
    margin-top: 20px;
  }
}

.about__cut__img img {
  display: inline-block;
}

.about__cut__img-first {
  text-align: left;
}
@media screen and (max-width: 1250px) {
  .about__cut__img-first {
    margin-left: calc(50% - 50vw);
    margin-top: 44px;
  }
}

.about__cut__img-first img {
  max-width: 720px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about__cut__img-first img {
    max-width: 335px;
    aspect-ratio: 335/234;
  }
}

.about__cut__img-second {
  margin-top: -300px;
  text-align: right;
}
@media screen and (max-width: 1250px) {
  .about__cut__img-second {
    margin: 64px calc(50% - 50vw) 0 auto;
  }
}

.about__cut__img-second img {
  max-width: 360px;
  width: 100%;
}
@media screen and (max-width: 1250px) {
  .about__cut__img-second img {
    max-width: 600px;
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .about__cut__img-second img {
    max-width: 224px;
    aspect-ratio: 224/322;
  }
}

.about__cut__img-third {
  max-width: 620px;
  margin: -50px auto 0;
  text-align: left;
}
@media screen and (max-width: 1250px) {
  .about__cut__img-third {
    margin: 64px auto 0 calc(50% - 50vw);
  }
}

.about__cut__img-third img {
  max-width: 480px;
  width: 100%;
}
@media screen and (max-width: 1250px) {
  .about__cut__img-third img {
    max-width: 600px;
  }
}
@media screen and (max-width: 768px) {
  .about__cut__img-third img {
    max-width: 225px;
    aspect-ratio: 225/174;
  }
}

.concept {
  width: 100vw;
  height: 660px;
  background-image: url(../asset/img/top/concept-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 127px 60px;
}
@media screen and (max-width: 768px) {
  .concept {
    height: 300px;
    padding: 66px 40px;
    margin-top: 50px;
  }
}

.concept__inner {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.concept__title {
  font-size: 9rem;
  line-height: 1;
  letter-spacing: 0.12em;
  position: absolute;
  font-family: "bigmoore", serif;
}
@media screen and (max-width: 1250px) {
  .concept__title {
    font-size: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .concept__title {
    font-size: 30px;
  }
}

.concept__title-first {
  top: 0;
  left: 0;
  background: rgb(212, 227, 204);
  background: linear-gradient(180deg, rgb(212, 227, 204) 0%, rgb(170, 187, 161) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.concept__title-second {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: rgb(226, 200, 200);
  background: linear-gradient(135deg, rgb(226, 200, 200) 0%, rgb(207, 197, 248) 50%, rgb(191, 216, 229) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.concept__title-third {
  bottom: 0;
  left: 0;
  background: rgb(75, 122, 111);
  background: linear-gradient(90deg, rgb(75, 122, 111) 0%, rgb(77, 45, 146) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reason {
  padding: 130px 40px;
}
@media screen and (max-width: 768px) {
  .reason {
    padding: 100px 40px;
  }
}

.reason__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.reason__title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 3.1rem;
  line-height: 1;
  font-family: "bigmoore", serif;
}

.reason__cont__item {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 1250px) {
  .reason__cont__item {
    margin-top: 40px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .reason__cont__item:first-of-type {
    margin-top: 30px;
  }
}

.reason__cont__item__img {
  margin-bottom: 32px;
}
@media screen and (max-width: 1250px) {
  .reason__cont__item__img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .reason__cont__item__img {
    margin-bottom: 16px;
    width: 100%;
    aspect-ratio: 296/206;
  }
}
@media screen and (max-width: 1250px) {
  .reason__cont__item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.reason__cont__item__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 1250px) {
  .reason__cont__item__title {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 29px;
  }
}

.reason__cont__item__text {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .reason__cont__item__text {
    display: none;
  }
}

.reason__cont__item__text--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .reason__cont__item__text--sp {
    display: block;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.1em;
  }
}

.reason__cont__item-01 {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.reason__cont__item-01 .reason__cont__item__inner {
  max-width: 648px;
}
@media screen and (max-width: 1250px) {
  .reason__cont__item-01 .reason__cont__item__inner {
    max-width: 500px;
    margin: 0 auto;
  }
}

.reason__cont__item-02 {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: -504px;
}
@media screen and (max-width: 1250px) {
  .reason__cont__item-02 {
    margin-top: 40px;
  }
}

.reason__cont__item-02 .reason__cont__item__inner {
  max-width: 360px;
}
@media screen and (max-width: 1250px) {
  .reason__cont__item-02 .reason__cont__item__inner {
    max-width: 500px;
    margin: 0 auto;
  }
}

.reason__cont__item-03 {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: -50px;
}
@media screen and (max-width: 1250px) {
  .reason__cont__item-03 {
    margin-top: 40px;
  }
}

.reason__cont__item-03 .reason__cont__item__inner {
  max-width: 360px;
}
@media screen and (max-width: 1250px) {
  .reason__cont__item-03 .reason__cont__item__inner {
    max-width: 500px;
    margin: 0 auto;
  }
}

.reason__cont__item-04 {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: -390px;
}
@media screen and (max-width: 1250px) {
  .reason__cont__item-04 {
    margin-top: 40px;
  }
}

.reason__cont__item-04 .reason__cont__item__inner {
  max-width: 648px;
}
@media screen and (max-width: 1250px) {
  .reason__cont__item-04 .reason__cont__item__inner {
    max-width: 500px;
    margin: 0 auto;
  }
}

.reason__cont__item-05 {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: 120px;
}
@media screen and (max-width: 1250px) {
  .reason__cont__item-05 {
    margin-top: 40px;
  }
}

.reason__cont__item-05 .reason__cont__item__inner {
  max-width: 648px;
}
@media screen and (max-width: 1250px) {
  .reason__cont__item-05 .reason__cont__item__inner {
    max-width: 500px;
    margin: 0 auto;
  }
}

.top__menu {
  padding: 120px 40px;
  background-color: #F0F4F4;
}

.top__menu__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top__menu__inner {
    display: block;
  }
}

.top__menu__title {
  font-size: 3.1rem;
  line-height: 1;
  font-family: "bigmoore", serif;
}
@media screen and (max-width: 768px) {
  .top__menu__title {
    font-size: 22px;
    letter-spacing: 0.04em;
  }
}

.top__menu__cont {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .top__menu__cont {
    width: 100%;
  }
}

.top__menu__cont__text {
  font-size: 1.6rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .top__menu__cont__text {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 28px;
    margin-bottom: 40px;
    margin-top: 30px;
  }
}

.top__menu__cont__item {
  padding: 40px 0 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  gap: 40px;
  border-top: 1px solid #3F494C;
}
@media screen and (max-width: 768px) {
  .top__menu__cont__item {
    padding: 20px 0;
    gap: 20px;
  }
}

.top__menu__cont__item__num {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .top__menu__cont__item__num {
    font-size: 12px;
    letter-spacing: 0.01em;
    line-height: 1;
  }
}

.top__menu__cont__item__title {
  font-size: 4.6rem;
  font-family: "bigmoore", serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top__menu__cont__item__title {
    font-size: 30px;
    letter-spacing: 0.04em;
  }
}

.top__menu__cont__link {
  text-align: right;
}

.top__menu__cont__link a {
  display: inline-block;
  padding-right: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top__menu__cont__link a {
    font-size: 15px;
    letter-spacing: 0.04em;
  }
}
.top__menu__cont__link a::before, .top__menu__cont__link a::after {
  content: "";
  display: block;
}
.top__menu__cont__link a::before {
  width: 96%;
  height: 1px;
  background-color: #3F494C;
  position: absolute;
  bottom: -4px;
  left: 0;
}
.top__menu__cont__link a::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #3F494C;
  border-width: 5px 0px 0px 11px;
  position: absolute;
  bottom: -4px;
  right: 0;
}

.top__salon {
  padding: 130px 40px;
}
@media screen and (max-width: 768px) {
  .top__salon {
    padding: 100px 40px;
  }
}

.top__salon__inner {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}

.top__salon__title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 3.1rem;
  line-height: 1;
  font-family: "bigmoore", serif;
}
@media screen and (max-width: 768px) {
  .top__salon__title {
    font-size: 22px;
  }
}

.top__salon__cont {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top__salon__cont {
    display: block;
  }
}

.top__salon__cont__img {
  max-width: 180px;
}
@media screen and (max-width: 1250px) {
  .top__salon__cont__img {
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .top__salon__cont__img {
    width: 100%;
    aspect-ratio: 295/206;
  }
}
.top__salon__cont__img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.top__salon__cont__desc {
  width: 66%;
}
@media screen and (max-width: 768px) {
  .top__salon__cont__desc {
    width: 100%;
    margin-top: 16px;
  }
}

.top__salon__cont__desc__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .top__salon__cont__desc__title {
    font-size: 16px;
    line-height: 29px;
  }
}

.top__salon__cont__desc__text {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .top__salon__cont__desc__text {
    line-height: 28px;
    margin-bottom: 12px;
  }
}

.top__salon__cont__desc__link {
  text-align: right;
}

.top__salon__cont__desc__link a {
  display: inline-block;
  padding-right: 24px;
  position: relative;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .top__salon__cont__desc__link a {
    font-size: 15px;
    letter-spacing: 0.04em;
  }
}
.top__salon__cont__desc__link a::before, .top__salon__cont__desc__link a::after {
  content: "";
  display: block;
}
.top__salon__cont__desc__link a::before {
  width: 96%;
  height: 1px;
  background-color: #3F494C;
  position: absolute;
  bottom: -4px;
  left: 0;
}
.top__salon__cont__desc__link a::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #3F494C;
  border-width: 5px 0px 0px 11px;
  position: absolute;
  bottom: -4px;
  right: 0;
}

.insta {
  padding: 0 40px;
}

.insta__inner {
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
}

.insta__title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 3.1rem;
  line-height: 1;
  font-family: "bigmoore", serif;
}
@media screen and (max-width: 768px) {
  .insta__title {
    font-size: 22px;
    letter-spacing: 0.04em;
    margin-bottom: 30px;
  }
}

.insta__list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.insta__item {
  width: 33.3333%;
  padding: 5px;
}
.insta__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .insta__item {
    padding: 5px;
    aspect-ratio: 1/1;
  }
}

.content {
  background: #F9F9F9;
}

.content__inner {
  padding: 0 40px;
}

.wp-block-group {
  width: 80%;
  margin: auto;
}

.salon__place {
  margin: 16px auto 0;
  max-width: 1200px;
  font-size: 24px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .salon__place {
    font-size: 18px;
    margin-top: 10px;
  }
}

.salon__service__title {
  font-size: 60px;
  line-height: 93px;
  letter-spacing: 0.1em;
  font-family: "bigmoore", serif;
}
@media screen and (max-width: 768px) {
  .salon__service__title {
    font-size: 34px;
    line-height: 150%;
    letter-spacing: 0.12em;
  }
}

.salon__service__wrapper {
  position: relative;
  width: 100%;
}
.salon__service__wrapper::before {
  max-width: 1150px;
  height: 100%;
  content: "";
  position: absolute;
  background-color: white;
  z-index: 0;
  width: 110%;
}
@media screen and (max-width: 1250px) {
  .salon__service__wrapper::before {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .salon__service__wrapper::before {
    display: none;
  }
}
.salon__service__wrapper.personalizedCounseling::before {
  top: 130px;
  left: calc(50% - 50vw);
}
.salon__service__wrapper.medicalTreatment::before {
  right: 0;
  top: 80px;
}
.salon__service__wrapper.counselingSupport::before {
  left: calc(50% - 50vw);
  top: 110px;
  z-index: -1;
}

/*
personalCounseling
*/
.personalizedCounseling {
  max-width: 1100px;
  margin: 251px auto 0;
}
@media screen and (max-width: 768px) {
  .personalizedCounseling {
    margin-top: 100px;
  }
}

.personalizedCounseling__title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .personalizedCounseling__title {
    position: static;
  }
}

.salon__service__content__inner {
  z-index: 1;
}

.personalizedCounseling__content__inner {
  padding-top: 70px;
  max-width: 845px;
  margin: 0 auto;
  transform: translateX(127px);
}
@media screen and (max-width: 1250px) {
  .personalizedCounseling__content__inner {
    transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  .personalizedCounseling__content__inner {
    padding-top: 0;
  }
}

.personalizedCounseling__content__item {
  max-width: 400px;
  width: 47.3372781065%;
}
.personalizedCounseling__content__item:first-of-type {
  margin: 35px 45px 0 0;
}
@media screen and (max-width: 768px) {
  .personalizedCounseling__content__item:first-of-type {
    margin-top: 38px;
  }
}
@media screen and (max-width: 768px) {
  .personalizedCounseling__content__item {
    width: 100%;
    margin: 40px 0 0;
  }
}
.personalizedCounseling__content__item h3 {
  font-size: 22px;
  line-height: 44px;
  letter-spacing: 0.1em;
  margin-top: 27px;
}
@media screen and (max-width: 768px) {
  .personalizedCounseling__content__item h3 {
    font-size: 16px;
    line-height: 28px;
    margin-top: 24px;
  }
}
.personalizedCounseling__content__item p {
  margin-top: 16px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .personalizedCounseling__content__item p {
    font-size: 14px;
    line-height: 28px;
    margin-top: 18px;
  }
}
.personalizedCounseling__content__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .personalizedCounseling__content__item img {
    height: auto;
    aspect-ratio: 295/394;
  }
}

/*
medical treatment
*/
.medicalTreatment {
  max-width: 1271px;
  margin: 452px 0 0 auto;
}
@media screen and (max-width: 768px) {
  .medicalTreatment {
    margin-top: 100px;
  }
}

.meficalTreatment__title--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .meficalTreatment__title--sp {
    font-size: 34px;
    line-height: 150%;
    font-family: "bigmoore", serif;
    display: block;
  }
}

.medicalTreatment__inner figure {
  max-width: 500px;
  width: 39.3391030685%;
  height: 100%;
  object-fit: cover;
  margin-right: 61px;
}
@media screen and (max-width: 768px) {
  .medicalTreatment__inner figure {
    width: 100%;
    aspect-ratio: 295/336;
    height: auto;
    margin: 37px 0;
  }
}
.medicalTreatment__inner figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.medicalTreatment__text {
  margin-top: 40px;
  padding-bottom: 87px;
}
@media screen and (max-width: 768px) {
  .medicalTreatment__text {
    margin-top: 0;
    padding-bottom: 0;
  }
}
.medicalTreatment__text h3 {
  margin-top: 47px;
}
@media screen and (max-width: 768px) {
  .medicalTreatment__text h3 {
    margin-top: 24px;
  }
}

.salon__service__text h2 {
  font-size: 60px;
  line-height: 93px;
  letter-spacing: 0.1em;
  font-family: "bigmoore", serif;
}
@media screen and (max-width: 768px) {
  .salon__service__text h2 {
    display: none;
  }
}
.salon__service__text h3 {
  font-size: 22px;
  line-height: 44px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .salon__service__text h3 {
    font-size: 16px;
    line-height: 28px;
  }
}
.salon__service__text p {
  margin-top: 30px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .salon__service__text p {
    font-size: 14px;
    line-height: 28px;
    margin-top: 18px;
  }
}
.salon__service__text div {
  max-width: 400px;
}

/*
counselingSupport
*/
.counselingSupport {
  margin: 290px auto;
  max-width: 1120px;
  transform: translateX(20px);
}
@media screen and (max-width: 768px) {
  .counselingSupport {
    margin: 100px auto;
    transform: translateX(0);
  }
}

.counselingSupport__inner figure {
  order: 2;
  max-width: 680px;
  width: 60.7142857143%;
  aspect-ratio: 680/400;
}
@media screen and (max-width: 768px) {
  .counselingSupport__inner figure {
    width: 100%;
    aspect-ratio: 295/336;
    margin-top: 37px;
  }
}
.counselingSupport__inner figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.counselingSupport__title--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .counselingSupport__title--sp {
    font-size: 34px;
    line-height: 150%;
    font-family: "bigmoore", serif;
    display: block;
  }
}

.counselingSupport__text {
  order: 0;
  max-width: 400px;
  width: 35.7142857143%;
  margin-right: 40px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .counselingSupport__text {
    width: 100%;
  }
}
.counselingSupport__text h3 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .counselingSupport__text h3 {
    margin-top: 24px;
  }
}

/*
Staff
*/
.salon__staff {
  margin: 220px 0 0;
  padding: 110px 0 120px;
  background-image: url(../asset/img/salon/salon_staff_bg.webp);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .salon__staff {
    margin: 100px calc(50% - 50vw);
    padding: 60px 40px 80px;
  }
}

.salon__staff__title {
  text-align: center;
}

.salon__staff__list {
  max-width: 800px;
  margin: 30px auto;
}

.salon__staff__item {
  width: 32%;
  margin-right: 1%;
}
@media screen and (max-width: 768px) {
  .salon__staff__item {
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .salon__staff__item:first-of-type {
    margin-top: 30px;
  }
}
.salon__staff__item:last-of-type {
  padding-right: 0;
}
.salon__staff__item figure {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .salon__staff__item figure {
    width: 80px;
    height: 80px;
  }
}
.salon__staff__item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.salon__staff__item h3 {
  font-size: 16px;
  margin-top: 12px;
  line-height: 31px;
  letter-spacing: 0, 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .salon__staff__item h3 {
    line-height: 28px;
  }
}
.salon__staff__item p {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .salon__staff__item p {
    line-height: 28px;
    margin-top: 12px;
  }
}

/*
access
*/
.salon__access {
  margin-top: 130px;
}
@media screen and (max-width: 768px) {
  .salon__access {
    margin-top: 100px;
  }
}

.salon__access__content {
  margin: 30px auto 0;
  max-width: 802px;
  width: 100%;
}

.salon__access__address {
  width: 36.4089775561%;
  margin-right: 30px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .salon__access__address {
    width: 100%;
    margin: 0;
    margin-top: 24px;
  }
}
.salon__access__address h3 {
  font-size: 18px;
  line-height: auto;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .salon__access__address h3 {
    font-size: 16px;
  }
}
.salon__access__address p {
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .salon__access__address p {
    font-size: 14px;
  }
}
.salon__access__address div:first-of-type h3 {
  margin-top: 0;
}

.salon__access__map {
  width: 72.8179551122%;
  height: 320px;
  order: 2;
}
@media screen and (max-width: 768px) {
  .salon__access__map {
    height: auto;
    aspect-ratio: 375/250;
    margin: 0 0 0 -40px;
    width: calc(100% + 80px);
  }
}
.salon__access__map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .trainingProgram__inner {
    padding: 0 40px;
  }
}

.trainingProgram__images {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .trainingProgram__images {
    display: block;
    width: calc(100% + 80px);
    margin: 40px -40px;
  }
}

.trainingProgram__image {
  width: 50%;
  aspect-ratio: 720/480;
}
.trainingProgram__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .trainingProgram__image {
    width: 100%;
  }
}
.trainingProgram__image:last-of-type {
  transform: translateY(60px);
}
@media screen and (max-width: 768px) {
  .trainingProgram__image:last-of-type {
    transform: translateY(0);
  }
}

.trainingProgram__texts {
  margin-top: 140px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .trainingProgram__texts {
    display: block;
    margin-top: 80px;
  }
}
.trainingProgram__texts h2 {
  width: 50%;
  padding: 0 80px 0 120px;
  max-width: 720px;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .trainingProgram__texts h2 {
    width: 100%;
    font-size: 18px;
    padding: 0;
  }
}
.trainingProgram__texts p {
  width: 50%;
  padding-right: 120px;
  max-width: 720px;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .trainingProgram__texts p {
    width: 100%;
    font-size: 16px;
    padding: 0;
    margin-top: 30px;
  }
}
.trainingProgram__texts p span {
  font-weight: 500;
}

.recruit__title {
  margin-top: 100px;
}

.recruit__catch {
  margin: 60px auto 0;
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.1em;
  max-width: 820px;
}
@media screen and (max-width: 768px) {
  .recruit__catch {
    font-size: 14px;
    line-height: 28px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 1250px) {
  .menu__inner {
    padding: 0 40px;
  }
}

.menu__catch {
  max-width: 820px;
  margin: 60px auto 120px;
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .menu__catch {
    font-size: 14px;
    line-height: 28px;
    margin-top: 40px;
    margin-bottom: 100px;
  }
}

.menu__list {
  background-color: #F0F4F4;
  padding: 80px 0;
}
@media screen and (max-width: 1250px) {
  .menu__list {
    width: calc(100% + 80px);
    margin: 0 -40px;
    padding: 60px 40px;
  }
}
.menu__list h2 {
  max-width: 1110px;
  font-size: 31px;
  letter-spacing: 0.04em;
  font-family: "bigmoore", serif;
  margin: 0 auto;
}

.menu__list__inner {
  max-width: 1110px;
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 1250px) {
  .menu__list__inner {
    margin-top: 30px;
    display: block;
  }
}
.menu__list__inner .post-thumbnail {
  width: 32.4324324324%;
  max-height: 460px;
}
@media screen and (max-width: 1250px) {
  .menu__list__inner .post-thumbnail {
    width: 100%;
    height: 100vh;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 768px) {
  .menu__list__inner .post-thumbnail {
    aspect-ratio: 295/376;
  }
}
.menu__list__inner .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu__list__inner ul {
  border-top: 1px solid #535E62;
  width: 61.2612612613%;
  margin-left: 6%;
}
@media screen and (max-width: 1250px) {
  .menu__list__inner ul {
    width: 100%;
    margin: 60px 0 0;
  }
}
.menu__list__inner li {
  padding: 30px 0;
  border-bottom: 1px solid #535E62;
}
.menu__list__inner li:last-of-type {
  border: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .menu__list__inner li {
    padding: 24px 0;
  }
}
.menu__list__inner li h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .menu__list__inner li h3 {
    font-size: 14px;
  }
}
.menu__list__inner li p {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .menu__list__inner li p {
    font-size: 13px;
    line-height: 198%;
    margin-top: 12px;
  }
}
.menu__list__inner li .price {
  font-size: 16px;
  line-height: 30px;
  text-align: right;
}

.menu__link {
  margin-top: 56px;
  display: block;
  color: white;
  background: rgb(210, 239, 255);
  background: linear-gradient(90deg, rgb(210, 239, 255) 0%, rgb(188, 171, 250) 40%, rgb(255, 226, 226) 100%);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.1em;
  padding: 39px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .menu__link {
    font-size: 16px;
    padding: 16px;
    margin-top: 30px;
  }
}
.menu__link img {
  position: absolute;
  width: 15px;
  height: 10px;
  top: 48px;
  right: 60px;
}
@media screen and (max-width: 768px) {
  .menu__link img {
    top: 25px;
    right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .review__inner {
    padding: 0 40px;
  }
}

.review__catch {
  max-width: 820px;
  margin: 60px auto 120px;
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.1em;
  display: none;
}

.review__content {
  margin-top: 130px;
  padding: 80px 0 120px;
  background-image: url(../asset/img/reviews/voice-bg.webp);
  background-size: cover;
  background-position: no-repeat;
}
@media screen and (max-width: 768px) {
  .review__content {
    width: calc(100% + 80px);
    margin: 100px -40px 0;
    padding: 60px 40px;
  }
}
.review__content:last-of-type {
  background-image: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .review__content:last-of-type {
    padding: 0 40px;
  }
}

.review__content__title {
  font-size: 31px;
  line-height: auto;
  letter-spacing: 0.04em;
  font-family: "bigmoore", serif;
  text-align: center;
}

.review__voice {
  max-width: 820px;
  margin: 0 auto;
}

.review__voice__item {
  margin-top: 40px;
  background-color: white;
  padding: 40px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .review__voice__item {
    text-align: center;
    padding: 30px 20px;
  }
}
.review__voice__item img {
  width: 120px;
  height: 120px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .review__voice__item img {
    width: 80px;
    height: 80px;
    margin: 0;
  }
}
.review__voice__item p {
  width: calc(100% - 160px);
}
@media screen and (max-width: 768px) {
  .review__voice__item p {
    width: 100%;
    margin-top: 16px;
  }
}

.review__beforeAfter {
  margin: 60px auto 0;
  justify-content: space-between;
  max-width: 820px;
}

.review__beforeAfter__item {
  width: 30.8536585366%;
}
@media screen and (max-width: 768px) {
  .review__beforeAfter__item {
    display: block;
    width: 100%;
    margin-top: 40px;
  }
}
.review__beforeAfter__item:first-of-type {
  margin-top: 0;
}
.review__beforeAfter__item img {
  aspect-ratio: 1/1;
  width: 100%;
}
.review__beforeAfter__item h3 {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .review__beforeAfter__item h3 {
    margin-top: 15px;
  }
}
.review__beforeAfter__item p {
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .review__beforeAfter__item p {
    margin-top: 12px;
  }
}/*# sourceMappingURL=mystyle.css.map */