
/* ==========================================================
   Base
========================================================== */

:root{

    --primary:#0059a8;
    --primary-light:#eaf5fb;

    --text:#333;
    --sub:#666;

    --border:#d8e2ec;

    --white:#fff;

    --contact:#fff8d6;

    --shadow:0 3px 10px rgba(0,0,0,.08);

    --radius:4px;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:
        "Yu Gothic",
        "Hiragino Kaku Gothic ProN",
        sans-serif;

    color:var(--text);

    line-height:1.8;

    background:#f4f8fb;

}

img{

    display:block;
    width:100%;
    height:auto;

}

.container{

    width:min(1100px,92%);
    margin:auto;

}

section{

    padding:70px 0;

}



/* ==========================================================
   Hero
========================================================== */

.hero-section{

    background:#fff;

    border-top:1px solid #dce8ef;

}

.page-title{

    text-align:center;

    font-size:34px;

    color:#444;

    margin-bottom:55px;

    font-weight:700;

}

.hero-content{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    align-items:center;

    gap:60px;

}

.hero-text h2{

    color:var(--primary);

    font-size:34px;

    line-height:1.5;

    margin-bottom:24px;

}

.hero-text p{

    color:var(--sub);

    font-size:15px;

}

.hero-image{

    text-align:center;

}

.hero-image img{

    max-width:420px;

    margin:auto;

}



/* ==========================================================
   FAQ
========================================================== */

.faq-section{

    background:#eef5f9;

}

.faq-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.faq-item{

    background:#fff;

    border:1px solid var(--border);

    border-radius:3px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.faq-item summary{

    position:relative;

    cursor:pointer;

    list-style:none;

    padding:26px 70px 26px 28px;

    font-size:18px;

    font-weight:700;

    transition:.25s;

}

.faq-item summary:hover{

    background:#f8fbfe;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

/* ＋アイコン */

.faq-item summary::after{

    content:"+";

    position:absolute;

    right:28px;

    top:50%;

    transform:translateY(-50%);

    font-size:28px;

    color:#777;

    transition:.3s;

}

/* 開いたら− */

.faq-item[open] summary::after{

    content:"−";

}

.faq-answer{

    border-top:1px solid var(--border);

    padding:24px 28px;

    background:#fff;

}

.faq-answer p{

    color:#555;

    font-size:15px;

}



/* ==========================================================
   Contact
========================================================== */

.contact-section{

    background:#f8f8f8;

}

.contact-title{

    font-size:30px;

    margin-bottom:15px;

    text-align:center;

}

.contact-text{

    text-align:center;

    color:#666;

    margin-bottom:45px;

}

.contact-box{

    background:var(--contact);

    border:2px solid #ccb66c;

    padding:45px;

    text-align:center;

}

.bank-name{

    font-size:26px;

    font-weight:bold;

    margin-bottom:20px;

}

.tel-label{

    font-size:22px;

    color:#d70000;

}

.tel-number{

    color:#d70000;

    font-size:52px;

    font-weight:bold;

    line-height:1.2;

    margin:10px 0;

}

.business-hour{

    font-size:15px;

    color:#555;

}


/* ==========================================================
   Contact
========================================================== */

.contact-section{

    background:#fff;

}

.contact-box{

    background:#fffdd8;

    border:2px solid #ddd49d;

    padding:55px 40px;

    text-align:center;

    border-radius:10px;

}

.contact-box h2{

    font-size:40px;

    color:#555;

}

.contact-phone{

    color:#e30000;

    font-size:50px;

    font-weight:700;

    margin:25px 0;

}

.contact-time{

    font-size:22px;

    font-weight:bold;

}

.contact-note{

    margin-top:25px;

    color:#666;

    font-size:15px;

}

/* ==========================================================
   Animation
========================================================== */

.fade-up{

    opacity:0;

    transform:translateY(35px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:none;

}



/* ==========================================================
   Tablet
========================================================== */

@media(max-width:1023px){

.hero-content{

    grid-template-columns:1fr;

    gap:40px;

    text-align:center;

}

.hero-image{

    order:-1;

}

.page-title{

    font-size:30px;

}

.hero-text h2{

    font-size:28px;

}

.tel-number{

    font-size:42px;

}

}



/* ==========================================================
   Smartphone
========================================================== */

@media(max-width:767px){

section{

    padding:45px 0;

}

.container{

    width:94%;

}

.page-title{

    font-size:24px;

    margin-bottom:35px;

}

.hero-content{

    gap:25px;

}

.hero-image img{

    width:80%;

}

.hero-text h2{

    font-size:24px;

    line-height:1.5;

}

.hero-text p{

    font-size:14px;

}

.faq-list{

    gap:12px;

}

.faq-item summary{

    padding:18px 48px 18px 16px;

    font-size:15px;

    line-height:1.6;

}

.faq-item summary::after{

    right:16px;

    font-size:22px;

}

.faq-answer{

    padding:18px 16px;

}

.faq-answer p{

    font-size:14px;

}

.contact-title{

    font-size:22px;

}

.contact-text{

    font-size:14px;

    margin-bottom:25px;

}

.contact-box{

    padding:25px 18px;

}

.bank-name{

    font-size:18px;

}

.tel-label{

    font-size:18px;

}

.tel-number{

    font-size:34px;

    word-break:break-word;

}

.business-hour{

    font-size:13px;

}


.contact-box{

    padding:35px 20px;

}

.contact-box h2{

    font-size:28px;

}

.contact-phone{

    font-size:34px;
    line-height:1.3;

}

.contact-time{

    font-size:17px;

}

.contact-note{

    font-size:14px;

}

}

/* タイトル */

.title_content {
    background-color: #e9f3fa;
    color: #585858;
    border-bottom: 7px solid #e2f1cf;
}

.title_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 100%;
}
.text-red {
    color: #b22222;
}

.list-inside{
    position:relative;
    list-style:none;
    padding-left:1.2em;
}

.list-inside::before{
    content:"・";
    position:absolute;
    left:0;
    top:0;
}

.point-note{

    padding-left:1.2em;

    text-indent:-1.2em;

    line-height:1.8;

}

.point{

    margin-top:12px;

    margin-left:1.5em; 

    padding-left:1.2em;

    text-indent:-1.2em;

    line-height:1.8;

}