/*共通CSSここから*/
:root{
    --mainColor:#d6bca1;
    --tFontColor:#2c3e50;
    --tsFontColor:#7f8c8d;
    --mFontColor:#444;
}

html {scroll-behavior: smooth;}

article{line-height: 1;}

article ul{list-style: none;}

article a{text-decoration: none; transition: .4s all;}

article h2{
    color: var(--tFontColor);
}

article p{
    font-size: 16px;
    line-height: 1.5;
    color: var(--tsFontColor);
}

article img{width: 100%;}

article .pc_none{display: none;}

article .clearfix::after{
    content: "";
    display: block;
    clear: both;
}

article .section_inner{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    box-sizing: border-box;
}

article *{
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

@media screen and (max-width:1024px){
    article .section_inner{
        padding: 0 2%;
    }

    section {
        overflow: hidden;
    }
}

@media screen and (max-width:768px){
    article .pc_none{display: block;}
    article .sp_none{display: none;}
}
/*共通CSSここまで*/


/*card_item用CSSここから*/
.card_item a{
    display: block;
    padding: 3%;
    border-radius: 5px;
}

.card_item a > div:first-of-type{
    position: relative;
    margin-bottom: 10px;
}

.card_item a > div:first-of-type::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: var(--mainColor);
}

.card_item a > div:first-of-type + p{
    margin-bottom: 10px;
    font-size: 15px;
    text-align: center;
    color: var(--tsFontColor);
}

.card_item a > div:first-of-type + p + div{
    width: 50%;
    margin: 0 auto;
    border: 1px solid var(--mainColor);
    border-radius: 5px;
}

.card_item a > div:first-of-type + p + div > span{
    display: block;
    padding: 5px 0;
    text-align: center;
    font-size: 20px;
    color: var(--mainColor);
}

.card_item a:hover{
    transform: translateY(-5px);
    box-shadow: 0 0 5px 2px #ddd;

}

@media screen and (max-width:1024px){
    .card_item a > div:first-of-type + p + div > span{
        font-size: calc(1vw * calc(20 / 10.24));
    }
}

@media screen and (max-width:768px){
    .card_item a > div:first-of-type + p + div > span{
        font-size: calc(1vw * calc(25 / 7.68));
    }
}
/*card_item用CSSここまで*/


/*各横並び対応用CSSここから（2カラム【特殊】、2カラム、3カラム）*/
.column_2sp li{
    width: 48%;
    max-width: 460px;
    float: left; 
}

.column_2sp li:last-of-type{
    padding-top: calc(50% / 2);
}

.column_2sp li:first-of-type{
    margin-right: 40px;
}

.column_3{
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.column_3 li{
    width: calc(92% / 3);
    max-width: calc(880px / 3);
}

.column_3 li:not(:last-of-type){
    margin-right: 40px;
}

.column_2{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
}

.column_2 > div,
.column_2 > div + ul{
    width: 48%;
    max-width: calc(920px / 2);
}

.column_2 > div{
    order: 2;
}

.column_2 > div + ul{
    margin-right: 40px;
}

.column_2 > div + ul > li{
    width: 48%;
    max-width: calc(50% - 20px);
}

.column_2 > div + ul > li:nth-of-type(odd){
    margin-right: 40px;
}

.column_2 > div + ul > li:nth-last-of-type(n+3){
    margin-bottom: 40px;
}

@media screen and (max-width:1024px){
    .column_2sp li:first-of-type{
        margin-right: 4%;
    }

    .column_3 li:not(:last-of-type){
        margin-right: 4%;
    }

    .column_2 > div + ul {
        margin-right: 4%;
    }

    .column_2 > div + ul > li{
        max-width: none;
    }

    .column_2 > div + ul > li:nth-of-type(odd){
        margin-right: 4%;
    }

    .column_2 > div + ul > li:nth-last-of-type(n+3){
        margin-bottom: 4%;
    }
}

@media screen and (max-width:768px){
    .column_2sp li{
        width: 70%;
        max-width: none;
        margin:0 0 6%;
        float: none;        
    }

    .column_2sp li:last-of-type{
        margin:0 0 6% auto;
        padding: 0;
    }

    .column_3{
        display: block;
    }

    .column_3 li{
        width: 70%;
        max-width: none;
        margin: 0 auto;
    }

    .column_3 li:not(:last-of-type){
        margin-right: auto;
        margin-bottom: 4%;
    }

    div.column_2{
        display: block;
    }

    .column_2 > div,
    .column_2 > div + ul{
        width: 100%;
        max-width: none;
    }

    .column_2 > div{
        margin-bottom: 4%;
    }

    .column_2 > div + ul {
        margin-right: 0;
    }

    .column_2 > div + ul > li{
        width: 49%;
    }

    .column_2 > div + ul > li:nth-of-type(odd){
        margin-right: 2%;
    }

    .column_2 > div + ul > li:nth-last-of-type(n+3){
        margin-bottom: 2%;
    }
}
/*各横並び対応用CSSここまで（2カラム【特殊】、2カラム、3カラム）*/


/*section001ここから*/
.section001{
    margin-bottom: 100px;
}

@media screen and (max-width:1024px){
    .section001{
        margin-bottom: 10%;
    }
}

@media screen and (max-width:1024px){
    .section001 .section_inner{
        padding: 0;
    }
}
/*section001ここまで*/


/*section002ここから*/
.section002{
    margin-bottom: 200px;
}

.section002 p{
    margin-bottom: 60px;
    text-align: right;
}

.section002 ul{
    margin-bottom: 40px;
}

.section002 ul + div{
    width: 80%;
    margin: 0 auto;
}

@media screen and (max-width:1024px){
    .section002{
        margin-bottom: 20%;
    }

    .section002 p{
        margin-bottom: 6%;
    }

    .section002 ul{
        margin-bottom: 4%;
    }

}

@media screen and (max-width:768px){
    .section002 ul + div{
        width: 100%;
    }

    .section002 p{
        text-align: left;
    }
}
/*section002ここまで*/


/*section003ここから*/
.section003{
    margin-bottom: 200px;
}

.section003 h2{
    margin-bottom: 60px;
    font-size: 100px;
    text-align: center;
}

.section003 p{
    margin-bottom: 60px;
    text-align: center;
}

.section003 ul li{
    border: 1px solid var(--mainColor);
    border-radius: 10px;
    overflow: hidden;
}

.section003 ul li a{
    display: block;
    padding: 30px 0;
    text-align: center;
    color: var(--mainColor);
}

.section003 ul li a span{
    font-size: 25px;
}

@media screen and (min-width:1025px){
    .section003 ul li a:hover{
        color: #fff;
        background: #d6bca1;
    }
}

@media screen and (max-width:1024px){
    .section003{
        margin-bottom: 20%;
    }

    .section003 h2{
        margin-bottom: 6%;
        font-size: calc(1vw * calc(100 / 10.24));
    }

    .section003 p{
        margin-bottom: 6%;
    }

    .section003 ul li a{
        padding: 9% 0;
    }
}

@media screen and (max-width:768px){
    .section003 h2{
        margin-bottom: 6%;
    }

    .section003 p{
        width: 90%;
        margin: 0 auto 6%;
    }

    .section003 ul li a{
        padding: 6% 0;
    }

    .section003 ul li a span{
        font-size: calc(1vw * calc(30 / 7.68));
    }

}
/*section003ここまで*/


/*section004～006ここから*/
.section004,
.section005,
.section006 {
    margin-top: -100px;
    margin-bottom: 200px;
    padding-top: 100px;
}

.section004 h2,
.section005 h2,
.section006 h2 {
    margin-bottom: 10px;
    font-size: 100px;
}

.section004 h2 span,
.section005 h2 span,
.section006 h2 span{
    position: relative;
    display: inline-block;
    margin-left: 10px;
    padding: 0 35px;
    font-size: 60px;
    color: var(--tsFontColor);
}

.section004 h2 span::before,
.section004 h2 span::after,
.section005 h2 span::before,
.section005 h2 span::after,
.section006 h2 span::before,
.section006 h2 span::after{
    content:"";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--tsFontColor);
}

.section004 h2 span::before,
.section005 h2 span::before,
.section006 h2 span::before{
    left: 0;
}

.section004 h2 span::after,
.section005 h2 span::after,
.section006 h2 span::after{
    right: 0;
}

.section004 h2 + p,
.section005 h2 + p,
.section006 h2 + p {
    margin-bottom: 30px;
    text-align: right;
}

@media screen and (max-width:1024px){
    .section004,
    .section005,
    .section006{
        margin-bottom: 20%;
    }

    .section004 h2,
    .section005 h2,
    .section006 h2 {
        margin-bottom: 1%;
        font-size: calc(1vw * calc(100 / 10.24));
    }

    .section004 h2 span,
    .section005 h2 span,
    .section006 h2 span{
        margin-left: 1%;
        padding: 0 3.5%;
        font-size: calc(1vw * calc(60 / 10.24));
    }

    .section004 h2 span::before,
    .section004 h2 span::after,
    .section005 h2 span::before,
    .section005 h2 span::after,
    .section006 h2 span::before,
    .section006 h2 span::after{
        width: calc(1vw * calc(30 / 10.24));
    }

    .section004 h2 + p,
    .section005 h2 + p,
    .section006 h2 + p {
        margin-bottom: 3%;
    }
}

@media screen and (max-width:768px){
    .section004 h2,
    .section005 h2,
    .section006 h2 {
        margin-bottom: 4%;
    }

    .section004 h2 + p,
    .section005 h2 + p,
    .section006 h2 + p {
        margin-bottom: 4%;
        text-align: left;
    }
}
/*section004～006ここまで*/


/*section004個別対応用ここから*/

/*section004個別対応用ここまで*/


/*section005個別対応用ここから*/
.section005 h2 span{
    margin-left: 0;
    margin-right: 10px;
}

.section005 .column_2 > div + ul{
    margin-right: 0;
    order: 2;
}

.section005 .column_2 > div{
    margin-right: 40px;
}

@media screen and (max-width:1024px){
    .section005 .column_2 > ul{
        margin-right: 0;
    }

    .section005 .column_2 > div{
        margin-right: 4%;
    }
}

@media screen and (max-width:768px){
    .section005 .column_2 > div{
        margin-right: 0;
    }
}
/*section005個別対応用ここまで*/

/*section007ここから*/
.section007{
    margin-bottom: 60px;
}

.section007 .section_inner > div{
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 10px;
}

.section007 .section_inner > div a{
    display: block;
    padding: 30px 0;
    font-size: 30px;
    text-align: center;
    color: var(--mainColor);
    transition: .4s all;
    border: 1px solid var(--mainColor);
    border-radius: 10px;
}

@media screen and (min-width:1025px){
    .section007 .section_inner > div a:hover{
        color: #fff;
        background: var(--mainColor);
    }
}

@media screen and (max-width:1024px){
    .section007{
        margin-bottom: 6%;
    }

    .section007 .section_inner > div a{
        padding: 9% 0;
        font-size: calc(1vw * calc(30 / 10.24));
    }
}

@media screen and (max-width:768px){
    .section007 .section_inner > div a{
        padding: 6% 0;
        font-size: 18px;
    }
}
/*section007ここまで*/


/*アニメーション対応ここから*/
.section002 .section_inner ul li,
.section002 .section_inner ul + div,
.section004 h2,
.section004 h2 + p,
.section005 h2,
.section005 h2 + p,
.section006 h2,
.section006 h2 + p{
    opacity: 0;
}

/*.section004 h2 + p + div.column_2,
.section005 h2 + p + div.column_2,
.section006 h2 + p + div.column_2{
    opacity: 0;
}*/

.section004 h2 + p + div.column_2 li,
.section004 h2 + p + div.column_2 > div,
.section005 h2 + p + div.column_2 li,
.section005 h2 + p + div.column_2 > div,
.section006 h2 + p + div.column_2 li,
.section006 h2 + p + div.column_2 > div{
    opacity: 0;
}

.section004 h2,
.section005 h2 + p,
.section006 h2{
    transform: translateX(-20px);
}

.section004 h2 + p,
.section005 h2,
.section006 h2 + p{
    transform: translateX(20px);
}

.section002 .section_inner ul.is_active li:first-of-type,
.section002 .section_inner ul + div.is_active{
    animation: fadeIn .8s ease-out .0s 1 alternate forwards;
}

.section002 .section_inner ul.is_active li:last-of-type{
    animation: fadeIn .8s ease-out .4s 1 alternate forwards;
}

.section004.is_active h2,
.section005.is_active h2,
.section006.is_active h2{
    animation: lfadeIn .8s ease-out 0s 1 alternate forwards;
}

.section004.is_active h2 + p,
.section005.is_active h2 + p,
.section006.is_active h2 + p{
    animation: rfadeIn .8s ease-out .4s 1 alternate forwards;
}

/*.section004.is_active h2 + p + div.column_2,
.section005.is_active h2 + p + div.column_2,
.section006.is_active h2 + p + div.column_2{
    animation: fadeIn .8s ease-out 1s 1 alternate forwards;
}*/

.section004.is_active h2 + p + div.column_2 > div,
.section005.is_active h2 + p + div.column_2 > div,
.section006.is_active h2 + p + div.column_2 > div{
    animation: fadeIn .8s ease-out .8s 1 alternate forwards;
}

.section004.is_active h2 + p + div.column_2 li,
.section005.is_active h2 + p + div.column_2 li,
.section006.is_active h2 + p + div.column_2 li{
    animation: fadeIn .8s ease-out .8s 1 alternate forwards;
}

@keyframes fadeIn {
    0%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }
}

@keyframes lfadeIn {
    0%{
        transform: translateX(-20px);
        opacity: 0;
    }

    100%{
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes rfadeIn {
    0%{
        transform: translateX(20px);
        opacity: 0;
    }

    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
/*アニメーション対応ここまで*/