@charset "utf-8";
/* CSS Document */

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
root設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

*:root {
    font-size: 10px;
    font-family: 'Zen Maru Gothic', "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 400;
    line-height: 1;
    font-feature-settings: "palt";
    text-justify: inter-ideograph;
}



/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
noscript
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

noscript {
    display: block;
    font-size: 16px;
    padding: 1.5em;
    background-color: #65A9DC;
    text-align: center;
    line-height: 1.75em;
    position: relative;
    z-index: 100000;
    width: auto;
    color: #fff;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
font設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
リンク設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

/*リンク*/

a {
    color: #034EAA;
    text-decoration: none;
}

a:visited {
    color: #2066BB;
}

a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

a:hover img {
    text-decoration: none;
}

a:active {
    opacity: 0.5;
}

/*PCでリンクを殺す*/

@media screen and (min-width:481px) {
    a.disabled {
        pointer-events: none;
    }

    a.disabled:hover, a.disabled:active {
        opacity: 1 !important;
    }
}

/*SPでリンクを殺す*/

@media screen and (max-width:480px) {
    a.sp_disabled {
        pointer-events: none;
    }

    a.sp_disabled:hover, a.sp_disabled:active {
        opacity: 1 !important;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
表示設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

/*PCで消す*/

.pc_hide {
    display: none;
}

/*SPで表示*/

@media screen and (max-width:480px) {
    .sp_hide {
        display: none;
    }

    .pc_hide {
        display: block;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
画像
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

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

img.ofi_contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ofi.min.js用の記述 */
    font-family: 'object-fit: contain;'
}

img.ofi_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ofi.min.js用の記述 */
    font-family: 'object-fit: cover;'
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
タイトル
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
h1.gen {
    font-size: 4.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    text-align: center;
    margin: 6rem 0 1.3rem;
}



h1.gen+p.title_copy {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 2rem;
}

@media screen and (max-width:768px) {
    h1.gen {
        font-size: 3.6rem;
        margin: 3rem 0 1.8rem;
    }

    h1.gen.small {
        font-size: 3.2rem;
        line-height: 1.5;
        margin: 3rem 0 0.8rem;
    }

    h1.gen+p.title_copy {
        font-size: 1.2rem;
    }
}


/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
fade
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.fade {
    opacity: 0;
    transform: translate(0, 2rem);
}

.fade_left {
    transform: translateX(-2rem);
}

.fade_right {
    transform: translateX(2rem);
}

.fade.fade_in {
    opacity: 1;
    transform: translate(0, 0);
    transition: ease-in-out 500ms;
}

/*fade_delay_wrap 横並びを順番にディレイ*/

.fade_delay_wrap>.fade:nth-of-type(2) {
    transition-delay: 0.1s;
}

.fade_delay_wrap>.fade:nth-of-type(3) {
    transition-delay: 0.2s;
}

.fade_delay_wrap>.fade:nth-of-type(4) {
    transition-delay: 0.3s;
}

.fade_delay_wrap>.fade:nth-of-type(5) {
    transition-delay: 0.4s;
}

.fade_delay_wrap>.fade:nth-of-type(6) {
    transition-delay: 0.5s;
}

.fade_delay_wrap>.fade:nth-of-type(7) {
    transition-delay: 0.6s;
}

.fade_delay_wrap>.fade:nth-of-type(8) {
    transition-delay: 0.7s;
}

/*fade_block　囲った要素の中で任意にディレイ*/

.fade_block .fade_blocl_child {
    opacity: 0;
    transform: translate(0, 2rem);
}

.fade_block .fade_blocl_child.fade_left {
    transform: translateX(-2rem);
}

.fade_block .fade_blocl_child.fade_right {
    transform: translateX(2rem);
}

.fade_block.fade_in .fade_blocl_child {
    opacity: 1;
    transform: translate(0, 0);
    transition: ease-in-out 500ms;
}

.fade_block.fade_in .fade_child_02 {
    transition-delay: 0.1s;
}

.fade_block.fade_in .fade_child_03 {
    transition-delay: 0.2s;
}

.fade_block.fade_in .fade_child_04 {
    transition-delay: 0.3s;
}

.fade_block.fade_in .fade_child_05 {
    transition-delay: 0.4s;
}


/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
ページトップボタン設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.pagetop {
    position: fixed;
    right: 0.5rem;
    bottom: 0.5rem;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    z-index: 20;
}

.pagetop a {
    display: block;
    width: 4rem;
    height: 4rem;
    background-color: #000;
    position: relative;
}

.pagetop a span {
    display: none;
}

.pagetop.on {
    visibility: visible;
    opacity: 1;
}

.pagetop a::after {
    content: "";
    position: absolute;
    display: block;
    top: 1.75rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 1rem;
    height: 1rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(-45deg);
}

/*PC版のみhoverを付与*/

@media screen and (min-width: 769px) {
    .pagetop.on a:hover {
        opacity: 0.7;
        transition: 0.2s;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
headre
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

header {
    position: sticky;
    width: 190px;
    top: 40px;
    left: 40px;
    z-index: 10000;
}

header .logo {
    width: 156px;
    margin: 0 auto 60px;
}

header .logo a {
    display: block;
}

@media screen and (max-width:1366px) {
    header {
        padding-top: 34px;
        width: 100%;
        top: 0;
        left: 0;

    }

    header .logo {
        width: 110px;
        position: absolute;
        left: 36px;
    }
}

@media screen and (max-width:1190px) {
    header {
        position: fixed;
        padding-top: 1.6rem;
        /* background-color: rgba(255, 255, 255, 0.5);
        height: 7.2rem;
        z-index: 100; */
    }

    header .logo {
        width: 60px;
        left: 0;
        right: 0;
        margin: auto;
    }

    header.on .logo {
        width: 42px;
        transition: all 0.2s;
    }
}

@media screen and (max-width:768px) {

    header .logo {
        width: 6rem;
        margin: auto;
    }

    header.on .logo {
        width: 4rem;
        transition: all 0.2s;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
ハンバーガーメニュー  
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.menu_btn {
    position: absolute;
    z-index: 20000;
    width: 4.8rem;
    height: 4.8rem;
    border: none;
    right: 1rem;
    top: 1rem;
    padding: 0.9rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0);
    transition: all 0.2s;
    /*PCでは非表示*/
    display: none;
}

/*ボタンクリック時の枠線消し*/

.menu_btn:focus {
    outline: 0;
}

/*ボタン罫線*/

.menu_btn span.bar {
    transform-origin: center;
    display: block;
    background-color: #000;
    height: 2px;
    border-radius: 1px;
    transition: all 0.2s;
    margin: 0.6rem 0;
}

/*  メニューオープン時  */

/* .menu_btn.open {
    background: rgba(255, 255, 255, 0.5);
} */

/* .menu_btn.open .bar {
    border-top: 0.2rem solid #fff;
} */

.menu_btn.open .bar1 {
    transform: rotate(45deg);
}

.menu_btn.open .bar2 {
    opacity: 0;
}

.menu_btn.open .bar3 {
    transform: rotate(-45deg);
    margin-top: -1.7rem;
}

@media screen and (max-width:1190px) {

    /*  ハンバーガーメニュー  */
    .menu_btn {
        display: block;
    }
}



/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
メニュー
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.glo_menu_wrap .glo_menu li:first-child {
    display: none;
}

.glo_menu_wrap .glo_menu li a span {
    vertical-align: 0.1em;
}

.glo_menu_wrap .glo_menu li a:hover {
    transition: all 0.2s;
}


@media screen and (min-width:1367px) {
    .glo_menu_wrap .glo_menu li {
        margin: 10px 0;
    }

    .glo_menu_wrap .glo_menu li a {
        display: block;
        text-decoration: none;
        color: #fff;
        background-color: #e39b2f;
        font-size: 1.6rem;
        line-height: 2.375;
        padding: 0 0.75em;
        border-radius: 0.35em;

    }

    .glo_menu_wrap .glo_menu li a:hover {
        background-color: #e9af59;
        opacity: 1;
        transition: all 0.3s;
    }


}

@media (min-width:1191px) and (max-width:1366px) {
    .glo_menu_wrap {
        position: absolute;
        top: 20px;
        right: 24px;
        box-sizing: border-box;
    }

    .glo_menu_wrap .glo_menu {
        display: flex;
    }

    .glo_menu_wrap .glo_menu li {
        font-size: 1.8rem;
        padding: 0 0.25em;
        position: relative;
    }

    .glo_menu_wrap .glo_menu li::after {
        content: '';
        display: block;
        width: 1px;
        height: 1em;
        background-color: #000;
        position: absolute;
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
    }

    .glo_menu_wrap .glo_menu li a {
        display: block;
        padding: 0 0.75em;
        color: #000;
        text-decoration: none;
        line-height: 2;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 1.5em;
    }

    .glo_menu_wrap .glo_menu li a:hover {
        background-color: #e9af59;
        opacity: 1;
        color: #fff;
    }

}

@media screen and (max-width:1190px) {
    .glo_menu_wrap {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        box-sizing: border-box;
        background-color: #fff;
        z-index: 15000;
        visibility: hidden;
        opacity: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .glo_menu_wrap.open {
        visibility: visible;
        opacity: 1;
        transition: all 0.2s;
    }

    .glo_menu_wrap .glo_menu {
        flex-direction: column;
    }

    .glo_menu_wrap .glo_menu li {
        font-size: 2.2rem;
        margin: 2em;
    }

    .glo_menu_wrap .glo_menu li:first-child {
        display: block;
    }

    .glo_menu_wrap .glo_menu li a {
        display: block;
        color: #000;
        text-decoration: none;
        text-align: center;
    }


}

/*〓〓〓〓〓〓〓〓〓〓
page_nav 
〓〓〓〓〓〓〓〓〓〓〓*/

/* シングルページ WP PageNavi 共通*/

.page_nav_wrap {
    margin: 6rem 0 0;
}

/* シングルページ */

.page_nav {
    text-align: center;
}

.page_nav li {
    display: inline-block;
    margin-right: -0.12em;
    margin: 0 2em;
}

.page_nav a {
    text-decoration: none;
}

.page_nav .archive {}

.page_nav .prev, .page_nav .next {}

@media screen and (max-width:480px) {
    .page_nav_wrap {
        font-size: 1.2rem;
        margin: 4rem 0 0;
    }

    .page_nav {
        line-height: 2rem;
    }

    .page_nav li {
        margin: 0 1em;
    }
}

/* WP PageNavi */

.wp-pagenavi_wrap {}

.wp-pagenavi {
    text-align: center;
}

.wp-pagenavi a, .wp-pagenavi .current, .wp-pagenavi .extend {
    display: inline-block;
    height: 2.25em;
    line-height: 2em;
    min-width: 2.25em;
    text-align: center;
    margin: 0 0.5em;
    padding: 0;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 1);
    border: none;
    letter-spacing: normal;
    border-radius: 2em;
    text-decoration: none;
    color: #000;
    border: 2px solid #000;
    font-size: 1.6rem;
    font-weight: 400;
}

.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink, .wp-pagenavi a.last, .wp-pagenavi a.first, .wp-pagenavi .extend {
    background-color: rgba(240, 240, 240, 1);
    border: none;
}

.wp-pagenavi .current {
    background-color: #000;
    color: #fff;
}

.wp-pagenavi .first, .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .last {
    margin: 0 1em;
}

@media screen and (max-width:480px) {
    .wp-pagenavi a, .wp-pagenavi .current, .wp-pagenavi .extend {
        margin: 0 0.25rem;
    }

    .wp-pagenavi .first, .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .last {
        margin: 0 0.25rem;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
page_wrap
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/


/* .top */
#page_wrap.top {
    background-image: url(../img/top/main_img.svg);
    background-size: auto 740px;
    background-position: top 20px center;
    background-repeat: no-repeat;
    padding-top: 234px;
    position: relative;
}

@media screen and (max-width:1366px) {
    #page_wrap.top {
        background-size: auto 560px;
        background-position: top 64px center;
        padding-top: 0;
    }
}

@media screen and (max-width:1190px) {
    #page_wrap.top {
        background-position: top 100px center;
        padding-top: 720px;
    }
}

@media screen and (max-width:768px) {
    #page_wrap.top {
        background-size: auto 76vw;
        background-position: top 10rem center;
        padding-top: calc(76vw + 10rem);
    }
}



/*#main_contents*/

#page_wrap .page_wrap_inner #main_contents {
    max-width: 1000px;
    min-height: ;
    margin: auto;
}

@media (min-width:1191px) and (max-width:1540px) {
    #page_wrap .page_wrap_inner #main_contents {
        padding: 0 2rem 0 17rem;
    }
}

@media screen and (max-width:1190px) {
    #page_wrap .page_wrap_inner #main_contents {
        padding: 0 2rem;
    }
}

@media screen and (max-width:480px) {
    #page_wrap .page_wrap_inner #main_contents {
        padding: 0 1.6rem;
    }
}

/*下層*/
@media screen and (min-width:1367px) {
    #page_wrap.underlayer .page_wrap_inner #main_contents {
        margin-top: -457px;
        min-height: 438px;
    }
}

@media screen and (max-width:1366px) {
    #page_wrap.underlayer .page_wrap_inner #main_contents {
        margin-top: 0;
    }
}

@media screen and (max-width:1190px) {
    #page_wrap.underlayer .page_wrap_inner #main_contents {
        margin-top: 0;
        padding-top: 88px;
    }
}

#page_wrap .page_wrap_inner {
    max-width: 1460px;
    margin: auto;
}


/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
フッタのボタン
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.footer_button_wrap {
    margin-top: 14rem;
    padding: 7rem 0 8.6rem;
    background-color: #eda02a;
}

.footer_button_wrap ul {
    max-width: 934px;
    margin: auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
}

.footer_button_wrap ul li {
    width: 438px;
}

.footer_button_wrap ul li a {
    background-color: #fff;
    border-radius: 1.6rem;
    box-shadow: #e6601e 0 9px 0;
    color: #000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    padding: 3.6rem 0 3rem;
    position: relative;
}

.footer_button_wrap ul li a::before {
    content: '';
    display: block;
    width: 3.6rem;
    height: 3.6rem;
    background-color: #eda02a;
    border-radius: 50%;
    position: absolute;
    right: 2rem;
    bottom: 1.7rem;
}

.footer_button_wrap ul li a::after {
    content: '';
    display: block;
    width: 0.9rem;
    height: 0.9rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    right: 3.4rem;
    bottom: 2.9rem;
    transform: rotate(45deg);
}

.footer_button_wrap ul li a:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
}

.footer_button_wrap ul li a .img {
    width: 110px;
    margin: auto;
}

.footer_button_wrap ul li:last-child a .img {
    width: 120px;
    padding-left: 34px;
}

.footer_button_wrap ul li a .text_wrap {
    text-align: center;
}

.footer_button_wrap ul li a .text_wrap h3 {
    font-size: 2.6rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #eda02a;
    margin: 0.25em 0;
}

.footer_button_wrap ul li a .text_wrap p {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

@media screen and (max-width:1024px) {
    .footer_button_wrap {
        margin-top: 7.4rem;
        padding: 2.8rem 0 0.6rem;
    }

    .footer_button_wrap ul {
        max-width: 480px;
        flex-direction: column;
    }

    .footer_button_wrap ul li {
        width: 100%;
        margin-bottom: 2.6rem;

    }

    .footer_button_wrap ul li a {
        border-radius: 1.2rem;
        box-shadow: #e6601e 0 7px 0;
        flex-direction: row;
        padding: 2.4rem 0 2.4rem 1.6rem;
    }



    .footer_button_wrap ul li a .img {
        width: 9rem;
        padding: 0.5em 0 0 0;
        margin: 0 1rem 0 0;
    }

    .footer_button_wrap ul li:last-child a .img {
        width: 8rem;
        padding: 0 0 0 1rem;
    }

    .footer_button_wrap ul li a .text_wrap {
        text-align: left;
    }

    .footer_button_wrap ul li a .text_wrap h3 {
        font-size: 1.8rem;
        margin: 0 0 0.25em;
    }

    .footer_button_wrap ul li a .text_wrap p {
        font-size: 1.3rem;
    }
}

@media screen and (max-width:480px) {

    .footer_button_wrap ul li a::before,
    .footer_button_wrap ul li a::after {
        display: none;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
footer
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
footer {
    max-width: 1000px;
    padding: 0 2rem;
    margin: 5.8rem auto 4rem;
}

footer .data_wrap {
    display: flex;
    padding-bottom: 3.6rem;
    margin-bottom: 3.4rem;
    border-bottom: 1px solid #000;
}

footer .data_wrap h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8.4rem;
    margin-right: 1.4rem;
    flex-shrink: 0;
    background-color: #e6e6e6;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    font-weight: 400;
}

footer .data_wrap .data .name {
    font-size: 1.8rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
}

footer .data_wrap .data .address {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

footer .data_wrap .data .address a {
    color: #000;
}

footer nav h4 {
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: #eda02a;
    font-weight: 400;
    margin-bottom: 2rem;
}

footer nav ul {
    display: flex;
    font-size: 1.6rem;
    letter-spacing: 0.075em;
    margin-bottom: 2rem;

}

footer nav ul li::after {
    content: '|';
}

footer nav ul li:last-child::after {
    display: none;
}

footer nav ul li a {
    color: #000 !important;
    display: inline-block;
    padding: 0 1em;
}

footer nav ul li:first-child a {
    padding-left: 0;
}

footer .copyright {
    text-align: right;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: #808080;
}

@media screen and (max-width:768px) {
    footer {
        margin: 3.5rem auto 3.3rem;
    }

    footer .data_wrap {
        flex-direction: column;
        padding-bottom: 2.4rem;
        margin-bottom: 3.2rem;
    }

    footer .data_wrap h3 {
        display: block;
        width: 100%;
        margin: 0 0 1.2rem;
        text-align: center;
        line-height: 2;
    }

    footer .data_wrap .data .name {
        font-size: 1.4rem;
        margin-bottom: 0.25em;
    }

    footer .data_wrap .data .address {
        font-size: 1.2rem;
        line-height: 1.66;
    }

    footer nav h4 {
        margin-bottom: 1.5rem;
    }

    footer nav ul {
        flex-direction: column;
        line-height: 2;

    }

    footer nav ul li::after {
        display: none;
    }

    footer nav ul li a {
        padding: 0;
    }

    footer nav ul li:first-child a {
        padding-left: 0;
    }

}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
ボタン
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.button_wrap {
    margin: 0 0 4.5rem;
    text-align: center;
}

.button_wrap a.button {
    margin: auto;
    display: inline-block;
    font-size: 2rem;
    line-height: 1.5;
    padding: 1.2rem 3.5em;
    min-width: 28rem;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    border-radius: 10rem;
    position: relative;
}

.button_wrap a.button:hover {
    opacity: 0.7;
}

.button_wrap a.button span {
    display: inline-block;
}

.button_wrap a.button.yajirushi::after {
    position: absolute;
    content: '';
    display: block;
    width: 2.5rem;
    height: 1.6rem;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    right: 1.8rem;
    top: 0;
    bottom: 0;
    margin: auto;
}

/* ボタン　白 */
.button_wrap a.button.white {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

/* ボタン　オレンジ */
.button_wrap a.button.orange {
    background-color: #eda02a;
    color: #fff;
}

/* 矢印　黒 */
.button_wrap a.button.yajirushi.yaji_black::after {
    background-image: url(../img/yajirushi-black.svg);
}

/* 矢印　白 */
.button_wrap a.button.yajirushi.yaji_white::after {
    background-image: url(../img/yajirushi-white.svg);
}

/* pdf */

.button_wrap a.pdf_link {
    display: block;
    background-color: #eee;
    text-align: center;
    padding: 0.3em 2em;
    color: #000;
    line-height: 1.5;
    margin: 3rem auto;
    font-size: 1.8rem;
    border-radius: 5rem;
    text-decoration: none;
    max-width: 40rem;
}

.button_wrap a.pdf_link span::before {
    content: 'PDF';
    display: inline-block;
    font-size: 0.75em;
    padding: 0.15em 0.5em;
    background-color: #999;
    color: #fff;
    margin-right: 0.5em;
    vertical-align: 0.1em;
    border-radius: 0.3em;
}

@media screen and (max-width:480px) {
    /* pdf */

    .button_wrap a.pdf_link {
        margin: 2rem auto;
        font-size: 1.6rem;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
トップページ
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.catch_copy_wrap {
    max-width: 1000px;
    margin-bottom: 14rem;
}

.top .catch_copy_wrap {
    margin-top: 140px;
}

.catch_copy_wrap h1 {
    font-size: 3.2rem;
    line-height: 1.6875;
    text-align: center;
    color: #eda02a;
    max-width: 750px;
    margin: 0 auto 1em;
    position: relative;
}

.catch_copy_wrap h1::before {
    content: '';
    display: block;
    width: 168px;
    height: 211px;
    background-image: url(../img/top/top_img_happa.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: -1rem;
    top: 5rem;
}

.catch_copy_wrap h1::after {
    content: '';
    display: block;
    width: 168px;
    height: 211px;
    background-image: url(../img/top/top_img_happa.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    right: 0;
    top: -2rem;
    transform: scale(-1, 1) rotate(18deg);
}

.catch_copy_wrap .lead_copy_wrap .lead_copy {
    font-size: 2rem;
    line-height: 2.2;
    text-align: center;
    margin: 3.6rem 0 5.6rem;
    position: relative;
}

/* イラスト */
.catch_copy_wrap .lead_copy_wrap {
    position: relative;
}

.catch_copy_wrap .lead_copy_wrap .illust {
    position: absolute;
}

.catch_copy_wrap .lead_copy_wrap .illust.img_01 {
    top: 400px;
    left: 47px;
}

.catch_copy_wrap .lead_copy_wrap .illust.img_02 {
    top: 87px;
    right: 52px;
}

.catch_copy_wrap .lead_copy_wrap .illust.img_03 {
    top: 820px;
    left: 140px;
}

.catch_copy_wrap .lead_copy_wrap .illust.img_04 {
    top: 760px;
    right: 170px;
}

@media screen and (max-width:1366px) {
    .top .catch_copy_wrap {
        margin-top: 640px;
    }
}

@media screen and (max-width:1190px) {

    .top .catch_copy_wrap,
    .catch_copy_wrap {
        margin-top: 2rem;
    }

    /* イラスト */
    .catch_copy_wrap .lead_copy_wrap {
        position: relative;
    }

    .catch_copy_wrap .lead_copy_wrap .illust {
        position: absolute;
    }

    .catch_copy_wrap .lead_copy_wrap .illust.img_01 {
        top: 154px;
        left: 0px;
    }

    .catch_copy_wrap .lead_copy_wrap .illust.img_02 {
        top: 87px;
        right: 0px;
    }

    .catch_copy_wrap .lead_copy_wrap .illust.img_03 {
        top: 396px;
        left: 100px;
    }

    .catch_copy_wrap .lead_copy_wrap .illust.img_04 {
        top: 454px;
        right: 110px;
    }

}

@media screen and (max-width:768px) {
    .catch_copy_wrap {
        margin-top: 2rem;
        margin-bottom: 8.6rem;
    }

    .catch_copy_wrap h1 {
        font-size: 2rem;
        max-width: 343px;
        line-height: 1.6;
        margin-bottom: 1em;
    }

    .catch_copy_wrap h1::before {

        width: 65px;
        height: 81px;
        left: -1rem;
        top: 9rem;
    }

    .catch_copy_wrap h1::after {
        width: 65px;
        height: 81px;
        right: -1.5rem;
        top: 6rem;
        transform: scale(-1, 1) rotate(18deg);
    }

    .catch_copy_wrap .lead_copy_wrap .lead_copy {
        font-size: 1.6rem;
        line-height: 1.75;
        text-align: center;
        margin: 1.6rem 0 4rem;
    }

    .catch_copy_wrap .lead_copy_wrap .illust.img_01 {
        width: 15%;
        top: 140px;
        left: -1%;
    }

    .catch_copy_wrap .lead_copy_wrap .illust.img_02 {
        width: 20%;
        top: 168px;
        right: -1%;
    }

    .catch_copy_wrap .lead_copy_wrap .illust.img_03 {
        width: 14%;
        top: 320px;
        left: 2%;
    }

    .catch_copy_wrap .lead_copy_wrap .illust.img_04 {
        width: 12%;
        top: 380px;
        right: 5%;
    }

    /* top */
    .top .catch_copy_wrap .lead_copy_wrap .illust.img_01 {
        top: 50px;
    }

    .top .catch_copy_wrap .lead_copy_wrap .illust.img_02 {
        top: 118px;
    }

    .top .catch_copy_wrap .lead_copy_wrap .illust.img_03 {
        top: 480px;
    }

    .top .catch_copy_wrap .lead_copy_wrap .illust.img_04 {
        top: 530px;
    }
}

@media screen and (max-width:480px) {
	.top .catch_copy_wrap .lead_copy_wrap .illust.img_01 {
        top: 70px;
    }

    .top .catch_copy_wrap .lead_copy_wrap .illust.img_02 {
        top: 280px;
    }

    .top .catch_copy_wrap .lead_copy_wrap .illust.img_03 {
        top: 540px;
    }

    .top .catch_copy_wrap .lead_copy_wrap .illust.img_04 {
        top: 610px;
    }
}

@media screen and (max-width:320px) {
    .catch_copy_wrap .lead_copy_wrap .lead_copy {
        font-size: 1.4rem;
        line-height: 2;
    }
}

.top .content_wrap h2 {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 400;
    margin-bottom: 2.2rem;

}

.top .content_wrap h2 span {
    display: inline-block;
    position: relative;
    padding-left: 10.5rem;
}

.top .content_wrap h2 span::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 8.6rem;
    height: 4.9rem;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/icon_yubi.svg);
}

.top .content_wrap h2+p {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
}

@media screen and (max-width:768px) {

    .top .content_wrap h2 {
        font-size: 3.5rem;
        margin-bottom: 1.6rem;

    }

    .top .content_wrap h2 span {
        padding-left: 7.4rem;
    }

    .top .content_wrap h2 span::before {
        width: 6rem;
        height: 3.4rem;

    }

    .top .content_wrap h2+p {
        font-size: 1.6rem;
    }


}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
カテゴリ野色
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
/*テキスト*/
.news .cat_col_txt {
    color: #eda02a !important;
}

.facility .cat_col_txt {
    color: #77c8fc !important;
}

.event .cat_col_txt {
    color: #5ca9b1 !important;
}

/*背景色*/
.news .cat_col_bg {
    background-color: #eda02a !important;
}

.facility .cat_col_bg {
    background-color: #77c8fc !important;
}

.event .cat_col_bg {
    background-color: #5ca9b1 !important;
}

/*ボーダー*/
.news .cat_col_bd,
.news.cat_col_bd {
    border-color: #eda02a !important;
}

.facility .cat_col_bd,
.facility.cat_col_bd {
    border-color: #77c8fc !important;
}

.event .cat_col_bd,
.event.cat_col_bd {
    border-color: #5ca9b1 !important;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
ハッシュタグ
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.hushtag_wrap {
    background-color: #f2f2f2;
    border-radius: 1.2rem;
    padding: 2.8rem 2rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.hushtag_wrap h3 {
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

ol.hushtag_list li {
    display: inline-block;
    margin: 0.5rem 0.7rem 0.5rem 0;
}

ol.hushtag_list li a,
ol.hushtag_list.nolink li span {
    letter-spacing: 0.025em;
    display: block;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    line-height: 2;
    font-size: 1.4rem;
    padding: 0 0.75em 0 0.5em;
    background-color: #fff;

}

ol.hushtag_list li a::before,
ol.hushtag_list.nolink li span::before {
    content: '# ';
}

@media screen and (max-width:768px) {
    .hushtag_wrap {
        background-color: #f2f2f2;
        border-radius: 1rem;
        padding: 1.6rem 1.2rem 1.4rem;
        text-align: left;
    }

    .hushtag_wrap h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    ol.hushtag_list li a,
    ol.hushtag_list.nolink li span {
        padding: 0 0.5em 0 0.5em;
    }
}

/*サイドバー*/
.sidebar .hushtag_wrap {
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    text-align: left;
}

.sidebar .hushtag_wrap h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}


.sidebar ol.hushtag_list li a,
.sidebar ol.hushtag_list.nolink li span {
    font-size: 1.2rem;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
サイドバー
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.sidebar .municipality_name {
    border: 1px solid #000;
    font-size: 1.8rem;
    line-height: 2.2;
    text-align: center;
    border-radius: 3rem;
    font-weight: 400;
    max-width: 30rem;
    margin: 0 auto 2.4rem;
}

.sidebar .cell {
    border-bottom: 1px dashed #000;
    padding-bottom: 3rem;
    margin-bottom: 3.5rem;
}

.sidebar .cell:last-of-type {
    border-bottom: none;
}

.sidebar .cell a {
    display: block;
    color: #000;
    text-decoration: none;
}

.sidebar .cell a .title {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 1.4rem;
}

.sidebar .cell a .entry_tag_wrap .date {
    font-size: 1.2rem;
    color: #808080;
    margin-bottom: 0.5rem;
}

@media screen and (max-width:768px) {
    .sidebar .municipality_name {
        font-size: 1.6rem;
    }

    .sidebar .cell {
        border-bottom: 1px dashed #000;
        padding-bottom: 2rem;
        margin-bottom: 2.5rem;

    }

    .sidebar .cell a::after {
        content: '';
        display: block;
        clear: both;
    }

    .sidebar .cell a .thumb {
        width: 16rem;
        height: 12rem;
        float: left;
        margin-right: 2rem;
    }

    .sidebar .cell a .title {
        width: auto;
    }
}

@media screen and (max-width:480px) {
    .sidebar .cell a {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }


    .sidebar .cell a .thumb {
        float: none;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .sidebar .cell a .title {
        width: calc(100% - 17rem);
        margin-bottom: 1rem;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
市町村リスト
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.municipality_wrap {
    background-color: #f2f2f2;
    border-radius: 1.2rem;
    margin: 4rem 0;
}

.municipality_wrap h3 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    padding: 2.4rem 0;
    font-weight: 400;
    text-align: center;
}

ol.municipality_list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4.5rem 3.5rem;
}

ol.municipality_list li {
    margin: 0.5rem;
}

ol.municipality_list li a {
    letter-spacing: 0.025em;
    display: block;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    line-height: 3.4rem;
    font-size: 1.8rem;
    padding: 0 1.5em;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 2rem;

}


@media screen and (max-width:768px) {

    .municipality_wrap h3 {
        font-size: 1.6rem;
        padding: 1.5rem 0;
        position: relative;
    }

    .municipality_wrap h3::before {
        content: '';
        display: block;
        width: 2rem;
        height: 2rem;
        background-color: #000;
        border-radius: 50%;
        position: absolute;
        right: 2rem;
        bottom: 0;
        top: 0;
        margin: auto;
    }

    .municipality_wrap h3::after {
        content: '';
        display: block;
        width: 0.4rem;
        height: 0.4rem;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        position: absolute;
        right: 2.7rem;
        top: 1.9rem;
        transform: rotate(-225deg);
    }

    .municipality_wrap h3.selected::after {
        top: 2.1rem;
        transform: rotate(-45deg);

    }

    .municipality_wrap .accordion_box {
        display: none;
    }

    ol.municipality_list {
        display: flex;
        flex-wrap: wrap;
        padding: 0 2rem 2rem;
    }

    ol.municipality_list li {
        display: block;
        width: 50%;
        text-align: center;
        margin: 0;
    }

    ol.municipality_list li a {
        border: 1px solid #000;
        border-right: none;
        line-height: 3.4rem;
        font-size: 1.4rem;
        padding: 0 1.1em;
        box-sizing: border-box;
        border-radius: 0;
    }


    ol.municipality_list li:nth-last-child(n+3) a {
        border-bottom: none;
    }

    ol.municipality_list li:nth-child(2n) a,

    ol.municipality_list li:last-child a {
        border-right: 1px solid #000;
    }

}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
カテゴリリスト
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
/* ボタン無し */
ul.cat_list_notbutton {
    display: flex;
    justify-content: center;
    margin: 2.4rem 0 4.2rem;
}

ul.cat_list_notbutton li {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin: 0 1.5em;
}

ul.cat_list_notbutton li span::before {
    content: '●';
}

ul.cat_list_notbutton li.news span::before {
    color: #eda02a;
}

ul.cat_list_notbutton li.facility span::before {
    color: #77c8fc;
}

ul.cat_list_notbutton li.event span::before {
    color: #5ca9b1;
}

@media screen and (max-width:768px) {
    ul.cat_list_notbutton {
        margin: 2.4rem 0 4.2rem;
    }

    ul.cat_list_notbutton li {
        font-size: 1.6rem;
        margin: 0 1.5em 0 0;
    }

    ul.cat_list_notbutton li:last-child {
        margin-right: 0;
    }
}

/* ボタン */
ul.cat_list {
    display: flex;
    justify-content: center;
    margin: 3rem auto 3.4rem;
}

ul.cat_list li {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin: 0 0.5em;
}

ul.cat_list li a {
    border: 1px solid #000;
    line-height: 1.75;
    display: block;
    padding: 0 1em;
    border-radius: 1em;
    text-decoration: none;
}

ul.cat_list li a span {
    vertical-align: 0.1em;
}

ul.cat_list li.news a {
    color: #eda02a;
    border-color: #eda02a;
}

ul.cat_list li.facility a {
    color: #77c8fc;
    border-color: #77c8fc;
}

ul.cat_list li.event a {
    color: #5ca9b1;
    border-color: #5ca9b1;
}

@media screen and (max-width:768px) {
    ul.cat_list {
        justify-content: space-between;
        max-width: 36rem;
    }

    ul.cat_list li {
        font-size: 1.6rem;
        margin: 0;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
サムネ付きリスト
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

ul.thumb_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 995px;
}

ul.thumb_list::after {
    content: '';
    display: block;
    width: 29.8rem;
}

ul.thumb_list li.entry_item {
    margin-bottom: 5.2rem;
    border: 3px solid #000;
    background-color: #fff;
    box-shadow: #ccc 0.5rem 0.5rem 0;
    border-radius: 1.3rem;
}

ul.thumb_list li.entry_item a.entry_link {
    display: block;
    width: 24.2rem;
    padding: 1.9rem 2.8rem 2.8rem;
    position: relative;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.025em;
}

ul.thumb_list li.entry_item a.entry_link .municipality {
    margin-bottom: 1.6rem;
    text-align: center;
}

ul.thumb_list li.entry_item a.entry_link .municipality span {
    display: inline-block;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.7;
    padding: 0 0.75em;
    border-radius: 1em;
}

ul.thumb_list li.entry_item a.entry_link .thumb {
    width: 100%;
    height: 14.8rem;
    margin-bottom: 1.6rem;
}

ul.thumb_list li.entry_item a.entry_link h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 400;
    /* min-height: 10.1rem; */
    min-height: 5rem;
    margin-bottom: 2.4rem;
}

ul.thumb_list li.entry_item a.entry_link .entry_tag_wrap .date {
    font-size: 1.2rem;
    color: #808080;
    margin-bottom: 1rem;
}

@media screen and (max-width:1024px) {

    ul.thumb_list {
        margin-bottom: 2rem;
    }

    ul.thumb_list::after {
        content: '';
        display: block;
        width: 47%;
    }

    ul.thumb_list li.entry_item {
        margin-bottom: 2.1rem;
        background-color: #fff;
        box-shadow: #ccc 0.3rem 0.3rem 0;
        border-radius: 1rem;
        width: 48%;
    }

    ul.thumb_list li.entry_item a.entry_link {
        padding: 1.7rem 2rem 1.8rem;
        color: #000;
        box-sizing: content-box;
        width: auto;
    }

    ul.thumb_list li.entry_item a.entry_link .municipality {
        margin-bottom: 1.6rem;
        text-align: center;
    }

    ul.thumb_list li.entry_item a.entry_link .municipality span {
        display: inline-block;
        color: #fff;
        font-size: 1.8rem;
        line-height: 1.7;
        padding: 0 0.75em 0.1em;
        border-radius: 1em;
    }

    ul.thumb_list li.entry_item a.entry_link .entry_img_title_wrap {
        display: flex;
        margin-bottom: 1.2rem;
    }

    ul.thumb_list li.entry_item a.entry_link .thumb {
        width: 50%;
        max-width: 14.2rem;
        height: 8.6rem;
        margin: 0 1.6rem 0 0;
        flex-shrink: 0;
    }

    ul.thumb_list li.entry_item a.entry_link h3 {
        font-size: 1.6rem;
        line-height: 1.25;
        min-height: 8.6rem;
        margin-bottom: 0;
    }

    ul.thumb_list li.entry_item a.entry_link .entry_tag_wrap .date {
        font-size: 1.2rem;
        color: #808080;
        margin-bottom: 0.6rem;
    }

    /*ハッシュタグ*/
    ul.thumb_list .hushtag_list.nolink li {
        margin: 0.3rem 0.5rem 0.3rem 0;
    }

    ul.thumb_list .hushtag_list.nolink li span {
        font-size: 1.2rem;
    }

}

@media screen and (max-width:480px) {
    ul.thumb_list li.entry_item {
        width: 100%;
    }

    ul.thumb_list li.entry_item a.entry_link h3 {
        min-height: 0;
    }

}

/*laget*/

ul.thumb_list li.entry_item.lage a.entry_link {
    width: 41rem;
    padding: 2.8rem 2.8rem 3rem;
}

ul.thumb_list li.entry_item.lage a.entry_link .municipality span {
    font-size: 2rem;
}

ul.thumb_list li.entry_item.lage a.entry_link .thumb {
    height: 25rem;
}

ul.thumb_list li.entry_item.lage a.entry_link h3 {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 400;
    min-height: 9rem;
    margin-bottom: 2.4rem;
}

@media screen and (max-width:1024px) {
    ul.thumb_list li.entry_item.lage a.entry_link .entry_img_title_wrap {
        display: flex;
        flex-direction: column;
    }

    ul.thumb_list li.entry_item.lage a.entry_link {
        width: auto;
        padding: 1.7rem 2rem 1.8rem;
    }

    ul.thumb_list li.entry_item.lage a.entry_link .municipality span {
        font-size: 1.8rem;
    }

    ul.thumb_list li.entry_item.lage a.entry_link .thumb {
        width: 100%;
        max-width: 30rem;
        height: 20rem;
        margin: 0 auto 1.2rem;
    }

    ul.thumb_list li.entry_item.lage a.entry_link h3 {
        font-size: 1.6rem;
        line-height: 1.375;
        min-height: 6.6rem;
        margin-bottom: 0;
    }
}

@media screen and (max-width:480px) {
    ul.thumb_list li.entry_item.lage a.entry_link .thumb {
        width: 100%;
        max-width: 100%;
        height: 17.5rem;
    }

    ul.thumb_list li.entry_item.lage a.entry_link h3 {
        min-height: 0;
    }

}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
エントリー
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
/*基本構造*/
.entry_wrap {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    justify-content: space-between;
    margin-top: 57px;
}

.entry_wrap .page_title {
    width: 100%;
    margin-bottom: 5rem;
}

.entry_wrap .entry {
    width: 66%;
}

.entry_wrap .sidebar {
    width: 22%;
}

@media screen and (max-width:1190px) {
    .entry_wrap {
        margin-top: 3rem;
    }

    .entry_wrap .entry {
        width: 70%;
    }

    .entry_wrap .sidebar {
        width: 25%;
    }
}

@media screen and (max-width:768px) {
    .entry_wrap {
        flex-direction: column;
    }

    .entry_wrap .entry {
        width: 100%;
        margin-bottom: 2rem;
    }

    .entry_wrap .sidebar {
        width: 100%;
    }
}

/* 地図 */

.acf-map {
    width: 100%;
    height: 400px;
    margin: 4.4rem 0;
}

.acf-map img {
    max-width: inherit !important;
}

@media screen and (max-width:480px) {
    .acf-map {
        width: 100%;
        height: 30rem;
        margin: 3rem 0;
    }
}

.entry_wrap .button_wrap.entry_data {
    margin-top: 5rem;
}

/*エントリー記事部分*/
.entry_wrap .entry .block {
    margin-bottom: 8rem;
}

.entry_wrap .entry .gaiyo_wrap dl .acf-map {
    margin: 0 0 3rem 20%;
}

.entry_wrap .entry .block img {
    width: auto;
    max-width: 100%;
}

.entry_wrap .entry .block h2 {
    font-size: 3.6rem;
    padding: 0 0 3.6rem;
    text-align: center;
    margin-bottom: 3.4rem;
    position: relative;
    letter-spacing: 0.025em;
}

.entry_wrap .entry .block h2::after {
    content: '';
    display: block;
    width: 1.5em;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.entry_wrap .entry .block h3 {
    font-size: 2.4rem;
    line-height: 1.5;
    padding: 0.5em 1em;
    background-color: #999;
    text-align: center;
    color: #fff;
    font-weight: 400;
}

.entry_wrap .entry .block p {
    font-size: 1.8rem;
    line-height: 1.75;
    margin: 3rem 0;
}

.entry_wrap .entry .block .img_wrap {
    margin: 5rem 0;
}

.entry_wrap .entry .gaiyo_wrap h3 {
    font-size: 2rem;
    padding: 1.25rem 0;
    text-align: center;
    background-color: #f2f2f2;
    text-align: center;
    margin-top: 4rem;
}

.entry_wrap .entry .gaiyo_wrap h4 {
    font-size: 2rem;
    padding: 1.25rem 0;
    line-height: 1.5;
    text-align: center;
    text-align: center;
    border-bottom: 1px solid #000;
}

.entry_wrap .entry .gaiyo_wrap dl {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.6rem;
    line-height: 1.5;
    border-bottom: 1px solid #000;
}

.entry_wrap .entry .gaiyo_wrap dl dt {
    width: 20%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0.75em 0.5em;
    border-top: 1px solid #000;
}

.entry_wrap .entry .gaiyo_wrap dl dd {
    width: 80%;
    box-sizing: border-box;
    padding: 0.75em 0.5em;
    border-top: 1px solid #000;
}

.entry_wrap .entry .gaiyo_wrap dl dt:first-of-type,
.entry_wrap .entry .gaiyo_wrap dl dd:first-of-type {
    border-top: none;
}

@media screen and (max-width:480px) {
    .entry_wrap .entry .block {
        margin-bottom: 4rem;
    }

    .entry_wrap .entry .gaiyo_wrap dl .acf-map {
        margin: 0 0 2rem;
    }

    .entry_wrap .entry .block h2 {
        font-size: 2.4rem;
        padding: 0 0 1.8rem;
        margin-bottom: 2.4rem;
    }

    .entry_wrap .entry .block h3 {
        font-size: 1.6rem;
        padding: 0.35em 1em;
    }

    .entry_wrap .entry .block p {
        font-size: 1.4rem;
        line-height: 1.5;
        margin: 1.5rem 0;
    }

    .entry_wrap .entry .block .img_wrap {
        margin: 3rem 0;
    }

    .entry_wrap .entry .gaiyo_wrap h3 {
        font-size: 1.6rem;
        padding: 1rem 0;
        margin-top: 4rem;
    }

    .entry_wrap .entry .gaiyo_wrap h4 {
        font-size: 1.6rem;
        text-align: left;
    }

    .entry_wrap .entry .gaiyo_wrap dl {
        font-size: 1.2rem;
    }

    .entry_wrap .entry .gaiyo_wrap dl dt {
        width: 30%;
        padding: 0.5em 0.5em;
    }

    .entry_wrap .entry .gaiyo_wrap dl dd {
        width: 70%;
        padding: 0.5em 0.5em;
    }
}

/*ページタイトル*/

.entry_wrap .page_title .main_img {
    border-radius: 3rem;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 6rem;
}


.entry_wrap .title_map_wrap {
    position: relative;
}

.entry_wrap .title_map_wrap .icon_map {
    position: absolute;
    width: 20.8%;
    top: -20px;
    left: 20px;
}

.entry_wrap .page_title .title_wrap {
    margin-left: 25.6%;
    border-left: 1px solid #000;
    background-color: #fff;
    padding: 0.5rem 0 0.5rem 5rem;
    position: relative;
}

.entry_wrap .page_title .title_wrap::before {
    content: '';
    display: block;
    position: absolute;
    left: -1.6em;
    top: 2em;
    width: 1.6rem;
    height: 3rem;
    border-right: 1.6rem solid #000;
    box-sizing: border-box;
    border-top: 1.5rem solid transparent;
    border-bottom: 1.5rem solid transparent;
}

.entry_wrap .page_title .title_wrap::after {
    content: '';
    display: block;
    position: absolute;
    left: -1.5em;
    top: 2em;
    width: 1.6rem;
    height: 3rem;
    border-right: 1.6rem solid #fff;
    box-sizing: border-box;
    border-top: 1.5rem solid transparent;
    border-bottom: 1.5rem solid transparent;
}

.entry_wrap .page_title .title_wrap .city_date {
    display: flex;
}

.entry_wrap .page_title .title_wrap .city_date li {
    line-height: 3.6rem;
    letter-spacing: 0.05em;
    margin-right: 1.5rem;
}

.entry_wrap .page_title .title_wrap .city_date .municipality a {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 0 1em;
    border-radius: 2rem;
}

.entry_wrap .page_title .title_wrap .city_date li.date {
    font-size: 1.6rem;
}

.entry_wrap .page_title .title_wrap .event_day,
.entry_wrap .page_title .title_wrap h2 {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 500;
    margin: 1.5rem 0;
}

.entry_wrap .page_title .title_wrap h1 {
    font-size: 3.2rem;
    line-height: 1.5;
    margin: 1.5rem 0;
}

.entry_wrap .page_title .title_wrap .hushtag_list {
    margin: 1.5rem 0 0;
}

@media screen and (max-width:768px) {
    .entry_wrap .page_title .main_img {
        border-radius: 1.6rem;
        margin-bottom: 4rem;
    }


    .entry_wrap .page_title .title_wrap .city_date li {
        line-height: 3.2rem;
        letter-spacing: 0.05em;
        margin-right: 1rem;
    }

    .entry_wrap .page_title .title_wrap .city_date .municipality a {
        font-size: 1.6rem;
    }

    .entry_wrap .page_title .title_wrap .city_date li.date {
        font-size: 1.4rem;
    }

    .entry_wrap .page_title .title_wrap .event_day,
    .entry_wrap .page_title .title_wrap h2 {
        font-size: 1.6rem;
        margin: 1rem 0;
    }

    .entry_wrap .page_title .title_wrap h1 {
        font-size: 2.4rem;
        margin: 1rem 0;
    }

    .entry_wrap .page_title .title_wrap .hushtag_list {
        margin: 1rem 0 0;
    }

}

@media screen and (max-width:480px) {
    .entry_wrap .page_title .main_img {
        border-radius: 1.6rem;
        margin-bottom: 1rem;
    }

    .entry_wrap .title_map_wrap .icon_map {
        position: static;
        width: 40%;
        margin: 0 auto 3rem;
    }

    .entry_wrap .page_title .title_wrap {
        margin-left: 0;
        border-left: none;
        border-top: 1px solid #000;
        padding: 1rem 0 0;
    }

    .entry_wrap .page_title .title_wrap::before {

        left: 0;
        right: 0;
        top: -1.6rem;
        margin: auto;
        width: 3rem;
        height: 1.6rem;
        border-right: 1.5rem solid transparent;
        box-sizing: border-box;
        border-left: 1.5rem solid transparent;
        border-bottom: 1.6rem solid #000;
        border-top: none;
    }

    .entry_wrap .page_title .title_wrap::after {

        left: 0;
        right: 0;
        top: -1.5rem;
        margin: auto;
        width: 3rem;
        height: 1.6rem;
        border-right: 1.5rem solid transparent;
        box-sizing: border-box;
        border-left: 1.5rem solid transparent;
        border-bottom: 1.6rem solid #fff;
        border-top: none;
    }

    .entry_wrap .page_title .title_wrap .city_date li {
        line-height: 2.8rem;
        letter-spacing: 0.05em;
        margin-right: 1rem;
    }

    .entry_wrap .page_title .title_wrap .city_date .municipality a {
        font-size: 1.4rem;
    }

    .entry_wrap .page_title .title_wrap .city_date li.date {
        font-size: 1.2rem;
    }

    .entry_wrap .page_title .title_wrap .event_day,
    .entry_wrap .page_title .title_wrap h2 {
        font-size: 1.6rem;
        margin: 1rem 0;
    }

    .entry_wrap .page_title .title_wrap h1 {
        font-size: 2.4rem;
        margin: 1rem 0;
    }

    .entry_wrap .page_title .title_wrap .hushtag_list {
        margin: 1rem 0 0;
    }

}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
支援団体・相談窓口
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

table.dantai_table {
    margin: 5rem 0;
    width: 100%;
}

table.dantai_table thead tr th {
    font-size: 1.8rem;
    color: #fff;
    background-color: #e39b2f;
    border-right: 1px solid #fff;
    font-weight: 400;
    text-align: center;
    padding: 1.2rem 1em;
}

table.dantai_table thead tr th:last-of-type {
    border-right: none;
}

table.dantai_table tbody tr {
    border-bottom: 1px solid #000;
}

table.dantai_table tbody tr td {
    padding: 1rem 1em;
    font-size: 1.6rem;
    line-height: 1.25;
}

table.dantai_table tbody tr td:first-of-type {
    width: 5em;
}

table.dantai_table tbody tr td:nth-of-type(4) {
    width: 6.5em;
    text-align: center;
}

table.dantai_table tbody tr td:last-of-type {
    width: 3em;
}

table.dantai_table tbody tr td:last-of-type a {
    display: block;
    width: 1em;
    height: 1em;
    background-color: #eda02a;
    border-radius: 1em;
    margin: auto;
    position: relative;
}

table.dantai_table tbody tr td:last-of-type a::after {
    display: block;
    content: '';
    width: 0.2em;
    height: 0.2em;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.4em;
    margin: auto;
    transform: rotate(45deg);
}

table.dantai_table tbody tr td:last-of-type a span {
    display: none;
}

.dantai_list_wrap h2 {
    font-size: 1.8rem;
    background-color: #eda02a;
    color: #fff;
    font-weight: 400;
    text-align: center;
    padding: 1rem 0;
}

.dantai_list_wrap .dantai_list {
    margin-bottom: 3rem;
}

.dantai_list_wrap .dantai_list li {
    position: relative;
    padding: 0.5rem 0;
    border-bottom: 1px solid #000;
}

.dantai_list_wrap .dantai_list li>a {
    display: block;
    width: 2rem;
    height: 2rem;
    background-color: #eda02a;
    border-radius: 1em;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.5rem;
    margin: auto;
}

.dantai_list_wrap .dantai_list li>a::after {
    display: block;
    content: '';
    width: 0.6em;
    height: 0.6em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.7em;
    margin: auto;
    transform: rotate(45deg);
}

.dantai_list_wrap .dantai_list li>a span {
    display: none;
}

.dantai_list_wrap .dantai_list li dl dd a.tel {
    color: #000;
}

.dantai_list_wrap .dantai_list li dl {
    font-size: 1.6rem;
    line-height: 1.3;

}

.dantai_list_wrap .dantai_list li dl dt,
.dantai_list_wrap .dantai_list li dl dd {
    margin: 0.2em 0;
}


/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
わたしたちのこと
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.about_main_img {
    max-width: 711px;
    margin: 6rem auto 7rem;
}

@media screen and (max-width:1190px) {
    .about_main_img {
        margin: 3rem auto 7rem;
    }
}

@media screen and (max-width:768px) {
    .about_main_img {
        margin: 2rem auto 0;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
404
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.page_not_found {
    margin: 8rem auto;
}

.page_not_found h1 {
    margin: 4rem auto;
    font-size: 3.2rem;
    line-height: 1.75;
}

.page_not_found p {
    text-align: center;
    line-height: 3;
    font-size: 1.8rem;
}