@charset "utf-8";

/* 全体の設定 */

body {
    font-family: mizoletbokutoh, sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0px;
    padding: 0px;
    border: 0px;
    color: #533A10;
    /* color: #0E0E0E; */
    letter-spacing: 1px;
    background-color: #F1F6F1;
    font-size: 20px;
}
body.white {
    background-color: white;
}
html {
    margin: 0px;
    padding: 0px;
    border: 0px;
}
a {
    text-decoration: none;
}
h1 {
    padding: 0px;
    margin: 0px;
    border: 0px;
}
h2 {
    font-weight: 400;
    font-style: normal;
}
button {
    font-family: mizoletbokutoh, sans-serif;
}
/* 太いフォント */
.font_bold {
    font-weight: 600;
}
/* フォントを少し大きく */
.font_larger {
    font-size: larger;
}
/* pc,sp 切り替え */
.pc { display: block !important; }
.sp { display: none !important; }
/* フォント黒 */
.font_black {
    color: #0E0E0E;
}
.font_brown {
    color: #533A10;
}
.font_pink {
    color: #8E354A;
}
/* 下線下線 */
.font_line {
    text-decoration: underline;
}
.font_green {
    color: #71C296;
}

/* -------------------- */

/* ボタン */

/* 緑色ボタン */
.button01 {
    background-color: #71C296;
    color: white;
    padding: 12px 40px;
    font-size: 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.button01:hover {
    background-color: #406E55;
}

/* 緑色ボタン（＞付き） */
.button02 {
    background-color: #71C296;
    color: white;
    padding: 12px 24px;
    font-size: 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
    display: inline-block;
    padding-right: 40px;
}
.button02:hover {
    background-color: #406E55;
}
.button02::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 32%;
    width: 18px;
    height: 18px;
    background: url('/img/pc_top_9_btn-open.png') no-repeat center center;
    background-size: contain;
}

/* 灰色ボタン */
.button03 {
    background-color: gray;
    color: white;
    padding: 12px 24px;
    font-size: 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.button03:hover {
    background-color: dimgray;
}

/* 緑色ボタン（「↓」付き） */
.button04 {
    background-color: #71C296;
    color: white;
    padding: 12px 24px;
    font-size: 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
    display: inline-block;
    padding-right: 50px;
}
.button04:hover {
    background-color: #406E55;
}
.button04::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 35%;
    width: 18px;
    height: 18px;
    background: url('/img/pc_top_8_btn-open.png') no-repeat center center;
    background-size: contain;
}

/* 緑色ボタン（「↑」付き） */
.button05 {
    background-color: #71C296;
    color: white;
    padding: 12px 24px;
    font-size: 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
    display: inline-block;
    padding-right: 50px;
}
.button05:hover {
    background-color: #406E55;
}
.button05::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 32%;
    width: 18px;
    height: 18px;
    background: url('/img/pc_top_8_btn-close.png') no-repeat center center;
    background-size: contain;
}

/* -------------------- */

/* ヘッダ */

.header_menu {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(242, 223, 229, 0.2);
    z-index: 10;
}
.header_menu.white {
    background-color: white;
}
.header_menu.green1 {
    background-color: #DFF2E0;
}
.header_menu.green2 {
    background-color: #F1F6F1;
}
.header_menu .left {
    flex-basis: 300px;
    padding: 0px 0px 0px 20px;
    display: flex;
    align-items: center;
}
.header_menu .right {
    flex-basis: 100%;
}
.header_menu .logo {
    display: flex;
    align-items: center;
}
/* 左上のロゴの画像（横幅に応じて縦高を自動縮尺） */
.header_menu .logo img {
    width: 300px;
    vertical-align: middle;
}
.header_menu .logo .sp_logo {
    display: none;
}
/* 右上の電話番号の画像（横幅に応じて縦高を自動縮尺） */
.header_menu .tel img {
    width: 280px;
}
.header-logo-sp {
    display: none;
}

/* -------------------- */

/* トップイメージ */

.top_image {
    display: flex;
    background-color: #DFF2E0;
    padding: 150px 0px 100px 0px;
    justify-content: center;
}
.top_image div {
    display: flex;
    flex-basis: 33%;
    align-items: center;
    justify-content: center;
}
.top_image .logo {
    flex-basis: auto;
}
@keyframes gentleBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
/* クローバーの回転アニメーション（一旦停止） */
/* @keyframes rotateRight {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
} */
.top_image .campaign {
    width: 300px;
    animation: gentleBlink 3s ease-in-out infinite;
}
.top_image .logo {
    width: 500px;
}
.top_image .logo .logo_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    color: #533A10;
}
.top_image .logo .logo_line1 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 1.5;
    white-space: nowrap;
    color: #6F6F6F;
}
.top_image .logo .logo_img {
    flex-shrink: 0;
    position: relative;
    display: inline-block;
}
.top_image .logo .logo_img img {
    height: 300px;
    width: auto;
}
.top_image .logo .logo_img .clover_rotate {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    /* クローバーの回転アニメーション（一旦停止） */
    /* animation: rotateRight 10s linear infinite; */
    height: 300px;
    width: auto;
}
.top_image .logo .logo_line2 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 1.5;
    white-space: nowrap;
    color: #6F6F6F;
}

/* -------------------- */

/* SEO対策用にタイトルを非表示で配置 */

.top_h1_hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* -------------------- */

/* 指圧院って？ */

.top_features {
    text-align: center;
    padding: 100px 15%;
    background-image: url("../img/pc_top_2_whats-shiatsu.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.top_features h2 {
    font-size: 32px;
    letter-spacing: 0.2em;
    position: relative;
    display: inline-block;
    line-height: 2.5em;
    margin-bottom: 60px;
}
.top_features h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: #71C296;
    border-radius: 4px;
}
.top_features .main_text {
    line-height: 2em;
}

/* -------------------- */

/* クローバー指圧院ってどんなところ？ */

.top_whats_clover {
    text-align: center;
    padding: 100px 15%;
}
.top_whats_clover h2 {
    font-size: 32px;
    letter-spacing: 0.2em;
    position: relative;
    display: inline-block;
    line-height: 2.5em;
    margin-bottom: 60px;
}
.top_whats_clover h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: #71C296;
    border-radius: 4px;
}
.top_whats_clover .main_text {
    line-height: 2em;
    background-image: url("../img/pc_top_3_couple.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 40%;
}
.top_whats_clover .image img {
    width: 200px;
}

/* -------------------- */

/* 施術メニュー */

.top_menu {
    text-align: center;
    background-color: white;
    padding: 100px 10%;
}

.top_menu h2 {
    font-size: 32px;
    letter-spacing: 0.2em;
    position: relative;
    display: inline-block;
    line-height: 2.5em;
    margin: 0px 0px 100px 0px;
}
.top_menu h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: #71C296;
    border-radius: 4px;
}
.top_menu .table {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
.top_menu .table div {
    flex-basis: 50%;
    padding: 10px 20px;
}
.top_menu .table .box {
    background-color: #71C296;
    padding: 30px;
    border-radius: 20px;
}
.top_menu .table .box .title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    padding: 0px 0px 20px 0px;
}
.top_menu .table .box .detail_box {
    background-color: white;
    padding: 30px;
}
.top_menu .table .box .detail_price {
    display: flex;
    font-size: 24px;
    font-weight: bold;
}
.top_menu .table .box .detail_price div {
    flex-basis: 50%;
}
.top_menu .table .box .detail_price .th {
    text-align: right;
    padding: 5px 0px;
}
.top_menu .table .box .detail_price.red {
    color: #AD2727;
}
.top_menu .table .box .detail_price .td {
    text-align: left;
    padding: 5px 0px 5px 10px;
}
.top_menu .table .box .detail_price .td .small {
    font-size: 16px;
}
.top_menu .table .box .detail_text {
    font-size: 16px;
    text-align: center;
    padding: 20px 0px 0px 0px;
    line-height: 1.8;
}
.top_menu .top_menu_note {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0px;
}
.top_menu .top_menu_note .img {
    flex-basis: 30%;
    text-align: right;
    padding: 0px 20px 0px 0px;
}
.top_menu .top_menu_note .img img {
    width: 80px;
}
.top_menu .top_menu_note .text {
    flex-basis: 70%;
    text-align: left;
    line-height: 2em;
}
.top_menu .top_menu_note .text .strong {
    background: linear-gradient(transparent 60%, rgba(255,255,128,0.5) 60%, rgba(255,255,128,0.5) 100%);
}

/* -------------------- */

/* 院長プロフィール */

.top_director {
    text-align: center;
    padding: 100px 15%;
}
.top_director h2 {
    font-size: 32px;
    letter-spacing: 0.2em;
    position: relative;
    display: inline-block;
    line-height: 2.5em;
}
.top_director h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: #71C296;
    border-radius: 4px;
}
.top_director .table {
    display: flex;
    align-items: center;
    margin: 20px 0px;
}
.top_director .table .img {
    flex-basis: 30%;
    padding: 0px 20px;
}
.top_director .table .img img {
    width: 300px;
}
.top_director .table .text {
    flex-basis: 70%;
    text-align: left;
}
.top_director .table .text .position {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    text-align: center;
}
.top_director .table .text .green {
    margin: 20px 5px 20px 0px;
}
.top_director .table .text .green span {
    color: white;
    background-color: #71C296;
    padding: 7px 40px;
    border-radius: 20px;
    font-size: 20px;
}
.top_director .table .text h3 {
    font-size: 28px;
    margin: 20px 0px;
    text-align: center;
}
.top_director .table .text h3 rt {
    margin-bottom: 0.5px;
}
.top_director .table .text .career {
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}
.top_director .table .text .career::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #D3D3D3;
}
.top_director .table .text .item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}
.top_director .table .text .career .item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D3D3D3;
    border: 2px solid #D3D3D3;
}
.top_director .table .text .career .item.current::before {
    background-color: #533A10;
    border-color: #533A10;
}
.top_director .table .text .career .item.current {
    font-weight: bold;
}
.top_director .table .text .career .year {
    font-size: 20px;
    color: #533A10;
    margin-right: 15px;
    flex-shrink: 0;
    width: 120px;
}
.top_director .table .text .career .text {
    font-size: 18px;
    color: #533A10;
    line-height: 1.6em;
    flex: 1;
}

/* -------------------- */

/* ご利用の流れ */

.top_flow {
    text-align: center;
    padding: 100px 15% 150px 15%;
    background-color: white;
}
.top_flow h2 {
    font-size: 32px;
    letter-spacing: 0.2em;
    position: relative;
    display: inline-block;
    line-height: 2.5em;
}
.top_flow h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: #71C296;
    border-radius: 4px;
}
.top_flow .flow {
    position: relative;
}
.top_flow .flow::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #e0e0e0;
    transform: translateX(-50%);
    z-index: 0;
}
.top_flow .flow .item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F1F6F1;
    border-radius: 20px;
    padding: 20px 10px;
    margin: 50px 0px;
}
/* お願いの項目の背景色 */
.top_flow .flow .item:last-child {
    background-color: #fff0f5;
}
/* 次回ご予約とお願いの間の縦線を消す */
.top_flow .flow .item:nth-last-child(2)::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 50%;
    width: 2px;
    height: 100px;
    background-color: white;
    transform: translateX(-50%);
    z-index: 2;
}
/* お願いの項目に繋がる縦線を消す */
.top_flow .flow .item:last-child::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 50%;
    width: 2px;
    height: 50px;
    background-color: white;
    transform: translateX(-50%);
    z-index: 2;
}
.top_flow .flow .item .img {
    flex-basis: 30%;
    text-align: center;
}
.top_flow .flow .item .img img {
    width: 150px;
}
.top_flow .flow .item .text {
    flex-basis: 70%;
    text-align: left;
    padding: 0px 0px 0px 20px;
    line-height: 1.5em;
}
.top_flow .flow .item .text .strong {
    /* color: #AD2727; */
    color: red;
    font-weight: bold;
}
.top_flow .flow .item .text .title {
    font-size: 24px;
    font-weight: bold;
    color: #533A10;
    padding: 10px 0px;
}

/* -------------------- */

/* ACCESS */

.top_access {
    text-align: center;
    padding: 100px 15%;
}
.top_access h2 {
    font-size: 32px;
    letter-spacing: 0.2em;
    position: relative;
    display: inline-block;
    line-height: 2.5em;
}
.top_access h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: #71C296;
    border-radius: 4px;
}
.top_access .access .item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
}
.top_access .access .item .img {
    flex-basis: 30%;
    text-align: right;
}
.top_access .access .item .img img {
    width: 50px;
}
.top_access .access .item .text {
    flex-basis: 70%;
    text-align: left;
    padding: 0px 0px 0px 20px;
    line-height: 1.5em;
}
.top_access .access .item .text a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    /* text-decoration: none; */
}
.top_access .access .item .text .google_map {
    width: 20px;
    margin: 0px 0px 0px 10px;
    vertical-align: middle;
}
.top_access .route_area {
    display: none;
}
.top_access .route {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 50px 0px 0px 0px;
}
.top_access .route .item {
    flex-basis: 30%;
    padding: 10px 10px;
}
.top_access .route .item .img img {
    width: 100%;
}
.top_access .route .item .text {
    text-align: left;
}
.top_access .button_area {
    padding: 40px 0px;
}

/* -------------------- */

/* 各症状へのアプローチ */

.top_symptoms {
    text-align: center;
    background-color: white;
    padding: 100px 15%;
}
.top_symptoms h2 {
    font-size: 32px;
    letter-spacing: 0.2em;
    position: relative;
    display: inline-block;
    line-height: 2.5em;
}
.top_symptoms h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: #71C296;
    border-radius: 4px;
}
.top_symptoms .sub_title {
    font-size: 16px;
    padding: 0px 0px 100px 0px;
}
.top_symptoms .table {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: flex-start; */
    justify-content: center;
    align-items: flex-start;
}
.top_symptoms .table .item {
    flex-basis: 30%;
    margin: 20px 0px;
    padding: 10px;
}
.top_symptoms .table .item .img {
    height: 200px;
}
.top_symptoms .table .item .img img {
    height: 180px;
}
.top_symptoms .table .item .button02 {
    width: 100%;
    max-width: 250px;
}

/* ポップアップ */
.modaal-content-container {
    padding: 50px !important;
}
.top_symptoms_popup {
    color: #533A10;
}
.top_symptoms_popup .close {
    color: gray;
    text-align: right;
    cursor: pointer;
}
.top_symptoms_popup .img {
    text-align: center;
    margin: 20px 0px 10px 0px;
}
.top_symptoms_popup .img img {
    width: 50% !important;
    max-width: 200px;
    height: auto;
}
.top_symptoms_popup .title {
    text-align: center;
    font-size: 28px;
    margin: 20px 0px 40px 0px;
    text-decoration: underline;
    text-decoration-color: #71C296;
    text-decoration-thickness: 14px;
    text-underline-offset: -4px;
}
.top_symptoms_popup .item {
    margin: 20px 0px;
}
.top_symptoms_popup .item .approach {
    font-size: 25px;
    font-weight: bold;
    margin: 50px 0px 20px 0px;
    border-bottom: 2px solid #533A10;
}
.top_symptoms_popup .item > div:not(.approach) {
    line-height: 1.6;
}

/* -------------------- */

/* フッタ */

#footer {
    display: flex;
    align-items: center;
    padding: 80px 40px;
    justify-content: center;
    gap: 120px;
}

/* 左側 */
#footer .left {
    order: 1;
    flex-shrink: 0;
}
#footer .left .top {
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    transform: scale(1.2);
    transform-origin: left center;
}
#footer .left .top img {
    width: 35px;
}
#footer .left .top .text {
    padding: 0px 10px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
#footer .left .top .text .up {
    padding: 2px 0px;
}
#footer .left .top .text .down {
    padding: 2px 0px;
}
#footer .left table {
    border-collapse: collapse;
    margin-bottom: 10px;
    width: 100%;
    transform: scale(1.2);
    transform-origin: left center;
}
#footer .left table thead tr,
#footer .left table tbody tr {
    height: 60px;
}
#footer .left table th {
    color: white;
    background-color: #71C296;
    text-align: center;
    width: 20px;
    border: 1px solid #71C296;
}
#footer .left table th.saturday {
    color: darkblue;
}
#footer .left table th.sunday {
    color: red;
}
#footer .left table td {
    text-align: center;
    border: 1px solid lightgray;
    background-color: white;
}
#footer .left table td.header {
    font-size: 14px;
    line-height: 1.4;
}
#footer .left table td.header strong {
    font-size: 17px;
}
#footer .left table td.circle {
    color: #71C296;
}
#footer .left table td.saturday {
    color: darkblue;
}
#footer .left table td.sunday {
    color: #A7A7A7;
    background-color: #EFEFEF;
}
#footer .left .table_bottom {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 15px;
}

/* 右側 */
#footer .right {
    order: 2;
    padding: 0px 50px;
    text-align: center;
    transform: scale(0.95);
    transform-origin: center center;
    flex-shrink: 0;
    margin-left: 20px;
}
#footer .right > div:first-child {
    margin-bottom: 15px;
}
#footer .right .tel {
    font-size: 28px;
    padding: 10px 0px;
    margin-bottom: 10px;
}
#footer .right .img_logo{
    width: 250px;
}
#footer .right .img_tel {
    width: 26px;
    padding-right: 8px;
}
#footer .right .text {
    font-size: 16px;
    margin-top: 0px;
}
#footer .right .text .strong {
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 0px 5px;
}

/* -------------------- */

/* お問い合わせ */

.contact_title {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 100px;
}
.contact_title img {
    width: 100%;
}
.contact_title_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #533A10;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 8px rgba(255,255,255,0.7), 0 0px 2px #fff;
    white-space: nowrap;
    pointer-events: none;
}
.contents_top_message {
    text-align: center;
    font-size: 24px;
    line-height: 2em;
    padding: 50px 0px;
}
.contents_top_message .strong {
    font-weight: 600;
    background: linear-gradient(transparent 60%, rgba(255,255,128,0.5) 60%, rgba(255,255,128,0.5) 100%);
}
#contact_form {
    background-color: white;
    padding: 40px;
}
#contact_form .item {
    margin: 20px 0px;
}
#contact_form .item .label {
    margin: 5px 0px;
}
#contact_form .item .input {
    margin: 5px 0px;
}
#contact_form .item .required {
    color: red;
}
#contact_form .item input[type="text"] {
    font-size: 16px;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid lightgray;
}
#contact_form .item input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
}
#contact_form .item textarea {
    font-size: 16px;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid lightgray;
    line-height: 1.5em;
}
#contact_form .item.note {
    font-size: 16px;
    line-height: 1.2em;
}
#contact_form .item a {
    color: #533A10;
    text-decoration: underline;
}
#contact_form .item.button {
    text-align: center;
    margin: 80px 0px;
}
#contact_form .item.button button {
    margin: 0px 20px;
}
#contact_form table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    table-layout: fixed;
    box-sizing: border-box;
}
#contact_form td,
#contact_form th {
  border: 1px solid #cccccc;
  padding: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}
#contact_form th {
  width: 30%;
  font-weight: normal;
  background: #efefef;
  text-align: left;
}
#contact_form td {
  text-align: left;
  background: white;
}
.contact_errors {
    color: red;
}
.contact_errors .error_messe {
    padding: 0px;
}
.contact_back_button {
    padding: 50px 0px;
}
.contact_success_button {
    padding: 50px 0px;
}

/* -------------------- */

/* プライバシーポリシー */

.privacy_title {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 100px;
}
.privacy_title img {
    width: 100%;
}
.privacy_title_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #533A10;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 8px rgba(255,255,255,0.7), 0 0px 2px #fff;
    white-space: nowrap;
    pointer-events: none;
}

/* -------------------- */

/* コンテンツ共通 */

/* アイテム */
.contents_common_item {
    margin: 50px 10% 150px 10%;
    line-height: 1.8em;
    background-color: white;
    padding: 40px;
    overflow-x: auto;
    max-width: 100%;
    box-sizing: border-box;
}
.contents_common_item p {
    padding: 20px 0px;
}
.contents_common_title {
    text-align: center;
    font-size: 30px; 
    text-decoration: underline;
    text-decoration-color: #FFF8D2;
    text-decoration-thickness: 14px;
    text-underline-offset: -4px;
    font-weight: 400;
    font-style: normal;
}
.contents_common_item h3.mentalhealth {
    font-size: 20px;
    background: linear-gradient(to right, #71C296 15px, transparent 15px);
    padding: 0px 10px 0px 30px;
    margin-top: 80px;
}
.contents_common_item h4 {
    margin: 0px;
    color: #533A10;
    /*font-size: 23px;*/
}
.contents_common_item .box {
    background-color: #FAF9F7;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 3px 3px 10px #b2b2b2;
    margin: 50px 0px;
}
.contents_common_item .box h3 span {
    color: white;
    font-weight: normal;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #71C296;
}

/* -------------------- */

/* レスポンシヴ */

/* ある程度、幅が狭くなったら、余白や、flex の折り返しなどを再設定 */
@media screen and (max-width: 1405px) {

    /* 施術メニュー */

    .top_menu {
        padding: 100px 5%;
    }
    .top_menu .table {
        flex-wrap: wrap;
    }
    
    /* -------------------- */

    /* 院長プロフィール */

    .top_director {
        padding: 100px 5%;
    }
    .top_director .table .text .position {
        flex-wrap: wrap;
    }
    
    /* -------------------- */

    /* ACCESS */

    .top_access {
        padding: 100px 5%;
    }

    /* -------------------- */

    /* 各症状へのアプローチ */

    .top_symptoms {
        padding: 100px 5%;
    }

}

/* スマホサイズ */
@media screen and (max-width: 869px) {

    /* 全体の設定 */
    body {
        font-size: 16px;
    }

    /* pc,sp 切り替え */
    .pc { display: none !important; }
    .sp { display: block !important; }

    .button01 {
        font-size: 16px;
    }
    .button02 {
        font-size: 16px;
    }
    .button03 {
        font-size: 16px;
    }
    .button04 {
        font-size: 16px;
    }
    .button05 {
        font-size: 16px;
    }

    /* -------------------- */

    /* ヘッダ */
    .header_menu {
        justify-content: space-between;
        padding: 10px 10px 10px 10px;
        flex-direction: row;
    }
    .header_menu .left {
        flex-basis: auto;
        flex-shrink: 0;
        padding: 0px;
    }
    .header_menu .right {
        flex-basis: auto;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        width: auto;
    }
    .header_menu .right .hamburger {
        width: auto !important;
    }
    .header_menu .left .logo .pc_logo {
        display: none;
    }
    .header_menu .left .logo .sp_logo {
        display: block;
        width: 150px;
    }
    .header-logo-sp {
        display: block;
        padding: 50px 0px 0px 0px;
    }
    .header_menu .tel img {
        width: 100%;
    }
    .header-logo-sp img {
        width: 30%;
    }

    /* -------------------- */

    /* トップイメージ */
    .top_image {
        display: block;
        padding: 150px 80px 100px 80px;
    }
    .top_image .logo .logo_text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
        color: #533A10;
    }
    .top_image .logo .logo_line1 {
        font-size: 20px;
        font-weight: 400;
        letter-spacing: 0.1em;
        line-height: 1.5;
        white-space: nowrap;
        color: #6F6F6F;
    }
    .top_image .logo .logo_img {
        flex-shrink: 0;
        position: relative;
        display: inline-block;
    }
    .top_image .logo .logo_img img {
        height: 180px;
        width: auto;
    }
    .top_image .logo .logo_img .clover_rotate {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-30deg);
        /* クローバーの回転アニメーション（一旦停止） */
        /* animation: rotateRight 10s linear infinite; */
        height: 180px;
        width: auto;
    }
    .top_image .logo .logo_line2 {
        font-size: 20px;
        font-weight: 400;
        letter-spacing: 0.1em;
        line-height: 1.5;
        white-space: nowrap;
        color: #6F6F6F;
    }
    .top_image .logo {
        width: 100%;
    }
    
    /* -------------------- */

    /* 指圧院って？ */
    .top_features {
        padding: 50px 20px;
    }
    .top_features h2 {
        font-size: 24px;
        letter-spacing: 0.1em;
        line-height: 1.2em;
        margin: 40px;
    }
    .top_features h2::after {
        bottom: -8px;
        height: 4px;
        border-radius: 2px;
    }
    .top_features .main_text {
        text-align: left;
        line-height: 1.6em;
    }

    /* -------------------- */

    /* クローバー指圧院ってどんなところ？ */
    .top_whats_clover {
        padding: 50px 20px;
    }
    .top_whats_clover h2 {
        font-size: 24px;
        letter-spacing: 0.1em;
        line-height: 1.2em;
        margin: 40px;
        white-space: nowrap;
    }
    .top_whats_clover h2 br.sp {
        display: block;
        white-space: normal;
    }
    .top_whats_clover h2::after {
        bottom: -8px;
        height: 4px;
        border-radius: 2px;
    }
    .top_whats_clover .main_text {
        background-image: none;
        text-align: left;
        line-height: 1.6em;
    }
    .top_whats_clover .image img {
        margin-top: 50px;
    }

    /* -------------------- */

    /* 施術メニュー */

    .top_menu {
        padding: 50px 20px;
    }
    .top_menu h2 {
        font-size: 24px;
        letter-spacing: 0.1em;
        line-height: 1.2em;
        margin: 40px;
    }
    .top_menu h2::after {
        bottom: -8px;
        height: 4px;
        border-radius: 2px;
    }
    .top_menu .table {
        display: block;
    }
    .top_menu .table .box {
        margin: 40px 0px;
    }
    .top_menu .table .box .title h3 {
        font-size: 20px;
        font-weight: 600;
    }
    .top_menu .table .box .detail_box {
        padding: 10px;
    }
    .top_menu .table .box .detail_price {
        padding: 0px;
        font-size: 16px;
        flex-direction: column;
        text-align: center;
        gap: 0px;
        margin-bottom: 15px;
    }
    .top_menu .table .box .detail_price .th {
        flex-basis: auto;
        padding: 5px 0px 0px 0px;
        text-align: center;
        margin-bottom: 0px;
    }
    .top_menu .table .box .detail_price .th .colon {
        display: none;
    }
    .top_menu .table .box .detail_price .td {
        flex-basis: auto;
        padding: 0px 0px 5px 0px;
        text-align: center;
        font-size: 24px;
        margin-top: 0px;
    }
    .top_menu .table .box .detail_price .td .small {
        font-size: 12px;
    }
    .top_menu .table .box .detail_text {
        padding: 20px 0px 20px 0px;
        text-align: left;
        line-height: 1.5;
    }
    .top_menu .top_menu_note {
        display: block;
    }
    .top_menu .top_menu_note .img {
        text-align: center;
        padding: 0px 0px 20px 0px;
    }
    .top_menu .top_menu_note .text {
        text-align: center;
        line-height: 1.5em;
        font-size: 16px;
    }
   
    /* -------------------- */

    /* 院長プロフィール */

    .top_director {
        padding: 50px 20px;
    }
    .top_director h2 {
        font-size: 24px;
        letter-spacing: 0.1em;
        line-height: 1.2em;
        margin: 40px;
    }
    .top_director h2::after {
        bottom: -8px;
        height: 4px;
        border-radius: 2px;
    }
    .top_director .table {
        display: block;
    }
    .top_director .table .img {
        margin: 0px 0px 50px 0px;
    }
    .top_director .table .text .position {
        display: block;
        text-align: center;
    }
    .top_director .table .text .position .position2 {
        display: flex;
        justify-content: center;
    }
    .top_director .table .text .green {
        margin: 10px 5px 10px 0px;
    }
    .top_director .table .text h3 {
        text-align: center;
        margin: 40px;
    }
    .top_director .table .text .item {
        display: block;
    }
    .top_director .table .text .career .year {
        font-size: 18px;
    }

    /* -------------------- */

    /* ご利用の流れ */

    .top_flow {
        padding: 50px 20px 100px 20px;
    }
    .top_flow h2 {
        font-size: 24px;
        letter-spacing: 0.1em;
        line-height: 1.2em;
        margin: 40px;
    }
    .top_flow h2::after {
        bottom: -8px;
        height: 4px;
        border-radius: 2px;
    }
    .top_flow .flow .item {
        flex-direction: column;
    }
    .top_flow .flow .item .img {
        flex-basis: auto;
    }
    .top_flow .flow .item .text {
        flex-basis: auto;
        padding: 10px 0px 0px 0px;
        text-align: left;
    }
    .top_flow .flow .item .img img {
        width: 80px;
    }
    .top_flow .flow .item .text .title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 10px;
    }
    .top_flow .note {
        text-align: left;
    }

    /* -------------------- */

    /* ACCESS */

    .top_access {
        padding: 50px 20px;
    }
    .top_access h2 {
        font-size: 24px;
        letter-spacing: 0em;
        line-height: 1.2em;
        margin: 40px;
    }
    .top_access h2::after {
        bottom: -8px;
        height: 4px;
        border-radius: 2px;
    }
    .top_access .route {
        justify-content: center;
    }
    .top_access .route .item {
        flex-basis: 40%;
    }
    
    /* -------------------- */

    /* 各症状へのアプローチ */

    .top_symptoms {
        padding: 50px 10px;
    }
    .top_symptoms h2 {
        font-size: 24px;
        letter-spacing: 0em;
        line-height: 1.2em;
        margin: 40px;
    }
    .top_symptoms h2::after {
        bottom: -8px;
        height: 4px;
        border-radius: 2px;
    }
    .top_symptoms .table {
        justify-content: center;
    }
    .top_symptoms .table .item {
        flex-basis: 43%;
    }
    .top_symptoms .table .item .img {
        height: 120px;
    }
    .top_symptoms .table .item .img img {
        height: 100px;
    }
    
    /* ポップアップ */
    .modaal-content-container {
        padding: 20px !important;
    }
    .top_symptoms_popup .img img {
        width: 150px;
    }

    /* -------------------- */

    /* フッタ */

    #footer {
        flex-wrap: wrap;
        padding: 0px 20px 100px 20px;
        gap: 50px;
    }

    /* 左側 */
    #footer .left {
        order: 1;
        flex-basis: 100%;
        margin-top: 40px;
    }
    #footer .left .top .text .up {
        font-size: 14px;
        font-weight: normal;
        line-height: 1em;
    }
    #footer .left .top .text .up .sp {
        line-height: 0;
        display: block;
        margin: 0;
    }
    #footer .left .top .text .up .sp br {
        line-height: 0;
        margin: 0;
        display: block;
    }
    #footer .left .top .text .down {
        font-size: 16px;
        font-weight: 600;
    }
    #footer .left table {
        width: 100%;
        transform: scale(1);
        max-width: 100%;
        box-sizing: border-box;
    }
    #footer .left table th {
        padding: 10px;
        font-size: 14px;
    }
    #footer .left table td {
        padding: 10px;
        font-size: 14px;
    }
    #footer .left table td.header strong {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.2;
    }
    #footer .left table td.header strong .time-start,
    #footer .left table td.header strong .time-end {
        display: block;
    }
    #footer .left table td.header strong .time-separator {
        font-size: 0;
        display: block;
        margin: 3px 0;
        line-height: 1;
    }
    #footer .left table td.header strong .time-separator::after {
        content: "｜";
        font-size: 14px;
        display: block;
    }
    #footer .left .top {
        transform: scale(1);
    }
    #footer .left .table_bottom {
        font-size: 13px;
    }

    /* 右側 */
    #footer .right {
        order: 2;
        text-align: center;
        flex-basis: 100%;
        padding: 0px;
        margin: 0px 0px 10px 0px;
    }
    #footer .right .img_logo {
        width: 60%;
    }
    #footer .right {
        margin: 10px 0px;
    }

    #footer_float {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 20;
        background: transparent;
        pointer-events: none;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5px;
    }
    /* footer_float 全体は透過でクリック無効、リンクだけクリック可能にする */
    #footer_float a {
        pointer-events: auto;
        display: block;
    }
    #footer_float img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* -------------------- */

    /* お問い合わせ */

    .contact_title {
        margin-top: 0px;
    }
    .contact_title_text {
        font-size: 24px !important;
        top: 60%;
        transform: translate(-50%, -50%);
    }
    .contact_title_text h1 {
        font-size: 24px !important;
    }
    .contents_top_message {
        padding: 100px 40px 50px 40px;
        text-align: left;
        font-size: 18px;
        line-height: 1.5em;
    }
    #contact_form {
        background-color: white;
        padding: 20px;
    }
    #contact_form .item .input {
        margin: 5px 20px 5px 0px;
    }

    /* -------------------- */

    /* プライバシーポリシー */

    .privacy_title {
        margin-top: 0px;
    }
    .privacy_title_text {
        font-size: 24px !important;
        top: 60%;
        transform: translate(-50%, -50%);
    }
    .privacy_title_text h1 {
        font-size: 24px !important;
    }

    /* -------------------- */

    /* コンテンツ共通 */

    /* アイテム */
    .contents_common_item {
        padding: 0px 20px;
        margin: 50px 20px;
    }

}

/* iPadサイズ（縦・横） */
@media screen and (min-width: 870px) and (max-width: 1024px) {

    /* 全体の設定 */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    body {
        font-size: 18px;
    }

    /* pc,sp 切り替え */
    .pc { display: block !important; }
    .sp { display: none !important; }

    /* -------------------- */

    /* ヘッダ */
    .header_menu {
        padding: 0px;
        max-width: 100%;
        box-sizing: border-box;
    }
    .header_menu .left {
        padding: 0px 0px 0px 10px;
    }
    .header_menu .left .logo img {
        max-width: 100%;
        height: auto;
    }
    .header_menu .tel img {
        width: 240px;
        max-width: 100%;
        height: auto;
    }

    /* -------------------- */

    /* トップイメージ */
    .top_image {
        padding: 150px 5% 100px 5%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .top_image .logo {
        width: 100%;
        max-width: 100%;
    }
    .top_image .logo .logo_img img {
        max-width: 100%;
        height: auto;
    }
    .top_image .logo .logo_img .clover_rotate {
        max-width: 100%;
        height: auto;
    }

    /* -------------------- */

    /* 指圧院って？ */
    .top_features {
        padding: 80px 5%;
    }

    /* -------------------- */

    /* クローバー指圧院ってどんなところ？ */
    .top_whats_clover {
        padding: 80px 5%;
    }
    .top_whats_clover .main_text {
        background-size: auto 35%;
    }

    /* -------------------- */

    /* 施術メニュー */
    .top_menu {
        padding: 80px 5%;
    }
    .top_menu .table {
        flex-wrap: wrap;
    }
    .top_menu .table div {
        flex-basis: 100%;
        padding: 10px 0px;
    }
    .top_menu .table .box {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* -------------------- */

    /* 院長プロフィール */
    .top_director {
        padding: 80px 40px;
    }
    .top_director .table {
        flex-wrap: wrap;
    }
    .top_director .table .img {
        flex-basis: 100%;
        text-align: center;
    }
    .top_director .table .img img {
        max-width: 100%;
        height: auto;
    }
    .top_director .table .text {
        flex-basis: 100%;
    }

    /* -------------------- */

    /* ご利用の流れ */
    .top_flow {
        padding: 80px 40px;
    }
    .top_flow .flow .item {
        max-width: 100%;
        box-sizing: border-box;
    }
    .top_flow .flow .item .img img {
        max-width: 100%;
        height: auto;
    }

    /* -------------------- */

    /* ACCESS */
    .top_access {
        padding: 80px 5%;
    }
    .top_access .access .item {
        max-width: 100%;
        box-sizing: border-box;
    }
    .top_access .route .item {
        flex-basis: 30%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .top_access .route .item .img img {
        max-width: 100%;
        height: auto;
    }

    /* -------------------- */

    /* 各症状へのアプローチ */
    .top_symptoms {
        padding: 80px 5%;
    }
    .top_symptoms .table .item {
        flex-basis: 30%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .top_symptoms .table .item .img {
        height: 140px;
    }
    .top_symptoms .table .item .img img {
        max-width: 100%;
        height: 120px;
        width: auto;
    }

    /* -------------------- */

    /* コンテンツ共通 */
    .contents_common_item {
        margin: 50px 5% 100px 5%;
        padding: 40px;
        max-width: 100%;
        box-sizing: border-box;
    }
    .contents_common_item img {
        max-width: 100%;
        height: auto;
    }

    /* -------------------- */

    /* お問い合わせ・プライバシーポリシー */
    .contact_title,
    .privacy_title {
        max-width: 100%;
        box-sizing: border-box;
    }
    .contact_title img,
    .privacy_title img {
        max-width: 100%;
        height: auto;
    }

    /* -------------------- */

    /* フッタ */
    #footer {
        padding: 50px 30px 50px 50px;
        max-width: 100%;
        box-sizing: border-box;
        gap: 0px;
    }

    /* フッタ - 左側 */
    #footer .left {
        flex-shrink: 0;
        flex-basis: 70%;
        min-width: 0;
        max-width: 70%;
        box-sizing: border-box;
        overflow: visible;
        padding-right: 10px;
    }
    #footer .left .top {
        transform: scale(1.05);
        max-width: 100%;
        transform-origin: left center;
        justify-content: flex-start;
    }
    #footer .left .top .text {
        font-size: 18px;
        text-align: center;
    }
    #footer .left .top .text .up {
        white-space: nowrap;
    }
    #footer .left .top .text .up .sp {
        display: none;
    }
    #footer .left table {
        max-width: 100%;
        transform: scale(0.95);
        box-sizing: border-box;
        transform-origin: left center;
        width: 100%;
    }
    #footer .left table th,
    #footer .left table td {
        padding: 8px 4px;
        font-size: 15px;
    }
    #footer .left table td.header {
        font-size: 14px;
    }
    #footer .left table td.header strong {
        font-size: 17px;
    }
    #footer .left .table_bottom {
        font-size: 16px;
    }

    /* フッタ - 右側 */
    #footer .right {
        flex-shrink: 1;
        flex-basis: 30%;
        min-width: 0;
        max-width: 30%;
        padding: 0px 0px 0px 10px;
        margin-left: 0px;
        transform: scale(0.9);
        box-sizing: border-box;
    }
    #footer .right .img_logo {
        max-width: 100%;
        height: auto;
        width: 200px;
    }
    #footer .right .tel {
        font-size: 24px;
        white-space: nowrap;
    }
    #footer .right .text {
        font-size: 14px;
    }

    /* -------------------- */

    /* お問い合わせ */
    .contact_title_text {
        font-size: 30px !important;
    }
    .contact_title_text h1 {
        font-size: 30px !important;
    }
    .contents_top_message {
        font-size: 18px;
    }

    /* プライバシーポリシー */
    .privacy_title_text {
        font-size: 30px !important;
    }
    .privacy_title_text h1 {
        font-size: 30px !important;
    }

    /* -------------------- */

    /* 全体のコンテナ調整 */
    main {
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .top_image,
    .top_features,
    .top_whats_clover,
    .top_menu,
    .top_director,
    .top_flow,
    .top_access,
    .top_symptoms {
        box-sizing: border-box;
    }

}

/* iPad縦サイズ */
@media screen and (min-width: 768px) and (max-width: 869px) and (orientation: portrait) {

    /* 指圧院って？ */
    .top_features {
        padding: 80px 8%;
    }

    /* クローバー指圧院ってどんなところ？ */
    .top_whats_clover {
        padding: 80px 8%;
    }

    /* ご利用の流れ */
    .top_flow {
        padding: 80px 40px;
    }

    /* 施術メニュー */
    .top_menu h3 {
        margin-top: 0px;
        margin-bottom: 0px;
        font-size: 28px;
    }
    .top_menu .table .box .detail_text {
        text-align: center !important;
        line-height: 1.3;
    }

    /* 院長プロフィール */
    .top_director {
        padding-left: 40px;
        padding-right: 40px;
    }
    .top_director .table .text .position {
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .top_director .table .text .position .green {
        text-align: center;
    }
    .top_director .table .text h3 {
        text-align: center !important;
    }

    /* フッタ */
    #footer {
        padding: 80px 40px;
        gap: 60px;
        flex-wrap: wrap;
    }
    #footer .left {
        flex-basis: 100%;
        max-width: 100%;
        overflow: visible;
        box-sizing: border-box;
        padding-right: 0px;
    }
    #footer .right {
        flex-basis: 100%;
        max-width: 100%;
    }
    #footer .right .img_logo {
        width: 200px;
    }
    #footer .left .top {
        transform: scale(1.3);
        max-width: calc(100% / 1.3);
        transform-origin: center center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    #footer .left {
        padding-left: 20px;
    }
    #footer .left .top .text {
        font-size: 26px;
        text-align: center;
    }
    #footer .left .top .text .up {
        white-space: nowrap !important;
    }
    #footer .left .top .text .up .sp {
        display: none !important;
    }
    #footer .left .top .text .up br {
        display: none !important;
    }
    #footer .left table {
        transform: scale(1);
        max-width: calc(100% - 0px);
        width: 100%;
        box-sizing: border-box;
        transform-origin: left center;
    }
    #footer .left table th,
    #footer .left table td {
        font-size: 18px;
        padding: 8px 4px;
    }
    #footer .left table th {
        font-size: 18px;
    }
    #footer .left table td.header {
        font-size: 13px;
    }
    #footer .left table td.header strong {
        font-size: 16px;
    }
    #footer .left .table_bottom {
        font-size: 15px;
    }

}
