@charset "UTF-8";
   /* =========================================
       Base & Layout adjustments
    ========================================= */
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
        color: #111;
        line-height: 1.65;
        background-color: #fff;
		font-feature-settings: "palt";
    }
	a[href] {color: #111;}
	
    .custom-container {
        width: calc(100% - 40px);
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }
	.custom-container p{
		font-size: 16px;
		text-align: center;
	}
	.custom-container .txt{
		font-size: 13px;
		color: #454545;
	}
	.custom-container dl{
		border: 1px solid #ddd;
		padding: 15px 20px; 
		margin: 10px 0;
		display: flex;
	}
	.custom-container dl dt{
		white-space: nowrap;
		margin: 0 10px 0 0;
		font-size: 15px;
		font-weight: bold;
	}
    .custom-section {
        padding: 80px 20px;
    }
    .bg-light-blue {
        background-color: #f4f7f9;
    }
    .custom-section-title {
        text-align: center;
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 40px;
    }
    .text-center { text-align: center; }

    /* Buttons */
    .btn-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        align-items: flex-end;
    }
    .custom-btn {
        display: flex;
        align-items: center;
        justify-content: center;
		width: 30rem;
        max-width: 300px;
        height: 60px;
        border-radius: 6px;
        font-weight: bold;
        font-size: 16px;
        text-decoration: none;
        transition: opacity 0.3s;
    }
    .custom-btn:hover { opacity: 0.5; }
    .btn-white {
        background-color: #fff;
        color: #333;
        border: 1px solid #ccc;
    }
    .btn-orange {
        background-color: #f37b21;
        color: #fff !important;
        border: none;
    }

    /* Hero */
    .hero {
        position: relative;
        background-image: url('images/header_bg_pc.svg');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        padding: 222px 20px 0;
        text-align: center;
		height: 560px
    }
    .hero-inner { max-width: 800px; margin: 0 auto;}
    h1.hero-title { font-size: 64px; font-weight: bold; line-height: 1.1; margin-bottom: 25px; }
	h1 span {font-size: 48px;}
    .hero-subtitle { font-size: 26px; font-weight: bold; margin-bottom: 30px; }
    .hero-desc { font-size: 15px; margin-bottom: 20px; }
    .hero-note { font-size: 13px; color: #454545; }

    /* =========================================
       SCS Table 
    ========================================= */
    .scs-table-wrapper { overflow-x: auto; /* margin-top: 30px; */ }
    .custom-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        min-width: 800px;
    }
    .custom-table th, .custom-table td {
        border: 1px solid #ddd;
        padding: 13px 15px;
        text-align: left;
        vertical-align: middle;
    }
    .custom-table th {
        background-color: #555;
        color: #fff;
        font-weight: bold;
        text-align: center;
    }
    .custom-table td:nth-child(1) {
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        width: 10%;
    }
    .custom-table td:nth-child(4), .custom-table td:nth-child(5) {
        text-align: center;
    }

    /* =========================================
       Reasons Layout 
    ========================================= */
    .reason-subtitle {
        display: inline-block;
        margin-bottom: 40px;
        font-size: 16px;
    }
    .reason-list { display: flex; flex-direction: column; gap: 30px; max-width: 900px; margin: 0 auto; }
    .reason-item {
        display: flex;
        align-items: flex-start;
        gap: 30px;
    }
    .reason-icon {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
    }
    .reason-content h3 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #222;
    }
    .reason-content p { font-size: 15px; color: #444; text-align: left}

    /* =========================================
       3 Walls
    ========================================= */
    .walls-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }
    .wall-item { text-align: center; }
    .wall-icon { height: 60px; margin-bottom: 20px; }
    .wall-item h3 { font-size: 18px; font-weight: bold; margin-bottom: 15px; line-height: 1.4; }
    .wall-item p { font-size: 14px; text-align: left; color: #444; }
    
    .walls-bottom-msg {
        text-align: center;
        font-size: 28px;
        font-weight: bold;
        margin: 100px 0 50px;
        line-height: 1.5;
    }
	.walls {
    position: relative;
	padding-top: 200px;
	}
	.walls:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 100px solid #f4f7f9;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
	}
	.cloum-02 {display: flex; align-items: flex-start; justify-content: space-between;}
	.cloum-02 > div {width: 48%;}
	.cloum-02 p, .cloum-02 dl {text-align: left}

    /* =========================================
       Schedule image zoom (PC only)
    ========================================= */
    .schedule-img-wrap { position: relative; }
    .schedule-img-wrap .schedule-img { cursor: pointer; }
    .zoom-icon {
        position: absolute;
        right: 15px;
        bottom: 65px;
        width: 36px;
        height: 36px;
        cursor: pointer;
    }
    .schedule-modal-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    .schedule-modal-overlay.is-open { display: flex; }
    .schedule-modal-inner {
        max-width: 1020px;
        width: 90%;
    }
    .schedule-modal-inner img {
        width: 100%;
        height: auto;
        display: block;
    }
    .schedule-modal-close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        padding: 8px 14px;
    }

    /* =========================================
       Tools
    ========================================= */
    .tools-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
		margin: 50px 0 0;
    }
    .tool-box {
        background: #fff;
		display:flex;
        flex-direction: column;
		height: 100%;
    }
    .tool-header {
        text-align: center;
        margin-bottom: 15px;
    }
    .tool-icon { height: 60px; margin-bottom: 8px; }
    .tool-header h4 { font-size: 21px; font-weight: bold; }
    .tool-box ul {
        list-style: none;
        padding: 30px 30px 25px;
        margin: 0;
        font-size: 14px;
        color: #111;
        border: 1px solid #eee;
        box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        flex: 1; /* 残りの高さをすべて埋める */
        height: 100%;
    }
    .tool-box ul li {
        position: relative;
        padding-left: 1em;
        margin-bottom: 8px;
    }
    .tool-box ul li::before {
        content: "・";
        position: absolute;
        left: 0;
    }

    /* =========================================
       Cards 
    ========================================= */
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .custom-card {
        background: #fff;
        border: 1px solid #ddd;
        display: flex;
        flex-direction: column;
    }
    .card-img-wrap {
        position: relative;
        text-align: center;
        padding: 50px 20px 20px;
    }
    .card-badge {
        position: absolute;
        top: 0; left: 0;
        background: #555;
        color: #fff;
        font-size: 12px;
        padding: 6px 15px;
        font-weight: bold;
    }
    .card-img-wrap img { max-height: 160px; width: auto; }
    .card-body {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
	.card-body ul strong{
		display: block;
		margin: 0 0 .3rem;		
	}
	.card-body ul li{
		margin: 0 0 .5rem 1rem;
		list-style: disc;
		line-height: 1.4;
	}
    .card-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    .card-text {
        font-size: 15px;
        color: #111;
        margin-bottom: 25px;
        flex-grow: 1;
		text-align: left !important;
    }
    .card-action {
        display: block;
        text-align: center;
        border: 1px solid #ccc;
        padding: 12px;
        color: #333;
        text-decoration: none;
        font-weight: bold;
        font-size: 15px;
        transition: background 0.2s;
		padding: 20px;
		border-radius: 6px;
    }
    .card-action:hover { background: #f4f7f9; }
	.welcom {font-size: 23px; display: block; margin: 30px 0 20px}
	.custom-card_banner{display: flex; flex-direction: row}
	.custom-card_banner a {max-width: 250px; margin: 15px 0 0; padding: 17px 20px;}
	
/* -------------------------------------------
   フッター
------------------------------------------- */
footer { text-align: center; padding: 30px; background: #454545;}
.footer-links { margin: 20px 0; font-size: 11px; color: #fff;}
.footer-links a { color: #fff; text-decoration: none; margin: 0 10px; transition: color 0.3s; }
.footer-links a:hover { text-decoration: underline; opacity: .5; }

	/* =========================================
	   スクロールアニメーション
	========================================= */
	.fade-up {
		opacity: 0;
		transform: translateY(100px);
		transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	.fade-in {
		opacity: 0;
		transition: opacity 0.8s ease;
		transform: scale(.5);
	}
	.fade-up.is-show, .fade-in.is-show {
		opacity: 1;
		transform: translateY(0);
		transform: scale(1);
	}



    /* =========================================
       Responsive (786px)
    ========================================= */
    @media screen and (max-width: 786px) {
        .hero {
            background-image: url('images/header_bg_sp.svg');
            padding: 160px 15px 100px;
        }
        .hero-inner {
            padding: 20px 15px;
        }
        h1.hero-title { font-size: 7.2vw; }
		h1 span { font-size: 5.2vw; }
		.hero-desc {background: #ffffffdd; padding: 5px 10px;}
		.hero-desc br {display: none; }
        .hero-subtitle { font-size: 16px; }
        .btn-group { flex-direction: column; align-items: center; gap: 15px; }
        .custom-btn { width: 100%; max-width: 320px; }

        .reason-item { flex-direction: column; align-items: center; text-align: center; gap: 15px; }
        .reason-content h3 { font-size: 18px; }
        .reason-content p, .custom-container p, .reason-subtitle { text-align: left; }

        .walls-grid, .tools-grid, .cards-grid { grid-template-columns: 1fr; }
		.walls:after {border-top: 60px solid #f4f7f9;}
		.cloum-02 {flex-direction: column;}
		.cloum-02 > div {width: 100%; padding: 0 0 10px;}
		.zoom-icon { display: none; }
		.schedule-img-wrap .schedule-img { pointer-events: none; cursor: default; }
        .custom-section { padding: 50px 0; }
		.custom-section-title, .walls-bottom-msg {font-size: 7vw; line-height: 1.25;}
		.custom-container dl {flex-direction: column;}
		
		.walls .custom-section-title {margin: 150px 20px 40px;}
		.walls .reason-subtitle, .contents .reason-subtitle {margin: 0 20px 40px;}
		.contents .custom-section-title  {margin: 50px 20px 40px;}
		.custom-section-title br{display: none}
		.custom-card_banner{flex-direction: column}
		.custom-card_banner a {max-width: 100%}
		.welcom{font-size: larger;}
	}
