@charset "utf-8";

/* base */
html{
    font-size: 100%;
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    color: #333;
    font-family: "Zen Maru Gothic", sans-serif;
    background-color: #F6FBF7;
}

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;
}

/* Noto Sans JP: 可変スタイル用のCSSクラス */
.noto-sans-jp {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
  

/* text color */
.text-green{
    color: #008232;
}

.text-yellow{
    color: #f6d851;
}

.text-red{
    color: #e83929;
}

.text-white{
    color: #fff;
} 

.text-box-shadow-black{
    text-shadow:2px 2px 0 #333, -2px -2px 0 #333,
                -2px 2px 0 #333, 2px -2px 0 #333,
                0px 2px 0 #333,  0 -2px 0 #333,
                -2px 0 0 #333, 2px 0 0 #333;
}

.text-box-shadow-white{
    text-shadow:2px 2px 0 #fff, -2px -2px 0 #fff,
                -2px 2px 0 #fff, 2px -2px 0 #fff,
                0px 2px 0 #fff,  0 -2px 0 #fff,
                -2px 0 0 #fff, 2px 0 0 #fff;
}


.main-box{
    margin: 50px auto 0;
    width: 80%;
    background-color: #fff;
    border: 2px solid #008232;
    border-radius: 20px;
    box-shadow: 0 0 8px gray;
}

.section{
    position: relative;
    margin: 0 5%;
    padding: 20px 0 50px;
}

.section:not(:last-child){
    border-bottom: 2px dashed #333;
}

.sec-header{
    margin: 0 0 20px;
}

.sec-header>.sec-title{
    text-align: center;
}

.sec-title{
    font-size: 1.2rem;
    line-height: 1.1;
}

.sec-description{
    font-size: 1.1rem;
    font-weight: 500;
}

.main-message.sec-description{
    font-size: auto;
    font-weight: auto;
}

.main-message.sec-description p{
    font-size: 1.1rem;
    font-weight: 500;
}

.sec-body{
    padding: 0 2% 20px;
    min-height: 200px;
}

.sec-button{
    margin: 40px auto 0;
    text-align: center;
    width: fit-content;
}

.sec-button-box{
    padding: 10px 20px;
    border: 2px solid #008232;
    border-radius: 20px;
    box-shadow: 0 0 4px gray;
    color: #008232;
    font-size: 1.0rem;
    font-weight: 600;
    transition: 0.3s;
}

.sec-button-box:hover{
    background-color: #008232;
    color: #fff;
    transition: 0.3s;
}


@media screen and (max-width: 480px){
    .main-box{
        width: 90%;
    }
    .sec-body{
        padding: 0 0 20px;
    }
}


/* page */
.page-main{
    padding-top: 130px;
}

.page-main-box{
    padding: 0 4% 20px;
}

@media screen and (max-width: 800px) {
    .page-main{
        padding-top: 90px;
    }
    .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;
}

@media screen and (max-width: 480px) {
    .page-title{
        font-size: 2.0rem;
    }
    .page-sub-title{
        font-size: 1.3rem;
    }
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0 15px 5%;
}

.breadcrumb li{
    font-weight: 600;
    font-size: 1.2rem;
}

.breadcrumb li + li::before {
    content: ">";
    margin: 0 10px;
}

.page-main-box{
    min-height: 500px;
}

@media screen and (max-width: 480px) {
    .breadcrumb ul {
        padding: 15px 0 0 5%;
    }
    .breadcrumb li{
        font-size: 0.8rem;
    }
}


/* 404 */
.nf-contents p{
    text-align: center;
    font-size: 1.2rem;
}

.nf-contents p a{
    font-weight: 600;
    font-size: 1.2rem;
    color: #e83929;
}

/* pagination */
.navigation.pagination{
    margin: 10px 0;
    padding: 10px 0;
    text-align: center;
}

.page-numbers{
    margin: 0 5px;
    padding: 2px 10px;
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 5px;
    box-shadow: 0 0 4px gray;
}

.page-numbers{
    border: 2px solid #008232;
    font-weight: 600;
    color: #008232;
}

.page-numbers.dots{
    background-color: rgba(0, 0, 0, 0);
    color: #008232;
    border: none;
    box-shadow: none;
}

.page-numbers.current{
    background-color: #008232;
    color: #fff;
}

.page-numbers:not(.dots):hover{
    background-color: #008232;
    color: #fff;
}


.main-box-home .sec-description{
    text-align: center;
    margin: 5px 0 30px;
}

.blog-noPost{
    text-align: center;
    font-weight: 600;
}


