/*
Theme Name: BusinessPress
Theme URI: https://businesspress.jp/theme/
Author: BusinessPress
Author URI: https://businesspress.jp/
Description: BusinessPress ia a simple and beautiful business WordPress theme. You can create a website of corporate, group, freelance and so on.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: businesspress
Tags: one-column, two-columns, right-sidebar, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, sticky-post, theme-options, threaded-comments, translation-ready
*/


/* TABLE OF CONTENTS
------------------------------------------------------------
* Global
* Repeatable Patterns
* Layout
* Header
* Menus
* Featured Area
* Content
* Navigations
* Comments
* Widgets
* Footer
* Plugins
* Print
-----------------------------------
*/

*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --color-format: #ff0000;
    --color-faq1-format: #000000;
    --color-faq2-format: #FFFCF8;
}

html,
body,
h2,
h3,
ul,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
    border: 0;
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ul {
    list-style: none;
}

li,
dd {
    list-style-type: none;
}

header,
footer,
nav,
section,
main {
    display: block;
}

img {
    border: none;
    vertical-align: bottom;
}

body {
    color: #311D0F;
    font-family: 'Dela Gothic One', sans-serif;
    background: #FFFCF8;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: #311D0F;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    padding: 0 20px;
}



.header04 {
    padding: 16px 24px;
    background-color: #fafafa;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header04-logo {
    font-weight: bold;
    font-size: 20px;
}

.header04-list {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 16px;
    font-weight: bold;
}

.header04-contact {
    background-color: #2486d1;
    font-weight: bold;
    display: inline-block;
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    margin-left: auto;
}

.main {
    padding-top: 10px;
}

.c-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

/* TOPセクション */


.p-topFv {
    overflow-x: clip;
}

.p-topFv__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1280/680;
}

/* NEWSセクションのタイトル */

/* スライダー全体の設定 */
.news-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

/* 各カード全体のデザイン */
.news-slider .card {
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(128, 128, 128, 0.5),
                0 -4px 8px rgba(245, 245, 220, 0.5),
                4px 0 8px rgba(245, 245, 220, 0.5),
                -4px 0 8px rgba(245, 245, 220, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 画像部分 */
.news-slider .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid #ddd;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* テキスト部分 */
.news-slider .card-body {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
}

.news-slider .card-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin: 10px 0;
    line-height: 1.2;
    text-align: center;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* テキストのフォントサイズ調整 */
.news-slider .card-body p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    display: flex;
    justify-content: center;
}

/* 矢印のスタイル */
.slick-prev::before,
.slick-next::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.slick-prev::before {
    content: '←';
    font-size: 24px;
    color: #000;
}

.slick-next::before {
    content: '→';
    font-size: 24px;
    color: #000 !important;
}

.slick-prev,
.slick-next {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 24px !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    cursor: pointer;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: #e0e0e0;
    border-color: #bbb;
}

/* スライダーのトラックのスタイル */
.slick-track {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* ボタンのスタイル */
.button-container {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.btn {
    margin-top: 20px;
    padding: 15px 30px;
    background-color: var(--color-format) !important;
    border-color: var(--color-format) !important;
    color: white !important;
    text-decoration: none;
    border-radius: 40px !important;
    font-size: 18px !important;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e67e2c !important;
    border-color: #e67e2c !important;
}

/*about*/

.p-topAbout__lead {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.18em;
    color: #FFFCF8;
    text-align: center;
}

.p-topAbout__lead .accent {
    font-size: 3rem;
}

.p-topAbout__text {
    margin-top: 2rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: #FFFCF8;
    text-align: center;
    font-family: "Noto Sans JP", serif;
}

.p-topAbout__list {
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
}

.p-topAbout__img {
    width: 280px;
    height: 316px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-topAbout__img img {
    object-fit: cover;
    width: 280px;
    height: 280px;
    border-radius: 0.5rem 0.5rem 0 0;
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
    background-color: white;
}

.image-container {
    position: relative;
    width: 280px;
    height: 316px;
    background-color: white;
    border-radius: 0.5rem 0.5rem 0 0;
    overflow: hidden;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.image-caption {
    background-color: #5c3b00;
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding: 10px;
    width: 280px;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    margin-top: 0;
    z-index: 1;
    position: relative;
}
/* サービスポイントセクション用のCSS */
.servicepoint-section-title2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color-format);
}

.servicepoint-card {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
    align-items: center;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
}

.servicepoint-card.flex-row-reverse .servicepoint-content {
    flex-direction: row-reverse;
}

.servicepoint-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.servicepoint-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
}

.servicepoint-image {
    width: 450px;
    height: 450px;
    border-radius: 15%;
    margin-right: 20px;
    object-fit: cover;
}

.servicepoint-card.flex-row-reverse .servicepoint-image {
    margin-right: 0;
    margin-left: 20px;
}

.servicepoint-section .p-topFaq__title {
    margin-bottom: 100px; /* 適宜余白を設定 */
}


.servicepoint-text {
    flex: 1;
    text-align: left;
    font-weight: bold;
    color: #333;
}

.servicepoint-text h3 {
    margin-bottom: 10px;
}

.servicepoint-section-text {
    font-size: 1rem;
    line-height: 1.6;
}

.servicepoint-text p {
    color: #666;
}

.servicepoint-section {
    margin-bottom: 150px; /* 必要な余白を指定 */
}

.customer-voice {
    padding: 3rem 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
}

.customer-voice__content {
    display: flex;
    gap: 2rem;
}

.customer-voice__image img {
    width: 200px;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.customer-voice__title {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
}

.customer-name {
    color: #d40000; /* 顧客名を赤で強調 */
}

.customer-voice__label {
    font-size: 1rem;
    color: #666;
}

.customer-voice__description {
    color: #333;
    line-height: 1.6;
    margin-top: 1rem;
}


/*アクセス*/
.p-access {
    background-color: #d40000; /* 赤背景 */
    padding: 3rem 0;
    color: #ffffff; /* テキストカラーを白に */
}

.p-access__title h2 {
    color: #ffffff;
}

.p-access__itemTitle {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFCF8;
    padding-top: 1.5rem;
}

.p-access__itemText {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFCF8;
    font-family: "Zen Maru Gothic", sans-serif;
}

.p-access__itemText a {
    text-decoration: none;
    color: #FFFCF8;
}

.p-access__map {
    margin-top: 20px;
}

.p-access__map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 0.5rem;
}

/* Contact セクション */
.p-contact {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.p-contact__title h2 {
    color: #333333;
}

.p-contact__text {
    font-size: 1.125rem;
    color: #333333;
    margin-bottom: 1rem;
}

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

.p-contact__social {
    gap: 1rem;
    flex-wrap: wrap;
}

.p-contact__social-link {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.125rem;
}

.p-contact__social-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* 独自ボタンスタイル */
.custom-btn {
    background-color: #ff5722;
    color: #ffffff;
margin: 0px 5px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.custom-btn:hover {
    background-color: #e64a19;
    color: #ffffff;
}

/*プロフィール*/
.profile {
    display: flex;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
margin-top: 20px ;

}
.profile-image {
    padding-right: 20px;
}

.profile-image img {
    width: 100%;            /* Bootstrapのimg-fluidと組み合わせて画像が親要素に収まるように */
    max-width: 350px;       /* 最大幅を設定して大きくなりすぎないように */
    height: auto;
    border-radius: 8px;
}

.profile-content h2 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;

}

/* フッター */
.footer02 {
 color: #808080;
 background: #e5e5e5;
 text-align: center;
 padding: 30px;
}
.footer02 a {
 color: #808080;
 text-decoration: none;
}
.footer02 a:hover {
 text-decoration: underline;
}
.footer02 .menu {
 margin: 0;
 padding: 0;
 list-style: none;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
}
.footer02 .menu li {
 margin: 0;
 padding: 0 20px;
}
.footer02 .copyright {
 margin: 0;
 padding: 20px 0 0 0;
}


/*news アチーブ*/
/* Archive News Page Styles for a Bathhouse Website */

/* メインコンテンツのスタイリング */
#primary {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f8f8; /* 優しい色合いの背景 */
    border-radius: 10px;
}

/* ページヘッダーのスタイリング */
.page-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.page-title {
    font-size: 2.5em;
    color: #333; /* 濃いグレーで視認性を高める */
    font-family: 'Noto Serif JP', serif; /* 和風のフォント */
}

/* ループ内の記事アイテムのスタイリング */
.loop-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.news-item {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 柔らかい影 */
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px); /* ホバー時に少し浮かせる効果 */
}

.news-thumb img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

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

.news-meta {
    font-size: 0.9em;
    color: #888; /* ライトグレーの文字色 */
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.5em;
    color: #333;
    margin: 0 0 10px;
}

.news-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #0056b3; /* ホバー時にブルーに変わる */
}

.news-excerpt {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

/* ページネーションのスタイリング */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination a {
    display: block;
    padding: 10px 15px;
    margin: 0 5px;
    background-color: #e0e0e0;
    color: #333;
    border-radius: 5px;
    text-decoration: none;
}

.pagination a:hover {
    background-color: #d0d0d0;
}


/* single-news */
/* 銭湯のお知らせ用スタイリング */
.sento-announcement {
    background-color: #f5f5f5; /* 優しい色調の背景 */
    padding: 20px;
}

.sento-announcement .site-main {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* タイトルの調整 */
.sento-announcement .entry-header {
    text-align: center; /* タイトルを中央揃え */
    margin-top: 60px; /* ヘッダーとタイトルの間に余白を追加 */
    margin-bottom: 20px; /* タイトルとコンテンツの間に余白を追加 */
}

.sento-announcement .entry-title {
    font-size: 2em; /* タイトルのフォントサイズをやや大きく設定 */
    color: #333; /* タイトルの色を濃いグレーに設定 */
    padding: 10px 0; /* タイトルの内側に少し余白を追加 */
    border-bottom: 2px solid #ccc; /* タイトルの下にシンプルな線を追加 */
    display: inline-block;
}

/* 投稿サムネイルの調整 */
.sento-announcement .post-thumbnail {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    max-height: 400px;
}

/* コンテンツの調整 */
.sento-announcement .entry-content {
    font-size: 1.2em; /* コンテンツのフォントサイズを少し大きく設定 */
    line-height: 1.8;
    color: #555;
}

.sento-announcement .entry-content p {
    margin-bottom: 1.5em;
}

/* コメントセクション */
.sento-announcement .comments-area {
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}


.announcement-title {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* 追加のスタイルが必要な場合はここに追加 */


.p-topNews__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.p-topNews__thumbnail {
    flex-shrink: 0;
    margin-right: 20px;
}

.p-topNews__thumbnail img {
    width: 150px; /* サムネイル画像の幅を調整 */
    height: auto;
    border-radius: 8px;
}

.p-topNews__content {
    flex-grow: 1;
}

.p-topNews__time,
.p-topNews__category,
.p-topNews__text {
    display: block;
    margin-bottom: 5px;
}

.p-topNews__time {
    font-size: 0.9em;
    color: #888;
}

.p-topNews__category {
    font-size: 1em;
    color: #333;
    font-weight: bold;
}

.p-topNews__text {
    font-size: 1.2em;
    color: #333;
}

.p-topNews__thumbnail img {
    width: 150px;
    height: 100px;
    object-fit: cover; /* 画像のアスペクト比を維持しつつ、枠に収まるように調整 */
    border-radius: 8px;
}