/*
Theme Name: Arkhe
Theme URI: https://arkhe-theme.com/
Version: 3.12.0
Tested up to: 6.8
Requires at least: 6.0
Requires PHP: 7.0
Description: A very simple theme for production templates. Customize as you like.
Tags: two-columns, one-column, right-sidebar, custom-colors, custom-menu, editor-style, theme-options, block-styles, wide-blocks
Author: LOOS,Inc.
Author URI: https://loos.co.jp/
Text Domain: arkhe
Domain Path: /languages
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/



@charset "UTF-8";

/* 基本設定 */
body {
    margin: 0;
    padding: 0;
    font-family: "Hiragino Mincho ProN", "MS PMincho", serif;
    color: #333;
    line-height: 1.8;
    overflow-x: hidden;
}
.pcnon{
	display: none;
}

.spnon{
	display: block;
}
img { max-width: 100%; height: auto; }

/* ヘッダー */
.header {
    background-color: #f97a7a;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.pcnon{
	display: none;
}

.spnon{
	display: block;
}
.header-inner {
    margin: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo img { height: 50px; }

/* PCナビゲーション */
.nav ul { display: flex; gap: 30px; }
.nav ul li a { font-size: 14px; text-align: center; display: block; color: #fff; text-decoration: none; }
.nav ul li a span { display: block; font-size: 10px; opacity: 0.8; }

/* ハンバーガー初期状態（PCでは隠す） */
.nav-hidden, .nav-open { display: none; }

/* 1151px未満のレスポンシブ設定 */
@media screen and (max-width: 1150px) {
    /* PCナビを非表示にしてスマホ用スタイルへ */
    .nav {
        position: fixed;
        top: 0;
        right: -100%; /* 最初は画面外 */
        width: 80%;
        height: 100vh;
        background: #f97a7a;
        transition: 0.5s;
        z-index: 999;
        padding-top: 100px;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
.nav ul li {
        border-bottom: 1px solid #f7cccc;
        padding: 0 0 10px 0;
        width: 100%;
}
    .nav ul li a { font-size: 18px; }

    /* ハンバーガーアイコンの表示 */
    .nav-open {
        display: block;
        width: 30px;
        height: 24px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-open span, .nav-open span::before, .nav-open span::after {
        content: "";
        display: block;
        height: 3px;
        width: 100%;
        background: #fff;
        position: absolute;
        transition: 0.5s;
    }

    .nav-open span::before { top: -10px; }
    .nav-open span::after { top: 10px; }

    /* チェックボックスが入った時（開いた時）の動き */
    .nav-hidden:checked ~ .nav { right: 0; }
    .nav-hidden:checked ~ .nav-open span { background: transparent; }
    .nav-hidden:checked ~ .nav-open span::before { transform: rotate(45deg); top: 0; }
    .nav-hidden:checked ~ .nav-open span::after { transform: rotate(-45deg); top: 0; }
}

/* メインビジュアル */
.mv { position: relative; height: 70vh; overflow: hidden; }
.mv-slides { position: relative; height: 100%; }
.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; animation: fadeAnimation 15s infinite;
}
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }

@keyframes fadeAnimation {
    0% { opacity: 0; } 10% { opacity: 1; } 33% { opacity: 1; } 43% { opacity: 0; } 100% { opacity: 0; }
}

.mv-copy {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    text-align: center; color: #fff; z-index: 10; width: 90%;
}

.mv-title {
    font-size: clamp(32px, 5vw, 64px);
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* キャッチセクション */
.catch-section {
    background-color: #f9f3e7;
    padding: 50px 0 0 0;
    position: relative;
    overflow: hidden;
}

.catch-bg-image {
    position: absolute; top: 0; left: 0; width: 80%; height: 100%;
    background-image: url(/wp-content/uploads/bg1.png);
    background-repeat: no-repeat; background-position: left bottom;
    background-size: contain; z-index: 1; opacity: 0.8;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }

.catch-content { text-align: right;padding-bottom: 50px;}
.catch-title {
    font-size: clamp(18px, 4vw, 32px);
    color: #f97a7a; margin-bottom: 40px; text-align: center;
}

.catch-text { display: inline-block; text-align: left; max-width: 640px; width: 100%; }

/* 固定ボタン */
.fixed-contact-btn {
    position: fixed; right: 0; top: 50%; transform: translateY(-50%);
    background-color: #b33e3e; color: #fff; padding: 20px 8px;
    writing-mode: vertical-rl; display: flex; align-items: center; gap: 8px;
    z-index: 100; border-radius: 5px 0 0 5px; text-decoration: none;
}

/* スマホ時調整 */
@media screen and (max-width: 768px) {
    .catch-bg-image { width: 100%; opacity: 0.2; }
    .catch-content { text-align: center; }
    .catch-text { text-align: left;line-height: 2.2;}
    .fixed-contact-btn { display: none; }
}


/* メインビジュアルのコピー部分を強化 */
.mv-copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    /* 背景を暗くする代わりに、文字の周りにだけうっすらと発光感を出して背景から浮かせます */
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

.mv-title {
    font-size: clamp(32px, 5vw, 64px);
    margin: 0;
    color: #f97a7a; /* メインのピンク色 */
    font-weight: bold;
    /* 【重要】白い縁取り：text-shadowを多方向に重ねることで、背景に紛れないクッキリした縁を作ります */
    text-shadow: 
        2px 2px 0 #fff, -2px -2px 0 #fff,
        -2px 2px 0 #fff, 2px -2px 0 #fff,
        0px 2px 0 #fff,  0px -2px 0 #fff,
        2px 0px 0 #fff, -2px 0px 0 #fff,
        0 0 10px rgba(255,255,255,0.8); /* 外側のボカシ */
}

.mv-sub {
    font-size: clamp(16px, 2.5vw, 24px);
    margin-top: 15px;
    color: #333; /* サブコピーはあえて濃い色にして白縁をつける */
    font-weight: bold;
    text-shadow: 
        1px 1px 0 #fff, -1px -1px 0 #fff,
        -1px 1px 0 #fff, 1px -1px 0 #fff;
    letter-spacing: 0.1em;
}

/* 読みやすさをさらに上げるための隠し技：
   文字の背景エリアにだけ、中心から外側へ消える極薄の白いモヤを敷く */
.mv::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

/* 選ばれる理由セクション全体 */
.reason-section {
    background-color: #fcf1f1; /* 全体の薄いピンク背景 */
    padding: 100px 0;
}

/* タイトル部分 */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title .en {
    display: block;
    color: #f97a7a;
    font-size: 32px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.section-title .ja {
    font-size: 24px;
    color: #b33e3e; /* 少し濃い赤 */
    font-weight: normal;
}

/* カードのレイアウト */
.reason-flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.reason-card {
    flex: 1;
    background: #fff;
    transition: transform 0.3s;
}

.reason-card:hover {
    transform: translateY(-10px);
}

/* 画像と数字パーツ */
.card-img {
    position: relative;
    line-height: 0;
}

.card-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-num {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background-color: #f97a7a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-style: italic;
    font-family: serif;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* テキスト部分 */
.card-body {
    padding: 40px 20px;
    text-align: center;
}

.card-title {
    font-size: 18px;
    color: #f97a7a;
    margin-bottom: 25px;
    line-height: 1.6;
    height: 3.2em; /* 高さを揃える */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text {
    font-size: 14px;
    color: #666;
    text-align: left;
    line-height: 1.8;
}

/* 詳細を見るボタン */
.section-link {
    text-align: right;
    max-width: 1100px;
    margin: 0 auto;
}

.more-btn {
    display: inline-block;
    color: #b33e3e;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 1px solid #b33e3e;
    transition: opacity 0.3s;
}

.more-btn::after {
    content: "→";
    margin-left: 10px;
}

.more-btn:hover {
    opacity: 0.7;
}

/* レスポンシブ */
@media screen and (max-width: 1150px) {
    .reason-flex {
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }
    .reason-card {
        max-width: 500px;
        width: 100%;
    }
}

/* 全体コンテナ */
.info-sections {
    padding: 100px 0;
    background-color: #fff;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

/* 偶数番目（ABOUT）を左右反転 */
.info-item.reverse {
    flex-direction: row-reverse;
}

/* 画像エリア */
.info-img-wrapper {
    flex: 1.2;
    position: relative;
    padding: 20px; /* 装飾ボックスをはみ出させるための余白 */
}

.info-img-wrapper img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    display: block;
}

/* 画像の後ろのピンクの箱 */
.bg-box {
    position: absolute;
    width: 80%;
    height: 100%;
    background-color: #f97a7a;
    z-index: 1;
}

/* PLANとFLOW：左上に配置 */
.info-item:not(.reverse) .bg-box {
    top: 0;
    left: 0;
}

/* ABOUT：右上に配置 */
.info-item.reverse .bg-box {
    top: 0;
    right: 0;
}

/* テキストエリア */
.info-content {
    flex: 1;
}

.info-content .en {
    display: block;
    font-size: 28px;
    color: #f97a7a;
    letter-spacing: 0.1em;
    font-family: serif;
}

.info-content .ja {
    font-size: 24px;
    color: #b33e3e;
    margin: 10px 0 25px;
    font-weight: normal;
}

.info-content .text {
    font-size: 14px;
    line-height: 2;
    color: #333;
    margin-bottom: 30px;
}

/* 詳細を見るボタンの配置 */
.link-right { text-align: right; }
.link-left { text-align: left; }

/* 区切り線 */
.separator {
    text-align: center;
    margin: 60px 0;
}

.separator img {
    max-width: 600px;
    height: auto;
}

/* レスポンシブ */
@media screen and (max-width: 1150px) {
    .info-item, .info-item.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 80px;
    }
    
    .info-content {
        text-align: center;
        padding: 0 10px;
    }
    
    .link-right, .link-left {
        text-align: center;
    }

    .info-img-wrapper {
        width: 90%;
        margin: 0 auto;
    }
}

.top-news-section {
    background-color: #f6e8e8;
    padding: 80px 0;
    overflow: hidden;
position: relative;
	margin-bottom: 70px;
}

.top-news-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}


.news-background-text {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 90px;
    color: #f7cccc;
    writing-mode: vertical-rl;
    z-index: 1;
    user-select: none;
    font-family: serif;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    position: relative;
    z-index: 2;
}

.news-list li {
    margin-bottom: 15px;
}

.news-list li:last-child {
    margin-bottom: 0;
}

.news-list a {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px 30px;
    text-decoration: none;
    position: relative;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-list a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

.news-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background-color: #f7cccc;
}

.news-date {
    font-weight: bold;
    color: #f7cccc; /* テーマカラー */
    font-size: 16px;
    margin-right: 25px;
    padding-left: 10px; /* 黄色い線との余白 */
    flex-shrink: 0;
}

.news-title {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



.info-section {
    padding-top: 0;
    padding-bottom: 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.info-card {
    position: relative;
    padding-top: 25px;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%; 
    background-color: #f7cccc;
    z-index: 1;
}

.info-card2 {
    position: relative;
    padding-top: 15px;
}

.info-card2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%; 
    background-color: #f7cccc;
    z-index: 1;
}


.card-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 0 25px 30px 25px; 
    background-color: transparent; 
}

.card-image-wrapper img {
    display: block;
    height: 260px;
    object-fit: cover;
    width: 100%;
    object-position: 100% 0;
}

.card-content {
    padding: 0 30px 30px 30px;
    text-align: center;
}


.card-content h3 {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0 0 30px 0;
    text-align: left;
}

/* コンタクトセクション全体の土台 */
.contact-section {
    position: relative;
    background-image: url(/wp-content/uploads/contactbg.jpg);
    background-size: cover;
    background-position: center;
    min-height: 500px; /* 必要に応じて調整 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* コンテンツを右側に寄せる */
}

/* 斜めのピンク背景をclip-pathで作成 */
.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%; /* 画像の被さり具合に合わせて調整 */
    height: 100%;
    background-color: rgba(249, 122, 122, 0.8); /* ピンクの透過色 */
    /* クリップパスで斜めの形状を作る (左上が外側に逃げる形) */
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

/* コンテンツの配置調整 */
.contact-inner {
    position: relative;
    z-index: 2;
    width: 100%; /* ピンクの面の中に収まるように */
    padding-right: 10%; /* 右端からの余白 */
    text-align: center;
    color: #fff;
}

/* 装飾の白いライン（Contactの下） */
.contact-inner .en {
    display: inline-block;
    font-size: 64px;
    font-family: "Georgia", serif;
    position: relative;
    margin-bottom: 10px;
}

.contact-inner .en::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 1px;
    background: #fff;
}

.contact-inner .ja {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.contact-desc {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 40px;
}

/* 白い丸角ボタン */
.contact-form-btn {
    display: inline-block;
    background: #fff;
    color: #f97a7a;
    padding: 15px 80px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* スマホ対応：斜めを解除して全体塗りに切り替え */
@media screen and (max-width: 768px) {
    .contact-section::before {
        width: 100%;
        clip-path: none;
        background-color: rgba(249, 122, 122, 0.9);
    }
    .contact-inner {
        width: 100%;
        padding-right: 0;
    }
}

/* マップ */
.google-map {
    line-height: 0;
}

/* フッター本体 */
.footer-main {
    padding: 80px 0;
    background-color: #fff;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.footer-tel {
    font-size: 28px;
    color: #f97a7a;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-tel a{
    color: #f97a7a;
}

/* フッターリンク */
.footer-links {
    display: flex;
    gap: 60px;
}

.link-col ul li {
    margin-bottom: 12px;
}

.link-col ul li a {
    font-size: 14px;
    color: #333;
    transition: color 0.3s;
}

.link-col ul li a:hover {
    color: #f97a7a;
}

/* コピーライト */
.footer-copy {
    background-color: #f97a7a;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
}

/* レスポンシブ */
@media screen and (max-width: 900px) {
    .footer-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .link-col {
        min-width: 150px;
    }
    
    .footer-tel {
        justify-content: center;
    }
    
    .contact-inner .en {
        font-size: 40px;
    }
}

.btn01{
	background: #f97a7a;
	display: block;
	margin: 0 auto;
	text-align: center;
	width: 220px;
	padding: 10px 20px;
	border-radius: 8px;
	color: #fff;
	text-decoration: unset;
}

ul li{
	list-style-type: none;
}

/* --- 下層共通スタイル --- */

/* 下層ヘッダー */
.lower-header {
    background-color: #fcf1f1;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #f97a7a;
    max-width: 1200px;
    margin: 0 auto;
}

.lower-header-inner .en {
    display: block;
    color: #f97a7a;
    font-size: 18px;
    font-family: serif;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.lower-header-inner .ja {
    font-size: 32px;
    color: #b33e3e;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.lower-header-inner .ja i {
    font-size: 24px;
    color: #f97a7a;
}

/* コンテナ */
.lower-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}

.lower-intro {
    text-align: center;
    margin-bottom: 60px;
    line-height: 2;
    color: #333;
    font-size: 16px;
}

/* 特徴リスト（縦並び） */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* 偶数番目のアイテムを反転（交互レイアウトにする場合） */
.feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-img {
    flex: 1;
}

.feature-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-content {
    flex: 1.2;
}

.feature-title {
    font-size: 24px;
    color: #f97a7a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.feature-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #f97a7a;
}

.feature-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .feature-item, 
    .feature-item:nth-child(even) {
        flex-direction: column;
        gap: 20px;
    }
    
    .lower-header-inner .ja {
        font-size: 24px;
    }
}

/* 導入文のタイトル */
.intro-title {
    font-size: 28px;
    color: #b33e3e;
    margin-bottom: 30px;
    font-weight: normal;
}

/* テキストの可読性向上 */
.feature-text {
    font-size: 16px; /* 少し大きく */
    line-height: 2;   /* 行間を広く */
    color: #444;
    text-align: justify; /* 両端揃えで綺麗に */
}

/* アイテム間の境界線（オプション） */
.feature-item {
    padding-bottom: 20px;
}

/* 最下部のメッセージエリア */
.lower-message {
    margin-top: 100px;
    background-color: #f9f3e7;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
}

.lower-message h3 {
    color: #f97a7a;
    font-size: 22px;
    margin-bottom: 20px;
}

.lower-message p {
    font-size: 15px;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* スマホ表示でのタイトル調整 */
@media screen and (max-width: 768px) {
    .intro-title {
        font-size: 22px;
    }
    .lower-message {
        padding: 40px 20px;
    }
}


.l-main__body{
	margin-top: 60px;
}

/* 数字のデザイン */
.feature-img {
    position: relative;
    flex: 1;
}

.feature-num {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background-color: #f97a7a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    font-family: serif;
    z-index: 10;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
}


.feature-item:nth-child(even) .feature-num {
    left: auto;
    right: -20px;
}

/* 下層ヘッダー（余白感を調整） */
.lower-header {
    background-color: #fcf1f1;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #f97a7a;
}

/* スマホ時の数字位置微調整 */
@media screen and (max-width: 768px) {
    .feature-num {
        top: -15px;
        left: 10px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    .feature-item:nth-child(even) .feature-num {
        right: auto;
        left: 10px;
    }
}

/* ステップリスト全体の装飾 */
.flow-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 800px;
    margin: 0 auto 80px;
}

/* 各ステップの共通枠 */
.flow-step-item {
    background: #fff;
    border: 1px solid #f97a7a;
    border-radius: 8px;
    margin-bottom: 50px;
    position: relative;
}

/* ステップをつなぐ矢印（次のステップへの） */
.flow-step-item:not(:last-child)::after {
    content: "▼";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #f97a7a;
    font-size: 24px;
}

/* ステップの見出し部分 */
.flow-step-head {
    background: #f97a7a;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 6px 6px 0 0;
}

.step-label {
    font-family: serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.1em;
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: 4px;
}

.step-title {
    font-size: 18px;
    margin: 0;
    font-weight: normal;
}

/* ステップの本文部分 */
.flow-step-body {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.step-icon-circle {
    width: 80px;
    height: 80px;
    background: #f9f3e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-circle i {
    font-size: 32px;
    color: #f97a7a;
}

.step-content {
    flex-grow: 1;
}

.step-text {
    font-size: 15px;
    line-height: 2;
    color: #333;
    margin: 0;
}

/* 下部連絡先ボックス */
.flow-contact-box {
    text-align: center;
    background: #fdf5f5;
    border: 2px dashed #f97a7a;
    padding: 40px 20px;
    border-radius: 10px;
}

.flow-contact-box h3 {
    color: #b33e3e;
    margin-bottom: 15px;
    font-size: 20px;
}

.flow-contact-box .tel-number {
    font-size: 55px;
    color: #f97a7a;
    font-weight: bold;
    margin-top: 20px;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
    .flow-step-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .step-icon-circle {
        margin-bottom: 20px;
    }
    .flow-step-head {
        flex-direction: column;
        gap: 5px;
    }
    .flow-contact-box .tel-number {
        font-size: 28px;
    }
}

/* プランリスト（並列） */
.plan-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}

.plan-card {
    flex: 1;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px; /* 角丸を少し控えめに */
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.plan-img {
    height: 180px;
    overflow: hidden;
}

.plan-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-body {
    padding: 25px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-name {
    font-size: 19px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid #f97a7a;
    padding-bottom: 10px;
}

.plan-price {
    text-align: center;
    font-size: 28px;
    color: #f97a7a;
    font-weight: bold;
    margin: 15px 0;
}

.plan-price .tax { font-size: 13px; margin-right: 4px; }
.plan-price .unit { font-size: 16px; }

.plan-detail {
}

.plan-detail h3 {
    font-size: 14px;
    color: #b33e3e;
    margin-bottom: 10px;
    background: #fdf5f5;
    padding: 5px 10px;
    border-radius: 3px;
}

.plan-detail ul {
    margin-bottom: 15px;
}

.plan-detail ul li {
    font-size: 13px;
    margin-bottom: 4px;
    padding-left: 12px;
    position: relative;
}

.plan-detail ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 4px;
    height: 4px;
    background: #f97a7a;
    border-radius: 50%;
}

.plan-flow-mini {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
    padding-top: 10px;
    border-top: 1px dotted #ccc;
}

/* スマホ対応 */
@media screen and (max-width: 950px) {
    .plan-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .plan-card {
        max-width: 400px;
        width: 100%;
    }
}

/* ホール紹介の大きなセクション */
.hall-feature {
    margin-bottom: 80px;
    background: #fff;
    border: 1px solid #f97a7a;
    border-radius: 8px;
    overflow: hidden;
}

.hall-img-full img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hall-content-box {
    padding: 40px;
    text-align: center;
}

.hall-title {
    font-size: 24px;
    color: #f97a7a;
    margin-bottom: 20px;
}

/* ギャラリーグリッド */
.hall-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.hall-card {
    background: #fdf5f5;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hall-card-img {
    height: 200px;
}

.hall-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hall-card-body {
    padding: 20px;
    flex-grow: 1;
}

.hall-card-title {
    font-size: 18px;
    color: #b33e3e;
    margin-bottom: 10px;
    border-bottom: 1px solid #f97a7a;
    padding-bottom: 8px;
}

.hall-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* アクセスボックス */
.access-info-box {
    background: #f9f3e7;
    padding: 40px;
    border-radius: 10px;
}

.access-title {
    font-size: 22px;
    color: #b33e3e;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-flex {
    display: block;
    justify-content: space-between;
    align-items: center;
}

.access-text p {
    margin-bottom: 10px;
    font-size: 15px;
}

.google-map-btn {
    display: inline-block;
    background: #f97a7a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.google-map-btn:hover {
    background: #b33e3e;
}

/* レスポンシブ */
@media screen and (max-width: 900px) {
    .hall-grid {
        grid-template-columns: 1fr;
    }
    .hall-img-full img {
        height: 300px;
    }
    .access-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}


/* FAQ全体のコンテナ */
.faq-container {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
}

/* チェックボックスを隠す */
.faq-check {
    display: none;
}

/* 質問エリア */
.faq-question {
    display: block;
    padding: 22px 50px 22px 65px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    position: relative;
    font-size: 16px;
    line-height: 1.4;
}

/* 擬似要素による Q */
.faq-question::before {
    content: "Q";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Times New Roman', serif;
    font-size: 26px;
    color: #f97a7a;
}

/* 矢印アイコン */
.faq-question::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
    color: #ccc;
}

/* 回答エリア */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fdfaf5;
}

.faq-answer p {
    padding: 25px 30px 25px 65px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    position: relative;
    margin: 0;
}

/* 擬似要素による A */
.faq-answer p::before {
    content: "A";
    position: absolute;
    left: 20px;
    top: 25px;
    font-family: 'Times New Roman', serif;
    font-size: 26px;
    color: #b33e3e;
    font-weight: bold;
}

/* チェック時の挙動 */
.faq-check:checked + .faq-question {
    background: #fdf5f5;
    border-bottom: 1px solid #eee;
}

.faq-check:checked + .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-check:checked ~ .faq-answer {
    max-height: 500px;
}

/* 下部連絡エリア */
.faq-bottom-box {
    text-align: center;
    background: #fdf5f5;
    padding: 50px 20px;
    border-radius: 8px;
}

.faq-bottom-box .tel-number {
    font-size: 32px;
    color: #f97a7a;
    font-weight: bold;
    margin: 20px 0;
}

.contact-btn {
    display: inline-block;
    padding: 15px 45px;
    background: #b33e3e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
    .faq-question {
        padding-left: 55px;
        font-size: 15px;
    }
    .faq-question::before, .faq-answer p::before {
        font-size: 22px;
        left: 15px;
    }
    .faq-answer p {
        padding-left: 55px;
    }
}


/* お客様の声一覧レイアウト修正 */
.voice-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.voice-item {
    background: #fff;
    border: 1px solid #eee;
    border-left: 5px solid #f97a7a;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    display: flex; /* アイコンとコンテンツを横並びに */
    gap: 25px;
    align-items: flex-start;
}

/* 人形アイコンのスタイル */
.voice-icon {
    flex-shrink: 0;
}

.voice-icon i {
    font-size: 60px;
    color: #f9dcdc; /* 柔らかなピンク色 */
}

.voice-content {
    flex-grow: 1;
}

.voice-header {
    margin-bottom: 15px;
}

.voice-label {
    display: inline-block;
    font-size: 13px;
    color: #f97a7a;
    background: #fdf5f5;
    padding: 2px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.voice-title {
    font-size: 20px;
    color: #b33e3e;
    line-height: 1.5;
    margin: 0;
}

.voice-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* 下部誘導エリア等は前回同様のため割愛、必要に応じて追記 */

/* スマホ対応 */
@media screen and (max-width: 600px) {
    .voice-item {
        flex-direction: column; /* スマホでは縦並びに */
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .voice-icon i {
        font-size: 50px;
    }
    
    .voice-title {
        font-size: 18px;
    }
}


/* 代表挨拶 */
.greeting-section {
    margin-bottom: 80px;
    padding: 40px;
    background-color: #fcf1f1;
    border-radius: 8px;
}

.greeting-title {
    font-size: 24px;
    color: #f97a7a;
    margin-bottom: 30px;
    text-align: center;
}

.greeting-text p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
    color: #444;
}

.signature {
    text-align: right;
    font-weight: bold;
    margin-top: 40px;
    color: #333;
}

/* サブタイトル */
.sub-title {
    font-size: 22px;
    color: #b33e3e;
    margin-bottom: 30px;
    border-left: 4px solid #f97a7a;
    padding-left: 15px;
}

/* 会社情報テーブル */
.company-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 80px;
}

.company-table th, .company-table td {
    padding: 20px !important;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.company-table th {
    width: 25%;
    background-color: #f9f3e7;
    color: #b33e3e;
    font-weight: bold;
    white-space: nowrap;
}

.company-table td {
    color: #333;
    line-height: 1.6;
}

/* アクセス詳細 */
.access-details {
    display: flex;
    gap: 40px;
}

.access-item {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 5px;
}

.access-item h3 {
    font-size: 18px;
    color: #f97a7a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-item p {
    font-size: 15px;
    color: #555;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .greeting-section {
        padding: 25px;
    }
    
    .company-table th, .company-table td {
        display: block;
        width: 100%;
    }
    
    .company-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }
    
    .access-details {
        flex-direction: column;
    }
}

/* お問い合わせフォーム用スタイル */
.contact-tel-box {
    background: #fdf5f5;
    border: 2px solid #f97a7a;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.tel-label { font-weight: bold; color: #b33e3e; margin-bottom: 10px; }
.tel-link { font-size: 32px; color: #f97a7a; font-weight: bold; text-decoration: none; }
.tel-note { font-size: 13px; color: #666; margin-top: 10px; }

/* CF7パーツ */
.cf7-custom-form { max-width: 800px; margin: 0 auto; }
.form-item { margin-bottom: 30px; }
.form-item label { display: block; font-weight: bold; margin-bottom: 10px; color: #333; }
.form-item .required { background: #f97a7a; color: #fff; font-size: 11px; padding: 2px 6px; border-radius: 3px; margin-left: 10px; vertical-align: middle; }

.wpcf7-form-control:not([type="checkbox"]):not([type="submit"]) {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.wpcf7-checkbox .wpcf7-list-item { margin: 0 15px 10px 0; }

.form-submit { text-align: center; margin-top: 40px; }
.wpcf7-submit {
    background: #f97a7a !important;
    color: #fff !important;
    padding: 15px 60px !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 18px !important;
    font-weight: bold !important;
    cursor: pointer;
    transition: 0.3s;
}
.wpcf7-submit:hover { background: #b33e3e !important; }


/* --- お知らせ共通スタイル --- */
.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
	margin-right: 10px;
}

.news-date {
    font-size: 14px;
    color: #999;
    font-family: serif;
}

.news-category {
    background: #f97a7a;
    color: #fff;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 2px;
}

/* 一覧ページ */
.news-archive-list {
    border-top: 1px solid #eee;
    margin-bottom: 40px;
}

.news-post-item {
    border-bottom: 1px solid #eee;
}

.news-link {
    display: flex;
    align-items: center;
    padding: 25px 10px;
    text-decoration: none;
    transition: background 0.3s;
    position: relative;
}

.news-link:hover {
    background: #fdf5f5;
}

.news-archive-title {
    font-size: 16px;
    color: #333;
    margin: 0;
    flex-grow: 1;
    font-weight: normal;
}

.news-arrow {
    color: #f97a7a;
    font-size: 12px;
    margin-left: 20px;
}

/* 詳細ページ */
.news-single-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f97a7a;
}

.news-single-title {
    font-size: 26px;
    color: #333;
    line-height: 1.4;
}

.entry-content {
    line-height: 2;
    color: #444;
    font-size: 16px;
    margin-bottom: 60px;
}

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

/* 投稿ナビゲーション */
.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.nav-archive a {
    display: inline-block;
    padding: 10px 30px;
    background: #f9f3e7;
    color: #b33e3e;
    border-radius: 4px;
    font-size: 14px;
}

.nav-prev a, .nav-next a {
    color: #f97a7a;
    font-size: 14px;
}

/* ページネーション */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    margin: 0 3px;
    color: #333;
    text-decoration: none;
}

.pagination .current {
    background: #f97a7a;
    color: #fff;
    border-color: #f97a7a;
}
.nwrap{
	margin-top: 60px;
}
/* スマホ対応 */
@media (max-width: 768px) {
    .news-link { flex-direction: column; align-items: flex-start; }
    .news-archive-title { margin-top: 10px; }
    .news-arrow { display: none; }
    .news-single-title { font-size: 20px; }
.l-main__body {
    margin-top: 0px;
}
.nwrap{
	margin-top: 0 !important;
}
.lower-intro {
    text-align: left;
    margin-bottom: 60px;
    line-height: 2;
    color: #333;
    font-size: 16px;
}
.footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        display: block;
        text-align: left;
        width: 100%;
    }
.contact-desc {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 40px;
    margin: 0 30px 40px 30px;
}
.header-inner {
    padding: 5px 0 0 0;
    position: relative;
}
.lower-header {
    background-color: #fcf1f1;
    padding: 50px 20px;
    text-align: center;
    border-bottom: 1px solid #f97a7a;
}
	.spnon{
		display: none;
	}
	.pcnon{
		display: block;
	}
}

.greet_photo{
	text-align: center;
	max-width: 300px;
	margin: 0 auto;
}
.greet_photo img{
	width: 100%;
	height: auto;
}

.greeting-text{
max-width: 600px;
	margin: 0 auto;
}

.greeting-section{
	max-width: 800px;
	margin: 0 auto 80px auto;
}

.link-col ul li a{
	text-decoration: unset;
}
@media screen and (max-width: 768px) {
	
	.spnon{
		display: none;
	}
	.pcnon{
		display: block;
	}

.news-background-text {
    position: unset;
    top: 50%;
    right: 30px;
    transform: unset;
    font-size: 55px;
    color: #f7cccc;
    writing-mode: unset;
    z-index: 1;
    user-select: none;
    font-family: serif;
	text-align:center;
}
    .link-right, .link-left {
        text-align: right;
    }
.separator img {
    max-width: 300px;
    height: auto;
}
.info-grid {
	display: block;
	}
	.info-card{
		margin-bottom: 50px;
	}
.mv {
    position: relative;
    height: 50vh;
    overflow: hidden;
}
}

/* ナビゲーションが開いている時、bodyのスクロールを禁止する */
body:has(#nav-input:checked) {
    overflow: hidden;
}

/* メニュー内はスクロールできるようにしつつ、スマホでの操作性を確保 */
@media screen and (max-width: 1150px) {
    .nav {
        overflow-y: auto; /* メニュー項目が多い場合にスクロール可能にする */
        -webkit-overflow-scrolling: touch;
    }
}

/* ベースは非表示、最前面に配置 */
.sp-footer-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    transform: translateY(100%); /* 最初は画面下に隠す */
}

/* スクロール後に付与するクラス */
.sp-footer-cta.is-show {
    display: flex;
    transform: translateY(0);
}

.cta-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
}

/* 電話ボタン：メインのピンク */
.cta-tel {
    background-color: #f97a7a;
}

/* お問い合わせ：少し濃い赤 */
.cta-mail {
    background-color: #d87d7d;
}

.cta-item i {
    font-size: 20px;
    margin-bottom: 3px;
}

/* PCサイズでは完全に除外 */
@media screen and (min-width: 1151px) {
    .sp-footer-cta {
        display: none !important;
    }
}


/* --- プライバシーポリシー 独自スタイル --- */

.privacy-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    line-height: 2;
}

/* 導入文 */
.priv-intro {
    font-size: 16px;
    color: #333;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #f97a7a;
}

/* 各セクション */
.priv-section {
    margin-bottom: 40px;
}

/* 見出し：1．個人情報の利用目的など */
.priv-title {
    font-size: 20px;
    color: #b33e3e; /* 濃い赤 */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.priv-title::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 1.2em;
    background: #f97a7a; /* メインのピンク */
    margin-right: 12px;
    border-radius: 3px;
}

/* 本文テキスト */
.priv-txt {
    font-size: 15px;
    color: #444;
    padding-left: 18px; /* 見出しの棒線に合わせる */
}

/* リスト形式 */
.priv-list {
    margin-top: 15px;
    padding-left: 38px;
}

.priv-list li {
    list-style-type: disc;
    color: #666;
    margin-bottom: 8px;
    font-size: 15px;
}

/* リンク（Google規約など） */
.priv-section a {
    color: #f97a7a;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.priv-section a:hover {
    opacity: 0.7;
}

/* フッター（改訂日・社名） */
.priv-footer-info {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #fcf1f1;
    text-align: right;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

.priv-footer-info p:first-child {
    margin-bottom: 15px;
    color: #999;
    font-size: 13px;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .privacy-content {
        padding: 25px 20px;
    }
    
    .priv-title {
        font-size: 18px;
    }
    
    .priv-txt, .priv-list li {
        font-size: 14px;
        padding-left: 0;
    }

    .priv-list {
        padding-left: 20px;
    }
}


.logo img {
    height: 70px;
	width: auto;
}

.catch-text{
	line-height: 2.4;
}

.access-text{
	margin-bottom: 20px;
}

/* 電話コンタクトエリア */
.top-contact-wrapper {
    position: relative;
    z-index: 20;
background-color: #f8f3e8;
    padding: 40px 0 0 0;
}

.contact-card {
    background: #fff;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* 柔らかな影 */
    border-top: 4px solid #f97a7a; /* 上部にメインカラーのライン */
}

/* 左側：メッセージエリア */
.contact-card-info {
    flex: 1;
}

.emergency-badge {
    display: inline-block;
    background: #fdf5f5;
    color: #f97a7a;
    font-size: 20px;
    padding: 4px 15px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.contact-card-desc {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* 右側：電話ボタンエリア */
.contact-card-link {
    display: block;
    text-align: right;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-card-link:hover {
    opacity: 0.8;
}

.tel-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tel-prefix {
    color: #f97a7a;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
}

.tel-prefix i {
    margin-right: 5px;
}

.tel-number-main {
    font-size: 66px;
    font-family: 'Oswald', sans-serif;
    color: #f97a7a;
    line-height: 1;
    font-weight: 600;
}

.tel-sub-text {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

/* タブレット・スマホ対応 */
@media screen and (max-width: 900px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
.catch-section {
    background-color: #f9f3e7;
	padding: 30px 0 0 0;
	}
    .contact-card-info {
        margin-bottom: 20px;
    }

    .tel-text-group {
        align-items: center;
    }

    .tel-number-main {
        font-size: 40px;
    }
}

@media screen and (max-width: 480px) {
    .tel-number-main {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
	
.logo img {
    height: 50px;
	width: auto;
}
	
	
@media screen and (max-width: 500px) {
	
.logo img {
    height: 45px;
	width: auto;
}
	
}