@charset "UTF-8";
/*--------------------------------
header
--------------------------------*/
.header{
    top: 0;
    position: fixed;
    z-index: 100;
    width: 100%;
    background: #fff;
}
.header-inner{
    padding: 15px 0;
    display: flex;
    align-items: center;
    width: min(calc(100% - 32px),1480px);
    margin: 0 auto;
}
#logo{
    width: 216px;
    position: relative;
    z-index: 100;
}

#logo a{
    width: 216px;
    position: relative;
    z-index: 100;
}
#logo a img{
    width: 100%;
	height: auto;
	vertical-align: middle;
}
.nav{
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
    gap: 100px;
}
.nav-list{
    display: flex;
    gap: 40px;
}
.nav-link{
    color: #3A3A3A;
    font-size: 1.8rem;
    transition: .2s ease;
    font-weight: 600;
}
.nav-link:hover{
    opacity: .7;
}
.tel{
    font-size: 2.4rem;
}
.tel-icon{
    width: 24px;
    height: 24px;
}
.tel-link{
    color: #3A3A3A;
}
.closing-date{
    margin-top: 8px;
    font-size: 1.6rem;
}
.hamburger-menu{
    display: none;
}
@media screen and (max-width: 1000px){
    .nav{
        position: absolute;
        top: 0;
        right: -100%;
        margin: 0;
        background: #fff;
        width: 100%;
        padding: 100px 16px 50px;
        transition: .5s ease .2s;
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }
    .is-active .nav{
        right: 0;
    }
    .nav-list{
        flex-direction: column;
    }
    .hamburger-menu{
        position: relative;
        width: 28px;
        height: 24px;
        display: block;
        margin-left: auto;
    }
    .hamburger-menu::before,
    .hamburger-menu::after,
    .hamburger-menu span{
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: #000;
        border-radius: 2px;
        transition: .2s ease .2s;
    }
    .hamburger-menu::before{
        top: 0;
        left: 0;
    }
    .hamburger-menu::after{
        top: calc(100% - 2px);
        left: 0;
    }
    .hamburger-menu span{
        display: block;
        top: 50%;
        left: 0;
        transform: translate(0,-50%);
    }
    .is-active .hamburger-menu span{
        opacity: 0;
    }
    .is-active .hamburger-menu::before{
        top: 50%;
        transform: translate(0,-50%) rotate(45deg);
        transition: .2s ease .2s;
    }
    .is-active .hamburger-menu::after{
        top: 50%;
        transform: translate(0,-50%) rotate(-45deg);
        transition: .2s ease .2s;
    }
    .logo{
        width: 118px;
    }
}
/*--------------------------------
footer
--------------------------------*/
.footer{
    display: grid;
    grid-template-columns: 60% 40%;
    background: #EFEFEF;  
}
.footer-map-item{
    width: 100%;
    height: 100%;
}
.footer-note{
    padding: 135px 0 20px;
    width: min(calc(100% - 32px),500px);
    margin: 0 auto;
}
.footer-logo{
    width: 225px;
}
.company-name{
    margin-top: 10px;
    font-size: 1.8rem;
}
.address{
    margin-top: 30px;
    font-size: 1.6rem;
    font-style: normal;
    line-height: 1.5;
}
.footer-nav-list{
    display: flex;
    gap: 40px;
    margin-top: 137px;
    justify-content: flex-end;
    font-size: 1.4rem;
}
.footer-nav-item{
    position: relative;
}
.footer-nav-item:not(:last-child)::before{
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background: #3A3A3A;
}
.footer-nav-link{
    text-align: right;
    font-size: 1.4rem;
}
.copyright{
    margin-top: 80px;
    text-align: right;
    font-size: 1.4rem;
}
@media screen and (max-width: 767px){
    .footer{
        grid-template-columns: 1fr;
    }
    .footer-note{
        padding: 84px 0 20px;
    }
    .footer-logo img{
        width: 144px;
        margin-bottom: 31px;
    }
    .footer-nav-list{
        margin-top: 72px;
        font-size: 1.2rem;
        gap: 20px;
        justify-content: center;
    }
    .footer-nav-item:not(:last-child)::before{
        right: -10px;
    }
    .copyright{
        text-align: center;
    }
}
/*--------------------------------
home
--------------------------------*/
.mv{
    margin-top: 90px;
    margin-bottom: 124px;
    position: relative;
}
.mv .primary-heading{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    width: calc(100% - 72px);
}
.grid-list{
    display: grid;
    gap: 74px;
}
.grid-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
}
.grid-reverse .img-wrapper{
    order: 1;
}
.grid-wrapper .text-wrapper{
    width: calc(100% - 24px);
    margin-left: auto;
}
.grid-reverse .text-wrapper{
    margin: 0 auto 0 0;
}
.more-btn{
    margin-top: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%,300px);
    height: 63px;
    font-size: 1.8rem;
    border: 1px solid #131313;
    border-radius: 39px;
    color: #131313;
    letter-spacing: .1em;
    transition: .2s ease;
}
.more-btn:hover{
    background: #131313;
    color: #fff;
}
.bg-gray{
    background: #EFEFEF;
}
.blog-heading{
    font-size: 2.8rem;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: 24px;
    padding-top: 124px;
}
.blog-list{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 32px;
}
.blog-title{
    margin-top: 48px;
    font-size: 2.1rem;
    line-height: 1.5;
}
.blog-more{
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    font-size: 1.8rem;
    transition: .2s ease;
}
.blog-more img{
    width: 24px;
}
.blog-more:hover{
    opacity: .7;
}
section.news{
    padding-top: 124px;
}
.news .secondary-heading{
    text-align: center;
}
.news-item{
    border-top: 1px solid #131313;
    padding: 3em 0;
}
ul.news-list{
    max-width: 1000px;
    margin:auto;
}
.news-link{
    display: grid;
    gap: 20px;
    padding: 44px 0;
}
.news-item:last-child{
    border-bottom: 1px solid #131313;
}
.news-list + .more-btn{
    margin-inline: auto;
}
.date{
    font-size: 1.6rem;
    padding-bottom:2rem;
}
.tag{
    display: inline-block;
    border: 1px solid #131313;
    margin-left: 10px;
    padding: 2px 4px;
}
.reception .secondary-heading{
    text-align: center;
    padding-top: 124px;
}
.reception-scroll+.note{
    /* text-indent: -1em; */
    text-align: left;
    font: normal normal medium 16px/32px Noto Sans CJK JP;
    letter-spacing: 1.6px;
    color: #131313;
    opacity: 1;
}
.reception-wrapper{
    display: block;
    padding: 70px 56px;
    background: #fff;
    width: 100%;
    border-radius: 18px;
}
.reception-heading{
    font-size: 2.1rem;
    text-align: left;
    width: 20%;
}
.reception-heading-border{
    border-bottom: 2px solid #131313;
}
.reception-note-border{
    border-bottom: 1px solid #E4E4E4;
}
.reception-inner{
    display: block;
}
.reception tr{
    display: flex;
    align-items: center;
}
.reception-sub-item .reception-heading{
    width: 7%;
    text-align: center;
}
.reception-date{
    width: 13%;
    font-size: 1.8rem;
    line-height: 1.3;
    border-right: 1px solid #E4E4E4;
    border-left: 1px solid #E4E4E4;
    padding: 27px 0;
    display: grid;
    align-items: center;
    justify-content: center;
}
.reception-note{
    font-size: 1.8rem;
    width: calc(80%/6);
    text-align: center;
    border-right: 1px solid #E4E4E4;
}
.reception-item td{
    padding-bottom: 24px;
}
.reception-item th{
    padding-bottom: 21px;
    border-right: 1px solid #E4E4E4;
}
.reception-sub-item .reception-note{
    padding: 30px 0;
    font-size: 3rem;
}
.reception p.note{
    position: relative;
    padding-left: 1.5em; /* ※マークの幅に合わせて調整 */
    margin: 1em 0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .3em;
    text-indent: 0; /* text-indentを上書き */
}
.reception p.note::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
  }
.bottom-item .inner{
    padding-top:124px;
}
.bottom-item .secondary-heading{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.bottom-item .more-btn{
    margin-inline: auto;
}
@media screen and (max-width: 1000px){
    .mv{
        margin-top: 64px;
    }
}
@media screen and (max-width: 767px){
    .more-btn{
        margin-top: 40px;
    }
    .grid-list{
        gap: 65px;
    }
    .grid-wrapper{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .grid-wrapper .text-wrapper{
        display: contents;
    }
    .grid-wrapper .secondary-heading{
        order: -2;
        margin-bottom: 0;
    }
    .grid-wrapper .wide-img{
        width: 100vw;
        margin: 0 calc(50% - 50vw);
    }
    .grid-wrapper .more-btn{
        margin: 0 auto;
    }
    .grid-reverse .img-wrapper{
        order: -1;
    }
    .blog-heading{
        font-size: 2.1rem;
    }
    .blog-list{
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .blog-title{
        margin-top: 32px;
        font-size: 1.8rem;
    }
    .news .secondary-heading{
        text-align: left;
    }
    .news-link{
        padding: 27px 0;
    }
    .reception .secondary-heading{
        text-align: left;
    }
    .reception-scroll{
        overflow-x: scroll;
        padding-bottom: 30px;
        margin-bottom: 40px;
    }
    .reception-wrapper{
        min-width: 1000px;
    }
    .reception-scroll::-webkit-scrollbar{
        width: 100%;
        height: 18px;
    }
    .reception-scroll::-webkit-scrollbar-track{
        background-color: #B1B1B1;
        border-radius: 9px;
    }
    .reception-scroll::-webkit-scrollbar-thumb{
        background-color: #fff;
        border-radius: 9px;
    }
    .bottom-item .secondary-heading{
        position: static;
        transform: translate(0,0);
    }
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 431px) {
    .pc { display: none !important; }
    .sp { display: block !important; width: 100%; }
    
	.fit-img {
		max-width: 100%;
	}
}

