/* Vendors - include bootrap
========================================================================== */
/* Helpers - helpers Variable file along with starting point Mixins and Placeholders.
========================================================================== */
/*
* Variables
*/
:root {
  /* family: */
  --font-family-text: "Noto Serif JP", sans-serif;
  --font-family-title: "Noto Serif JP", sans-serif;
  --font-family-en: "Cormorant Garamond", sans-serif;
  /* Colors: */
  --text-color: #333333;
  --text-dark-color: #CECECE;
  --loud-color: #84755b;
  --title-color: #333333;
  --menu-color: #6F6F6F;
  --primary-btn-color: #FFFFFF;
  /* background: */
  --background-primary-btn: #775117;
  --background-loud: #f3ede3;
  --background-footer: #333333;
  /* size */
  --base-font-size: 1.8rem;
  --h1-font-size: 4.8rem;
  --h2-font-size: 4.8rem;
  --h3-font-size: 3.4rem;
  --h4-font-size: 3.4rem; }

/*
 * Function
 */
/*
* mixins
*/
@media (min-width: 768px) and (max-width: 991px) {
  .class {
    width: 60%; } }

/*
 * Placeholders
 */
/* Base - reset and typography.
========================================================================== */
/*
 * reset
 */
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; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }
  blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/*
 * reset
 */
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; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }
  blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

button {
  background-color: transparent;
  outline: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-family-text); }

input {
  padding: 0;
  font-family: var(--font-family-text); }

/*
 * Typography
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-title);
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.4; }

h1 {
  font-size: var(--h1-font-size); }

h2 {
  font-size: var(--h2-font-size); }

h3 {
  font-size: var(--h3-font-size); }

h4 {
  font-size: var(--h4-font-size); }

/* Components - Re-usable site elements.
========================================================================== */
a {
  color: var(--text-color);
  text-decoration: none; }
  a:visited {
    color: var(--text-color);
    text-decoration: none; }
  a:hover, a:visited:hover {
    color: var(--loud-color);
    text-decoration: none; }
  a:focus {
    outline: none;
    text-decoration: none; }

.more {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out; }

.btn-primary {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 48rem;
  height: 7rem;
  border-radius: 3.6rem;
  border: 1px solid #6a6a6a;
  font-size: 2rem;
  color: #333333;
  position: relative; }
  .btn-primary i {
    color: #ac9977;
    position: absolute;
    top: 50%;
    right: 3rem;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  .btn-primary:hover {
    background: #6a6a6a;
    color: #FFFFFF !important; }

@media (max-width: 768px) {
  .btn-primary {
    max-width: 63rem;
    height: 10.5rem;
    border-radius: 5.4rem;
    font-size: 3rem; } }

.nav-bar-menu {
  padding: 0 0 12rem;
  height: 100vh;
  width: 100vw;
  max-width: 75rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  overflow-x: hidden;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  background: #f1f0eb; }
  .nav-bar-menu.is_active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); }
  .nav-bar-menu__head {
    padding: 3rem 3rem 4rem;
    position: relative; }
    .nav-bar-menu__head .logo {
      width: 32.3rem; }
    .nav-bar-menu__head .navbar-brand {
      width: 8rem;
      cursor: pointer;
      position: absolute;
      top: 0;
      right: 0; }
  .nav-bar-menu ul {
    margin-bottom: 8rem;
    padding: 0 3rem; }
    .nav-bar-menu ul li {
      border-top: 1px solid #d9d9d9; }
      .nav-bar-menu ul li:last-child {
        border-bottom: 1px solid #d9d9d9; }
      .nav-bar-menu ul li a {
        display: grid;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: start;
        -webkit-justify-content: start;
            -ms-flex-pack: start;
                justify-content: start;
        gap: 2.5rem;
        grid-template-columns: auto 1fr;
        font-size: 3rem;
        line-height: 1.2;
        padding: 3.5rem 2rem;
        color: var(--text-color);
        transition: all 300ms ease-in-out;
        -webkit-transition: all 300ms ease-in-out;
        -moz-transition: all 300ms ease-in-out;
        -o-transition: all 300ms ease-in-out; }
        .nav-bar-menu ul li a:hover {
          opacity: 0.7; }
  .nav-bar-menu__btn {
    padding: 0 3rem;
    display: grid;
    gap: 2rem; }
    .nav-bar-menu__btn .more {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center;
      width: 100%;
      height: 12rem;
      background: #ac9977;
      color: #FFFFFF !important;
      font-size: 3rem; }
      .nav-bar-menu__btn .more:hover {
        opacity: 0.7; }

@media (max-width: 768px) {
  .nav-bar-menu {
    max-width: 100vw; }
    .nav-bar-menu__head {
      position: relative; }
      .nav-bar-menu__head .navbar-brand {
        width: 12rem; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-arrow {
  position: absolute;
  top: 17rem;
  text-indent: -9999px;
  width: 3.6rem;
  height: 17.5rem; }
  .slick-arrow.slick-prev {
    left: 0;
    background-image: url("../images/slick-prev.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain; }
  .slick-arrow.slick-next {
    right: 0;
    background-image: url("../images/slick-next.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain; }

/* Layout - Structure and layout files.
========================================================================== */
/* -------------------->>> COMMON <<<-------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px; }

body {
  background: #fff;
  font-family: var(--font-family-text);
  color: var(--text-color);
  font-size: var(--base-font-size);
  line-height: 2;
  overflow-x: hidden;
  font-weight: 500;
  letter-spacing: 0;
  width: 100%; }
  body.is_active {
    height: 100vh;
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1; }
    body.is_active::after {
      content: '';
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.33);
      position: fixed;
      overflow: hidden;
      top: 0;
      left: 0;
      z-index: 99; }

hr {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #000 -moz-use-text-color -moz-use-text-color;
  -o-border-image: none;
     border-image: none;
  border-style: solid none none;
  border-width: 0.2em 0 0 0;
  margin: 0; }

.container {
  width: 100%;
  max-width: 131rem;
  padding: 0 1.5rem;
  margin: 0 auto; }

p {
  margin-bottom: 1.5rem; }

input:focus {
  outline: none; }

a img {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out; }
  a img:hover {
    opacity: 0.7; }

img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: middle; }

iframe {
  width: 100%;
  vertical-align: middle; }

.align-items-end {
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end; }

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

.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 3rem; }
  .header__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .header__main .logo {
      width: 32.3rem; }
    .header__main--right {
      display: grid;
      -webkit-box-align: start;
      -webkit-align-items: start;
          -ms-flex-align: start;
              align-items: start;
      gap: 2rem;
      grid-template-columns: 27.9rem 8rem; }
      .header__main--right .navbar-brand {
        cursor: pointer; }

@media (max-width: 768px) {
  .header__main--right a {
    display: none; }
  .header__main--right .navbar-brand {
    width: 12rem;
    position: absolute;
    top: 0;
    right: 0; } }

.banner img {
  width: 100%; }

.case-box {
  padding: 12rem 0;
  background: #f1f0eb;
  overflow: hidden; }
  .case-box .head-box {
    margin-bottom: 8rem;
    padding-left: 3rem;
    border-left: 4px solid #ac9977;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10rem; }
    .case-box .head-box h2 {
      font-size: 6rem;
      font-weight: 400;
      line-height: 1;
      font-family: var(--font-family-en);
      color: #454545; }
    .case-box .head-box__txt h3 {
      font-size: 3rem;
      margin-bottom: 3rem;
      font-weight: 500; }
    .case-box .head-box__txt p {
      margin-bottom: 0;
      line-height: 3.6rem; }
  .case-box__main {
    background: #FFFFFF;
    padding: 8rem;
    margin: 0 -8rem; }
    .case-box__main--img {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2.7rem;
      row-gap: 6.2rem;
      margin-bottom: 8rem; }
    .case-box__main--btn {
      text-align: center; }

.policy-box {
  padding-top: 12rem;
  background-image: url("../images/policy-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto; }
  .policy-box .head-box {
    text-align: center;
    margin-bottom: 23rem; }
    .policy-box .head-box h2 {
      display: grid;
      font-weight: 400;
      margin-bottom: 1.5rem; }
      .policy-box .head-box h2::before {
        content: 'Policy';
        font-size: 12rem;
        line-height: 1;
        opacity: .12;
        font-family: var(--font-family-en);
        text-transform: uppercase;
        margin-bottom: -3rem; }
    .policy-box .head-box p {
      font-size: 6rem;
      line-height: 1;
      font-weight: 400;
      color: #84755b;
      margin-bottom: 8rem; }
      .policy-box .head-box p span {
        font-size: 12rem; }
      .policy-box .head-box p small {
        font-size: 4.8rem; }
    .policy-box .head-box__txt {
      text-align: left;
      line-height: 3.6rem; }
      .policy-box .head-box__txt span {
        font-size: 2.4rem;
        color: #84755b; }
  .policy-box__main--items {
    padding-bottom: 24rem;
    position: relative;
    z-index: 9; }
    .policy-box__main--items::after {
      content: '';
      width: 100vw;
      height: 100%;
      background: #f1f0eb;
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      z-index: -1; }
    .policy-box__main--items:nth-child(even)::after {
      background: #FFFFFF; }
    .policy-box__main--items:nth-child(even) .head::after {
      left: auto;
      right: 0;
      background-image: url("../images/policy-head-bg-2.webp"); }
    .policy-box__main--items .head {
      text-align: center;
      padding: 5rem 0;
      position: relative;
      z-index: 99;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
      .policy-box__main--items .head::after {
        content: '';
        width: calc(100vw - ((100vw - 128rem) / 2));
        height: 100%;
        background-image: url("../images/policy-head-bg.webp");
        background-position: right top;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1; }
      .policy-box__main--items .head h2 {
        font-weight: 500;
        color: #FFFFFF;
        margin-bottom: 2rem; }
      .policy-box__main--items .head p {
        margin-bottom: 0;
        font-size: 2.4rem;
        color: #ac9977;
        line-height: 1; }
    .policy-box__main--items .labels {
      text-align: center;
      font-size: 3rem;
      line-height: 2;
      color: #84755b;
      margin-bottom: 10rem; }
    .policy-box__main--items .list-policy__items {
      margin-bottom: 11rem; }
      .policy-box__main--items .list-policy__items:last-child {
        margin-bottom: 0; }
    .policy-box__main--items .title {
      margin-bottom: 4rem; }
      .policy-box__main--items .title span {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding: 0 2rem;
        border-bottom: 1px solid #84755b;
        padding-bottom: 2.5rem;
        margin-bottom: 4rem;
        font-size: 10rem;
        line-height: 1;
        font-weight: 300;
        font-style: italic;
        color: #84755b; }
      .policy-box__main--items .title h2 {
        font-weight: 500;
        line-height: 5.6rem; }
        .policy-box__main--items .title h2 small {
          font-size: 3.6rem;
          color: var(--text-color); }
          .policy-box__main--items .title h2 small.lv2 {
            font-size: 3rem; }
    .policy-box__main--items .post-thumb {
      margin-bottom: 8rem;
      display: grid;
      gap: 8rem;
      grid-template-columns: 1fr 43.6rem; }
      .policy-box__main--items .post-thumb__txt small {
        font-size: 2.4rem;
        color: #84755b; }
    .policy-box__main--items .post-thumb-2 {
      display: grid;
      gap: 11rem;
      grid-template-columns: 51rem 1fr; }
    .policy-box__main--items .group-post {
      margin-bottom: 8rem;
      display: grid;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      grid-template-columns: 51rem 1fr;
      gap: 11rem; }
      .policy-box__main--items .group-post__txt span {
        font-size: 2.4rem;
        color: #84755b; }
    .policy-box__main--items .group-post-reverse {
      grid-template-columns: 1fr 51rem; }
      .policy-box__main--items .group-post-reverse figure {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2; }
    .policy-box__main--items .des {
      margin-bottom: 8rem; }
      .policy-box__main--items .des:last-child {
        margin-bottom: 0; }
      .policy-box__main--items .des span {
        font-size: 2.4rem;
        color: #84755b; }
    .policy-box__main--items .thumbnail__img {
      margin: 0 -8rem; }
    .policy-box__main--items .thumbnail__post {
      display: grid;
      -webkit-box-align: end;
      -webkit-align-items: end;
          -ms-flex-align: end;
              align-items: end;
      gap: 12.5rem;
      grid-template-columns: 1fr 44.2rem;
      margin-top: -18rem; }

.reason-box {
  padding: 12rem 0;
  background-image: url("../images/reason-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 107.7rem auto; }
  .reason-box .head-box {
    margin-bottom: 8rem;
    padding-left: 3rem;
    border-left: 4px solid #ac9977;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8rem; }
    .reason-box .head-box h2 {
      font-size: 6rem;
      font-weight: 400;
      line-height: 1;
      font-family: var(--font-family-en);
      color: #454545; }
    .reason-box .head-box__txt h3 {
      font-size: 6rem;
      font-weight: 500; }
  .reason-box__main--txt {
    margin-bottom: 8rem; }
    .reason-box__main--txt span {
      font-size: 2.4rem;
      color: #84755b; }
  .reason-box__main--img {
    margin-left: -8rem;
    margin-bottom: 8rem; }
  .reason-box__main h3 {
    text-align: center;
    font-size: 4.8rem;
    line-height: 7.8rem;
    font-weight: 400;
    margin-bottom: 8rem; }
    .reason-box__main h3 span {
      font-size: 6rem;
      font-weight: 500;
      color: #84755b; }
  .reason-box__main--thumb {
    margin-bottom: 8rem; }
  .reason-box__main--des p span {
    font-size: 2.4rem;
    color: #84755b; }
  .reason-box__main--des p:last-child {
    margin-bottom: 0; }

.pitfalls-box {
  padding: 12rem 0 24rem;
  background-image: url("../images/pitfalls-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden; }
  .pitfalls-box .head-box {
    text-align: center;
    margin-bottom: 11rem; }
    .pitfalls-box .head-box h2 {
      display: grid;
      font-weight: 400;
      margin-bottom: 1.5rem; }
      .pitfalls-box .head-box h2::before {
        content: 'Pitfalls';
        font-size: 12rem;
        line-height: 1;
        opacity: .12;
        font-family: var(--font-family-en);
        text-transform: uppercase;
        margin-bottom: -3rem; }
    .pitfalls-box .head-box p {
      font-size: 6rem;
      line-height: 1;
      font-weight: 400;
      color: #84755b;
      margin-bottom: 8rem; }
      .pitfalls-box .head-box p span {
        font-size: 12rem; }
      .pitfalls-box .head-box p small {
        font-size: 4.8rem; }
    .pitfalls-box .head-box__txt {
      text-align: left; }
      .pitfalls-box .head-box__txt span {
        font-size: 2.4rem;
        color: #84755b; }
  .pitfalls-box__main {
    position: relative;
    z-index: 9; }
    .pitfalls-box__main--items {
      margin-bottom: 24rem;
      background: #FFFFFF;
      padding: 7rem 4.5rem;
      position: relative; }
      .pitfalls-box__main--items::after {
        content: '';
        width: 100vw;
        height: 60rem;
        background: rgba(172, 153, 119, 0.2);
        position: absolute;
        bottom: -12rem;
        left: 50%;
        -webkit-transform: translateX(-57%);
            -ms-transform: translateX(-57%);
                transform: translateX(-57%);
        z-index: -1; }
      .pitfalls-box__main--items:last-child {
        margin-bottom: 0; }
      .pitfalls-box__main--items:nth-child(even)::after {
        left: auto;
        right: 50%;
        -webkit-transform: translateX(57%);
            -ms-transform: translateX(57%);
                transform: translateX(57%);
        z-index: -1; }
      .pitfalls-box__main--items .group-post {
        display: grid;
        gap: 7.5rem;
        grid-template-columns: 43.6rem 1fr;
        -webkit-box-align: start;
        -webkit-align-items: start;
            -ms-flex-align: start;
                align-items: start;
        margin-bottom: 4rem; }
        .pitfalls-box__main--items .group-post figure {
          display: grid;
          gap: 1rem; }
          .pitfalls-box__main--items .group-post figure p {
            margin-bottom: 0;
            line-height: 2.6rem; }
          .pitfalls-box__main--items .group-post figure.sp {
            display: none; }
        .pitfalls-box__main--items .group-post__txt {
          padding-bottom: 11rem;
          position: relative; }
          .pitfalls-box__main--items .group-post__txt::after {
            content: '';
            width: 20.7rem;
            height: 5rem;
            background-image: url("../images/arows-down.webp");
            background-position: 0 0;
            background-repeat: no-repeat;
            background-size: contain;
            position: absolute;
            bottom: 0;
            left: 50%;
            -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                    transform: translateX(-50%); }
          .pitfalls-box__main--items .group-post__txt h3 {
            font-size: 4.8rem;
            line-height: 1;
            font-weight: 400;
            padding-left: 15rem;
            margin-bottom: 5rem;
            position: relative; }
            .pitfalls-box__main--items .group-post__txt h3::before {
              content: '';
              width: 12rem;
              height: 10rem;
              background-image: url("../images/pitfalls-no-1.webp");
              background-position: 0 0;
              background-repeat: no-repeat;
              background-size: contain;
              position: absolute;
              top: 50%;
              left: 0;
              -webkit-transform: translateY(-50%);
                  -ms-transform: translateY(-50%);
                      transform: translateY(-50%); }
            .pitfalls-box__main--items .group-post__txt h3 span {
              font-size: 3.6rem;
              line-height: 5.6rem; }
          .pitfalls-box__main--items .group-post__txt p {
            margin-bottom: 0; }
            .pitfalls-box__main--items .group-post__txt p span {
              font-size: 2.4rem;
              color: #84755b; }
      .pitfalls-box__main--items .des h3 {
        margin-bottom: 4rem;
        text-align: center;
        font-size: 3.6rem;
        line-height: 7.6rem;
        font-weight: 400;
        color: #FFFFFF;
        background-image: url("../images/pitfalls-tt.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: cover; }
      .pitfalls-box__main--items .des p {
        margin-bottom: 0; }
        .pitfalls-box__main--items .des p span {
          font-size: 2.4rem;
          color: #84755b; }
      .pitfalls-box__main--items:nth-child(2) .group-post__txt h3::before {
        background-image: url("../images/pitfalls-no-2.webp"); }
      .pitfalls-box__main--items:nth-child(3) .group-post__txt h3::before {
        background-image: url("../images/pitfalls-no-3.webp"); }
      .pitfalls-box__main--items:nth-child(4) .group-post__txt h3::before {
        background-image: url("../images/pitfalls-no-4.webp"); }
      .pitfalls-box__main--items:nth-child(5) .group-post__txt h3::before {
        background-image: url("../images/pitfalls-no-5.webp"); }
      .pitfalls-box__main--items:nth-child(6) .group-post__txt h3::before {
        background-image: url("../images/pitfalls-no-6.webp"); }
      .pitfalls-box__main--items:nth-child(7) .group-post__txt h3::before {
        background-image: url("../images/pitfalls-no-7.webp"); }

.doctor-box {
  padding: 12rem 0 14rem;
  background-image: url("../images/doctor-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
  .doctor-box::after {
    content: '';
    width: 56rem;
    height: 15rem;
    background-image: url("../images/doctor-name.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -6rem;
    left: 50; }
  .doctor-box__main {
    padding-left: 43.5rem; }
    .doctor-box__main--head {
      margin-bottom: 5rem; }
      .doctor-box__main--head p {
        font-size: 5rem;
        margin-bottom: 0; }
      .doctor-box__main--head h2 {
        font-size: 7.4rem;
        line-height: 10.4rem;
        color: #84755b;
        font-weight: 400; }

.clp-box {
  padding: 12rem 0;
  background: #f1f0eb; }
  .clp-box .head-box {
    margin-bottom: 8rem;
    padding-left: 3rem;
    border-left: 4px solid #ac9977;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10rem; }
    .clp-box .head-box h2 {
      font-size: 6rem;
      font-weight: 400;
      line-height: 1;
      font-family: var(--font-family-en);
      color: #454545; }
    .clp-box .head-box__txt {
      font-size: 4.8rem; }
      .clp-box .head-box__txt span {
        color: #84755b; }
      .clp-box .head-box__txt small {
        font-size: 3rem; }
  .clp-box__main--thumb {
    width: 100%;
    max-width: 91.3rem;
    margin: 0 auto 10rem; }
  .clp-box__main--txt {
    margin-bottom: 10rem; }
    .clp-box__main--txt span {
      font-size: 2.4rem;
      color: #84755b; }
  .clp-box__main--crown {
    margin-bottom: 10rem; }
  .clp-box__main--des {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10rem;
    grid-template-columns: 50rem 1fr; }

.flow-box {
  padding: 12rem 0;
  background: #a6a6a6; }
  .flow-box h2 {
    text-align: center;
    margin-bottom: 7rem;
    color: #FFFFFF;
    font-weight: 400; }
  .flow-box__main {
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem 8rem; }
    .flow-box__main--items {
      padding: 3rem 0 3rem 9rem;
      position: relative;
      border-bottom: 1px solid #FFFFFF; }
      .flow-box__main--items::before {
        content: '';
        width: 6rem;
        height: 5.9rem;
        background-image: url("../images/icon-check.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 3rem;
        left: 0; }
      .flow-box__main--items:last-child {
        border: none; }
      .flow-box__main--items h3 {
        margin-bottom: 2.5rem;
        font-size: 3.6rem;
        font-weight: 400; }
      .flow-box__main--items p {
        margin-bottom: 0;
        font-size: 2rem;
        line-height: 2; }

.step-box {
  padding: 12rem 0;
  background: #f0f0f0; }
  .step-box .head-box {
    margin-bottom: 8rem;
    padding-left: 3rem;
    border-left: 4px solid #ac9977;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10rem; }
    .step-box .head-box h2 {
      font-size: 6rem;
      font-weight: 400;
      line-height: 1;
      font-family: var(--font-family-en);
      color: #454545; }
  .step-box__main {
    padding: 0 8rem;
    background: #FFFFFF; }
    .step-box__main--items {
      padding: 8rem 0;
      border-bottom: 1px solid #e5e5e5;
      position: relative; }
      .step-box__main--items::after {
        content: '';
        width: 8rem;
        height: 3rem;
        background-image: url("../images/icon-down-2.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        bottom: -3rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%); }
      .step-box__main--items .group {
        margin-bottom: 6rem;
        display: grid;
        gap: 6rem;
        grid-template-columns: 1fr 34rem; }
        .step-box__main--items .group:last-child {
          margin-bottom: 0; }
        .step-box__main--items .group h3 {
          margin-bottom: 3rem;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          gap: 4rem;
          font-size: 3.4rem;
          font-weight: 400; }
          .step-box__main--items .group h3::before {
            content: '';
            width: 12.1rem;
            min-width: 12.1rem;
            height: 8rem;
            background-image: url("../images/step-no-1.webp");
            background-position: 0 0;
            background-repeat: no-repeat;
            background-size: contain; }
          .step-box__main--items .group h3 b {
            font-weight: 400; }
          .step-box__main--items .group h3 span {
            font-size: 2.4rem; }
        .step-box__main--items .group p {
          margin-bottom: 0; }
        .step-box__main--items .group__check {
          background: #f1f0eb;
          padding: 5rem 6rem; }
          .step-box__main--items .group__check ul li {
            margin-bottom: 2rem;
            padding-left: 6rem;
            font-size: 2.4rem;
            line-height: 3.5rem;
            color: #746745;
            position: relative; }
            .step-box__main--items .group__check ul li span {
              font-size: 1.8rem;
              color: #333333; }
            .step-box__main--items .group__check ul li::before {
              content: '';
              width: 3.5rem;
              height: 3.4rem;
              background-image: url("../images/icon-check.webp");
              background-position: 0 0;
              background-repeat: no-repeat;
              background-size: contain;
              position: absolute;
              top: 0;
              left: 0; }
            .step-box__main--items .group__check ul li:last-child {
              margin-bottom: 0; }
      .step-box__main--items .des {
        background: #f1f0eb;
        text-align: center;
        padding: 3rem 2rem;
        font-size: 2.4rem;
        color: #746745; }
      .step-box__main--items .full-column {
        grid-template-columns: 1fr; }
        .step-box__main--items .full-column figure {
          width: 100%;
          max-width: 76rem;
          margin: 0 auto; }
      .step-box__main--items:nth-child(2) .group h3::before {
        background-image: url("../images/step-no-2.webp"); }
      .step-box__main--items:nth-child(3) .group h3::before {
        background-image: url("../images/step-no-3.webp"); }
      .step-box__main--items:nth-child(4) .group h3::before {
        background-image: url("../images/step-no-4.webp"); }
      .step-box__main--items:nth-child(5) .group h3::before {
        background-image: url("../images/step-no-5.webp"); }
      .step-box__main--items:nth-child(6) .group h3::before {
        background-image: url("../images/step-no-6.webp"); }
      .step-box__main--items:nth-child(7) .group h3::before {
        background-image: url("../images/step-no-7.webp"); }
      .step-box__main--items:nth-child(8) .group h3::before {
        background-image: url("../images/step-no-8.webp"); }
      .step-box__main--items:last-child {
        border: none; }
        .step-box__main--items:last-child::after {
          display: none; }

.cta-box {
  padding: 10rem 0;
  background-image: url("../images/cta-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover; }
  .cta-box h2 {
    text-align: center;
    margin-bottom: 4.5rem;
    font-size: 5.4rem;
    color: #c8b891;
    font-weight: 400; }
    .cta-box h2 span {
      color: #FFFFFF; }
  .cta-box__main {
    display: grid;
    gap: 8rem;
    grid-template-columns: 47.2rem 56.2rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }

.fee-box {
  padding: 12rem 0;
  background-image: url("../images/fee-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover; }
  .fee-box .head-box {
    text-align: center;
    margin-bottom: 3rem; }
    .fee-box .head-box h2 {
      display: grid;
      font-weight: 400;
      margin-bottom: 1.5rem; }
      .fee-box .head-box h2::before {
        content: 'FEE';
        font-size: 12rem;
        line-height: 1;
        opacity: .12;
        font-family: var(--font-family-en);
        text-transform: uppercase;
        margin-bottom: -3rem; }
  .fee-box__main--group {
    margin-bottom: 9rem;
    display: grid;
    gap: 4rem;
    grid-template-columns: 43.4rem 1fr;
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end; }
    .fee-box__main--group h3 {
      margin-bottom: 4.5rem;
      font-size: 4.8rem;
      font-weight: 400; }
      .fee-box__main--group h3 span {
        color: #84755b; }
    .fee-box__main--group p {
      margin-bottom: 0; }
  .fee-box__main--price {
    margin-bottom: 12rem; }
    .fee-box__main--price .items {
      display: grid;
      grid-template-columns: repeat(2, 1fr); }
      .fee-box__main--price .items__labels {
        text-align: right;
        font-size: 3rem;
        padding: 3rem 5rem;
        background: #FFFFFF;
        border-top: 2px solid #e5e5e5; }
      .fee-box__main--price .items__info {
        font-size: 3rem;
        padding: 3rem 5rem;
        background: #f8f7f5;
        border-top: 2px solid #84755b; }
        .fee-box__main--price .items__info span {
          font-size: 2.4rem; }
        .fee-box__main--price .items__info small {
          font-size: 1.8rem; }
      .fee-box__main--price .items:last-child .items__labels {
        border-bottom: 2px solid #e5e5e5; }
      .fee-box__main--price .items:last-child .items__info {
        border-bottom: 2px solid #84755b; }
  .fee-box__main--visa {
    margin-bottom: 8rem; }
    .fee-box__main--visa .head {
      margin-bottom: 6rem;
      text-align: center; }
      .fee-box__main--visa .head h2 {
        margin-bottom: 4rem; }
      .fee-box__main--visa .head p {
        margin-bottom: 0; }
    .fee-box__main--visa .visa h3 {
      background: #ac9977;
      text-align: center;
      font-size: 3.6rem;
      font-weight: 400;
      color: #FFFFFF;
      padding: 2.5rem 2rem;
      border-bottom: 4px solid #84755b; }
    .fee-box__main--visa .visa figure {
      margin-bottom: 3rem; }
    .fee-box__main--visa .des {
      text-align: right; }
  .fee-box__main--price h3 {
    background: #ac9977;
    text-align: center;
    font-size: 3.6rem;
    font-weight: 400;
    color: #FFFFFF;
    padding: 2.5rem 2rem;
    border-bottom: 4px solid #84755b;
    margin-bottom: 6rem; }
  .fee-box__main--price p {
    text-align: center;
    margin-bottom: 6rem; }

.medical-box {
  padding: 12rem 0; }
  .medical-box .head-box {
    margin-bottom: 8rem;
    padding-left: 3rem;
    border-left: 4px solid #ac9977;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10rem; }
    .medical-box .head-box h2 {
      font-size: 6rem;
      font-weight: 400;
      line-height: 1;
      font-family: var(--font-family-en);
      color: #454545; }
    .medical-box .head-box__txt h3 {
      font-size: 4.8rem;
      font-weight: 400;
      color: #84755b; }
  .medical-box__main p {
    margin-bottom: 8rem; }
    .medical-box__main p:last-child {
      margin-bottom: 0; }
  .medical-box__main figure {
    margin-bottom: 8rem; }

.faq-box {
  padding: 12rem 0;
  background: #f1f0eb; }
  .faq-box .head-box {
    text-align: center;
    margin-bottom: 3rem; }
    .faq-box .head-box h2 {
      display: grid;
      font-weight: 400;
      margin-bottom: 1.5rem; }
      .faq-box .head-box h2::before {
        content: 'Q&A';
        font-size: 12rem;
        line-height: 1;
        opacity: .12;
        font-family: var(--font-family-en);
        text-transform: uppercase;
        margin-bottom: -3rem; }
  .faq-box__main {
    background: #FFFFFF;
    padding: 2rem 7rem 9rem; }
    .faq-box__main--items {
      border-bottom: 2px solid #ac9977; }
      .faq-box__main--items h3 {
        padding: 4rem 11.5rem 4rem 10.5rem;
        cursor: pointer;
        font-size: 2.4rem;
        font-weight: 400;
        position: relative; }
        .faq-box__main--items h3::before {
          content: 'Q';
          font-size: 4rem;
          color: #ac9977;
          font-weight: 400;
          font-family: var(--font-family-en);
          position: absolute;
          top: 3rem;
          left: 3.5rem; }
        .faq-box__main--items h3 span {
          width: 2.2rem;
          height: 2px;
          background: #ac9977;
          position: absolute;
          top: 6rem;
          right: 3.5rem; }
          .faq-box__main--items h3 span::after {
            content: '';
            width: 2.2rem;
            height: 2px;
            background: #ac9977;
            position: absolute;
            top: 0;
            left: 0;
            -webkit-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                    transform: rotate(90deg);
            transition: all 300ms ease-in-out;
            -webkit-transition: all 300ms ease-in-out;
            -moz-transition: all 300ms ease-in-out;
            -o-transition: all 300ms ease-in-out; }
        .faq-box__main--items h3.is_active span::after {
          -webkit-transform: rotate(0);
              -ms-transform: rotate(0);
                  transform: rotate(0); }
      .faq-box__main--items .a {
        padding: 4rem 11rem;
        background: #f8f7f5;
        position: relative;
        display: none; }
        .faq-box__main--items .a::before {
          content: 'A';
          font-size: 4rem;
          color: #ac9977;
          font-weight: 400;
          font-family: var(--font-family-en);
          position: absolute;
          top: 2rem;
          left: 3.5rem; }
        .faq-box__main--items .a p {
          margin-bottom: 3.5rem; }
          .faq-box__main--items .a p:last-child {
            margin-bottom: 0; }

.gallery-box {
  padding: 12rem 0; }

.clinic-box {
  padding: 12rem 0;
  background: #333333; }
  .clinic-box__main--logo {
    width: 38.8rem;
    margin: 0 auto 6rem; }
  .clinic-box__main--txt {
    font-size: 2rem;
    line-height: 2;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 8rem; }
  .clinic-box__main--group {
    display: grid;
    gap: 8rem;
    grid-template-columns: 38rem 1fr;
    padding: 0 11rem; }
    .clinic-box__main--group .btn {
      display: grid;
      gap: 3.5rem; }

.gmap-box iframe {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%); }

.floating-box {
  position: fixed;
  top: 15rem;
  right: 0;
  z-index: 999;
  width: 6rem; }
  .floating-box__main {
    display: grid; }

.footer {
  background: var(--background-footer); }
  .footer__main {
    text-align: right;
    padding: 5rem 0;
    font-size: 1.4rem;
    line-height: 1;
    color: #FFFFFF; }

@media (max-width: 768px) {
  .footer {
    margin-bottom: 10rem; }
    .footer__main {
      text-align: center;
      font-size: 2.4rem; } }

/* layout - Responsive .
========================================================================== */
.sp {
  display: none; }

@media screen and (max-width: 1650px) and (min-width: 769px) {
  .doctor-box {
    background-size: 100% auto;
    background-position: 0 bottom;
    background-color: #E7E8EA; } }

@media screen and (max-width: 1200px) and (min-width: 769px) {
  html {
    font-size: 9px; } }

@media screen and (max-width: 1050px) and (min-width: 769px) {
  html {
    font-size: 8px; } }

@media screen and (max-width: 991px) and (min-width: 769px) {
  html {
    font-size: 7px; } }

@media (max-width: 768px) {
  :root {
    --base-font-size: 3rem; }
  html {
    font-size: 1.3333333vw; }
  .pc {
    display: none; }
  .sp {
    display: block; }
  .container {
    padding: 0 3rem; }
  .case-box .head-box {
    padding-left: 0;
    display: grid;
    gap: 3rem;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    border: none; }
    .case-box .head-box h2 {
      border-left: 4px solid #ac9977;
      padding: 3.5rem 0 3.5rem 3rem; }
    .case-box .head-box__txt h3 {
      font-size: 4rem;
      line-height: 6rem;
      margin-bottom: 6rem; }
    .case-box .head-box__txt p {
      line-height: 2; }
  .case-box__main {
    padding: 8rem 3rem;
    margin: 0; }
    .case-box__main--img {
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      row-gap: 3rem;
      margin-bottom: 8rem; }
  .policy-box {
    background-size: 100% 120rem; }
    .policy-box .head-box {
      text-align: center;
      margin-bottom: 10rem; }
      .policy-box .head-box__txt {
        line-height: 2; }
        .policy-box .head-box__txt span {
          font-size: 3.6rem; }
    .policy-box__main--items {
      padding-bottom: 10rem; }
      .policy-box__main--items .head {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
        margin-bottom: 7rem; }
        .policy-box__main--items .head::after {
          width: 100vw;
          left: 50% !important;
          right: auto !important;
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%); }
      .policy-box__main--items .labels {
        text-align: left;
        font-size: 3.6rem;
        line-height: 7.2rem; }
      .policy-box__main--items .list-policy__items {
        margin-bottom: 8rem; }
      .policy-box__main--items .title {
        text-align: center; }
        .policy-box__main--items .title h2 {
          line-height: 6.8rem; }
      .policy-box__main--items .post-thumb {
        gap: 4rem;
        grid-template-columns: 1fr; }
        .policy-box__main--items .post-thumb__img {
          margin-bottom: 6rem; }
        .policy-box__main--items .post-thumb__txt small {
          font-size: 3.6rem; }
      .policy-box__main--items .post-thumb-2 {
        display: grid;
        gap: 6rem;
        grid-template-columns: 1fr; }
      .policy-box__main--items .group-post {
        grid-template-columns: 1fr;
        gap: 6rem; }
        .policy-box__main--items .group-post__txt span {
          font-size: 3.6rem; }
      .policy-box__main--items .group-post-reverse {
        grid-template-columns: 1fr; }
        .policy-box__main--items .group-post-reverse figure {
          -webkit-box-ordinal-group: 2;
          -webkit-order: 1;
              -ms-flex-order: 1;
                  order: 1; }
        .policy-box__main--items .group-post-reverse .group-post__txt {
          -webkit-box-ordinal-group: 3;
          -webkit-order: 2;
              -ms-flex-order: 2;
                  order: 2; }
      .policy-box__main--items .des span {
        font-size: 3.6rem; }
      .policy-box__main--items .thumbnail__img {
        margin: 0 -3rem; }
      .policy-box__main--items .thumbnail__post {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-align: start;
        -webkit-align-items: start;
            -ms-flex-align: start;
                align-items: start;
        gap: 6rem;
        margin-top: -6rem; }
  .reason-box .head-box {
    padding-left: 0;
    display: grid;
    gap: 3rem;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    border: none; }
    .reason-box .head-box h2 {
      border-left: 4px solid #ac9977;
      padding: 3.5rem 0 3.5rem 3rem; }
    .reason-box .head-box__txt h3 {
      font-size: 6rem; }
  .reason-box__main--txt span {
    font-size: 3.6rem; }
  .reason-box__main--img {
    margin-left: 0; }
  .reason-box__main--des p span {
    font-size: 3.6rem; }
  .pitfalls-box {
    background-image: url("../images/pitfalls-bg_sp.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover; }
    .pitfalls-box .head-box__txt span {
      font-size: 3.6rem; }
    .pitfalls-box__main--items {
      padding: 4rem; }
      .pitfalls-box__main--items::after {
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%); }
      .pitfalls-box__main--items:nth-child(even)::after {
        left: auto;
        right: 50%;
        -webkit-transform: translateX(50%);
            -ms-transform: translateX(50%);
                transform: translateX(50%); }
      .pitfalls-box__main--items .group-post {
        gap: 4rem;
        grid-template-columns: 1fr; }
        .pitfalls-box__main--items .group-post figure {
          margin-bottom: 4rem; }
          .pitfalls-box__main--items .group-post figure p {
            font-size: 2.4rem;
            line-height: 3.4rem;
            margin-top: 2rem; }
          .pitfalls-box__main--items .group-post figure.pc {
            display: none; }
          .pitfalls-box__main--items .group-post figure.sp {
            display: block; }
        .pitfalls-box__main--items .group-post__txt h3 {
          padding-left: 11.5rem;
          font-size: 4.2rem; }
          .pitfalls-box__main--items .group-post__txt h3::before {
            top: -4rem;
            left: -4rem;
            -webkit-transform: translateY(0);
                -ms-transform: translateY(0);
                    transform: translateY(0); }
        .pitfalls-box__main--items .group-post__txt p span {
          font-size: 3.6rem; }
      .pitfalls-box__main--items .des h3 {
        font-size: 3.6rem;
        line-height: 4.6rem;
        padding: 2rem; }
      .pitfalls-box__main--items .des p span {
        font-size: 3.6rem; }
  .doctor-box {
    padding: 12rem 0 91rem;
    background-image: url("../images/doctor-bg_sp.webp");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover; }
    .doctor-box__main {
      padding-left: 0; }
      .doctor-box__main--head {
        text-align: center; }
        .doctor-box__main--head p {
          font-size: 3.6rem;
          margin-bottom: 2rem; }
        .doctor-box__main--head h2 {
          font-size: 6rem;
          line-height: 8rem; }
  .clp-box .head-box {
    padding-left: 0;
    display: grid;
    gap: 3rem;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    border: none; }
    .clp-box .head-box h2 {
      border-left: 4px solid #ac9977;
      padding: 3.5rem 0 3.5rem 3rem; }
  .clp-box__main--txt span {
    font-size: 3.6rem; }
  .clp-box__main--crown {
    margin-bottom: 10rem; }
  .clp-box__main--des {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 6rem;
    grid-template-columns: 1fr; }
  .flow-box__main {
    padding: 1rem 3rem; }
    .flow-box__main--items {
      padding: 3rem 0 3rem 7rem; }
      .flow-box__main--items p {
        font-size: 3rem; }
  .step-box .head-box {
    padding-left: 0;
    display: grid;
    gap: 3rem;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    border: none; }
    .step-box .head-box h2 {
      border-left: 4px solid #ac9977;
      padding: 3.5rem 0 3.5rem 3rem; }
  .step-box__main {
    padding: 0 3rem; }
    .step-box__main--items .group {
      -webkit-box-align: start;
      -webkit-align-items: start;
          -ms-flex-align: start;
              align-items: start;
      gap: 4rem;
      grid-template-columns: 1fr; }
      .step-box__main--items .group:last-child {
        margin-bottom: 0; }
      .step-box__main--items .group figure {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1; }
      .step-box__main--items .group__text {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2; }
      .step-box__main--items .group h3 {
        font-size: 4rem; }
        .step-box__main--items .group h3 span {
          font-size: 3rem; }
      .step-box__main--items .group p {
        margin-bottom: 0; }
      .step-box__main--items .group__check {
        padding: 5rem 3rem; }
        .step-box__main--items .group__check ul li {
          font-size: 3rem; }
          .step-box__main--items .group__check ul li span {
            font-size: 2.4rem; }
    .step-box__main--items .des {
      font-size: 3rem; }
  .cta-box h2 {
    text-align: center;
    margin-bottom: 4.5rem;
    font-size: 5.4rem;
    color: #c8b891; }
    .cta-box h2 span {
      color: #FFFFFF; }
  .cta-box__main {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 5rem;
    grid-template-columns: 1fr; }
    .cta-box__main .tel {
      padding: 0 6rem; }
  .fee-box__main--group {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    grid-template-columns: 1fr; }
    .fee-box__main--group figure {
      width: 50rem;
      margin: 0 auto;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .fee-box__main--group h3 {
      text-align: center; }
  .fee-box__main--price .items {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    grid-template-columns: 26rem 1fr; }
    .fee-box__main--price .items__labels {
      font-size: 2.8rem;
      padding: 3rem 2.5rem; }
    .fee-box__main--price .items__info {
      font-size: 2.8rem;
      padding: 3rem 2.5rem; }
  .fee-box__main--visa .head p {
    -moz-text-align-last: left;
         text-align-last: left; }
  .fee-box__main--visa .des {
    text-align: left; }
  .medical-box .head-box {
    padding-left: 0;
    display: grid;
    gap: 3rem;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    border: none; }
    .medical-box .head-box h2 {
      border-left: 4px solid #ac9977;
      padding: 3.5rem 0 3.5rem 3rem; }
  .faq-box__main {
    padding: 2rem 3rem 9rem; }
    .faq-box__main--items h3 {
      padding: 4rem 7rem 4rem 5rem;
      font-size: 3rem; }
      .faq-box__main--items h3::before {
        top: 3rem;
        left: 0; }
      .faq-box__main--items h3 span {
        right: 0; }
    .faq-box__main--items .a {
      padding: 9rem 3rem; }
      .faq-box__main--items .a::before {
        top: 2rem; }
  .clinic-box__main--logo {
    width: 58.2rem; }
  .clinic-box__main--txt {
    font-size: 3rem; }
  .clinic-box__main--group {
    grid-template-columns: 1fr;
    padding: 0; }
    .clinic-box__main--group .btn a:first-child {
      padding: 0 6rem; }
  .floating-box {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%; }
    .floating-box__main {
      grid-template-columns: 32.5rem 32.5rem 10rem; } }

/* ipad Portrait */
/* ipad Landscape */
