@charset "utf-8";

/* reset */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    position: relative;
    font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3",
        Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    color: #45413f;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
dl,
dt,
dd,
ol,
ul,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    font-size: 100%;
    font-weight: normal;
}

ul,
ol {
    list-style: none;
}

img {
    vertical-align: bottom;
    border: none;
    max-width: 100%;
    height: auto;
}

table {
    border-collapse: collapse;
}

strong {
    font-weight: bold;
}

em {
    font-style: normal;
    font-weight: normal;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    vertical-align: top;
}

a {
    color: #E5577D;
}

@media screen and (min-width: 769px) {
    body {
        min-width: 1200px;
        padding-right: 100px;
        padding-top: 100px;
    }

    body:before {
        content: "";
        width: 100px;
        height: calc(100% - 100px);
        position: absolute;
        right: 0;
        top: 100px;
        z-index: 1;
        background: #fff6f9;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 20px;
    }

    body {
        min-width: 320px;
        font-size: 1.2rem;
        padding-right: 0;
    }
}

@media screen and (max-width: 750px) {
    html {
        font-size: 2.67vw;
    }
}

/* 汎用クラス */
.hidden {
    display: none;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.hover {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
}

.hover:hover {
    opacity: 0.6;
}

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

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

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

.mb0 {
    margin-bottom: 0;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb25 {
    margin-bottom: 25px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb35 {
    margin-bottom: 35px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb45 {
    margin-bottom: 45px;
}

.mb50 {
    margin-bottom: 50px;
}

@media screen and (min-width: 769px) {
    .sp-only {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
}

@media all and (-ms-high-contrast: none) {
    .ft-offset-ie {
        transform: translateY(0.2em);
    }
}

/* font */
.ft-en,
.ft-poppins {
    font-family: 'Poppins', sans-serif;
}

.fontB {
    font-weight: bold;
}

.ft-pink {
    color: #E5577D;
}

/* flex */
.flex-box {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    align-content: space-between;
    box-sizing: border-box;
}

/* icon */
.icon {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

.icon:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: no-repeat center center;
    background-size: contain;
}

/* js-tab */
.js-tab-content {
    display: none;
}

/*スクロールバー全体*/
.scroll::-webkit-scrollbar {
    width: 8px;
}

/*スクロールバーの軌道*/
.scroll::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

/*スクロールバーの動く部分*/
.scroll::-webkit-scrollbar-thumb {
    background-color: rgba(78, 71, 58, 0.68);
}

/* l-header */
@media screen and (min-width: 769px) {
    .l-header {
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-width: 1024px;
        height: 100px;
        background: rgba(255, 255, 255, .7);
        z-index: 999;
        padding: 0 100px 0 38px;
    }

    .l-header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: calc(100% - 310px);
        max-width: 950px;
        height: 100%;
        padding: 0 20px;
    }

    .l-header__logo {
        width: 170px;
    }

    .l-header-nav {
        padding: 0 0 0 15px;
    }

    .l-header-nav ul {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .l-header-nav li {
        margin: 0 .5em;
    }

    .l-header-nav a {
        position: relative;
        display: block;
        font-size: 1.6rem;
        color: inherit;
        text-align: center;
        text-decoration: none;
    }

    .l-header-nav a:hover {
        color: #E5577D;
        position: relative;
    }

    .l-header-nav a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        background: #E5577D;
        bottom: -7px;
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform 0.3s;
    }

    .l-header-nav a:hover::after {
        transform: scale(1, 1);
        /*ホバー後、x軸方向に1（相対値）伸長*/
    }

    .l-header-nav a .jp {
        display: block;
    }

    .l-header-nav_sp {
        display: none;
    }

    .l-header-links {
        width: 300px;
        height: 100%;
    }

    .l-header-links > * {
        height: 50%;
    }

    .l-header-links ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 100px;
        height: 100vh;
        min-height: 500px;
        background: #FFF6F9;
        z-index: 1;
        /*0623*/
    }

    .l-header-links li {
        width: 100px;
        height: 100px;
    }

    .l-header__tel {
        width: 100%;
        text-align: right;
    }

    .l-header-links a {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        width: 100%;
        height: 100%;
        text-decoration: none;
        font-size: 1.4rem;
        font-weight: 700;
    }

    .l-header-links a span {
        margin-left: 0.2em;
        vertical-align: middle;
    }

    .l-header-links a .icon {
        font-size: 2.3rem;
    }

    .l-header-links ul li a .icon {
        font-size: 3.3rem;
        display: block;
        margin: 0 auto 10px;
    }

    .l-header-links a.link-reserve {
        background: #6ED0F7;
    }

    .l-header-links a.link-reserve .icon:before {
        background-image: url(../img/common/icn-reserve.svg);
    }

    .l-header-links a.link-contact {
        background: #EF8EB9;
    }

    .l-header-links a.link-contact .icon:before {
        background-image: url(../img/common/icn-contact.svg);
    }

    .l-header-links a.link-line {
        background: #12c75c;
    }

    .l-header-links a.link-line .icon:before {
        background-image: url(../img/common/icn-line.svg);
    }

    .l-header-links ul li a.link-line .icon {
        font-size: 3.9rem;
        margin: 0 auto 5px;
    }

    .l-header__tel a {
        font-size: 1.4rem;
        font-weight: 400;
        color: inherit;
        display: inline-block;
        height: auto;
        line-height: 1.3;
    }

    .l-header__tel {
        width: inherit;
        height: inherit;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-items: center;
    }

    .l-header__tel a span {
        font-size: 2.8rem;
    }

    .l-header__tel a .icon:before {
        background-image: url(../img/common/icn-tel.svg);
    }

    .l-header-btn-search,
    .l-header-search {
        display: none !important;
    }
}

@media screen and (min-width: 769px) and (max-width: 1385px) {
    .l-header-inner {
        width: calc(100% - 220px);
        padding-right: 10px;
        justify-content: space-between;
    }

    .l-header {
        padding-left: 0;
    }

    .l-header__tel a span {
        font-size: 2.2rem;
    }

    .l-header__tel a {
        font-size: 1.1rem;
    }

    .l-header-nav a {
        font-size: 1.3rem;
        /*0623*/
    }

    .l-header-nav li {
        margin: 0 0.75em;
    }

    .l-header-links a .icon {
        font-size: 2rem;
    }

    .l-header-links {
        width: 220px;
    }
}

/* メニュー表から非表示にしたリンク */
.l-header .l-header-nav li:has(> a[href*="/menu_category/menu-category04"]),
.l-header .l-header-nav li:has(> a[href*="/menu_category/menu-category05"]),
.l-header .l-header-nav li:has(> a[href*="/menu_category/%e3%82%a2%e3%83%bc%e3%83%88%e3%83%a1%e3%82%a4%e3%82%af"]),
.l-header .l-header-nav li:has(> a[href*="/menu_category/%e3%82%b3%e3%83%bc%e3%82%b9"]),
.l-header .l-header-nav li:has(> a[href*="/menu_category/アートメイク"]),
.l-header .l-header-nav li:has(> a[href*="/menu_category/コース"]),
.l-header .l-header-nav li:has(> a[href*="/menu/108"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2918"]),
.l-header .l-header-nav li:has(> a[href*="/menu/4956"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1610"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1613"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2283"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1607"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1661"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1782"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1669"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1790"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1811"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1322"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1326"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1295"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1327"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1315"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1311"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1319"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2143"]),
.l-header .l-header-nav li:has(> a[href*="/menu/1339"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2122"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2120"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2152"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2202"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2214"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2426"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2409"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2395"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2483"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2441"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2473"]),
.l-header .l-header-nav li:has(> a[href*="/menu/2452"]),
.l-header .l-header-nav li:has(> a[href*="/menu/110"]),
.l-header .l-header-nav li:has(> a[href*="/menu/3032"]) {
    display: none !important;
}

/*0623*/
/*ここから*/
@media screen and (min-width: 769px) {
    .l-header-nav {
        position: relative;
    }

    .l-header-nav > ul > li {
        padding: 1em 0;
    }

    .l-header-nav .menu__single a:after {
        display: none;
    }

    .menu__single:hover .menu__second-level {
        top: 50px;
        visibility: visible;
        opacity: 1;
    }

    .menu__second-level {
        visibility: hidden;
        opacity: 0;
        z-index: 1;
        box-sizing: border-box;
        /*top: 50px;
        visibility: visible;
        opacity: 1;*/
    }

    .l-header-nav .menu__single a {
        text-align: left;
    }

    .menu__single .l-global-nav {
        padding: 20px 0 20px;
        /*background: #fdf0ef url(../img/common/bg-fv3@2x.png) repeat;*/
        background-size: 17px auto;
    }

    .menu__single .l-global-nav-list__caption a {
        font-size: 1.5rem;
        border-bottom: 1px solid #ccc;
        font-weight: 700;
        text-align: left;
        margin: 0 auto 1.2em;
        width: calc(100% - 65px);
    }

    .menu__single .l-global-nav-list.menu ul {
        display: block;
        width: 25%;
    }

    .menu__single .l-global-nav-list li.title {
        line-height: 1.5;
        font-size: 1.3rem;
        padding: 0 0 .2em;
    }

    .menu__single .l-global-nav-list li.title.notitle {
        border: none;
    }

    .menu__single .l-global-nav-list li.title a {
        font-size: 1.3rem;
    }

    .menu__single .l-global-nav-list li + li {
        margin-top: .3em;
    }

    .menu__single .l-global-nav-list li a {
        font-size: 1.2rem;
    }

    .menu__second-level li {
        float: none !important;
    }

    .menu__single .menu__second-level {
        position: absolute;
        top: 33px;
        left: -160px;
        width: calc(95vw - 160px);
        max-width: 1200px;
        background: #fff;
        border: 2px solid #ccc;
        transition: all .2s ease;
    }

    .menu__second-level a:before {}
}

/*@media screen and (min-width: 769px) {
    .menu__single .menu__second-level {
        width: calc(100vw - 100px - 3%);
    }
}*/
/*0623*/
/*ここまで*/
@media screen and (max-width: 768px) {
    .l-header {
        position: relative;
        z-index: 999;
    }

    .l-header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 6rem;
    }

    .l-header__logo {
        width: 12rem;
        margin-top: 0.5rem;
        margin-left: 1.5rem;
    }

    .l-header-btn-search {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        width: 6rem;
        height: 6rem;
        cursor: pointer;
    }

    .l-header-btn-search img {
        width: 100%;
    }

    .l-header-btn-search .icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .l-header-btn-search .icon:before {
        background-image: url(../img/icon-search.svg);
    }

    .l-header-search {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }

    .l-header-nav {
        display: none;
    }

    .l-header-links {
        display: none;
    }

    .l-header-nav_sp {
        height: 100%;
        display: block;
        margin: 0 0 0 auto;
    }

    .l-header-nav_sp ul {
        height: 100%;
        display: flex;
    }

    .l-header-nav_sp ul li {
        width: 6rem;
        height: 6rem;
    }

    .l-header-nav_sp ul li a {
        height: 100%;
        display: block;
    }

    .l-header-nav_sp ul li a img {
        width: 100%;
    }
}

/* l-container */
.l-side-banner li + li {
    margin-top: 10px;
}

@media screen and (min-width: 769px) {
    .l-container {
        max-width: 1100px;
        padding: 0 0 70px;
        margin: 0 auto;
        box-sizing: content-box;
    }

    .l-wrapper > .l-contents,
    .box-inner {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 0;
        box-sizing: border-box;
        width: 95%;
    }

    .l-wrapper > .l-contents {
        padding-bottom: 70px;
    }

    .l-container {
        display: flex;
        justify-content: space-between;
    }

    .l-container:first-child {
        padding-top: 150px;
    }

    .l-contents {
        width: 100%;
    }

    .l-side + .l-contents {
        width: 700px;
    }

    .l-side {
        width: calc(100% - 730px);
    }

    .l-side-nav__caption {
        padding: .5em 20px;
        font-size: 1.8rem;
        letter-spacing: .1em;
        background: #6fd1f7;
        color: #fff;
        text-align: center;
        font-weight: 700;
    }

    .l-side-nav-list li {
        border-bottom: 1px solid #e8e8e8;
    }

    .l-side-nav-list li a {
        position: relative;
        display: block;
        padding: 1em 20px;
        font-size: 1.4rem;
        color: inherit;
        text-decoration: none;
    }

    .l-side-nav-list li a:after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        width: 8px;
        height: 8px;
        border-top: 1px solid;
        border-right: 1px solid;
        box-sizing: border-box;
        opacity: 0.5;
        transform: translateY(-50%) rotate(45deg);
    }

    .l-side-nav-list li a span {
        display: inline-block;
        padding-right: 1em;
    }

    .l-side-nav-list li.current {
        color: #ab8900;
    }

    .l-side-nav-list li.current a:after {
        opacity: 1;
    }

    .l-side-recommend {
        display: none;
    }

    .l-side-search {
        margin-bottom: 30px;
    }

    .l-side-banner {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .l-container {
        width: 92%;
        margin: 0 auto;
        padding: 0 0 18rem;
    }

    .l-wrapper > .l-contents,
    .box-inner {
        width: 92%;
        margin: 0 auto;
    }

    .l-wrapper {
        padding-top: 4vw;
        padding-bottom: 9.5rem;
    }

    .l-container {
        display: flex;
        flex-direction: column;
    }

    .l-side + .l-contents {
        margin-bottom: 5rem;
        order: 1;
    }

    .l-side {
        display: flex;
        flex-direction: column;
        order: 2;
    }

    .l-side-nav {
        display: none;
    }

    .l-side-recommend {
        margin-bottom: 1.5rem;
        order: 1;
    }

    .l-side-banner {
        margin-bottom: 1rem;
        order: 2;
    }

    .l-side-search {
        order: 3;
    }

    .l-side-banner li img {
        width: 100%;
    }
}

/* l-footer */
.l-footer-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.l-footer-links a span {
    margin-left: 0.25em;
    vertical-align: middle;
}

.l-footer-links a.link-tel {
    background: #EF8EB9;
}

.l-footer-links a.link-tel .icon:before {
    background-image: url(../img/common/icn-tel-white.svg);
}

.l-footer-links a.link-reserve {
    background: #6ED0F7;
}

.l-footer-links a.link-reserve .icon:before {
    background-image: url(../img/common/icn-reserve.svg);
}

.l-footer-links a.link-contact {
    background: #EF8EB9;
}

.l-footer-links a.link-contact .icon:before {
    background-image: url(../img/common/icn-contact.svg);
}

.l-footer-links a.link-line {
    background: #12C75C;
}

.l-footer-links a.link-line .icon:before {
    background-image: url(../img/common/icn-line.svg);
}

.line__bnr {
    display: none;
    position: fixed;
    z-index: 9999;
    bottom: 12rem;
    right: 0;
    width: 72vw;
    max-width: 281px;
}

.line__bnr-close {
    position: absolute;
    top: -3rem;
    right: 3.5%;
    z-index: 9999;
    border: none;
    width: 3rem;
    height: 3rem;
    background: url(../img/common/line__bnr-close@2x.png) no-repeat 100% 100%;
    cursor: pointer;
    background-size: 1.3rem auto;
}

@media screen and (min-width: 769px) {
    .l-footer-inner {
        max-width: 1100px;
        /*def1024*/
        padding: 55px 20px;
        margin: 0 auto;
        box-sizing: content-box;
    }

    .l-footer-info {}

    .l-footer__logo {
        width: 220px;
        margin: 0 auto 55px;
    }

    .l-footer-info-inner {
        font-size: 1.4rem;
    }

    .l-footer-info-wrap {
        width: 48%;
    }

    .l-footer-info-wrap:last-child {
        width: 45%;
    }

    .l-footer-info-wrap ul li {
        width: 25%;
        margin: 0 0 .75em;
        font-size: 1.5rem;
    }

    .l-footer-info a {
        color: inherit;
        text-decoration: none;
    }

    .l-footer-links ul {
        margin: 35px auto;
        display: flex;
        justify-content: center;
    }

    .l-footer-links li {
        width: 197px;
        height: 60px;
    }

    .l-footer-links li + li {
        margin-left: 24px;
    }

    .l-footer-links a {
        font-size: 1.6rem;
    }

    .l-footer-links a .icon {
        font-size: 3.2rem;
        margin-right: 1rem;
    }

    .l-footer-links a.link-line .icon {
        font-size: 4rem;
    }

    .copyright {
        line-height: 100px;
        font-size: 1.4rem;
        color: #E5577D;
        font-weight: 700;
        text-align: center;
        background: #fff6f9;
        position: fixed;
        transform: translateY(-50%) rotate(90deg);
        right: 0;
        top: 100%;
        height: 100px;
        width: calc(100vh - 300px);
        transform: rotate(90deg);
        transform-origin: top right;
        z-index: 1000;
        text-indent: -5.5em;
        letter-spacing: .4px;
    }

    .l-footer-info-clinic {
        display: flex;
    }

    .l-footer-info-clinic + .l-footer-info-clinic {
        margin-top: 2.2rem;
    }

    .footer-info-clinic-ttl {
        background: #474747;
        color: #fff;
        text-align: center;
        padding: 1rem;
        margin-right: 1rem;
        width: 67px;
        letter-spacing: 0.1em;
    }

    .footer-info-clinic-txt {
        font-size: 1.4rem;
        line-height: 1.4;
    }
}

@media screen and (min-width: 769px) and (max-height: 720px) {
    .copyright {
        text-indent: 0;
    }
}

@media screen and (max-width: 768px) {
    .l-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
    }

    .l-footer-inner {
        position: relative;
    }

    /*20241113*/
    .l-footer-comment-1 {
        text-align: center;
        position: absolute;
        bottom: 100%;
        left: 15%;
        margin: 0;
        padding: 0.8em 0;
        box-sizing: border-box;
        background-image: url(//venusbeautyclinic.com/wp/wp-content/themes/venus/assets/css/../img/common/bg-fv@2x.png);
        background-repeat: repeat;
        background-size: 8px;
        color: #797674;
        font-size: 1.1rem;
        width: 56%;
        border-top-left-radius: .8rem;
        border-top-right-radius: .8rem;
        outline: #fcfcfc dashed 1px;
        outline-offset: -.3rem;
        /* 負の値で内側に配置 */
        font-weight: bold;
        line-height: 1.0;
    }

    .l-footer-comment-2 {
        text-align: center;
        position: absolute;
        line-height: 1.0;
        bottom: 100%;
        margin: 0;
        padding: 0.8em 0;
        box-sizing: border-box;
        background-image: url(//venusbeautyclinic.com/wp/wp-content/themes/venus/assets/css/../img/common/bg-fv2@2x.png);
        background-repeat: repeat;
        background-size: 8px;
        color: #797674;
        font-size: 1.1rem;
        right: .5%;
        width: 27.5%;
        border-top-left-radius: .8rem;
        border-top-right-radius: .8rem;
        outline: 1px dashed #fcfcfc;
        /* 点線の太さ、スタイル、色を指定 */
        outline-offset: -.3rem;
        /* 負の値で内側に配置 */
        letter-spacing: -1px;
        font-weight: bold;
    }

    /* 20241113 end*/
    .l-footer-links ul {
        display: flex;
        justify-content: space-between;
    }

    .l-footer-links li:first-child {
        width: 15%;
    }

    .l-footer-links li {
        width: 28.888%;
    }

    .l-footer-links a {
        height: 5.3rem;
        font-size: 1.2rem;
        font-weight: bold;
    }

    .l-footer-links a .icon {
        font-size: 2.5rem;
        margin: 0 .3rem 0 -.3rem;
    }

    .l-footer-links a.link-tel .icon {
        font-size: 2.3rem;
        margin: 0 .6rem 0 -.4rem;
    }

    .l-footer-links a.link-line .icon {
        font-size: 2.8rem;
        margin: 0 0.6rem 0 -0.5rem;
    }

    .l-footer-links .l-btn-gnav {
        background: #666;
    }

    .l-footer-links .l-btn-gnav .icon {
        font-size: 3.3rem;
        margin: .6rem 0 0;
        transition: all .4s;
    }

    .l-footer-links .l-btn-gnav .icon:before {
        background-image: url(../img/common/icn_menu.png);
    }

    .gnav-open .l-footer-links .l-btn-gnav .icon:before {
        background-image: url(../img/common/icn_menu-close.png);
    }

    .l-footer-line {
        background: #fff;
        padding: 10px 10px 0;
    }

    .l-footer-line img {
        width: 100%;
    }

    .l-footer-info {
        padding: 0.3rem 0;
        line-height: 1.5;
        font-size: 1.2rem;
        color: #666;
        text-align: center;
        background: #EAEAEA;
    }
}

/*0623*/
/*ここから*/
@media screen and (max-width: 768px) {
    .l-footer .wid-cta {
        background: no-repeat;
        padding: 0;
        margin: 0;
    }

    .l-footer .wid-cta .box-inner {
        padding: 0;
    }

    .l-footer .wid-cta .link_minor {
        display: none;
    }

    .l-footer .wid-cta li a {
        border: none;
    }

    .l-footer .wid-cta li a:after {
        display: none !important;
    }

    .l-footer .wid-cta .wid-cta__btnWrap li:not(:last-child) {
        background: none;
    }

    .l-footer .l-global-nav-list.contents .wid-cta li .icon {
        font-size: 3.4rem;
        position: relative;
        display: inline-block;
        width: 1em;
        height: 1em;
        vertical-align: middle;
    }

    .l-footer .l-global-nav-list.contents .wid-cta li a.link-line .icon {
        font-size: 4rem;
    }

    .l-footer .wid-cta .wid-cta__btnWrap.icon:before {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: no-repeat center center;
        background-size: contain;
    }

    .l-footer .wid-cta .top-h__ttl-box p {
        margin: .7em auto 1em;
    }

    .l-footer .l-global-nav-list.contents .wid-cta__btnWrap li a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        border: none;
        padding: 0;
    }

    .l-footer .top-search-content-wrap {
        margin-top: 1rem;
    }

    .l-footer .l-btn-back {
        position: relative;
        padding: .8rem 2rem 1rem 2rem;
        margin-bottom: 2rem;
        display: block;
    }

    .l-footer .l-btn-back:after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: .7rem;
        width: 11px;
        height: 9px;
        background: url(../img/common/icn-arw-gray.svg) no-repeat 50% 50%;
        background-size: contain;
        transform: translateY(-50%) rotate(-90deg);
    }

    .l-footer .l-global-nav-list .nav-menu_list {
        margin: 2em auto;
    }

    .l-footer .l-global-nav-list .nav-menu_list li {
        width: 100%;
        padding: 0;
        margin: 0;
        height: auto;
    }

    .l-footer .l-global-nav-list .nav-menu_list.list_top {
        flex-direction: column;
    }

    .l-footer .l-global-nav-list .nav-menu_list.list_btm li {
        width: 48%;
    }

    .l-footer .l-global-nav-list .nav-menu_list li a,
    .l-footer .l-global-nav-list .nav-menu_list li span {
        border: none;
        display: block;
        border-bottom: 1px solid #ccc;
        height: auto;
        margin: 0;
        padding: .7em 0;
    }

    .l-footer .l-global-nav-list .nav-menu_list.list_top li a,
    .l-footer .l-global-nav-list .nav-menu_list.list_top li span {
        text-align: left;
        cursor: pointer;
    }

    .l-footer .l-btn-menu {
        position: relative;
    }

    .l-footer .l-btn-menu:after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: .7rem;
        width: 11px;
        height: 9px;
        background: url(../img/common/icn-arw-gray.svg) no-repeat 50% 50%;
        background-size: contain;
        transform: translateY(-50%) rotate(90deg);
    }

    .l-footer .l-global-nav-list .nav-menu_list li a:after {
        display: none;
    }

    .l-footer .l-global-nav-list.menu {
        position: fixed;
        top: 100%;
        left: 100%;
        width: 100%;
        height: 100%;
        padding: 2.5% 2% 10.2rem;
        overflow-y: auto;
        z-index: 1000091;
        transition: .5s ease;
        visibility: hidden;
    }

    .gnav-open .l-global-nav-list.menu {
        top: 0;
        visibility: visible;
    }

    .gnav-open-menu .l-global-nav-list.menu {
        left: 0;
    }

    .gnav-open-menu .l-global-nav {
        left: -100%;
    }

    .l-global-nav_r,
    .l-global-nav_l {
        height: 100%;
        overflow-y: auto;
    }
}

/*0623*/
/*ここまで*/
/* l-global-nav */
.l-global-nav {
    background: #f8f8f8 url(../img/common/bg-footer@2x.png) repeat;
    background-size: 17px auto;
}

@media screen and (min-width: 769px) {
    .l-global-nav {
        padding: 80px 0 40px;
        font-size: 1.3rem;
        color: #666;
    }

    .l-global-nav-header {
        display: none;
    }

    .l-global-nav-inner {
        max-width: 1150px;
        margin: 0 auto;
    }

    .l-global-nav-list__caption {
        font-size: 2rem;
        font-weight: 700;
        text-align: center;
        margin: 0 auto 1.3em;
    }

    .l-global-nav-list.contents {
        width: 33%;
    }

    .l-global-nav-list.menu {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .l-global-nav-list ul {
        padding: 0 25px;
    }

    .l-global-nav-list.menu ul {
        width: 33.33%;
    }

    .l-global-nav-list li + li {
        margin-top: 1em;
    }

    .l-global-nav-list li.title {
        line-height: 2;
        border-bottom: 1px solid #ccc;
        font-size: 1.8rem;
        font-weight: bold;
        padding: 0 0 .6em;
    }

    .l-global-nav-list li.title:not(:first-child) {
        margin-top: 2em;
    }

    .l-global-nav-list li.title a {
        padding: 0;
        font-weight: 700;
        font-size: 1.8rem;
    }

    .l-global-nav-list li.title a:before {
        content: none;
    }

    .l-global-nav-list li a {
        display: block;
        position: relative;
        padding-left: 1.5em;
        color: inherit;
        text-decoration: none;
        font-size: 1.6rem;
        color: #666;
    }

    .l-global-nav-list li a:before {
        content: "";
        display: block;
        position: absolute;
        top: 1em;
        left: .05em;
        width: .9em;
        height: 2px;
        background: #ccc;
        box-sizing: border-box;
    }

    .l-global-nav-list.contents li a .icon {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .l-global-nav {
        position: fixed;
        top: 100%;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 8rem 0 9.2rem;
        overflow: hidden;
        visibility: hidden;
        transition: 0.5s ease;
        background: #fdf0ee url(../img/common/bg-fv@2x.png) repeat;
        background-size: 17px auto;
    }

    .gnav-open .l-global-nav {
        top: 0;
        visibility: visible;
    }

    .l-global-nav-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .l-global-nav__logo {
        width: 92%;
        margin: 0 auto;
        padding: 5% 0 0;
    }

    .l-global-nav__logo a {
        display: block;
        line-height: 7rem;
        background: #fff;
        margin: 0 auto 0;
        text-align: center;
    }

    .l-global-nav__logo img {
        width: 12rem;
        vertical-align: middle;
    }

    .l-global-nav .l-btn-gnav {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 5rem;
        height: 6rem;
        cursor: pointer;
        display: none;
    }

    .l-global-nav .l-btn-gnav .icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .l-global-nav .l-btn-gnav .icon:before {
        background-image: url(../img/icon-close.png);
    }

    .l-global-nav-outer {
        width: calc(100% + 100px);
        height: 100%;
        padding-right: 100px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .l-global-nav-inner {
        display: flex;
        flex-direction: column;
    }

    .l-global-nav-list:before {
        content: "";
    }

    .l-global-nav-list {
        padding: 2.5% 2% 7.5%;
        width: 92%;
        margin: 0 auto;
        background: #fff;
    }

    .l-global-nav-list:first-child {
        margin-bottom: 5%;
    }

    .l-global-nav-list__caption {
        padding: 2rem 0 1rem;
        font-size: 1.4rem;
        text-align: center;
        border-bottom: 1px solid;
    }

    .l-global-nav-list.contents {
        order: 1;
    }

    .l-global-nav-list.contents ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .l-global-nav-list.contents ul:after {
        content: "";
        display: block;
        width: 33.33%;
        height: 0;
        visibility: hidden;
    }

    .l-global-nav-list.contents li {
        width: 49%;
        margin: 2% 2% 0 0;
        height: 5.86rem;
        font-size: 1.5rem;
    }

    .l-global-nav-list.contents li:nth-child(2n) {
        margin-right: 0;
    }

    .l-global-nav-list.contents li a {
        font-size: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0 0.5em;
        line-height: 1.4;
        font-weight: 400;
        text-align: center;
        height: 5.9rem;
        white-space: normal;
        border: 1px solid #ccc;
        color: inherit;
        text-decoration: none;
        background: #fff;
        position: relative;
    }

    .l-global-nav-list.contents li a:after {
        content: "";
        display: block;
        position: absolute;
        right: 1px;
        bottom: 1px;
        border-width: .3em;
        border-style: solid;
        border-color: transparent;
        border-right-color: inherit;
        border-bottom-color: inherit;
    }

    .l-global-nav-list.contents li .icon {
        display: block;
        width: 2.5rem;
        height: 2.5rem;
        margin: 0 auto 0.5rem;
        display: none;
    }

    .l-global-nav-list.menu {
        order: 2;
        padding-top: 9%;
    }

    .l-global-nav-list.menu .top-h__ttl-box {
        margin-bottom: 6%;
    }

    .l-global-nav-list.menu .top-h__ttl span:after {
        bottom: 2vw;
        right: -9.5vw;
        width: 16vw;
        height: 13vw;
        background: url(../img/common/icn_menu.svg) no-repeat 50% 50%;
        background-size: contain;
    }

    .l-global-nav-list.menu li {}

    .l-global-nav-list.menu li.title {
        margin: 0;
        font-size: 1.4rem;
        text-align: center;
        color: #fff;
        background: #6ED0F7;
        border: none;
    }

    .l-global-nav-list.menu li.title a {
        padding: .7rem 0;
    }

    .l-global-nav-list.menu li.title a:after {
        content: none;
    }

    .l-global-nav-list.menu li a {
        display: block;
        position: relative;
        padding: .8rem 2rem 1rem 3rem;
        color: inherit;
        text-decoration: none;
        font-size: 1.4rem;
    }

    .l-global-nav-list.menu li a:before {
        content: "";
        position: absolute;
        left: .8rem;
        top: 50%;
        background: #6ed0f7;
        line-height: 1;
        width: 1.1rem;
        height: 1px;
    }

    .l-global-nav-list.menu li a:after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: .7rem;
        width: 11px;
        height: 9px;
        background: url(../img/common/icn-arw-blue.svg) no-repeat 50% 50%;
        background-size: contain;
        transform: translateY(-50%) rotate(90deg);
    }
}

/* link card */
.lkc-url {
    color: #E5577D;
}

/* youtube */
lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    max-width: 720px;
}

/* gradient */
lite-youtube::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
    background-position: top;
    background-repeat: repeat-x;
    height: 60px;
    padding-bottom: 50px;
    width: 100%;
    transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

lite-youtube::after {
    content: "";
    display: block;
    padding-bottom: calc(100% / (16 / 9));
}

lite-youtube > iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

/* play button */
lite-youtube > .lty-playbtn {
    display: block;
    width: 68px;
    height: 48px;
    position: absolute;
    cursor: pointer;
    transform: translate3d(-50%, -50%, 0);
    top: 50%;
    left: 50%;
    z-index: 1;
    background-color: transparent;
    /* YT's actual play button svg */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
    filter: grayscale(100%);
    transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
    border: none;
}

lite-youtube:hover > .lty-playbtn,
lite-youtube .lty-playbtn:focus {
    filter: none;
}

lite-youtube.lyt-activated {
    cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lty-playbtn {
    opacity: 0;
    pointer-events: none;
}

.lyt-visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.youtube__box {
    padding-top: 56.25%;
    box-sizing: border-box;
    position: relative;
}

.youtube__box iframe,
.youtube__box lite-youtube {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

/* bnr */
.bnr__area {
    background: #FFF6F9;
    text-align: center;
    padding: 56px 0;
}

/* sns */
.sns__btn {
    text-align: center;
    display: block !important;
}

.sns__btn li,
.sns__btn li a {
    padding: 5px 4px;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 !important;
}

.list-sns__btn {
    justify-content: center;
    margin: 4.5% auto 3%;
}

/* box */
.article__box-1 {
    border: 1px solid #ccc;
    border-top: 4px solid #6ED0F7;
    background: #fff;
    padding: 30px 40px 32px;
}

/* search-box */
.wid-search-box ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.wid-search-box li:first-child {
    width: 74%;
}

.wid-search-box li:last-child {
    width: 24%;
}

.wid-search-box input,
.wid-search-box button {
    width: 100%;
    border-radius: 0;
    padding: 0 0.5em;
    margin: 0 !important;
    font-family: inherit;
    vertical-align: top;
    border: 1px solid #ccc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.wid-search-box button {
    background: #eee;
}

/* recommend */
.wid-recommend__ttl {}

.wid-recommend-list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wid-recommend-list li img {
    width: 100%;
}

.wid-recommend-list li {
    width: 32.2%;
    margin-top: 2.1%;
}

@media screen and (min-width: 769px) {

    /* search-box */
    .wid-search-box input[type="search"] {
        height: 68px;
        display: inline-block;
        border: 1px solid #EAEAEA;
        border-radius: 68px;
        font-size: 1.5rem;
        outline: none;
        color: #555;
        padding: 0;
        padding-right: 68px;
        width: 0px;
        position: absolute;
        top: 0;
        right: 0;
        background: #fff url(../img/common/icn_search.svg) 50% 50% no-repeat;
        z-index: 3;
        transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
        cursor: pointer;
    }

    .wid-search-box input[type="search"]:focus {
        background: #fff;
        width: 420px;
        z-index: 1;
        cursor: text;
        padding-left: 2em;
    }

    .wid-search-box button[type="submit"] {
        height: 68px;
        width: 68px;
        background: url(../img/common/icn_search.svg) 50% 50% no-repeat;
        display: inline-block;
        color: red;
        float: right;
        text-indent: -10000px;
        border: none;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
        cursor: pointer;
        transition: opacity .4s ease;
        border-radius: 68px;
    }

    .wid-search-box {
        position: fixed;
        right: 130px;
        bottom: 130px;
        z-index: 10000;
    }

    .wid-search-box input,
    .wid-search-box button {
        height: 30px;
        font-size: 1.4rem;
    }

    .wid-search-box ul {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .wid-search-box li:first-child {
        width: 74%;
    }

    .wid-search-box li:last-child {
        width: 24%;
    }

    /* recommend */
    .wid-recommend__ttl {
        font-size: 2.1rem;
    }

    .wid-recommend-other {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {

    /* search-box */
    .wid-search-box {
        background: #EAEAEA;
        padding: 4%;
    }

    .wid-search-box input {
        background: #fff;
    }

    .wid-search-box input,
    .wid-search-box button {
        height: 2.8em;
        font-size: 16px;
    }

    .wid-search-box input {
        border-radius: 4px;
        border: none;
    }

    .wid-search-box button {
        color: transparent;
        border: none;
        padding: 0;
        background: url(../img/common/icn_search.svg) 50% 50% no-repeat;
    }

    ::placeholder {
        font-size: 1.4rem;
    }

    .wid-search-box ul {
        position: relative;
    }

    .wid-search-box li:first-child {
        width: 100%;
    }

    .wid-search-box li:last-child {
        position: absolute;
        top: 0;
        right: 0;
        width: 4rem;
    }

    .list-sns__btn {
        margin: 12vw auto 7vw;
        position: relative;
    }

    .list-sns__btn:after {
        content: "";
        display: block;
        width: 92%;
        height: 2px;
        background: #f8f8f8;
        margin: 8% auto 10%;
    }

    .list-sns__btn .top-h__ttl {
        width: 40%;
    }

    .list-sns__btn dd {
        width: 60%;
    }

    /* recommend */
    .wid-recommend__ttl {
        font-size: 1.8rem;
    }

    .wid-recommend__ttl span:before,
    .wid-recommend__ttl span:after {
        width: 3em;
    }

    .wid-recommend-other {
        margin-top: 1.5rem;
    }

    .sns__btn li,
    .sns__btn li a {
        width: 5.6rem;
    }

    .bnr__area {
        padding: 7.5% 4% 10.5%;
        background: #fff;
    }
}

/* top page */
/* kv */
.top-kv {
    background: #f6f3e5;
}

.top-kv-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.top-kv-slider,
.top-kv-slider-thumb {
    display: none;
}

.top-kv-slider.slick-initialized,
.top-kv-slider-thumb.slick-initialized {
    display: block;
}

.top-kv-slider-thumb :focus {
    outline: none;
}

.top-kv-slider-thumb-wrap {
    position: relative;
    margin: 0 auto;
}

.top-kv-slider-thumb-item {
    cursor: pointer;
}

.top-kv-slider-thumb-item img {
    border: 2px solid transparent;
    background: linear-gradient(to bottom,
            #88751f 0%,
            #eedcaf 50%,
            #88751f 100%);
}

.top-kv-slider-thumb-controller .slider-arrow {
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
}

.top-kv-slider-thumb-controller .slider-arrow:before {
    content: "";
    display: block;
    width: 0.9em;
    height: 0.9em;
    border-top: 1px solid #ab8900;
    border-right: 1px solid #ab8900;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.top-kv-slider-thumb-controller .slider-prev {
    left: 0;
    transform: scale(-1, 1);
}

.top-kv-slider-thumb-controller .slider-next {
    right: 0;
}

.top-fv-01 {
    height: 695px;
    position: relative;
    background: #fef7f6;
    overflow: hidden;
}

.top-fv-01 .box-inner {
    height: 100%;
    width: 100%;
    max-width: 1580px;
    padding: 0;
    align-content: flex-end;
    background: #fef7f6 url(../img/top/bg-top_fv_01@2x.jpg) no-repeat 0% 0;
    background-size: auto 100%;
}

.top-fv-01 .box-inner .box {
    width: 100%;
}

.top-fv__ttl {
    text-align: right;
    max-width: 1210px;
    margin: 0 0 0 auto;
    position: relative;
    top: 10px;
}

.top-fv__ttl img {
    width: 100%;
    height: auto;
}

.top-fv__txt {
    font-size: 3.2rem;
    letter-spacing: .13rem;
    color: #e5577d;
    font-weight: bold;
    margin-top: 30px;
    text-align: right;
}

.top-fv__txt i {
    font-style: normal;
    font-size: 4.2rem;
}

.top-fv__list.flex-box {
    max-width: 650px;
    margin: 8px 10px 27px auto;
    justify-content: center;
    position: relative;
}

.top-fv-01 .top-fv__list:before {
    content: "";
    width: 95%;
    height: 560px;
    position: absolute;
    bottom: -28px;
    left: -86%;
    background: url(../img/top/bg-main_02@2x.png) no-repeat 50% 100%;
    background-size: contain;
}

@media screen and (min-width: 1441px) {
    .top-fv-01 .top-fv__list:before {
        width: 770px;
        left: -670px;
    }
}

@media screen and (max-width: 1440px) {
    .top-fv-01 {
        background-position: 0 0;
    }
}

@media screen and (max-width: 1280px) {
    .top-fv-01 .top-fv__list:before {
        width: 90%;
        left: -70%;
        z-index: 3;
    }
}

@media screen and (max-width: 1180px) {
    .top-fv-01 .top-fv__list:before {
        width: 80%;
        left: -60%;
        z-index: 3;
    }
}

.top-fv__list li {
    text-align: center;
    background: #fff;
    padding: 15px;
    position: relative;
    width: 200px;
    height: 200px;
    margin-left: 25px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-fv__list li:first-child {
    margin-left: 0;
}

.top-fv__list li:nth-child(4),
.top-fv__list li:nth-child(5) {
    margin: 0 12.5px 24px;
}

.top-fv__list li:before {
    content: "";
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    box-sizing: content-box;
    position: absolute;
    top: 9px;
    left: 9px;
    border: 1px solid #ccc;
}

.top-fv__list li .point__ttl {
    font-size: 1.6rem;
    position: absolute;
    top: 1.5em;
    left: 0;
    width: 100%;
}

.top-fv__list li p {
    font-size: 2.1rem;
    position: relative;
    top: .5em;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .top-fv {
        margin-top: -4vw;
    }

    .top-fv-01 {
        height: auto;
        background: #fef7f6;
    }

    .top-fv-wrap {
        width: 100%;
        height: 72.2vw;
    }

    .top-fv-01 .box-inner {
        width: 100%;
        padding: 0;
        background: url(../img/top/bg-main_sp.jpg) no-repeat 50% 0%;
        background-size: contain;
    }

    .top-fv__ttl {
        font-size: 4.7rem;
        letter-spacing: -.2px;
        margin: 0;
        word-break: break-all;
        white-space: nowrap;
        top: 0;
        text-align: center;
        padding: 2vw 4vw;
    }

    .top-fv__ttl img {
        display: block;
    }

    .top-fv-box {
        position: relative;
        padding: 2vw 0 1px;
    }

    .top-fv__txt {
        position: absolute;
        left: 3.33vw;
        font-size: 1.4rem;
        letter-spacing: -1px;
        line-height: 1.2;
        margin-top: 0;
        padding: 4vw 0;
        width: 30.33vw;
        text-align: center;
    }

    .top-fv__txt span {
        display: none;
    }

    .top-fv__txt i {
        font-size: 1.8rem;
    }

    .top-fv__list.flex-box {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        justify-content: flex-start;
    }

    .top-fv-01 .top-fv__list:before {
        display: none;
    }

    .top-fv__list li:first-child {
        margin-left: 34.33vw;
    }

    .top-fv__list li {
        padding: 2.2vw 0;
        width: 31.33vw;
        height: unset;
    }

    .top-fv__list li:before {
        width: calc(100% - 12px);
        height: calc(100% - 12px);
        top: 5px;
        left: 5px;
        display: none;
    }

    .top-fv__list li,
    .top-fv__list li:nth-child(4),
    .top-fv__list li:nth-child(5) {
        margin: 0 1vw 2vw;
    }

    .top-fv__list li .point__ttl {
        font-size: 1.2rem;
        position: relative;
        top: 0;
        left: 0;
        margin: -.1em 0 -.1em;
        width: 100%;
        display: none;
    }

    .top-fv__list li p {
        font-size: 1.4rem;
        letter-spacing: -.7px;
        line-height: 1.2;
        margin-top: 0;
        padding: 0;
        top: 0;
    }
}

/*title*/
.top-h__ttl {
    text-align: center;
    line-height: 1.6;
}

.top-h__ttl span {
    font-size: 6.2rem;
    color: #6ed0f7;
    font-family: 'Dancing Script', cursive;
    display: inline-block;
    position: relative;
    transform: rotate(-2.5deg);
    text-indent: -0.1em;
    letter-spacing: 1px;
    padding: 0 18px;
}

.top-h__ttl.large span {
    font-size: 8.5rem;
    text-indent: .3em;
}

.top-h__ttl.small span {
    font-size: 4.4rem;
    padding: 0 1.4em 0 .6em;
}

.top-h__ttl.pink span {
    color: #EF8EB9;
}

.top-h__ttl span:before,
.top-h__ttl span:after {
    content: "";
    position: absolute;
}

.top-h__ttl span:before {
    top: 0;
    left: -30px;
    width: 47px;
    height: 66px;
    background: url(../img/common/top-h_ttl.svg) no-repeat 50% 50%;
    background-size: contain;
}

.top-h__ttl.small span:after {
    top: -6px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: url(../img/common/icn_sns.svg) no-repeat 50% 50%;
    background-size: contain;
}

.top-h__ttl.small span:before {
    top: 1px;
    left: 8px;
    width: 23px;
    height: 16px;
    background: url(../img/common/top-h_ttl_small.svg) no-repeat 50% 50%;
    background-size: contain;
}

.top-h__ttl.large span:after {
    bottom: 12px;
    right: -78px;
    width: 80px;
    height: 71px;
    background: url(../img/common/icn_pickup.svg) no-repeat 50% 50%;
    background-size: contain;
}

.top-h__ttl.large span:before {
    top: -13px;
    left: -27px;
    width: 64px;
    height: 90px;
}

.top-h__ttl.pink span:before {
    top: -9px;
    background: url(../img/common/top-h_ttl-pink.svg) no-repeat 50% 50%;
    background-size: contain;
}

.top-h__ttl-box p {
    text-align: center;
    margin-bottom: 1.9em;
}

/* pickup */
.top-pickup {
    padding: 44px 0 60px;
}

/* search */
.top-search {
    padding: 96px 0 80px;
    background: url(../img/common/bg-fv@2x.png);
    background-size: 17px auto;
}

.top-search-tab ul {
    display: flex;
}

.top-search-tab li {
    width: 50%;
}

.top-search-tab li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    line-height: 1.4;
    font-weight: bold;
    color: inherit;
    text-align: center;
    text-decoration: none;
    border-radius: 2px 2px 0 0;
    background: #EAEAEA;
}

.top-search-tab li a:after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    border-style: solid;
    border-width: 0.7em 0.6em 0 0.6em;
    border-color: transparent;
    border-top-color: #EAEAEA;
    transform: translate(-50%, -1px);
    transition: 0.3s ease;
    opacity: 0;
}

.top-search-tab li a .icon {
    display: none;
}

.top-search-tab li a.active {
    color: #fff;
    background: #EF8EB9;
    pointer-events: none;
}

.top-search-tab li a.active:after {
    opacity: 1;
    border-top-color: #EF8EB9;
}

.top-search-tab li a.active .icon:before {
    background-position-y: bottom;
    opacity: 1;
}

.top-search-content-wrap {
    background: #fff;
}

.top-search-content__ttl {
    line-height: 2.7;
    font-weight: bold;
    color: #e5577d;
    text-align: center;
    letter-spacing: 0.1em;
    width: 100%;
    height: 56px;
    position: relative;
}

.top-search-content__ttl:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 28px;
    left: 0;
    background: #EF8EB9;
}

.top-search-content__ttl a {
    display: block;
    color: #e5577d;
    text-decoration: none;
    font-weight: 700;
}

.top-search-content__ttl a span {
    display: inline-block;
    background: #fff;
    padding: 0 .7em;
    z-index: 3;
    position: relative;
    letter-spacing: 0;
}

.top-search-content-list ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.top-search-content-item a {
    position: relative;
    display: block;
    width: 100%;
    color: inherit;
    text-decoration: none;
    border: 1px solid #ccc;
    background: #fff;
}

.top-search-content-item a:after {
    content: "";
    display: block;
    position: absolute;
    right: 1px;
    bottom: 1px;
    border-width: 0.3em;
    border-style: solid;
    border-color: transparent;
    border-right-color: inherit;
    border-bottom-color: inherit;
}

.top-search-content-item__image {
    position: relative;
}

.top-search-content-item__image > div {
    width: 100%;
    padding-top: calc(120 / 185 * 100%);
    background: no-repeat center center / cover;
}

.top-search-content-item__text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 0.5em;
    line-height: 1.4;
    font-weight: normal;
    text-align: center;
}

/* movies */
.top-movies {
    padding: 100px 0 58px;
}

.top-movies .top-h__ttl span:before {
    top: -10px;
}

.top-movies .top-h__ttl span:after {
    bottom: 5px;
    right: -32px;
    width: 50px;
    height: 45px;
    background: url(../img/common/icn_movies.svg) no-repeat 50% 50%;
    background-size: contain;
}

/*
.top-movies .article__box-1:last-child{
    margin: 0 auto 22px;
}
*/
.top-movies .article__box-1 .youtube__box {
    margin: 30px auto 25px;
}

.top-movies__ttl {
    text-align: center;
    font-size: 1.8rem;
}

.top-movies .article__box-1 p {
    font-size: 1.5rem;
}

.top-wid-recommend {
    margin-bottom: 55px;
}

/* result */
.top-result {
    padding: 79px 0 83px;
    position: relative;
}

.top-result:before {
    content: "";
    width: 100%;
    height: 26.3%;
    background: #fdf0ee;
    position: absolute;
    top: calc(50% - 9%);
    left: 0;
}

.result__ttl {
    text-align: center;
    font-size: 2rem;
    color: #E5577D;
    margin: 0 auto 1.4em;
    font-weight: 700;
}

.result__list {
    max-width: 750px;
    margin: 0 auto;
}

.result__list li {
    position: relative;
    z-index: 3;
    width: 176px;
}

.result__list li figure {
    border: 1px solid #ccc;
}

.result__list li img {
    width: 100%;
}

/* news */
.top-news {
    padding: 80px 0;
    background: url(../img/common/bg-fv@2x.png);
    background-size: 17px auto;
}

.top-news .box-inner {
    background: #fff;
    padding: 64px 0 30px;
}

.top-news .top-h__ttl-box {
    width: 43%;
}

.top-news__more a {
    position: relative;
    display: block;
    padding-right: 2em;
    color: inherit;
    text-decoration: none;
}

.top-news__more a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0.5em;
    width: 0.5em;
    height: 0.5em;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: translateY(-50%) rotate(45deg);
}

.top-news-list {
    width: 56.6%;
    padding-top: 0.5em;
}

.top-news-item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.top-news-item__text {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 0 0 2.2em;
    color: #626262;
}

.top-news-item__text > * {
    display: table-cell;
    vertical-align: top;
}

.top-news-item__text dt {
    width: 7em;
}

.top-column {
    margin-top: 25px;
}

.top-column .box-inner {
    padding-bottom: 40px;
}

.top-column .top-h__ttl-box {
    width: 39%;
}

.top-column .top-h__ttl span {
    padding-top: 5px;
}

.top-column .top-h__ttl span:after {
    bottom: 6px;
    right: -37px;
    width: 72px;
    height: 53px;
    background: url(../img/common/icn_column.svg) no-repeat 50% 50%;
    background-size: contain;
}

.top-column .top-news-list {
    padding-top: 0;
}

.top-column .top-news-item {
    margin-bottom: 1.5em;
}

.top-news-item .top-column-item-link {
    display: flex;
}

.top-news-item__thumb {
    position: relative;
    width: 94px;
}

.top-news-item__thumb > div {
    display: block;
    width: 94px;
    height: 94px;
    background: no-repeat center center / cover;
    background-color: #fff;
}

.top-column-item__text {
    flex: 1;
    padding-left: 7px;
}

.top-column-item__date {
    font-size: 1.5rem;
    font-family: "poppins", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
    color: #626262;
    margin-bottom: .5em;
    line-height: 1.4;
}

.top-column .menu-tags {
    margin-bottom: 5px;
    text-align: left;
}

.top-column-item__ttl {
    font-size: 1.6rem;
    color: #626262;
}

/* purpose */
.top-purpose {
    padding: 100px 0 0;
}

.top-purpose .top-h__ttl span {
    padding: 0 0 0 36px;
}

.top-purpose .top-h__ttl span:before {
    top: -10px;
    left: -10px;
}

.top-purpose .box-inner {
    padding-bottom: 0;
}

.top-banner-2col ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.top-banner-2col li {
    width: 48.2%;
}

.top-banner-2col li:nth-child(n + 3) {
    margin-top: 3%;
}

.top-banner-1col li img {
    width: 100%;
}

@media screen and (min-width: 769px) {
    .top-banner-2col {
        margin: 40px auto;
    }

    .top-banner-1col {
        text-align: center;
        margin-bottom: 30px;
    }

    .top-banner-1col li:nth-child(n + 2) {
        margin-top: 30px;
    }

    .top-kv {
        margin-bottom: 50px;
    }

    .top-kv-slider-thumb-wrap {
        max-width: 1024px;
        padding: 30px 40px;
    }

    .top-kv-slider-thumb-item {
        padding: 0 5px;
    }

    .top-kv-slider-thumb-controller .slider-arrow {
        width: 40px;
    }

    /* search */
    .top-search {}

    .top-search-tab li a {
        height: 64px;
    }

    .top-search-content {
        padding: 25px 30px 30px;
        max-width: 962px;
        margin: 0 auto;
    }

    .top-search-content__ttl {
        font-size: 2rem;
    }

    .top-search-content-list + .top-search-content__ttl {
        margin-top: 1.5em;
    }

    .top-search-content-list {
        margin-top: 1.2%;
    }

    .top-search-content-list ul:after {
        content: "";
        width: 31%;
        height: 0;
        visibility: hidden;
    }

    .top-search-content-list li {
        width: 18.5%;
        margin-right: 1.8%;
        margin-bottom: 1.3%;
    }

    .top-search-content-list li:nth-child(5n) {
        margin-right: 0;
    }

    .top-search-content-item__text {
        height: 58px;
        font-size: 1.5rem;
    }

    .result__list {
        justify-content: flex-start;
    }

    .result__list li {
        margin-right: 15px;
    }

    .result__list li:nth-child(4n) {
        margin-right: 0;
    }

    /* movies */
    .top-movies .article__box-1 {
        width: 49%;
        margin: 22px 0;
    }

    .top-movies .flex-box {
        margin-bottom: 55px;
    }

    /* news */
    .top-news__ttl {
        font-size: 2rem;
    }

    .top-news__more a {
        font-size: 1.4rem;
    }

    .top-news-item__text {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 768px) {
    .top-banner-2col {
        margin-bottom: 1.5rem;
    }

    .top-banner-2col li {
        width: 100%;
        margin-bottom: 1%;
    }

    .top-banner-2col li,
    .top-banner-2col li:nth-child(n+3) {
        margin-top: 3.5%;
    }

    .top-banner-1col {
        margin-bottom: 1.5rem;
    }

    .top-banner-1col li:nth-child(n + 2) {
        margin-top: 1.5rem;
    }

    .top-kv {
        margin-bottom: 1.5rem;
        overflow: hidden;
    }

    .top-kv-slider-thumb-wrap {
        padding: 1rem 0;
        margin: 0 -7rem;
    }

    .top-kv-slider-thumb-item {
        padding: 0 0.1rem;
    }

    .top-kv-slider-thumb-item img {
        border-width: 0.1rem;
    }

    .top-kv-slider-thumb-controller .slider-arrow {
        display: none !important;
        width: 2rem;
        padding: 0.75rem;
    }

    .top-kv-slider-thumb-controller .slider-arrow:before {
        width: 0.5rem;
        height: 0.5rem;
    }

    /* search */
    .top-search {
        padding: 10.5% 0;
    }

    .top-search-tab li a {
        height: 4.1em;
        font-size: 1.5rem;
        white-space: nowrap;
    }

    .top-search-tab li a:after {
        border-width: 0.9em 0.5em 0;
    }

    .top-search-tab li a .icon {
        margin-right: 0.2em;
    }

    .top-search-content {
        padding: 10% 2% 1%;
    }

    .top-search-content__ttl {
        font-size: 1.8rem;
        height: unset;
        line-height: 1.8;
        margin: 0 0 0.35em;
    }

    .top-search-content-list + .top-search-content__ttl {
        margin-top: 2rem;
    }

    .top-search-content__ttl:before {
        display: none;
    }

    .top-search-content-list {
        margin: 0 auto 10.5%;
    }

    .top-search-content-list li {
        width: 49%;
        margin: 2% 2% 0 0;
    }

    .top-search-content-list li:nth-child(even) {
        margin-right: 0;
    }

    .top-search-content-item__image {
        margin: 1rem 1rem 0.5rem;
    }

    .top-search-content-item__text {
        height: 3.75em;
        font-size: 1.5rem;
    }

    .top-search-content-item a:after {
        border-width: .45em;
    }

    /* movies */
    .top-movies {
        padding: 11% 0;
    }

    .top-movies .article__box-1 {
        margin: 5.5% auto 5%;
        padding: 5.5% 3%;
    }

    .top-movies .top-h__ttl span:before {
        top: -1vw;
    }

    .top-movies .top-h__ttl span:after {
        bottom: 3vw;
        right: -10.5vw;
        width: 56px;
        width: 14vw;
        height: 45px;
        height: 11vw;
    }

    /* pickup */
    .top-pickup {
        padding: 11% 0 11%;
    }

    /* result */
    .top-result {
        padding: 15.5% 0 13%;
    }

    .top-result:before {
        display: none;
    }

    .result__ttl {
        font-size: 1.8rem;
        margin: 0 auto 1.1em;
    }

    .result__list li {
        width: 48.5%;
    }

    /* news */
    .top-news {
        padding: 7% 0;
    }

    .top-news .box-inner {
        padding: 5% 3.5% 7.5%;
    }

    .top-information .top-h__ttl span {
        padding: 0 0 0 0.4em;
    }

    .top-information .top-h__ttl span:before {
        top: -2vw;
        left: -2vw;
    }

    .top-news .top-h__ttl-box,
    .top-news-list {
        width: 100%;
    }

    .top-news-item__text dt {
        width: 6.4em;
        font-size: 1.4rem;
    }

    .top-news__ttl {
        font-size: 1.6rem;
    }

    .top-news__more a {
        font-size: 1.5rem;
    }

    .top-news-item__text {
        font-size: 1.5rem;
        margin: 1.7em 0 0;
    }

    .top-news-item__thumb > div {
        padding-top: 100%;
    }

    .top-column {
        margin-top: 10%;
    }

    .top-column .box-inner {
        padding-bottom: 2.5%;
    }

    .top-column .top-news-list {
        margin: 9% auto 0;
    }

    .top-column .top-news-item {
        margin-bottom: 5.5vw;
    }

    .top-column-item__text {
        padding-left: 3vw;
    }

    .top-column-item__date {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .top-column .menu-tags {
        margin-bottom: 1.5vw;
        text-align: left;
    }

    .top-column-item__ttl {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    /* purpose */
    .top-purpose {
        padding: 10.5% 0 0;
        margin-bottom: -5%;
    }

    .top-h__ttl.small span {
        font-size: 3.4rem;
    }

    .top-h__ttl.small span:before {
        top: .5vw;
        left: 3.5vw;
        width: 5vw;
        height: 3vw;
    }

    .top-h__ttl.small span:after {
        top: -.6vw;
        right: -1.5vw;
        width: 15vw;
        height: 15vw;
    }

    .top-h__ttl.large span,
    .top-h__ttl span {
        font-size: 6.2rem;
        letter-spacing: -.15vw;
        text-indent: 1.5vw;
        padding: 0 0.2em;
    }

    .top-h__ttl span:before,
    .top-h__ttl.large span:before {
        top: -1.2vw;
        left: -5.1vw;
        width: 52px;
        width: 12vw;
        height: 66px;
        height: 16.6vw;
    }

    .top-h__ttl.large span:after {
        bottom: 2vw;
        right: -14.5vw;
        width: 70px;
        width: 17.5vw;
        height: 55px;
        height: 13.7vw;
    }

    .wid-cta .wid-cta__ttl span {
        top: -1.2vw;
    }

    .wid-cta .wid-cta__ttl span:after {
        width: 42px;
        width: 10.6vw;
        height: 32px;
        height: 9vw;
        bottom: 3vw;
        right: -6vw;
    }

    .top-h__ttl-box p {
        font-size: 1.5rem;
        line-height: 1.9;
        margin: -.4em auto 0;
    }
}

/* menu page */
.menu-kv {
    position: relative;
}

.menu-kv:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 67%;
    height: 59%;
    background: url(../img/common/bg-fv@2x.png);
    background-size: 17px auto;
}

.menu-kv > * {
    position: relative;
    z-index: 1;
}

.menu-kv-txt {
    padding: 3.5% 35% 0 3.5%;
    z-index: 3;
}

@media screen and (min-width: 1800px) {
    .menu-kv-txt {
        padding-right: 3.5%;
    }
}

.menu-kv-txt h1,
.menu-kv-txt h2 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: .2em;
    letter-spacing: .05em;
}

.tax_box {
    margin: 30px auto -12%;
    display: inline-block;
}

.tax_box dt,
.tax_box dd {
    width: 100%;
}

.tax_box dt span {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    padding: 0 .5em;
    color: #fff;
    background: #E5577D;
    width: 100%;
    margin: 0 0 .5em;
}

.tax_box dd .box {
    display: inline-block;
    font-weight: 700;
    background: #fff;
}

.tax_box dd .price {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    background: #E5577D;
    padding: 0 .6em;
    vertical-align: middle;
    line-height: 1.5;
}

.tax_box dd span i {
    font-style: normal;
}

.tax_box dd span .first {
    font-size: 2.1rem;
    color: #E5577D;
    background: #fff;
    padding: 0 .3em;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.tax_box dd span .num {
    color: #fff;
    font-size: 4.1rem;
    font-family: 'Poppins', sans-serif;
    padding: 0 .15em 0 .25em;
}

@media screen and (max-width: 768px) {
    .tax_box dt span {
        font-size: 1.6rem;
        width: auto;
    }

    .tax_box {
        margin: 5% 0 0 auto;
        display: block;
        width: 109%;
    }

    .tax_box dd {
        text-align: right;
    }

    .tax_box dd span .first {
        font-size: 1.9rem;
    }

    .tax_box dd span .num {
        font-size: 4rem;
    }

    .tax_box dd .price {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 769px) {
    .nodisplay {
        margin-bottom: 8.5em;
    }
}

.menu-kv-img {
    width: 58.4%;
    height: 295px;
}

.menu-kv-img.h-small {
    width: 53.4%;
    height: 345px;
}

.menu-kv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 50%;
}

.menu-kv-img.h-small img {
    object-position: 50% 50%;
}

.menu-kv-img.before img,
.menu-kv-img.display img {
    object-fit: contain;
}

@media screen and (min-width: 1901px) {
    .menu-kv-img {
        height: 22vw;
    }

    .menu-kv-img.h-small {
        height: 20vw;
    }

    .menu-kv-img img {
        object-fit: contain;
        object-position: 0% 50%;
    }

    .menu-kv-img.h-small img {
        object-fit: cover;
    }
}

.menu-kv .flex-box {
    -webkit-box-pack: end;
    justify-content: flex-end;
    margin-top: -12%;
}

@media screen and (min-width: 1800px) {
    .menu-kv .flex-box {
        margin-top: -9.5%;
    }
}

.single-menu_page .menu-kv.before .flex-box {
    display: none;
}

.menu-wrapper {
    padding: 56px 0;
    background: #F8F8F8;
}

.menu-content__inner {
    background: #fff;
    padding: 41px 64px;
    margin: 0 auto 80px;
}

.menu-content__inner.box-inner {
    box-sizing: border-box;
}

.menu-content__ttl {
    position: relative;
    border-left: 4px solid #6ED0F7;
    padding: 0.5em 0.5em 0.5em 1em;
    background: url(../img/common/bg-fv2@2x.png);
    font-weight: 700;
}

h3.menu-content__ttl:after {
    display: none;
}

/* tags */
.menu-tags ul {
    display: inline-flex;
    flex-wrap: wrap;
    margin: -0.5em -0.25em 0;
    justify-content: center;
}

.menu-tags li {
    margin: .5em .25em 0 .3em;
    color: #fff;
    border: 1px solid #ef8eb9;
    background: #ef8eb9;
    padding: 0 .8em;
}

.menu-tags li a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.menu-tags li.shop {
    color: #fff;
    border-color: transparent;
    background: #EF8EB9;
}

.menu-tags li.shop a {
    color: #fff;
}

.menu-tags li.menu {
    border-color: #6ED0F7;
    background: #fff;
    color: #6ED0F7;
}

.menu-tags li.menu a {
    color: #6ED0F7;
}

/* lead */
.menu-lead__text {
    margin-bottom: 1em;
    font-weight: bold;
    text-align: center;
}

.menu-lead__text strong {
    font-size: 130%;
}

.menu-lead-content {
    position: relative;
    background: #fff;
    padding: 64px 0;
    border: 1px solid #ccc;
    border-top: 4px solid #E5577D;
}

.menu-lead-content__ttl {
    margin-bottom: 0.6em;
    color: #E5577D;
    text-align: center;
}

.menu-lead-content__ttl .en {
    display: block;
    color: #666;
}

.menu-lead-content__ttl .jp {
    font-weight: bold;
}

.menu-lead-content-inner {
    background: #fff;
}

.menu-lead-recommend-list {
    padding-left: 5.5em;
}

.menu-lead-recommend-list li {
    position: relative;
    padding-left: 2.8em;
    font-weight: 400;
    font-size: 1.6rem;
    margin: 0 0 1.2em;
}

.menu-lead-recommend-list li + li {
    margin-top: 0.75em;
}

.menu-lead-recommend-list li .icon {
    position: absolute;
    top: 0.1em;
    left: 0;
    width: 1.75em;
    height: 1.75em;
    background: #FDF0EE;
}

.menu-lead-recommend-list li .icon:before {
    background-image: url(../img/common/icn_check.svg);
    left: 7px;
    top: -5px;
}

.menu-about__ttl {
    font-weight: 700;
    color: #E5577D;
    margin-bottom: 10px !important;
}

.menu-about__icon,
.mce-content-body .menu-about__icon {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    margin: 0 0.5em 0 0;
    background: #fdf0ee;
}

.menu-about__icon:before {
    content: "";
    position: absolute;
    display: block;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/common/icn_check.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.menu-about__ttl02 {
    display: block;
    border-bottom: 1px dotted #000;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.menu-about__ttl02:before {
    content: "▼";
    display: inline-block;
}

.menu-about__ttl03 {
    border: 1px solid #000;
    padding: 0.5em 1em;
    display: block;
    text-align: left;
}

.mce-content-body .list-dot {
    display: inline-block;
    width: .6rem;
    height: .6rem;
    background: #EF8EB9;
    border-radius: 100%;
    vertical-align: middle;
    line-height: 1;
    margin: 0 .5em 0 0;
}

/* case */
.menu-case-item + .menu-case-item {
    border-top: 1px solid #eae1bf;
}

.menu-case-item__image {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.menu-case-item__image > span {
    display: block;
    width: 48.5%;
    margin-bottom: 2%;
}

.menu-case-item__text dt {
    margin-bottom: 0.5em;
    font-weight: bold;
}

.menu-case-item__text dt:before {
    content: "・";
}

/* feature */
.menu-feature-list table {
    width: 100%;
    table-layout: fixed;
}

.menu-feature-list tr + tr th,
.menu-feature-list tr + tr td {
    border-top: 1px solid #EAEAEA;
}

.menu-feature-list th,
.menu-feature-list td {
    vertical-align: middle;
}

.menu-feature-list th {
    width: 12.8em;
    vertical-align: top;
    letter-spacing: 0.1em;
    text-align: left;
    background: #EEFBFD;
}

/* price */
.menu-price .btn-01 {
    text-align: center;
    margin-top: 30px;
}

.menu-price .btn-01 a.link-access {
    margin: 0 auto;
    display: inline-block;
    font-weight: 700;
    width: auto;
    padding: 1em 50px 1em 2em;
}

.menu-price .btn-01 a.link-access:after {
    right: 22px;
    width: 11px;
    height: 9px;
    border: none;
    background: url(../img/common/ico-arw.svg) no-repeat 50% 50%;
    background-size: contain;
    transform: translateY(-50%) rotate(90deg);
}

.menu-price-list__caption {
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #6ED0F7;
}

.menu-price-list table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-bottom: 2px solid #EAEAEA;
}

.menu-price-list th,
.menu-price-list td {
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid #EAEAEA;
    vertical-align: top;
    text-align: left;
}

.menu-price-list .wrap th,
.menu-price-list .wrap td {
    vertical-align: middle;
    text-align: center;
    border-top: 2px solid #EAEAEA;
}

.menu-price-list th {
    letter-spacing: 0.1em;
    background: #EEFBFD;
}

.menu-price-list .count {
    text-align: center;
    border-right: 1px solid #EAEAEA;
}

.menu-price-list .price {
    text-align: center;
}

.menu-price-list .price span {
    display: inline-block;
    min-width: 5em;
    text-align: right;
}

.menu-price-note {
    margin-top: .5em;
}

#menu-price .menu-price-note {
    margin-top: 1.5em;
}

#menu-price .menu-price-list table {
    border-bottom: none;
}

#menu-price .menu-price-list th,
#menu-price .menu-price-list td {
    vertical-align: top;
    text-align: left;
    border-top: none;
}

#menu-price .menu-price-list .wrap th,
#menu-price .menu-price-list .wrap td {
    vertical-align: top;
    text-align: left;
    border-top: none;
}

#menu-price .menu-price-list .count {
    border-right: none;
    text-align: left;
}

#menu-price .menu-price-list .price {
    text-align: left;
}

td.disp_2 {
    position: relative;
}

td.count.disp_2:before {
    content: "";
    width: 1.5em;
    height: 4px;
    position: absolute;
    left: 0;
    top: -2px;
    background: #fff;
}

td.price.disp_2:before {
    content: "";
    width: 1.5em;
    height: 4px;
    position: absolute;
    right: 0;
    top: -2px;
    background: #fff;
}

/* flow */
.menu-flow-list {
    position: relative;
    padding: 36px 0 25px;
}

.menu-flow-list:before {
    content: "";
    width: 72%;
    height: 100%;
    position: absolute;
    left: 14%;
    top: 5px;
    background: #EEFBFD;
    z-index: 1;
}

.menu-flow-item {
    position: relative;
    border: 1px solid #ccc;
    background: #fff;
    z-index: 3;
}

.menu-flow-item__num {
    margin-bottom: 0.5em;
    color: #6ED0F7;
    text-align: left;
    overflow: hidden;
    position: absolute;
    left: 15px;
    top: -9px;
    transform: rotate(-2deg);
}

.menu-flow-item__num span {
    display: inline-block;
    position: relative;
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
}

.menu-flow-item__num strong {
    font-weight: normal;
}

.menu-flow-item-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.menu-flow-item__text dt {
    font-weight: bold;
    color: #6ED0F7;
}

/* faq */
.menu-faq-list dl + dl {
    border-top: 1px solid #EAEAEA;
}

.menu-faq-list dt {
    font-size: 1.8rem;
    position: relative;
    margin-bottom: 1em;
    font-weight: bold;
}

.menu-faq-list dt i {
    position: absolute;
    display: block;
    top: 0;
    right: 100%;
    line-height: 1;
    font-size: 4.4rem;
    margin-top: -0.25em;
    color: #6ED0F7;
    font-style: normal;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
}

/*menu102*/
.menu-image-list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.menu-image-list li {
    border: 1px solid #c8c8c8;
    padding: 15px;
    width: 17rem;
}

.menu-image-list-ttl {
    text-align: center;
    background: #333;
    padding: 5px;
    color: #fff;
}

.menu-image-list-ttl span {
    color: #fff;
}

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

/*menu108*/
.menu-small-title {
    text-align: left;
    display: block;
    color: #E5577D;
    font-size: 2.2rem;
    margin: 1.5em 0 0;
}

/*menu106*/
.menu-image-list-02 ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.menu-image-list-02 li {
    width: 32rem;
    margin-bottom: 40px;
}

/*menu course*/
.menu-image-list-03 ul {
    display: flex;
    justify-content: space-around;
}

.menu-image-list-03 li + li {
    margin-left: 1rem;
}

@media screen and (min-width: 769px) {
    .menu-kv {
        margin-bottom: 20px;
        min-height: 235px;
    }

    .menu-kv:before {
        min-height: 235px;
    }

    .menu-kv-wrapper {
        display: -webkit-box;
        display: flex;
        flex-direction: column-reverse;
        box-sizing: border-box;
    }

    .menu-content {
        margin-bottom: 70px;
    }

    .menu-content__ttl {
        margin-bottom: 20px;
        font-size: 2.2rem;
        background-size: 17px auto;
    }

    .menu-content__ttl:after {
        height: 8px;
        bottom: -10px;
        background-size: 17px auto;
    }

    /* tags */
    .menu-tags {
        text-align: center;
        margin-bottom: 50px;
        font-size: 1.4rem;
    }

    /* lead */
    .menu-lead {
        margin-bottom: 80px;
    }

    .menu-lead__text {
        font-size: 2rem;
        margin: -.5em auto 2em;
    }

    .menu-lead-content-wrap {
        display: flex;
        justify-content: space-between;
        margin: 0 auto 25px;
    }

    .menu-lead-content__ttl .en {
        font-size: 1.5rem;
    }

    .menu-lead-content__ttl .jp {
        font-size: 2.6rem;
    }

    .menu-lead-content {
        width: 48%;
        padding: 20px 20px 5px;
    }

    .menu-lead-content-inner {
        padding: 18px;
    }

    .menu-lead-point__text {
        margin-top: -0.2em;
        font-size: 1.7rem;
        line-height: 2;
    }

    .menu-about__ttl {
        font-size: 2.2rem;
    }

    .menu-about__ttl02:before {
        font-size: 1.5rem;
        margin-right: 10px;
    }

    /* case */
    .menu-case-item + .menu-case-item {
        margin-top: 30px;
        padding-top: 30px;
    }

    /* feature */
    .menu-feature-list th,
    .menu-feature-list td {
        padding: 0.75em 1.5em;
    }

    /* price */
    .menu-price-list + .menu-price-list {
        margin-top: 2em;
    }

    .menu-price-list__caption {
        font-size: 2rem;
    }

    .menu-price-list th,
    .menu-price-list td {
        padding: 0.75em 1.5em;
    }

    .menu-price-list th {
        width: 50%;
    }

    .menu-price-list .count {
        width: 9em;
    }

    .menu-price-list .price {
        width: 15em;
    }

    /* menu price */
    #menu-price .menu-price-list table {
        max-width: 678px;
    }

    .single-menu_page #menu-price .menu-price-list table {
        max-width: 100%;
    }

    #menu-price .menu-price-list th {
        width: 23.6em;
    }

    .single-menu_page #menu-price .menu-price-list th {
        width: 12.7em;
    }

    #menu-price .menu-price-list th,
    #menu-price .menu-price-list td {
        padding: 1.4em .5em 1.4em 2em;
    }

    #menu-price .menu-price-list .count {
        width: 8em;
        padding-left: 2.5em;
    }

    #menu-price .menu-price-list .price {
        width: 12em;
    }

    #menu-price .menu-price-note {
        font-size: 1.3rem;
    }

    /* flow */
    .menu-flow-item {
        padding: 48px 40px 38px 102px;
    }

    .menu-flow-item + .menu-flow-item {
        margin-top: 25px;
    }

    .menu-flow-item__num {
        font-size: 5.1rem;
    }

    .menu-flow-item__image {
        width: 140px;
        margin: 0;
    }

    .menu-flow-item__text {
        padding-top: 2em;
    }

    .menu-flow-item__image + .menu-flow-item__text {
        width: calc(100% - 180px);
        padding: 0;
    }

    .menu-flow-item__text dt {
        font-size: 2.2rem;
        margin: -.2em auto .1em;
    }

    .menu-flow-item__text dd {
        line-height: 2;
    }

    /* faq */
    .menu-faq-list {
        padding-top: 10px;
    }

    .menu-faq-list dl {
        padding-left: 70px;
    }

    .menu-faq-list dl + dl {
        margin-top: 25px;
        padding-top: 25px;
    }

    .menu-faq-list dt i {
        width: 70px;
    }

    /* menu102 */
    .menu-image-list-ttl {
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .menu-kv {
        margin-bottom: 3.5vw;
        min-height: 33vw;
    }

    .menu-wrapper {
        padding: 6% 0;
        background: #fff;
    }

    .menu-kv-txt {
        padding: 4.5vw 3.5vw;
    }

    .menu-kv:before {
        top: 9.5vw;
        width: 90vw;
        height: 23.5vw;
        height: calc(100% - 9.5vw - 45%);
        height: calc(100% - 9.5vw);
        background: url(../img/common/bg-fv@2x.png);
        background-size: 4.03vw auto;
        z-index: 1;
    }

    .menu-kv:after {
        content: "";
        width: 100%;
        min-height: 31.5vw;
        height: 37.5%;
        position: absolute;
        bottom: 0;
        left: 0;
        background: #fff;
        z-index: 1;
    }

    .single-menu_page .menu-kv.before:after {
        display: none;
    }

    .menu-kv-txt h1,
    .menu-kv-txt h2 {
        font-size: 2.6rem;
        margin-bottom: .2em;
        line-height: 1.3;
    }

    .menu-kv-img,
    .menu-kv-img.h-small {
        width: 90vw;
        height: 38.5vw;
    }

    .menu-kv .flex-box {
        margin-top: 0;
        z-index: 3;
    }

    .menu-lead__text {
        font-weight: normal;
        font-size: 1.4rem;
    }

    .menu-lead__text strong {
        font-weight: 700;
        margin-top: .2em;
        display: inline-block;
        font-size: 2.4rem;
    }

    .menu-content__inner {
        padding: 0;
        margin: 0 auto 5.5%;
    }

    .menu-content {
        margin-bottom: 4.5rem;
    }

    .menu-content:last-child {
        margin-bottom: 0;
    }

    .menu-content__ttl {
        margin-bottom: 2rem;
        font-size: 1.8rem;
        background-size: 17px auto;
    }

    .menu-content__ttl:after {
        height: 4px;
        bottom: -5px;
        background-size: 8.5px auto;
    }

    /* tags */
    .menu-tags {
        margin-bottom: 4.5rem;
        font-size: 1rem;
        text-align: right;
        width: 93%;
    }

    .menu-tags ul {
        justify-content: flex-end;
    }

    .menu-tags li {
        font-size: 1.2rem;
        margin: .4em .3em 0 0;
        padding: 0 .15em;
        line-height: 1.6;
    }

    /* lead */
    .menu-lead {
        margin-bottom: 5rem;
    }

    .menu-lead-content__ttl .en {
        font-size: 1.2rem;
    }

    .menu-lead-content__ttl .jp {
        font-size: 2.2rem;
    }

    .menu-lead-content {
        padding: 2rem 2rem .5rem;
    }

    .menu-lead-content + .menu-lead-content {
        margin-top: 2rem;
    }

    .menu-lead-content-wrap {
        margin-bottom: 9vw;
    }

    .menu-lead-content-inner {
        padding: 1.8rem 0 0;
    }

    .menu-lead-recommend-list {
        padding-left: .7rem;
    }

    .menu-lead-recommend-list li {
        padding-left: 2.5em;
        font-size: 1.5rem;
        margin: 0 0 1.1em;
    }

    .menu-lead-point__text {
        font-size: 1.4rem;
        padding: 0 0.5rem 1.2rem;
        line-height: 1.75;
    }

    .menu-about__ttl {
        margin-bottom: 1em !important;
        padding: 0;
        font-size: 1.8rem;
    }

    .menu-about__ttl:before {
        height: 20px;
    }

    .menu-about__ttl02:before {
        margin-right: 0.5rem;
    }

    .page-about {
        font-size: 1.4rem;
    }

    /* case */
    .menu-case-item + .menu-case-item {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    /* feature */
    .menu-feature-list th,
    .menu-feature-list td {
        font-size: 1.4rem;
        padding: 1em 1em;
        line-height: 1.5;
    }

    .menu-feature-list th {
        padding: 1em .6em;
        width: 27vw;
    }

    /* price */
    .menu-price-list + .menu-price-list {
        margin-top: 2em;
    }

    .menu-price-list__caption {
        font-size: 1.8rem;
    }

    .menu-price-list th,
    .menu-price-list td {
        /*font-size: 1.4rem;
        padding: 1.2em 1.2em;*/
        font-size: 1.2rem;
        padding: 1.2em 1.2em;
    }

    .menu-price-list .wrap th {
        width: 51%;
        /*padding: 1em 0.6em;*/
        padding: 0.6em;
        letter-spacing: -.02em;
        font-weight: 400;
    }

    .menu-price-list .count {
        /*width: 6em;
        padding-right: 0;*/
        width: 4.5em;
    }

    .menu-price-list .price {
        /*width: 6em;*/
        width: 4.5em;
        padding-left: 0;
    }

    .menu-price-note {
        font-size: 1.3rem;
    }

    td.count.disp_2:before,
    td.price.disp_2:before {
        width: 1em;
    }

    /* flow */
    .menu-flow-list {
        padding: 9vw 0 1px;
    }

    .menu-flow-item {
        margin: 0 auto 4.5%;
        padding-bottom: 2rem;
    }

    .menu-flow-item__text {
        margin-top: 5rem;
    }

    .menu-flow-item__image + .menu-flow-item__text {
        margin-top: 0;
    }

    .menu-flow-item + .menu-flow-item:before {
        border-width: 1rem 1.5rem 0 1.5rem;
    }

    .menu-flow-item__num {
        font-size: 5.1rem !important;
    }

    .menu-flow-item__image {
        width: 100%;
        text-align: center;
        margin: 0 0 0.6em;
    }

    .menu-flow-item__image img {
        max-width: 140px;
        width: 45%;
    }

    .menu-flow-item__image + .menu-flow-item__text {
        width: 100%;
    }

    .menu-flow-item-inner {
        display: block;
        padding: 13% 4% 1px;
    }

    .menu-flow-item__text dt {
        font-size: 1.8rem;
        text-align: center;
        margin: 0 0 0.1em;
    }

    .menu-flow-item__text dd {
        font-size: 1.4rem;
        margin-bottom: -0.5em;
    }

    .flow-cancel .menu-lead-content-inner {
        padding: 0 0 1.8rem;
    }

    /* faq */
    .menu-faq-list {
        padding-top: 0.5rem;
    }

    .menu-faq-list dl {
        padding-left: 3.8rem;
    }

    .menu-faq-list dl + dl {
        margin-top: 2.2rem;
        padding-top: 2.4rem;
    }

    .menu-faq-list dl + dl:last-child {
        border-bottom: 1px solid #eaeaea;
        padding-bottom: 2rem;
    }

    .menu-faq-list dt {
        margin-bottom: .6em;
    }

    .menu-faq-list dt i {
        width: 3.5rem;
        margin-top: -.5rem;
        margin-right: .5rem;
    }

    .menu-faq-list dt i {
        width: 3.5rem;
        text-align: left;
    }

    .menu-faq-list dd {
        font-size: 1.4rem;
    }

    /*menu102*/
    .menu-image-list li {
        margin-bottom: 1.5rem;
    }

    /*menu106*/
    .menu-image-list-02 li {
        width: 16.5rem;
        margin-bottom: 2rem;
    }

    /*menu108*/
    .menu-small-title {
        font-size: 1.8rem;
        margin: 1.1em 0 0;
    }
}

@media screen and (max-width: 480px) {

    /*menu102*/
    .menu-video iframe {
        width: 350px !important;
        height: 200px !important;
    }
}

/* widget archive list */
.wid-archive-list__ttl {
    position: relative;
    display: table;
    margin: 0 auto 1em;
    font-size: 2rem;
    font-weight: bold;
    display: block;
    color: #E5577D;
    text-align: center;
}

.wid-archive-list__ttl:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    background: #ef8eb9;
}

.wid-archive-list__ttl span {
    display: inline-block;
    background: #fff;
    padding: 0 0.7em;
    z-index: 3;
    position: relative;
    letter-spacing: 0;
}

.wid-archive-list__anchor-caption {
    margin-bottom: 1em;
    text-align: center;
}

.wid-archive-list__anchor ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.wid-archive-list__anchor ul:after {
    content: "";
    display: block;
    width: 32.8%;
    height: 0;
    visibility: hidden;
}

.wid-archive-list__anchor li {
    width: 24.25%;
    margin-top: 1%;
    margin-right: 1%
}

.wid-archive-list__anchor li:nth-child(4n) {
    margin-right: 0;
}

.wid-archive-list__anchor a {
    display: block;
    color: #333;
    text-decoration: none;
    text-align: center;
    border: 1px solid #ccc;
    white-space: nowrap;
    background: #fff;
    padding: 1.2em 0;
    position: relative;
}

.wid-archive-list__anchor a:after {
    content: "";
    display: block;
    position: absolute;
    right: 1px;
    bottom: 1px;
    border-width: 0.3em;
    border-style: solid;
    border-color: transparent;
    border-right-color: inherit;
    border-bottom-color: inherit;
}

.wid-archive-list__anchor a.active {
    color: #fff;
    border-color: transparent;
    background: #9e883c;
    background: linear-gradient(to right,
            #9e883c 0%,
            #c0a668 40%,
            #c0a668 60%,
            #9e883c 100%);
}

.wid-archive-list__pagetop {
    margin-bottom: 0.5em;
    text-align: right;
}

.wid-archive-list__pagetop a {
    color: inherit;
}

@media screen and (min-width: 769px) {
    .wid-archive-list__anchor {
        margin-bottom: 50px;
        padding: 30px 0;
    }

    .wid-archive-list__anchor-caption {
        font-size: 1.8rem;
    }

    .wid-archive-list__anchor a {
        line-height: 2;
        font-size: 1.5rem;
    }

    .wid-archive-list__pagetop {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .wid-archive-list__anchor {
        margin-bottom: 3rem;
        padding: 0;
    }

    .wid-archive-list__anchor a {
        font-size: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0 0.5em;
        line-height: 1.4;
        font-weight: 400;
        text-align: center;
        height: 5.9rem;
        white-space: normal;
    }

    .wid-archive-list__pagetop {
        font-size: 1.2rem;
    }

    .wid-archive-list__anchor li {
        width: 49%;
        margin: 2% 2% 0 0;
    }

    .wid-archive-list__anchor li:nth-child(even) {
        margin-right: 0;
    }
}

/* search result page */
.search-result__caption {
    font-weight: bold;
}

.search-result-list {
    margin: 2em 1em 0;
}

.search-result-list li + li {
    margin-top: 1em;
}

.search-result-list li a {
    display: block;
    color: inherit;
}

.search-result-list li dt {
    margin-bottom: 0.25em;
    font-size: 90%;
    font-weight: bold;
    text-decoration: underline;
}

.search-result-list li dd {
    font-size: 80%;
}

@media screen and (min-width: 769px) {
    .search-result-searchbox {
        margin: 50px 0 0 auto;
        max-width: 300px;
    }
}

@media screen and (max-width: 768px) {
    .search-result-searchbox {
        margin-top: 3rem;
    }
}

/* about page */
.about-subtitle {
    margin-top: 1em;
    color: #e5577d;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: left;
}

.about-info-title {
    position: relative;
    border-left: 4px solid #6ED0F7;
    padding: 0.5em 0.5em 0.5em 1em;
    background: url(../img/common/bg-fv2@2x.png);
    font-weight: 700;
}

.about-info-title a {
    display: block;
    width: 100%;
    height: 100%;
}

.about-info-title .name02 {
    letter-spacing: initial;
    padding-left: 1em;
}

.about-info-access dl {
    display: flex;
}

.about-info-access dl + dl {
    margin-top: 1em;
}

.about-info-access .info01 {
    color: #6ED0F7;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.about-info-access .info03 {
    margin-bottom: 0.5em;
}

.about-info-access .info03.mb20 {
    margin-bottom: 20px;
}

.about-info-access .info03 .icon {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    margin-right: 0.3em;
    background: #ef8fb9;
    margin-right: 0.5em;
}

.about-info-access .info03 .icon:before {
    background: url(../img/common/ico-arw.svg) no-repeat 50% 50%;
    background-size: 1rem auto;
    transform: rotate(90deg);
}

.about-info-image {
    display: flex;
    justify-content: space-between;
}

a.link-access {
    position: relative;
    display: block;
    padding: 1em 50px 1em 2em;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    background: #474747;
    text-align: center;
    width: 330px;
    font-weight: 700;
}

a.link-access:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 22px;
    width: 11px;
    height: 9px;
    border: none;
    background: url(../img/common/ico-arw.svg) no-repeat 50% 50%;
    background-size: contain;
    transform: translateY(-50%) rotate(90deg);
}

@media screen and (min-width: 769px) {
    .mce-content-body p.about-subtitle {
        font-size: 2.2rem;
    }

    .about-block-02 {
        padding-top: 3em;
    }

    .about-logo img {
        width: calc(522px / 2);
    }

    .about-info {
        margin-top: 4em;
    }

    .about-info-title {
        margin-bottom: 2em;
        background-size: 17px auto;
    }

    .about-info-title .name01 {
        font-size: 2.2rem;
        top: 10px;
        left: 30px;
    }

    .about-info-title .name02 {
        font-size: 1.3rem;
    }

    .about-info-access {
        padding: 0 20px;
    }

    .about-info-access dl {
        font-size: 1.5rem;
    }

    .about-info-access .info01 {
        width: 135px;
    }

    .about-info-image {
        margin-top: 3em;
    }

    .about-info-image p {
        width: 33rem;
    }

    a.link-access {
        margin-top: 35px;
    }
}

@media screen and (max-width: 768px) {
    .mce-content-body p.about-subtitle {
        font-size: 1.8rem;
    }

    .about-logo img {
        width: calc(522px / 2.5);
    }

    .about-info {
        margin-top: 2.5rem;
    }

    .about-info-title {
        margin-bottom: 1.5rem;
        background-size: 17px auto;
    }

    .about-info-title .name01 {
        font-size: 1.8rem;
        top: -0.2rem;
        left: 2rem;
    }

    .about-info-title .name02 {
        font-size: 1.1rem;
    }

    .about-info-access {
        padding: 0 1.5rem;
    }

    .about-info-access a.link-access {
        margin-top: 5%;
    }

    .about-info-access .info01 {
        width: 8rem;
    }

    .about-info-access .info02 {
        width: 24rem;
    }

    .about-info-access .info03 .icon:before {
        background-size: 0.6rem auto;
    }

    .about-info-image {
        margin-top: 2.5rem;
    }

    .about-info-image p {
        width: 17rem;
    }

    a.link-access {
        width: 100%;
    }

    a.link-access:after {
        right: 2rem;
    }
}

/* access page */
.access-linkbtn {
    display: flex;
    justify-content: space-between;
    padding-top: 2em;
    padding-bottom: 2em;
}

.access-linkbtn a.link-access {
    width: 330px;
    font-size: inherit;
}

.access-flow-title {
    color: #EF8EB9;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #EF8EB9;
    padding-bottom: 0.3em;
}

.access-flow-title .icon {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    margin-right: 0.5em;
    background: #fdf0ee;
}

.access-flow-title .icon:before {
    content: "";
    position: absolute;
    display: block;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/common/icn_check.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.access-flow ul {
    display: flex;
    flex-wrap: wrap;
}

.access-flow li {
    position: relative;
}

.access-flow li:after {
    content: "";
    position: absolute;
    right: -3.5rem;
    top: 16rem;
    display: block;
    width: 1.5em;
    height: 1.5em;
    border-radius: 100%;
    background: #ccc url(../img/common/ico-arw.svg) no-repeat 50% 40%;
    background-size: .8em auto;
    transform: rotate(90deg);
}

.access-flow li:last-child:after {
    background: none;
}

.access-map iframe {
    width: 100%;
    height: 342px;
}

@media screen and (min-width: 769px) {
    .page-access .about-logo {
        padding-top: 3em;
    }

    .access-flow-block-01 {
        margin-top: 3em;
    }

    .access-flow-title {
        margin-bottom: 25px;
    }

    .access-flow li {
        margin-left: 4.8888%;
        margin-bottom: 20px;
        width: 30%;
    }

    .access-flow li:nth-child(3n + 1) {
        margin-left: 0;
    }

    .access-flow .text {
        font-size: 1.4rem;
        margin-top: 0.5em;
    }

    .access-map {
        margin-top: 2em;
    }
}

@media screen and (max-width: 768px) {
    .access-linkbtn a.link-access {
        width: 17rem;
    }

    .page-access .about-logo {
        padding-top: 3em;
    }

    .access-flow-block-01 {
        margin-top: 3em;
    }

    .access-flow-title {
        margin-bottom: 2rem;
    }

    .access-flow li {
        margin-left: 3.5rem;
        margin-bottom: 2rem;
        width: 14rem;
    }

    .access-flow li:nth-child(odd) {
        margin-left: 0;
    }

    .access-flow li:after {
        right: -3rem;
        top: 6rem;
        width: 1.8em;
        height: 1.8em;
        background-size: 1rem auto;
    }

    .access-map {
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .access-map iframe {
        width: 350px !important;
    }
}

/* flow page */
.flow-tel {
    background: #fff;
    border: 1px solid #ccc;
    border-top: 4px solid #6ED0F7;
    padding: 20px;
}

.flow-tel .title {
    letter-spacing: 0.1em;
    line-height: 2.2;
}

.flow-linkbtn {
    display: flex;
    justify-content: space-around;
}

.flow-linkbtn a.link-access {
    width: 330px;
    font-weight: 700;
    font-size: inherit;
    background: #EF8EB9;
}

.flow-linkbtn a.link-access:after {
    right: 22px;
    width: 11px;
    height: 9px;
    border: none;
    background: url(../img/common/ico-arw.svg) no-repeat 50% 50%;
    background-size: contain;
    transform: translateY(-50%) rotate(90deg);
}

.flow-cancel.menu-lead-content {
    width: 100%;
}

.flow-tel-box {
    border: 1px solid #ccc;
}

.flow-tel-box .name {
    font-weight: 700;
}

@media screen and (min-width: 769px) {
    .flow-tel {
        margin: 40px 0;
    }

    .flow-tel .image img {
        width: calc(478px / 2);
    }

    .flow-clinic {
        margin-top: 6em !important;
    }

    .flow-cancel {
        margin-top: 4em;
    }

    .flow-cancel .menu-lead-content__ttl {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }

    .flow-tel-inner {
        display: flex;
        justify-content: space-between;
        margin-top: 1.2em;
    }

    .flow-tel-box {
        width: 48%;
        margin: 0 auto;
        padding: 1em 0;
    }

    .flow-tel-box .name {
        font-size: 2rem;
    }

    .flow-tel-box .text {
        font-size: 15px;
    }
}

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

    .flow-tel .title {
        letter-spacing: 0;
        font-size: 1.8rem;
        padding: 0;
    }

    .flow-tel-box {
        padding: 4%;
    }

    .flow-tel-box .name {
        padding: 0 0 1em;
        font-size: 1.4rem;
        line-height: 1;
        font-weight: 700;
    }

    .flow-tel {
        margin: 2rem 0;
    }

    .flow-tel .image {
        padding: 0;
        margin: 0;
    }

    .flow-tel .image img {
        width: calc(478px / 2.5);
    }

    .flow-tel-box p {
        font-size: 1.4rem;
        line-height: 1;
        padding-top: 0.3em;
    }

    .flow-linkbtn a.link-access {
        width: 100%;
        margin: 0 auto 1em;
    }

    .flow-linkbtn {
        display: block;
    }

    .flow-linkbtn a.link-access:after {
        right: 1.2rem;
    }

    .flow-clinic {
        margin-top: 5rem !important;
    }

    .flow-cancel .menu-lead-content__ttl {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }

    .flow-tel-inner,
    .flow-tel-box + .flow-tel-box {
        margin-top: 2rem;
    }
}

/* doctor page */
.page-doctor .dprof__name,
.page-doctor .dprof__name__en,
.page-doctor .dprof__title {
    color: #e5577d;
}

.doctor-profile .about-info-title small {
    font-size: 1.5rem;
}

.doctor-profile-01 dt {
    color: #907300;
    font-weight: bold;
    margin-bottom: 0.2em;
    letter-spacing: 0.1em;
}

.doctor-profile-01 dd {
    line-height: 2;
}

@media screen and (min-width: 769px) {
    .doctor-profile-01 dl + dl {
        margin-top: 2em;
    }
}

@media screen and (max-width: 768px) {
    .doctor-profile-01 dl + dl {
        margin-top: 2.5rem;
    }
}

/* minor page */
.minor-linkbtn a.link-access {
    margin-right: auto;
    margin-left: auto;
}

@media screen and (min-width: 769px) {
    .minor-linkbtn {
        margin-top: 4em !important;
    }

    .minor-info-01 .access-flow-title {
        margin-bottom: 10px;
    }

    .minor-info-01 + .minor-info-01 {
        margin-top: 2em;
    }
}

@media screen and (max-width: 768px) {
    .minor-linkbtn {
        margin-top: 4rem !important;
    }

    .minor-info-01 .access-flow-title {
        margin-bottom: 1rem;
    }

    .minor-info-01 + .minor-info-01 {
        margin-top: 2.5rem;
    }
}

/* recruit page */
.recruit-info .access-flow-title {
    border-bottom: none;
    padding-bottom: 0;
}

.recruit-table {
    width: 100%;
    border: 1px solid #ccc;
}

.recruit-table th {
    width: 35%;
    box-sizing: border-box;
    vertical-align: middle;
    background: #f3efec;
}

.recruit-table td {
    padding: 1em;
    box-sizing: border-box;
    vertical-align: middle;
}

.recruit-table tr {
    border-bottom: 1px solid #ccc;
}

.recruit-sub-title {
    font-weight: bold;
    margin-bottom: 5px;
}

@media screen and (min-width: 769px) {
    .recruit-info .access-flow-title {
        margin-bottom: 10px;
    }

    .recruit-info-01 + .recruit-info-01 {
        margin-top: 2em;
    }

    .recruit-info-02 {
        margin-top: 1.5em;
    }
}

@media screen and (max-width: 768px) {
    .recruit-info .access-flow-title {
        margin-bottom: 1rem;
    }

    .recruit-info-01 + .recruit-info-01 {
        margin-top: 2.5rem;
    }

    .recruit-info-02 {
        margin-top: 1.5rem;
    }

    .recruit-table th {
        width: 30%;
    }
}

/* contact page 前回をそのまま引用 */
.form span.small {
    font-size: 11px;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .form span.small {
        font-size: 1.07431875vw;
    }
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form input[type="number"],
.form select {
    margin-right: 15px;
    padding: 5px;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {

    .form input[type="text"],
    .form input[type="tel"],
    .form input[type="email"],
    .form input[type="number"],
    .form select {
        margin-right: 1.46484375vw;
        padding: 0.48828125vw;
    }
}

/*
.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form input[type="number"],
.form select {
    margin-right: 15px;
    padding: 5px;
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
    .form input[type="text"],
    .form input[type="tel"],
    .form input[type="email"],
    .form input[type="number"],
    .form select {
        margin-right: 1.46484375vw;
        padding: 0.48828125vw;
    }
}
*/
.form input,
.form select,
.form textarea {
    border: 1px solid #a5a5a5;
    margin: 5px;
}

.form input[type="submit"],
.form input[type="button"] {
    -webkit-appearance: none;
    border-radius: 0;
    background: #d4166a;
    color: #fff;
    font-size: 1.4rem;
    padding: 1em 20px;
}

.form .w30 {
    width: 30% !important;
}

.form .w40 {
    width: 40% !important;
}

.form .w50 {
    width: 50% !important;
}

.form .w70 {
    width: 70% !important;
}

.form .w90 {
    width: 90% !important;
}

.form .w100 {
    width: 97% !important;
}

.form .lead-box {
    border: 1px solid #000000;
    margin: 40px 0;
    padding: 3px 3px 0 3px;
}

.form .lead-box p.title {
    background: #5d4e4b;
    color: #fff;
    text-align: center;
}

.form .lead-box p {
    line-height: 2;
    text-align: center;
}

.form .form-area {
    margin-top: 60px;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .form .form-area {
        margin-top: 5.859375vw;
    }

    .form .form-area h3 {
        margin-bottom: 2.9296875vw;
    }
}

.form .form-area .ac {
    text-align: center;
    margin-bottom: 20px;
    font-size: 12px;
}

.form .form-area .ac .caution {
    background: #e8606d;
    padding: 0 10px;
}

.form .form-area .caution {
    color: #fff;
}

.form .form-area table {
    color: #000;
    box-sizing: border-box;
    margin-top: 5px;
    font-size: 13px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .form .form-area table {
        width: 100%;
    }
}

.form .form-area table th {
    font-size: 13px;
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
    width: 200px;
    line-height: 1.5;
    padding: 20px 15px;
    background: #f3f3f3;
    border: 1px solid #e2e2e2;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .form .form-area table th {
        font-size: 1.3671875vw;
        width: 22.601563vw;
    }
}

@media screen and (max-width: 750px) {
    .form .form-area table th {
        display: block;
        text-align: left;
        width: auto;
        padding: 15px;
    }
}

.form .form-area table th .caution {
    font-size: 11px;
    vertical-align: middle;
    margin-right: 10px;
    position: relative;
    top: -1px;
    background: #e8606d;
    padding: 0 10px;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .form .form-area table th .caution {
        font-size: 1.07421875vw;
        margin-right: 1.46484375vw;
        position: relative;
        top: 0.09765625vw;
    }
}

.form .form-area table td {
    padding: 20px;
    border: 1px solid #e2e2e2;
    font-size: 13px;
    vertical-align: middle;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .form .form-area table td {
        padding: 1.46484375vw 1.953125vw;
    }
}

@media screen and (max-width: 750px) {
    .form .form-area table td {
        display: block;
        width: auto;
        padding: 15px 10px;
    }
}

.form .form-area table td p {
    margin-bottom: 0;
}

.form .form-area .radio-btn {
    font-size: 14px;
    color: #000;
    display: inline-block;
    width: 160px;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .form .form-area .radio-btn {
        font-size: 1.3671875vw;
        width: 15.625vw;
    }
}

@media screen and (max-width: 750px) {
    .form .form-area .radio-btn {
        width: 140px;
    }
}

.form .form-area .radio-btn input {
    position: relative;
    top: -2px;
    width: 16px;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .form .form-area .radio-btn input {
        position: relative;
        top: -0.1953125vw;
        width: 1.5625vw;
    }
}

.form .form-area table td .small {
    color: #000;
    display: inline-block;
    line-height: 1.2;
    vertical-align: middle;
}

.form .form-area .choice {
    color: #000;
    font-size: 14px;
    display: inline-block;
    padding: 0 0 5px;
    width: 120px;
    vertical-align: middle;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .form .form-area .choice {
        font-size: 1.3671875vw;
        padding: 0.48828125vw 0;
        width: 11.71875vw;
    }
}

@media screen and (max-width: 750px) {
    .form .form-area .choice {
        width: 100%;
    }
}

.form .form-area .choice:last-child {
    width: 310px;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .form .form-area .choice:last-child {
        width: 30.2734375vw;
    }
}

.form .form-area textarea {
    padding: 5px;
    height: 100px;
    width: 100%;
}

.form .form-area .btn {
    padding: 15px;
    text-align: center;
}

.form .confirmBtn01 {
    width: 330px;
    background: #d4166a;
    color: #fff;
    font-size: 1.4rem;
    border: 0;
    padding: 1em 20px;
}

.form .confirmBtn02 {
    width: 330px;
    background: #d4166a;
    color: #fff;
    font-size: 1.4rem;
    border: 0;
    padding: 1em 20px;
}

.form .confirmBtn03 {
    width: 330px;
    background: #d4166a;
    color: #fff;
    font-size: 1.4rem;
    border: 0;
    padding: 1em 20px;
}

.form .lead-box .teltel {
    font-size: 28px;
}

.reserve_att {
    margin-top: 100px;
}

@media screen and (max-width: 750px) {
    .reserve_att {
        margin-top: 0;
        margin-bottom: 100px;
    }
}

/*add contact*/
.form-reserve .flow-tel {
    margin-top: 0;
    margin-bottom: 25px;
}

.flow-login-btn a.link-access {
    width: 320px;
    font-size: 1.3rem;
    padding: 1em 30px 1em 20px;
}

.flow-login-btn a.link-access.line-btn {
    background: #00b900;
}

.flow-login-btn a.link-access.line-btn-02 {
    background: #fff;
    color: #00b900;
    border: 1px solid #00b900;
}

.flow-login-btn a.link-access.line-btn-02:after {
    border-top: 1px solid #00b900;
    border-right: 1px solid #00b900;
}

.flow-login-btn a.link-access.pink-btn {
    background: #d4166a;
}

.flow-login-btn a.link-access.gray-btn {
    background: #9a9a9a;
}

.flow-login-btn a.link-access:after {
    right: 20px;
}

.flow-login-member {
    background: #fff;
    padding: 30px;
    border: 1px solid #ccc;
}

.flow-login-member .login-num dl {
    display: flex;
    flex-wrap: wrap;
}

.flow-login-member .login-num dt {
    width: 85px;
    line-height: 30px;
    margin-right: 20px;
    font-weight: 500;
}

.flow-login-member .login-num dd input {
    padding: 1em 0.5em;
    background: #f5f5f5;
}

.login-btn .login-btn-01 a {
    display: block;
    text-align: center;
    background: #474747;
    padding: 0.8em;
    margin-top: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
}

.login-reset-01 {
    text-align: center;
    margin-top: 30px;
    font-size: 1.3rem;
}

.top-flow-login {
    display: flex;
    justify-content: space-between;
}

.flow-login-btn.flow-login-btn-02 {
    display: block;
    margin-top: 30px;
}

.flow-login-btn.flow-login-btn-02 a.link-access {
    width: 250px;
    margin-right: auto;
    margin-left: auto;
}

.flow-login-btn.flow-login-btn-02 p + p {
    margin-top: 20px;
}

.flow-login-btn.flow-login-btn-03 {
    margin-top: 2em;
}

.flow-tel-line {
    background: #00b800;
    padding: 20px;
    color: #fff;
}

.form-check .flow-tel-line {
    margin-top: 2em;
}

.flow-tel-line .title {
    font-weight: bold;
}

.form.form-check .form-area {
    margin-top: 0;
}

.flow-login-member.member-password {
    margin-top: 2em;
    width: 100%;
}

.flow-login-member.member-password .login-num dt {
    width: 130px;
}

.flow-login-member.member-password .login-num dl:nth-of-type(1) {
    margin-bottom: 2em;
}

.flow-login-member.line-login-member {
    border: 1px solid #00b900;
}

.flow-login-member.line-login-member .text {
    color: #00b900;
}

@media screen and (min-width: 769px) {
    .l-container.page-contact {
        padding-top: 150px;
    }

    .flow-login-btn {
        display: flex;
        justify-content: center;
    }

    .flow-login-member {
        width: 320px;
    }

    .flow-login-member .login-num dd input {
        width: 255px;
    }

    .flow-login-btn.flow-login-btn-03 p + p {
        margin-left: 60px;
    }

    .flow-cancel.flow-cancel-margin {
        margin-top: 2em;
        margin-bottom: 2em;
    }

    .flow-tel-line .title {
        font-size: 2rem;
    }

    .flow-login-member.member-password .login-num dd {
        width: 485px;
    }

    .flow-login-member.member-password .login-num dd input {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .form .form-area {
        margin-top: 3rem;
    }

    .l-container.page-contact {
        padding-top: 2rem;
    }

    .form input[type="submit"],
    .form input[type="button"],
    .form .confirmBtn01,
    .form .confirmBtn02,
    .form .confirmBtn03 {
        width: 100%;
        font-size: 1rem;
        margin: 2rem 0 3rem;
    }

    .form .form-area .btn {
        padding: 0;
    }

    .contact-mail-margin {
        margin-bottom: 0 !important;
    }

    .flow-login-btn {
        margin-bottom: 3rem;
    }

    .flow-login-btn p + p {
        margin-top: 1rem;
    }

    .flow-login-btn a.link-access {
        width: 100%;
        font-size: inherit;
    }

    .flow-login-member {
        padding: 1.5rem;
    }

    .flow-login-member + .flow-login-member {
        margin-top: 2rem;
    }

    .flow-login-member .login-num dl {
        margin-bottom: 1rem;
        flex-wrap: nowrap;
    }

    .flow-login-member .login-num dt {
        width: 10rem;
        line-height: 45px;
        margin-right: 0;
    }

    .flow-login-member .login-num dd,
    .flow-login-member .login-num dd input {
        width: 100%;
    }

    .login-btn .login-btn-01 a {
        margin-top: 2rem;
        font-size: inherit;
        width: 100%;
    }

    .login-reset-01 {
        margin-top: 1rem;
    }

    .top-flow-login {
        display: block;
    }

    .flow-login-btn.flow-login-btn-02 a.link-access {
        width: 100%;
    }

    .flow-login-btn.flow-login-btn-02 {
        margin-top: 1rem;
        margin-bottom: 0;
    }

    .flow-login-btn.flow-login-btn-02 p + p {
        margin-top: 1rem;
    }

    .flow-cancel.flow-cancel-margin {
        margin-top: 2rem;
    }

    .flow-tel-line .title {
        font-size: 1.5rem;
    }

    .flow-login-member.member-password .login-num dt {
        width: 15rem;
    }

    .flow-login-member.member-password .login-num dd,
    .flow-login-member.member-password .login-num dd input {
        width: 100%;
    }

    .flow-login-member.line-login-member .text {
        line-height: 1.5;
    }
}

/* 0418 */
@media screen and (max-width: 768px) {

    .form-box input[type="text"],
    .form-box input[type="tel"],
    .form-box input[type="email"],
    .form-box input[type="number"],
    .form-box textarea,
    .form-box select {
        font-size: 1.6rem;
    }

    .form .form-area table,
    .form .form-area tbody,
    .form .form-area tr,
    .form .form-area th,
    .form .form-area td {
        display: block;
        width: 100%;
    }

    .form .form-area table td .small {
        display: block;
    }

    .form-box {
        padding-bottom: 17.5%;
    }
}

/* single page */
.single-title {
    padding-bottom: 0.5em;
    margin: 0.5em 0;
    line-height: 1.4;
    font-weight: bold;
    border-bottom: 3px solid;
}

.single-date {
    text-align: right;
}

.single-content {
    margin-top: 1em;
}

@media screen and (min-width: 769px) {
    .single-title {
        font-size: 150%;
    }

    .single-date {
        font-size: 90%;
    }
}

@media screen and (max-width: 768px) {
    .single-title {
        font-size: 120%;
        border-bottom-width: 0.15rem;
    }

    .single-date {
        font-size: 90%;
    }
}

/* purpose page */
.purpose__ttl {
    width: 100%;
    border-left: 4px solid #6ED0F7;
    padding: 0.5em 0.5em 0.5em 1em;
    background: #effbfd url(../img/common/bg-fv2@2x.png);
    font-weight: 700;
}

.purpose-item {
    background: #fff;
    border: 1px solid #ccc;
    border-top: 4px solid #6ED0F7;
}

.purpose-item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.purpose-item__image {
    position: relative;
}

.purpose-item__image > div {
    width: 100%;
    padding-top: calc(120 / 185 * 100%);
    background: no-repeat center center / cover;
    background-color: #fff;
}

.purpose-item__ttl {
    padding-top: 0.5em;
    margin-top: 0.5em;
    position: relative;
}

.purpose-list .purpose-item__ttl {
    padding: 0;
    margin: 0 0 1.3em;
    text-align: center;
}

.purpose-item__ttl-top {
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    font-weight: bold;
    text-align: center;
}

.purpose-item-tags {
    margin-top: 1em;
    padding: 0.5em;
    text-align: center;
}

.purpose-item-tags ul {
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -0.5em -0.25em 0;
}

.purpose-item-tags li {
    margin: 0.5em 0.25em 0 0.3em;
    color: #6ed0f7;
    border: 1px solid #6ed0f7;
    background: #fff;
    padding: 0 0.8em;
}

.purpose-item-tags li.shop {
    color: #fff;
    border-color: transparent;
    background: #ef8eb9;
}

.purpose-item .purpose-link-btn {
    text-align: right;
    margin-top: 1rem;
}

.purpose-item .purpose-link-btn span {
    display: inline-block;
    position: relative;
    font-weight: 700;
    background: #474747;
    color: #fff;
    padding: 0.5em 45px .5em 1.5em;
}

.purpose-item .purpose-link-btn span:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    width: 11px;
    height: 9px;
    border: none;
    background: url(../img/common/ico-arw.svg) no-repeat 50% 50%;
    background-size: contain;
    transform: translateY(-50%) rotate(90deg);
}

@media screen and (min-width: 769px) {
    .purpose__ttl {
        margin-bottom: 30px;
        background-size: 17px auto;
        font-size: 2.2rem;
    }

    .purpose-item {}

    .purpose-item + .purpose-item {
        margin-top: 40px;
    }

    .purpose-item-inner {}

    .purpose-item-inner > a {
        display: block;
        padding: 30px 48px 32px 42px;
    }

    .purpose-item-inner a .purpose-item-flex {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .purpose-item__image {
        width: 505px;
    }

    .purpose-item-textbox {
        width: calc(100% - 550px);
    }

    .purpose-item__ttl {
        font-size: 1.8rem;
    }

    .purpose-list .purpose-item__ttl {
        font-size: 2rem;
    }

    .purpose-item__ttl-top {
        font-size: 1.8rem;
    }

    .purpose-item__text {
        font-size: 1.6rem;
    }

    .purpose-item-tags {
        width: 100%;
        font-size: 1.4rem;
        margin-top: -32px;
        padding: 0 48px 32px 42px;
    }

    .purpose-item__ttl .purpose-link-btn {
        top: 2px;
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .purpose__ttl {
        margin-bottom: 3rem;
        font-size: 1.6rem;
        background-size: 17px auto;
        height: unset;
        line-height: 2;
    }

    .purpose-item + .purpose-item {
        margin-top: 4rem;
    }

    .purpose-item-inner > a {
        padding: 5%;
    }

    .purpose-item__image {
        max-width: 360px;
        border-width: 0.2rem;
        margin: 0 auto 1rem;
    }

    .purpose-item__ttl {
        font-size: 1.8rem;
    }

    .purpose-item__text {
        font-size: 1.4rem;
    }

    .purpose-item__ttl-top {
        font-size: 1.4rem;
    }

    .purpose-item-tags {
        font-size: 1rem;
        padding: 0 5% 5%;
        margin-top: 5%;
    }

    .purpose-item .purpose-link-btn {
        text-align: left;
        margin-top: 5%;
    }

    .purpose-item .purpose-link-btn span {
        font-size: 1.4rem;
        width: 100%;
        text-align: left;
        display: inline-block;
        position: relative;
        font-weight: 700;
        background: #474747;
        color: #fff;
        padding: .9em 45px .9em 1.5em;
    }
}

/* product page */
.product-header {
    text-align: center;
}

.product-header__copy {
    color: #16009b;
}

.product-program-list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-program-list li {
    width: 50%;
    padding: 1px;
}

.product-program-list a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 4.6em;
    font-weight: bold;
    color: #16009b;
    text-align: center;
    text-decoration: none;
    border: 1px solid;
    border-bottom-width: 1.5em;
    box-sizing: content-box;
}

.product-program-list a:after {
    content: "";
    display: block;
    position: absolute;
    top: calc(100% + 0.75em);
    left: 50%;
    border-width: 0.5em 0.3em 0 0.3em;
    border-style: solid;
    border-color: transparent;
    border-top-color: #fff;
    transform: translate(-50%, -50%);
}

.product-program__ttl {
    font-weight: bold;
    color: #16009b;
    text-align: center;
}

.product-category-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.25em 0.5em;
    background: #f5f5f5;
}

.product-category-list a {
    color: #4a4a4a;
    text-decoration: none;
}

.product-category-list a:before {
    content: "";
    display: inline-block;
    margin-right: 0.5em;
    vertical-align: middle;
    border-width: 0.25em 0 0.25em 0.4em;
    border-style: solid;
    border-color: transparent;
    border-left-color: inherit;
}

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

.product-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-item__ttl {
    line-height: 1.4;
    color: #16009b;
}

.product-item__image > div {
    width: 100%;
    padding-top: 100%;
    background: no-repeat center center / contain;
}

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

.product-detail-item__ttl {
    line-height: 1.4;
    color: #16009b;
}

.product-detail-item__image > div {
    width: 100%;
    padding-top: 100%;
    background: no-repeat center center / contain;
}

/*20200819追加　zoskin question btn*/
.zoskinquesbtn {
    width: 80%;
    padding: 0.5em;
    box-sizing: border-box;
    border-radius: 0.4em;
    text-align: center;
    font-size: 1.2em;
    border: 1px solid #ab8900;
    margin: 1em auto;
}

.zoskinquesbtn a {
    color: #ab8900;
    text-decoration: none;
    display: block;
}

.zoskinquesbtn i.zo-q {
    font-family: "Noto Serif JP", serif;
}

/*20210707追加　widget cta*/
.wid-cta {
    padding: 80px 0;
    background: url(../img/common/bg-fv@2x.png);
    background-size: 17px auto;
}

.wid-cta .box-inner {
    background: #fff;
    padding: 69px 0 59px;
}

.wid-cta .wid-cta__ttl span {
    padding: 0 15px;
}

.wid-cta .wid-cta__ttl span:after {
    width: 42px;
    height: 32px;
    bottom: 12px;
    transform: rotate(4deg);
    right: -24px;
    background: url(../img/common/icn_contact.svg) no-repeat 50% 50%;
    background-size: contain;
}

.wid-cta__cont {
    max-width: 836px;
    margin: 0 auto;
}

.wid-cta__telBox {
    width: 49%;
}

.wid-cta__tel {
    width: 100%;
    display: flex;
    align-items: center;
}

.wid-cta__clinic {
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    display: inline-block;
    background: #e1d6ce;
    color: #333;
    font-size: 15px;
    letter-spacing: 0.2em;
    padding: 8px 7px;
    line-height: 1;
}

.wid-cta__txtbox {
    width: 100%;
    text-align: center;
    border: 1px solid #ccc;
    padding: 18px 30px;
}

.wid-cta__num {
    font-size: 3.2rem;
    color: #474747;
    text-decoration: none;
    line-height: 1;
    font-family: "poppins", serif;
    position: relative;
    padding: 0 0 0 1em;
}

.wid-cta__num:before {
    content: "";
    position: absolute;
    background: url(../img/common/icn-tel.svg) no-repeat 50% 50%;
    width: 2.9rem;
    height: 2.9rem;
    background-size: contain;
    left: 0;
    top: .2em;
}

.wid-cta__telTtl {
    padding-bottom: 1em;
    font-size: 2rem;
    line-height: 1;
    font-weight: bold;
}

.wid-cta__telInfo {
    padding-top: .7em;
    font-size: 1.5rem;
    line-height: 1;
}

.wid-cta__btnWrap {
    width: 49%;
}

.wid-cta__btnWrap li {
    width: calc(50% - 10px);
    height: 60px;
}

.wid-cta__btnWrap li .line-fuki {
    position: absolute;
    top: -.8em;
    left: calc(50% - 60px);
    width: 80%;
    z-index: 1;
    max-width: 120px;
}

.wid-cta__btnWrap li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    position: relative;
}

.wid-cta__btnWrap li a.link-minor {
    color: #666;
    font-size: 1.4rem;
    border-bottom: 1px solid;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-end;
    font-weight: 400;
}

.wid-cta__btnWrap li a.link-minor .icon {
    font-size: 1.2rem;
    transform: translateY(-50%) rotate(90deg);
    margin: 0 0 0 .5em;
}

.wid-cta__btnWrap li a.link-minor .icon:before {
    background-image: url(../img/common/icn-arw-gray.svg);
}

.wid-cta__btnWrap li a.link-reserve {
    background: #6ED0F7;
}

.wid-cta__btnWrap li a.link-contact {
    background: #EF8EB9;
}

.wid-cta__btnWrap li a.link-line {
    background: #12C75C;
}

.wid-cta__btnWrap li a.link-line .icon {
    font-size: 4rem;
    margin-right: 0.4em;
}

.wid-cta__btnWrap li a.link-line .icon:before {
    background-image: url(../img/common/icn-line.svg);
}

.wid-cta__btnWrap li a .icon {
    font-size: 3.4rem;
    margin-right: 0.5em;
}

.wid-cta__btnWrap li a.link-reserve .icon:before {
    background-image: url(../img/common/icn-reserve.svg);
}

.wid-cta__btnWrap li a.link-contact .icon:before {
    background-image: url(../img/common/icn-contact.svg);
}

.wid-cta__agreement {
    text-align: center;
    font-size: 13px;
}

.wid-cta__agreement a {
    color: #333;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid #333;
    position: relative;
}

.wid-cta__agreement a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -20px;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    box-sizing: border-box;
    opacity: 0.5;
    transform: translateY(-50%) rotate(45deg);
}

.breadcrumbs {
    text-align: right;
    margin-bottom: 40px;
    font-size: 1.4rem;
    color: transparent;
    width: 100%;
}

.breadcrumbs a {
    color: #ccc;
}

.breadcrumbs span[typeof=ListItem] {
    margin-left: -.8em;
    color: #666;
}

.breadcrumbs span[typeof=ListItem]:after {
    content: "/";
    display: inline-block;
    color: #ccc;
    margin: 0 0 0 .2em;
}

.breadcrumbs span[typeof=ListItem]:last-child:after {
    display: none;
}

.breadcrumbs .current-item {
    color: #666;
}

/*20210708追加　recommend*/
.recommend .recommend__list {
    display: flex;
    flex-wrap: wrap;
}

.recommend .recommend__list li {
    width: calc(33.333% - 12px);
    margin-bottom: 12px;
}

.recommend .recommend__list li:not(:nth-child(3n)) {
    margin-right: 8px;
}

.recommend .recommend__list li a {
    position: relative;
    color: inherit;
    text-decoration: none;
    border: 1px solid #ccc;
    background: #fff;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 0.5em;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
}

.recommend .recommend__list li a:after {
    content: "";
    display: block;
    position: absolute;
    right: 1px;
    bottom: 1px;
    border-width: .3em;
    border-style: solid;
    border-color: transparent;
    border-right-color: inherit;
    border-bottom-color: inherit;
}

.bottom-cont {
    margin-top: 80px;
}

/*20210827追加　column*/
.column__ttl {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.post-Meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.post-Date {
    margin-right: 15px;
}

.post-Meta .menu-tags {
    margin-bottom: 0;
}

.post-Eyecatch {
    margin-bottom: 2.5rem;
}

@media screen and (max-width: 640px) {
    .column__ttl {
        font-size: 1.6rem;
    }
}

/* 著者情報 */
.writerBox {
    border: 1px solid #ccc;
    border-top: 4px solid #6ED0F7;
    position: relative;
    background: #fff;
    box-sizing: border-box;
}

.writtenby__ttl {
    font-size: 2rem;
    margin-bottom: 1em;
    text-align: center;
}

.writtenby__box {
    display: flex;
}

.writtenby__img {
    line-height: 1;
    overflow: hidden;
    width: 296px;
    height: 197px;
    margin-top: 10px;
    text-align: center;
}

.writtenby__detail {
    flex: 1;
    padding-left: 30px;
}

.writer__name {
    font-size: 2.1rem;
    font-weight: bold;
    padding-bottom: 15px;
}

.writer__job {
    font-size: 1.6rem;
    font-weight: normal;
    padding-bottom: 10px;
}

.writer__info {
    font-size: 1.6rem;
    padding-bottom: 10px;
}

.writer__link {
    text-align: right;
    font-size: 14px;
}

.writer__link a {
    position: relative;
    display: inline-block;
    padding-left: 15px;
    color: #45413f;
}

.writer__link a:before {
    content: "";
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 1px #45413f;
    border-right: solid 1px #45413f;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -3px;
}

.writer__link a:link {
    text-decoration: underline;
}

@media screen and (min-width: 769px) {
    .writerBox {
        padding: 50px 50px 20px 20px;
        margin: 50px auto 40px;
    }
}

@media screen and (max-width: 768px) {
    .writerBox {
        padding: 50px 20px 20px 20px;
        padding: 5% 3.5%;
        margin-top: 8.5%;
    }

    .writtenby__ttl {
        font-size: 1.8rem;
    }

    .writtenby__box {
        display: block;
    }

    .writtenby__img {
        margin: 0 auto 1rem;
        width: 100%;
        height: unset;
    }

    .writtenby__detail {
        padding-left: 0;
    }

    .writer__name {
        font-size: 1.8rem;
    }

    .writer__job {
        font-size: 1.4rem;
    }

    .writer__info {
        padding: 0;
        font-size: 1.4rem;
    }
}

/* doctor */
.icn__link a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 5px 5px 0 0;
}

@media screen and (max-width: 768px) {
    .icn__link a {
        width: 8vw;
        height: 8vw;
    }
}

/* 関連コラム */
.sec-related h2 .sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .sec-related {
        margin-top: 5%;
    }
}

@media screen and (max-width: 640px) {
    .sec-related h2 .sp {
        display: block;
    }
}

/* 一覧 */
.article-wrap {
    margin-bottom: 4rem;
}

.article-wrap article {
    display: flex;
    align-items: flex-start;
}

.article-wrap .figure {
    width: 185px;
    position: relative;
}

.article-wrap .figure > a {
    display: block;
    width: 100%;
    padding-top: calc(120 / 185 * 100%);
    background: no-repeat center center / cover;
    background-color: #fff;
}

.article-wrap .txt {
    flex: 1;
    padding-left: 1.5rem;
}

.archive-Media_Meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.archive-Media_Meta time {
    margin-right: 1.5rem;
}

.archive-Media_Meta .menu-tags {
    margin-bottom: 0;
}

.archive-Media_Meta .menu-tags li {
    padding: 0;
}

.archive-Media_Meta .menu-tags li a {
    display: block;
    padding: 0 1em;
}

.article-wrap .archive-Media_Title a {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: #45413f;
}

.archive-Media_Intro {
    margin-top: 10px;
}

.archive-More {
    margin-top: 20px;
    text-align: right;
}

.archive-More a {
    position: relative;
    display: inline-block;
    padding: 1em 50px 1em 2em;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    background: #474747;
    text-align: center;
    width: 330px;
    font-weight: 700;
}

.archive-More a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 22px;
    width: 11px;
    height: 9px;
    background: url(../img/common/ico-arw.svg) no-repeat 50% 50%;
    background-size: contain;
    transform: translateY(-50%) rotate(90deg);
}

@media screen and (max-width: 640px) {
    .article-wrap {
        margin-bottom: 3rem;
    }

    .article-wrap .txt {
        padding-left: .8rem;
    }

    .archive-Media_Meta {
        margin-bottom: .5rem;
    }

    .archive-Media_Meta time {
        margin-right: 1rem;
        font-size: 1.3rem;
        font-family: 'Poppins', sans-serif;
    }

    .archive-Media_Meta_Title {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .archive-Media_Meta .menu-tags li {
        margin: 0 .3em .4em 0;
    }

    .archive-Media_Meta .menu-tags li a {
        padding: 0;
    }

    .article-wrap .figure {
        width: 93px;
    }

    .article-wrap .figure > a {
        padding-top: calc(185 / 185 * 100%);
    }

    .article-wrap .archive-Media_Title a {
        font-size: 1.4rem;
    }

    .archive-Media_Intro,
    .archive-More {
        display: none;
    }

    .archive-Media_Meta .menu-tags {
        margin-bottom: 0;
        display: inline-block;
        width: inherit;
    }
}

/* コラムサイドバー */
.l-side--column .l-side-nav-list {
    margin-bottom: 30px;
}

.l-side--column .archive-Aside_MediaWrapper {
    margin-top: 10px;
    margin-bottom: 30px;
}

.l-side--column .archive-Aside_MediaWrapper a {
    text-decoration: none;
}

.l-side--column .archive-MediaPreview_Thumbnail {
    margin-bottom: 10px;
    position: relative;
}

.l-side--column .archive-MediaPreview_Thumbnail > div {
    display: block;
    width: 100%;
    padding-top: calc(120 / 185 * 100%);
    background: no-repeat center center / cover;
    background-color: #fff;
}

.l-side--column .archive-Aside_MediaWrapper .menu-tags {
    margin-bottom: 10px;
    text-align: left;
}

.l-side--column .archive-MediaPreview_Title {
    color: #45413f;
    line-height: 1.5;
}

/* フォーム　アコーディオン */
@media (max-width: 750px) {
    .accordion__ttl {
        position: relative;
        cursor: pointer;
    }

    .accordion__ttl:before {
        content: "";
        background: url(../img/icn_plus.png) no-repeat center center / cover;
        width: 20px;
        height: 20px;
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .accordion__ttl.on:before {
        background-image: url(../img/icn_minus.png);
    }
}

.l-side--column .l-side-nav__caption {
    position: relative;
    border-left: 4px solid #6ed0f7;
    padding: 0.5em 0.5em 0.5em 1em;
    background: url(../img/common/bg-fv2@2x.png);
    background-size: 17px auto;
    text-align: left;
    color: #333;
    font-weight: 700;
    font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
    .l-side--column .l-side-nav__caption {
        font-size: 1.6rem;
    }

    .l-side--column .l-side-nav-list li a {
        position: relative;
        color: inherit;
        text-decoration: none;
        background: #fff;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0 0.5em;
        line-height: 1.4;
        text-align: center;
    }

    .l-side--column .l-side-nav-list li a:after {
        content: "";
        display: block;
        position: absolute;
        right: 1px;
        bottom: 1px;
        border-width: .3em;
        border-style: solid;
        border-color: transparent;
        border-right-color: #c6c6c6;
        border-bottom-color: #c6c6c6;
    }

    .l-side--column .l-side-nav__caption {
        margin-bottom: 2rem;
        font-size: 1.8rem;
        background-size: 17px auto;
    }

    .l-side--column .l-side-nav-list ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .l-side--column .l-side-nav-list li {
        width: 48.5%;
        margin-top: 3%;
        border: 1px solid #c8c8c8;
    }

    .l-side--column .l-side-nav-list li a {
        height: 5.9rem;
        font-size: 1.5rem;
    }

    .l-side--column .archive-MediaPreview_Inner {
        display: flex;
        align-items: flex-start;
    }

    .l-side--column .archive-MediaPreview_Thumbnail {
        width: 100px;
        position: relative;
        border: 2px solid transparent;
    }

    .l-side--column .archive-MediaPreview_Thumbnail > div {
        padding-top: calc(185 / 185 * 100%);
    }

    .l-side--column .archive-MediaPreview_Content {
        flex: 1;
        padding-left: 1.5rem;
    }

    .l-side--column .archive-Aside_MediaWrapper .menu-tags {
        text-align: left;
    }

    .l-side--column .archive-MediaPreview_Title {
        font-size: 1.4rem;
        font-weight: bold;
    }
}

/* pagenavi */
.wp-pagenavi {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    align-items: stretch;
    -js-display: flex;
    margin: 20px 0 0;
    padding: 2rem 0;
    text-align: center;
}

@media (max-width: 750px) {
    .wp-pagenavi {
        padding: 1.5rem 0;
    }
}

.wp-pagenavi > a,
.wp-pagenavi > span {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    margin: 0 1rem;
    line-height: 50px;
    font-weight: 400;
}

@media (max-width: 750px) {

    .wp-pagenavi > a,
    .wp-pagenavi > span {
        font-size: 1.4rem;
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin: 0 0.5rem;
    }
}

.wp-pagenavi > a {
    transition: all 0.2s;
}

.wp-pagenavi > a:hover {
    background: #f8f6f1;
    border-color: #f8f6f1;
}

.wp-pagenavi .page,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    background: #f1f1f1;
}

.wp-pagenavi .page .icon,
.wp-pagenavi .previouspostslink .icon,
.wp-pagenavi .nextpostslink .icon {
    font-size: 1.8rem;
}

@media (max-width: 750px) {

    .wp-pagenavi .page .icon,
    .wp-pagenavi .previouspostslink .icon,
    .wp-pagenavi .nextpostslink .icon {
        font-size: 1rem;
    }
}

.wp-pagenavi .current {
    background: #effbfd;
}

@media screen and (min-width: 769px) {
    .product-header {
        margin-bottom: 20px;
    }

    .product-header__logo {
        margin-top: 30px;
    }

    .product-header__copy {
        margin: 1em 0;
        font-size: 2.6rem;
    }

    .product-program-list {
        margin-bottom: 60px;
    }

    .product-program-list ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .product-program-list li {
        width: 50%;
        padding: 1px;
    }

    .product-program__ttl {
        margin: 0 0 20px;
    }

    .product-category-list {
        font-size: 1.4rem;
    }

    .product-category-list li {
        margin: 0.25em 2em;
    }

    .product-items__header {
        margin: 30px 0 10px;
    }

    .product-items__ttl {
        font-size: 2.4rem;
    }

    .product-items__count {
        font-size: 1.2rem;
    }

    .product-items:after {
        content: "";
        display: block;
        width: 30%;
        height: 0;
        visibility: hidden;
    }

    .product-item {
        width: 30%;
        margin-top: 40px;
    }

    .product-item__ttl {
        margin: 1em 0 1em;
        font-size: 1.4rem;
    }

    .product-item__price {
        font-size: 1.2rem;
    }

    .product-item__text {
        font-size: 1.2rem;
    }

    .product-detail__ttl {
        margin-bottom: 50px;
        font-size: 2.4rem;
    }

    .product-detail-item {
        display: flex;
        justify-content: space-between;
    }

    .product-detail-item__image {
        width: 47.5%;
        padding: 0 20px;
    }

    .product-detail-item__inner {
        width: 47.5%;
    }

    .product-detail-item__ttl {
        margin-bottom: 10px;
        font-size: 2.2rem;
    }

    .product-detail-item__price {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .product-header {
        margin-bottom: 2rem;
    }

    .product-header__logo {
        margin-top: 1rem;
    }

    .product-header__copy {
        margin: 1rem 0;
        font-size: 2rem;
    }

    .product-program-list {
        margin-bottom: 3rem;
        font-size: 1.1rem;
    }

    .product-program__ttl {
        margin: 0 0 2rem;
        font-size: 1.4rem;
    }

    .product-category-list li {
        margin: 0.25em 1.5em;
    }

    .product-items__header {
        margin: 2rem 0 0;
    }

    .product-items__ttl {
        font-size: 1.6rem;
    }

    .product-items__count {
        font-size: 1rem;
    }

    .product-item {
        width: 47.5%;
        margin-top: 2rem;
    }

    .product-item__ttl {
        margin: 1em 0 1em;
    }

    .product-item__price {
        font-size: 1rem;
    }

    .product-item__text {
        font-size: 1rem;
    }

    .product-detail__ttl {
        margin-bottom: 2rem;
        font-size: 1.6rem;
    }

    .product-detail-item {
        max-width: 500px;
        margin: 0 auto;
    }

    .product-detail-item__image {
        margin-bottom: 2rem;
        text-align: center;
    }

    .product-detail-item__ttl {
        margin-bottom: 1rem;
        font-size: 1.6rem;
    }

    .product-detail-item__price {
        margin-bottom: 2rem;
    }

    .wid-cta {
        margin-top: 5%;
        padding: 7% 0 6%;
    }

    .wid-cta .top-h__ttl-box p {
        margin: -0.7em auto 1em;
    }

    .wid-cta .box-inner {
        padding: 5% 3.5% 1px;
    }

    .wid-cta__cont {
        display: block;
        padding: 0;
        margin: 6.5% auto 0;
    }

    .wid-cta__txtbox {
        padding: 4%;
    }

    .wid-cta__telBox {
        display: block;
        width: 100%;
        margin: 0 auto 5%;
    }

    .wid-cta__tel {
        display: block;
        min-width: 260px;
        margin: 0 auto;
    }

    .wid-cta__btnWrap {
        width: 100%;
    }

    .wid-cta__clinic {
        font-size: 11px;
    }

    .wid-cta__num {
        font-size: 2.8rem;
    }

    .wid-cta__num:before {
        width: .8em;
        height: .8em;
        left: .2em;
        top: .3em;
    }

    .wid-cta__telInfo {
        font-size: 1.4rem;
        padding-top: .3em;
    }

    .wid-cta__telTtl {
        font-size: 14px;
    }

    .wid-cta__tel:not(:nth-child(2n)) {
        margin-right: auto;
    }

    .wid-cta__btnWrap li .line-fuki {
        top: -1em;
        left: 10%;
        width: 80%;
        max-width: 100%;
    }

    .wid-cta__btnWrap li a {
        padding-top: 1em;
    }

    .wid-cta__btnWrap li a span {
        font-size: 1.4rem;
    }

    .wid-cta__btnWrap li a.link-minor span {
        font-size: 1.5rem;
    }

    .wid-cta__btnWrap li:not(:last-child) a .icon,
    .wid-cta__btnWrap li a.link-line .icon {
        margin: -0.2em 0 0.3em;
    }

    .wid-cta__btnWrap li a.link-line .icon {
        margin: -.2em 0 .1em;
    }

    .wid-cta__btnWrap li a.link-minor {
        justify-content: center;
        position: relative;
        border-bottom: none;
        height: unset;
    }

    a.link-minor.hover:after {
        content: "";
        width: 13.5em;
        position: absolute;
        bottom: 0;
        left: calc(50% - 6.75em);
        height: 1px;
        background: #666;
    }

    .wid-cta__btnWrap li:not(:last-child) {
        position: relative;
        /*width: 30%;*/
        width: 47%;
        background: #ffb6c1;
        height: auto;
    }

    .wid-cta__btnWrap li:not(:last-child):before {
        content: "";
        display: block;
        /*padding-top: 100%;*/
        padding-top: 60%;
    }

    .wid-cta__btnWrap li:not(:last-child) a {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        flex-direction: column;
    }

    .wid-cta__btnWrap li:not(:last-child) {
        margin-right: 0;
    }

    .wid-cta__btnWrap li:last-child {
        width: 100%;
        /*padding: 1.8em 0;*/
        padding: .9em 0 0;
        height: unset;
        background: none;
    }

    .wid-cta__btnWrap li.link_minor {
        width: 100%;
        padding: .9em 0 0;
        height: unset;
        background: none;
    }

    .wid-cta__btnWrap li.link_minor:before {
        display: none;
    }

    .wid-cta__btnWrap li.link_minor a {
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        flex-direction: row-reverse;
    }

    .wid-cta__btnWrap li.link_minor a .icon {
        margin: 0 0 0 .5em;
    }

    .wid-cta__btnWrap li.link_minor:last-child {
        padding: 0 0 1.8em;
    }

    .wid-cta__agreement {
        font-size: 11px;
    }

    .wid-cta__agreement a:after {
        right: -10px;
        width: 5px;
        height: 5px;
    }

    .breadcrumbs {
        font-size: 1.2rem;
        padding: 0 4%;
        margin: 0 0 3.8vw;
    }

    .recommend .menu-tags li a:after {
        right: 5px;
    }

    .recommend .recommend__list {
        justify-content: flex-start;
    }

    .recommend .recommend__list li {
        width: 49%;
        margin: 2% 2% 0 0;
    }

    .recommend .recommend__list li:not(:nth-child(3n)),
    .recommend .recommend__list li:not(:nth-child(2n)) {
        margin: 2% 2% 0 0;
    }

    .recommend .recommend__list li:nth-child(2n) {
        margin-right: 0;
    }

    .recommend .recommend__list li a {
        height: 5.9rem;
        font-size: 1.5rem;
        padding: 0;
        font-weight: normal;
    }

    .bottom-cont {
        margin: 5rem auto;
    }
}

.page-access .btn-01 {
    margin: 15px 0;
}

.page-access .btn-01 a {
    margin: 0 auto;
}

/* monitor page */
.introduction__lead {
    background: #f8e4ec;
    padding: 10px;
}

.introduction__attention {
    font-size: 1.4rem;
}

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

.monitor_price {
    display: flex;
    justify-content: center;
    align-items: center;
}

.monitor_price .monitor_price_tag {
    display: inline-block;
    font-size: 1.5rem;
    color: #fff;
    background: #474747;
    padding: 0 15px;
    margin-right: 20px;
}

.monitor_price_numWrap {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.monitor_price .monitor_price_num {
    font-weight: bold;
    font-size: 300%;
    margin-right: 5px;
    line-height: 1;
}

.monitor_price .monitor_price_yen {
    font-weight: bold;
    font-size: 200%;
    line-height: 1;
}

.monitor_link a.link-access {
    margin: 0 auto;
}

.monitor_recommend {
    margin: 50px 0;
}

.monitor_recommend .recommend__item {
    margin-bottom: 30px;
}

.monitor_recommend .recommend__item a {
    display: flex;
    color: #45413f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.monitor_recommend .recommend__item a:hover {
    opacity: 0.8;
}

.monitor_recommend .recommend__imgWrap {
    width: 200px;
}

.monitor_recommend .recommend__img {
    width: 200px;
    position: relative;
}

.monitor_recommend .recommend__img span {
    display: block;
    width: 100%;
    padding-top: calc(160 / 200 * 100%);
    background: no-repeat center center / cover;
    background-color: #fff;
}

.monitor_recommend .recommend__txtbox {
    flex: 1;
    padding-left: 20px;
}

.monitor_recommend .recommend__ttl.sp {
    display: none;
}

.monitor_recommend .recommend__txt {
    padding-bottom: 15px;
}

.monitor_recommend .recommend__footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    line-height: 1;
}

.monitor_recommend .monitor_price_numWrap {
    margin-right: 20px;
}

.monitor_recommend .monitor_price_num {
    font-size: 4rem;
    font-weight: bold;
}

.monitor_recommend .monitor_price_yen {
    font-size: 2rem;
    font-weight: bold;
}

.monitor_recommend .recommend__shop {
    white-space: nowrap;
    margin: 10px 0 0;
}

.monitor_recommend .recommend__shopTag {
    display: inline-block;
    background: #e1d6ce;
    color: #333;
    font-size: 15px;
    letter-spacing: 0.1em;
    padding: 6px 7px;
    line-height: 1;
}

.monitor_recommend .btn-more .a {
    position: relative;
    display: block;
    padding: 0.8em 20px;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    background: #474747;
    text-align: center;
    width: 140px;
}

.monitor_recommend .btn-more .a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.monitor .menu_link {
    margin-bottom: 3rem;
}

.monitor-ac .purpose-list,
.case-ac .purpose-list {
    border-bottom: 1px solid #ccc;
}

.monitor-ac .post-num,
.case-ac .post-num {
    text-align: right;
}

.monitor-ac .monitor_recommend {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .introduction__attention {
        font-size: 1.2rem;
    }

    .monitor_recommend .recommend__item a {
        display: block;
    }

    .monitor_recommend .recommend__imgWrap {
        width: 100%;
        margin: 0 auto 15px;
    }

    .monitor_recommend .recommend__img {
        width: 60%;
        margin: 0 auto;
    }

    .monitor_recommend .recommend__imgWrap img {
        width: 100%;
    }

    .monitor_recommend .recommend__ttl.sp {
        display: block;
    }

    .monitor_recommend .recommend__ttl.pc {
        display: none;
    }

    .monitor_recommend .recommend__txtbox {
        padding-left: 0;
    }

    .monitor_recommend .monitor_price_num {
        font-size: 3rem;
    }

    .monitor_recommend .monitor_price_yen {
        font-size: 1.7rem;
    }

    .monitor_recommend .recommend__ttl {
        font-size: 1.6rem;
    }
}

/* cases page */
.case.l-wrapper > .l-contents:first-child {
    padding-bottom: 5%;
}

.case_ba {
    display: flex;
}

.flex-box .case_ba {
    width: 50.5%;
}

.flex-box .box-case__meta {
    width: 45.5%;
}

.case_ba__item {
    flex: 1;
    width: 50%;
    padding: 0 1%;
}

.case_ba__ttl {
    text-align: center;
    font-size: 1.6rem;
    padding: .2em .5em;
    background: #EAEAEA;
}

.case_ba__comment {
    line-height: 1.75;
    width: 85%;
    margin: 0 auto;
    text-align: center;
}

.case_ba__img {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.case_ba__img img {
    width: 100%;
}

.case_ba__img span {
    display: block;
    width: 100%;
    padding-top: 66.6%;
    background: no-repeat center center / cover;
    background-color: #fff;
    position: relative;
}

.case_ba__img span img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cases-slider-item {
    margin-bottom: 1.5rem;
}

.case__meta .case__shop {
    font-size: 1.4rem;
    text-align: right;
}

.case__info {
    width: 100%;
    margin: 0 auto;
}

.case__info th {
    border-bottom: 1px solid #eaeaea;
    background: #eefbfd;
    text-align: left;
    padding: 15px 5px 15px 10px;
    line-height: 1.75;
    vertical-align: top;
}

.case__info td {
    border-bottom: 1px solid #EAEAEA;
    padding: 15px 5px 15px 15px;
    line-height: 1.75;
}

.case .doctor__box {
    display: flex;
}

.case .doctor__img {
    width: 200px;
}

.case .doctor__img span {
    display: block;
    width: 100%;
    padding-top: 100%;
    background: no-repeat center center / cover;
    background-color: #fff;
}

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

.case .doctor__txtbox {
    flex: 1;
    padding-left: 30px;
}

.case .menu_link {
    margin-bottom: 50px;
}

.case_recommend {
    margin: 50px 0 100px;
}

.case_recommend .recommend__item {
    margin: 0 auto 30px;
    width: 100%;
    padding: 30px 48px 32px 42px;
}

.case_recommend .recommend__item a,
.case__shop a {
    color: #45413f;
    transition: all 0.3s ease;
}

.case_recommend .recommend__item a:hover,
.case__shop a:hover {
    opacity: 0.8;
}

.case_recommend .recommend__item .case__meta {
    margin-bottom: .5em;
}

.case_recommend .recommend__ttl {
    font-size: 2rem;
    margin-bottom: 1.3em;
    text-align: center;
}

.case_recommend .case_ba__ttl {
    font-size: 110%;
}

.case_recommend .recommend__txt {
    margin-bottom: 15px;
}

.case_recommend .btn-more {
    margin-top: 18px;
}

.case_recommend .btn-more a {
    position: relative;
    display: block;
    padding: 1em .5em 1em 1.8em;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    background: #666;
    width: 160px;
    margin: 0 0 0 auto;
    font-weight: 700;
}

.case_recommend .btn-more a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 22px;
    width: 11px;
    height: 9px;
    background: url(../img/common/ico-arw.svg) no-repeat 50% 50%;
    background-size: contain;
    transform: translateY(-50%) rotate(90deg);
}

/* top purpose */
.top-purpose .case_recommend {
    margin: 33px auto 80px;
}

.top-purpose .case_recommend .recommend__item {
    margin: 0 auto 40px;
    width: 100%;
}

/* 絞り込み */
.search-tab__list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    box-sizing: border-box;
    -webkit-box-pack: start;
    justify-content: flex-start;
    margin: 0 auto 25px;
}

.search-tab__list dt,
.search-tab__list dd {
    padding: 10px 0;
}

.search-tab__list dt {
    width: 150px;
    font-weight: 700;
}

.search-tab__list dd {
    width: calc(100% - 150px);
}

.search-tab__list ul li {
    text-align: center;
    display: inline-block;
    margin: 0 5px 5px;
}

div.search-tab__list {
    display: block;
}

div.search-tab__list ul {
    text-align: center;
}

.search-tab__list ul li a {
    display: inline-block;
    padding: 1px 20px;
    border: 1px solid #000;
    text-decoration: none;
    color: #474747;
    transition: all .4s;
    font-weight: 700;
}

.search-tab__list ul li a.active {
    color: #fff;
    background: #474747;
}

.search-tab__list ul li a:hover {
    opacity: .8;
}

@media screen and (min-width: 769px) {
    .case__info th {
        width: 7.2em;
    }

    .case__info th,
    .case__info td {
        font-size: 1.6rem;
    }

    .flex-box .box-case__meta,
    .flex-box .case_ba {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .top-purpose .case_recommend {
        margin: 8% auto 0;
    }

    .top-purpose .case_recommend .recommend__item {
        padding: 6.5% 3% 8.5%;
        margin: 0 auto 9%;
    }

    .case_recommend .recommend__item {
        padding: 6.5% 3% 8.5%;
    }

    .case_recommend .recommend__item .flex-box {
        flex-direction: column;
    }

    .case_recommend .btn-more .a,
    .flex-box .box-case__meta,
    .flex-box .case_ba {
        width: 100%;
    }

    .flex-box .box-case__meta,
    .flex-box .case_ba {
        margin-bottom: 2rem;
    }

    .case__info th {
        width: 5.2em;
    }

    .case__info th,
    .case__info td {
        font-size: 1.4rem;
    }

    .search-tab__list dt,
    .search-tab__list dd {
        padding: 10px 0 5px;
    }

    .search-tab__list dt {
        width: 30vw;
        padding-left: 20px;
        text-align: center;
    }

    .search-tab__list dd {
        width: calc(100% - 30vw);
    }
}

.case .tax_link {
    margin-bottom: 30px;
}

label.panel-label {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: block;
    width: 100%;
    color: #666;
    cursor: pointer;
    background: #EAEAEA;
    transition: all 0.2s;
    font-weight: bold;
}

#panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1,
#panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 {
    pointer-events: none;
    cursor: default;
}

#panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 label.panel-label,
#panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 label.panel-label {
    background: #EF8EB9;
    color: #fff;
}

#panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 label.panel-label:after,
#panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 label.panel-label:after {
    opacity: 1;
}

#tabs-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    text-align: center;
    padding: 0;
}

#tabs-list li {
    display: flex;
    text-align: center;
    font-size: 1.8rem;
    width: 49.7%;
    width: 50%;
    position: relative;
}

#tabs-list li:hover {
    -webkit-transition: none;
    transition: none;
}

#tabs-list li label.panel-label {
    position: relative;
    padding: 14px 0;
}

#tabs-list li label.panel-label:after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    border-style: solid;
    border-width: .7em .6em 0;
    border-color: transparent;
    border-top-color: #EF8EB9;
    transform: translate(-50%, -1px);
    transition: .3s ease;
    opacity: 0;
}

.panel-radios {
    display: none;
}

#panels {
    background-color: white;
}

#panels .panels__container {
    margin: 0 auto;
    width: 100%;
}

#panels section .main {
    box-sizing: border-box;
    max-height: 0;
    opacity: 0;
    -webkit-transition: opacity 600ms;
    transition: opacity 600ms;
    overflow-y: hidden;
}

#panel-1-ctrl:checked ~ #panels #panel-1 .main,
#panel-2-ctrl:checked ~ #panels #panel-2 .main {
    max-height: inherit;
    opacity: 1;
}

#panel-1-ctrl:not(:checked) ~ #panels #panel-1 .main,
#panel-2-ctrl:not(:checked) ~ #panels #panel-2 .main {
    max-height: 0;
}

.case__catList {
    padding: 30px 30px 20px;
    display: flex;
    flex-wrap: wrap;
}

.case__catItem {
    width: 18.5%;
    margin-right: 1%;
    margin-bottom: 1.3%;
}

.case__catItem:nth-child(5n) {
    margin-right: 1%;
}

.case__catItem a {
    position: relative;
    color: inherit;
    text-decoration: none;
    border: 1px solid #ccc;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 58px;
    padding: 0 0.5em;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
}

.case__catItem a:after {
    content: "";
    display: block;
    position: absolute;
    right: 1px;
    bottom: 1px;
    border-width: .3em;
    border-style: solid;
    border-color: transparent;
    border-right-color: inherit;
    border-bottom-color: inherit;
}

.case-ac .case_recommend {
    margin: 0;
}

/* 症例一覧に施術情報アコーディオンを追加 */
.case__info__ttl {
    width: 100%;
    margin: 0 auto;
    background: #6ED0F7;
    font-size: 1.6rem;
    color: #fff;
    padding: 12px;
    line-height: 1.75;
    position: relative;
    cursor: pointer;
    font-weight: 700;
}

.case_recommend .recommend__item .case__info {
    border-top: none;
}

.case__info__ttl:before {
    content: "";
    display: block;
    position: absolute;
    right: 22px;
    top: 50%;
    width: 11px;
    height: 9px;
    background: url(../img/common/ico-arw.svg) no-repeat 50% 50%;
    background-size: contain;
    transform: translateY(-50%) rotate(180deg);
}

.case__info__ttl.on:before {
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .case_ba {
        justify-content: space-between;
    }

    .case_ba__item {
        flex: none;
    }

    .case_ba__img,
    .case_ba__comment,
    .cases-slider-thumbnail {
        width: 100%;
    }

    .mce-content-body p.case_ba__comment {
        font-size: 1.2rem;
    }

    .cases-slider-thumbnail .case_ba__img {
        width: 90%;
    }

    .case_ba .slick-prev,
    .case_ba .slick-next {
        bottom: 20vw;
        width: 10px;
        height: 10px;
    }

    .case_ba .slick-prev:before,
    .case_ba .slick-next:before {
        font-size: 10px;
        color: #fff;
    }

    .case_ba .slick-prev {
        left: 0;
    }

    .case_ba .slick-next {
        right: 0;
    }

    .case__meta,
    .case__info,
    .case__info__ttl {
        width: 100%;
    }

    .case__meta .recommend__shopTag {
        font-size: 13px;
    }

    .case .doctor__box {
        display: block;
    }

    .case .doctor__img {
        width: 40%;
        margin: 0 auto 15px;
    }

    .case .doctor__txtbox {
        padding-left: 0;
    }

    .case_recommend .recommend__ttl {
        font-size: 1.8rem;
        margin-bottom: 0.6em;
    }

    .case__meta {
        flex-wrap: wrap;
    }

    .case_recommend {
        margin-bottom: 50px;
    }

    .case_recommend .btn-more {
        width: 100%;
        margin: 5% auto 0;
    }

    .case__info__ttl,
    .case_recommend .btn-more .a {
        padding: .9em 1.2em;
        font-size: 1.4rem;
    }

    .case_recommend .case_ba__ttl {
        font-size: 1.4rem;
    }

    .case__meta .case__shop,
    .case__meta .recommend__shopTag {
        text-align: left;
        font-size: 1.4rem;
    }

    .case_recommend .recommend__item .case__meta {
        margin: 1.2em auto 0.5em;
    }

    .case-ac .case_recommend {
        margin: 0;
    }

    #tabs-list li {
        font-size: 1.5rem;
    }

    #tabs-list li label.panel-label {
        padding: 0;
        height: 4.1em;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .case__catList {
        padding: 5% 0;
    }

    .case__catItem:not(:nth-of-type(4n)) {
        margin-right: 2%;
    }

    .case__catItem {
        width: 49%;
        margin: 2% 2% 0 0;
        font-size: 1.5rem;
    }

    .case__catItem:nth-child(2n) {
        margin-right: 0;
    }
}

/* メニューページに関連の症例写真表示 */
.menu-case .case_recommend {
    margin: 0 0 50px;
}

@media screen and (max-width: 768px) {
    .menu-case .case_recommend {
        margin: 0 0 5rem;
    }
}

/* sitemap page */
.page-sitemap .sitemap__list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.page-sitemap .sitemap__list li {
    width: calc(25% - 0.75rem);
    margin-bottom: 1rem;
}

.page-sitemap .sitemap__list li:not(:nth-of-type(4n)) {
    margin-right: 1rem;
}

.page-sitemap .sitemap__list li a {
    text-decoration: none;
    color: #474747;
    position: relative;
    padding-left: 18px;
}

.page-sitemap .sitemap__list li a:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    box-sizing: border-box;
    opacity: 0.5;
    transform: translateY(-50%) rotate(45deg);
}

.page-sitemap .sitemap__list--inline {
    display: block;
}

.page-sitemap .sitemap__list--inline li {
    display: inline-block;
    width: auto;
    margin-right: 2rem;
}

.page-sitemap .sitemap__list--inline li:not(:nth-of-type(4n)) {
    margin-right: 2rem;
}

.page-sitemap .menu-about__ttl,
.page-sitemap .sitemap__list--inline li.menu-about__ttl {
    width: 100%;
    display: block;
    margin-right: 0;
    margin-top: 2em;
    position: relative;
    text-align: center;
}

.page-sitemap .menu-about__ttl:before,
.page-sitemap .sitemap__list--inline li.menu-about__ttl:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    background: #E5577D;
}

.page-sitemap .menu-about__ttl a,
.page-sitemap .sitemap__list--inline li.menu-about__ttl a {
    padding-left: 0;
    color: #E5577D;
    font-weight: bold;
    display: inline-block;
    padding: 0 1em;
    z-index: 3;
    position: relative;
    background: #fff;
    text-decoration: none;
}

.page-sitemap .menu-about__ttl a:before,
.page-sitemap .sitemap__list--inline li.menu-about__ttl a:before {
    content: none;
}

.page-sitemap .menu-content__ttl {
    margin-bottom: 1em;
    margin-top: 2em;
}

.page-sitemap .menu-content__ttl a {
    text-decoration: none;
    color: #474747;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .page-sitemap .sitemap__list li {
        width: calc(50% - 0.67rem);
    }

    .page-sitemap .sitemap__list li:not(:nth-of-type(4n)) {
        margin-right: 0;
    }

    .page-sitemap .sitemap__list--inline li {
        width: 100%;
    }
}

/* reserve page */
.form-reserve .bnr-line {
    margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
    .form-reserve .bnr-line {
        margin-bottom: 50px;
    }
}

.page-contact .l-footer-info-clinic + .l-footer-info-clinic {
    margin-top: 0;
}

.page-contact .footer-info-clinic-ttl {
    line-height: 42px;
}

.page-contact .footer-info-clinic-txt a {
    font-size: 18px;
    color: inherit;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .flow-tel-clinicWrap {
        display: flex;
        justify-content: space-between;
    }

    .flow-tel-clinicWrap.flow-tel-inner {
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .flow-tel-clinic {
        width: 48%;
    }

    .flow-tel-clinicWrap.flow-tel-inner .flow-tel-box {
        width: 100%;
        padding: 2%;
        margin-top: 2.5%;
    }

    .flow-tel-clinicWrap.flow-tel-inner .flow-tel-box .name {
        padding: 0 0 0.5em;
        font-size: 1.2rem;
    }

    .flow-tel-clinicWrap.flow-tel-inner .flow-tel-box .text {
        font-size: 1.2rem;
        line-height: 1.5;
        padding: 0;
    }

    .flow-tel-clinicWrap.flow-tel-inner .flow-tel-box .wid-cta__num {
        font-size: 2rem;
    }

    .page-contact .footer-info-clinic-ttl {
        background: #474747;
        color: #fff;
        text-align: center;
        padding: 0.6rem;
        width: 100%;
        letter-spacing: 0.1em;
        line-height: 1;
        margin: 0 auto;
    }

    .flow-tel-clinic-txt {
        text-align: center;
    }
}

/* LINE友達追加のCV数計測の為に、クッションページを用意 */
.line-page {
    width: 100%;
    height: 100vh;
}

.line-page-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0;
    box-sizing: border-box;
}

.line-page-text p {
    text-align: center;
    white-space: nowrap;
}

.line-page-text p.logo {
    margin-bottom: 30px;
}

.line-page-text p a {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .line-page-text p.logo img {
        width: 100%;
    }

    .line-page-text {
        padding: 0 7%;
    }
}

/* よくある質問から施術ページヘの導線配置 */
.menu-faq-list + .btn-01 {
    margin-top: 50px;
}

.menu-faq-list + .btn-01 a {
    margin: 0 auto;
    font-size: inherit;
    width: 73%;
}

@media screen and (max-width: 768px) {
    .menu-faq-list + .btn-01 a {
        width: 100%;
    }
}

/* お悩み・目的別Q&Aを作成 */
@media screen and (max-width: 768px) {
    .wid-archive-list .top-search-tab li {
        width: 33.333%;
    }

    .wid-archive-list .top-search-tab {
        margin-bottom: 5%;
    }

    .wid-archive-list .top-search-tab li a {
        height: 4.1em;
        font-size: 1.3rem;
        white-space: normal;
        padding: 0 1em;
    }
}

/* 46.一覧ページの上部に人気施術ランキングを用意 */
.cat_ranking {
    overflow: hidden;
}

.cat_ranking .ranking__list {
    display: flex;
    margin-bottom: 20px;
}

.cat_ranking .ranking__item {
    width: calc(33.333% - 12px);
}

.cat_ranking .ranking__item:not(:last-child) {
    margin-right: 18px;
}

.cat_ranking .ranking__item a {
    text-decoration: none;
    color: inherit;
}

.cat_ranking .purpose-item__image {
    width: 100%;
    margin-bottom: 10px;
}

.cat_ranking .ranking__tag {
    margin-bottom: 10px;
}

.cat_ranking .ranking__tag span {
    display: inline-block;
    padding: 0px 15px;
}

.cat_ranking .ranking__tag span.rank-1 {
    background: rgba(230, 180, 34, 0.5);
}

.cat_ranking .ranking__tag span.rank-2 {
    background: rgba(192, 192, 192, 0.5);
}

.cat_ranking .ranking__tag span.rank-3 {
    background: rgba(196, 89, 34, 0.5);
}

.cat_ranking .ranking__ttl {
    font-size: 1.8rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .cat_ranking .purpose__ttl {
        font-size: 1.5rem;
        height: unset;
    }

    .cat_ranking .ranking__item {
        width: calc(33.333% - 8px);
    }

    .cat_ranking .ranking__item:not(:last-child) {
        margin-right: 12px;
    }

    .cat_ranking .ranking__tag {
        margin-bottom: 5px;
    }

    .cat_ranking .ranking__ttl {
        font-size: 1.4rem;
    }

    .related_column .menu-content__ttl {
        font-size: 2rem;
        padding: .7rem 0 .7rem 1.5rem;
        letter-spacing: -.04em;
    }
}

/* 人気・話題の施術のタブ化 */
.wid-recommend .top-h__ttl-box p {
    margin-bottom: 1.3em;
}

#recommend-tabs-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    text-align: center;
    padding: 0;
}

#recommend-tabs-list li {
    display: flex;
    text-align: center;
    font-size: 1.7rem;
    width: 50%;
    position: relative;
}

#recommend-tabs-list li:hover {
    -webkit-transition: none;
    transition: none;
}

#recommend-tabs-list li label.panel-label {
    position: relative;
    padding: 16px 0 19px;
}

#recommend-tabs-list li label:after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    border-style: solid;
    border-width: .7em .6em 0;
    border-color: transparent;
    border-top-color: #6ED0F7;
    transform: translate(-50%, -1px);
    transition: .3s ease;
    opacity: 0;
}

.wid-recommend #recommend-panel-1-ctrl:checked ~ #recommend-tabs-list #recommend-li-for-panel-1,
.wid-recommend #recommend-panel-2-ctrl:checked ~ #recommend-tabs-list #recommend-li-for-panel-2 {
    pointer-events: none;
    cursor: default;
}

.wid-recommend #recommend-panel-1-ctrl:checked ~ #recommend-tabs-list #recommend-li-for-panel-1 label.panel-label,
.wid-recommend #recommend-panel-2-ctrl:checked ~ #recommend-tabs-list #recommend-li-for-panel-2 label.panel-label {
    background: #6ED0F7;
    color: #fff;
}

.wid-recommend #recommend-panel-1-ctrl:checked ~ #recommend-tabs-list #recommend-li-for-panel-1 label.panel-label:after,
.wid-recommend #recommend-panel-2-ctrl:checked ~ #recommend-tabs-list #recommend-li-for-panel-2 label.panel-label:after {
    opacity: 1;
}

.wid-recommend #recommend-panels {
    background-color: white;
}

.wid-recommend #recommend-panels .panels__container {
    margin: 0 auto;
    width: 100%;
}

.wid-recommend #recommend-panels section .main {
    box-sizing: border-box;
    max-height: 0;
    opacity: 0;
    -webkit-transition: opacity 600ms;
    transition: opacity 600ms;
    overflow-y: hidden;
}

.wid-recommend #recommend-panel-1-ctrl:checked ~ #recommend-panels #recommend-panel-1 .main,
.wid-recommend #recommend-panel-2-ctrl:checked ~ #recommend-panels #recommend-panel-2 .main {
    max-height: inherit;
    opacity: 1;
}

.wid-recommend #recommend-panel-1-ctrl:not(:checked) ~ #recommend-panels #recommend-panel-1 .main,
.wid-recommend #recommend-panel-2-ctrl:not(:checked) ~ #recommend-panels #recommend-panel-2 .main {
    max-height: 0;
}

@media screen and (max-width: 768px) {
    .wid-recommend #recommend-panels .panels__container {
        margin: 2.5% auto;
    }

    #recommend-tabs-list li {
        font-size: 1.5rem;
    }

    #recommend-tabs-list li label:after {
        border-width: 0.9em 0.5em 0;
    }

    #recommend-tabs-list li label.panel-label {
        padding: 1.2em 0;
    }

    .wid-recommend-list li {
        width: 48.5%;
        margin-top: 2.5%;
    }
}

/* 施術比較表 */
.compare {
    margin-top: 50px;
}

.compare_tableWrap {
    overflow: scroll;
}

.compare_table {
    width: 100%;
    width: max-content;
}

.compare_table th,
.compare_table td {
    padding: 10px 5px;
    text-align: center;
    border: 1px solid #eaeaea;
    font-weight: 400;
    font-size: 13px;
    vertical-align: middle;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 140px;
}

.compare_table thead th {
    color: #fff;
    background-color: #474747;
}

.compare_table thead tr th:nth-of-type(1) {
    width: 100px;
}

.compare_table tbody tr td:nth-of-type(1) {
    background: #EEFBFD;
    font-weight: bold;
    width: 100px;
}

.search-result-list .thumb a {
    display: block;
    position: relative;
    padding-left: 85px;
    min-height: 85px;
}

.search-result-list .thumb a img {
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (min-width: 1300px) {
    .top-kv-slider-wrap {
        width: 100%;
        height: 600px;
    }
}

@media screen and (max-width: 1024px) {
    .top-kv-slider-wrap {
        height: 46.118vw;
    }
}

@media screen and (min-width:769px) and (max-width: 1023px) {
    .top-kv-slider-wrap {
        height: 46.118vw;
    }
}

@media screen and (max-width:768px) {
    .top-kv-slider-wrap {
        height: 46.118vw;
    }
}

.top-kv-slider.slick-initialized,
.top-kv-slider-thumb.slick-initialized {
    background: #f6f3e5;
    width: 100%;
    height: 100%;
}

.link-menu-list {
    margin: -20px auto 30px;
    background: #eee;
    padding: 15px 10px 15px 20px;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.link-menu-list .acd-label {
    width: 35%;
    display: block;
    position: relative;
    font-weight: bold;
}

.link-menu-list .acd-content {
    width: 65%;
    padding-left: 15px;
    border-left: 1px solid #474747;
    box-sizing: border-box;
}

.link-menu-list li {
    display: inline-block;
    margin: 0 1em 0 0;
}

.link-menu-list li a {
    display: inline-block;
    padding: .3em .2em .3em 1.2em;
    font-size: 1.4rem;
    color: #474747;
    text-decoration: underline;
    text-align: left;
    position: relative;
}

.link-menu-list li a:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    margin-top: 2px;
    border-top: 1px solid #474747;
    border-right: 1px solid #474747;
    transform: translateY(-50%) rotate(45deg);
}

.link-menu-list li a:hover {
    text-decoration: none;
}

.acd-check {
    display: none;
}

@media screen and (max-width: 750px) {
    .link-menu-list {
        margin: 2.5% auto 5%;
        display: block;
    }

    .link-menu-list .acd-label,
    .link-menu-list .acd-content {
        width: 100%;
    }

    .link-menu-list .acd-label {
        padding: 0 2em 0 0;
    }

    .link-menu-list .acd-content {
        padding-left: 0;
        border: none;
    }

    .link-menu-list .acd-content ul {
        padding: 10px 0 0;
        border-top: 1px solid #474747;
    }

    .link-menu-list .acd-content li a {
        font-size: 1.1rem;
    }

    .acd-label:after {
        box-sizing: border-box;
        content: '+';
        display: block;
        font-family: "Font Awesome 5 Free";
        width: 2em;
        height: 2em;
        text-align: center;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .acd-content {
        display: block;
        height: 0;
        opacity: 0;
        padding: 0 10px;
        transition: .4s;
        visibility: hidden;
    }

    .acd-check:checked + .acd-label:after {
        content: '-';
    }

    .acd-check:checked + .acd-label + .acd-content {
        height: auto;
        opacity: 1;
        padding: 15px 0 0;
        visibility: visible;
    }
}

/* 0207 */
.l-footer-links .sns__btn {
    padding: 5px;
    background: #eee;
    margin: 20px auto;
    max-width: 250px;
}

.l-side-banner .sns__btn {
    background: #eee;
    margin: 20px auto;
    width: 90%;
    max-width: 250px;
}

.l-side-banner .sns__btn li img {
    width: 35px;
    max-width: 35px;
}

@media screen and (min-width: 751px) {
    .l-side-banner .sns__btn {
        display: none !important;
    }
}

/* 0524 */
.writer__link.txt-left {
    text-align: left;
    max-width: 450px;
}

.writer__link a {
    margin: 0 0 0 .5em;
}

.writer__link.txt-left a {
    margin: 0 .5em 0 0;
}

/* ranking */
.ranking-main {
    padding: 24px 8px;
    position: relative;
    margin: 15px auto 45px;
    background: url(../img/common/bg-fv3@2x.png);
    background-size: 17px auto;
}

.ranking-main .box-inner {
    position: relative;
    max-width: 1500px;
}

.ranking-main .main-image {
    display: block;
    min-height: 400px;
    background: #fff;
}

.ranking-main .main-image img {
    width: 100%;
}

.ranking-main-title {
    position: absolute;
    top: 0;
    left: 8px;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
}

.ranking-main-title span {
    display: block;
    margin: .3em 0;
}

.ranking-main-title span i {
    display: inline-block;
    font-style: normal;
    font-weight: 700;
    color: #fff;
    padding: 0 .5em 0 .3em;
    font-size: 4.2rem;
    line-height: 1.5;
    background: #e5577d;
}

.ranking-list {
    margin: 25px auto 25px;
}

.ranking-list > section {
    margin-bottom: 45px;
}

.ranking-list .top-fv__list.flex-box {
    width: 100%;
    margin: 0 auto 0;
}

.ranking-list .top-fv__list li {
    height: inherit;
    min-height: 200px;
    padding: 3.5em 1.5em 2em;
}

.ranking-list .top-fv__list li:first-child,
.ranking-list .top-fv__list li:nth-child(3n) {
    margin-left: 0;
}

.ranking-list .top-fv__list span {
    color: #e5577d;
}

.ranking-list .top-fv__list .point__ttl {
    position: relative;
    top: inherit;
    color: inherit;
    margin-top: -2.5em;
}

.ranking-list .case_ba {
    margin: 18px auto 22px;
}

.ranking-list .case_ba__item {
    padding: 0;
}

.ranking-list .case_ba__ttl {
    font-size: 1.8rem;
    font-weight: bold;
}

.ranking-list .case_ba__before .case_ba__ttl {
    background: #EEFBFD;
    color: #6ED0F7;
}

.ranking-list .case_ba__after .case_ba__ttl {
    background: #FDF0EE;
    color: #EF8EB9;
}

.ranking-list .menu-price-list__caption {
    font-size: 1.8rem;
    padding: 0.7em 0 0.2em;
}

.article-wrap_ranking {
    margin-bottom: 4rem;
}

.article-wrap_ranking .flex-box {
    align-items: center;
}

.article-wrap_ranking .figure {
    width: 185px;
    position: relative;
}

.article-wrap_ranking .figure > a {
    display: block;
    width: 100%;
    padding-top: calc(120 / 185 * 100%);
    background: no-repeat center center / cover;
    background-color: #fff;
}

.article-wrap_ranking .txt {
    flex: 1;
    padding-left: 1.5rem;
}

.article-wrap_ranking .archive-Media_Title a {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: #45413f;
}

.ranking-list .archive-Media_Intro {
    margin-top: 10px;
}

.ranking-list .archive-More {
    margin-top: 20px;
    text-align: right;
    display: block;
}

.ranking-list .archive-More a {
    position: relative;
    display: inline-block;
    padding: 1em 50px 1em 2em;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    background: #474747;
    text-align: center;
    width: 330px;
    max-width: 100%;
    font-weight: 700;
}

.ranking-list .archive-More a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 22px;
    width: 11px;
    height: 9px;
    background: url(../img/common/ico-arw.svg) no-repeat 50% 50%;
    background-size: contain;
    transform: translateY(-50%) rotate(90deg);
}

.writerBox.box-ranking {
    border-top-color: #e5577d;
}

.writerBox.box-ranking .writer__name {
    padding: 0.1em 0 0.5em;
}

.other_page-ranking {
    margin: 45px auto;
    margin: 10.5vw auto;
}

.ranking-top-box .menu-lead-recommend-list {
    padding-left: 0;
    margin: 2em auto;
}

.ranking-top-box p strong,
.ranking-top-box p b {
    background: linear-gradient(transparent 70%, #FDF0EE 70%);
    background: -moz-linear-gradient(transparent 70%, #FDF0EE 70%);
    background: -webkit-linear-gradient(transparent 70%, #FDF0EE 70%);
}

.ranking-top-box .menu-lead-recommend-list li {
    font-size: 1.6rem;
    padding-left: 1.5em;
    margin: 0 0 .9em;
    line-height: 1.6;
}

.menu-lead-recommend-list li .icon {
    width: 1em;
    height: 1em;
    top: 0.25em;
}

.menu-lead-recommend-list li .icon:before {
    left: 2px;
    top: 0;
    width: 1em;
    height: 1em;
}

.ranking_ttl_01 {
    font-size: 2.4rem;
    position: relative;
    margin: 0 auto 1.2em;
    font-weight: 700;
    -ms-font-feature-settings: "normal";
    padding-left: 45px;
}

.ranking_ttl_01:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 36px;
    height: 31px;
    background: url(../img/common/ico-rank-01@2x.png) no-repeat 0 0;
    background-size: contain;
}

.rank-02 .ranking_ttl_01:before {
    background-image: url(../img/common/ico-rank-02@2x.png);
}

.rank-03 .ranking_ttl_01:before {
    background-image: url(../img/common/ico-rank-03@2x.png);
}

.rank-04 .ranking_ttl_01:before {
    background-image: url(../img/common/ico-rank-04@2x.png);
}

.rank-05 .ranking_ttl_01:before {
    background-image: url(../img/common/ico-rank-05@2x.png);
}

.rank-06 .ranking_ttl_01:before {
    background-image: url(../img/common/ico-rank-06@2x.png);
}

.rank-07 .ranking_ttl_01:before {
    background-image: url(../img/common/ico-rank-07@2x.png);
}

.rank-08 .ranking_ttl_01:before {
    background-image: url(../img/common/ico-rank-08@2x.png);
}

.rank-09 .ranking_ttl_01:before {
    background-image: url(../img/common/ico-rank-09@2x.png);
}

.rank-010 .ranking_ttl_01:before {
    background-image: url(../img/common/ico-rank-10@2x.png);
}

.ranking_ttl_01:after {
    content: "";
    width: 100%;
    height: 8px;
    bottom: -10px;
    position: absolute;
    left: 0;
    display: block;
    background: url(../img/common/bg-fv3@2x.png);
    background-size: 17px auto;
}

.ranking_ttl_02 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #E5577D;
    margin: 0 auto .7em;
}

.ranking_price {
    text-align: right;
    color: #E5577D;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 0.8em;
}

.ranking_price span {
    font-size: 2.8rem;
}

.ranking-list #menu-price .menu-price-list table {
    max-width: 100%;
}

@media screen and (min-width: 769px) {
    .l-wrapper > .l-contents:first-child {
        padding-bottom: 0;
    }

    .recommend .recommend__list.links li,
    .recommend .recommend__list.links li:not(:nth-child(3n)) {
        width: calc(25% - 0.75rem);
        margin-right: 0;
    }

    .recommend .recommend__list.links li:not(:nth-child(4n)) {
        margin-right: 10px;
    }

    .ranking-list .top-fv__list li .point__ttl {}

    .ranking-list .case__info__ttl,
    .ranking-list p,
    .ranking-top-box p {
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 768px) {
    .ranking-main .main-image {
        min-height: 35vw;
    }

    .ranking-main {
        padding: 5.8vw 2vw;
        margin: 8vw auto 12vw;
    }

    .ranking-main .box-inner {
        width: 100%;
        max-width: 100%;
    }

    .ranking-main-title {
        left: 0;
    }

    .ranking-main-title span i {
        font-size: 2.2rem;
    }

    .ranking-top-box .menu-lead-recommend-list {}

    .ranking_ttl_01 {
        font-size: 2.2rem;
        padding-left: 11vw;
    }

    .ranking_ttl_01:before {
        top: .3em;
        width: 1.5em;
        height: 1.4em;
    }

    .ranking_ttl_02 {
        font-size: 1.8rem;
    }

    .ranking-list {
        margin: 7.5vw auto 8.5vw;
    }

    .ranking-list > section {
        margin-bottom: 18vw;
    }

    .article-wrap_ranking {
        margin-bottom: 3rem;
    }

    .article-wrap_ranking .txt {
        padding-left: .8rem;
    }

    .archive-Media_Meta_Title {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .article-wrap_ranking .figure {
        width: 93px;
    }

    .article-wrap_ranking .figure > a {
        padding-top: calc(185 / 185 * 100%);
    }

    .article-wrap_ranking .archive-Media_Title a {
        font-size: 1.4rem;
    }

    .archive-Media_Intro,
    .archive-More {
        display: none;
    }

    .ranking-top-box .menu-lead-recommend-list li {
        font-size: 1.4rem;
    }

    .ranking_price {
        font-size: 1.4rem;
    }

    .ranking_price span {
        font-size: 1.8rem;
    }

    .ranking-list .case_ba__ttl {
        font-size: 1.2rem;
    }

    .ranking-list .top-fv__list p {
        font-size: 1.4rem;
    }

    .ranking-list .top-fv__list li {
        width: 30vw;
        height: auto;
        min-height: 30vw;
        margin: 0 0 5% 1vw;
    }

    .ranking-list .top-fv__list li:first-child {
        margin-left: 0;
    }

    .ranking-list .top-fv__list {
        justify-content: center;
        flex-direction: row;
    }

    .ranking-list .archive-Media_Intro,
    .ranking-list .archive-More,
    .other_page-ranking .archive-Media_Intro,
    .other_page-ranking .archive-More {
        display: block;
    }

    .ranking-list .archive-More a {
        padding: 1em 50px 1em 1em;
        width: 92%;
    }

    .other_page-ranking .archive-More a {
        padding: 1em 50px 1em 1em;
        width: 61.5%;
    }

    .writerBox.box-ranking .writer__name {
        font-size: 1.8rem;
    }

    .writerBox.box-ranking .writer__name .writer__job {
        font-size: 1.4rem;
    }
}

/* clinic 230907 */
.clinic_page .menu-kv-img {
    width: 53.4%;
    height: 340px;
    margin-top: -1.5em;
}

.clinic_page .menu-kv-txt p {
    font-size: 1.7rem;
}

.clinic_page .top-h__ttl.large span:before {
    top: -9px;
    left: -7px;
}

.clinic_page .top-h__ttl.large span:after {
    background: url(../img/common/icn_pickup_pink.svg) no-repeat 50% 50%;
    background-size: contain;
    right: -60px;
    bottom: 8px;
}

.clinic_page-profile {
    margin: 5px auto 80px;
}

.profile-wrapper {
    padding: 105px 0 35px;
    background: #f8f8f8;
}

.box-clinic-content__ttl:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 28px;
    left: 0;
    background: #ef8eb9;
}

.box-clinic-content__ttl {
    font-size: 2rem;
    line-height: 2.7;
    font-weight: 700;
    color: #e5577d;
    text-align: left;
    letter-spacing: .1em;
    width: 100%;
    height: 56px;
    position: relative;
}

.box-clinic-content__ttl span {
    display: inline-block;
    background: #fff;
    padding: 0 0.7em 0 0;
    z-index: 3;
    position: relative;
    letter-spacing: 0;
}

.clinic-doctor-box_01 {
    margin: 35px auto 20px;
}

.clinic-doctor-box_01 figure {
    width: 30.5%;
}

.clinic-doctor-box_01 .box {
    width: 66.5%;
}

.clinic-doctor-box_01 .box p {
    line-height: 1.95;
}

.clinic-doctor-box_02 section {
    width: 46%;
}

.clinic-doctor_ttl span {
    font-size: 1.4rem;
    display: block;
    font-weight: normal;
}

.clinic-doctor_ttl {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 0 0 .7em;
}

.clinic-doctor_ttl i {
    display: inline-block;
    margin-left: 25px;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #EF8EB9;
    vertical-align: middle;
    position: relative;
}

.clinic-doctor_ttl i a {
    border-bottom: 1px solid #EF8EB9;
    text-decoration: none;
}

.clinic-doctor_ttl i:before,
.clinic-doctor_ttl i a:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
}

.clinic-doctor_ttl i:before {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    background: url(../img/common/icn-instagram.svg) no-repeat 50% 50%;
    background-size: contain;
}

.clinic-doctor_ttl i a:after {
    width: 16px;
    height: 16px;
    margin: -5px 0 0 12px;
    background: url(../img/common/icn-link_blank.svg) no-repeat 50% 50%;
    background-size: contain;
}

.clinic-doctor-box_loop {
    margin: 70px auto 15px;
}

.clinic-doctor-box_loop.sec-01 {
    margin-top: 0;
}

.box-clinic_content_01 {
    width: 100%;
    color: #626262;
}

.box-clinic_content_01 dt {
    width: 4.5em;
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
    color: #EF8EB9;
}

.box-clinic_content_01 dd {
    font-size: 1.5rem;
    width: calc(100% - 5em);
}

.box-clinic_content_01 dt,
.box-clinic_content_01 dd {
    margin: .9rem 0 1rem;
}

.box-clinic_content_02 li {
    margin: .8rem 0 2.1rem;
    padding: 0 0 0 1.3em;
    font-size: 1.5rem;
    position: relative;
}

.box-clinic_content_02 li:before {
    content: "-";
    color: #EF8EB9;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 2;
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
}

.clinic-gallery-box li {
    width: 48%;
    margin: 25px 0 12px;
}

.clinic-gallery-box li p {
    line-height: 2.2;
}

.wid-recommend-list ul {
    justify-content: flex-start;
}

.wid-recommend-list li {
    margin-right: 1.7%;
}

.wid-recommend-list li:nth-child(3n) {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    .wid-recommend-list ul {
        justify-content: space-between;
    }

    .wid-recommend-list li,
    .wid-recommend-list li:nth-child(3n) {
        margin-right: 0;
    }
}

.menu-clinic-content {
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    border-top: 4px solid #E5577D;
    padding: 20px 64px 20px 64px;
    margin: 0 auto 25px;
}

.menu-clinic-content__ttl {
    margin-bottom: 0.6em;
    color: #E5577D;
    text-align: center;
}

.menu-clinic-content__ttl .en {
    display: block;
    color: #666;
}

.menu-clinic-content__ttl .jp {
    font-weight: bold;
}

.clinic-menu {
    padding: 80px 0 75px;
    background: #fff6f9;
    margin: 80px auto 0;
}

.clinic-menu .btn-01,
.menu-clinic-content .btn-01 {
    text-align: right;
}

.clinic-menu .btn-01 a.link-access,
.menu-clinic-content .btn-01 a.link-access {
    display: inline-block;
    width: auto;
    margin: 0;
}

.clinic-menu .btn-01 a.link-access {
    min-width: 168px;
    text-align: left;
    margin: 5px 0 10px;
}

.menu-feature-list.pink th {
    background: #FFF6F9;
}

.menu-clinic-content .menu-feature-list {
    margin: 35px auto 20px;
}

.menu-clinic-access .btn-01 a.link-access {
    min-width: 365px;
    text-align: left;
}

.menu-clinic-content .map-box {
    width: 100%;
    height: 300px;
    position: relative;
    margin: 25px auto 15px;
}

.menu-clinic-content .map-box iframe {
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.menu-clinic-content .menu-feature-list th {
    padding: 1.9em 2em;
}

.menu-clinic-content .menu-feature-list td {
    padding: 1.9em 2.5em;
    line-height: 2;
}

@media screen and (min-width: 769px) {
    .menu-clinic-content__ttl .jp {
        font-size: 2.6rem;
    }

    .clinic_page .menu-kv-txt p {
        margin-bottom: 3.5em;
    }
}

@media screen and (max-width: 768px) {
    .clinic_page .menu-kv-img {
        width: 90vw;
        height: 38.5vw;
        margin-top: 30px;
    }

    .clinic-doctor-box_01 {
        display: block;
    }

    .clinic-doctor-box_01 figure,
    .clinic-doctor-box_01 .box {
        width: 100%;
    }

    .menu-clinic-content__ttl .jp {
        font-size: 2.2rem;
    }

    .box-clinic-content__ttl {
        font-size: 1.8rem;
    }

    .clinic-doctor-box_01 .box p {
        font-size: 1.5rem;
    }

    .clinic-doctor_ttl {
        font-size: 2.2rem;
    }

    .clinic-doctor_ttl i {
        text-align: right;
        display: block;
        font-size: 1.2rem;
    }

    .clinic-doctor_ttl i:before {
        width: 2em;
        height: 2em;
    }

    .clinic-doctor_ttl i a:after {
        width: 1.2em;
        height: 1.2em;
        margin: -5px 0 0 0.5em;
    }

    .clinic-doctor-box_02 {
        display: block;
    }

    .clinic-doctor-box_02 section {
        width: 100%;
    }

    .clinic-gallery-box {
        display: block;
    }

    .clinic-gallery-box li {
        width: 100%;
    }

    .clinic-gallery-box li p {
        font-size: 1.5rem;
    }

    .box-clinic-content__ttl:before {
        top: 1.5em;
    }

    .menu-clinic-content {
        padding: 5%;
    }

    .menu-clinic-content .menu-feature-list th {
        padding: 1.2em 0 1.2em 1.2em;
    }

    .menu-clinic-content .menu-feature-list td {
        padding: 1.2em 1.5em;
    }

    .menu-clinic-access .btn-01 a.link-access {
        min-width: inherit;
        max-width: 100%;
    }
}

#toc_container li,
#toc_container ul {
    margin: 0;
    padding: 0
}

#toc_container.no_bullets li,
#toc_container.no_bullets ul,
#toc_container.no_bullets ul li,
.toc_widget_list.no_bullets,
.toc_widget_list.no_bullets li {
    background: 0 0;
    list-style-type: none;
    list-style: none
}

#toc_container.have_bullets li {
    padding-left: 12px
}

#toc_container ul ul {
    margin-left: 1.5em
}

#toc_container {
    margin-left: auto;
    margin-right: auto;
    background: #f9f9f9;
    border: 1px solid #aaa;
    padding: 10px;
    margin-bottom: 3em;
    width: auto;
    display: table;
    font-size: 95%
}

@media screen and (min-width: 769px) {
    #toc_container {
        width: 75%;
    }
}

#toc_container.toc_light_blue {
    background: #edf6ff
}

#toc_container.toc_white {
    background: #fff
}

#toc_container.toc_black {
    background: #000
}

#toc_container.toc_transparent {
    background: none transparent
}

#toc_container p.toc_title {
    text-align: center;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

#toc_container.toc_black p.toc_title {
    color: #aaa
}

#toc_container span.toc_toggle {
    font-weight: 400;
    font-size: 90%
}

#toc_container p.toc_title + ul.toc_list {
    margin-top: 1em
}

.toc_wrap_left {
    float: left;
    margin-right: 10px
}

.toc_wrap_right {
    float: right;
    margin-left: 10px
}

#toc_container a {
    color: #e5577d;
    text-decoration: none;
    text-shadow: none
}

#toc_container a:hover {
    text-decoration: underline
}

.toc_sitemap_posts_letter {
    font-size: 1.5em;
    font-style: italic
}

#toc_container .toc_toggle a::after {
    display: inline-block;
}

/* 1115 170 */
.top-doctor .flex-box {
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.top-doctor .flex-box li {
    text-align: center;
    margin: 0 1% 2.5%;
    width: 30%;
    border: 1px solid #ccc;
    padding: 5px 5px 15px;
    position: relative;
}

.top-doctor .flex-box li h3 {
    color: #e5577d;
    font-weight: bold;
}

.top-doctor .link-access {
    margin: 25px auto 0;
}

.top-doctor .txt {
    text-align: center;
    margin: 0 auto 2em;
}

.top-doctor .flex-box li:after {
    content: "";
    display: block;
    position: absolute;
    right: 1px;
    bottom: 1px;
    border-width: .3em;
    border-style: solid;
    border-color: transparent;
    border-right-color: inherit;
    border-bottom-color: inherit;
}

.top-doctor .flex-box figure {
    width: 100%;
    height: 277px;
}

.top-doctor .flex-box figure img {
    width: 100%;
    height: 277px;
    max-height: 100%;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 768px) {

    .top-doctor .flex-box figure,
    .top-doctor .flex-box figure img {
        height: 58vw;
    }

    .top-doctor .flex-box li {
        width: 48%;
    }
}

/* 0129*/
.menu_toc .menu-small-title {
    margin: 0;
    font-size: inherit;
    font-weight: normal;
}

#toc_container.menu_toc li strong,
#toc_container.menu_toc li span,
#toc_container.menu_toc li b,
#toc_container.menu_toc li a * {
    display: inline;
    font-weight: normal;
}

#toc_container.menu_toc li.menu a:before {
    content: "・";
}

#toc_container.menu_toc li.toc-h3 {
    margin-left: 1.5em;
}

#toc_container.menu_toc li.toc-h4 {
    margin-left: 2em;
}

#toc_container.menu_toc li.toc-h5 {
    margin-left: 3em;
}

#toc_container.menu_toc {
    background: #fff;
    width: 100%;
    margin: 0 auto 25px;
}

/* doctor */
.guideline_box {
    background: #FDF0EE;
    padding: 0 0 40px;
}

.guideline_box .writerBox {
    border-top-color: #EF8EB9;
    text-align: center;
    padding: 30px 30px 35px;
    position: relative;
    margin: 0 auto;
}

.guideline_box .writerBox .heading {
    font-weight: 600;
    font-size: 2rem;
    margin: 0 auto 1.2em;
}

.guideline_box .doctorBox:before {
    content: "";
    width: 46.9%;
    height: 120%;
    bottom: 0;
    left: 0;
    position: absolute;
    background: url(../img/img_doctor_btm@2x.png) no-repeat 50% 100%;
    background-size: contain;
}

.guideline_box .doctorBox {
    justify-content: flex-end;
    position: relative;
    padding: 44px 0 40px;
}

.guideline_box .doctorBox .box {
    width: 53%;
}

.guideline_box .writerBox p,
.guideline_box .doctorBox .box p {
    line-height: 2;
}

.guideline_box .doctorBox .box .heading {
    font-size: 2.2rem;
    font-weight: 600;
    color: #E5577D;
    margin: 0 0 1.2em;
}

.guideline_box .doctorBox .btn-more {
    text-align: right;
}

.guideline_box .doctorBox .link-access {
    margin: 1.3em 0 0;
    background: #EF8EB9;
    display: inline-block;
    width: auto;
}

@media screen and (max-width: 768px) {
    .guideline_box {
        padding-bottom: 15vw;
        margin-bottom: 5vw;
    }

    .guideline_box .doctorBox {
        display: block;
        padding: 11% 0 5%;
    }

    .guideline_box .writerBox {
        padding: 7% 5% 5%;
    }

    .guideline_box .writerBox .heading,
    .guideline_box .doctorBox .box .heading {
        text-align: center;
        font-size: 1.8rem;
        line-height: 1.5;
        margin: 0 0 1.2em;
    }

    .guideline_box .writerBox p,
    .guideline_box .doctorBox .box p {
        line-height: 1.8;
        font-size: 1.4rem;
    }

    .guideline_box .doctorBox .box {
        width: 100%;
        margin: 0 auto 75vw;
    }

    .guideline_box .doctorBox:before {
        width: 100%;
        height: 71vw;
        bottom: 0;
        left: 0;
        background: url(../img/img_doctor_btm@2x.png) no-repeat 50% 100%;
        background-size: contain;
    }

    .guideline_box .doctorBox .btn-more {
        text-align: center;
        margin: 1em auto 0;
    }

    .guideline_box .writerBox p {
        text-align: left;
    }

    .guideline_box .writerBox p br {
        display: none;
    }

    .guideline_box .doctorBox .link-access {
        margin: 0.6em 0 0;
    }
}

/*price*/
@media screen and (min-width: 769px) {
    .price-page_list .wid-archive-list__anchor {
        margin-bottom: 20px;
        padding: 0;
    }
}

/* 0124 */
.first-price_kv-wrap {
    text-align: center;
}

@media screen and (min-width: 769px) {
    .first-price_kv-wrap .first-price_kv {
        background: url(../img/first_price/bg@2x.jpg) no-repeat 50% 50%;
        background-size: cover;
    }

    .first_price_box-wrap .menu-lead-content-inner {
        padding: 10px 0;
        height: auto !important;
    }
}

@media screen and (min-width: 769px) and (max-width: 1500px) {
    .first-price_kv-wrap {
        background-size: 1500px auto;
    }
}

.first_price_box-top {
    text-align: center;
    margin: 62px auto 0;
}

.first_price_box-top .ttl {
    font-size: 2.8rem;
    font-weight: 600;
}

.first_price_box-top .ttl:before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 1.05em;
    height: 1.5em;
    background: url(../img/first_price/icn@2x.png;) no-repeat 50% 50%;
    background-size: contain;
}

.first_price_box-wrap {
    padding: 56px 0 16px;
    background: #F8F8F8;
}

.first_price_box-wrap .menu-lead-content-wrap {
    flex-wrap: wrap;
}

.first_price_box-wrap .menu-lead-content {
    margin-bottom: 40px;
}

.first_price_box-wrap .price {
    font-size: 1.7rem;
    color: #E5577D;
    margin: 2em auto -1em;
}

.first_price_box-wrap .price p span {
    display: inline-block;
}

.first_price_box-wrap .price p span i {
    color: #fff;
    font-size: 1.9rem;
    background: #E5577D;
    display: inline-block;
    vertical-align: middle;
    margin: -.7em 1em 0 0;
    font-weight: 700;
    padding: .3em .9em;
}

.first_price_box-wrap .price i {
    font-style: normal;
}

.first_price_box-wrap .price p .num {
    font-size: 4.7rem;
    font-weight: 700;
    font-family: "poppins", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
    display: inline-block;
    vertical-align: middle;
    margin: -0.4em 0.1em 0;
    letter-spacing: .04em;
}

.first_price_box-wrap .btn {
    margin: 2.2em auto .4em;
}

.first_price_box-wrap .btn a {
    background: #FDF0EE;
    display: block;
    text-align: center;
    color: #E5577D;
    font-size: 1.5rem;
    padding: .8em 1em;
    text-decoration: none;
}

.menu-lead-content-figure {
    height: 230px;
}

.menu-lead-content-figure img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .first-price_kv-wrap {
        display: flex;
        flex-direction: column-reverse;
    }

    .first-price_kv-wrap .box-inner {
        width: 100%;
    }

    .first-price_kv-wrap .breadcrumbs {
        padding: 0;
        margin: 0 0 4vw;
    }

    .first_price_box-top {
        margin: 11% auto 0;
    }

    .first_price_box-top .ttl {
        font-size: 2.4rem;
        margin: 0 auto 0.5em;
        line-height: 1.5;
    }

    .first_price_box-top .ttl:before {
        width: 1.4em;
        height: 1.7em;
        margin: 0 auto 0.3em;
    }

    .first_price_box-wrap {
        padding: 11% 0 0;
        background: none;
    }

    .first_price_box-wrap .menu-lead-content-inner {
        padding: .5em 0 0;
    }

    .first_price_box-wrap .menu-lead-content {
        padding: 2rem 2.8rem .5rem;
        margin-bottom: 6.5%;
    }

    .first_price_box-wrap .price {
        font-size: 1.5rem;
        margin: 1.6em auto -1em;
    }

    .first_price_box-wrap .price p {
        text-align: right;
    }

    .first_price_box-wrap .price p span {
        text-align: left;
        display: block;
    }

    .first_price_box-wrap .price p span i {
        font-size: 1.5rem;
        margin: -.5em 1em 1em 0;
        padding: .2em .5em;
    }

    .first_price_box-wrap .price p .num {
        font-size: 4.2rem;
        margin: -.5em .1em -.2em;
        letter-spacing: .01em;
    }

    .first_price_box-wrap .btn {
        margin: 2.5em auto 1.2em;
    }

    .menu-lead-content-figure {
        height: 38vw;
        max-height: 300px;
    }
}

#menu-case-2 .scroll_box {
    height: 350px;
    max-height: 40vh;
    overflow-y: auto;
    padding-right: 20px;
}

#menu-case-2 .case_recommend .recommend__item {
    padding-right: 28px;
}

@media screen and (max-width: 768px) {
    #menu-case-2 .scroll_box {
        padding-right: 2%;
    }

    #menu-case-2 .case_recommend .recommend__item {
        padding-right: 1%;
    }
}

/*0516 */
.area-list {
    margin-bottom: 2.5em;
}

.area-list p {
    font-weight: bold;
    margin-top: 2.5em;
}

@media screen and (min-width: 769px) {
    .area-list p {
        font-size: 2rem;
    }
}

.doctor__title {
    font-size: 45px;
    font-family: 'Castoro Titling', serif;
    line-height: 0.7;
    letter-spacing: 0;
    font-weight: 400;
    text-align: center;
    color: #2A2825;
}

.topics__title {
    font-size: 45px;
    font-family: 'Castoro Titling', serif;
    color: #2A2825;
    font-weight: 400;
    line-height: 0.7;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .doctor__title {
        font-size: clamp(12px, 7.6vw, 30px);
    }

    .topics__title {
        margin-block: 0 8.4%;
        font-size: min(10.2vw, 40px);
    }
}

/* ==========
clinic
========== */
.clinic {
    max-width: 774px;
    margin-inline: auto;
    padding-block: 74px 75px;
}

.clinic a {
    text-decoration: none;
    display: block;
}

/* タブメニュー */
.clinic__tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.clinic__tab {
    width: 90%;
    padding: 10px 0;
    text-align: center;
    background-color: #fff;
    border: 1px solid #435168;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.clinic__tab:first-child {
    margin-right: 5%;
}

.clinic__tab--active {
    background-color: #435168;
    color: #fff;
    position: relative;
}

/* 吹き出しの三角形 */
.clinic__tab--active:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: #435168 transparent transparent transparent;
}

/* クリニックの内容 */
.clinic__content {
    display: none;
}

.clinic__content--active {
    display: flex;
    gap: 36px;
}

/* 左カラム */
.clinic__image-block {
    width: 100%;
    max-width: 360px;
}

.clinic__image {
    width: 100%;
    height: auto;
}

/* 右カラム */
.clinic__info-block {
    width: 380px;
}

.clinic__name {
    margin-bottom: 10px;
    font-family: "bodoni-std", serif;
    font-weight: bold;
}

.clinic__branch {
    font-size: 32px;
    margin-bottom: 20px;
}

.clinic__contact-button {
    width: 62%;
    max-width: 254.79px;
}

.clinic__contact-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 10px;
}

.clinic__info-table {
    margin-top: 14px;
    width: 100%;
    border-collapse: collapse;
}

.clinic__info-table th,
.clinic__info-table td {
    padding-bottom: 10px;
    text-align: left;
    vertical-align: top;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
}

.clinic__info-table th {
    width: 84px;
}

.clinic__info-table a {
    color: #1DA8FF;
}

.clinic__map-container {
    margin: 20px 0;
    padding-top: 14px;
}

.clinic__map {
    width: 100%;
    height: auto;
}

.iframe-container {
    width: 100%;
    max-width: 460px;
    /* 最大幅を460pxに設定 */
    aspect-ratio: 460 / 264;
    /* 横幅:高さの比率を直接指定 */
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.clinic__social-links {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}

.clinic__social-link {
    display: inline-block;
    margin-right: 10px;
}

.clinic__social-icon {
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {

    /* =========
    CLINIC
    ===========*/
    .clinic {
        padding-block: 30px;
    }

    .clinic__tab {
        border: 2px solid #435168;
    }

    .clinic__name {
        font-size: 24px;
    }

    .clinic__tab-container {
        padding-inline: 5%;
    }

    .clinic__content--active {
        flex-direction: column-reverse;
    }

    .clinic__info-block {
        width: 100%;
        padding: 0 5%;
    }

    .clinic__social-icon {
        width: 30px;
        height: 30px;
    }

    .clinic__contact-button {
        margin-inline: auto;
        width: 69%;
    }

    .clinic__image-block {
        width: 100%;
        padding-bottom: 10%;
    }

    .clinic__info-table th {
        margin-right: 30px;
    }
}

/* 特定のセクションに個別に設定することもできます */
#clinic {
    scroll-margin-top: var(--header-height);
}

/* 0526 */
.monitor_recommend .recommend__ttl {}

.monitor_recommend .monitor_price_numBox.monitor {
    color: #e5577d;
}

.monitor_recommend .monitor_price_numBox.default .monitor_price_num {
    font-size: 2.8rem;
}

.monitor_recommend .monitor_price_numBox p {
    margin-top: 1em;
    font-weight: bold;
}

.monitor_recommend .monitor_price_numBoxWrap {
    padding: 0 20px 0 0;
}

.monitor_recommend .monitor_price_num {
    font-size: 3rem;
}

.monitor_price.monitor {
    display: block;
    color: #e5577d;
    text-align: center;
}

.monitor_price_tag_menu {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
    color: #e5577d;
}

.monitor_price .monitor_price_tag {
    font-size: 1.3rem;
}

.monitor_price.monitor .monitor_price_tag {
    background: #e5577d;
    margin-bottom: .5em;
}

.monitor_price.default .monitor_price_num {
    font-size: 260%;
}

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

.cases-213 #tabs-list,
.cases-213 .panel-radios,
.cases-212 #tabs-list,
.cases-212 .panel-radios {
    display: none;
}

/* 0620 */
.case_pick {
    margin-top: 25px;
}

.case_pick .case__container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 100px;
    padding-top: 5.5%;
    padding-inline: 6.3%;
    background-color: #fff;
    transition: width 0.3s ease;
}

/* タブメニュー */
.case_pick .tab-menu {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6.5%;
    border-bottom: 0.8px solid #a1a1a1;
}

.case_pick .tab-item {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    cursor: pointer;
    font-size: clamp(16px, 1vw, 20px);
    transition: all 0.3s ease;
    position: relative;
    color: #a1a1a1;
}

.case_pick .tab-item::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 2.41px;
    background-color: #2a2825;
    transition: width 0.3s ease;
}

.case_pick .tab-item:hover::before {
    width: 100%;
}

.case_pick .tab-item:hover {
    color: #2a2825;
}

.case_pick .tab-item.active {
    font-weight: 500;
    color: #2a2825;
}

.case_pick .tab-item.active:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2.41px;
    background-color: #2a2825;
}

.case_pick .tab-item.active::before {
    display: none;
}

/* コンテンツエリア */
.case_pick .tab-content {
    display: none;
}

.case_pick .tab-content.active {
    display: block;
}

/* カード */
.case_pick .card-container {
    max-width: 830px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4%;
    margin: 0 auto;
}

.case_pick .card {
    /* width: calc(50% - 48px); */
    width: 46%;
    margin-bottom: 4.3%;
}

.case_pick .card-header {
    background-color: #435168;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-size: clamp(12px, 1vw, 1.3rem);
}

.case_pick .card-image {
    display: flex;
    justify-content: space-around;
}

.case_pick .card img {
    width: 378px;
    height: 222.5px;
    object-fit: contain;
}

#case02 .card-container .card img {
    width: 378px;
    height: auto;
    object-fit: contain;
}

.case_pick .card-image-caption {
    text-align: center;
    padding-top: 16.56px;
    font-weight: 500;
    font-family: "bodoni-std", serif;
    line-height: 1.7;
}

/* アコーディオン */
.case_pick .accordion {
    /* border: 0.5px solid #435168; */
    border: 1px solid #435168;
    margin-top: 10px;
}

.case_pick .accordion-header {
    font-family: "Castoro Titling", serif;
    font-size: clamp(16px, 1vw, 20px);
    color: #435168;
    padding-top: 5px;
    cursor: pointer;
    background-color: #f9f9f9;
    position: relative;
    text-align: center;
}

.case_pick .accordion-header:after {
    content: "▼";
    font-size: 12px;
    transition: transform 0.3s;
    position: absolute;
    right: 3%;
    top: 25%;
}

.case_pick .accordion-header.active:after {
    transform: rotate(180deg);
}

.case_pick .accordion-content {
    display: none;
    font-size: clamp(14px, 0.8vw, 16px);
    font-weight: 300;
}

.case_pick .accordion-content.active {
    display: block;
}

/* テーブルスタイル */
.case_pick .info-table {
    width: 100%;
    border-collapse: collapse;
}

.case_pick .info-table tr {
    border-bottom: 1px solid #eee;
}

.case_pick .info-table th {
    width: 35%;
    padding: 15px 10px;
    text-align: left;
    vertical-align: top;
    font-weight: 300;
    background-color: rgba(67, 81, 104, 0.05);
}

.case_pick .info-table td {
    padding: 15px 10px;
}

.case_pick .side-effect-list {
    list-style-type: none;
}

.case_pick .side-effect-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.case_pick .side-effect-list li:before {
    content: "・";
    position: absolute;
    left: 0;
}

.case_pick .case__bottom-link {
    background-color: #435168;
    color: #fbfbfb;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8.5px;
    padding: 13px 3%;
    margin-inline: auto;
    width: min(50%, 437px);
    font-family: "Shippori Mincho", serif;
    font-size: clamp(22px, 1.3vw, 26.98px);
    border: 2px solid transparent;
    text-decoration: none;
}

.case_pick .case__bottom-link img {
    width: min(1.3vw, 26px);
    height: auto;
}

.case_pick .case__bottom-link:hover {
    background-color: #fbfbfb;
    color: #435168;
    transition: all 0.3s ease;
    border: 2px solid #435168;
}

@media (max-width: 768px) {

    /* ==========
    case症例
    ============*/
    .case_pick {
        margin-top: 5%;
    }

    .case_pick .case__title--bg {
        height: min(38.4vw, 150px);
    }

    .case_pick .case__title--text {
        font-size: min(6.1vw, 24px);
    }

    .case_pick .case__container {
        margin: 0 auto 34%;
        padding-top: 9%;
    }

    .case_pick .tab-menu {
        align-items: flex-end;
    }

    .case_pick .card {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .case_pick .card-container {
        margin-bottom: 8.7%;
    }

    .case_pick .card img {
        height: auto;
        width: 100%;
    }

    .case_pick .card-header {
        padding: 8px 0;
    }

    .case_pick .card-image-caption {
        font-size: clamp(12px, 3.7vw, 14.64px);
        line-height: 1.7;
    }

    .case_pick .case__container {
        width: 100%;
        padding-inline: 4%;
    }

    .case_pick .case__bottom-link {
        width: 100%;
        font-size: 1.5rem;
    }

    .case_pick .tab-item {
        font-size: clamp(12px, 3.8vw, 15px);
        padding: 10px 0;
    }

    .case_pick .case__bottom-link img {
        width: min(4.3vw, 17px);
    }
}

/*0816*/
/* ================
今月のおすすめメニュー
====================*/
.recommended {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-block: 150px 200px;
    overflow: hidden;
}

.recommended__slider {
    width: 100%;
    margin-top: 85px;
    position: relative;
    overflow: visible;
}

.recommended__slider .splide__track {
    overflow: visible;
}

.recommended__slider .splide__list {
    overflow: visible;
    display: flex;
    align-items: center;
}

.recommended__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.recommended__link {
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.recommended__link:hover {
    transform: scale(1.1);
    z-index: 10;
}

.recommended__image {
    width: 800px;
    height: auto;
    aspect-ratio: 80 / 35;
    object-fit: contain;
    flex-shrink: 0;
}

/* ページネーション専用スタイル */
.recommended__pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.recommended__pagination .splide__pagination__page {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(217, 217, 217, 1);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.recommended__pagination .splide__pagination__page.is-active {
    background-color: rgba(116, 116, 116, 1);
    transform: scale(1, 1);
}

.menu__title {
    font-family: "Shippori Mincho", serif;
    text-align: center;
    font-size: 30px;
    color: #2a2825;
    font-weight: 400;
}

.menu__title--en {
    font-size: 14px;
    line-height: 1.54;
    letter-spacing: 0;
    margin-top: 10px;
    font-family: 'Castoro Titling', serif;
}

.menu__title--ja {
    margin-bottom: 10px;
    margin-top: 0;
    letter-spacing: initial;
}

/* スマホ用スタイル（768px以下） */
@media (max-width: 768px) {
    .recommended {
        padding-block: 88px 40px;
    }

    .recommended__slider {
        margin-top: 35px;
    }

    .recommended__image {
        width: 320px;
        height: 320px;
        flex-shrink: 0;
    }

    .menu__title {
        font-size: min(7.6vw, 30px);
        line-height: 1.5;
    }

    .menu__title--en {
        font-size: min(3.8vw, 15px);
    }
}

@media (max-width: 500px) {
    .recommended__slide {
        justify-content: center;
    }

    .recommended__link {
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .column_cta .wid-cta {
        padding: 10px 0;
    }

    .column_cta .wid-cta .box-inner {
        padding: 20px 15px 20px;
        width: calc(100% - 20px);
    }

    .column_cta .wid-cta__num {
        font-size: 3rem;
    }

    .column_cta .wid-cta__btnWrap {
        width: 51%;
    }

    .column_cta .wid-cta__telBox {
        width: 47%;
    }
}

.price_tbl_head th {
    text-align: center;
    background: none;
    font-weight: 700;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modalOpen {
    color: #45413f;
    font-size: 1.6rem;
    line-height: 1.7;
    font-family: 'Noto Sans JP';
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.modalOpen i {
    font-style: normal;
    line-height: 1.3;
}

.modalOpen .detail {
    position: relative;
}

.modalOpen .detail:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #45413f;
    position: absolute;
    bottom: 0;
    left: 0;
}

.modalOpen .detail:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url(../img/common/icn_plus.svg);
    background-size: 9px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    border: 1px solid #45413f;
    top: 2px;
    position: relative;
    margin-inline: 3px;
}

@media (max-width: 500px) {
    .modalOpen {
        /*font-size: 1.4rem;*/
        font-size: 1.2rem;
        display: block;
    }

    .modalOpen > i {
        display: block;
    }

    .modalOpen .detail:after {
        width: 13px;
        height: 13px;
        background-size: 7px;
    }
}

.modal-box {
    background-color: #fff;
    margin: 10% auto;
    max-width: 640px;
    width: 90%;
    border-radius: 10px;
    animation-name: modalopen;
    animation-duration: 1s;
    position: relative;
    padding: 20px 20px 40px;
    display: block !important;
}

.modal-box .ttl {
    font-weight: 700;
    border-bottom: 1px solid #6fd1f7;
    padding: 0 .5em .5em;
    font-size: 1.1em;
    line-height: 1.3;
}

.modalClose {
    position: absolute;
    top: -5px;
    right: 10px;
    z-index: 1;
}

@media (max-width: 768px) {
    .menu-price-table {
        width: 100%;
        overflow: auto;
    }

    .menu-price-table table {
        /*min-width: 500px;*/
        min-width: 110vw;
    }
    .price_tbl_head th:nth-child(2){
        width:6.5em;
    }
}

@media (min-width: 769px) {
    .price_tbl_head th:nth-child(1) {
        width: 38%;
    }

    .price_tbl_head th:nth-child(2) {
        width: 12%;
    }

    .price_tbl_head th:nth-child(3) {
        width: 25%;
    }

    .price_tbl_head th:nth-child(4) {
        width: 25%;
    }
}

.menu-price-list .wrap th .monitor {
    background: #ef8eb9;
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 0;
    font-size: 1.2rem;
    padding: 2px 6px;
    display: inline-block;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .menu-price-list .wrap th .monitor {
        margin-left: 0;
    }
}
