@charset "UTF-8";
/* reset
-------------------------------------------------------------------------------- */
:root {
    --color-base: #6a645a;
    --color-font: #322f2b;
    --color-accent: #6c232e;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
p, h1, h2, h3, h4, h5, h6, li {
    font-weight: 400;
    overflow-wrap: break-word;
}
th, td {
    font-weight: 400;
}
ul, ol {
    list-style: none;
}
img, picture, video, canvas, svg, iframe {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font-family: inherit;
    color: inherit;
    background-color: #fff;
    max-width: 100%;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
a {
    text-decoration: none;
}
/* common
-------------------------------------------------------------------------------- */
.trajan {
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
    font-size: 3.25vw;
}
body {
    font-family: source-han-serif-japanese, serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #fff;
    color: var(--color-font);
}
.inner {
    width: 90%;
    margin-inline: auto;
}
a {
    color: #000;
}
.display_pc {
    display: none;
}
.display_sp {
    display: block;
}
section {
    position: relative;
    padding: 4rem 0;
}
._invert {
    background-color: var(--color-base);
    color: #fff;
}
.section_head {
    margin-bottom: 3rem;
}
.section_head ._title_en {
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 6rem;
    opacity: 0.1;
    font-family: cormorant-garamond, serif;
    font-weight: 600;
    font-style: italic;
    line-height: 1;
}
.section_head ._title {
    text-align: center;
    margin-bottom: 1.5rem;
}
.section_head ._title h2 {
    font-weight: 600;
    line-height: 1.5;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    font-size: 1.75rem;
}
.section_head ._title_sub {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}
.slide_right {
    clip-path: inset(0 100% 0 0);
    transition-timing-function: cubic-bezier(0.72, 0, 0.38, 1);
    transition-duration: 1s;
}
.slide_right.active {
    clip-path: inset(0);
}
.slide_down {
    clip-path: inset(0 0 100% 0);
    transition-timing-function: cubic-bezier(0.72, 0, 0.38, 1);
    transition-duration: 1s;
}
.slide_down.active {
    clip-path: inset(0);
}
.fade {
    opacity: 0;
    transition-timing-function: ease;
    transition-duration: 1s;
}
.fade.active {
    opacity: 1;
}
.fade_up {
    opacity: 0;
    transform: translateY(3rem);
    transition-timing-function: ease;
    transition-duration: 1s;
}
.fade_up.active {
    opacity: 1;
    transform: translateY(0);
}
.fade_left {
    opacity: 0;
    transform: translateX(3rem);
    transition-timing-function: ease;
    transition-duration: 1s;
}
.fade_left.active {
    opacity: 1;
    transform: translateX(0);
}
.cta {
    position: relative;
    inset: 0;
    height: 47.5vw;
    padding: 0;
    clip-path: inset(0);
}
.cta .inner {
    display: flex;
    align-items: center;
    height: 100%;
}
.cta ._bg {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.cta ._href a {
    position: relative;
    display: block;
    background-color: var(--color-accent);
    color: #fff;
    font-size: 0.9rem;
    padding: 1.1rem 1.3rem 1.1rem 1.25rem;
    line-height: 1;
    border-radius: 2rem;
    /* box-shadow: 0.2rem 0.2rem 0.2rem #375e71; */
    overflow: hidden;
}
.cta ._href a::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 2rem;
    background-color: rgba(255, 255, 255, 0.33);
    top: 50%;
}
.cta ._href a span {
    font-size: 1.1rem;
}
@property --progress {
    syntax: "<number>";
    inherits: false;
    initial-value: -0.3;
}
.cta ._href,
.ripple img {
    --progress: -.3;
    -webkit-mask: radial-gradient(circle at 0% 0%, #000000 calc(var(--progress) * 100%), transparent calc(var(--progress) * 100% + 30%));
    mask: radial-gradient(circle at 0% 0%, #000000 calc(var(--progress) * 100%), transparent calc(var(--progress) * 100% + 30%));
    filter: brightness(200%);
    transition: --progress 2s, filter 2s;
}
.cta ._href.active,
.ripple.active img {
    filter: brightness(100%);
    --progress: 1.3;
}
/* header
-------------------------------------------------------------------------------- */
header {
    position: fixed;
    z-index: 1;
}
header ._logo a {
    display: block;
    padding: 1rem 0 0 1.5rem;
}
header ._logo a img {
    height: 1.25rem;
}
/* home
-------------------------------------------------------------------------------- */
#home {
    position: relative;
    width: 100%;
    height: 100svh;
    padding: 5rem 0 4rem;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
#home .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
#home ._txt {
    text-align: center;
}
#home ._title {
    border-bottom: 1px solid #fff;
    padding-bottom: 0.25rem;
    margin-bottom: 0.5rem;
}
#home ._title h1 {
    font-size: 1.9rem;
}
#home ._title_sub {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition-delay: 0.25s;
}
#home ._title_access {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.15rem;
    margin-inline: auto;
    padding: 0.1rem 2.25rem;
    border: 1px solid #fff;
    border-radius: 2rem;
    transition-delay: 0.5s;
}
#home ._price {
    position: relative;
    width: 72vw;
    box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.25);
    z-index: 1;
}
#home ._price span {
    position: absolute;
    background: linear-gradient(0deg, #e1cf59 20%, #ffffff 50%, #e1cf59 80%, #1dd1a1 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
#home ._price .price_regular {
    top: 1rem;
    right: 5rem;
    font-size: 3.15rem;
}
#home ._price .price_limited {
    bottom: 1.25rem;
    right: 4.5rem;
    font-size: 2.75rem;
}
#home ._history {
    position: absolute;
    width: 12.5rem;
    bottom: 18.5rem;
    left: 5%;
}
#home ._doctor {
    position: absolute;
    bottom: -5.5rem;
    right: -0.5rem;
    width: 85.5vw;
}
/* main
-------------------------------------------------------------------------------- */
/* empathy
-------------------------------------------------------------------------------- */
#empathy {
    background-image: linear-gradient(0deg, rgba(106, 100, 90, 0.8), rgba(106, 100, 90, 0.8)), url(../img/lp/empathy_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#empathy .section_head ._title_en {
    font-size: 4rem;
    top: 4rem;
}
#empathy .section_head ._title h2 {
    font-size: 1.55rem;
}
#empathy .section_head ._title_sub {
    text-align: left;
    font-size: 1.1rem;
}
#empathy .section_head ._title_sub br {
    display: none;
}
#empathy .section_body ._list {
    background-color: var(--color-font);
    padding: 1rem 0;
    border-radius: 1rem;
    overflow: hidden;
}
#empathy .section_body ._list h3 {
    font-size: 1.35rem;
    text-align: center;
    margin-bottom: 0.75rem;
}
#empathy .section_body ._list ul li {
    position: relative;
    padding-left: 3rem;
}
#empathy .section_body ._list ul li::before {
    position: absolute;
    content: "";
    top: calc(50% + 0.25rem);
    left: 0;
    height: 1px;
    width: 2.25rem;
    background-color: rgba(255, 255, 255, 0.5);
}
#empathy .section_body ._list ul li span {
    font-size: 1.5rem;
}
/* solution
-------------------------------------------------------------------------------- */
#solution {
    background-image: linear-gradient(0deg, rgba(255, 248, 238, 0.7), rgba(254, 254, 254, 0.9)), url(../img/lp/solution_bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 4rem 0 1rem;
}
#solution .section_head {
    margin-bottom: 5rem;
}
#solution .section_head ._title h2 {
    font-size: 1.55rem;
}
#solution .section_body ._list ._item {
    margin-bottom: 3rem;
}
#solution .section_body ._list ._item ._point {
    display: flex;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
    margin-bottom: 0.5rem;
}
#solution .section_body ._list ._item ._point ._num {
    position: relative;
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-left: 1.5rem;
}
#solution .section_body ._list ._item ._point ._num::before {
    position: absolute;
    content: "";
    background-image: url(../img/lp/point_bg.svg);
    background-size: contain;
    width: 6rem;
    aspect-ratio: 1;
    transform: scale(-1);
    top: -2rem;
    left: -1rem;
    mix-blend-mode: multiply;
}
#solution .section_body ._list ._item ._point ._title {
    font-size: 0.9rem;
}
#solution .section_body ._list ._item ._point ._title br {
    display: none;
}
#solution .section_body ._list ._item ._point ._title span {
    font-weight: 700;
    font-size: 1.3rem;
}
#solution .section_body ._list ._item ._txt {
    position: relative;
    background-color: var(--color-accent);
    color: #fff;
    padding: 1.35rem;
    border-radius: 0.75rem;
}
#solution .section_body ._list ._item ._txt span {
    color: yellow;
}
/* case
-------------------------------------------------------------------------------- */
#case .section_head ._title h2 {
    font-size: 2.5rem;
}
#case .section_head ._title_sub {
    text-align: center;
}
#case .section_body ._list ._item {
    margin-bottom: 3rem;
}
#case .section_body ._list ._item ._head {
    margin-bottom: 1.25rem;
    overflow: hidden;
}
#case .section_body ._list ._item ._head h3 {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.5rem;
    font-weight: 500;
    padding-right: 1rem;
}
#case .section_body ._list ._item ._head h3::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 100%;
    height: 1px;
    width: 90vw;
    background-color: rgba(255, 255, 255, 0.5);
}
#case .section_body ._list ._item ._body ._operation {
    margin-bottom: 0.75rem;
}
#case .section_body ._list ._item ._body ._operation h4 {
    font-size: 1.2rem;
}
#case .section_body ._list ._item ._body ._operation h4::before {
    content: "■ ";
}
#case .section_body ._list ._item ._body ._hope {
    margin-bottom: 1.5rem;
}
#case .section_body ._list ._item ._body ._hope ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}
#case .section_body ._list ._item ._body ._img {
    margin-bottom: 2rem;
}
#case .section_body ._list ._item ._body ._img img {
    width: 100%;
}
#case .section_body ._list ._item ._body ._txt {
    font-size: 0.9rem;
}
/* doctor
-------------------------------------------------------------------------------- */
#doctor .section_body ._item ._img {
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 2.5rem;
}
#doctor .section_body ._item ._img img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    width: 100%;
    height: 100%;
}
#doctor .section_body ._item ._txt ._head {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
}
#doctor .section_body ._item ._txt ._head span::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 100%;
    width: 90vw;
    height: 1px;
    background-color: var(--color-font);
    opacity: 0.25;
}
#doctor .section_body ._item ._txt ._head span {
    position: relative;
    padding-right: 1rem;
    opacity: 0.6;
}
#doctor .section_body ._item ._txt ._name {
    margin-bottom: 1.5rem;
}
#doctor .section_body ._item ._txt ._name ._body ._jp {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
    margin-right: 1rem;
}
#doctor .section_body ._item ._txt ._name ._body ._en {
    font-family: "trajan-pro-3";
    font-size: 1.25rem;
    opacity: 0.75;
}
#doctor .section_body ._item ._txt ._history {
    margin-bottom: 2rem;
}
#doctor .section_body ._item ._txt ._history ._body table {
    border-spacing: 0 0.4rem;
}
#doctor .section_body ._item ._txt ._history ._body table tr th,
#doctor .section_body ._item ._txt ._history ._body table tr td {
    vertical-align: top;
    font-size: 0.9rem;
}
#doctor .section_body ._item ._txt ._history ._body table tr th {
    text-align: left;
    padding-right: 1rem;
    letter-spacing: 0.05rem;
}
#doctor .section_body ._item ._txt ._message ._body {
    font-size: 1.1rem;
    font-weight: 500;
}
/* plan
-------------------------------------------------------------------------------- */
#plan {
    background-image: linear-gradient(0deg, rgba(255, 248, 238, 0.9), rgba(255, 254, 252, 0.9)), url(../img/lp/solution_bg.jpg);
    background-position: center;
    background-size: cover;
}
#plan .section_body ._item ._head {
    margin-bottom: 2rem;
    overflow: hidden;
}
#plan .section_body ._item ._head h3 {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 0 0 1rem;
    margin-inline: auto;
    font-size: 1.25rem;
    font-weight: 500;
}
#plan .section_body ._item ._head h3::before,
#plan .section_body ._item ._head h3::after {
    position: absolute;
    content: "";
    top: 50%;
    width: 50vw;
    height: 1px;
    background-color: var(--color-font);
    opacity: 0.25;
}
#plan .section_body ._item ._head h3::before {
    left: 100%;
}
#plan .section_body ._item ._head h3::after {
    right: 100%;
}
#plan .section_body ._item ._body {
    margin-inline: auto;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
}
#plan .section_body ._item ._body ._price {
    position: relative;
    margin-bottom: 1rem;
    /* box-shadow: 0.3rem 0.3rem 0.3rem rgb(0 0 0 / 25%); */
}
#plan ._price span {
    position: absolute;
    background: linear-gradient(0deg, #e1cf59 20%, #ffffff 50%, #e1cf59 80%, #1dd1a1 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
#plan ._price .price_regular {
    top: 1.25rem;
    right: 6rem;
    font-size: 4rem;
}
#plan ._price .price_limited {
    bottom: 1.766rem;
    right: 5.55rem;
    font-size: 3.5rem;
}
#plan .section_body ._item ._body ._img {
    margin-bottom: 1.5rem;
}
#plan .section_body ._item ._note {
    width: 75vw;
    margin-inline: auto;
    font-size: 0.75rem;
}
/* flow
-------------------------------------------------------------------------------- */
#flow .section_body ._list ._item {
    margin-bottom: 2.5rem;
}
#flow .section_body ._list ._item ._img {
    aspect-ratio: 1.5;
    overflow: hidden;
    margin-bottom: 1rem;
}
#flow .section_body ._list ._item ._img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#flow .section_body ._list ._item ._txt ._head {
    margin-bottom: 0.5rem;
    overflow: hidden;
}
#flow .section_body ._list ._item ._txt ._head h3 {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.25rem;
    font-weight: 500;
    padding-right: 1rem;
}
#flow .section_body ._list ._item ._txt ._head h3::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 100%;
    height: 1px;
    width: 90vw;
    background-color: rgba(255, 255, 255, 0.5);
}
/* faq
-------------------------------------------------------------------------------- */
#faq {
    padding-bottom: 2rem;
}
#faq .section_body ._list ._item {
    background-color: rgba(106, 100, 90, 0.1);
    padding: 1.5rem 1rem 1.5rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background-image: linear-gradient(0deg, rgba(240, 239, 238, 0.5), rgba(240, 239, 238, 0.5)), url(../img/lp/logo_white.svg);
    background-repeat: repeat, no-repeat;
    background-position: center, top 0.6rem right 0.6rem;
    background-size: auto, 4.5rem;
    transition: backgound-image 1s;
}
#faq .section_body ._list ._item.active {
    background-image: linear-gradient(0deg, rgb(255, 255, 255), rgb(255, 255, 255)), url(../img/lp/logo_white.svg);
}
#faq .section_body ._list ._item ._q,
#faq .section_body ._list ._item ._a {
    margin-left: 2.75rem;
    text-indent: -1.1rem;
}
#faq .section_body ._list ._item ._q {
    position: relative;
}
#faq .section_body ._list ._item ._q::after {
    content: "...";
}
#faq .section_body ._list ._item.active ._q::after {
    content: "";
}
#faq .section_body ._list ._item ._a {
    display: none;
    padding-top: 1rem;
}
#faq .section_body ._list ._item ._q::before,
#faq .section_body ._list ._item ._a::before {
    font-family: "trajan-pro-3", serif;
    color: var(--color-accent);
    font-size: 1.5rem;
    display: inline-block;
    padding-right: 1rem;
    line-height: 1;
}
#faq .section_body ._list ._item ._q::before {
    content: "Q";
}
#faq .section_body ._list ._item ._a::before {
    content: "A";
    position: relative;
    font-size: 1.75rem;
    top: 0.2rem;
}
/* basic
-------------------------------------------------------------------------------- */
#basic .section_body ._list ._item {
    margin-bottom: 1.5rem;
}
#basic .section_body ._list ._item ._head {
    margin-bottom: 0.5rem;
    overflow: hidden;
}
#basic .section_body ._list ._item ._head h3 {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.25rem;
    font-weight: 500;
    padding-right: 1rem;
}
#basic .section_body ._list ._item ._head h3::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 100%;
    width: 90vw;
    height: 1px;
    background-color: var(--color-font);
    opacity: 0.25;
}
#basic .section_body ._list ._item ._body ._table table {
    border-spacing: 0 0.75rem;
}
#basic .section_body ._list ._item ._body ._table table tr th,
#basic .section_body ._list ._item ._body ._table table tr td {
    vertical-align: top;
}
#basic .section_body ._list ._item ._body ._table table tr th {
    white-space: nowrap;
    text-align: left;
    padding-right: 1rem;
}
/* about
-------------------------------------------------------------------------------- */
#about .section_head ._title_en {
    font-size: 5.25rem;
}
#about .section_body ._item ._img {
    margin-bottom: 1.5rem;
}
#about .section_body ._item ._txt ._detail {
    margin-bottom: 1rem;
}
#about .section_body ._item ._txt ._detail table {
    border-spacing: 1rem 0.5rem;
}
#about .section_body ._item ._txt ._detail table tr th,
#about .section_body ._item ._txt ._detail table tr td {
    text-align: left;
}
#about .section_body ._item ._txt ._map {
    aspect-ratio: 1.25;
    filter: grayscale(10) sepia(0.1);
    border: 1px solid rgba(106, 100, 90, 0.33);
}
#about .section_body ._item ._txt ._map iframe {
    width: 100%;
    height: 100%;
}
/* footer
-------------------------------------------------------------------------------- */
footer._invert {
    padding: 2rem 0 7rem;
}
#copyright {
    text-align: center;
    font-size: 0.8rem;
}
#fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1;
}
#fixed .inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 1%;
    column-gap: 1%;
    padding: 0 1%;
}
#fixed .inner ._item a {
    display: block;
}
#fixed .inner ._item a img {
    height: 3.25rem;
}
#page_top {
    display: none;
    position: fixed;
    bottom: 4rem;
    right: 0;
    transform: rotate(90deg) translateX(1.9rem);
    transform-origin: top right;
}
#page_top a {
    display: block;
    padding: 0.5rem 1rem;
    color: #fff;
    background-color: #6a645a;
    font-size: 0.8rem;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    line-height: 1;
}
@media (width > 600px) {
    /* common
  -------------------------------------------------------------------------------- */
    html {
        font-size: 2vw;
    }
    .cta {
        height: 17.5rem;
    }
    .cta ._href a {
        padding: 1.25rem 3rem 1.25rem 2.5rem;
        line-height: 1;
        border-radius: 2rem;
        /* box-shadow: 0.2rem 0.2rem 0.2rem #375e71; */
        font-size: 1.25rem;
    }
    .cta ._href a::after {
        width: 5rem;
        top: calc(50% + 0.1rem);
    }
    .cta ._href a span {
        font-size: 1.75rem;
    }
    @property --progress {}
    .cta ._href a.active,
    .ripple.active img {
        font-size: 1.25rem;
    }
    /* header
  -------------------------------------------------------------------------------- */
    /* home
  -------------------------------------------------------------------------------- */
    #home {
        padding: 5rem 0;
    }
    #home ._title h1 {
        font-size: 3rem;
    }
    #home ._title_sub {
        font-size: 2rem;
    }
    #home ._title_access {
        font-size: 1.5rem;
    }
    #home ._price {
        width: 30rem;
    }
    #home ._price .price_regular {
        top: 1.2rem;
        right: 6.5rem;
        font-size: 4.5rem;
    }
    #home ._price .price_limited {
        bottom: 1.75rem;
        right: 6.25rem;
        font-size: 3.75rem;
    }
    #home ._history {
        width: 17.5rem;
        bottom: 25rem;
        left: 5%;
    }
    #home ._doctor {
        width: 35rem;
        bottom: -7.5rem;
    }
    /* main
  -------------------------------------------------------------------------------- */
    /* empathy
  -------------------------------------------------------------------------------- */
    #empathy {
        padding: 4rem 0;
    }
    #empathy .section_head ._title_sub {
        font-size: 1.05rem;
    }
    #empathy .section_head ._title_sub br {
        display: block;
    }
    #empathy .section_body ._list {
        width: 33rem;
        margin-inline: auto;
    }
    /* solution
  -------------------------------------------------------------------------------- */
    #solution .section_body ._list {
        margin-inline: auto;
        width: 40rem;
    }
    #solution .section_body ._list ._item ._point {
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem;
    }
    #solution .section_body ._list ._item ._point ._num {
        font-size: 1.5rem;
    }
    #solution .section_body ._list ._item ._point ._title {
        font-size: 1.25rem;
    }
    #solution .section_body ._list ._item ._point ._title span {
        font-size: 1.75rem;
    }
    /* case
  -------------------------------------------------------------------------------- */
    /* doctor
  -------------------------------------------------------------------------------- */
    #doctor .section_body ._item {
        margin-inline: auto;
        width: 35rem;
    }
    /* plan
  -------------------------------------------------------------------------------- */
    #plan .section_body ._item ._body {
        width: 30rem;
    }
    #plan ._price .price_regular {
        top: 1.4rem;
        right: 6.5rem;
        font-size: 4.25rem;
    }
    #plan ._price .price_limited {
        bottom: 2rem;
        right: 6.25rem;
        font-size: 3.75rem;
    }
    #plan .section_body ._item ._note {
        width: 30rem;
    }
    /* flow
  -------------------------------------------------------------------------------- */
    #flow .section_body ._list {
        margin-inline: auto;
        width: 40rem;
    }
    #flow .section_body ._list ._item {
        margin-bottom: 3.5rem;
    }
    /* faq
  -------------------------------------------------------------------------------- */
    #faq .section_body ._list ._item ._q,
    #faq .section_body ._list ._item ._a {
        font-size: 1.25rem;
    }
    /* basic
  -------------------------------------------------------------------------------- */
    #basic .section_body ._list {
        margin-inline: auto;
        width: 40rem;
    }
    /* about
  -------------------------------------------------------------------------------- */
    #about .section_body ._item {
        margin-inline: auto;
        width: 40rem;
    }
    /* footer
  -------------------------------------------------------------------------------- */
    footer._invert {
        padding: 2rem 0 12.5rem;
    }
    #fixed .inner {
        padding: 0 2%;
        -moz-column-gap: 2%;
        column-gap: 2%;
    }
    #fixed .inner ._item a img {
        height: 5rem;
    }
    #page_top {
        bottom: 7.5rem;
    }
}
@media (width > 1024px) {
    /* common
  -------------------------------------------------------------------------------- */
    html {
        font-size: 18px;
    }
    .inner {
        max-width: 1366px;
    }
    section {
        padding: 5rem 0;
    }
    .section_head {
        margin-bottom: 5rem;
    }
    .section_head ._title_en {
        top: 1rem;
        font-size: 10rem;
    }
    .section_head ._title h2 {
        font-size: 3rem;
    }
    .section_head ._title_sub {
        font-size: 1.5rem;
    }
    .cta {
        height: 20rem;
    }
    .cta .inner {
        justify-content: center;
    }
    .cta ._href a {
        padding: 1.5rem 3rem 1.5rem 3rem;
        border-radius: 3rem;
    }
    .cta ._href a:hover::after {
        width: 0;
        right: 0;
    }
    .cta ._href a::after {
        width: auto;
        width: 3rem;
        right: 0;
        transition: width 1s;
    }
    .cta ._href a {
        position: relative;
        display: block;
    }
    .cta ._href a::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.33);
        transition: width 0.5s;
    }
    .cta ._href a:hover::before {
        width: 100%;
    }
    .cta ._href a span {
        font-size: 2rem;
    }
    /* header
  -------------------------------------------------------------------------------- */
    header ._logo a {
        padding: 1.5rem 0 0 1.5rem;
        transition: opacity 0.5s;
    }
    header ._logo a:hover {
        opacity: 0.5;
    }
    header ._logo a img {
        height: 1.5rem;
    }
    /* home
  -------------------------------------------------------------------------------- */
    #home .inner {
        width: auto;
        height: 100%;
        justify-content: center;
        margin-top: 4.5vw;
    }
    #home ._txt {
        margin-bottom: 2vw;
    }
    #home ._title {
        border-width: 2px;
    }
    #home ._title h1 {
        font-size: 3vw;
    }
    #home ._title_sub {
        font-size: 2vw;
        font-weight: 500;
    }
    #home ._title_access {
        font-size: 1.75vw;
        font-weight: 500;
        border-width: 2px;
        padding: 0.1vw 2.5vw;
        border-radius: 3vw;
    }
    #home ._price {
        width: 35vw;
    }
    #home ._price a {
        position: relative;
        display: block;
    }
    #home ._price a::before {
        position: absolute;
        content: "";
        width: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.33);
        transition: width 0.5s;
    }
    #home ._price a:hover::before {
        width: 100%;
    }
    #home ._price .price_regular {
        top: 1.5vw;
        right: 7.5vw;
        font-size: 5.25vw;
    }
    #home ._price .price_limited {
        bottom: 2.25vw;
        right: 7.25vw;
        font-size: 4.25vw;
    }
    #home ._history {
        width: 22.5vw;
        bottom: 2.5vw;
    }
    #home ._doctor {
        bottom: -12.5vw;
        right: 4vw;
        width: 37.5vw;
    }
    /* main
  -------------------------------------------------------------------------------- */
    /* empathy
  -------------------------------------------------------------------------------- */
    #empathy {
        padding: 5rem 0;
        background-size: 1920px;
    }
    #empathy .section_head ._title_en {
        font-size: 8rem;
        top: 1rem;
    }
    #empathy .section_head ._title {
        margin-bottom: 5rem;
    }
    #empathy .section_head ._title h2 {
        font-size: 2rem;
    }
    #empathy .section_head ._title h2 br {
        display: none;
    }
    #empathy .section_head ._title_sub {
        font-size: 1.25rem;
    }
    #empathy .section_body ._list {
        width: 40rem;
        padding: 1.5rem 0 2rem;
    }
    #empathy .section_body ._list h3 {
        font-size: 1.75rem;
    }
    #empathy .section_body ._list ul li {
        font-size: 1.25rem;
        padding-left: 5rem;
    }
    #empathy .section_body ._list ul li::before {
        width: 4rem;
    }
    #empathy .section_body ._list ul li span {
        font-size: 2rem;
    }
    /* solution
  -------------------------------------------------------------------------------- */
    #solution .section_head {
        margin-bottom: 7.5rem;
    }
    #solution .section_head ._title h2 {
        font-size: 2.5rem;
    }
    #solution .section_body ._list {
        width: auto;
    }
    #solution .section_body ._list ._item {
        display: flex;
        justify-content: center;
        -moz-column-gap: 3rem;
        column-gap: 3rem;
        margin-bottom: 6.5rem;
    }
    #solution .section_body ._list ._item:nth-child(2n) {
        flex-direction: row-reverse;
    }
    #solution .section_body ._list ._item ._point {
        width: 20rem;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #solution .section_body ._list ._item ._point ._num span {
        position: relative;
        font-size: 2.5rem;
    }
    #solution .section_body ._list ._item ._point ._num::before {
        mix-blend-mode: unset;
        width: 21rem;
        transform: scale(1);
        top: -5.5rem;
        left: -6rem;
    }
    #solution .section_body ._list ._item ._point ._title {
        text-align: center;
        position: relative;
        font-size: 1.5rem;
        line-height: 1.5;
    }
    #solution .section_body ._list ._item ._point ._title br {
        display: block;
    }
    #solution .section_body ._list ._item ._point ._title span {
        font-size: 2.25rem;
    }
    #solution .section_body ._list ._item ._txt {
        width: 41rem;
        font-size: 1.4rem;
        padding: 2.5rem 3rem;
        border-radius: 1.5rem;
    }
    /* case
  -------------------------------------------------------------------------------- */
    #case .section_body ._list ._item ._head h3 {
        font-size: 2rem;
    }
    #case .section_body ._list ._item ._body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        -moz-column-gap: 3rem;
        column-gap: 3rem;
    }
    #case .section_body ._list ._item ._body ._operation {
        grid-row: 1/2;
    }
    #case .section_body ._list ._item ._body ._operation h4 {
        font-size: 1.5rem;
        font-weight: 500;
    }
    #case .section_body ._list ._item ._body ._hope {
        grid-row: 2/3;
    }
    #case .section_body ._list ._item ._body ._hope ul li {
        font-size: 1.2rem;
    }
    #case .section_body ._list ._item ._body ._img {
        grid-row: 3/4;
        margin-bottom: 0;
    }
    #case .section_body ._list ._item ._body ._txt {
        grid-row: 1/4;
    }
    /* doctor
  -------------------------------------------------------------------------------- */
    #doctor .section_body ._item {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    #doctor .section_body ._item ._img {
        margin-bottom: 0;
        width: 45%;
    }
    #doctor .section_body ._item ._txt {
        width: 50%;
    }
    #doctor .section_body ._item ._txt ._history ._body table {
        border-spacing: 0 0.2rem;
    }
    /* plan
  -------------------------------------------------------------------------------- */
    #plan .section_body ._item ._head h3 {
        font-size: 1.5rem;
    }
    #plan .section_body ._item ._body {
        display: flex;
        justify-content: space-between;
        width: auto;
        flex-direction: row;
        margin-bottom: 1rem;
    }
    #plan .section_body ._item ._body ._price {
        width: 40%;
        margin-bottom: 0;
    }
    #plan .section_body ._item ._body ._price a {
        position: relative;
        display: block;
    }
    #plan .section_body ._item ._body ._price a::before {
        position: absolute;
        content: "";
        width: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.33);
        transition: width 0.5s;
        z-index: 1;
    }
    #plan .section_body ._item ._body ._price a:hover::before {
        width: 100%;
    }
    #plan ._price .price_regular {
        top: 1.6vw;
        right: 7.5vw;
        font-size: 5.25vw;
        z-index: 1;
    }
    #plan ._price .price_limited {
        bottom: 2.6vw;
        right: 7.5vw;
        font-size: 4.5vw;
        z-index: 1;
    }
    #plan .section_body ._item ._body ._img {
        width: 57%;
        margin-bottom: 0;
    }
    #plan .section_body ._item ._body ._img img {
        width: 100%;
    }
    #plan .section_body ._item ._note {
        width: auto;
        text-align: left;
        padding-left: 2rem;
    }
    /* flow
  -------------------------------------------------------------------------------- */
    #flow .section_body ._list {
        width: auto;
    }
    #flow .section_body ._list ._item {
        display: flex;
        justify-content: space-between;
    }
    #flow .section_body ._list ._item ._img {
        width: 45%;
        margin-bottom: 0;
    }
    #flow .section_body ._list ._item ._txt {
        width: 50%;
    }
    #flow .section_body ._list ._item ._txt ._head {
        margin-bottom: 1.5rem;
    }
    #flow .section_body ._list ._item ._txt ._head h3 {
        font-size: 1.75rem;
    }
    #flow .section_body ._list ._item ._txt ._body {
        font-size: 1.2rem;
    }
    /* faq
  -------------------------------------------------------------------------------- */
    #faq .section_head {
        margin-bottom: 5rem;
    }
    #faq .section_body ._list ._item {
        cursor: pointer;
        padding: 2rem;
        border-radius: 1rem;
        background-position: center, top 0.5rem right 1rem;
        background-size: auto, 6rem;
    }
    #faq .section_body ._list ._item ._q,
    #faq .section_body ._list ._item ._a {
        margin-left: 4rem;
        text-indent: -1.6rem;
    }
    #faq .section_body ._list ._item ._q::before,
    #faq .section_body ._list ._item ._a::before {
        font-size: 2rem;
        padding-right: 1.5rem;
    }
    #faq .section_body ._list ._item ._a::before {
        font-size: 2.5rem;
    }
    /* basic
  -------------------------------------------------------------------------------- */
    #basic .section_body ._list {
        width: 53rem;
    }
    #basic .section_body ._list ._item {
        margin-bottom: 2rem;
    }
    #basic .section_body ._list ._item ._head h3 {
        font-size: 1.5rem;
    }
    #basic .section_body ._list ._item ._body ._txt {
        font-size: 1.1rem;
    }
    #basic .section_body ._list ._item ._body ._table table {
        border-spacing: 0 1rem;
    }
    #basic .section_body ._list ._item ._body ._table table tr th,
    #basic .section_body ._list ._item ._body ._table table tr td {
        font-size: 1.2rem;
    }
    #basic .section_body ._list ._item ._body ._table table tr th {
        padding-right: 2rem;
    }
    /* about
  -------------------------------------------------------------------------------- */
    #about .section_head ._title_en {
        font-size: 11rem;
    }
    #about .section_body ._item {
        width: auto;
        display: flex;
        justify-content: space-between;
    }
    #about .section_body ._item ._img {
        width: 45%;
    }
    #about .section_body ._item ._txt {
        width: 48%;
    }
    #about .section_body ._item ._txt ._detail table tr th,
    #about .section_body ._item ._txt ._detail table tr td {
        font-size: 1.25rem;
    }
    /* footer
  -------------------------------------------------------------------------------- */
    footer._invert {
        padding: 1rem 0;
    }
    #fixed {
        bottom: auto;
        right: 0;
        top: 0;
        width: auto;
    }
    #fixed .inner {
        -moz-column-gap: 0.75rem;
        column-gap: 0.75rem;
        padding: 0.75rem 0.75rem 0 0;
        justify-content: flex-end;
    }
    #fixed .inner ._item a {
        overflow: hidden;
        position: relative;
        border-radius: 0.6rem;
    }
    #fixed .inner ._item a::before {
        position: absolute;
        content: "";
        width: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.53);
        transition: width 0.5s;
    }
    #fixed .inner ._item a:hover::before {
        width: 100%;
    }
    #fixed .inner ._item a img {
        height: 3rem;
    }
    #page_top a {
        position: relative;
        overflow: hidden;
    }
    #page_top a::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.53);
        transition: width 0.5s;
    }
    #page_top a:hover::before {
        width: 100%;
    }
}
@media (width > 1280px) {
    /* header
  -------------------------------------------------------------------------------- */
    header ._logo a {
        padding: 1.5rem 0 0 2rem;
    }
    header ._logo a img {
        height: 2rem;
    }
    #fixed {
        bottom: auto;
        right: 0;
        top: 0;
        width: auto;
    }
    #fixed .inner {
        -moz-column-gap: 1rem;
        column-gap: 1rem;
        padding: 1rem 1rem 0 0;
        justify-content: flex-end;
    }
    #fixed .inner ._item a img {
        height: 4rem;
    }
}
@media (width > 1525px) {
    #plan ._price .price_regular {
        top: 1.4rem;
        right: 6.5rem;
        font-size: 4.25rem;
    }
    #plan ._price .price_limited {
        bottom: 2rem;
        right: 6.25rem;
        font-size: 3.75rem;
    }
}
/* thanks
-------------------------------------------------------------------------------- */
