@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  border: none;
}

*, *:before, *:after {
  border: 0;
  outline: 0;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--text-color-main);
  font: var(--font-body-medium);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-family);
  background-color: var(--brown-50);
  counter-reset: number 0;
  overflow-x: hidden;
}

a {
  color: var(--text-color-main);
  text-decoration: none;
  word-break: break-all;
  text-decoration: none;
}

a:hover {
  background-size: 100% 2px;
}

img {
  width: 100%;
}

:root {
  --brown-500: #524C43;
  --brown-400: #827A6F;
  --brown-300: #AEA394;
  --brown-200: #DCD3C6;
  --brown-100: #EBE6E0;
  --brown-50: #FAF6F2;
  --russet-500: #8C6458;
  --russet-400: #A48373;
  --russet-300: #BAA29B;
  --russet-200: #D1C1BC;
  --russet-100: #E8E0DE;
  --russet-50: #F4F0EE;
  --green-500: #7A8672;
  --green-400: #959E8E;
  --green-300: #AFB6AA;
  --green-200: #CACFC7;
  --green-100: #E4E7E3;
  --green-50: #F2F3F1;
  --white: #FFFFFF;
  --text-color-main: #524C43;
  --text-color-sub: #827A6F;
  --text-color-white: #FFFFFF;
  --font-family: "Noto Sans JP", sans-self;
  --font-family-mincho: YuMincho;
  --font-weight-regular: 400;
  --font-weight-bold: 700;
  --letter-spacing-wide: 1.28px;
  --letter-spacing-normal: 0.28px;
  --font-body-h2: var(--font-weight-regular) 64px/1.0 Athena;
  --font-body-h2-sp: var(--font-weight-regular) 32px/1.0 Athena;
  --font-body-large: var(--font-weight-regular) 16px/1.7 var(--font-family);
  --font-body-large-bold: var(--font-weight-bold) 16px/1.7 var(--font-family);
  --font-body-medium: var(--font-weight-regular) 14px/1.7 var(--font-family);
  --font-body-medium-bold: var(--font-weight-bold) 14px/1.7 var(--font-family);
  --font-body-small: var(--font-weight-regular) 12px/1.5 var(--font-family);
  --font-body-small-bold: var(--font-weight-bold) 12px/1.5 var(--font-family);
  --border-dotted: background-image: repeating-linear-gradient(90deg, var(--brown-400), var(--brown-400) 4px, transparent 4px, transparent 8px), repeating-linear-gradient(180deg, var(--brown-400), var(--brown-400) 4px, transparent 4px, transparent 8px), repeating-linear-gradient(90deg, var(--brown-400), var(--brown-400) 4px, transparent 4px, transparent 8px), repeating-linear-gradient(180deg, var(--brown-400), var(--brown-400) 4px, transparent 4px, transparent 8px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  --card-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
  --card-hover-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.24);
}

.button {
  display: flex;
  width: 240px;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  font: var(--font-body-medium-bold);
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .button {
    width: 100%;
    padding: 12px 32px;
  }
}

.button-primary {
  background: var(--brown-400);
  color: var(--white);
}
.button-primary:hover {
  background: var(--brown-300);
}

.button-secondary {
  background: var(--white);
  color: var(--brown-400);
}
.button-secondary:hover {
  background: var(--brown-300);
  color: var(--white);
}

.button-tertiary {
  background: var(--white);
  border: 1px solid var(--brown-400);
  color: var(--brown-400);
}
.button-tertiary:hover {
  background: var(--brown-300);
  border:0;
  color: var(--white);
}

.textLink {
  font-family: Athena;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  .textLink {
    font-size: 16px;
  }
}
.textLink::before {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background-color: var(--brown-400);
}

.notes ul li {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
  color: var(--brown-400);
  font: var(--font-body-small);
}
.notes ul li::before {
  content: "※";
}

.list-indent {
  list-style: disc;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.list-indent li {
  text-indent: -1em;
  padding-left: 1em;
}
.list-indent li span {
  display: block;
  font: var(--font-body-small);
  text-indent: -1em;
  padding-left: 1em;
}

.label {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-align: center;
  font: var(--font-body-medium-bold);
  position: relative;
}
.label::before, .label::after {
  position: relative;
  display: inline-block;
  content: "";
  background: var(--brown-400);
  border-radius: 8px;
  width: 1px;
  height: 16px;
  margin-top: 4px;
  vertical-align: middle;
}
.label::before {
  transform: rotate(-35deg);
}
.label::after {
  transform: rotate(35deg);
}

.balloon {
  background-color: var(--russet-500);
  color: var(--white);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  width: fit-content;
  position: relative;
}
.balloon:after {
  content: "";
  width: 14px;
  height: 11px;
  background: url(/static_files/your-fit/img/flow/balloon_tail.svg);
  position: absolute;
  bottom: -10px;
  left: 0;
}

.border-dotted--top {
  background-image: linear-gradient(to right, var(--brown-400), var(--brown-400) 2px, transparent 2px, transparent 8px);
  background-size: 8px 1px;
  background-position: left top;
  background-repeat: repeat-x;
}

.border-dotted--left {
  background-image: linear-gradient(180deg, var(--brown-400), var(--brown-400) 2px, transparent 2px, transparent 4px);
  background-size: 1px 8px;
  background-position: left top;
  background-repeat: repeat-y;
}

.wh-bg {
  background: var(--white);
  box-shadow: 0px 4px 16px 0px rgba(130, 122, 111, 0.1);
  padding: 112px 64px;
}
@media screen and (max-width: 767px) {
  .wh-bg {
    padding: 64px 24px;
  }
}

.sub-page__container {
  max-width: 1280px;
  padding: 0 64px;
}
@media screen and (max-width: 767px) {
  .sub-page__container {
    padding: 0 16px;
  }
}

.breadcrumb {
  display: block;
  width: 100%;
  margin-top: 110px;
  padding: 0 0 16px;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-top: 80px;
  }
}
.breadcrumb__list {
  list-style: none;
  display: flex;
  align-items: center;
  font: var(--font-body-small);
  margin: 0;
}
.breadcrumb__label {
  color: var(--brown-300);
}
.breadcrumb__label a {
  color: var(--brown-500);
  text-decoration: none;
}
.breadcrumb__label:not(:last-child)::after {
  display: inline-block;
  margin: 0 8px;
  color: var(--brown-500);
  content: "/";
}

.heading__en {
  width: 100%;
  font: var(--font-body-h2);
  letter-spacing: var(--font-body-h2);
  display: flex;
  gap: 12px;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  .heading__en {
    font: var(--font-body-h2-sp);
    gap: 8px;
    width: auto;
  }
}
.heading__en span {
  font: var(--font-body-large);
  font-family: YuMincho;
  letter-spacing: 2.56px;
}
@media screen and (max-width: 767px) {
  .heading__en span {
    font-size: 14px;
  }
}

.heading__jp {
  width: 100%;
  font-family: YuMincho;
  font-size: 32px;
  font-weight: normal;
  letter-spacing: 5.12px;
}
@media screen and (max-width: 767px) {
  .heading__jp {
    font-size: 26px;
    letter-spacing: 4.16px;
  }
}

.heading__vertical {
  flex-direction: column;
  align-items: flex-start;
}

.heading__horizontal {
  flex-direction: row;
  align-items: flex-end;
}

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

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

.price {
  font-family: Athena;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  white-space: nowrap;
}
.price span {
  font-size: 10px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 0;
    display: block;
    height: 84px;
  }
}
.header__inner {
  max-width: 1280px;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .header__inner {
    padding: 32px 64px;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0;
  }
}
.header .logo {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1024px) {
  .header .logo {
    position: absolute;
    top: 24px;
    left: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header .logo {
    top: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s linear;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-image: url(/static_files/your-fit/img/trial.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-left: 20%;
  }
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 1200px) {
  .header__nav ul {
    gap: 32px;
  }
}
.header__nav ul li {
  letter-spacing: 0.84px;
  font-size: 16px;
  font-family: Athena;
}
.header .button {
  width: 210px;
}
@media screen and (max-width: 1024px) {
  .header .button {
    position: absolute;
    top: 24px;
    right: 80px;
    width: auto;
    padding: 8px 16px;
  }
}
@media screen and (max-width: 767px) {
  .header .button {
    top: 16px;
  }
}
.header.active .logo {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 1024px) {
  .header.active .header__nav {
    visibility: visible;
    opacity: 1;
  }
  .header.active .header__nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: rgba(130, 122, 111, 0.9);
  }
  .header.active .header__nav ul li {
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
  .header.active .header__nav ul li a {
    color: var(--white);
  }
}
.header.active .button {
  background: var(--white);
  color: var(--brown-400);
}
.header .menu-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header .menu-btn {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 20px;
    right: 16px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    transition: all 1s;
    z-index: 1000;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .header .menu-btn {
    top: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .header .menu-btn span {
    width: 24px;
    height: 1px;
    background: var(--brown-400);
    transition: all 0.4s;
  }
  .header .menu-btn span:nth-of-type(1) {
    top: 20px;
  }
  .header .menu-btn span:nth-of-type(2) {
    bottom: 20px;
  }
  .header .menu-btn.active span:nth-of-type(1) {
    transform: translateY(5px) rotate(45deg);
    background: var(--white);
  }
  .header .menu-btn.active span:nth-of-type(2) {
    transform: translateY(-4px) rotate(-45deg);
    background: var(--white);
  }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 112px;
}
@media screen and (max-width: 767px) {
  main {
    gap: 72px;
  }
}
main .mv {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 740px;
  overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
  main .mv {
    min-height: 840px;
    overflow: visible;
  }
}
@media screen and (max-width: 767px) {
  main .mv {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: auto;
    height: 100%;
    gap: 24px;
  }
}
main .mv__inner {
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .mv__inner {
    display: grid;
    flex-direction: column;
    grid-template-rows: auto 1fr auto;
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 16px;
    padding: 80px 0 0;
  }
}
main .mv h1 {
  position: absolute;
  top: 24%;
  left: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(300px, 28vw, 360px);
  font-size: clamp(12px, 1.25vw, 18px);
  font-weight: normal;
  white-space: nowrap;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  main .mv h1 {
    position: initial;
    width: clamp(140px, 40vw, 320px);
  }
}

main .mv h1 img {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  main .mv h1 img {
    width: clamp(180px, 70%, 320px);
  }
}

main .mv-img--right {
  position: absolute;
  bottom: 110px;
  right: 0;
  width: auto;
  height: clamp(460px, 74vh, 680px);
}
@media screen and (max-width: 1280px) {
  main .mv-img--right {
    right: 64px;
  }
}
@media screen and (max-width: 1024px) {
  main .mv-img--right {
    bottom: 140px;
  }
}
@media screen and (max-width: 767px) {
  main .mv-img--right {
    position: initial;
    height: clamp(320px, 50vh, 500px);
  }
}
main .mv-img--right img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  main .mv-img--right img {
    width: auto;
    height: 100%;
  }
}
main .mv-img--left {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40vh;
  min-width: 280px;
}
@media screen and (max-width: 1280px) {
  main .mv-img--left {
    left: 64px;
  }
}
@media screen and (max-width: 1024px) {
  main .mv-img--left {
    display: none;
  }
}
main .mv-img--notice {
  position: absolute;
  bottom: 230px;
  right: 400px;
  width: 280px;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  main .mv-img--notice {
    right: auto;
    left: 80px;
  }
}
@media screen and (max-width: 767px) {
  main .mv-img--notice {
    min-width: auto;
    width: 200px;
    right: 20px;
    left: auto;
    bottom: -56px;
  }
}
main .mv-img--decoration {
  position: absolute;
  bottom: 230px;
  left: 260px;
  width: 34vw;
  min-width: 520px;
}
@media screen and (max-width: 1024px) {
  main .mv-img--decoration {
    left: 0;
    right: 0;
    bottom: 160px;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  main .mv-img--decoration {
    position: initial;
    min-width: 320px;
  }
}
main .mv__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--brown-100);
  width: 100%;
  padding: 72px 0 36px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  main .mv__footer {
    padding: 32px;
  }
}
@media screen and (max-width: 767px) {
  main .mv__footer {
    position: initial;
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  main .mv__footer {
    padding: 24px;
    align-items: start;
  }
}
main .mv__footer__inner {
  max-width: 1280px;
  margin: auto;
  text-align: right;
  text-align: -webkit-right;
}
main .mv__footer__list {
  display: grid;
  grid-template-columns: auto minmax(160px, auto) auto;
  justify-items: center;
  align-items: flex-start;
  gap: 24px;
  width: clamp(60%, 60vw, 920px);
  justify-self: right;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main .mv__footer__list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  main .mv__footer__list {
    align-items: start;
    grid-template-columns: auto minmax(80px, 180px) auto;
  }
}
main .mv__footer__list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  main .mv__footer__list li {
    flex-direction: column;
    font: var(--font-body-small);
  }
}
main .mv__footer__list li .icon {
  width: 32px;
  height: 32px;
  margin: 0 12px 0 0;
}
@media screen and (max-width: 767px) {
  main .mv__footer__list li .icon {
    margin: 0 0 8px;
    width: 20px;
    height: 20px;
  }
}
main .mv__footer__list li span {
  font: var(--font-body-small);
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  main .mv__footer__list li span {
    font-size: 10px;
  }
}
main .mv .line {
  bottom: 180px;
}
@media screen and (max-width: 1024px) {
  main .mv .line {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  main .mv .line {
    bottom: 300px;
  }
}
main section {
  width: 100%;
  max-width: 1280px;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  main section {
    padding: 0 48px;
  }
}
@media screen and (max-width: 767px) {
  main section {
    padding: 0 24px;
    gap: 32px;
  }
}
main .news {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 112px;
}
@media screen and (max-width: 767px) {
  main .news {
    flex-direction: column;
    gap: 32px;
  }
}
main .news__head {
  display: flex;
  width: 183px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  main .news__head {
    width: 100%;
    flex-direction: row;
  }
}
main .news__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}
main .news__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
main .news__property {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: Athena;
}
main .news__date {
  color: var(--brown-400);
}
main .news__category {
  color: var(--brown-300);
}
main .news h3 {
  font: var(--font-body-medium);
}
main .news p a {
  text-decoration: underline;
}
main .news .news__item .news__subText {
  display: block;
  font: var(--font-body-small);
  margin-top: 4px;
}
main .concept,
main .menu {
  padding-top: 112px;
  padding-bottom: 112px;
  margin-top: 64px;
  max-width: 100%;
}
main .concept {
  background-color: var(--brown-300);
  background-image: url(/static_files/your-fit/img/concept/concept-bg.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 580px;
}
@media screen and (max-width: 767px) {
  main .concept,
  main .menu {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  main .concept {
    background-size: 80%;
  }
}
main .concept__inner {
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr 38%;
  align-items: end;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  main .concept__inner {
    gap: 32px;
    grid-template-columns: 1fr;
  }
}
main .concept__image {
  margin-top: -172px;
}
@media screen and (max-width: 767px) {
  main .concept__image {
    margin-top: 0;
  }
}
main .concept__image--vertical {
  display: block;
}
@media screen and (max-width: 767px) {
  main .concept__image--vertical {
    display: none;
  }
}
main .concept__text {
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
main .concept__text--deco {
  color: var(--brown-200);
  font-family: "Oooh Baby";
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.78px;
  padding-bottom: 48px;
}
@media screen and (max-width: 767px) {
  main .concept__text--deco {
    padding-bottom: 32px;
  }
}
main .concept__text--lead {
  font-family: YuMincho;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 6.4px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  main .concept__text--lead {
    word-break: auto-phrase;
  }
}
@media screen and (max-width: 767px) {
  main .concept__text--lead {
    font-size: 24px;
    letter-spacing: 3.84px;
    word-break: normal;
  }
}
main .concept__text--sublead {
  font-family: YuMincho;
  font-size: 28px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 5.12px;
}
@media screen and (max-width: 767px) {
  main .concept__text--sublead {
    font-size: 18px;
  }
}
main .concept__text--caption {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  main .concept__text--caption {
    font: var(--font-body-medium);
  }
}
main .recommend__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-evenly;
  align-items: start;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  main .recommend__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
main .recommend__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  main .recommend__item {
    gap: 16px;
  }
}
main .recommend__item .icon {
  width: 150px;
  height: 150px;
  border-radius: 100px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  main .recommend__item .icon {
    width: 130px;
    height: 130px;
  }
}
main .recommend__item .icon img {
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 767px) {
  main .recommend__item .icon img {
    width: 60px;
    height: 60px;
  }
}
main .recommend__item p {
  text-align: center;
  font-weight: 700;
}
main .menu {
  background-color: var(--brown-100);
}
main .menu__container {
  margin: auto;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  main .menu__container {
    max-width: 500px;
  }
}
main .menu__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 48px;
  align-items: stretch;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main .menu__inner {
    grid-template-columns: 1fr;
  }
}
main .menu__head {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.48px;
  text-align: center;
}
main .menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
main .menu__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-grow: 1;
}
main .menu__contents .image {
  max-height: 370px;
}
@media screen and (max-width: 767px) {
  main .menu__contents .image {
    max-height: 320px;
  }
}
main .menu__detail {
  background-color: var(--white);
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
}
@media screen and (max-width: 1024px) {
  main .menu__detail {
    padding: 24px;
  }
}
main .menu__detail__head {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}
main .menu__detail__head .icon {
  width: 64px;
  height: 64px;
  background-color: var(--brown-100);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .menu__detail__head .icon img {
  width: 48px;
  height: 48px;
}
main .menu__detail__head--title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
  font: var(--font-body-medium);
}
main .menu__detail__head--title span {
  font-family: Athena;
  font-size: 32px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 1024px) {
  main .menu__detail__head--title span {
    font-size: 24px;
  }
}
main .menu__detail .textLink {
  justify-content: flex-end;
}
main .menu .notes {
  padding-top: 16px;
}
main .trainers {
  position: relative;
  max-width: 100%;
  padding: 0;
}
main .trainers__wrap {
  max-width: 1280px;
  width: 100%;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  main .trainers__wrap {
    padding: 0 24px;
  }
}
main .trainers__inner {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 48px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  main .trainers__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  main .trainers .image {
    max-width: 260px;
    margin: auto;
  }
}
main .trainers__detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
main .trainers__detail--name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
main .trainers__detail--name-en {
  font: var(--font-body-large);
  letter-spacing: var(--letter-spacing-normal);
  font-family: Athena;
}
main .trainers__detail--name-jp {
  font-size: 24px;
  letter-spacing: var(--letter-spacing-wide);
}
main .trainers__detail--career {
  list-style: disc;
  padding-left: 1.5rem;
}
main .trainers__detail--intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
main .trainers .decoration {
  width: 400px;
  height: 580px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  main .trainers .decoration {
    width: 280px;
    height: 400px;
  }
}
main .trainers .decoration img {
  animation: 24s linear infinite rotation;
  width: 580px;
  height: 580px;
}
@media screen and (max-width: 767px) {
  main .trainers .decoration img {
    width: 400px;
    height: 400px;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
main .price-list {
  gap: 0;
}
@media screen and (max-width: 1024px) {
  main .price-list {
    padding: 0;
  }
}
main .price-list__head {
  height: 180px;
  overflow: hidden;
  margin: auto;
}
@media screen and (max-width: 767px) {
  main .price-list__head {
    height: 100px;
  }
}
main .price-list__head h2 {
  background-color: var(--white);
  padding: 72px 0 0;
  width: 740px;
  height: 740px;
  border-radius: 50%;
  text-align: center;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  main .price-list__head h2 {
    padding: 36px 0 0;
    width: 320px;
    height: 320px;
  }
}
main .price-list__inner {
  background-color: var(--white);
  display: flex;
  padding: 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  main .price-list__inner {
    padding: 24px;
  }
}
main .price-list__initial {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .price-list__initial {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
  }
}
main .price-list h3 {
  width: 98px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .price-list h3 {
    width: auto;
    font-size: 20px;
  }
}
main .price-list__detail {
  display: grid;
  grid-template-columns: 134px 32px minmax(300px, 500px);
  align-items: center;
  justify-content: end;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  main .price-list__detail {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
main .price-list__price {
  display: flex;
  width: 134px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  main .price-list__price {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
}
main .price-list__label {
  font: var(--font-body-medium);
  border-radius: 50px;
  border: 1px solid var(--text-color-main);
  display: flex;
  width: auto;
  height: 24px;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
}
main .price-list .price {
  font-size: 32px;
  letter-spacing: 0.64px;
}
main .price-list .image {
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  main .price-list .image {
    width: 86px;
    height: 18px;
    margin: auto;
  }
}
main .price-list__specialPrice {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
main .price-list__specialPrice-context {
  display: flex;
  width: 100%;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 4px;
  background-color: var(--white);
  height: 64px;
  font: var(--font-body-medium-bold);
}
@media screen and (max-width: 767px) {
  main .price-list__specialPrice-context {
    padding: 12px 16px;
  }
}
main .price-list__specialPrice strong {
  font-family: Athena;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
}
@media screen and (max-width: 767px) {
  main .price-list__specialPrice strong {
    font-size: 48px;
    letter-spacing: 0.96px;
  }
}
main .price-list .admission-fee {
  background-color: var(--brown-50);
  border: 1px solid var(--brown-200);
}
@media screen and (max-width: 767px) {
  main .price-list .admission-fee h3 {
    background: var(--brown-100);
    border-radius: 4px;
  }
}
main .price-list .limited-edition {
  background-color: var(--green-50);
  border: 1px solid var(--green-200);
}
@media screen and (max-width: 767px) {
  main .price-list .limited-edition h3 {
    background: var(--green-100);
    border-radius: 4px;
  }
}
main .price-list__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--brown-400);
}
main .price-list__contens {
  width: 100%;
  display: flex;
  flex-direction: column;
}
main .price-list__heading {
  padding: 24px 32px;
  background: var(--brown-100);
  border-bottom: 1px solid var(--brown-400);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .price-list__heading {
    padding: 24px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}
main .price-list__heading h3 {
  font-size: 24px;
  line-height: 170%;
  letter-spacing: 0.48px;
  width: auto;
}
main .price-list__heading .decoration {
  font-family: "Oooh Baby";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  color: rgba(186, 176, 163, 0.5);
}

main .price-list__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 32px;
  gap: 24px;
  align-items: flex-end;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  main .price-list__wrap {
    grid-template-columns: 1fr;
    padding: 24px 16px 32px;
  }
}
main .price-list__itemInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
main .price-list__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  flex-grow: 1;
  border-radius: 4px;
  border: 1px solid var(--brown-300);
  background: rgba(250, 246, 242, 0.8);
}
@media screen and (max-width: 767px) {
  main .price-list__item {
    padding: 16px;
  }
}
main .price-list__title {
  display: flex;
  padding: 4px 24px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  color: var(--white);
  border-radius: 4px;
  background: var(--brown-400);
}
@media screen and (max-width: 767px) {
  main .price-list__title {
    padding: 4px 16px;
  }
}
main .price-list__title h4 {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .price-list__title h4 {
    font-size: 16px;
  }
}
main .price-list__title h4 span {
  font: var(--font-body-medium);
  font-weight: normal;
  line-height: 1.5;
}
main .price-list__title h4 span strong {
  font-family: Athena;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.48px;
}
main .price-list .price {
  font-size: 24px;
}
main .price-list .new .decoration {
  position: absolute;
  top: 24px;
  left: 120px;
}
main .price-list .new .price-list__item {
  min-height: 304px;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .price-list .new .price-list__item {
    min-height: auto;
  }
}
main .price-list .campaign-badge {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 767px) {
  main .price-list .campaign-badge {
    width: 80px;
    height: 80px;
  }
}
main .price-list .new__menudetail {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  main .price-list .new__menudetail {
    gap: 16px;
  }
}
main .price-list .new__menudetail ul {
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  background: var(--white);
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  main .price-list .new__menudetail ul {
    padding: 12px;
  }
}
main .price-list .new__menudetail ul li {
  display: grid;
  grid-template-columns: 8px auto 78px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  font: var(--font-body-medium-bold);
}
main .price-list .new__menudetail ul li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background-color: var(--brown-200);
}
main .price-list .new__menudetail ul li span {
  font-size: 14px;
  font-weight: 400;
  text-align: right;
}
main .price-list .new__menudetail ul li.sc-item {
  grid-template-columns: 8px auto;
  flex-wrap: wrap;
}
main .price-list .new__menudetail ul li.sc-item div {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
main .price-list .new__menudetail ul li.sc-item .price-list__label {
  color: #6E799B;
  border-color: #6E799B;
  width: fit-content;
}
main .price-list .new .option {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}
@media screen and (max-width: 1024px) {
  main .price-list .new .option {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
main .price-list .new .option span {
  display: flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  font: var(--font-body-small);
  border-radius: 50px;
  border: 1px solid var(--brown-400);
}
main .price-list .new .option .genetic-testing {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
main .price-list .new .option .genetic-testing a, main .price-list .new .option .genetic-testing img {
  width: 20px;
  height: 20px;
}
main .price-list .new .option .genetic-testing a {
  margin-right: 8px;
}
main .price-list .member .decoration {
  position: absolute;
  top: 24px;
  left: 190px;
}
main .price-list .member .price-list__heading {
  border-top: 1px solid var(--brown-400);
}
main .price-list .member .price-list__wrap {
  align-items: end;
}
/*main .price-list .member .price-list__item {
  min-height: 190px;
}
@media screen and (max-width: 767px) {
  main .price-list .member .price-list__item {
    min-height: auto;
  }
}*/
main .price-list .member__wrap {
  padding: 32px 0 0;
}
main .price-list .member__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  main .price-list .member__title {
    padding: 0 16px;
  }
}
main .price-list .member__title h4 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 20px;
}
main .price-list .member__title h4 .icon {
  width: 48px;
  height: 48px;
}
main .price-list .member .unitPrice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  align-self: stretch;
  font: var(--font-body-small);
}
main .price-list .member .unitPrice .price {
  font-size: 14px;
}
main .price-list .member .plan-master {
  color: var(--green-500);
}
main .price-list .member .plan-master .price-list__item {
  border: 2px solid var(--green-500);
}
main .price-list .member .plan-master .price-list__title {
  background: var(--green-500);
}
main .price-list .member .plan-master .price {
  color: #5e6758;
}
main .price-list .member .plan-master .unitPrice {
  color: var(--green-500);
}
main .price-list .member .plan-active {
  color: var(--russet-400);
}
main .price-list .member .plan-active .price-list__item {
  border: 1px solid var(--russet-500);
}
main .price-list .member .plan-active .price-list__title {
  background: var(--russet-400);
}
main .price-list .member .plan-active .price,
main .price-list .member .plan-active .unitPrice {
  color: var(--russet-500);
}
main .price-list .member .plan-basic {
  color: var(--brown-400);
}
main .price-list .member .plan-basic .price-list__item {
  border: 1px solid var(--brown-400);
}
main .price-list .member .plan-basic .price-list__title {
  background: var(--brown-400);
}
main .price-list .member .plan-basic .price,
main .price-list .member .plan-basic .unitPrice {
  color: var(--brown-400);
}
main .price-list .member .plan-light {
  border: 1px solid var(--brown-300);
}
main .price-list .member .plan-light .price-list__title {
  background: var(--brown-300);
}
main .price-list .member .plan-light .price,
main .price-list .member .plan-light .unitPrice {
  color: var(--brown-400);
}
main .price-list .member .time {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px 12px;
  flex-wrap: wrap;
}
main .price-list .member--dayTime .plan-active .price-list__item {
  border: 2px solid var(--russet-500);
}
main .price-list .member--fullTime .plan-basic .price-list__item {
  border: 2px solid var(--brown-400);
}
main .price-list .option .decoration {
  position: absolute;
  top: 24px;
  left: 140px;
}
main .price-list .option .price-list__heading {
  border-top: 1px solid var(--brown-400);
}
main .price-list .option__list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  padding: 32px;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  main .price-list .option__list {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 24px;
  }
}
main .price-list .option__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
main .price-list .option__item h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
main .price-list .option__item h4 .icon {
  width: 32px;
  height: 32px;
}
main .price-list .option__item--detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
}
main .price-list .option__item--detail li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 8px;
}
main .price-list .option__item--detail li ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
}
main .price-list .option__item--detail li .price {
  font-size: 16px;
  letter-spacing: 0.4px;
}
main .price-list .option .border-dotted--left {
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  main .price-list .option .border-dotted--left {
    background-image: linear-gradient(to right, var(--brown-400), var(--brown-400) 2px, transparent 2px, transparent 8px);
    background-size: 8px 1px;
    background-position: left top;
    background-repeat: repeat-x;
    padding: 24px 0 0;
  }
}
main .access__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-self: stretch;
}
main .access-map {
  display: grid;
  grid-template-columns: minmax(280px, 600px) auto;
  align-items: center;
  gap: 48px;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  main .access-map {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
main .access-map #map {
  height: 400px;
  width: 100%;
}
main .access-map__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
}
main .access-map__text h3 {
  font: var(--font-body-large-bold);
}
main .access-map__text h3 strong {
  font-size: 20px;
}
main .access-map__text--info h4 {
  font: var(--font-body-medium-bold);
}
main .access-map__text--map {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
main .access-map__text--map .button {
  width: 100%;
}
main .access-parking__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
}
@media screen and (max-width: 767px) {
  main .access-parking__list {
    grid-template-columns: 1fr;
  }
}
main .access-parking__item .icon {
  width: 80px;
}
main .access-parking__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  main .access-parking__text {
    gap: 4px;
  }
}
main .faq__inner {
  width: 100%;
}
main .faq__list {
  border-top: 1px solid var(--brown-400);
}
main .faq__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--brown-400);
}
@media screen and (max-width: 767px) {
  main .faq__item {
    padding: 16px 8px;
    gap: 8px;
  }
}
main .faq__item--question, main .faq__item--answer {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  gap: 24px;
  align-items: center;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  main .faq__item--question, main .faq__item--answer {
    grid-template-columns: 24px 1fr 24px;
    align-items: start;
    gap: 16px;
  }
}
main .faq__item--question::before, main .faq__item--answer::before {
  font-family: Athena;
  font-size: 32px;
  width: 32px;
  height: 32px;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  main .faq__item--question::before, main .faq__item--answer::before {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }
}
main .faq__item--question {
  cursor: pointer;
}
main .faq__item--question::before {
  content: "Q.";
  color: var(--text-color-main);
}
main .faq__item--question::after {
  content: "";
  width: 32px;
  height: 32px;
  background: url(/static_files/your-fit/img/icon/plus.svg);
}
@media screen and (max-width: 767px) {
  main .faq__item--question::after {
    width: 24px;
    height: 24px;
    background-size: 24px;
  }
}
main .faq__item--question.open::after {
  content: "";
  background: url(/static_files/your-fit/img/icon/minus.svg);
}
@media screen and (max-width: 767px) {
  main .faq__item--question.open::after {
    width: 24px;
    height: 24px;
    background-size: 24px;
  }
}
main .faq__item--answer::before {
  content: "A.";
  color: var(--text-color-sub);
}
main .flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}
.tab__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  gap: 4px;
  max-width: 800px;
  padding: 8px;
  background-color: var(--brown-100);
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .tab__container {
    max-width: none;
    width: 100%;
  }
}
.tab {
  font-size: 20px;
  font-weight: 700;
  text-align:center;
  color: var(--brown-300);
  padding: 12px 72px;
  border-radius: 50px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tab {
    font-size: 16px;
    color: var(--brown-300);
    padding: 8px 12px;
  }
}
.tab.active {
  background-color: var(--brown-400);
  color: var(--white);
}
.tabContent {
  display: none;
}
.tabContent.active {
  display: block;
}
.tabContent h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  margin-bottom: 12px;
  height: 54px;
  line-height: 54px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .tabContent h3 {
    font-size: 18px;
    height: 36px;
    line-height: 36px;
  }
}
.tabContent h3 strong {
  font-size: 32px;
  color: var(--russet-500);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .tabContent h3 strong {
    font-size: 24px;
  }
}
.tabContent .flow__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  align-self: stretch;
}
.tabContent ul li {
  display: grid;
  grid-template-columns: auto minmax(160px, 400px);
  align-items: center;
  gap: 48px;
  align-self: stretch;
  padding: 32px 48px;
  background-color: var(--white);
  position: relative;
}
@media screen and (max-width: 767px) {
  .tabContent ul li {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
  }
}
.tabContent ul li:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 24px solid transparent;
  border-left: 24px solid transparent;
  border-top: 24px solid #ebe6e0;
  border-bottom: 0;
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tabContent ul li:first-child:before {
  content: none;
}
.tabContent ul li .balloon {
  font-family: Athena;
  font-size: 12px;
  font-weight: 700;
  line-height: 170%;
  align-items: baseline;
}
.tabContent ul li .balloon strong {
  font-size: 24px;
  padding-left: 4px;
}
@media screen and (max-width: 767px) {
  .tabContent ul li .balloon strong {
    font-size: 20px;
  }
}
.tabContent ul.flow--appointed li .balloon {
  background-color: var(--green-500);
}
.tabContent ul.flow--appointed li .balloon:after {
  filter: invert(55%) sepia(14%) saturate(377%) hue-rotate(53deg) brightness(91%) contrast(84%);
}

.tabContent .tabContent__text h4 {
  font: var(--font-body-large-bold);
  padding-top: 24px;
}
.tabContent .tabContent__text p {
  font: var(--font-body-medium);
  padding-top: 12px;
}
.tabContent .tabContent__text p a {
  text-decoration: underline;
}
.tabContent .tabContent__image img {
  box-shadow: 0px 4px 8px 0px rgba(130, 122, 111, 0.40);
}

main .trial {
  margin-top: 112px;
  max-width: 100%;
  background-color: var(--brown-100);
  height: 430px;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .trial {
    height: auto;
    padding-bottom: 48px;
  }
}
main .trial__inner {
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(200px, 466px) auto;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  main .trial__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: -64px;
  }
}
main .trial__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  main .trial__text {
    align-items: center;
  }
}
main .trial__text p {
  font: var(--font-body-medium-bold);
  position: relative;
}
main .trial__text p span {
  color: rgba(186, 176, 163, 0.5);
  font-family: "Oooh Baby";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
  position: absolute;
  top: -38px;
  right: -124px;
}
@media screen and (max-width: 767px) {
  main .trial__text p span {
    top: -40px;
    right: 8px;
  }
}
main .trial__text h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
}
main .trial__text .button {
  margin-top: 8px;
}
main .trial svg.line {
  bottom: 30px;
}
@media screen and (max-width: 767px) {
  main .trial svg.line {
    height: auto;
  }
}

main .gallery {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(7, 1fr);
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  margin-top: 72px;
}
main .gallery .photo01 { grid-area: 1 / 1 / 5 / 5; }
main .gallery .photo02 { grid-area: 1 / 5 / 5 / 7; }
main .gallery .photo03 { grid-area: 1 / 7 / 5 / 9; }
main .gallery .photo04 { grid-area: 1 / 9 / 3 / 11; }
main .gallery .photo05 { grid-area: 3 / 9 / 5 / 11; }
main .gallery .photo06 { grid-area: 5 / 1 / 8 / 5; }
main .gallery .photo07 { grid-area: 5 / 5 / 8 / 7; }
main .gallery .photo08 { grid-area: 5 / 7 / 8 / 11; }
main .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  main .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(13, 1fr);
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    margin-top: 0;
  }
  main .gallery .photo01 { grid-area: 1 / 1 / 4 / 3; }
  main .gallery .photo02 { grid-area: 4 / 1 / 7 / 2; }
  main .gallery .photo03 { grid-area: 4 / 2 / 7 / 3; }
  main .gallery .photo04 { grid-area: 7 / 1 / 9 / 2; }
  main .gallery .photo05 { grid-area: 9 / 1 / 11 / 2; }
  main .gallery .photo06 { grid-area: 7 / 2 / 8 / 3; }
  main .gallery .photo07 { grid-area: 8 / 2 / 11 / 3; }
  main .gallery .photo08 { grid-area: 11 / 1 / 13 / 3; }
}

main .sns__inner {
  display: flex;
  padding: 112px 0px;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  main .sns__inner {
    flex-direction: column;
    padding: 64px 0px;
    gap: 32px;
  }
}
main .sns__item {
  background-color: var(--white);
  display: flex;
  width: 300px;
  height: 300px;
  padding: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 150px;
  box-shadow: 0px 4px 16px 0px rgba(130, 122, 111, 0.1);
}
@media screen and (max-width: 767px) {
  main .sns__item {
    width: 230px;
    height: 230px;
    gap: 16px;
  }
}
main .sns__item .icon {
  width: 48px;
  height: 48px;
}
main .sns__item h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.4px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .sns__item h3 {
    font: var(--font-body-medium-bold);
  }
}
main svg.line {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 260px;
  z-index: 99;
}
@keyframes animate-svg-line {
  0% {
    stroke-dashoffset: 1428.1080322266px;
    stroke-dasharray: 1428.1080322266px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1428.1080322266px;
  }
}
@media screen and (max-width: 767px) {
  main .svg-line {
    stroke-width: 4px;
  }
}
main .svg-line.active {
  animation: animate-svg-line 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
  animation-delay: 0.3s;
}

footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: var(--white);
  padding-top: 240px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
}
footer .footer__item {
  display: flex;
  padding: 80px 64px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer .footer__item {
    padding: 64px 32px;
    gap: 32px;
  }
}
footer .footer__item .heading__vertical {
  align-items: center;
}
footer .contact {
  background-color: var(--brown-400);
}
footer .footer {
  background-color: var(--brown-300);
  gap: 24px;
}
footer .footer .logo {
  width: 150px;
}
footer .footer__sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
footer .footer__sns__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
footer .footer__sns__inner .icon {
  width: 32px;
}
footer .footer__text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  align-self: stretch;
}
footer .footer__text a {
  font: var(--font-body-small);
  color: var(--white);
}
footer .footer__notes {
  font-size: 10px;
}
footer .footer__copyright {
  font-size: 10px;
  color: var(--brown-100);
}/*# sourceMappingURL=style.css.map */

.more_pc {
  display: block;
}

.more_sp {
  display: none;
}

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