@charset "utf-8";
/* ============================ 
common
===============================*/
:root {
    --primary-white:#FAF8F5;
    --primary-black:#080808;
    --primary-gray:#EDEDED;
    --primary-graylow:#B0AD9C;
    --primary-red:#FF0000;
    --primary-green:#B2C1A6;
    --contentWidth:91.4%;
    --contentPadding:4.2%;
}

html {
    font-size:62.5%;
}

body {
    font-family: 
        "Noto Serif JP",
        Arial,
        sans-serif;
    color: var(--primary-black,#080808);
    background-color: var(--primary-white,#FAF8F5);
    line-height: 1.5;

}

img {
    max-width: 100%;
    height: auto;
}

.mainTopics__name,
.section__topic
{
    color: #080808;
    font-family: "Shippori Mincho";
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-top: 60px;
}


/* ここからボタン */

.btn {
    display: block;
    text-align: center;
    border-radius: 54px;
    background-color: #FAF8F5;   
    padding: 19px 45px 19px 65px;
    position: relative;
    transition: 0.4s;
    font-size: 1.8rem;
    font-weight:700;
    border: 1px solid #080808;
}

.btn::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/illust/sankaku.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left:30px;
    transform: translateY(-50%);
}

.btn:hover {
    background-color: #080808;
    color: #FAF8F5;

}

.btn:hover::before{
    background-image: url(../images/illust/sankaku2.svg);
}


/* .btn2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 60px;
    padding: 20px 0px;
    border-radius: 50px;
    background: #080808;
    gap: 20px;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
} */


.btn2 {
    display: block;
    text-align: center;
    border-radius: 50px;
    background-color: #080808;  
    color: white;
    padding: 19px 45px 19px 65px;
    position: relative;
    transition: 0.4s;
    font-size: 1.8rem;
    font-weight:700;
}

.btn2::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/illust/mail_w.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left:30px;
    transform: translateY(-50%);
}

/* .btn2:hover {
    background-color: #FAF8F5;
    color: #080808;
    border: 1px solid #080808;

} */

.btn2:hover {
    transform: scale(1.1,1.1);
  }

/* .btn2:hover::before{
    background-image: url(../images/illust/mail.svg);
} */



.btn3 {
    display: block;
    text-align: center;
    border-radius: 54px;
    background-color: #FAF8F5;   
    padding: 15px 92px 15px 100px;
    position: relative;
    transition: 0.4s;
    font-size: 1.8rem;
    font-weight:700;
    border: 1px solid #080808;
    margin-top: 40px;
}

.btn3::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/illust/sankaku.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left:70px;
    transform: translateY(-50%);
}

.btn3:hover {
    background-color: #080808;
    color: #FAF8F5;

}

.btn3:hover::before{
    background-image: url(../images/illust/sankaku2.svg);
}



  
 /* ここまでbtn */




.logo_fadein{
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
}
.logo_fadein p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 150px;
}



/* ============================ 
header
===============================*/

.header{
    padding: 10px 6.6% ;
} 

.header__topic,
.nav__topic {
    width: 102px;
    height: 40px;
    margin-top: 10px;
}

/* .nav　初期表示 */
.nav{
    background: var(--primary-white,#FAF8F5);
    background-image: url(../images/illust/budou_i.png);
    background-size: cover;
    padding-top: 20%;
    width: 100%;
    height: 100vh;
    padding: 10px 6.6%;
    position: fixed;
    top:0;
    left:0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav__btn {
    width: 24px;
    height: 24px;
}

.nav__list {
    margin-top: 77px;
}

.nav__item {
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 30px;
}

.nav__item img {
    width: 30px;
    height: 30px;

}

.nav.active {
    transform: translateX(0);
}

.header__btn {
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    top: 23px;
    right: 6.6%;
    position: fixed;
}
/* header PC */

@media screen and (min-width: 769px) {
    .header {
        max-width: 1440px;
        margin: 0 auto;
        padding: 10px 100px 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;

    }

    .nav {
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
        background: transparent;  
    }

    .nav__list {
        display: flex;
        margin-top: 0;
    }

    .nav__item {
        margin-top: 0;
        font-family: "Shippori Mincho";
        font-size: 1.8rem;
        font-weight: 400;
        margin-left: 40px;
    }


/* nav ホバー */

    .nav__item {
        position: relative;
    }
    .nav__item::after {
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        content: "";
        width: 0%;
        height: 1px;
        background: #080808;
        transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }
    .nav__item:hover::after {
        width: 100%;
    }

/* ここまでnavホバー */


    .header__btn {
        display: none;
    }

    .nav__header {
        display: none;
    }

    .header__topic {
        width: 120px;
        height: auto;
        margin-bottom: 10px;
    }
}



/* pc header */




/* ============================ 
footer
===============================*/

.copy {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
}

.footer {
    padding: 20px 0px;
}


.footer__group {
    display: none;
}


 /* footer PC */

@media screen and (min-width: 769px) {
    .footer {
        padding: 40px 60px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .footer__group {
        display: block;

    }

    .menu__list {
        display: flex;
        align-items: center;
        justify-content: flex-end;
            }

    .menu__item {
        font-size: 1.8rem;
        font-weight: 400;
        margin-left: 30px;
    }

    .copy {
        text-align: left;
    }

    .footer__topic {
        display: flex;
    }

    .footer__topic img {
        width: 120px;
        height: auto;
    }

}



