@charset "utf-8";

/* ========================================
   0.header
   1-1.hero
   1-2.コンセプトセクション
   1-3.特徴セクション
   1-4.料金セクション
   1-5.Flowセクション
   1-6.予約セクション
   7.フッター
   ======================================== */



/* 共有 */

html{
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    padding-top: 80px; /* ヘッダーの高さ分のパディング */
}

a{
    text-decoration: none;
	transition: 0.5s; 
}
a:hover {
	opacity: 0.7;
}

img{
    width: 100%;
    vertical-align: top;
}
p{
    color: black;
}
#pc_only{
    display: block;
}
#sp_only {
	display: none;
}
@media screen and (max-width: 768px) {
    #pc_only {
        display: none;
    }
    #sp_only {
        display: block;
    }
}

/* ========================================
   0.header
======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 30px;
    margin: 0 30px;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #4CAF50;
    opacity: 1;
}

.reservation-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    min-width: 120px;
    gap: 5px;
}

.reservation-btn:hover {
    background-color: #45a049;
    opacity: 1;
}

.calendar-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    display: block;
}

.btn-text {
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    color: white;
}

/* ハンバーガーボタン（SP版のみ表示） */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
}

.hamburger-btn.active .hamburger-line {
    background-color: black;
}

/* スライドメニュー（右から左へ） */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: #ffffff;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.slide-menu.active {
    right: 0;
}

.slide-nav-list {
    list-style: none;
    margin: 0;
    padding: 120px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slide-nav-list li {
    margin: 0;
}

.slide-nav-list a {
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.slide-nav-list a:hover {
    color: #4CAF50;
    opacity: 1;
}

.sp-reservation-btn {
    margin-top: 20px;
    width: 100%;
    max-width: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 24px;
}

.sp-reservation-btn .calendar-icon {
    margin: 0 auto;
}

.sp-reservation-btn .btn-text {
    text-align: center;
}

/* ボディスクロールロック */
body.is-active {
    overflow: hidden;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    /* PC版ナビゲーションを非表示 */
    .pc-nav,
    .pc-reservation-btn {
        display: none;
    }
    
    /* ハンバーガーボタンを表示 */
    .hamburger-btn {
        display: flex;
    }
    
    /* スライドメニューとオーバーレイを表示 */
    .menu-overlay,
    .slide-menu {
        display: block;
    }
}

/* ========================================
   1-1.heroセクション
   ======================================== */

.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

/* ヒーロー画像のズームダウンアニメーション */
.hero-zoom-down {
    transform: scale(1.2);
    transform-origin: center center;
    opacity: 0.8;
}

.hero-zoom-down.zoom-animated {
    animation: zoomDown 3s ease-out forwards;
}

@keyframes zoomDown {
    0% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 600px;
}

.hero-deco {
    position: absolute;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.hero-deco-1 {
    bottom: 100px;
    left: 20%;
    width: 120px;
    opacity: 0.8;
    animation-delay: 0s;
}

.hero-deco-2 {
    bottom: 0px;
    right: 20%;
    width: 100px;
    opacity: 0.7;
    animation-delay: 1.5s;
}

.hero-deco img {
    width: 100%;
    height: auto;
}

/* ふわふわ浮くアニメーション */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title-section {
    padding: 40px;
}

.hero-service-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ヒーローサービスセクションのフェードインアニメーション */
.hero-service-fadein {
    opacity: 0;
    transform: translateY(20px);
}

.hero-service-fadein.fadein-animated {
    animation: fadeInUp 2s ease-out forwards;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #4CAF50;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 20px;
    color: #333333;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.hero-service {
    margin-bottom: 30px;
}

.service-label {
    font-size: 18px;
    color: #333333;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.service-label-en {
    font-size: 16px;
    color: #666666;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-time,
.info-price {
    font-size: 18px;
    color: #333333;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.info-price {
    color: #4CAF50;
    font-weight: 600;
}

/* heroセクション レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }
    .hero-image{
        height: 70vh;
    }
    .hero-container {
        min-height: 500px;
        padding: 40px 20px;
        justify-content: center;
        bottom: -300px;
    }
    
    .hero-content {
        max-width: 100%;
        gap: 20px;
    }
    
    .hero-title-section,
    .hero-service-section {
        padding: 10px 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-deco-1 {
        width: 80px;
        bottom: -10px;
        left: -15px;
    }
    
    .hero-deco-2 {
        width: 70px;
        top: 70%;
        right: -10px;
    }
    
    .hero-info {
        align-items: center;
    }
}

/* ========================================
   1-2.コンセプトセクション
   ======================================== */

.concept {
    padding: 100px 0;
    background-color: #ffffff;
}

.concept-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.concept-left {
    position: relative;
}

.concept-header {
    margin-bottom: 40px;
}

.concept-title {
    font-size: 64px;
    font-weight: 700;
    color: #4CAF50;
    margin: 0 0 10px 0;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

/* コンセプトタイトルの左から右へのスライドインアニメーション */
.concept-title-fadein {
    transform: translateX(-50px);
}

.concept-title-fadein.fadein-animated {
    animation: slideInLeft 1.5s ease-out forwards;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-50px);
    }
    100% {
        transform: translateX(0);
    }
}

.concept-subtitle {
    font-size: 20px;
    color: #333333;
    margin: 0;
    font-weight: 500;
}

.concept-text {
    margin-bottom: 60px;
}

.concept-text p {
    font-size: 16px;
    line-height: 2;
    color: #333333;
    margin: 0;
}

.concept-deco-left {
    position: absolute;
    bottom: -100px;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    right: 0px;
}

.concept-leaf-small {
    width: 80px;
    height: auto;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0s;
}

.concept-leaf-large {
    width: 120px;
    height: auto;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.concept-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* コンセプト右セクションのフェードインアニメーション */
.concept-right-fadein {
    opacity: 0;
    transform: translateX(30px);
}

.concept-right-fadein.fadein-animated {
    animation: fadeInRight 2s ease-out forwards;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.concept-image-main {
    width: 50%;
    margin: auto;
    margin-left: auto;
}

.concept-image-main img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.concept-image-sub {
    width: 100%;
    max-width: 300px;
    margin-right: auto;
}

.concept-image-sub img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* コンセプトセクション レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .concept {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .concept-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .concept-title {
        font-size: 48px;
    }
    
    .concept-subtitle {
        font-size: 18px;
    }
    
    .concept-text {
        margin-bottom: 40px;
    }
    
    .concept-deco-left {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 30px;
        justify-content: center;
    }
    
    .concept-image-main,
    .concept-image-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ========================================
   1-3.特徴セクション
   ======================================== */

.features {
    position: relative;
    overflow: hidden;
}

.features-container {
    position: relative;
}

/* 上部セクション（白背景） */
.features-top {
    position: relative;
    background-color: #ffffff;
    padding: 80px 20px 100px;
    min-height: 500px;
    width: 500px;
    margin: auto;
}

.features-top-deco {
    position: absolute;
    z-index: 1;
    right: -100px;
    bottom: -100px;
}

.features-leaf-icon {
    width: 200px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.features-grid {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-box {
    background-color: #2d5016;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* 下部セクション（ぼかした緑背景） */
.features-bottom {
    position: relative;
    background: linear-gradient(to bottom, rgba(76, 175, 80, 0.1), rgba(45, 80, 22, 0.2));
    padding: 150px 20px 100px;
    min-height: 400px;
    overflow: hidden;
}

.features-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 80, 22, 0.2) 0%, transparent 50%);
    filter: blur(20px);
    z-index: 0;
}

.features-bottom-deco {
    height: 200px;
}

.features-branch {
    width: 100%;
    height: auto;
    display: block;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.2s;
}

/* 特徴セクション レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .features-top {
        padding: 60px 20px 80px;
        min-height: auto;
        width: auto;
    }
    
    .features-top-deco {
        right: 30px;
        bottom: -50px;
    }
    
    .features-leaf-icon {
        width: 120px;
    }
    
    .features-grid {
        gap: 20px;
        max-width: 100%;
    }
    
    .feature-box {
        padding: 10px 15px;
        min-height: 160px;
    }
    
    .feature-icon img {
        width: 50px;
        height: 50px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .features-bottom {
        padding: 100px 20px 80px;
        min-height: 300px;
    }
    
    .features-bottom-deco {
        height: auto;
    }
}

/* ========================================
   1-4.料金セクション
   ======================================== */

.price {
    position: relative;
    background-color: #f5f5f5;
    padding: 100px 0;
    overflow: hidden;
}

.price-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.price-header {
    margin-bottom: 60px;
}

.price-title {
    font-size: 64px;
    font-weight: 700;
    color: #4CAF50;
    margin: 0 0 10px 0;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

/* 料金タイトルの左から右へのスライドインアニメーション */
.price-title-slidein {
    transform: translateX(-50px);
}

.price-title-slidein.slidein-animated {
    animation: slideInLeft 1.5s ease-out forwards;
}

.price-subtitle {
    font-size: 20px;
    color: #333333;
    margin: 0;
    font-weight: 500;
}

.price-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0;
    z-index: 2;
}

.price-image-wrapper {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 1;
}

/* 料金画像の左から右へのフェードインアニメーション */
.price-image-fadein {
    opacity: 0;
    transform: translateX(-30px);
}

.price-image-fadein.fadein-animated {
    animation: fadeInLeft 2s ease-out forwards;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.price-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.price-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-left: -100px;
    z-index: 3;
    position: relative;
    flex: 1;
    max-width: 500px;
}

/* 料金ボックスの下から上へのフェードインアニメーション */
.price-box-fadein {
    opacity: 0;
    transform: translateY(30px);
}

.price-box-fadein.fadein-animated {
    animation: fadeInUp 2s ease-out forwards;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.price-col-header-decoi{
    border-bottom: 2px solid #e0e0e0;
}
.price-col-header {
    text-align: left;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    border-bottom: 2px solid #e0e0e0;
    text-align: right;
}

.price-col-header:first-child {
    width: 40%;
}

.time-service-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.time-service-header > span {
    font-size: 16px;
    font-weight: 600;
}

.time-service-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.price-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-service {
    padding: 20px 0;
    font-size: 16px;
    color: #333333;
    font-weight: 500;
}

.price-amount {
    padding: 20px 10px;
    font-size: 16px;
    color: #333333;
    text-align: right;
    font-weight: 500;
}

.price-more {
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.more-link {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: #4CAF50;
}

.arrow {
    font-size: 18px;
}

/* 装飾要素 */
.price-deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    animation: float 3s ease-in-out infinite;
}

.price-deco-top-right {
    top: 40px;
    right: 40px;
    width: 80px;
    opacity: 0.6;
    animation-delay: 0s;
}

.price-deco-bottom-left {
    left: 40px;
    width: 150px;
    opacity: 0.7;
    z-index: 2;
    animation-delay: 1s;
}

.price-deco-bottom-right {
    bottom: 40px;
    right: 40px;
    width: 120px;
    opacity: 0.8;
    animation-delay: 2s;
}

.price-deco img {
    width: 100%;
    height: auto;
}

/* 料金セクション レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .price {
        padding: 60px 0;
    }
    
    .price-header {
        margin-bottom: 40px;
    }
    
    .price-title {
        font-size: 48px;
    }
    
    .price-subtitle {
        font-size: 18px;
    }
    
    .price-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .price-image-wrapper {
        max-width: 100%;
        order: 1;
    }
    
    .price-box {
        width: 90%;
        margin-left: 0;
        order: 2;
        padding: 5%;
    }
    
    .price-table {
        font-size: 14px;
    }
    
    .price-service,
    .price-amount {
        padding: 15px 5px;
        font-size: 14px;
    }
    
    .price-col-header {
        font-size: 14px;
    }
    
    .time-service-header > span {
        font-size: 14px;
    }
    
    .time-service-details {
        font-size: 12px;
    }
    
    .price-deco-top-right {
        top: 20px;
        right: 20px;
        width: 60px;
    }
    
    .price-deco-bottom-left {
        bottom: 20px;
        left: 20px;
        width: 80px;
        z-index: 2;
    }
    
    .price-deco-bottom-right {
        bottom: -100px;
        right: 20px;
        width: 100px;
    }
}

/* ========================================
   1-5.Flowセクション
   ======================================== */

.flow {
    background-color: #f5f5f0;
    padding: 100px 0;
}

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


.flow-item {
    position: relative;
}

/* 左上: Flowタイトルと画像 */
.flow-item-1 {
    grid-column: 1;
    grid-row: 1;
}

.flow-header {
    margin-bottom: 30px;
}

.flow-title {
    font-size: 64px;
    font-weight: 700;
    color: #2d5016;
    margin: 0 0 10px 0;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

/* Flowタイトルの左から右へのスライドインアニメーション */
.flow-title-slidein {
    transform: translateX(-50px);
}

.flow-title-slidein.slidein-animated {
    animation: slideInLeft 1.5s ease-out forwards;
}

.flow-subtitle {
    font-size: 20px;
    color: #333333;
    margin: 0;
    font-weight: 500;
}

.flow-image-top {
    width: 100%;
}

.flow-image-top img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Flow画像の左から右へのフェードインアニメーション */
.flow-image-fadein {
    opacity: 0;
    transform: translateX(-30px);
}

.flow-image-fadein.fadein-animated {
    animation: fadeInLeft 2s ease-out forwards;
}

/* Flow画像の右から左へのフェードインアニメーション */
.flow-image-fadein-right {
    opacity: 0;
    transform: translateX(30px);
}

.flow-image-fadein-right.fadein-animated {
    animation: fadeInRight 2s ease-out forwards;
}

/* 右上: 予約 */
.flow-item-2 {
    grid-column: 2;
    grid-row: 1;
    position: relative;
}

.flow-reservation-wrapper {
    display: flex;
    align-items: flex-start;
    margin: 100px 0;
    justify-content: space-around;
}

.flow-image-top {
    flex: 0 0 45%;
    max-width: 45%;
}

.flow-image-top img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.flow-reservation-content {
    flex: 0.7;
    position: relative;
}

.flow-section-title {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 30px 0;
}

.flow-reservation {
    position: relative;
}

.flow-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin: 0 0 15px 0;
}

.flow-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.flow-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.flow-link:hover {
    color: #4CAF50;
}

.flow-link-icon {
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.flow-link-text {
    flex: 0.3;
}

.flow-link-arrow {
    font-size: 18px;
    color: #4CAF50;
}

.flow-deco-reservation {
    position: absolute;
    top: -20px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
}

.flow-deco-leaf-1 {
    width: 60px;
    height: auto;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0s;
}

.flow-deco-leaf-2 {
    width: 80px;
    height: auto;
    opacity: 0.8;
    margin-left: 20px;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* 左下: ご来店 */
.flow-item-3 {
    grid-column: 1;
    grid-row: 2;
    position: relative;
}

.flow-visit {
    position: relative;
}

.flow-deco-visit {
    position: absolute;
    bottom: -100px;
    left: -30px;
    z-index: 1;
}

.flow-deco-branch {
    width: 150px;
    height: auto;
    opacity: 0.8;
    transform: rotate(-15deg);
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.8s;
}

/* 右下: 画像 */
.flow-item-4 {
    grid-column: 2;
    grid-row: 2;
}

.flow-image-bottom {
    width: 100%;
}

.flow-image-bottom img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Flowセクション レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .flow {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .flow-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 40px;
    }
    
    .flow-item-1 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .flow-item-2 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .flow-reservation-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .flow-image-top {
        flex: 1;
        max-width: 100%;
    }
    
    .flow-item-3 {
        grid-column: 1;
        grid-row: 3;
    }
    
    .flow-item-4 {
        grid-column: 1;
        grid-row: 4;
    }
    
    .flow-title {
        font-size: 48px;
    }
    
    .flow-subtitle {
        font-size: 18px;
    }
    
    .flow-section-title {
        font-size: 24px;
    }
    
    .flow-text {
        font-size: 14px;
    }
    
    .flow-link {
        font-size: 14px;
        gap: 0;
        background-color: #c7db57a6;
        border-radius: 30px;
        padding: 5px 10px;
    }
    .flow-links{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .flow-link-text {
        flex: 1;
        margin: 0 15px;
    }
    
    .flow-deco-reservation {
        top: -10px;
        right: -10px;
    }
    
    .flow-deco-leaf-1 {
        width: 40px;
    }
    
    .flow-deco-leaf-2 {
        width: 60px;
        margin-left: 10px;
    }
    
    .flow-deco-visit {
        bottom: -50px;
        left: 200px;
    }
    
    .flow-deco-branch {
        width: 120px;
    }
}

/* ========================================
   1-6.予約セクション
   ======================================== */

.reserve {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.reserve-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.reserve-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reserve-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.reserve-content {
    text-align: center;
    color: #ffffff;
}

.reserve-title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.reserve-subtitle {
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 40px 0;
    font-weight: 500;
}

.reserve-text {
    margin-bottom: 50px;
}

.reserve-text p {
    font-size: 18px;
    line-height: 2;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.reserve-button {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.reserve-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
    opacity: 1;
}

/* 予約セクション レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .reserve {
        min-height: 400px;
    }
    
    .reserve-container {
        padding: 60px 20px;
        min-height: 400px;
    }
    
    .reserve-title {
        font-size: 48px;
    }
    
    .reserve-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .reserve-text p {
        font-size: 16px;
    }
    
    .reserve-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* ========================================
   7.フッター
   ======================================== */

.footer {
    background-color: #2d5016;
    padding: 60px 0;
    color: #ffffff;
}

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

.footer-left {
    flex: 1;
}

.footer-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 30px 0;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-address,
.footer-tel {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-nav {
    display: flex;
    align-items: center;
}

.footer-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-nav-list li {
    margin: 0;
}

.footer-nav-list a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav-list a:hover {
    opacity: 0.7;
}

/* フッター レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .footer-address,
    .footer-tel {
        font-size: 14px;
    }
    
    .footer-right {
        justify-content: flex-start;
    }
    
    .footer-nav-list {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-nav-list a {
        font-size: 14px;
    }
}

/* ========================================
   8.企業情報バナーセクション
   ======================================== */

.company-banner {
    position: relative;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
}

.company-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.company-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.company-banner-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.company-banner-content {
    text-align: center;
}

.company-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.company-title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.company-title::after {
    content: '';
    display: inline-block;
    width: 90px;
    height: 80px;
    background-image: url("../images/company-title-decoi.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.company-subtitle {
    font-size: 24px;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* 企業情報バナーセクション レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .company-banner {
        min-height: 250px;
    }
    
    .company-banner-container {
        padding: 60px 20px;
        min-height: 250px;
    }
    
    .company-title {
        font-size: 48px;
    }
    
    .company-title::after {
        width: 60px;
        height: 60px;
        margin-left: 10px;
    }
    
    .company-subtitle {
        font-size: 20px;
    }
    
    .company-title-wrapper {
        gap: 10px;
    }
}

/* ========================================
   9.社長挨拶セクション
   ======================================== */

.greeting {
    background-color: #ffffff;
    padding: 100px 0;
}

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

.greeting-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: start;
    position: relative;
}

.greeting-image-wrapper {
    position: relative;
}

.greeting-image {
    width: 100%;
    height: auto;
    background-color: #d9d9d9;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

/* 社長挨拶画像の下から上へのフェードインアニメーション */
.greeting-image-fadein {
    opacity: 0;
    transform: translateY(30px);
}

.greeting-image-fadein.fadein-animated {
    animation: fadeInUp 2s ease-out forwards;
}

.greeting-text-wrapper {
    position: relative;
    padding-top: 20px;
}

.greeting-title {
    font-size: 48px;
    font-weight: 700;
    color: #4a8a4a;
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

/* 社長挨拶タイトルの左から右へのスライドインアニメーション */
.greeting-title-slidein {
    transform: translateX(-50px);
}

.greeting-title-slidein.slidein-animated {
    animation: slideInLeft 1.5s ease-out forwards;
}

.greeting-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 30px 0;
}

.greeting-text {
    font-size: 16px;
    line-height: 2;
    color: #333333;
}

.greeting-text p {
    margin: 0;
}

/* 装飾要素 */
.greeting-deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    animation: float 3s ease-in-out infinite;
}

.greeting-deco-top-left {
    top: -30px;
    left: -30px;
    width: 80px;
    opacity: 0.7;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.greeting-deco-bottom-left {
    bottom: -40px;
    left: -20px;
    width: 100px;
    opacity: 0.8;
    animation-delay: 1s;
    transform: rotate(10deg);
}

.greeting-deco-right {
    top: 50%;
    right: -40px;
    width: 90px;
    opacity: 0.7;
    animation-delay: 1.5s;
    transform: rotate(20deg);
}

.greeting-deco-bottom-right {
    bottom: -50px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation-delay: 2s;
}

.greeting-deco-small-1 {
    width: 60px;
    height: auto;
    opacity: 0.7;
    transform: rotate(-10deg);
}

.greeting-deco-small-2 {
    width: 50px;
    height: auto;
    opacity: 0.6;
    margin-left: 20px;
    transform: rotate(15deg);
}

.greeting-deco img {
    width: 100%;
    height: auto;
}

/* 社長挨拶セクション レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .greeting {
        padding: 60px 0;
    }
    
    .greeting-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .greeting-image {
        min-height: 300px;
    }
    
    .greeting-title {
        font-size: 36px;
    }
    
    .greeting-subtitle {
        font-size: 20px;
    }
    
    .greeting-text {
        font-size: 14px;
    }
    
    .greeting-deco-top-left {
        top: -20px;
        left: -15px;
        width: 60px;
    }
    
    .greeting-deco-bottom-left {
        bottom: -20px;
        left: -10px;
        width: 80px;
    }
    
    .greeting-deco-right {
        top: auto;
        bottom: -70px;
        right: -15px;
        width: 70px;
    }
    
    .greeting-deco-bottom-right {
        bottom: 200px;
        right: -10px;
    }
    
    .greeting-deco-small-1 {
        width: 50px;
    }
    
    .greeting-deco-small-2 {
        width: 40px;
        margin-left: 10px;
    }
}

/* ========================================
   10.会社情報セクション
   ======================================== */

.company-info {
    background-color: #ffffff;
    padding: 100px 0;
}

.company-info-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.company-info-header {
    text-align: center;
    margin-bottom: 60px;
}

.company-info-title {
    font-size: 48px;
    font-weight: 700;
    color: #4CAF50;
    margin: 0 0 10px 0;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

/* 企業情報タイトルの下から上へのフェードインアニメーション */
.company-info-title-fadein {
    opacity: 0;
    transform: translateY(30px);
}

.company-info-title-fadein.fadein-animated {
    animation: fadeInUp 2s ease-out forwards;
}

.company-info-subtitle {
    font-size: 20px;
    color: #666666;
    margin: 0;
    font-weight: 500;
}

.company-info-content {
    position: relative;
    width: 70%;
    margin: auto;
}

.company-info-table {
    width: 100%;
    border-collapse: collapse;
}

.company-info-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.company-info-table tr:last-child {
    border-bottom: none;
}

.company-info-label {
    width: 30%;
    padding: 25px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-align: left;
    vertical-align: top;
}

.company-info-value {
    padding: 25px 20px;
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

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

.company-info-list li {
    margin: 0 0 8px 0;
}

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

/* 装飾要素 */
.company-info-deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    animation: float 3s ease-in-out infinite;
}

.company-info-deco-top-right {
    top: -30px;
    right: -150px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation-delay: 0s;
}

.company-info-leaf-1 {
    width: 70px;
    height: auto;
    opacity: 0.7;
    transform: rotate(-10deg);
}

.company-info-leaf-2 {
    width: 80px;
    height: auto;
    opacity: 0.8;
    margin-left: 20px;
    transform: rotate(15deg);
}

.company-info-deco-bottom-left {
    bottom: -40px;
    left: -150px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation-delay: 1.5s;
}

.company-info-leaf-3 {
    width: 60px;
    height: auto;
    opacity: 0.7;
    transform: rotate(-15deg);
}

.company-info-leaf-4 {
    width: 50px;
    height: auto;
    opacity: 0.6;
    margin-left: 15px;
    transform: rotate(10deg);
}

.company-info-deco img {
    width: 100%;
    height: auto;
}
.company-map-container{
    margin-top: 100px;
}

/* 会社情報セクション レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .company-info {
        padding: 60px 0;
    }
    
    .company-info-header {
        margin-bottom: 40px;
    }
    
    .company-info-title {
        font-size: 36px;
    }
    
    .company-info-subtitle {
        font-size: 18px;
    }
    
    .company-info-label,
    .company-info-value {
        padding: 20px 15px;
        font-size: 14px;
    }
    
    .company-info-label {
        width: 35%;
    }
    
    .company-info-deco-top-right {
        top: -50px;
        right: -20px;
        gap: 10px;
    }
    
    .company-info-leaf-1 {
        width: 50px;
    }
    
    .company-info-leaf-2 {
        width: 60px;
        margin-left: 10px;
    }
    
    .company-info-deco-bottom-left {
        bottom: -120px;
        left: -15px;
        gap: 8px;
    }
    
    .company-info-leaf-3 {
        width: 45px;
    }
    
    .company-info-leaf-4 {
        width: 40px;
        margin-left: 10px;
    }
    .company-info-content {
        width: 100%;
    }
}

/* ========================================
   11.その他メニューセクション
   ======================================== */

.other-menus {
    background-color: #f5f5f0;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.other-menus-header {
    margin-bottom: 60px;
}

.other-menus-title {
    font-size: 48px;
    font-weight: 700;
    color: #4CAF50;
    margin: 0 0 10px 0;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

/* その他メニュータイトルの左から右へのスライドインアニメーション */
.other-menus-title-slidein {
    transform: translateX(-50px);
}

.other-menus-title-slidein.slidein-animated {
    animation: slideInLeft 1.5s ease-out forwards;
}

.other-menus-subtitle {
    font-size: 20px;
    color: #333333;
    margin: 0;
    font-weight: 500;
}

.other-menus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.other-menu-item {
    background-color: #2d5016;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* その他メニューアイテムの下から上へのフェードインアニメーション */
.other-menu-item-fadein {
    opacity: 0;
    transform: translateY(30px);
}

.other-menu-item-fadein.fadein-animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

.other-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.other-menu-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.other-menu-subname {
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 10px 0;
    opacity: 0.9;
    line-height: 1.4;
}

.other-menu-price {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* 背景の葉の透かし */
.other-menus-watermark {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.watermark-leaf {
    width: 400px;
    height: auto;
    display: block;
}

/* その他メニューセクション レスポンシブ対応 */
@media screen and (max-width: 1024px) {
    .other-menus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .other-menus {
        padding: 60px 0;
    }
    
    .other-menus-header {
        margin-bottom: 40px;
    }
    
    .other-menus-title {
        font-size: 36px;
    }
    
    .other-menus-subtitle {
        font-size: 18px;
    }
    
    .other-menus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .other-menu-item {
        padding: 25px 15px;
        min-height: 130px;
    }
    
    .other-menu-name {
        font-size: 16px;
    }
    
    .other-menu-subname {
        font-size: 12px;
    }
    
    .other-menu-price {
        font-size: 18px;
    }
    
    .other-menus-watermark {
        right: -50px;
    }
    
    .watermark-leaf {
        width: 250px;
    }
}


/* ========================================
   12.2回目以降セクション
   ======================================== */

.smooth-service {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.smooth-service-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.smooth-service-title {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin: 0 0 50px 0;
    line-height: 1.6;
}

.smooth-service-content {
    max-width: 800px;
    margin: 0 auto;
}

.smooth-service-text {
    font-size: 16px;
    line-height: 2.2;
    color: #333333;
    margin: 0 0 25px 0;
    text-align: left;
}

.smooth-service-text:last-child {
    margin-bottom: 0;
}

/* 装飾要素 */
.smooth-service-deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    animation: float 3s ease-in-out infinite;
}

.smooth-service-deco-bottom-left {
    bottom: -40px;
    left: -30px;
    width: 100px;
    opacity: 0.7;
    animation-delay: 0s;
    transform: rotate(-10deg);
}

.smooth-service-deco-bottom-right {
    bottom: -50px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation-delay: 1.5s;
}

.smooth-deco-leaf-large {
    width: 90px;
    height: auto;
    opacity: 0.8;
    transform: rotate(15deg);
}

.smooth-deco-leaf-small {
    width: 60px;
    height: auto;
    opacity: 0.7;
    margin-left: 20px;
    transform: rotate(-10deg);
}

.smooth-service-deco img {
    width: 100%;
    height: auto;
}

/* 2回目以降セクション レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .smooth-service {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .smooth-service-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .smooth-service-text {
        font-size: 14px;
        line-height: 2;
    }
    
    .smooth-service-deco-bottom-left {
        bottom: -20px;
        left: -15px;
        width: 80px;
    }
    
    .smooth-service-deco-bottom-right {
        bottom: -30px;
        right: -10px;
    }
    
    .smooth-deco-leaf-large {
        width: 70px;
    }
    
    .smooth-deco-leaf-small {
        width: 50px;
        margin-left: 10px;
    }
}

/* ========================================
   13.FAQセクション
   ======================================== */

.faq {
    background-color: #ffffff;
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    display: flex;
    flex-direction: column;
}

.faq-question {
    background-color: #2d5016;
    padding: 25px 30px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-q-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #2d5016;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.faq-answer {
    background-color: #ffffff;
    padding: 25px 30px;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.faq-a-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #4CAF50;
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-answer-text {
    flex: 1;
}

.faq-answer-text p {
    font-size: 16px;
    line-height: 2;
    color: #333333;
    margin: 0;
}

.faq-answer-text a {
    color: #4CAF50;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-answer-text a:hover {
    color: #45a049;
    opacity: 1;
}

/* FAQセクション レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-list {
        gap: 20px;
    }
    
    .faq-question,
    .faq-answer {
        padding: 20px 15px;
    }
    
    .faq-q-mark,
    .faq-a-mark {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-answer-text p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .faq-question,
    .faq-answer {
        gap: 15px;
    }
}

