@charset "utf-8";
@import url("../font/load.css");


/* CSS Document */

body {
    min-width: 1280px;
    font-size: 1.6rem;
    line-height: 1.875;
    color: #232323;
    letter-spacing: 0.05em;
    font-family: 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
    /*font-family: 'Noto Serif JP', serif;*/

    /*font-family:  "メイリオ", Meiryo, Tahoma, Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/

    /*NotoSansCJKJP設定*/
    /*font-family: 'Noto Sans Japanese', Helvetica, Arial, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    font-weight: 400;*/


    /*NotoSerifCJKJP設定*/
    /*font-family: 'Noto Serif Japanese', "游明朝体", "Yu Mincho", YuMincho, serif;
    font-weight: 400;*/
}

@media screen and (max-width:767px) {

    body {
        min-width: 375px;
        font-size: 1.5rem;
        line-height: 1.8;
    }

}

/*========================================
headerの設定
==========================================*/

.h_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-top: 7px solid #98c93f;
    background: #fff;
    padding: 0 50px;
    height: 95px;
    overflow: hidden;
}

.h_block {
    align-items: center;
}

.h_info {
    margin-right: 45px;
}

.h_info p {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 10px;
}

.h_time {
    padding: 8px 25px;
    border-radius: 5px;
    background: #f8f0e5;
    line-height: 1;
    margin-right: 30px;
}

.h_time p {
    align-items: center;
}

.h_time p:not(:last-child) {
    margin-bottom: 5px;
}

.h_time span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 30px;
    background: #cfa972;
    color: #fff;
    font-size: 1.4rem;
    margin-right: 20px;
}

@media screen and (max-width:767px) {

    .h_wrap {
        position: static;
        height: auto;
        border-top: 5px solid #98c93f;
        padding: 7px 15px 7px 10px;
    }

    .page_description img{
        height: 60px;
    }

    .h_time{
        padding: 5px 10px;
        margin-right: 0;
        font-size: 1.2rem;
    }

    .h_time span{
        width: 60px;
        height: 25px;
        font-size: 1.1rem;
        margin-right: 7px;
    }

}

/*========================================
footerの設定
==========================================*/

footer {
    text-align: center;
    background: url(../images/common/f_bg.jpg) no-repeat center / cover;
}

.f_boxs {
    padding: 190px 0 50px
}

.f_logo{
    text-align: center;
    margin-bottom: 40px;
}

.f_time {
    width: 240px;
    margin: 0 auto 15px;
}

.f_time span {
    display: block;
    width: 105px;
    text-align: left;
}

.f_info {
    margin-bottom: 30px;
}

.f_info p {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.f_sns {
    margin-bottom: 20px;
}

.f_sns a {
    display: inline-block;
}

.f_sns a:not(:last-child) {
    margin-right: 25px;
}

.f_nav li {
    font-size: 1.5rem;
}

.f_nav li:not(:last-child) {
    margin-right: 20px;
}

#copyright {
    background: #98c93f;
    font-size: 1.4rem;
    padding: 7px 0;
    color: #fff;
}

#copyright a {
    color: #fff;
}

@media screen and (max-width:767px) {

    .f_boxs {
        padding: 60px 0 50px;
    }

    .f_logo{
        margin-bottom: 15px;
    }

    .f_logo img{
        width: 235px;
    }

    .f_sns a img {
        height: 50px;
    }

}

/*========================================
メインビジュアルの設定
==========================================*/

.main_visual {
    margin-top: 95px;
    height: calc(100vh - 95px);
}

.main_visual img{
    max-width: 100%;
    height: auto;
}

.visual_block {
    height: 100%;
    overflow: hidden;
}

.visual_block_big {
    width: 50%;
}

.visual_group {
    width: 50%;
}

.visual_group .visual_block {
    height: 50%;
}

.visual_block a {
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.visual_block a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .6s;
    background: url(../images/top/visual_block_bg01.jpg) no-repeat center / cover;
    z-index: -1;
}

.visual_group .visual_block:nth-child(1) a::before {
    background-image: url(../images/top/visual_block_bg02.jpg);
}

.visual_group .visual_block:nth-child(2) a::before {
    background-image: url(../images/top/visual_block_bg03.jpg);
}

.visual_block a:hover::before {
    transform: scale(1.2);
}

.catch{
    width: 40%;
    max-width: 425px;
}

.visual_group .catch{
    max-width: 425px;
}

@media screen and (max-width:767px) {

    .main_visual {
        margin-top: 0;
        height: auto;
    }

    .visual_block {
        height: 280px;
    }

    .visual_block_big {
        width: 100%;
    }

    .visual_group {
        width: 100%;
    }

    .visual_group .visual_block {
        height: 280px;
    }

    .catch {
        width: 255px;
    }

}

/*========================================
TOPページ
==========================================*/

/*---------------------
top_price_bnr
----------------------*/

.top_price_bnr {
    position: relative;
    z-index: 0;
}

.top_price_bnr::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 758px;
    height: 842px;
    background: url(../images/top/top_price_bnr_bg01.png) no-repeat center / contain;
    z-index: -1;
}

.top_price_bnr::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 675px;
    height: 842px;
    background: url(../images/top/top_price_bnr_bg02.png) no-repeat center / contain;
    z-index: -1;
}

.top_price_bnr_boxs02 {
    padding: 140px 0 150px;
}

.top_price_bnr_block {
    border: 2px solid #6a3906;
    padding: 8px;
    background: #fff;
}

.top_price_bnr_block_in {
    position: relative;
    border: 2px solid #6a3906;
    height: 100%;
    padding: 20px 40px 40px 280px;
    background: url(../images/top/top_price_bnr_block_in_bg.png) no-repeat left center;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
}

.top_price_bnr_block_in::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 199px;
    height: 128px;
    background: url(../images/top/top_price_bnr_label.png) no-repeat center / contain;
}

.top_price_bnr_ttl {
    color: #6a3906;
    font-size: 4.8rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.top_price_bnr_card {
    align-items: center;
}

.top_price_bnr_exclusive {
    margin-right: 15px;
}

.top_price_bnr_exclusive_ttl {
    margin-bottom: 10px;
}

.top_price_bnr_exclusive_ttl span {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d34b5e;
    width: 67px;
    height: 67px;
    border-radius: 50%;
    font-size: 4.0rem;
    color: #fff;
}

.top_price_bnr_exclusive_ttl span:not(:last-child) {
    margin-right: 3px;
}

.top_price_bnr_exclusive_price {
    align-items: center;
    line-height: 1;
}

.top_price_bnr_price_txt01 {
    font-size: 3.0rem;
    color: #6a3906;
    margin-right: 20px;
}

.top_price_bnr_price_txt02 {
    font-size: 1.7rem;
    color: #977c68;
}

.top_price_bnr_change_ttl {
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
    background: #cfa972;
    padding: 3px 0;
}

.top_price_bnr_change_price {
    font-size: 5.5rem;
    color: #d34b5e;
    line-height: 1;
}

.top_price_bnr_change_price span {
    font-size: 2.4rem;
}

@media screen and (max-width:767px) {

    .top_price_bnr::before,
    .top_price_bnr::after{
        width: 150px;
        height: 175px;
    }

    .top_price_bnr_boxs02{
        padding: 60px 0;
    }

    .top_price_bnr_block{
        padding: 5px;
    }

    .top_price_bnr_block_in{
        padding: 65px 15px 30px;
        z-index: 0;
    }

    .top_price_bnr_block_in::before {
        width: 110px;
        height: 70px;
    }

    .top_price_bnr_block_in::after{
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        background: rgba(255,255,255,.6);
        z-index: -1;
    }

    .top_price_bnr_card{
        flex-direction: column;
        align-items: center;
    }

    .top_price_bnr_ttl{
        font-size: 2.6rem;
        text-align: center;
    }

    .top_price_bnr_exclusive{
        margin-right: 0;
        margin-bottom: 10px;
    }

    .top_price_bnr_exclusive_ttl{
        justify-content: center;
    }

    .top_price_bnr_exclusive_ttl span{
        font-size: 2.6rem;
        width: 45px;
        height: 45px;
    }

    .top_price_bnr_price_txt01{
        font-size: 2.4rem;
    }

    .top_price_bnr_change_ttl{
        padding: 3px 7px;
    }

    .top_price_bnr_change_price{
        font-size: 3.5rem;
        text-align: center;
    }

    .top_price_bnr_change_price span{
        font-size: 2.0rem;
    }

}

/*---------------------
top_news
----------------------*/

.top_news{
    position: relative;
    background: url(../images/top/top_news_deco.png) no-repeat right bottom;
    padding: 100px 0 140px;
    margin-top: -55px;
    z-index: 0;
}

.top_news::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1590px;
    background: url(../images/top/top_news_bg.png) no-repeat center / cover;
    z-index: -1;
    pointer-events: none;
}


.top_news_list{
    margin-bottom: 130px;
}

.top_news_list li{
    position: relative;
    width: 330px;
    height: 375px;
    z-index: 0;
}

.top_news_list li:not(:nth-child(3n)){
    margin-right: 45px;
}

.top_news_list li:nth-last-child(n+4){
    margin-bottom: 90px;
}

.top_news_list li::after{
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 326px;
    height: 26px;
    background: url(../images/top/top_news_list_shadow.png) no-repeat center / contain;
    z-index: -1;
}

.top_news_list a{
    position: relative;
    display: block;
    height: 100%;
    background: url(../images/top/top_news_list_bg.png);
    box-shadow: 3.776px 4.663px 14.72px 1.28px rgba(0, 0, 0, 0.03);
    border-radius: 5px;
    padding: 45px 50px 60px;
}

.top_news_list li a::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: url(../images/top/top_news_list_deco.png) no-repeat center / 100% 100%;
    pointer-events: none;
}

.news_post_time{
    display: block;
    font-weight: 500;
    font-size: 1.5rem;
    color: #83af3b
}

.news_post_ttl{
    color: #6a3906;
    font-size: 2.2rem;
    line-height: 1.36;
    font-family: 'Noto Serif JP', serif;
    background: url(../images/top/news_post_ttl_line.png) repeat-x center bottom;
    margin-bottom: 15px;
    padding: 13px 0;
}

.news_more{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 380px;
    height: 80px;
    background: #91c144;
    color: #fff!important;
    font-size: 1.7rem;
    font-weight: 500;
    border-radius: 5px;
    box-shadow: 3px 6px 0 #f1f279;
    margin: 0 auto;
    transition: .6s;
    z-index: 10;
}

.news_more:hover{
    transform: translate(3px,6px);
    box-shadow: none;
}

.news_more::after{
    content: '';
    display: block;
    margin-left: 30px;
    width: 0px;
    height: 0px;
    border-left: 7px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

@media screen and (max-width:767px) {

    .top_news{
        padding-bottom: 0;
        background: url(../images/top/top_news_bg.png) no-repeat center / cover;
    }

    .top_news_list{
        margin-bottom: 60px;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 100;
    }

    .top_news_list li{
        height: auto;
    }

    .top_news_list li:not(:nth-child(3n)) {
        margin-right: 0;
    }

    .top_news_list li:not(:last-child){
        margin-bottom: 40px;
    }

    .top_news_list a{
        padding: 40px 30px 40px;
    }

    .news_post_ttl{
        font-size: 2.0rem;
    }

    .news_more{
        width: 260px;
        height: 55px;
    }

}

/*---------------------
top_youtube
----------------------*/

.top_youtube{
    position: relative;
    padding: 100px 0 120px;
    z-index: 0;
}

.top_youtube::before{
    content: '';
    position: absolute;
    top: -220px;
    left: 0;
    width: 853px;
    height: 1009px;
    background: url(../images/top/top_youtube_deco01.png) no-repeat center / contain;
    z-index: -1;
    pointer-events: none;
}

.top_youtube::after{
    content: '';
    position: absolute;
    bottom: -240px;
    right: 0;
    width: 666px;
    height: 680px;
    background: url(../images/top/top_youtube_deco02.png) no-repeat center / contain;
    z-index: -1;
}

.top_youtube_ttl{
    position: relative;
    width: 853px;
    height: 161px;
    background: url(../images/top/top_youtube_ttl.png) no-repeat center / contain;
    text-align: center;
    margin: 0 auto 85px;
    font-family: 'Noto Serif JP', serif;
    font-size: 3.7rem;
    color: #fff;
    text-shadow:#60ab5e 2px 0px 10px, #60ab5e -2px 0px 10px,
        #60ab5e 0px -2px 10px, #60ab5e -2px 0px 10px,
        #60ab5e 2px 2px 10px, #60ab5e -2px 2px 10px,
        #60ab5e 2px -2px 10px, #60ab5e -2px -2px 10px,
        #60ab5e 1px 2px 10px;
    padding-top: 55px;
}

.top_youtube_movie{
    position: relative;
    z-index: 0;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
}

.top_youtube_movie video{
    width: 100%;
    height: 100%;
}

.top_youtube_movie::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-5deg);
    width: 100%;
    height: 100%;
    background: #f5e6b0;
    z-index: -1;
}

@media screen and (max-width:767px) {

    .top_youtube{
        padding: 60px 0;
    }

    .top_youtube::before{
        content: none;
    }

    .top_youtube::after{
        bottom: -150px;
        width: 180px;
        height: 300px;
    }

    .top_youtube_ttl{
        width: 350px;
        height: 65px;
        margin-bottom: 60px;
        font-size: 2.2rem;
        padding-top: 18px;
    }

}

/*---------------------
top_map
----------------------*/

.top_map{
    background: url(../images/top/top_map_item01.png) no-repeat right bottom -340px,url(../images/top/top_map_bg.png) no-repeat center top / cover;
    padding: 360px 0 400px;
    margin-top: -160px;
}

.top_map_ttl span::before{
    content: none;
}

.top_map_block{
    position: relative;
}

.top_map_img{
    text-align: center;
}

.top_map_list li{
    position: absolute;
    width: 210px;
    border: 1px solid #d1c0a5;
    background: #fff;
    padding: 10px;
    counter-increment: top_map_list;
}

.top_map_list li:nth-child(1){
    top: 20px;
    left: 0;
}

.top_map_list li:nth-child(2){
    top: 230px;
    left: 0;
}

.top_map_list li:nth-child(3){
    top: 440px;
    left: 0;
}

.top_map_list li:nth-child(4){
    top: 650px;
    left: 0;
}

.top_map_list li:nth-child(5){
    top: 650px;
    left: 290px;
}

.top_map_list li:nth-child(6){
    top: 650px;
    left: 580px;
}

.top_map_list li:nth-child(7){
    top: 650px;
    right: 0;
}

.top_map_list li:nth-child(8){
    top: 440px;
    right: 0;
}

.top_map_list li:nth-child(9){
    top: 230px;
    right: 0;
}

.top_map_list li:nth-child(10){
    top: 20px;
    right: 0;
}

.top_map_list li::before{
    content: counter(top_map_list, decimal-leading-zero);
    position: absolute;
    top: 3px;
    left: 3px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #d1c0a5;
    border-radius: 50%;
    z-index: 100;
    font-family: 'Noto Serif JP', serif;
}

.top_map_list_thumb{
    height: 100px;
    overflow: hidden;
    margin-bottom: 10px;
}

.top_map_list_thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.top_map_list li a:hover img{
    transform: scale(1.2);
}

.top_map_list_ttl{
    font-size: 1.7rem;
    font-family: 'Noto Serif JP', serif;
    text-align: center;
}

@media screen and (max-width:767px) {

    .top_map{
        padding: 100px 0 60px;
        background: url(../images/top/top_map_bg.png) no-repeat left -311px top / cover;
        margin-top: 0;
    }

    .top_map_img{
        margin: 0 auto 30px;
    }

    .top_map_list{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .top_map_block .top_map_list li{
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .top_map_list li{
        width: 48%;
    }

    .top_map_list li:nth-last-child(n+3){
        margin-bottom: 30px;
    }

    .top_map_list_thumb{
        height: 28vw;
    }

    .top_map_list_ttl{
        font-size: 1.5rem;
    }

}

/*---------------------
top_intro
----------------------*/

.top_intro{
    position: relative;
    background: #feffef;
}

.top_intro::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 370px;
    background: url(../images/top/top_intro_fix.jpg) no-repeat center / cover;
    background-attachment: fixed;
}

.top_intro_boxs{
    padding: 535px 0 160px;
}

.top_intro_list li{
    position: relative;
    background: url(../images/top/top_intro_list_bg.jpg) no-repeat center / cover;
    z-index: 0;
    width: 330px;
    height: 140px;
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: #70a120 2px 0px 10px, #70a120 -2px 0px 10px, #70a120 0px -2px 10px, #70a120 -2px 0px 10px, #70a120 2px 2px 10px, #70a120 -2px 2px 10px, #70a120 2px -2px 10px, #70a120 -2px -2px 10px, #70a120 1px 2px 10px;
}

.top_intro_list li:nth-last-child(n+4){
    margin-bottom: 40px;
}

.top_intro_list li::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: url(../images/top/top_intro_list_frame.png) no-repeat center / 100% 100%;
    z-index: -1;
}

.top_intro_list li a{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    height: 100%;
    transition: .6s;
}

.top_intro_list li a:hover{
    box-shadow: 0px 0px 15px #6aa053;
}

@media screen and (max-width:767px) {

    .top_intro::before{
        height: 180px;
        background-attachment: scroll;
    }

    .top_intro_boxs{
        padding: 230px 0 60px;
    }

    .top_intro_list li{
        width: 48%;
        height: 80px;
        line-height: 1.5;
        font-size: 1.5rem;
    }

    .top_intro_list li:nth-last-child(n+4) {
        margin-bottom: 0;
    }

    .top_intro_list li:nth-last-child(n+3) {
        margin-bottom: 25px;
    }

    .top_intro_list li:last-child{
        margin: 0 auto;
    }
}

/*---------------------
top_company
----------------------*/

.top_company{
    position: relative;
    padding: 180px 0 160px;
}

.top_company::before{
    content: '';
    position: absolute;
    bottom: -70px;
    right: 0;
    width: 660px;
    height: 416px;
    background: url(../images/top/top_company_deco.png) no-repeat right bottom / contain;
}

@media screen and (max-width:1650px) {

    .top_company::before{
        background-size: 40vw;
    }

}

.top_company_tb{
    width: 100%;
}

.top_company_tb tr{
    background: url(../images/top/top_company_tb_bdr.png) repeat-x center bottom;
}

.top_company_tb th,
.top_company_tb td{
    font-weight: 500;
    padding: 25px 0;
    vertical-align: middle;
}

.top_company_tb th{
    width: 370px;
    text-align: left;
}

.top_company_tb td a{
    display: inline-block;
    border-bottom: 2px solid #c3c0c0;
    color: #232323;
}

.top_company_tb td a:not(:last-child){
    margin-bottom: 10px;
}

@media screen and (max-width:767px) {

    .top_company::before {
        width: 146px;
        height: 92px;
        background-size: contain;
        bottom: -30px;
    }

    .top_company {
        padding: 100px 0 80px;
    }

    .top_company_tb th,
    .top_company_tb td{
        display: block;
        padding: 10px 0;
    }

    .top_company_tb th{
        width: 110px;
    }

    .top_company::before{
        width: 200px;
    }

}


/*========================================
下層メインビジュアルの設定
==========================================*/


.sub_visual{
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../images/common/sub_visual.jpg) no-repeat center / cover;
    height: 400px;
    margin-top: 95px;
}

.sub_visual h2{
    font-family: 'Noto Serif JP', serif;
    font-size: 4.5rem;
    text-shadow:#fff 2px 0px 10px, #fff -2px 0px 10px,
        #fff 0px -2px 10px, #fff -2px 0px 10px,
        #fff 2px 2px 10px, #fff -2px 2px 10px,
        #fff 2px -2px 10px, #fff -2px -2px 10px,
        #fff 1px 2px 10px;
    color: #6a3906;
}

@media screen and (max-width:767px) {

    .sub_visual{
        margin-top: 0;
        height: 170px;
    }

    .sub_visual h2{
        font-size: 2.6rem;
    }

}

/*========================================
下層ページ名
==========================================*/

/*---------------------
セクション名
----------------------*/









/*========================================
newsの設定
==========================================*/

.news_list li:not(:last-child) {
    margin-bottom: 30px;
}

.news_list li a {
    justify-content: flex-start;
    border: 1px solid;
    padding: 10px;
}

.news_list li time {
    display: inline-block;
    margin-right: 20px;
}

.news_txt {
    width: calc(100% - 150px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*.news_area_inner {
    border-radius: 5px;
    box-shadow: 0px 6px 24px -11px #000000;
    padding: 30px 30px 50px 30px;
    background: #fff;
}*/

.news_area_inner h3 {
    font-size: 2.3rem;
    border-bottom: 1px solid;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.news_area_txt img {
    max-width: 100%;
    height: auto;
}

.news_inner_time {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.news_area_txt {
    margin-bottom: 60px;
    min-height: 200px;
}

@media screen and (max-width:767px) {

    .news_list li:not(:last-child) {
        margin-bottom: 25px;
    }

    .news_list li a {
        justify-content: flex-start;
        padding: 2%;
        font-size: 1.2rem;
    }

    .news_list li time {
        display: block;
        width: 100%;
        margin: initial;
    }

    /*.news_area_inner {
    border-radius: 5px;
    padding: 5% 5% 7%;
}*/

    .news_area_inner h3 {
        font-size: 2.0rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .news_inner_time {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .news_area_txt {
        margin-bottom: 30px;
    }

    .news_txt {
        width: 100%;
        font-size: 1.5rem;
    }

}

/*========================================
privacyの設定
==========================================*/

.privacy_boxs h4 {
    font-size: 2.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Noto Serif JP', serif;
}

.privacy_boxs section {
    margin-bottom: 30px;
}

@media screen and (max-width:767px) {

    .privacy_boxs .cmn_ttl{
        font-size: 2.2rem;
    }

    .privacy_boxs h4 {
        font-size: 1.9rem;
        margin-bottom: 10px;
    }

    .privacy_boxs section {
        margin-bottom: 30px;
    }

}

/*========================================
siteの設定
==========================================*/

.site_list a {
    position: relative;
    display: block;
    border-bottom: 1px solid;
    margin-bottom: 20px;
    padding: 7px 0 7px 30px;
}

.site_list a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    width: 5px;
    height: 5px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: translateY(-50%) rotate(-45deg);
    transition: 0.4s;
}

.site_list a:hover::before {
    left: 20px;
}

@media screen and (max-width:767px) {

    .site_list a {
        position: relative;
        display: block;
        margin-bottom: 20px;
        padding: 7px 0 7px 30px;
    }

    .site_list a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 10px;
        width: 5px;
        height: 5px;
        transform: translateY(-50%) rotate(-45deg);
        transition: All .5s;
    }

    .site_list a:hover::before {
        left: 20px;
    }

}

/*========================================
e404の設定
==========================================*/

.e404_txt a {
    color: #e63a3a;
}
