/*
Template:lightning
Theme Name:lightning_child
*/

:root {
--main-color: #573001;     /* 濃いブラウン、軸になる暖色 */
--sub-color: #f7f3e9;     /* アイボリーで全体を明るく */
--text-color: #2b1e13;    /* 引き締まる焦げ茶 */
--link-hover-color: #d5a15e; /* 少し黄味のあるキャメルブラウン */
--btn-color: #573001;     /* 主張のあるオレンジブラウン */
	--fnt-ttl:  min(max(16px, calc(18px + 2vw)), 42px);
}
ul,li  {
  list-style: none;
}

.big{
	font-size:1.5em;
}

.red{
	color:red;
}

.copySection p:last-child,.footwidgets{
	display:none;
}

a[href="###"] {
    pointer-events: none;
    cursor: default;
}


.pc-dsp { display:block !important; }
.sp-dsp { display:none !important; }
.center{text-align:center;}

.flex{
	display: flex;
}

.comments-area,.siteContent_after,.home .subSection,.entry-meta_items{
	display:none;
}

html body{
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

.home a:hover{
　text-decoration: none;
}
a:hover {
text-decoration: none;
}

/* デフォルトでモバイル画像を非表示にする FV */
.mobile-img {
    display: none;
}

/* 画面幅が768px以下の場合にモバイル画像を表示し、デスクトップ画像を非表示にする FV */
@media screen and (max-width: 480px) {
    .desktop-img {
        display: none;
    }
    .mobile-img {
        display: block;
    }
}



/* ヘッダー部 */
.siteHeadContainer {
	max-width:100%;
}

.container.siteHeadContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-header {
    flex: 1;
}

.gMenu li {
    margin: 0;
    list-style: none;
    line-height: 1.4;
    font-size: 15px;
    position: relative;
    font-weight: bold;
}

.gMenu > li:before {
    border-bottom:none;
}

.gMenu_outer {
    min-height: 0;
}

.gMenu_outer {
    flex: 2;
    display: flex;
    justify-content: center;
}

.siteHeader_logo {
    display: flex;
    align-items: center;
}

.siteHeader_logo img {
    max-height: 100px;
}


.gMenu>li .gMenu_name {
    font-size: 16px;
}

.siteHeader .container {
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
}

.siteHeader_logo {
    float: left;
    width: 200px;
}

.siteHeader .buttons {
    display: flex;
    gap: 10px;
}

.siteHeader .button {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ff7f50;
    border-radius: 5px;
    text-decoration: none;
    color: #ff7f50;
    font-size: 15px;
    font-weight: bold;
}

.siteHeader .button:hover {
    background-color: #ff7f50;
    color: #fff;
}
.device-pc .gMenu>li>a {
    padding: 1.8em 1em;
}




/* メインカラム */

.home .siteContent {
    padding: 0;
}
.key {
    overflow: hidden;
	width:100%;
    position: relative;
}
.key .main_bg img{
	width:100%;
}

.key .inbox,.relative{
	position:relative;
}

.key .main_bg {
    aspect-ratio: 1400 / 500;
}


.key .inbox h2 {
    position: absolute;
    bottom: 0;
    width: 40vw;
    margin: 0;
    right: 50%;
    transform: translate(50%, 0%);
}


.swiper-container {
    width: 100vw; /* ビューポートの横幅を100%に設定 */
    height: 100vh; /* ビューポートの高さを100%に設定 */
    max-height: 500px; /* 最大高さを500pxに設定 */
	position: relative;
    z-index: 1; /* スライダーのスタッキングコンテキストを明確にする */
}

.overlay-content {
    position: relative; /* スタッキングコンテキストを確保 */
    z-index: 49; /* 必要に応じて調整 */
    margin-top: -5em; /* 必要に応じて調整 */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.key .swiper-slide-active img,
.key .swiper-slide-duplicate-active img,
.key .swiper-slide-prev img {
  animation: zoomUp 7s linear 0s normal both;
}

.key .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 500px; /* 最大高さを500pxに設定 */
}



.single .entry-header {
    border-bottom: none;
}
.single .entry-header h1 {
    text-align: center;
    color: #859d13;
    font-weight: bold;
}

.page-header_pageTitle, h1.page-header_pageTitle:first-child {
    margin: 4em 0;
}

.mainSection-col-two {
    width: 69%;
}

.entry-body h2 {
    background-color: var(--sub-color);
    padding: .6em;
    border-top: none;
    border-left: 5px solid var(--main-color);
}

 .mainSection p {
    font-size: 18px;
    padding-left: 1em;
}

.single .mainSection p {
    padding-bottom:2em;
}

.page-header {
    position: relative;
    color: #fff;
    text-align: center;
    background: url(https://seitai-yurari.com/wp-content/themes/lightning_child/img/common/back-img.jpg) no-repeat 50% center;
    background-size: cover;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.3;
    width: 100%;
    height: 100%;
}

.page-header_pageTitle, h1.page-header_pageTitle:first-child {
    margin: 2em 0;
	font-size:42px;
}

article h3 {
    padding-bottom: 8px;
    position: relative;
    border-bottom: 3px solid #eee;
    font-size: 24px;
    font-weight: 550;
}




article h3:before, .mainSection h3:before {
    font-family: 'Material Icons';
    content: "\e5cc";
    color:  var(--main-color);
    vertical-align: top;
}

   
article h3::after {
    content: ".";
    line-height: 0;
    display: block;
    overflow: hidden;
    position: absolute;
    bottom: -3px;
    width: 30%;
     border-bottom: 3px solid  var(--main-color);
}



.job-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
}

.job-table th, .job-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.job-table th {
    background-color: #8da242;
    color: white;
}

.job-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.job-table tr:hover {
    background-color: #f1f1f1;
}

.job-table td:first-child {
    background-color: var(--sub-color);
    font-weight: bold;
}

.job-table td {
    vertical-align: top;
    font-size: 16px;
    line-height: 1.8;
}

.home section.tabbox {
    width: min(1000px,90vw);
    margin: -3em auto 4em;
	position:relative;
}

.home section.tabbox .background {
    content: "";
    background: #edeed3;
    height: min(580px, 50vh);
    display: block;
    width: 100%;
    position: absolute;
    top: 3em;
    left: 0;
    z-index: -1;
    transform: translateX(-50vw);
    width: 200vw;
}

section.tabbox {
    width: 1000px;
    margin: 2em auto 4em;
}

section.tabbox .tabs {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto 20px;
    border: 4px solid var(--btn-color);
    border-radius: 5em;
}

section.tabbox .tab-button {
    flex: 1;
    padding: .7em;
    border: none;
    font-weight: bold;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    text-align: center;
    font-size: 30px;
    margin: 0;
    width: 50%;
}

section.tabbox .tab-button.active {
    background-color: var(--btn-color);
    color: white;
	position:relative;
}

.tab-button.active::after {
    content: '▼';
    position: absolute;
    bottom: -1em; /* ボタンの下に配置 */
    left: 50%;
    transform: translateX(-50%);
    font-size: 1em; /* 必要に応じて調整 */
    color: var(--btn-color); /* 矢印の色を設定 */
}

section.tabbox .tab-button:first-child{
	border-radius:5em 0 0 5em;
}

section.tabbox .tab-button:last-child{
	border-radius:0 5em 5em 0;
}



section.tabbox .tab-content {
    display: none;
}

section.tabbox .tab-content.active {
    display: block;
    padding: 1em 3em;
    background-color: white;
    border-radius: 10px;
    border: 2px #eee solid;
}

section.only-one .shop-info {
    display: block;
    padding: 1em 3em;
    background-color: white;
    border-radius: 10px;
    border: 2px solid var(--btn-color);
}



section.tabbox .ttlbox {
    display: flex;
    justify-content: space-between;
    align-items: self-end;
    border-bottom: 1px #eee solid;
    padding-bottom: 15px;
}

section.tabbox h2 {
    font-size: min(max(16px, calc(14px + 2vw)), 36px);
    font-weight: bold;
    margin-bottom: 5px;
    border: none;
    flex: 1;
    padding: 0;
    line-height: 1.2;
}

section.tabbox h2 span {
    color: var(--main-color);
    font-size: 18px;
    font-weight: normal;
}

section.tabbox p {
	flex:2;
}

section.tabbox .shop-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

section.tabbox .contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-left: auto;
    line-height: 1;
}

section.tabbox .phone-icon {
    font-size: min(max(16px, calc(14px + 2vw)), 36px);
    margin-right: 10px;
}


section.tabbox .phone-number a {
    font-size: min(max(16px, calc(18px + 2vw)), 36px);
    color: var(--btn-color);
}

section.tabbox .details {
    margin-top: 20px;
}

section.tabbox .detail-item {
    display: flex;
    margin-bottom: 20px;
}

section.tabbox .detail-label{
	margin-right: 1em;
	width: 12%;
}
section.tabbox .detail-label div{
	    background: var(--sub-color);
    font-size: 13px;
    padding: .3em 0;
    border-radius: 2em;
	text-align: center;
}


section.tabbox .detail-content {
    flex: 1;
    line-height: 1.8;
}

section.tabbox .detail-content  .news {
    border-bottom: 3px dotted #eee;
    padding-bottom: 5px;
	margin-bottom:.5em;
}

section.tabbox .discount-banner {
    background-color: #c4e17f;
    text-align: center;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-weight: bold;
}

section.tabbox .more-info-button,.more-info-button {
    display: block;
    padding: 15px;
    background-color: #ff7043;
    color: white;
    border: none;
    border-radius: 2em;
    cursor: pointer;
    font-size: 20px;
    text-align: center;
    margin: 0 auto 1em;
    width: min(50%, 260px);
    font-weight: bold;
}

/* トップページ */
.home .mainSection-marginBottom-on {
    margin-bottom: 0rem;
}

.home .concerns-section {
    width: min(1000px, 100%);
    background-color: #fff;
    border-radius: 10px;
    padding: 2em 2.5em;
    margin: 0 auto 20px;
}

.home .concerns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home .concerns .text-content {
    width: 60%;
}

.home .concerns .text-content h2 {
    color: var(--btn-color);
    font-size: 38px;
    padding: 0;
        margin-top: .5em;
	font-weight:bold;
}

.home .concerns .text-content ul {
    list-style-type: none;
    padding: 0;
}

.home .concerns .text-content ul li {
    margin: 5px 0;
    font-size: 20px;
	font-weight:bold;
}
span.green{
	color: #77a742;
}


.home .concerns .image-content {
    width: 38%;
    text-align: center;
}



.home .solution {
    text-align: center;
    padding: 40px 20px;
}

.home .solution h2 {
    color: var(--btn-color);
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.home .solution p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    padding: 0;
    margin: 0;
}


.home .entry-body h2 {
    background-color: unset;
    border-top: none;
    border-left: none;
    border-bottom: none;
}



.features-section {
    padding: 40px 20px 100px;
}

.features-section h3 {
    color: #77a742;
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: none;
}

.home h2,.foot_common h2 {
    font-size: var(--fnt-ttl);
    font-weight: bold;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
    line-height: 1.3;
	border-top:none;
}
.home h2 span,.foot_common h2 span {
    color: var(--btn-color);
    font-size: 18px;
	font-weight:normal;
}

.features-section .image-content {
    margin-bottom: 20px;
}

.features-section .image-content img {
    width: 100%;
    border-radius: 10px;
}

.features-section .feature-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
	flex-wrap: wrap;
}

.features-section .feature-item {
    width: 48%;
    text-align: left;
}

.features-section .feature-item h4 {
    color: var(--btn-color);
    font-size: 24px;
    margin: 1em 0 1.5em;
    font-weight: bold;
}

.features-section .feature-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    padding: 0;
}

.features-section .more-info-button, .reviews .more-info-button {
    display: flex;
    padding: 15px 30px;
    background-color: #ff7043;
    color: white;
    border: none;
    border-radius: 3em;
    cursor: pointer;
    font-size: 20px;
    justify-content: center;
    text-decoration: none;
    width: min(50%,260px);
    margin: 0 auto;
    font-weight: bold;
}

.symptoms-section {
    position: relative;
    padding: 2em;
    margin-bottom: 2em;
}

.symptoms-section p{
	color:#fff;
}

.symptoms-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: -5%;
    width: 100vw;
    height: 100%;
    background-color: var(--main-color);
    z-index: -1;
	border-radius: 20px;
}

.symptoms-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
}
       .symptoms-section .inbox.inbox h2 {
            color: white;
        }

.home  .symptoms-section h2 span {
    color: #e1e1ad;
    font-size: min(18px, 4vw);
    font-weight: normal;
}

.symptoms-section  .images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3em;
}
        .symptoms-section .images img {
            border-radius: 10px;
            width: calc(50% - 10px);
        }
        .symptoms-section .symptoms-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
       .symptoms-section a {
            background-color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 1.2rem;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
.symptoms-section .symptom-category {
    font-weight: bold;
    margin-top: 20px;
    color: white;
    font-size: 26px;
    padding-bottom: 20px;
}
       .symptoms-section .arrow {
            color:  var(--btn-color);
        }



.director-message-section {
    text-align: center;
    padding: 40px 20px;
}


.director-message-section .message-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.director-message-section .image-content  {
    width: 40%;
    height: auto;
}

.director-message-section .text-content {
    width: 55%;
    text-align: left;
}
.director-message-section .text-content h4,.reviews .inbox .cmnt .player {
    color: var(--btn-color);
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: bold;
}

.reviews .inbox h2 .sub{
	color:#fff;
}

.director-message-section .text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    padding: 0;
}

.reviews .small{
	font-size:.7em;
}
.reviews strong {
    font-size: 1.1em;
    line-height: 1.8;
}


.director-message-section a .more-info-button {
    display: flex;
    padding: 15px 30px;
    background-color: #ff7043;
    color: white;
    border: none;
    border-radius: 3em;
    cursor: pointer;
    font-size: 20px;
    justify-content: center;
    text-decoration: none;
	    width: min(50%, 260px);
	font-weight:bold;
}


.reviews {
    background: var(--main-color);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 3em 0 6em;
}

.reviews .inbox {
	width:1040px;
	margin:0 auto;
}

.reviews h2{
	color:#fff;
}


.reviews .inbox .cmnt {
    background: #fff;
    width: 55%;
    border-radius: 10px;
    padding: min(40px,8vw) min(calc(60px + 20px),calc(5vw + 20px)) min(40px,15vw) min(40px,5vw);
}

.reviews .inbox .athlete_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 30px;
}

.reviews .athlete_box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.reviews .athlete_box p,.reviews .inbox .athlete_box .btn{
	padding:0;
	font-size:16px;
}

.reviews .inbox .athlete_box .thum {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

.reviews .inbox .athlete_box:nth-of-type(even) {
	justify-content: flex-end;
}

.reviews .inbox .athlete_box:nth-of-type(even) .cmnt {
	padding: min(40px,8vw) min(40px,5vw) min(40px,15vw) min(calc(60px + 20px),calc(5vw + 20px));
}


.reviews .inbox .athlete_box:nth-of-type(even) .thum {
    justify-content: flex-start;
}

.reviews .inbox .athlete_box .inner {
    width: min(1040px,100%);
    padding-left: 0px;
    padding-right: 0px;
    margin-left: auto;
    margin-right: auto;
}

.reviews .inbox .athlete_box .thum span {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}


.review-btn-wrap {
    z-index: 1;
    position: absolute;
    width: calc(100% / 1.07);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.review-btn-wrap button {
    width: 4.5em;
    aspect-ratio: 1/1;
    background: var(--main-color);
    border-radius: 50%;
    position: relative;
	border: none;
}
.review-btn-wrap button::after {
    content: "";
    width: 8px;
    aspect-ratio: 1/1;
    border: 2px solid;
    border-color: #fff #fff transparent transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%,-50%) rotate(45deg);
    transform-origin: center;
}

.review-btn-wrap button.review-prev::after {
    transform: translate(-30%,-50%) rotate(45deg) scale(-1,-1);
}


.reviews .visitor_list {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
}

.reviews .visitor_list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    margin: 0 0 10px;
    padding: 0;
    gap: 20px;
}

.reviews .visitor_list ul li .thum {
    width: min(170px, 30%);
    height: auto;
    overflow: hidden;
	margin-right:1em;
}




.reviews .visitor_list ul li .data{
	width: max(calc(100% - 180px - 1em), 65%);
}



.reviews .visitor_list ul li a.cvr {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}



.reviews .visitor_list ul li .data h4 {
    font-size: 1.3em;
    margin: 0 0 10px;
    font-weight: bold;
}
.reviews .visitor_list ul li .data p{
	padding:0;
	width:100%;
	font-size:16px;
	line-height:1.8;
	margin:0;
}







.item-review-in {
    padding: 30px min(50px,5vw);
    -webkit-transition: opacity .6s ease-in-out;
    -o-transition: opacity .6s ease-in-out;
    transition: opacity .6s ease-in-out;
}


@media (max-width: 767px) {
            .swiper-slide {
                flex-direction: column;
            }
            .swiper-slide img {
                width: 100%;
                border-bottom: 1px solid #ddd;
                border-right: none;
            }
            .content {
                width: 100%;
                padding: 20px;
            }
        }




/* サブカラム */

.arrows img.arrow{
	width:1em;
	display:block;
}
.arrows{
	padding-right:.5em;
}

.side_top .sidebox {
    padding: .7em 1em 0;
    border-bottom: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size: 18px;
}



.subSection-title:after, h3:after {
    display:none;
}

.widget .subSection-title {
    color: #348751;
}

.subSection {
    display: block;
    border-radius: 10px;
	padding:0;
}

.subSection .widget,.sidebar-section {
    margin-bottom: 25px;
    background: #fff;
    border-radius: 0 0 10px 10px;
}



.sideSection-col-two {
    width: calc(100% - 70% - 3rem);
}

.widget .subSection-title {
    color: #fff;
    background: #573001;
    border-radius: 10px 10px 0 0;
    font-size: 20px;
    line-height: 0;
    padding: 1.5em;
    margin-bottom: 0;
}

.subSection .media, .subSection .cat-item {
    padding: 1em;
}

.subSection li.current-cat>a, .subSection li.current_page_item>a {
    background-color: #fff;
}

.widget_archive ul li a, .widget_categories ul li a, .widget_link_list ul li a, .widget_nav_menu ul li a, .widget_pages ul li a, .widget_recent_entries ul li a {
    border-bottom: none;
	padding: 0;
	font-size:16px;
}

.cat-item:last-child,.media:last-child {
    border-bottom: none;
	padding-bottom: 1.2em;
}

.media .media-body .media-heading {
    font-size: 16px;
}
.archive .mainSection .media .media-body .media-heading{
    font-size: 30px;
    font-weight: bold;
}


element.style {
    font-size: 30px;
    font-weight: bold;
}

.cat-item {
    border-bottom: 1px solid #e5e5e5;
}


.sidebar {
    width: 250px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.sidebar-section {
    margin-bottom: 20px;
}

.sidebar-title {
    background-color: var(--main-color);;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    margin: 0;
    font-size: 22px;
}


.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side_top{
	padding-bottom:1em;
}

li.sidebox {
    margin-bottom: 0em;
}

.sidebar-list.dotted a {
    border-bottom: 1px dotted #ccc;
    margin-bottom: 0;
    font-size: 18px;
	color: #000;
}

.side_top a{
	color:#000;
}

.sidebar-list.dotted a:last-child {
    border-bottom: none;
}

.sidebox {
    padding:.7em 1em;
    border-bottom: 2px dotted #e5e5e5;
    cursor: pointer;
}

.sidebox a:last-child {
    border-bottom: none;
}


.sidebar-section h2, .mainSection-title {
    border-top-color: unset;
}

.sidebox:hover {
    background-color: #f4f4f4;
}




aside.banner_block{
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}








/****フッター***/

.floating-buttons {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100px, 20vw);
    height: min(100px, 20vw);
    background-color: #FF7F50;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.floating-button:hover {
    transform: scale(1.1);
}

.button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.button-content span {
    font-size: 12px;
}

.button-content strong {
    font-size: 16px;
    margin-top: 5px;
}


.footswiper {
            width: 100%;
	
        }
.footswiper .swiper-wrapper{
	transition-timing-function: linear;
}

       .footswiper  .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .footswiper .swiper-slide img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

section.foot_common {
    background-color: var(--sub-color);
    padding: 40px 20px;
}
section.foot_common .inbox{
	max-width: 1000px;
	margin:0 auto;
}

section.foot_common .description {
    color: var(--main-color);
    font-size: 0.9em;
    margin-bottom: 20px;
}



section.foot_common .info-links, .symptoms-section .symptoms-list, .fithead .info-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

section.foot_common .info-link,.symptoms-section a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc((100% - min(40px, 15vw)) / 3);
    padding: 24px 30px;
    background-color: #fff;
    font-size: 24px;
    color: var(--text-color);
    border-radius: 100px;
    font-weight: bold;
    text-decoration: none;
}

.fithead .info-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc((100% - min(40px, 15vw)) / 3);
    padding: 24px 30px;
    background-color: #fff;
    color: var(--text-color);
    border-radius: 100px;
    font-weight: bold;
    text-decoration: none;
}

.info-links,.symptoms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* 必要に応じて調整してください */
}
/****
.info-links::after,.symptoms-list::after {
    content: '';
    flex-basis: calc((100% - min(40px, 15vw)) / 3);
}****/

.info-link.extra-spacing {
    flex: 0 0 calc((100% - min(40px, 15vw)) / 3);
}




section.foot_common .info-link span {
    margin-left: auto;
    color: var(--main-color);
}

section.foot_common .info-link:hover,.fithead .info-link:hover {
    background-color: var(--link-hover-color);
    color: #fff;
}

section.foot_common .banners {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

section.foot_common .banner {
    width: calc((100% - min(40px, 15vw)) / 3);
    display: flex;
    align-items: center;
    justify-content: center;
}

section.foot_common .footlink {
    margin-top: 40px;
}

section.foot_common .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

section.foot_common .footer-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1em;
    transition: color 0.3s ease;
    font-weight: bold;
}

section.foot_common .footer-nav a:hover {
    color: var(--link-hover-color);
}

section.foot_common .footlogo {
    width:200px;
	margin:0 auto;
}





 /* 記事ページ */
         table.deco {
            width: 100%;
            margin: 0 auto;
            border-collapse: collapse;
            box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
			font-weight:bold;
        }
       table.deco th,  table.deco td {
            padding: 12px 15px;
            text-align: left;
        }
        table.deco th {
            background-color:  var(--main-color);
            color: #ffffff;
            font-size: 18px;
        }
        table.deco tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        table.deco tr:hover {
            background-color: #ddd;
        }
       table.deco td {
            font-size: 16px;
            color: #333;
        }
       table.deco .price {
            font-weight: bold;
            color: #8b4513;
        }

.page .mainSection .flex {
    justify-content: space-between;
}
 .mainSection .flex p{
	width:57%;
}
 .mainSection .flex figure{
	width:40%;
}
 .mainSection .flex figure img{
	border-radius:10px;
}





 /* リタライフ /　ゆらFIT*/
.contact label{
    width: min(500px,100%);
}

.litamenu {
    display: flex;
    justify-content: center;
    padding: 0;
    padding-bottom: .5em;
    flex-wrap: wrap;
    gap: 1em;
}
.litamenu ul li{
	width:30%;
}


 .litamenu a{
	font-weight:bold;
}

.page-template-page-water .commontab,.page-template-page-fit .commontab{
	display:none;
}
.page-id-337 .mainSection-col-one h3 {
    margin-top: 100px;
    font-size: 22px;
    font-weight: bold;
    color: #65780b;
}

.page-template-page-fit .mainSection-col-one h3 {
    margin-top: 100px;
    font-size: 26px;
    font-weight: bold;
    color: #65780b;
}


.page-id-337 .mainSection-col-one h2:not(:first-of-type) {
	margin-top:100px;
}

.page-template-page-water .siteContent >  .container, .page-template-page-fit .siteContent >  .container {
    width: min(900px,100vw);
    margin: 0 auto 100px;
}
.flex{
	display:flex;
}
.imgbox{
		background:#fff;
	padding:1em;
}
.page-template-page-water .flex img,.page-template-page-fit .flex img{
	width:30%;
}


.water_banner{
	margin:100px 0 0;
}

.water_banner ul{
	justify-content:space-between;
	margin:0;
	padding:0;
	display:flex;
}

.water_banner .mainbanner li{
	width:30%;
}

.water_banner li {
    width: 24%;
    text-align: center;
}
.water_banner ul:nth-of-type(2),.water_banner ul:nth-of-type(3){
	justify-content:center;
	gap:2em;
	margin-top:2em;
}
.water_banner ul:nth-of-type(3) li{
	text-align:center;
}

.page-fit-contact {
    display: flex;
    justify-content: center;
}

.fithead{
	margin:0 0 100px;
}

        .swiper-fit.swiper-container-initialized {
            visibility: visible; /* Swiperが初期化されたら表示 */
        }
        .swiper-fit .swiper-slide {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .swiper-fit .swiper-slide-active {
            opacity: 1;
        }

.staff-colum-item{
	padding-bottom:2em;
}
.staff-colum-item h3{
	margin-bottom:.5em;
}

.athlete{
	width:min(100%,800px);
	margin:2em auto;
}

.vk-mobile-nav nav>ul {
    border-top: none;
}