@charset "utf-8";

/* base */
html{
    font-size: 100%;
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    color: #24292e;
    font-family: "Zen Maru Gothic", sans-serif;
}

a{
    text-decoration: none;
    color: #333;
}

p{
    font-size: 1.3rem;
}

img{
    max-width: 100%;
}

li{
    list-style: none;
    font-size: 1.2rem;
}

/* font */
/* Zen Maru Gothic */
.zen-maru-gothic-light {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.zen-maru-gothic-regular {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.zen-maru-gothic-medium {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.zen-maru-gothic-bold {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.zen-maru-gothic-black {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 900;
    font-style: normal;
}

/* text color */
.text-white{
    color: #fff;
}

.text-pink{
    color: #f09397;
}

/* section */
.section{
    padding: 25px 0 20px;
}

.white-bg{
    background-color: rgba( 255, 255, 255, 0.95);
}

.pink-bg{
    background-color: rgba( 252, 233, 234, 0.95);
}

.sec-title{
    font-size: 1.5rem;
    line-height: 1.3;
}

.sec-description{
    font-size: 1.1rem;
    font-weight: 500;
}

.sec-header{
    margin: 0 0 20px;
}

.sec-header>.sec-title{
    text-align: center;
}

.sec-body{
    padding: 0 4% 20px;
}

.sec-body>.sec-description{
    text-align: center;
}

.sec-button{
    width: fit-content;
}

.sec-button-right{
    margin: 0 2% 0 auto;
}

.sec-button-box{
    position: relative;
    margin: 20px auto 0;
    width: fit-content;
    padding: 2px 30px 2px 10px;
    border: 2px solid #f09397;
    border-radius: 10px;
    box-shadow: 0 0 8px gray;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sec-button-box:hover{
    background-color: #f09397;
    color: #fff;
}

.arrow-box{
    position: absolute;
    top: 4px;
    right: 6px;
    padding: 5px;
    width: 20px;
    height: 20px;
    background-color: #f09397;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sec-button-box:hover .arrow-box{
    background-color: #fff;
}

.sec-button-box i{
    position: absolute;
    display: inline-block;
    content: "";
    top: 6px;
    right: 7px;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.sec-button-box:hover i{
    border-top: 2px solid #f09397;
    border-right: 2px solid #f09397;
}

@media screen and (max-width: 480px) {
    .sec-title{
        font-size: 1.2rem;
    }
    
    .sec-sub-title{
        font-size: 1.0rem;
    }
    
    .sec-description{
        font-size: 0.8rem;
    }

    .sec-button-box{
        font-size: 0.8rem;
    }
}

.sec-block-body{
    padding: 2%;
    margin: 2% 0;
}

/* grid */
.grid{
    display: grid;
    justify-content: center;
    height: fit-content;
    gap: 5%;
}

.grid-2{
    grid-template-columns: repeat(auto-fit, 300px);
}

.grid-3{
    grid-template-columns: repeat(auto-fit, 200px);
}

@media screen and (max-width: 993px) {
    .grid-2{
        height: 230px;
    }
}

@media screen and (max-width: 662px) {
    .grid-3{
        height: 300px;
    }
}

/* text-center */
.text-center{
    text-align: center;
}

/* page */
.page-main{
    padding-top: 112px;
}

.page-main-box{
    padding: 0 4% 20px;
}

@media screen and (max-width: 800px) {
    .page-main-box{
        padding: 0 4%;
    }
}

.page-title{
    text-align: center;
    font-size: 2.5rem;
    padding: 5px 0 0;
}

.page-sub-title{
    text-align: center;
    font-size: 1.5rem;
    padding: 0 0 15px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0 15px 5%;
}

.breadcrumb li{
    font-weight: 600;
}

.breadcrumb li + li::before {
    content: ">";
    margin: 0 10px;
}

.page-main-box{
    min-height: 300px;
}

/* 404 */
.nf-contents p{
    text-align: center;
    font-size: 1.2rem;
}

.nf-contents p a{
    font-weight: 600;
    font-size: 1.2rem;
}