/* ========================================
   ヘッダー基本スタイル
======================================== */
.hed-space {
	width: auto;
	min-width: auto;
	align-items: center;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0 0 0 15px;
}

#logo {
	margin-top: 25px;
}

/* ========================================
   グローバルメニュー
======================================== */
#gloval_menu_main ul {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
	margin-bottom: 1em;
}

#gloval_menu_main ul li a {
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	letter-spacing: 2px;
}
#gloval_menu_main ul ul{
	display: block;
}

/* ========================================
   コンテンツバー
======================================== */
#contents_bar ul {
	display: flex;
	align-items: center;
}

#contents_bar .c-menu02 a {
	margin-top: 0;
}

/* ========================================
   カラーチェンジ時のスタイル
======================================== */
.change-color .hed-space {
	width: 95%;
	min-width: auto;
}

.change-color #gloval_menu_main a {
	color: #000;
	font-size: 1.1vw;
}

.change-color #contents_bar .c-menu02 a {
	margin: 0 5px;
}

/* ========================================
   レスポンシブ対応（1280px以下）
======================================== */
@media (max-width: 1280px) {
	/* ロゴの調整 */
	#logo {
		width: 80px;
		height: auto;
		min-height: 85px;
	}
	
	/* グローバルメニューを2行表示に */
	#gloval_menu_main ul {
		justify-content: center;
		gap: 30px;
	}
	
	#gloval_menu_main ul li {
		/* flex: 0 0 30%; */
		text-align: center;
		margin: 0;
	}
	
	#gloval_menu_main ul li a {
		font-size: 18px;
	}
	
	/* メニュー07を非表示 */
	#gloval_menu .c-menu07 {
		display: none;
	}
}

/* ========================================
   メインスライダーのスタイル
======================================== */

.slick-slider1 {
    position: relative;
    width: 100%;
    height: 98vh;
    margin-right: 7%;
    border-bottom-right-radius: 46px;
    overflow: hidden;
}

/* slickの高さ調整 */
.slick-slider1 .slick-list,
.slick-slider1 .slick-track {
    height: 100%;
}

.slick-slider1 .slick-slide {
    height: 98vh;
}

@media print, screen and (min-width: 737px) {
    .slick-slider1,
    .slick-slider1 .slick-slide {
        height: auto;
    }
}

/* スライド内の画像設定 */
.slick-slider1 .slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slick-slider1 .slider-img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.slick-slider1 .slider-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.26);
    pointer-events: none;
}

.slick-slider1 .slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}



/* ドットナビゲーション */
.slick-slider1 .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.slick-slider1 .slick-dots li button:before {
    color: #fff;
    opacity: 0.5;
    font-size: 12px;
}

.slick-slider1 .slick-dots li.slick-active button:before {
    opacity: 1;
}

/* 矢印を非表示 */
.slick-slider1 .slick-prev,
.slick-slider1 .slick-next {
    display: none;
}

/* main-conenntのz-indexを確保 */
.main-comennt {
    width: 40%;
	max-width: 400px;
	left: auto;
	top: auto;
    bottom: 4%;
    right: 2%;
    transform:none;
    margin-left: 0;
}
@media (max-width: 1280px) {
	.main-comennt {
	  width: 100%;
	  right: 4%;
	}
}
.slick-slider1 .slider-img::after{
	display: none;
}
.slider-img img{
	border-radius: 0;
}


@media print, screen and (min-width: 737px) {
    .foot-right {
        width: 80%;
    }
}

.pankuzutittle h2{
	font-size: 40px;
}


/* ========================================
   ドロップダウンナビゲーション
======================================== */
@media print, screen and (min-width: 737px) {
    .dropdown-parent {
        position: relative;
        display: inline-block;
    }

    .dropdown-parent > a {
        position: relative;
        display: flex;
        align-items: center;
    }

    .dropdown-arrow {
        margin-left: 5px;
        font-size: 12px;
        transition: transform 0.3s ease;
        position: absolute;
        bottom: -20px;
        left: 30%;
    }

    .dropdown-parent:hover .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 200px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        border-radius: 4px;
        overflow: hidden;
        border: 1px solid #eee;
		margin-top: 1em;
    }

    .dropdown-parent:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu li {
        list-style: none;
        margin: 0;
    }

    .dropdown-menu a {
        display: block !important;
        padding: 12px 20px !important;
        text-decoration: none;
        color: #333 !important;
        border-bottom: 1px solid #f0f0f0;
        transition: background-color 0.3s ease;
        font-size: 14px !important;
        height: auto !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }

    .dropdown-menu a:hover {
        background-color: #f8f9fa !important;
        color: #ef754d !important;
    }

    .dropdown-menu li:last-child a {
        border-bottom: none;
    }
}

@media screen and (min-width: 0px) and (max-width: 736px) {
    .mobile-dropdown {
        position: relative;
    }

    .mobile-dropdown > a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-dropdown-arrow {
        font-size: 12px;
        transition: transform 0.3s ease;
        margin-left: auto;
    }

    .mobile-dropdown.active .mobile-dropdown-arrow {
        transform: rotate(180deg);
    }

    .mobile-dropdown-content {
        max-height: 0;
        overflow: hidden;
        background-color: #f0f0f0;
        transition: max-height 0.3s ease;
    }

    .mobile-dropdown.active .mobile-dropdown-content {
        max-height: 200px;
    }

    .mobile-dropdown-content a {
        padding-left: 35px !important;
        border-top: 1px solid #e0e0e0 !important;
        background-color: #f8f9fa !important;
        color: #666 !important;
        font-size: 11pt !important;
    }

    .mobile-dropdown-content a:hover {
        background-color: #eeeeee !important;
        color: #ef754d !important;
    }
}

/* ページ修正　*/

.ex-photo {
    width: 100%;
    max-width: 1100px;
    height: 30vw;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    display: block;
    margin: 2em auto 0;
}

.packdato{
    text-align: center;
    font-size: 24px;
    margin: 1em  auto 2em auto;
    font-weight: bold;
    color: #ffa800;
}
.pc-spacer{
    padding: 0 20px;
}
@media screen and (min-width: 0px) and (max-width: 736px) {
    .pc-spacer{
        width: 100%;
        padding: 10px 0;
        display: block;
    }
}

.foot-menu li{
    width: 25% !important;
}

/* plan ----------------------------------------------------*/


/* menu */
    .page-menu{
        width: 70%;
        margin: 0 auto;
    }
    .page-menu ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        font-family: 'YakuHanJP', 'Noto Sans JP', sans-serif;
        gap: 10px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-menu ul li {
        text-align: center;
        
    }

    .page-menu ul li a {
        display: block;
        background-color: #D4B5A0; /* 画像に合わせたベージュ色 */
        color: #FFF;
        padding: 20px 30px;
        font-size: 13pt;
        text-decoration: none;
        transition: background-color 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .page-menu ul li a::before{
        content: "▶";
        font-size: 10px;
        margin-right: 10px;
    }
    .page-menu ul li a:hover:before{
        content: "▼";
        font-size: 10px;
        margin-right: 10px;
    }

    .page-menu ul li:last-child {
        grid-column: 1 / -1;
    }

    .page-menu ul li a:hover {
        background: #F05827;
    }

    /* スマホ対応（1列表示） */
    @media (max-width: 768px) {
        .page-menu{
            width: 90%;
        }
        .page-menu ul {
            grid-template-columns: 1fr;
        }
        
        .page-menu ul li:last-child {
            grid-column: auto;
        }
    }

/* 画像 + テキスト説明文*/

.plan .tows{
    align-items: center;
}
    .plans{
        margin-bottom: 3em;
    }
        .plans-detail {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
            gap: 30px;
            width: 100%;
        }

        .plans-detail img {
            width: 100%;
            object-fit: cover;
        }

        .plans-detail-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0;
        }

        .plans-detail-text h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .plans-detail-text p {
            font-size: 14px;
            line-height: 1.8;
            color: #555;
        }

        /* PC版：交互配置 */
        @media (min-width: 768px) {
            .plans-detail {
                display: grid;
                grid-template-columns: 0.3fr 0.7fr;
                gap: 50px;
                align-items: center;
            }

            .plans-detail:nth-child(even) {
                direction: rtl;
            }

            .plans-detail:nth-child(even) > * {
                direction: ltr;
            }

            .plans-detail-text {
                padding: 30px;
            }

            .plans-detail-text h3 {
                font-size: 20px;
            }

            .plans-detail-text p {
                font-size: 15px;
            }
        }

        .plan-images{
            margin-bottom: 20px;
        }
        .plan-images img{
            max-width: 100%;
        }
        .plan-images p {
            display: flex;
            height: 50px;
            align-items: center;
        }
        .plan-images p svg{
            width: 120px;
            height: auto;
        }
        .plan-images p img{
            width: 80px;
            height: auto;
        }


.text-center{
	text-align: center;
}
.text-left{
	text-align: left;
}
.d-block{
	display: block;
}
.w100{
	width: 100% !important;
}
.mb-0{
	margin-bottom: 0px !important;
}
.mb-1{
    margin-bottom: 1em !important;
}
.pac-flex{
	width: 49%;
}
@media screen and (min-width: 0px) and (max-width: 768px) {
	.pac-flex{
		width: 100%;
	}
}

.marufuki2{
    position:relative !important;
    top: 0 !important;
    left: 0 !important;
    margin: 2em 0  !important;
}


