/*
 Theme Name: STORY Child
 Theme URI: https://tcd-theme.com/tcd041
 Description: TCD STORY (tcd041) 用 子テーマ
 Author: あなたの名前
 Version: 1.0.0
 Template: story_tcd041
 Text Domain: story-child
*/

/* === 柔らかい印象の丸ゴシックを追加読み込み（見出し・英数字も丸い字体に） === */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

:root {
    /* 見出し・ロゴ用の柔らかい字体（和文・英数字とも丸ゴシック） */
    --soft-font: "Zen Maru Gothic", "Zen Kaku Gothic Antique", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body.shown-nav {
    overflow: hidden;
    height: 100%;
}

body {
    color: #5D625E;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

body.home {
    background: url(img/home-bg.png);
}

body.font-1 {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
}

body.shown-nav {
    overflow: hidden;
    height: 100vh;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--soft-font);
    font-weight: 500;
}

p {
    font-size: 16px;
    line-height: 2;
}

.header-bar {
    height: auto;
}

.home .header-bar {		
    background: none !important;
}

.home .header-bar.scrolled {
    background: rgba(255,255,255,0.7) !important;
}

.home .header-bar-fixed {
    box-shadow: none;
}

.admin-bar .header-bar-fixed {
    top: 32px;
}

.admin-bar .header-bar-fixed ~ .top-slider-wrapper, .header-bar-fixed ~ .top-slider-wrapper {
    margin-top: 0;
}

.header-bar-inner {
    justify-content: space-between;
    align-items: start;
    padding: 10px 30px;
    transition: all 0.3s ease-in-out 0s;
}

.logo {
    max-height: none;
}

.logo img {
    height: 107px;
    transition: all 0.3s ease-in-out 0s;
}

.scrolled .logo img {
    height: 70px;
}

/* 下層ページ：スクロール有無に関わらず常に小さいサイズで表示 */
body:not(.home) .logo img {
    height: 70px;
}

.top-slider {
    height: 100vh;
}

.content-inner {
    padding: 0 90px;
}

#index-text-1 {
    padding-bottom: 130px;
}

#index-text-1 .flex {
    flex-direction: row-reverse;
    align-items: flex-end;
}

.content01-text {
    padding-right: 80px;
    text-align: left;
    width: 65%;
}

.content01-img {
    width: 35%;
    margin-top: -100px;
    position: relative;
    z-index: 9;
}

.content01-title {
    font-size: 46px;
    font-weight: 500;
    margin: 65px 0 35px;
    color: #5D625E;
    text-align: left;
}

.content01-title span {
    color: #E89D32;
}

.content01-text p {
    line-height: 2;
}

.contact-text {
    display: flex;
    align-items: center;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    gap: 10px;
    margin: 50px 0 0;
}

.contact-text .contact-tel {
    background: url(img/phone.png) no-repeat left center;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 8px;
    padding-left: 50px;
}

.contact-text .open-title {
    background: #e1cfb9;
    border-radius: 20px;
    color: #5D625E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 20px;
}
@media only screen and (max-width: 767px) {
    .contact-text .open-title {
        background: #e1cfb9;
        border-radius: 20px;
        color: #5D625E;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        padding: 0 9px;
    }
}

.contact-text .open-hour {
    font-size: 27px;
}

#index-3column {
    padding: 0 0 130px;
}

.content02-item {
    color: #000;
    display: flex;
    flex-direction: column;
    margin-left: 60px;
    padding-bottom: 0;
    width: calc((100% - 120px) / 3);
}

.content02-item img {
    aspect-ratio: 984 / 1000;
    object-fit: cover;
}

.content02-item .content02-body {
    padding: 0 30px;
    position: relative;
}

.content02-text {
    color: #5D625E;
    line-height: 2;
    margin-bottom: auto;
}

.content02-title {
    color: #5D625E;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    margin: 35px 0 25px;
    text-align: left;
}

.content02-title span {
    color: #E89D32;
}

.content02-title span.ml {
    margin-left: -20px;
}

.content02-button {
    background: #e1cfb9;
    border-radius: 20px;
    color: #5D625E;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    height: auto;
    line-height: 40px;
    margin: 40px 0 0;
    padding: 0 20px;
    text-align: left;
    width: 200px;
    position: relative;
    text-transform: uppercase;
}

.content02-button:hover {
    background: #e1cfb9 !important;
    color: #5D625E;
}

.content02-button:after {
    content: "";
    background: url(img/arrow-right.png) no-repeat;
    background-size: 10px auto;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -10px;
    height: 20px;
    width: 10px;
    transition: all 0.3s ease-in-out 0s;
}

.content02-button:hover:after {
    right: 10px;
}

#index-text-2 {
    background: url(img/concept-bg.jpg) no-repeat;
    background-size: cover;
    padding: 70px 0 230px;
    position: relative;
    z-index: 1;
}

#index-text-2 h2 {
    font-size: 57px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 50px;
}

@media only screen and (max-width: 767px) {
    #index-text-2 h2 {
        margin: 0 0 30px;
    }
}

#index-text-2 h2 span {
    color: #E89D32;
}

#index-text-2 .flex-button {
    display: flex;
    align-items: center;
}

#index-text-2 .content02-button {
    color: #5D625E;
    margin: 0;
}

#index-text-2 .line-button {
    background: url(img/line2.png) no-repeat left center / 70px auto;
    color: #06C755;
    font-size: 24px;
    font-weight: 500;
    margin-left: 65px;
    padding: 11px 0 11px 85px;
}

#index-text-2 p:not(:last-child) {
    margin: 0 0 70px;
}

#index-points {
    padding: 0 0 130px;
    margin-top: -100px;
    position: relative;
    z-index: 9;
}

#index-points .flex {
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -25px;
    row-gap: 50px;
}

.content03-item {
    padding: 0 25px;
}
@media only screen and (min-width: 768px){
    .content03-item {
        width: 50%;
    }
}
@media only screen and (min-width: 1200px){
    .content03-item {
        width: 35%;
    }
}

.content03-item:first-of-type {
    margin: 0;
}

.content03-item h2 {
    color: #E89D32;
    font-family: var(--soft-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    margin-top: -50px;
    margin-bottom: 15px;
    text-align: left;
}

.content03-item h2 strong {
    font-size: 100px;
    font-weight: 500;
    line-height: 1.1;
    text-shadow: 0 0 20px #fff;
}

.content03-item img{
    aspect-ratio: 520/320;
    object-fit: cover;
}

.content03-title {
    font-size: 34px;
    font-weight: 600;
    margin: 0 0 15px;
    text-align: left;
}

.content03-title span {
    color: #E89D32;
}

.article03 {
    background: #fff;
}

.article03-content {
    padding: 20px;
}

#topics-feed {
    background: #fff;
    padding: 100px 0;
}

#topics-feed h2 {
    color: #5D625E;
    font-size: 50px;
    padding: 0 70px 0 0;
    border-right: 1px solid #E89D32;
    width: 20%;
}
@media only screen and (max-width: 767px) {
    #topics-feed h2 {
        color: #5D625E;
        font-size: 30px;
    }
}

#topics-feed h2 span {
    display: block;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin-top: 15px;
}

#topics-feed .top-blog {
    padding: 0 30px 0 70px;
    width: 80%;
}

#index-instagram {
    padding-top: 100px;
}

.footer {
    background: #E1CFB9;
    color: #fff;
    padding: 50px 0 70px;
    position: relative;
    z-index: 1;
}

.footer:before {
    background: url(img/home-bg.png);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.home .footer {
    margin-top: 0;
}

.footer p {
    font-weight: 500;
}

.footer .inner {
    width: 84%;
}

.footer .footer-logo {
    margin: 0 0 30px;
}

.footer-logo img {
    width: 250px;
}

.footer .copyright {
    background: none;
    height: auto;
    line-height: 2;
    margin: 30px 0 0;
}

.footer-nav {
    margin: 0 0 10px;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav ul li {
    padding: 0 50px 20px;
}

.footer-nav ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-nav ul li a span {
    display: none;
}

.footer .social-nav {
    display: flex;
    justify-content: center;
    margin: 0 0 30px;
    height: auto;
    position: static;
}

.social-nav-item {
    margin: 0 10px;
}

.social-nav-item a {
    display: block;
    height: 51px;
    width: 50px;
}

.social-nav-item a::before {
    display: none;
}

.social-nav-instagram a {
    background: url(img/instagram.png) no-repeat;
}

.social-nav-line a {
    background: url(img/line.png) no-repeat;
}

.social-nav-n a {
    background: url(img/n.png) no-repeat;
}

.top-slider-wrapper {
    z-index: 1;
}

.top-slider-content {
    border-radius: 0;
    height: auto !important;
    width: auto !important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.top-slider-content-inner {
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    padding: 120px 30px 0;
    height: 100% !important;
    width: 100% !important;
    text-align: left;
}

.top-slider-content-inner::after {
    display: none;
}

.top-slider-content-inner:hover {
    background: none;
}

.top-slider-logo {
    font-family: var(--soft-font);
    font-size: 70px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 0 10px #fff;
}

.top-slider-logo span {
    color: #E89D32;
}

.top-slider-text {
    line-height: 2;
    font-size: 18px;
    color: #fff;
    text-shadow: 0 0 3px #000;
}

.global-nav-button.active + .global-nav {
    opacity: 1;
    visibility: visible;
    width: 25%;
}

.global-nav-button {
    display: none;
    box-sizing: border-box;
    color: #E89D32;
    width: 45px;
    height: 45px;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 1000;
}

.global-nav-button:after {
    content: "Menu";
    position: absolute;
    bottom: 0;
    right: 0;
    color: #E89D32;
    text-transform: uppercase;
    width: 100%;
}

.nav-toggle_line {
    display: block;
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: #E89D32;
    transform: translate(0,0);
    transition: all .22s ease 0s;
}

.nav-toggle_line._1 {
    top: 0;
    width: 100%;
}

.nav-toggle_line._2 {
    top: 10px;
    width: 66.67%;
}

.nav-toggle_line._3 {
    top: 20px;
    width: 33.33%;
}

.global-nav-button.active .nav-toggle_line:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
}

.global-nav-button.active .nav-toggle_line:nth-of-type(2) {
    opacity: 0;
}

.global-nav-button.active .nav-toggle_line:nth-of-type(3) {
    transform: translateY(-14px) rotate(45deg);
    width: 100%;
    top: 26px;
}

.global-nav > ul {
    display: flex;
}

.global-nav > ul > li > a {
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
    height: 70px;
    padding: 0 25px;
    position: relative;
    text-align: center;
    transition: all 0.8s;
    z-index: 0;
    background: transparent !important;
    color: #E89D32 !important;
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-transform: uppercase;
}
.global-nav > ul > li > a::before, .global-nav .current-menu-item > a::before {
    content: "";
    width: 0;
    height: 5px;
    background: #ec8753;
    opacity: 0.25;
    bottom: 5px;
    left: 20px;
    position: absolute;
    transition: all 0.5s;
    z-index: -1;
}
.global-nav > ul > li > a:hover::before, .global-nav .current-menu-item > a::before {
    width: calc(100% - 40px);
}
.global-nav > ul > li > a > span {
    display: block;
    font-size: smaller;
    font-weight: 700;
    line-height: 1;
}
.global-nav .sub-menu {
    top: 110%;
}
.global-nav .sub-menu li:first-child a {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.global-nav .sub-menu li:last-child a {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.global-nav .sub-menu a {
    font-size: 15px;
    font-weight: 400;
    background: #fff !important;
}
.global-nav .sub-menu a::before {
    content: none;
}
.global-nav .sub-menu a:hover {
    color: #8C7E64 !important;
    background: #fff !important;
}

.global-nav > ul > li {
    float: none;
}
@media only screen and (max-width: 1200px) {

    .global-nav a {
        background: none;
    }
    .global-nav .sub-menu li:first-child a {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .global-nav .sub-menu li:last-child a {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .global-nav .sub-menu a {
        font-size: 12px;
        line-height: 51px;
        color: #463722 !important;
        background: #fff !important;
        padding: 0 25px;
    }
    .global-nav a:hover, .global-nav .sub-menu a:hover {
        color: #8C7E64 !important;
        background: #fff !important;
    }
    .global-nav > ul > li > a:before {
        content: none !important;
    }
    .global-nav .menu-item-has-children > a span::before {
        color: #463722;
    }
}
/* ナビ END */

/* 固定ページ */
.page .post-header {
    margin: 0px;
}
.content_inner {
    width: 86%;
    max-width: 1150px;
    margin: 0px auto;
    padding: 100px 0;
    box-sizing: border-box;
    position: relative;
}
.post-content h2 {
    font-size: 1.6em;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-top: 0;
    font-weight: 700;
    text-align: center;
}
.post-content h2::after {
    content: "";
    display: block;
    background: #ff870b;
    width: 25px;
    height: 2px;
    margin: 12px auto 0;
}
.post-content h3 {
    font-size: 1.3em;
    font-weight: 600;
    padding: 0;
    padding-bottom: 5px;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #ff870b;
    border-bottom: dashed 1px #ff870b;
}
.post-content h4 {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: 700;
    padding: 0;
}
.post-content table {
    margin: 0;
}
.post-content th, .post-content td {
    font-size: 0.95em;
    font-weight: 500;
    vertical-align: middle;
    line-height: 1.8;
    padding: 22px 2px 18px;
    background: none;
    border: 0;
    border-bottom: 1px #d1d1d1 solid;
}
.post-content th {
    width: 25%;
    text-align: left;
    border-right: none;
}
.post-content td {
    border-left: none;
}
@media only screen and (max-width: 1200px) {
    .content_inner {
        padding: 80px 0;
    }
}
@media only screen and (max-width: 970px) {
    .post-content th, .post-content td {
        padding: 14px 4px 10px;
        line-height: 1.5;
        display: block;
        box-sizing: border-box;
        margin-top: -1px;
        width: 100% !important;
    }
    .post-content th {
        border-bottom: none;
        padding-bottom: 0;
    }
    .post-content td {
        border-top: none;
    }
}
@media only screen and (max-width: 768px) {
    .content_inner {
        padding: 50px 0;
    }
    .post-content h2 {
        font-size: 1.4em;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .post-content h2::after {
        width: 20px;
        margin-top: 12px;
    }
}
/* 固定ページ END */
.flex-inner {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

/* サービス案内 */
.service_sec h2 {
    text-align: left;
}
.service_sec h2::after {
    margin-left: 0;
}
.service_thought {
    padding: 30px 35px;
    margin-bottom: 80px;
    border-radius: 20px;
    background: #ffefe0;
    box-sizing: border-box;
}
.service_thought p, .service_text p {
    margin-bottom: 0;
}
.service_box {
    margin-top: 50px;
}
.service_img {
    width: 50%;
    text-align: center;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.service_text {
    width: 50%;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.service_box:nth-of-type(odd) .service_img {
    margin-left: 50%;
    padding-left: 2.5em;
}
.service_box:nth-of-type(odd) .service_text {
    margin-left: -100%;
}
.service_box:nth-of-type(even) .service_img {
    padding-right: 2.5em;
}
.service_text h3, .service_text p {
    width: 100%;
}
.service_img img {
    border-radius: 10px;
}
@media only screen and (max-width: 768px) {
    .service_thought {
        padding: 20px 25px;
        margin-bottom: 40px;
    }
    .service_box {
        margin-top: 30px;
    }
    .service_img, .service_text {
        width: 100%;
    }
    .service_img {
        margin-bottom: 1em;
    }
    .service_box:nth-of-type(odd) .service_img {
        margin-left: 0;
        padding-left: 0;
    }
    .service_box:nth-of-type(even) .service_img {
        padding-right: 0;
    }
    .service_box:nth-of-type(odd) .service_text {
        margin-left: 0;
    }
}
/* サービス案内 END */

/* 会社概要 */
.company_sec .content_inner {
    max-width: 900px;
}
span.caution.company_caution {
    font-size: 0.8em;
    display: block;
}
.map_sec {
    height: 400px;
    margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
    .map_sec {
        height: 250px;
    }
}
/* 会社概要 END */
/* ご挨拶 */
.greeting_inner {
    margin-bottom: 50px;
}
.greeting_inner:last-of-type {
    margin-bottom: 0;
}
.greeting_inner h2 {
    text-align: left;
}
.greeting_inner h2::after {
    width: 40px;
    margin-left: 0;
}
.greeting_inner p {
    line-height: 2;
}
.greeting_inner p:last-of-type {
    margin-bottom: 0;
}
.greeting__img {
    width: 35%;
    padding-right: 2em;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    z-index: -1;
}
.greeting__img img {
    border-radius: 10px;
}
.greeting__text {
    width: 65%;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.greeting__text h2, .greeting__text p {
    width: 100%;
}
.greeting__text h2 {
    font-size: 1.5em;
    line-height: 1.5;
}
.greeting__text p {
    margin-bottom: 25px;
}
p.name {
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .06em;
    text-align: end;
}
p.name span {
    font-size: 0.7em;
    margin-right: 15px;
    display: inline-block;
    color: #e3a12e;
}
@media only screen and (max-width: 768px) {
    .greeting_inner {
        margin-bottom: 20px;
    }
    .greeting__img {
        width: 100%;
        max-width: 330px;
        margin: auto;
        padding-right: 0;
    }
    .greeting__text {
        width: 100%;
        margin-top: 1.5em;
    }
    .greeting__text h2 {
        font-size: 1.3em;
    }
    .greeting__text p {
        margin-bottom: 15px;
    }
    p.name {
        font-size: 1.2em;
    }
}
/* ご挨拶 END */

/* お問い合わせ */
.contact_sec .content_inner, .mail_sec .content_inner {
    max-width: 1000px;
}
.contact_sec .content_inner {
    padding-bottom: 0;
}
.con__inner {
    margin-bottom: 40px;
}
.con__inner:last-of-type {
    margin-bottom: 0;
}
.con__inner p {
    margin-bottom: 0;
}
address.con_tel {
    font-size: 2.5em;
    font-style: normal;
    letter-spacing: .05em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
    color: #e3a12e;
    text-align: center;
}
address.con_tel a {
    color: #e3a12e;
}
span.con_tel_sub {
    font-size: 0.5em;
    letter-spacing: 1px;
    margin-right: 5px;
    color: #151515;
}
p.con-time {
    width: fit-content;
    margin: auto;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: 600;
}
p.con_time:last-of-type {
    margin-bottom: 0;
}
p.con-time span {
    display: inline-block;
    margin-right: 10px;
    color: #ff870b;
}
p.con_caution {
    font-size: 0.85em;
    width: fit-content;
    margin: 0 auto 10px;
}
.mail_info_box {
    margin-bottom: 30px;
}
.mail_info_box p {
    font-size: 0.9em;
    line-height: 2;
    margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
    address.con_tel {
        font-size: 1.8em;
    }
}
/* お問い合わせ END */
/* お問い合わせフォーム */
span.required {
    font-size: 0.7em;
    line-height: 1.5;
    letter-spacing: 0;
    display: inline-block;
    margin-left: 8px;
    margin-bottom: 8px;
    padding: 3px 5px;
    border-radius: 2px;
    color: #fff;
    background: #ff5353;
}
.wpcf7 {
    border: none;
    background: none;
    margin-bottom: 0 !important;
}
.wpcf7 input, .wpcf7 textarea {
    background: #efefef;
    border: 0;
    padding: 18px;
    box-sizing: border-box;
}
.wpcf7 form {
    margin: 0;
}
.wpcf7 form p {
    font-size: 15px;
    font-weight: 700;
    line-height: 2.5;
    margin-bottom: 22px;
}
.wpcf7 form p:last-of-type {
    margin-bottom: 0;
}
.wpcf7-list-item {
    margin-left: 0;
    margin-top: 8px;
    line-height: 1.5;
    font-weight: 500;
}
.wpcf7 select {
    background: #fff;
}
.wpcf7 input.wpcf7-submit {
    margin-top: 30px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    font-size: 1.2em;
    font-weight: 700;
    height: 75px;
    color: #fff;
    background: #e3a12e;
    border-radius: 100px;
    transition: all .5s;
    font-family: 'Quicksand', 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.wpcf7 input.wpcf7-submit:hover {
    color: #e3a12e;
    background: #e0f6dd;
    transform: translateY(8px);
}
.wpcf7 input:focus, .wpcf7 textarea:focus {
    box-shadow: none !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border: none;
    background: #ffd8df;
    line-height: 1.8;
    padding: 15px 20px;
}
@media only screen and (max-width: 767px) {
    .wpcf7 input.wpcf7-submit {
        margin-top: 20px;
    }
    .contact-text .open-hour{
        line-height: 1;
        margin-bottom: -13px;
        text-align: center;
    }
    .content02-text{
        margin-bottom: 20px;
    }
    .content02-button{
        display: block;
    }
    #index-text-2 p:not(:last-child){
        margin-bottom: 20px;
    }
}
/* お問い合わせフォーム END */
.left_inner {
    width: 50%;
    box-sizing: border-box;
    position: relative;
}
.right_inner {
    width: calc(50% - 50px);
    margin-left: 50px;
    box-sizing: border-box;
    position: relative;
}
.three_line_up-box {
    width: calc(33.333333% - 30px);
    margin-right: 45px;
    box-sizing: border-box;
}
.three_line_up-box:nth-of-type(3n) {
    margin-right: 0;
}
@media only screen and (max-width: 970px) {
    .left_inner {
        width: 100%;
        margin: 0 !important;
    }
    .right_inner {
        width: 100%;
        margin: 30px 0 0 !important;
    }
    .three_line_up-box {
        width: 100%;
        margin: 0 auto 40px;
    }
    .three_line_up-box:last-of-type {
        margin-bottom: 0;
    }
}
/* greeting */
.greeting-box.left_inner p, .greeting-text p {
    margin-bottom: 1.25em;
}
.greeting-box.left_inner p:last-of-type, .greeting-text p:last-of-type {
    margin-bottom: 0;
}
.greeting-text {
    margin: 40px auto 0;
}
/* greeting END */
/* ayurveda */
.menu_intro {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 50px;
}
section.content_full.menu-sec:nth-of-type(even) {
    background: #fdfbf6;
}
.content_inner.menu-container {
    padding: 8vw 0;
}
section.content_full.menu-sec:first-of-type .content_inner.menu-container {
    padding-top: 6vw;
}
body .post-content h3 {
    margin: 0 auto 25px;
    font-size: 1.2em;
    line-height: 1.6;
    position: relative;
    text-align: left;
    border-top: 1px solid #dbd8cc;
    border-bottom: 1px solid #dbd8cc;
    padding: 15px 0;
    width: 100%;
}
.post-content .menu_intro h2 {
    text-align: center;
    font-size: 1.8em;
    width: 100%;
}
.post-content .menu_intro h2::after {
    display: none;
}
.post-content .menu_intro h3 {
    text-align: center;
    padding: 0;
    border: none;
    font-family: 'IM Fell Double Pica', serif;
    font-weight: 500;
    font-size: 1em;
    letter-spacing: 0.2em;
    margin: 10px auto 50px;
    color: #E0CF9F;
    width: 100%;
}
.menu_intro-box.right_inner p {
    margin-bottom: 1.25em;
}
.menu_intro-box.right_inner p:last-of-type {
    margin-bottom: 0;
}
table.menu-table {
    box-sizing: border-box;
    border: 1px solid #f0ecdf;
    margin-bottom: 20px;
}
table.menu-table tr {
    border: none;
}
table.menu-table th, table.menu-table td {
    padding: 1em 1.25em;
    border: 1px dotted #f0ecdf;
    text-align: center;
}
table.menu-table th {
    background: #fdfbf5;
}
table.menu-table thead th {
    background: #fdf6e0;
}
.post-content p.tax-text {
    padding-left: 1.25em;
    font-size: 0.9em;
    line-height: 1.8;
    margin-bottom: 5px;
    position:relative;
}
p.tax-text:last-of-type {
    margin-bottom: 0;
}
p.tax-text::before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
    color: #ed6c6c;
}
.flow-container {
    margin: 50px auto 0;
}
.flow-box {
    box-sizing: border-box;
    position: relative;
    padding-left: 110px;
    padding-bottom: 60px;
    min-height: 80px;
}
.flow-box:last-of-type {
    padding-bottom: 0;
}
.flow-box::before {
    width: 1px;
    left: 40px;
    height: 100%;
    position: absolute;
    content: '';
    background: #dbd8cc;
}
body {
    counter-reset: number 0;overflow-x: hidden;
}
.flow-box::after {
    counter-increment: number 1;
    content: counter(number) " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    line-height: 78px;
    text-align: center;
    font-size: 2em;
    background: #ffffff;
    color: #b3af9f;
    border: 1px solid #dbd8cc;
    box-sizing: border-box;
}
.flow-box:last-of-type::before {
    display: none;
}
.menu-info-box {
    background: #fbf9f4;
    box-sizing: border-box;
    padding: 50px;
    margin: 30px auto 0;
}
.menu-info-box h4 {
    margin-top: 20px;
    color: #847d5f;
}
.post-content ul.menu-caution-list{padding:0;margin:0;list-style:none;}
ul.menu-caution-list li {
    padding-left: 1.5em;position: relative;
}
ul.menu-caution-list li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    color: #E0CF9F;
}
span.menu-hosoku {
    display: block;
    font-size: 0.9em;
    color: #897c49;
}
@media only screen and (max-width: 970px) {
    section.content_full.menu-sec:last-of-type .content_inner.menu-container {
        padding-bottom: 10vw;
    }
    section.content_full.menu-sec:first-of-type .content_inner.menu-container {
        padding-top: 8vw;
    }
    table.menu-table tbody th {
        text-align: left;
    }
}
@media only screen and (max-width: 485px) {
    .content_inner.menu-container {
        padding: 80px 0;
    }
    section.content_full.menu-sec:first-of-type .content_inner.menu-container {
        padding-top: 60px;
    }
    section.content_full.menu-sec:last-of-type .content_inner.menu-container {
        padding-bottom: 80px;
    }
    .menu_intro h2 {
        font-size: 1.4em;
    }
    .menu_intro h3 {
        margin-bottom: 25px;
    }
    table.menu-table thead {
        display: none;
    }
    table.menu-table tbody th {
        text-align: center;
        background: #f0ecdf;
    }
    .menu-info-box {
        padding: 30px;
    }
    .menu_intro {
        margin-bottom: 30px;
    }
    .flow-box::after {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    .flow-box::before {
        left: 29px;
    }
    .flow-box {
        padding-left: 90px;
        padding-bottom: 30px;
    }
}
/* herb-sauna */
.blend-herb {
    box-sizing: border-box;
    padding: 50px;
    margin: 40px auto 0;
    position: relative;
}
.blend-herb::before {
    width: 100%;
    position: absolute;
    content: '';
    background: #faf9f5;
    height: 190px;
    top: 0;
    left: 0;
    z-index: 0;
}
.blend-herb h3 {
    text-align: center;
    border-top: none;
    padding-top: 0;
}
.blend-herb-box {
    width: calc(25% - 30px);
    margin-right: 40px;
    margin-bottom: 40px;
}
.blend-herb-box:nth-of-type(4n), .blend-herb-box:last-of-type {
    margin-right: 0;
}
.blend-herb-inner.flex-inner {
    justify-content: center;
    margin-bottom: -40px;
    width: 100%;
    position: relative;
}
.post-content .blend-herb-box h4 {
    text-align: center;
    color: #5D625E;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1em;
}
.post-content .blend-herb-box img {
    margin-bottom: 10px;
}
.post-content .blend-herb-box p {
    font-size: 0.9em;
    line-height: 1.8;
}
.herb-itme {
    margin: 40px auto 0;
}
@media only screen and (max-width: 1200px) {
    .blend-herb-box, .blend-herb-box:nth-of-type(4n) {
        width: calc(50% - 25px);
        margin-right: 50px;
    }
    .blend-herb-box:nth-of-type(2n) {
        margin-right: 0 !important;
    }
}
@media only screen and (max-width: 767px) {
    .blend-herb {
        padding: 35px;
    }
    .blend-herb-box, .blend-herb-box:nth-of-type(4n) {
        width: calc(50% - 15px);
        margin-right: 30px;
        margin-bottom: 30px;
    }
    .blend-herb-inner.flex-inner {
        margin-bottom: -30px;
    }
}
@media only screen and (max-width: 485px) {
    .blend-herb-box {
        width: 100% !important;
        margin: 0 auto 30px !important;
    }
}
/* herbal-sauna END */
/* aerial-yoga */
.yoga-container.flex-inner {
    margin: 0 auto 50px;
}
.yoga-container.flex-inner:nth-of-type(even) .yoga-box.left_inner {
    margin-left: 50%;
}
.yoga-container.flex-inner:nth-of-type(even) .yoga-box.right_inner {
    margin-left: -100%;
}
.yoga-info.flex-inner {
    background: #f0ecdf;
    margin: 50px auto 0;
    box-sizing: border-box;
    padding: 40px;
}
.yoga-info-box {
    width: 50%;
    box-sizing: border-box;
    line-height: 1.8;
}
.yoga-info-box:nth-of-type(even) {
    padding-left: 40px;
    border-left: 1px solid #dbd8cc;
}
.yoga-info-box:nth-of-type(odd) {
    padding-right: 40px;
}
.yoga-info-box h3 {
    padding-top: 0;
    border-top: none;
    margin-bottom: 15px;
}
@media only screen and (max-width: 485px) {
    .yoga-info-box {
        width: 100%;
    }
    .yoga-info-box:nth-of-type(odd) {
        padding: 0 0 30px;
    }
    .yoga-info-box:nth-of-type(even) {
        padding: 30px 0 0;
        border-left: none;
        border-top: 1px solid #dbd8cc;
    }
    .yoga-info-box h3 {
        text-align: center;
        border-bottom: 1px dotted #dbd8cc;
    }
    .yoga-info.flex-inner {
        padding: 30px;
    }
}
/* aerial-yoga END */
/* faq */
section.content_full.faq-sec:nth-of-type(odd) {
    background: #fcfaf4;
}
.faq-sec h3, .faq-sec p {
    padding-left: 45px;
}
.faq-sec h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
}
.faq-sec h3::after {
    display: none;
}
.faq-sec p {
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid #dbd8cc;
}
.faq-sec p:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.faq-sec h3::before {
    width: 30px;
    height: 30px;
    line-height: 28px;
    background: #dbd8cc;
    position: absolute;
    left: 0;
    top: 0;
    content: 'Q';
    text-align: center;
    font-size: 16px;
}
.faq-sec p::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #E0CF9F;
    position: absolute;
    left: 0;
    top: 0;
    content: 'A';
    text-align: center;
    font-size: 16px;
    color: #fff;
}
/* faq END */
/* salon */
.map-sec {
    height: 450px;
    width: 100%;
}
/* salon END */
/* contact */
.content_inner.contact-sec {
    max-width: 800px;
}
a.yoyakuru {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}
a.yoyakuru img {
    display: block;
    width: 100%;
    transition: 0.5s;
    opacity: 1;
}
a:hover.yoyakuru img {
    opacity: 0.6;
}
.tel-box {
    max-width: 800px;
    margin: 0 auto 3em;
}
.toi-box {
    max-width: 800px;
    margin: 0 auto 100px;
}
.toi-box a {
    display: block;
    max-width: 232px;
    margin: 0 auto;
}
.toi-box img {
    width: auto;
}
a:hover.toi-bnr img {
    opacity: 0.6;
    transition: 0.5s;
}
.tel-box h2::after, .toi-box h2::after, .line-box h2::after, .mail-box h2::after {
    margin-left: auto;
}
address.contact-tel a {
    font-weight: 700 !important;
}
p.contact-tel-info span {
    margin-right: 10px;
    color: #888269;
}
.tel-box h2, .toi-box h2 {
    text-align: center;
}
p.contact-tel-info {
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .toi-box {
        margin: 0 auto 5em;
    }
}
/* contact END */
body.page-template-default .flex_layout {
    display: flex;
    gap: 0;
}
.margin-40 {
    margin-bottom: 40px;
}
.margin-60 {
    margin-bottom: 60px;
}
.leftcontBox1 {
    width: 15%;
    display: inline-block;
    vertical-align: top;
    margin-right: 4.4%;
}
.leftcontBox2 {
    width: 25%;
    display: inline-block;
    vertical-align: top;
    margin-right: 4.4%;
}
.leftcontBox4 {
    width: 38%;
    display: inline-block;
    vertical-align: top;
    margin-right: 4.4%;
}
.leftcontBox5 {
    width: 47%;
    display: inline-block;
    vertical-align: top;
    margin-right: 4.4%;
}
.leftcontBox6 {
    width: 57%;
    display: inline-block;
    vertical-align: top;
    margin-right: 4.4%;
}
.rightcontBox4 {
    width: 38%;
    display: inline-block;
    vertical-align: top;
}
.rightcontBox5 {
    width: 47%;
    display: inline-block;
    vertical-align: top;
}
.rightcontBox6 {
    width: 56%;
    display: inline-block;
    vertical-align: top;
}
.rightcontBox8 {
    width: 69%;
    display: inline-block;
    vertical-align: top;
}
.rightcontBox9 {
    width: 80%;
    display: inline-block;
    vertical-align: top;
}
.box {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px 25px;
    margin-bottom: 10px;
    line-height: 2;
}
.box2 {
    background: #f7f7f7;
    padding: 25px 25px;
    margin-bottom: 10px;
    line-height: 2;
}
.post-content .box h4 {
    border-bottom: 1px dashed;
    padding: 10px 0;
    color: #5D625E;
    margin-bottom: 30px;
}
.post-content .faq {
    margin-bottom: 55px;
    padding-bottom: 42px;
    border-bottom: 1px dashed #cbc4ba;
}
.post-content .faq h3 {
    font-size: 1.25em;
    line-height: 1.5;
    padding: 5px 0 0 45px;
    margin-bottom: 10px;
    text-align: left;
    position: relative;
    z-index: 10;
    color: #ff870b;
    background: none;
    font-weight: 500;
    border: none;
}
.post-content .faq h3::after {
    content: none;
}
.faq h3::before {
    content: 'Q.';
    font-size: 35px;
    line-height: 30px;
    color: #ff870b;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    margin: 0;
    font-weight: 400;
    font-family: var(--soft-font);
}
p.answer::before {
    content: 'A.';
    font-size: 35px;
    color: #E89D32;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 23px;
    padding: 20px 0 0 4px;
    font-weight: 400;
    font-family: var(--soft-font);
}

p.answer {
    padding: 19px 0px 0px 47px;
    margin-bottom: 0;
    position: relative;
    font-size: 16px;
    border-radius: 10px;
}

.signage {
    background-position: center top;
}
.instagram_content {
    padding: 0 30px 0 70px;
}
@media only screen and (max-width: 767px) {
    .box, .box2 {
        padding: 30px 15px;
    }
    .instagram_content {
        padding: 0;
    }
}
@media only screen and (max-width: 991px) {
    .leftcontBox4, .leftcontBox6, .leftcontBox5, .rightcontBox5 {
        width: 100%;
        margin: 0 0 15px;
    }
    .rightcontBox4, .rightcontBox6 {
        width: 100%;
    }
}

p.con_caution{
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}
p.caution::before {
    content: '※';
    position: absolute;
    left: 0;
    color: #ff5353;
}

p.con_line_text {
    width: fit-content;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.con_box{
    padding-top: 100px;
}
.post-content a.con_line_but {
    width: 100%;
    max-width: 450px;
    padding: 20px 30px;
    font-size: 1.1em;
    letter-spacing: 1px;
    margin: 0 auto;
    border-radius: 100px;
    font-weight: 500;
    box-sizing: border-box;
    position: relative;
    display: inline-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    background: #18c507;
    color: #fff;
    padding: 15px 30px;
}
.post-content a.con_line_but::after {
    font-family: 'design_plus';
    position: absolute;
    font-size: 30px;
    font-weight: 400;
    right: 25px;
    content: "\e909";
}
@media only screen and (max-width: 768px) {
    .con_box {
        width: 86%;
        margin: 0px auto;
        padding-top: 50px;
    }	
    .post-content .menu-price .s_table {white-space: collapse;}
    .post-content .menu-price .menu-table{border:0;}
    .post-content .menu-price .menu-table tr{display: flex;flex-wrap: wrap;margin-bottom:15px;border: 1px solid #f0ecdf;}
    .post-content .menu-price .menu-table tr td{width:50% !important;position:relative;padding:30px 10px 10px;}
    .menu-price table.menu-table th{padding: 10px;}
    .menu-price table.menu-table tr td:nth-child(2):before{
        content:'【新規価格】';
        position: absolute;
        top: 5px;
        left: 0;
        width: 100%;
        text-align: center;
    }
    .menu-price table.menu-table tr td:last-child:before{
        content:'【通常価格】';
        position: absolute;
        top: 5px;
        left: 0;
        width: 100%;
        text-align: center;
    }
}

.signage:not(:has(.signage-content)){
    height: 260px;
}
@media only screen and (min-width: 768px){
    .signage:not(:has(.signage-content)){
        height: 360px;
    }
}

.post-title {
    font-size: 30px;
}

.post-title small{
    font-size: 70%;
}

.header-youtube-overlay {

    background: rgba(0,0,0,0.1);
}

/* =========================================================
   柔らかいデザイン調整（丸字体 ＆ 写真の角丸）
   ========================================================= */

/* 見出し系を丸ゴシックに統一（TCD設定のフォント指定より優先） */
.headline-font-type,
.headline-primary,
.blog-title,
.signage-title,
.post-title,
.archive-title {
    font-family: var(--soft-font) !important;
}

/* ロゴ（テキスト表示時）も柔らかく */
.rich_font_logo {
    font-family: var(--soft-font) !important;
}

/* --- トップページの写真を角丸に --- */
.content01-img img {
    border-radius: 24px;
}

/* 3カラムの写真は正円に */
.content02-item img {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

/* 左（LULUONN）は縦長で下が切れるため、下基準で表示して下部を残す */
.content02-item:nth-child(1) img {
    object-position: center bottom;
}

.content03-item img {
    border-radius: 20px;
}

/* --- ニュース・ブログのサムネイル＆カードを角丸に --- */
.article02-thumbnail img,
.article03-thumbnail img {
    border-radius: 16px;
}

.article03 {
    border-radius: 16px;
    overflow: hidden;
}

/* --- ボタン類を丸みのあるピル形に --- */
.content02-button,
.contact-text .open-title {
    border-radius: 999px;
}

@media only screen and (max-width: 767px) {
    .content01-img img {
        border-radius: 18px;
    }
    .content02-item img {
        border-radius: 50%;
    }
    .content03-item img {
        border-radius: 16px;
    }
}

.menu-table .option-fee {
  display: block;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed #ccc;
  font-size: 0.8em;
  font-weight: normal;
  line-height: 1.4;
  color: #c47b7b;
}