@charset "utf-8";

/*---------------------------------
Font
---------------------------------*/
/* Japanese
---------------------------------*/
/* Bold */
@font-face {
    font-family: 'Noto Sans JP';
    src: url('../font/NotoSansJP-Bold.otf') format('opentype');
    font-weight: 700;
}
/* Medium */
@font-face {
    font-family: 'Noto Sans JP';
    src: url('../font/NotoSansJP-Medium.otf') format('opentype');
    font-weight: 500;
}
/* Regular */
@font-face {
    font-family: 'Noto Sans JP';
    src: url('../font/NotoSansJP-Regular.otf') format('opentype');
    font-weight: 400;
}
/* English
---------------------------------*/
@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Italic.ttf') format('truetype');
    font-style: italic;
    font-weight: 400;
}






/*---------------------------------
Variable
---------------------------------*/
:root{

    --color-important: #C7000F;
    --color-important-rgb: 199, 0, 15;

    --color-bk: #333;
    --color-bk-rgb: 51, 51, 51;

    --color-dark: #666666;
    --color-dark-rgb: 102, 102, 102;

    --color-medium: #999999;
    --color-medium-rgb: 153, 153, 153;

    --color-natural: #ddd;
    --color-natural-rgb: 221, 221, 221;

    --color-light: #F2F2F2;
    --color-light-rgb: 242, 242, 242;

    --color-wh: #fff;
    --color-wh-rgb: 255, 255, 255;

    --color-main-green: #0F829D;
    --color-main-green-rgb: 15, 130, 157;

    --color-main-blue: #0E5D98;
    --color-main-blue-rgb: 14, 93, 152;

    --color-key: #FFBB22;
    --color-key-rgb: 255, 187, 34;

    --color-bg: #EAF6F8;
    --color-bg-rgb: 234, 246, 248;


    --gradient-green-blue: 90deg,var(--color-main-green),var(--color-main-blue);

    --gradient-blue-green: -90deg,var(--color-main-green),var(--color-main-blue);

    --size-xs: 4px;

    --size-s: 8px;

    --size-m: 16px;

    --size-m: 24px;

    --size-l: 32px;

    --size-xl: 40px;
}
@media (min-width: 768px) {
    :root{

        --size-xs: 8px;

        --size-s: 16px;

        --size-m: 32px;

        --size-m: 48px;

        --size-l: 64px;

        --size-xl: 80px;
    }
}




/*---------------------------------
Common
---------------------------------*/
html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    background: var(--color-wh);
}
body {
    margin: 0;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", sans-serif;
    color: var(--color-bk);
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
div {
    box-sizing: border-box;
}
a {
    color: var(--color-main-green);
    text-decoration: none;
}
a:hover {
    color: var(--color-main-green);
    text-decoration: none;
}
a:visited {
    color: var(--color-main-green);
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
img {
    max-width: 100%;
}

/*
Common Class
---------------------------------*/
.fadein_sc {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity,transform .6s 0s;
}

#wrapper {
    position: relative;
    margin-top: 66px;
    min-height: 100%;
    height: auto;
	display: flex;
    flex-direction: column;
}
.container {
    max-width: 92%;
    margin: 0 auto;
}
.display_pc {
    display: none;
}
.display_sp {
    display: block;
}

@media (min-width: 769px) {
    #wrapper {
        margin-top: 80px;
    }
    .display_pc {
        display: block;
    }
    .display_sp {
        display: none;
    }
    a[href^="tel:"] {
        pointer-events: none;
    }
}
@media (min-width: 1001px) {
    #wrapper {
        margin-top: 104px;
    }
}
@media (min-width: 1281px) {
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }
}

/*
Breadcrumb
---------------------------------*/
.breadcrumb {
    background: var(--color-bg);
    padding: 8px 0 10px;
}
.breadcrumb .container {
    overflow-x: scroll;
    white-space: nowrap;
    scrollbar-width: none;
}
.breadcrumb li {
    display: inline;
    position: relative;
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
}
.breadcrumb li + li {
    padding-left: 16px;
}
.breadcrumb li + li:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    padding: 0 3px;
    height: 10px;
    width: 6px;
    background: url(../image/icon_arrow_right_y.png) no-repeat center / 100%;
}
.breadcrumb li:last-child {
    padding-right: 0;
}
.breadcrumb li:last-child::after {
    content: none;
}
.breadcrumb li a {
    transition: opacity .3s;
}
@media (min-width: 769px) {
    .breadcrumb {
        padding: 28px 0 16px;
    }
	.breadcrumb .container {
   		white-space: normal;
    	overflow-x: visible;
	}
    .breadcrumb li {
        display: inline-block;
        margin-right: 16px;
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    .breadcrumb li +li {
        padding-left: 24px;
    }
    .breadcrumb li + li:before {
        content: "";
        position: absolute;
        top: 6px;
        left: 0;
        padding: 0 3px;
        height: 14px;
        width: 8px;
    }
    .breadcrumb a:hover {
        opacity: .7;
    }
}


/*
Link
---------------------------------*/
.single_contents_bottom p.link_item,
p.link_item{
    margin: 8px 0 0 0!important;
    position: relative;
}
.link_item a {
    font-weight: 700;
    font-size: 1.6rem;
    text-decoration: underline;
    position: relative;
    padding: 0 0 0 15px;
    color: var(--color-main-green); !important;
    transition: opacity .3s;
}
.link_item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    bottom: 0;
    height: 10px;
    width: 6px;
    background: url(../image/icon_arrow_right_y.png) no-repeat center / 100%;
}
.link_item a.link_item::before {
    content: none;
}
a.link_item a:hover {
    text-decoration: underline;
}
.single_contents_bottom p a,
.link_text {
    color: #168e9a !important;
    transition: opacity .3s;
    text-decoration: underline;
}
.single_contents_bottom p a:hover,
a.link_text:hover {
    text-decoration: underline;
}
@media (min-width: 769px) {
    .link_item::before {
        top: 0.6em;
        bottom: 0;
        height: 14px;
        width: 8px;
    }

    .single_contents_bottom p.link_item {
        margin: 8px 0 0 0!important;
    }
    .link_item a:hover {
        opacity: .7;
    }
    .single_contents_bottom p a:hover,
    a.link_text:hover {
        opacity: .7;
    }
}

/*
Btn
---------------------------------*/
.btn_wrapper {
    margin: 40px auto 0;
    max-width: 280px;
}
a.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-main-green);
    color: var(--color-wh);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 15px 16px 15px;
    box-shadow: rgba(var(--color-main-green-rgb) , 0.3) 0 8px 16px;
    border: var(--color-main-green) solid 2px;
    box-sizing: border-box;
}
a.btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    height: 18px;
    width: 10px;
    background: url(../image/icon_arrow_right_y.png) no-repeat center/100%;
}
.read_more_btn {
    transition: opacity .6s ease;
    visibility: visible;
}
.read_more_btn.load {
    opacity: 0;
    visibility: hidden;
}
@media (min-width: 769px) {
    .btn_wrapper {
        margin: 56px auto 0;
    }
    a.btn {
        font-size: 1.8rem;
        padding: 14px 16px 15px;
        max-width: 320px;
        margin: 0 auto;
        transition: color .3s, background-color .3s;
    }
    a.btn:hover {
        background: var(--color-wh);
        color: var(--color-main-green);
    }
}
@media (min-width: 1281px) {
    .btn_wrapper {
        margin: 64px auto 0;
    }
}

/*
Title Text List
---------------------------------*/
.section_title {
    position: relative;
    margin: 0 0 32px;
}
.section_title h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    padding: 0 0 8px;
}
.section_title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--color-key);
    margin: auto;
}
@media (min-width: 769px) {
    .section_title {
        margin: 0 0 48px;
    }
    .section_title h2 {
        font-size: 3.2rem;
        padding: 0 0 12px;
    }
    .section_title h2::after {
        width: 80px;
    }
}
@media (min-width: 1281px) {
    
}

/*---------------------------------
Header Footer
---------------------------------*/
/*
Header
---------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    height: 66px;
    background: var(--color-wh);
    width: 100%;
    z-index: 99;
}
.header_wrapper {
    box-shadow: rgba(0 ,0 ,0 ,0.1) 0 4px 4px;
    height: 100%;
}
.header_inner {
    max-width: 92%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: calc(66px - 4% );

}
.header_site_logo {
    margin: 0;
    font-size: 0;

}
.header_site_logo a {
    display: block;
    transition: opacity .3s;
}
.header_site_logo img {
    width: 90px;
}
.header_logo {
    margin-left: 8px;
}
.header_logo a {
    display: flex;
    align-items: flex-end;

}
.header_logo span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #707070;
    margin-right: 8px;
}
.header_logo img {
    height: 32px;
    width: auto;
}

.header_download {
    display: none;
}
.header_contact {
    display: none;
}

.header_search {
    display: none;
}
.header_search_form {
    display: none;
}
@media (min-width: 769px) {
    .header {
        height: 144px;
        height: 80px;
    }
    .header_wrapper {
        box-shadow: none;
    }
    .header_inner {
        max-width: 1200px;
        margin: 0 4%;
        align-items: inherit;
        align-items: center;
        padding: 0;
    }
    .header_site_logo {
        height: 40px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        max-width: none;
    }
    .header_site_logo img {
        width: 124px;
    }
    .header_logo {
        height: 40px;
    }



}
@media (min-width: 1001px) {
    .header {
        height: 184px;
        height: 104px;
        transition: .3s;
    }

	.header {
        position: fixed;
        top: 0;
        box-shadow: rgba(0, 0, 0, 0.1) 0 4px 4px;
    }
	.header.active {
		height: 80px;
	}

    .header_site_logo {
        height: auto;
    }
    .header_logo {
        transition: opacity .3s;
    }
    .header_site_logo img {
        width: 148px;
    }
    .header_site_logo span {
        font-size: 1.6rem;
    }
    .header_site_logo a:hover {
        opacity: .7;
    }

    .header_download {
        display: block;
    }
    .header_download a {
        border: 1px solid var(--color-important);
        color: var(--color-important);
        padding: 8px;
        transition: color .3s, background-color .3s;
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 160px;
        height: 52px;
    }
    .header_download a:hover {
        background: var(--color-important);
        color: var(--color-wh);
    }
    .header_contact {
        display: block;
        margin-left: 16px;
        width: auto;
    }
    .header_contact a {
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 8px;
        width: 160px;
        height: 52px;
        font-size: 1.6rem;
        background: var(--color-key);
        color: var(--color-bk);
        border: 1px solid var(--color-key);
        transition: color .3s, background-color .3s;
    }
    .header_contact a:hover {
        background: var(--color-wh);
    }
    .header_contact a:after {
        width: 16px;
        height: 16px;
        top: -8px;
        right: -8px;
    }
    .header_contact span {
        line-height: 1.5;
    }
    .header_search {
        display: block;
        width: auto;
        margin-right: 16px;
		margin-right: 0;
        margin-left: auto;
        position: relative;
    }
    .header_search_form {
        display: block;
        max-width: 200px;
		max-width: 336px;
    }
    .header_search_form div {
        display: flex;
    }
    .header_search_form input[type="text"] {
        border: 0;
        padding: 12px 16px;
        background: var(--color-light);
        border: solid 1px var(--color-medium);
        max-width: 148px;
        max-width: 284px;
        width: 284px;
        font-size: 1.6rem;
    }
    .header_search_form input[type="text"]:focus {
        outline: none;
    }
    .header_search_form button {
        background: var(--color-wh);
        border: solid 1px var(--color-medium);
        border-left: 0;
        padding: 12px;
        cursor: pointer;
        height: 52px;
        width: 52px;
    }
    .header_search_form button img {
        width: 24px;
        max-width: max-content;
    }




}
@media (min-width: 1281px) {
    .header_inner {
        margin: 0 auto;
    }
}


/*
Menu Btn
---------------------------------*/
.btn_menu {
    display: block;
    height: 66px;
    width: 66px;
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    transition: opacity .3s;
    text-decoration: none;
}
.btn_menu span {
    display: block;
    height: 2px;
    width: 32px;
    background: var(--color-main-green);
    margin: 22px auto 0;
    transition: transform .3s;
    transform-origin: left;
    border-radius: 2px;
}
.btn_menu span:nth-child(2) {
    margin-top: 8px;
    transition: opacity.3s;
}
.btn_menu span:nth-child(3) {
    margin-top: 8px;
    transform-origin: left;
}
.btn_menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -8px);
    width: 40px;
}
.btn_menu.active span:nth-child(2) {
    opacity: 0;
}
.btn_menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 8px);
    width: 40px;
}
@media (min-width: 769px) {
	.btn_menu {
        height: 80px;
        width: 80px;
	}
	.btn_menu span {
    	margin: 28px auto 0;
	}
}
@media (min-width: 1001px) {
    .btn_menu {
        display: none;
    }
}
@media (min-width: 1281px) {

}

/*
Global Nav
---------------------------------*/
.global_nav {
    position: fixed;
    top: 66px;
    left: 0;
    width:  100%;
    height: 0;
    min-height: 0;
    transition: .3s;
    background: #fff;
    overflow: hidden;
}
.global_nav.active {
    min-height: 100vh;
    z-index: -1;
}
.global_nav_scroll {
    overflow-y: scroll;
    height: 100%;

}
.global_nav_inner {
    margin: 0 4%;
    padding: 16px 0 200px;
}
.global_nav_list {
    margin: 32px 0;
    border-bottom: solid 1px var(--color-natural);
    padding: 0 0 16px;
}
.global_nav_item a {
    position: relative;
    padding: 8px 0;
    font-weight: 700;
    font-size: 1.8rem;
    display: block;
    color: var(--color-main-green);
    padding-left: 24px;
}
.global_nav_item a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 18px;
    width: 10px;
    margin: auto;
    background: url(../image/icon_arrow_right_y.png) no-repeat center/100%;
}
.global_nav_item a:hover {
    text-decoration: none;
}
@media (max-width: 767px) {
    .global_nav_list .global_nav_item:nth-of-type(n+2) {
    }
}
.global_nav .banner_movie {
	max-width: 350px;
    margin: 0 auto;
}

.global_nav .movie_btn {
    display: none;
}

.global_nav .contact_btn_list {
    margin-top: 32px;
}
.global_nav .contact_btn {
    height: 80px;
}
.global_nav .contact_btn a {
    height: 72px;
}
.global_nav .contact_btn.-download a {
    border: solid 2px var(--color-important);
    box-shadow: none;
}
.global_nav .contact_btn.-contact a {
    box-shadow: none;
}

.global_nav .contact_tel_title {
    color: var(--color-bk);
}
.global_nav .contact_tel_number {
    border: solid 2px var(--color-main-green);
}
.global_nav .contact_tel_number a {
    color: var(--color-main-green);
}
.global_nav .contact_tel_number a::before {
    background: url(../image/icon_tel_g.png) no-repeat center / 100%;
}
.global_nav .contact_tel_note {
    color: var(--color-bk);
    border-top: solid 2px var(--color-main-green);
}

.global_nav_drop_list {
    display: flex;
    flex-wrap: wrap;
    padding: 16px 24px;
}
.global_nav_drop_item {
    margin: 0 16px 16px 0;
}
@media (max-width: 767px) {
    .global_nav_drop_list .global_nav_drop_item:last-child {
        width: 100%;
        margin: 8px 0 0;
        text-align: center;
    }
    .global_nav_drop_list .global_nav_drop_item:last-child a {
        border: none;
        color: var(--color-main-green);
        font-weight: 700;
        display: inline-block;
        padding: 0 0 0 20px;
    }
    .global_nav_drop_list .global_nav_drop_item:last-child a::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        height: 14px;
        width: 8px;
        margin: auto;
        background: url(../image/icon_arrow_right_y.png) no-repeat center/100%;
    }
}
.global_nav_drop_item a {
    font-size: 1.6rem;
    color: var(--color-dark);
    font-weight: 700;
    display: block;
    text-align: center;
    padding: 0;
}
.global_nav_drop_item a::before {
    content: none;
}

.global_nav_search_form {
    overflow: hidden;
    margin-top: 24px;
}
.global_nav_search_form div {
    display: flex;
}
.global_nav_search_form input[type="text"] {
    width: calc( 100% - 64px );
    border: solid 2px var(--color-medium);
    padding: 16px;
    background: var(--color-light);
    font-size: 1.6rem;
}
.global_nav_search_form input[type="text"]:focus {
    outline: none;
}
.global_nav_search_form button {
    background: var(--color-wh);
    border: solid 2px var(--color-medium);
    border-left: 0;
    padding: 20px;
}
.global_nav_search_form button img {
    width: 24px;
}

@media (min-width: 769px) {
	.global_nav {
    	top: 80px;
	}
}

@media (min-width: 1001px) {
    .global_nav {
        transition: none;
        position: absolute;
        top: 104px;
        left: 0;
        width:  100%;
        height: 80px;
        min-height: 50px;
        background: linear-gradient(var(--gradient-blue-green));
        overflow: visible;
        transition: .3s;
    }
    .global_nav.active {
        min-height: 0;
    }

	.header.active .global_nav {
		top: 80px;
	}

        
    /*
    .header.active .global_nav {
        position: fixed;
        top: 0;
        box-shadow: rgba(0, 0, 0, 0.1) 0 4px 4px;
    }
    */


    .global_nav_scroll {
        overflow: visible;
    }
    .global_nav_inner {
        max-width: 1200px;
        margin: 0 4%;
        position: relative;
        border-top: none;
        padding: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .global_nav_list_title {
        display: none;
    }
    .global_nav_list {
        border-bottom: none;
        margin: 0;
        display: flex;
        align-items: flex-end;
        height: 100%;
        padding: 0;
    }
    .global_nav_item {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }
    .global_nav_list .global_nav_item:last-child a {
        border-right: solid 1px var(--color-bg);
    }
    .global_nav_item a {
        padding: 6px 20px;
        font-weight: 700;
        font-size: 2.2rem;
        text-align: center;
        color: var(--color-wh);
        transition: color .3s, background-color .3s;
        border-left: solid 1px var(--color-bg);
        transition: opacity .3s;
    }
    .global_nav_item a::before {
        content: none;
    }
    .global_nav_item a:hover {
        text-decoration: none;
        opacity: .7;
    }
    .global_nav_item.active > a {
    }

    .global_nav .movie_btn {
        display: block;
    }
    .global_nav .movie_btn a {
        color: var(--color-wh);
        display: flex;
        align-items: center;
        width: 336px;
        justify-content: center;
        padding: 12px 16px;
        border: solid 1px var(--color-wh);
        background: rgba(var(--color-main-blue-rgb),.8);
        font-weight: 700;
        transition: background-color .3s;

    }
    .global_nav .movie_btn a:hover {
        background: rgba(var(--color-main-green-rgb),.8);
    }
    .global_nav .movie_btn img {
        width: 24px;
        margin-right: 14px;
    }

    .global_nav .contact_btn_list {
        display: none;
    }
    .global_nav .contact_tel {
        display: none;
    }
    .global_nav_drop_list {
        position: absolute;
        display: none;
        width: 100%;
        background: var(--color-wh);
        margin: 0 auto;
        width: 100%;
        max-width: 246px;
        top: 64px;
        left: 0;
        right: 0;
        padding: 0;
        border: none;
        box-shadow: rgba(0, 0, 0, 0.1) 0 2px 2px;
    }
    .global_nav_drop_list::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -12px;
        margin: auto;
        width: 24px;
        display: block;
        filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.1));
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 16px solid transparent;
        border-left: 16px solid transparent;
        border-bottom: 24px solid #fff;
        border-top: 0;
        z-index: -1;
        pointer-events: none;
    }
    .global_nav_drop_list .global_nav_drop_item + .global_nav_drop_item {
        border-top: solid 1px #EFEFEF;
    }
    .global_nav_drop_item {
        width: 100%;
        margin: 0;
    }
    .global_nav_drop_item a {
        color: var(--color-main-green);
        border: none;
        border-radius: 0;
        transition: opacity .3s;
    }
    .global_nav_drop_item a:hover {
        background: #fff;
        opacity: .7;
    }
    .global_nav_trigger:hover .global_nav_drop_list {
        display: block;
    }
    .global_nav_trigger::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -32px;
        height: 40px;
        margin: 0 auto;
        width: 100%;
        max-width: 246px;
    }
    .global_nav .banner_movie {
        display: none;
    }
    .global_nav_search_form {
        display: none;
    }
}
@media (min-width: 1001px) {
    .global_nav {
        
    }
    .global_nav_item.-top a span {
        padding-left: 24px;
    }
    .global_nav_item.-top a span::before {
        height: 20px;
        width: 16px;
    }
    .global_nav_drop_list {
        top: 80px;
    }
    .global_nav_drop_item a {
        border: none;
    }
}
@media (min-width: 1281px) {
    .global_nav_inner {
        margin: 0 auto;
    }
}

/*
Footer
---------------------------------*/
.footer {
    background: var(--color-wh);
    width: 100%;
    margin-top: auto;
    border-top: solid 1px var(--color-natural);
}
.footer_inner {
    padding: 40px 0 0;
    max-width: 92%;
    margin: 0 auto;
}
.footer_logo {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto;
    transition: opacity .3s;
}
.footer_contact {
    margin-top: 24px;
    max-width: 200px;
}
.footer_contact .btn {
    background: var(--color-key);
    border: var(--color-key) solid 2px;
    box-shadow: rgba(var(--color-key-rgb), 0.3) 0 8px 16px;
    color: var(--color-bk);
    font-size: 1.5rem;
    padding: 8px;
}
.footer_contact .btn::after {
    content: none;
}

.footer_nav {
    margin: 32px 0 48px;
    padding-top: 16px;
    position: relative;
    border-top: solid 1px var(--color-natural);
}

.footer_nav_list {
    margin-top: 12px;
}
.footer_nav_item + .footer_nav_item {
    margin: 12px 0 0;
}
.footer_nav_item a {
    position: relative;
    color: #333;
    font-size: 1.6rem;
    font-weight: 700;
    padding-left: 24px;
}
.footer_nav_item a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 10px;
    width: 6px;
    margin: auto;
    background: url(../image/icon_arrow_right_y.png) no-repeat center/100%;
}
.footer_nav_item a:hover {
    text-decoration: none;
}
.registration_number {
    margin: 16px 0 0 0;
    text-align: right;
    color: var(--color-medium);
    font-size: 1.2rem;
}
.copyright {
    color: var(--color-wh);
    background: #555555;
    padding: 16px 0 76px;
    text-align: center;
    line-height: 1.3;
}
.copyright small {
    font-size: 1.2rem;
}

.footer_banner {
    margin-top: 32px;
}
.footer_banner a {
    display: block;
}
.footer_banner img {
    width: 100%;
}
.fix_top_btn {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 999;
}
.fix_top_btn #return_top {
    background-color: var(--color-bk);
    color: var(--color-wh);
	display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-size: 1.3rem;
    height: 56px;
    width: 56px;
    font-weight: 700;
}
.fix_top_btn #return_top img {
    width: 16px;
    margin-bottom: 4px;
}



#fix_cta_btn {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--color-light);
    z-index: 999;
}
#fix_cta_btn .fix_cta_btn_list {
    letter-spacing: -.4em;
    border: 2px solid var(--color-dark);
    width: 100%;
    background-color: var(--color-wh);
    margin: 0 auto;
    padding: 0;
}
#fix_cta_btn .fix_cta_btn_list li {
    display: inline-block;
    letter-spacing: normal;
    width: calc( ( 100% - 48px ) /3 );
    box-sizing: border-box;
    vertical-align: top;
    text-align: center;
}
#fix_cta_btn .fix_cta_btn_list li a {
    background-color: var(--color-wh);
    color: var(--color-important);
    display: block;
    height: 56px;
    padding-top: 8px;
    font-weight: bold;
    font-size: 1.1rem;
}
#fix_cta_btn .fix_cta_btn_list li:nth-of-type(2),
#fix_cta_btn .fix_cta_btn_list li:nth-of-type(3) {
    border-left: 2px solid var(--color-dark);
}
#fix_cta_btn .fix_cta_btn_list li a img {
    width: 14px;
    height: auto;
}
#fix_cta_btn .fix_cta_btn_list li a span {
    display: block;
    margin-top: 4px;
}

#fix_cta_btn .fix_cta_btn_list li:nth-of-type(2) a {
    background-color: var(--color-key);
    color: var(--color-bk);
}
#fix_cta_btn .fix_cta_btn_list li:nth-of-type(2) a img {
    width: 16px;
}
#fix_cta_btn .fix_cta_btn_list li:nth-of-type(2) a span {
    margin-top: 6px;
}
#fix_cta_btn .fix_cta_btn_list li:nth-of-type(3) a {
    padding-top: 10px;
    line-height: 1.8;
}
#fix_cta_btn .fix_cta_btn_list li:nth-of-type(3) a img {
    width: 16px;
}
#fix_cta_btn .fix_cta_btn_list li:nth-of-type(3) a span {
    display: inline;
}

#fix_cta_btn .fix_cta_btn_list li:last-child {
    width: 48px;
}
#fix_cta_btn .fix_cta_btn_list li:last-child a {
    background-color: var(--color-bk);
}
#fix_cta_btn .fix_cta_btn_list li:last-child a img {
    width: 14px;
}
#fix_cta_btn .fix_cta_btn_list li:last-child span {
    color: #fff;
}

@media (min-width: 769px) {
    .footer_logo:hover{
        opacity: .7;
    }
    .footer_nav {
        display: flex;
        flex-wrap: wrap;
    }
    .footer_nav_top a {
        transition: opacity.3s;
    }
    .footer_nav_top a:hover {
        opacity: .7;
    }
    .footer_nav_list {
        margin: 0 0 0 24px;
    }
    .footer_nav_item a {
        transition: opacity.3s;
    }
    .footer_nav_item a:hover {
        opacity: .7;
    }
    .registration_number {
        position: absolute;
        right: 0;
        bottom: 0;
        margin: 16px 64px 16px 0;
    }

    .footer_banner {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
    .footer_banner a {
        max-width: 300px;
    }

    .fix_top_btn #return_top {
        flex-direction: row;
        width: 128px;
        font-size: 1.6rem;
    }
    .fix_top_btn #return_top img {
        width: 20px;
        margin: 0 8px 0 0;
	}

    #fix_cta_btn .fix_cta_btn_list li {
        width: calc( ( 100% - 112px ) /3 );
    }
    #fix_cta_btn .fix_cta_btn_list li:last-child {
        width: 112px;
    }
    #fix_cta_btn .fix_cta_btn_list li:last-child a img {
        width: 20px;
        margin: 0 8px 0 0;
    }
	#fix_cta_btn .fix_cta_btn_list li:last-child .display_sp {
    	display: none;
	}
    #fix_cta_btn .fix_cta_btn_list li a {
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    #fix_cta_btn .fix_cta_btn_list li:nth-of-type(3) a {
        padding-top: 0;
        line-height: 1.6;
    }
    #fix_cta_btn .fix_cta_btn_list li a span {
        margin: 0;
    }
    #fix_cta_btn .fix_cta_btn_list li:nth-of-type(2) a span {
        margin-top: 0;
    }
    #fix_cta_btn .fix_cta_btn_list li a span br {
        display: none;
    }
    #fix_cta_btn .fix_cta_btn_list li a img {
        margin-right: 8px;
        width: 20px;
    }
    #fix_cta_btn .fix_cta_btn_list li:nth-of-type(2) a img,
    #fix_cta_btn .fix_cta_btn_list li:nth-of-type(3) a img {
        width: 24px;
    }
}

@media (min-width: 1001px) {
    .footer_banner {
        margin: 0 0 0 auto;
        width: auto;
        display: block;
    }
    .footer_contact .btn {
        padding: 12px;
    }
    .footer_contact .btn:hover {
        color: var(--color-bk);
    }
    #fix_cta_btn .fix_cta_btn_list li {
        width: calc( ( 100% - 140px ) /3 );
    }
    #fix_cta_btn .fix_cta_btn_list li:last-child {
        width: 140px;
    }
}

@media (min-width: 1281px) {
    .footer_inner {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        padding: 64px 0;
    }
    .footer_top {
        width: 25%;
    }
    .footer_logo {
        max-width: 240px;
        width: 100%;
        margin: 0;
    }
    .footer_contact {
        max-width: 240px;
        margin: 32px 0 0;
    }
    .footer_nav {
        width: 80%;
        padding: 0;
        border-left: var(--color-natural) solid 1px;
        border-top: none;
        min-height: 180px;
        margin: 0;
    }
    .footer_nav_top a {
        font-size: 1.8rem;
    }
    .footer_nav_top a::before {
        height: 14px;
        width: 12px;
    }
    .footer_nav_list {
        margin: 0 0 0 40px;
    }
    .footer_nav_item a {
        transition: opacity.3s;
    }
    .registration_number {
        margin: 0 0 24px 0;
    }
    .copyright {
        padding: 31px 0 80px;
    }

    .footer_banner {
        margin: 0 0 0 40px;
    }

    #fix_cta_btn .fix_cta_btn_list {
        max-width: 1200px;
    }

    #fix_cta_btn .fix_cta_btn_list li a {
        height: 56px;
        font-size: 1.6rem;
    }
    #fix_cta_btn .fix_cta_btn_list li a img {
        margin-right: 10px;
        width: 24px;
    }
}

/*---------------------------------
Main
---------------------------------*/
.main {
}
.section {
    padding: 48px 0;
}
@media (min-width: 769px) {
    .section {
        padding: 64px 0;
    }
}
@media (min-width: 1001px) {
    .main {
        padding-top: 80px;
    }
}
@media (min-width: 1281px) {
    .section {
        padding: 80px 0;
    }
}

/*
Main slider
---------------------------------*/
.main_visual {
    background: linear-gradient(var(--gradient-green-blue));
}
.mv_container {
    max-width: none;
}
.mv_text {
    max-width: 92%;
    margin: 0 auto;
    color: var(--color-wh);
    padding: 32px 0;
}
.mv_title {
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
}
.mv_text p {
    margin: 12px 0 0;
}

.mv_slider {
    position: relative;
    width: 100%;
    background: var(--color-wh);
    box-shadow: rgba(var(--color-main-green-rgb), 0.3) 0 0 12px;
}
.mv_slider_parent {
    padding: 0 0 40px;
    position: relative;
    overflow: hidden;
}
.mv_slider_container {
    overflow: visible;
    position: static;
    transition: opacity .1s ease;
}

.mv_slider_slide a {
    display: block;
}

.mv_slider_slide .thumb {
    height: 50%;
    overflow: hidden;
    position: relative;
}
.mv_slider_slide .thumb img {
    object-fit: cover;
    aspect-ratio: 131 / 70;
    height: 100%;
    width: 100%;
}
.mv_slider_title {
    position: absolute;
    bottom:0;
    left: 0;
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--color-bk);
    background: rgba(var(--color-wh-rgb),.7);
    padding: 4px 8px;
    width: 100%;
}

.mv_slider_slide .content {
    background: var(--color-wh);
    padding: 12px 6px 0;
}
.mv_slider_text {
    font-size: 1.4rem;
    color: var(--color-dark);
    margin: 0;
}
.mv_slider_data {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: var(--color-dark);
    margin-top: 4px;
}
.mv_slider_cat {
    white-space: nowrap;
    color: var(--color-main-green);
    border-radius: 4px;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 8px 12px 0 0;
}
.mv_slider_tag {
    white-space: nowrap;
    color: var(--color-dark);
    border-radius: 4px;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 8px 8px 0 0;
}
.mv_slider_date {
    display: block;
    font-size: 1.2rem;
    color: var(--color-medium);
    font-family: "Roboto" ,serif;
    font-style: italic;
    margin-top: 6px;
}

.mv_slider_container .mv_slider_pagination {
    bottom: 10px;
}
.mv_slider_pagination .swiper-pagination-bullet {
    background: var(--color-wh);
    border: solid 1px var(--color-main-green);
    opacity: 1;
    width: 12px;
    height: 12px;
}
.mv_slider_pagination .swiper-pagination-bullet-active {
    background: var(--color-main-green);
}
.mv_slider_prev,
.mv_slider_next {
    display: none;
    top: 35%;
    width: 40px;
    height: 40px;
    border-radius: 4px;
}
.mv_slider_prev:focus,
.mv_slider_next:focus {
    outline: none;
}
.mv_slider_prev {
    background: url(../image/index_slider_left_001.png) no-repeat center/14px 26px;
    background-color: #333;
}
.mv_slider_next {
    background: url(../image/index_slider_right_001.png) no-repeat center/14px 26px;
    background-color: #333;
}
@media (min-width: 769px) {
    .mv_container {
        display: flex;
        max-width: 92%;
        align-items: center;
    }
    .mv_slider_parent {
        overflow: visible;
        padding: 0;
    }
    .mv_slider_container {
        overflow: hidden;
    }
    .mv_text {
        width: 46.66%;
    }
    .mv_title {
        font-size: 3.2rem;
        text-align: left;
    }
    .mv_text p {
        font-size: 2rem;
        margin-top: 32px;
        width: 74%;
    }
    .mv_slider {
        width: 53.34%;
    }
    .mv_slider_container.load {
        opacity:0;
        visibility:hidden;
    }
    .mv_slider_slide a {
        transition: opacity .3s;
    }
    .mv_slider_slide a:hover {
        opacity: .7;
    }
    .mv_slider_title {
        width: 100%;
        font-size: 2.2rem;
        padding: 16px 40px;
    }
    .mv_slider_slide .content {
        padding: 16px 40px;
        position: relative;
    }
    .mv_slider_title {
        font-size: 2rem;
    }
    .mv_slider_text {
        font-size: 1.6rem;

    }
    .mv_slider_bottom {
        margin-top: 8px;
    }
    .mv_slider_cat {
        margin-top: 20px;
        margin-right: 12px;
        font-size: 1.5rem;
    }
    .mv_slider_tag {
        margin-top: 20px;
        font-size: 1.5rem;
    }
    .mv_slider_date {
        text-align: right;
        font-size: 1.4rem;
    }

    .mv_slider_container .mv_slider_pagination {
        display: none;
    }

    .mv_slider_prev,
    .mv_slider_next {
        display: block;
        top: calc(50% - 60px);
        width: 24px;
        height: 120px;
        transition: opacity .3s;
    }
    .mv_slider_prevt:hover,
    .mv_slider_next:hover {
        opacity: .7;
    }
    .mv_slider_prev {
        background: url(../image/icon_slide_left.png) no-repeat center/100%;
        left: -32px;
    }
    .mv_slider_next {
        background: url(../image/icon_slide_right.png) no-repeat center/100%;
        right: -32px;
    }
}
@media (min-width: 1281px) {
    .mv_container {
        max-width: 1280px;
        padding: 0 40px;
    }
    .mv_title {
        font-size: 4rem;
    }
    .mv_text p {
        font-size: 2.4rem;
        margin-top: 40px;
    }
    .mv_slider_bottom {
        display: flex;
        justify-content: space-between;
    }


    .mv_slider_prev,
    .mv_slider_next {
        top: calc(50% - 80px);
        width: 32px;
        height: 160px;
    }
    .mv_slider_prev {
        left: -40px;
    }
    .mv_slider_next {
        right: -40px;
    }
}

@media (min-width: 1321px) {
    .mv_slider_next {
        right: -48px;
    }
    .mv_slider_prev {
        left: -48px;
    }
}



/*
Section Main Contents
---------------------------------*/
.column_right {
    margin: 56px 0 0;
}
.main_contents_top,
.main_contents_page {
    margin: 0 4%;
}
#single .column_section{
    padding-top: 0;
}
@media (min-width: 769px) {
    .column_container {
        display: flex;
        justify-content: space-between;
    }
    .section_main_contents {
        max-width: 1200px;
        margin: 0 4%;
    }
    #single .section_main_contents,
    #page .section_main_contents {
        padding-top: 40px;
    }
    .main_contents_top {
        width: calc( 100% - 250px );
        margin: 0;
    }
    .main_contents_page {
        margin: 0;
    }
    .column_right {
        display: inline-block;
        width: 240px;
        margin: 0 0 0 30px;
    }
    .column_left {
        width: calc( 100% - 250px );
    }
}
@media (min-width: 1281px) {
    .section_main_contents {
        margin: 0 auto;
    }
    #single .section_main_contents,
    #page .section_main_contents {
        padding-top: 80px;
    }
    .main_contents_top {
        width: calc( 100% - 350px );
    }
    .column_right {
        width: 350px;
        margin: 0 0 0 64px;
    }
    .column_left {
        width: calc( 100% - 414px );
    }
}

/*
Archive
---------------------------------*/
.archive_item {

}
.archive_item + .archive_item {
    margin-top: 24px;
}
.archive_item a {
    display: flex;
    justify-content: space-between;
}
.archive_item .thumb {
    width: 34.8%;
    height: 22vw;
    overflow: hidden;
    box-shadow: rgba(var(--color-main-green-rgb), 0.3) 0 0 12px;
}
.archive_item .thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 131 / 70;
}
.archive_item .content {
    width: 61.2%;
}
.archive_title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
    font-feature-settings: "palt";
}

.archive_data {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: var(--color-dark);
}
.archive_cat {
    white-space: nowrap;
    color: var(--color-main-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 8px 12px 0 0;
}
.archive_tag {
    white-space: nowrap;
    color: var(--color-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 8px 8px 0 0;
}
.archive_date {
    display: block;
    position: relative;
    margin-top: 4px;
    color: var(--color-medium);
    font-size: 1.2rem;
    font-family: "Roboto" ,serif;
    font-style: italic;

}
@media (min-width: 769px) {
    .archive_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .archive_item {
        width: 48%;
    }
    .archive_item + .archive_item {
        margin: 0 0 0 4%;
    }
    .archive_list .archive_item:nth-of-type(n+3) {
        margin-top: 4%;
    }
    .archive_list .archive_item:nth-of-type(2n+1) {
        margin-left: 0;
    }
    .archive_item a {
        padding: 0;
        transition: opacity .3s;
        height: 100%;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
    }
    .archive_item a:hover {
        opacity: .7;
    }
    .archive_item .thumb {
        width: 100%;
        height: auto;
    }
    .archive_item .content {
        width: 100%;
        margin-top: 16px;
    }
    .archive_title {
        font-size: 1.8rem;
    }
    .archive_data {
        margin-top: 8px;
    }
    .archive_cat {
        font-size: 1.5rem;
        margin-top: 12px;
        margin-right: 12px;
    }
    .archive_tag {
        font-size: 1.5rem;
        margin-top: 12px;
    }
    .archive_date {
        margin-top: 12px;
        font-size: 1.4rem;
    }
}






/*
New Archive
---------------------------------*/
.new_archive_list {
    margin: 0 4%;
}
.new_archive_list .archive_item a {
    display: block;
}
.new_archive_list .archive_item .thumb {
    width: 100%;
    height: auto;
}
.new_archive_list .archive_item .content {
    width: 100%;
    margin-top: 12px;
}
.new_archive_list .archive_title {
    font-size: 1.6rem;
}

@media (min-width: 769px) {
    .new_archive_list {
        margin: 0;
    }
    .new_archive_list .archive_item {
        width: 31.34%;
        margin: 0;
    }
    .new_archive_list .archive_item:nth-of-type(n+3) {
        margin-top: 0;
    }

}

/*
Top Category Archive
---------------------------------*/
.top_category_archive + .top_category_archive {
    margin-top: 48px;
}
@media (min-width: 769px) {
    .top_category_archive + .top_category_archive {
        margin-top: 64px;
    }
    .top_category_archive .section_title h2 {
        text-align: left;
    }
    .top_category_archive .section_title h2::after {
        right: auto;
    }
}

/*
Side
---------------------------------*/
.side_box + .side_box {
    margin-top: 32px;
}

.side_popular_title {
    position: relative;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    padding-left: 36px;
}
.side_popular_title::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 24px;
    width: 24px;
    margin: auto;
    background: url(../image/icon_popular_y.png) no-repeat center/100%;
}
.side_popular_list {
    margin-top: 16px;
}
.side_popular_item + .side_popular_item {
    margin-top: 16px;
}
.side_popular_item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.side_popular_item .thumb {
    width: 34.8%;
    height: 17.1vw;
    overflow: hidden;
}
.side_popular_item .thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}
.popular_title {
    width: 61.2%;
    margin: 0;
    font-weight: 700;
    color: var(--color-main-green);
}

.side_banner {
    display: block;
    overflow: hidden;
    box-shadow: rgba(var(--color-main-green-rgb), 0.3) 0 8px 16px;
    transition: opacity .3s;
}
.side_banner img {
    width: 100%;
}
.side_banner.square {
    border-radius: 0;
}
.side_banner.square + .side_banner.square {
    margin: 16px 0 0;
}
.side_banner:hover {
    opacity: .7;
}

.side_tag_title {
    position: relative;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    padding-left: 36px;
}
.side_tag_title::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 24px;
    width: 24px;
    margin: auto;
    background: url(../image/icon_tag_y.png) no-repeat center/100%;
}
.side_tag_wrapper {
    background: var(--color-light);
    padding: 20px;
    margin-top: 16px;
}
.side_tag_list {
    display: flex;
    flex-wrap: wrap;
}
.side_tag_list li {
    margin: 0 16px 12px 0;
}
.side_tag_list li a {
    font-size: 1.6rem;
    color: var(--color-dark);
    font-weight: 700;
    display: inline-block;
}
.side_tag_btn {
    text-align: right;
    margin-top: 12px;
}
.side_tag_btn a {
    position: relative;
    font-size: 1.6rem;
    border: none;
    color: var(--color-main-green);
    font-weight: 700;
    display: inline-block;
    padding: 0 0 0 16px;
}
.side_tag_btn a::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 0;
    left: 0;
    height: 16px;
    width: 8px;
    margin: auto;
    background: url(../image/icon_arrow_right_y.png) no-repeat center/100%;
}


@media (min-width: 769px) {
    .side_popular_item .thumb {
        height: 50%;
    }
    .side_popular_item a {
        transition: opacity .3s;
    }
    .side_popular_item a:hover {
        opacity: .7;
    }
    .side_cat_list {
        padding: 8px 16px;
    }
    .side_cat_item a:hover {
        opacity: .7;
    }
    .side_tag_title {
        font-size: 1.8rem;
    }
    .side_tag_wrapper {
        padding: 24px;
    }
    .side_tag_list li a {
        transition: opacity .3s;
    }
    .side_tag_list li a:hover {
        opacity: .7;
    }
    .side_tag_btn a {
        transition: opacity .3s;
    }
    .side_tag_btn a:hover {
        opacity: .7;
    }
}
@media (min-width: 1281px) {
    .side_box + .side_box {
        margin-top: 40px;
    }
    .side_sticky {
        position: sticky;
        top: 116px;
    }
    .side_cat_list {
        padding: 8px 24px;
    }
    .side_cat_item a {
        font-size: 1.8rem;
        padding: 16px 0 16px 24px;
    }
    .side_banner_btn {
        padding: 18px 16px 19px;
    }
}

/*
Section Contact
---------------------------------*/
.section_contact {
    background: linear-gradient(var(--gradient-green-blue));
}
.section_contact .section_title {
    color: var(--color-wh);
}
.section_contact_text {
    margin: 0;
    font-weight: 700;
    line-height: 1.6;
    color: var(--color-wh);
}
.contact_btn_list {
    margin-top: 24px;
}
.contact_btn {
    width: 100%;
    height: 72px;
}
@media (max-width: 767px) {
    .contact_btn + .contact_btn {
        margin-top: 20px;
    }
}
.contact_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 66px;
    font-weight: 700;
    position: relative;
    transition: opacity .3s;
}
.contact_btn.-download a {
    background: var(--color-wh);
    box-shadow: var(--color-bg) 0 6px 0;
    color: var(--color-important);
}
.contact_btn.-contact a {
    background: var(--color-key);
    box-shadow: #F29913 0 6px 0;
    color: var(--color-bk);
}
.contact_btn a span {
    position: relative;
}
.contact_btn a span::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.contact_btn.-download a span::before {
    background: url(../image/icon_download_r.png) no-repeat center/100%;
    height: 22px;
    width: 19px;
}
.contact_btn.-contact a span::before {
    background: url(../image/icon_mail_k.png) no-repeat center/100%;
    height: 14px;
    width: 18px;
}
.contact_btn a span::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 4px;
    bottom: 0;
    margin: auto;
    height: 12px;
    width: 7px;
    background: url(../image/index_circle_chevron_right_white_001.png) no-repeat center/100%;
}
.contact_btn.-download a span::after {
    background: url(../image/icon_arrow_right_r.png) no-repeat center/100%;
}
.contact_btn.-contact a span::after {
    background: url(../image/icon_arrow_right_k.png) no-repeat center/100%;
}
.contact_btn br {
    display: none;
}

.contact_tel {
    margin-top: 32px;
    text-align: center;
}
.contact_tel_title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-wh);
}
.contact_tel_number {
    margin-top: 24px;
    border: solid 2px var(--color-wh);
    padding: 16px;
}
.contact_tel_number a {
    display: inline-block;
    color: var(--color-wh);
    font-size: 2.8rem;
    font-weight: 700;
    padding-left: 32px;
    position: relative;
}
.contact_tel_number a::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    background: url(../image/icon_tel_y.png) no-repeat center/100%;
}
.contact_tel_note {
    display: block;
    margin: 12px 0 0;
    padding-top: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-wh);
    border-top: solid 2px var(--color-wh);
}
@media (min-width: 769px) {
    .section_contact_title h2 {
        font-size: 3rem;
    }
    .section_contact_text {
        margin: 30px 0;
        font-size: 1.8rem;
        text-align: center;
    }
    .contact_btn_list {
        display: flex;
        justify-content: space-between;
        align-items: end;
    }
    .contact_btn {
        width: 48%;
        height: auto;
    }
    .contact_btn a {
        font-size: 2.4rem;
        height: 96px;
    }
    .contact_btn a:hover {
        transform: translateY(6px);
        box-shadow: none;
    }
    .contact_btn.-download a span::before {
        left: -32px;
        height: 32px;
        width: 24px;
    }
    .contact_btn.-contact a span::before {
        left: -32px;
        height: 32px;
        width: 24px;
    }
    .contact_btn a span::after {
        right: -20px;
        height: 20px;
        width: 12px;
    }
    .contact_btn br {
        display: block;
    }
    .contact_tel_number {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 32px;
    }
    .contact_tel_number div {
        padding: 16px 0;
        width: 40%;
    }
    .contact_tel_number a {
        font-size: 3.2rem;
        padding-left: 40px;
    }
    .contact_tel_number a::before {
        height: 32px;
        width: 32px;
    }
    .contact_tel {
        margin-top: 30px;
    }
    .contact_tel_title {
        font-size: 2.2rem;
    }
    .contact_tel_note {
        margin: 0;
        padding: 16px 0;
        border-top: 0;
        border-left: solid 2px var(--color-wh);
        font-size: 1.8rem;
        width: 60%;
    }
}
@media (min-width: 1281px) {
    .section_contact_title h2 {
        font-size: 4rem;
    }
    .section_contact_text {
        margin: 40px 0;
    }
    .contact_btn {
    }
    .contact_btn a {
        
    }
    .contact_btn a::after {
        right: 28px;
        height: 32px;
        width: 32px;
    }
    .contact_tel {
        margin-top: 40px;
        padding: 12px;
    }
    .contact_tel_title {
        font-size: 2.4rem;
    }
    .contact_tel_number a {
        font-size: 4rem;
    }
    .contact_tel_note {
        margin-left: 32px;
    }
    .contact_tel_note br {
        display: none;
    }
}

/*
Category
---------------------------------*/
.category_top_section {
    padding-bottom: 0;
}
.category_top_section + .column_section {
    padding-top: 48px;
}
.category_text {
    font-size: 1.6rem;
    margin: 0 0 28px;
    text-align: left;
    line-height: 1.6;
}
.category_text p {
    margin: 0;
}
.category_text p + p {
    margin: 8px 0 0;
}
.category_text .note {
    font-size: 1.3rem;
}
.category_tag_title {
    font-size: 1.8rem;
    font-weight: 700;
    padding-left: 36px;
    position: relative;
    white-space: nowrap;
}
.category_tag_title::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    height: 24px;
    width: 24px;
    margin: auto;
    background: url(../image/icon_tag_y.png) no-repeat center / 100%;
}
.category_tag {
    background: var(--color-light);
    padding: 20px;
}
.category_tag_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
}
.category_tag_list li {
    margin: 0 16px 12px 0;
}
.category_tag_list li a {
    font-size: 1.6rem;
    color: var(--color-dark);
    font-weight: 700;
}
.category_tag_btn {
    text-align: right;
    margin-top: 12px;
}
.category_tag_btn a {
    position: relative;
    font-size: 1.6rem;
    border: none;
    color: var(--color-main-green);
    font-weight: 700;
    display: inline-block;
    padding: 0 0 0 16px;
}
.category_tag_btn a::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 0;
    left: 0;
    height: 10px;
    width: 6px;
    margin: auto;
    background: url(../image/icon_arrow_right_y.png) no-repeat center / 100%;
}
@media (min-width: 769px) {

    .category_top_section + .column_section {
        padding-top: 56px;
    }
    .category_text {
        font-size: 1.8rem;
    }
    .category_tag {
        display: flex;
        padding: 24px;
    }
    .category_tag > div:last-child {
        width: 100%;
    }
    .category_tag_list {
        margin: 0 0 0 32px;
    }
    .category_tag_list li a {
        transition: opacity .3s;
    }
    .category_tag_list li a:hover {
        opacity: .7;
    }
    .category_tag_btn a {
        transition: opacity .3s;
    }
    .category_tag_btn a:hover {
        opacity: .7;
    }
    .category_tag_btn a::before {
        height: 14px;
        width: 8px;
    }
}

/*
Single
---------------------------------*/
.single_contents {
}
.single_contents_top {
    padding: 16px 0 0;
}
.single_contents_bottom {
    margin-top: 24px;
}
@media (max-width: 768px) {
    .single_date::after {
        content: none;
    }
}
.single_contents_thumb {
    position: relative;
    margin: 0 -4%;
}
.single_contents_thumb img {
    object-fit: cover;
    aspect-ratio: 131 / 70;
}
.single_contents_thumb_pc {
    display: none;
}
.single_contents_thumb_pc img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 131 / 70;
}
.single_title_wrapper {
    position: absolute;
    z-index: 2;
    padding: 8px 4% 8px;
    left: 0;
    bottom: 0;
    background: rgba(var(--color-wh-rgb), .7);
}
.single_title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}
.single_date_wrapper {
    display: flex;
    margin-top: 4px;
}
.single_date {
    display: block;
    font-size: 1.2rem;
    margin-top: 0;
    color: var(--color-medium);
    position: relative;
}
.single_date + .single_date {
    margin-left: 12px;
}
.single_date time {
    display: inline-block;
}
.single_date span + time {
    margin-left: 8px;
}
.single_data {
    line-height: 1;
}
.single_cat {
    display: inline-flex;
    margin: 0 8px 8px 0;
    color: var(--color-main-green);
    font-size: 1.3rem;
    font-weight: 700;
}
.single_cat a {
    color: var(--color-main-green);
}
.single_tag {
    display: inline-block;
    margin: 0 8px 8px 0;
}
.single_tag a {
    display: inline-flex;
    color: var(--color-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

.single_contents_bottom section {
    margin-top: 32px;
}
.single_contents_bottom p {
    margin: 24px 0 0;
    font-size: 1.6rem;
    line-height: 1.8;
}
.single_contents_bottom > p:first-of-type {
    margin-top: 0;
}
.single_contents_bottom .note {
    font-size: 1.3rem;
    margin-top: 16px;
}
.single_contents_bottom h2,
.single_title_2 {
    color: var(--color-main-green);
    font-size: 1.8rem;
    margin: 32px 0 0;
    font-weight: 700;
}
.single_contents_bottom h3,
.single_title_3 {
    font-size: 1.7rem;
    margin: 24px 0 0;
    font-weight: 700;
}
.single_contents_bottom h4,
.single_title_4 {
    font-size: 1.6rem;
    margin: 16px 0 0;
    font-weight: 700;
}
.single_contents_bottom .image {
    margin-top: 8px;
}
.single_contents_bottom h3 + .image {
    margin-top: 24px;
}
.single_contents_bottom ul {
    list-style: disc;
    padding-left: 1.2em;
    margin: 16px 0 0;
}
.single_contents_bottom li + li {
    margin-top: 4px;
}

.single_contents_bottom h4 + ul,
.single_contents_bottom table td ul:first-of-type{
    margin: 0;
}
.single_contents_bottom ul.top_spacer,
.disc_list.top_spacer {
    margin-top: 16px;
}
.single_contents_bottom ol,
.decimal_list {
    margin: 0;
    list-style: decimal;
    padding-left: 1.4em;
}
.single_contents_bottom ol li::marker,
.decimal_list li::marker {
    font-weight: 500;
    font-size: 1.6rem;
}
.single_contents_bottom ul p,
.single_contents_bottom ol p,
.single_contents_bottom .disc_list p,
.single_contents_bottom .decimal_list p  {
    margin: 0;
}
.single_contents_bottom ul p + p,
.single_contents_bottom ol p + p,
.single_contents_bottom .disc_list p + p,
.single_contents_bottom .decimal_list p + p {
    margin: 24px 0 0;
}



.single_contents_bottom .list_summary {
    margin-top: 12px;
    line-height: 1.6;
    list-style: none;
    padding: 0;
}
.single_contents_bottom .list_summary li {
    position: relative;
    padding-left: 1.4em;
    font-weight: 700;
    line-height: 1.8;
}
.single_contents_bottom .list_summary li::before {
    content: "";
    position: absolute;
    left: 0.4em;
    top: 0.7em;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: var(--color-key);
}
.single_contents_bottom .list_summary li + li {
    margin-top: 6px;
}


.single_contents_bottom .block_frame_01 {
    padding: 8px;
    background: var(--color-light);
    margin: 24px 0 0;
}
.single_contents_bottom .block_frame_01 *:first-child {
    margin-top: 0;
}

.single_writer {
    border-top: solid 1px #ddd;
    margin-top: 32px;
    padding-top: 24px;
}
.single_writer_title {
    font-size: 1.6rem;
    font-weight: 700;
}
.single_writer_column {
    margin-top: 8px;
}
.single_writer_thumb {
    max-width: 112px;
}
.single_writer .single_writer_column .single_writer_text {
    font-weight: 400;
    margin-top: 8px;
}
.single_writer_text b:first-child {
    margin-bottom: 8px;
    display: block;
}

.block_movie_link {
    background: var(--color-bg);
    margin: 32px 0;
    padding: 28px 16px;
}
.block_movie_link .movie_title {
    font-weight: 700;
}
.block_movie_link .movie_link {
    margin: 20px 0;
}
.block_movie_link .movie_link a {
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding-left: 32px;
    display: block;
}
.block_movie_link .movie_link a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: url(../image/icon_movie_y.png) no-repeat center / 100%;
    height: 20px;
    width: 20px;
    margin: auto;
}
.block_movie_link *:first-child {
    margin-top: 0;
}
.block_movie_link .note {
    font-size: 1.2rem;
    color: var(--color-dark);
}


.main_banner {
    margin: 32px 0;
    display: block;
    background: #efefef;
    padding: 16px;
    border-radius: 8px;
    box-shadow: #cecece 0 4px 0;
    transition: .3s;
}
.main_banner:active {
    transform: translateY(4px);
    box-shadow: none;
    background: #fff;
}

.single_contents_bottom blockquote {
    position: relative;
    padding: 32px 8px;
    background: #f2f2f2;
    margin: 24px 0 0;
}
.single_contents_bottom blockquote::before{
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    height: 24px;
    width: 21px;
    background: url(../image/index_quote_left_gray_001.png) no-repeat center/100%;
}
.single_contents_bottom blockquote::after{
    content: "";
    position: absolute;
    bottom: 8px;
    right: 8px;
    height: 24px;
    width: 21px;
    background: url(../image/index_quote_right_gray_001.png) no-repeat center/100%;
}
.single_contents_bottom blockquote p:first-of-type {
    margin: 0;
}
.single_contents_bottom .single_footnote {
    font-size: 1.4rem;
}

@media (min-width: 769px) {
    #single .column_section {
        padding-top: 64px;
    }
    .single_contents_top {
        padding: 24px 0 16px;
        border-bottom: 0;
    }
    .single_contents_bottom {
        margin-top: 48px;
    }
    .single_title_wrapper {
        padding: 0;
        min-height: auto;
        position: relative;
    }
    .single_title {
        font-size: 2.4rem;
        padding: 0;
        line-height: 1.6;
    }
    .single_cat {
        margin: 0 12px 12px 0;
        font-size: 1.5rem;
    }
    .single_tag {
        margin: 0 12px 12px 0;
    }
    .single_tag a {
        
        font-size: 1.5rem;
    }
    .single_date {
        font-size: 1.4rem;
    }

    .single_contents_thumb {
        width: auto;
        margin: 0;
    }
    .single_contents_thumb img {
        display: none;
    }
    .single_contents_thumb_pc {
        display: block;
    }
    .single_contents_bottom section {
        margin-top: 48px;
    }
    .single_contents_bottom p {
        margin: 28px 0 0;
    }
    .single_contents_bottom h2,
    .single_title_2 {
        font-size: 2rem;
    }
    .single_contents_bottom h3,
    .single_title_3 {
        font-size: 1.8rem;
        margin: 28px 0 0;
    }
    .single_contents_bottom h4,
    .single_title_4 {
        font-size: 1.6rem;
    }
	.single_contents_bottom li + li {
    	margin-top: 8px;
	}
    .single_writer {
        margin-top: 48px;
        padding-top: 48px;
    }
    .single_writer_column {
        margin-top: 16px;
        display: flex;
        justify-content: space-between;
    }
    .single_writer_thumb {
        width: 112px;
    }
    .single_writer .single_writer_column .single_writer_text {
        margin-top: 0;
    }
    .writer_thumb_display .single_writer_column .single_writer_text {
        width: calc(100% - 136px);
    }


    .single_contents_bottom h3 + .image {
        margin-top: 28px;
    }
    .main_banner {
        margin: 64px 0;
    }
    .main_banner:hover {
        transform: translateY(4px);
        box-shadow: none;
        background: #fff;
    }
    .single_contents_bottom blockquote {
        padding: 40px 16px;
        margin: 28px 0 0;
    }
    .single_contents_bottom blockquote::before{
        top: 8px;
        left: 16px;
        height: 32px;
        width: 28px;
    }
    .single_contents_bottom blockquote::after{
        bottom: 8px;
        right: 16px;
        height: 32px;
        width: 28px;
    }


    .single_contents_bottom .block_frame_01 {
        padding: 16px;
        margin: 28px 0 0;
    }


    .single_contents_bottom .list_summary {
        margin-top: 24px;
    }
    .single_contents_bottom .list_summary li::before {
        left: 0.4em;
        top: 0.7em;
        width: 6px;
        height: 6px;
        border-radius: 3px;
    }
	.single_contents_bottom .list_summary li + li {
    	margin-top: 10px;
	}

    .block_movie_link {
        margin: 48px 0;
        padding: 28px 32px;
    }
    .block_movie_link .movie_title {
        font-weight: 700;
    }
    .block_movie_link .movie_link {
        margin: 20px 0;
    }
    .block_movie_link .movie_link a {
        padding-left: 40px;
    }
    .block_movie_link .movie_link a::before {
        height: 28px;
        width: 28px;
    }

}


@media (min-width: 1281px) {
    #single .column_section {
        padding-top: 80px;
    }
    .single_contents_top {
        padding: 24px 0 28px;
    }
    .single_contents_bottom {
        margin-top: 64px;
    }
    .single_title_wrapper {

    }
    .single_title {
        font-size: 2.8rem;
    }

    .single_contents_bottom section {
        margin-top: 64px;
    }
    .single_contents_bottom p {
        margin: 32px 0 0;
    }
    .single_contents_bottom h2,
    .single_title_2 {
        font-size: 2.4rem;
        margin-top: 64px;
    }
    .single_contents_bottom h3,
    .single_title_3 {
        font-size: 2rem;
        margin: 32px 0 0;
    }
    .single_contents_bottom h4,
    .single_title_4 {
        font-size: 1.6rem;
    }

    .single_writer {
        margin-top: 64px;
        padding-top: 64px;
    }
    .single_contents_bottom h3 + .image {
        margin-top: 32px;
    }

    .single_contents_bottom .block_frame_01 {
        margin: 32px 0 0;
    }

    .block_movie_link {
        margin: 64px 0;
    }
}


/*
Toc
---------------------------------*/
#toc_container {
    margin: 32px 0;
    background: var(--color-light);
    padding: 12px;
}
.toc_title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}
.toc_title span {
    position: relative;
    display: inline-block;
    padding-left: 24px;
}
.toc_title span::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 16px;
    width: 16px;
    background: url(../image/icon_toc.png) no-repeat center/100%;
}
.single_contents_bottom ul.toc_list {
    margin-top: 12px;
    line-height: 1.6;
    list-style: none;
    padding: 0;
}
.toc_list li {
    position: relative;
    padding-left: 1.2em;
}
.toc_list > li {
    padding-left: 1.4em;
}
.toc_list > li::before {
    content: "";
    position: absolute;
    left: 0.4em;
    top: 0.7em;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: var(--color-key);
}
.toc_list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1em;
    height: 1px;
    width: 8px;
    background: var(--color-key);
}
.toc_list a {
    font-weight: 700;
    font-size: 1.5rem;
    transition: opacity .3s;
}
.toc_list li +li {
    margin-top: 8px;
}
.single_contents_bottom .toc_list ul {
    margin-top: 4px;
    padding: 0;
    list-style: none;
}
.toc_list ul a {
    font-weight: 400;
    font-size: 1.4rem;
}
@media (min-width: 769px) {
    #toc_container {
        margin: 48px 0;
        padding: 16px 24px;
    }
    .single_contents_bottom ul.toc_list {
        margin-top: 16px;
    }
    .toc_list a {
        font-size: 1.6rem;
    }
    .toc_list a:hover {
        opacity: .7;
    }
    .toc_list > li::before {
        left: 0.4em;
        top: 0.7em;
        width: 6px;
        height: 6px;
        border-radius: 3px;
    }
    .toc_list ul li::before {
        width: 8px;
    }
    .toc_list ul a {
        font-size: 1.5rem;
    }
}
@media (min-width: 1281px) {
    #toc_container {
        margin: 64px 0;
        padding: 24px 32px;
    }
    .toc_title {
        font-size: 2rem;
    }
    .toc_title span {
        padding-left: 32px;
    }
    .toc_title span::before {
        height: 16px;
        width: 20px;
    }
    .single_contents_bottom ul.toc_list {
        margin-top: 24px;
    }
}

/*
Table
---------------------------------*/
.single_contents_bottom table,
.table {
    margin: 16px 0 0;
    font-feature-settings: "palt";
}
.table .table_scroll_note {
    text-align: center;
    color: #666;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.table_scroll {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
    .table_scroll .width_780 {
        min-width: 780px;
    }
    .table_scroll .width_640 {
        min-width: 640px;
    }
    .table_scroll .width_560 {
        min-width: 560px;
    }
    .table_scroll .width_480 {
        min-width: 480px;
    }
}
.single_contents_bottom table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.4rem;
    background: #fff;
}
.table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.4rem;
    background: #fff;
    margin: 0;
}
.single_contents_bottom table thead,
.table thead {
    background: #f2f2f2;
}
.single_contents_bottom table th,
.single_contents_bottom table td,
.table th,
.table td {
    padding: 10px;
    border: 1px solid #ddd;
}
tbody th {
    text-align: left;
    vertical-align: middle;
}
.single_contents_bottom table th p,
.single_contents_bottom table td p {
    font-size: inherit;
    font-weight: inherit;
}
.single_contents_bottom table p {
    margin: 0;
}
@media (min-width: 769px) {
    .table .table_scroll_note {
        display: none;
    }
}
@media (min-width: 1281px) {
    .table table,
    .single_contents_bottom table {
        font-size: 1.6rem;
    }
    .single_contents_bottom table th,
    .single_contents_bottom table td,
    .table th,
    .table td {
        padding: 12px;
    }
}

/*
Related
---------------------------------*/

.related_contents {
    border-top: solid 1px #ddd;
    overflow: hidden;
    margin-top: 32px;
    padding-top: 32px;
}
.related_section_title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}
.related_list {

}
.related_item {
    
}
.related_item + .related_item {
    margin-top: 24px;
}
.related_item a {
    display: flex;
    justify-content: space-between;
}
.related_item .thumb {
    width: 34.8%;
    height: 22vw;
    overflow: hidden;
    box-shadow: rgba(var(--color-main-green-rgb), 0.3) 0 0 12px;
}
.related_item .thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 131 / 70;
}
.related_item .content {
    width: 61.2%;
}
.related_title {
    font-weight: 700;
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-bk);
    font-feature-settings: "palt";
}
.related_text {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 8px 0;
    color: var(--color-bk);
}
.related_data {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: var(--color-dark);
}
.related_date {
    display: block;
    position: relative;
    margin-top: 4px;
    color: var(--color-medium);
    font-size: 1.2rem;
    font-family: "Roboto", serif;
    font-style: italic;
}
.related_cat {
    white-space: nowrap;
    color: var(--color-main-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 8px 12px 0 0;
}
.related_tag {
    white-space: nowrap;
    color: var(--color-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 8px 8px 0 0;
}
@media (min-width: 769px) {
    .related_contents {
        margin-top: 48px;
        padding-top: 48px;
    }
    .related_section_title {
        font-size: 2rem;
    }
    .related_item {
    }
    .related_item + .related_item {
        margin-top: 32px;
    }
    .related_item a {
        transition: opacity .3s;
    }
    .related_item a:hover {
        opacity: .7;
    }
    .related_item .thumb {
        height: 12vw;
    }
}
@media (min-width: 1281px) {
    .related_contents {
        margin-top: 64px;
        padding-top: 64px;
    }
    .related_section_title {
        font-size: 2.4rem;
    }
    .related_item {
    }
    .related_item + .related_item {
        margin-top: 40px;
    }
    .related_item a {
    }
    .related_item .thumb {
        height: 100%;
        width: 34%;
    }
    .related_item .thumb img {
        border-radius: 0;
    }
    .related_item .content {
        width: 62%;
        
    }
    .related_title {
        font-size: 1.6rem;
    }
    .related_text {
        font-size: 1.5rem;
    }
    .related_date {
        font-size: 1.4rem;
    }
    .related_cat {
        font-size: 1.5rem;
    }
    .related_tag {
        font-size: 1.5rem;
    }
}

.no-margin {
    margin: 0!important;
}
.align_right {
    text-align: right!important;
}
.align_left {
    text-align: left!important;
}
.align_center {
    text-align: center!important;
}
.nowrap {
    white-space: nowrap;
}
.align_center th {
    text-align: center;
}
.weight_bold {
    font-weight: 700!important;
}
.mt_1m {
    margin-top: 1em;
}
.bb_2px {
    border-bottom: solid 2px #ddd;
}


.contact_btn_under_text {
    font-weight: 700;
    font-size: 1.4rem;
    background: #efefef;
    padding: 8px 16px;
    border-radius: 4px;
    margin-top: 12px;
}
.section_contact .contact_btn_under_text {
    background: #FFFCF0;
    font-size: 1.5rem;
    margin-top: 16px;
}
@media (min-width: 769px) {
    .contact_btn_under_text {
        font-size: 1.5rem;
        padding: 8px 16px;
        border-radius: 8px;
        margin-top: 16px;
    }
    .section_contact .contact_btn_under_text {
        font-size: 1.7rem;
        padding: 16px 24px;
        margin-top: 24px;
    }
}


/*
Page
---------------------------------*/

.page_contents_top {
    
}
.page_top_section {
    padding-bottom: 0;
}
.page_top_section + .column_section {
    padding-top: 0;
}

.page_contents_bottom {
    
}
.page_title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    padding-bottom: 24px;
    line-height: 1.6;
    border-bottom: solid 1px #ddd;
}

.page_contents h2 {
    color: var(--color-main-green);
    font-size: 1.8rem;
    margin: 32px 0 0;
    font-weight: 700;
}
.page_contents > *:first-child {
    margin-top: 0;
}

@media (min-width: 769px) {
    .page_contents {

    }
    .page_top_section + .column_section {
        padding-top: 0;
    }
    .page_contents_bottom {
        
    }
    .page_title {
        font-size: 2.4rem;
    }
    .page_contents h2 {
        font-size: 2rem;
    }
}
@media (min-width: 1281px) {
    .page_contents_top {
        
    }
    .page_contents_bottom {
        
    }
    .page_title {
        font-size: 2.8rem;
    }
    .page_contents h2 {
        font-size: 2.4rem;
        margin-top: 64px;
    }
}

/*
Tag Page
---------------------------------*/
.tag_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
}
.tag_list li {
    margin: 0 16px 16px 0;
}
.tag_list li a {
    font-size: 1.6rem;
    color: var(--color-dark);
    display: inline-block;
    transition: opacity .3s;
    font-weight: 700;
}
@media (min-width: 769px) {
    .tag_list {
        margin-top: 16px;
    }
    .tag_list li a {
        transition: opacity .3s;
    }
    .tag_list li a:hover {
        opacity: .7;
    }
}




/*
Add Class
---------------------------------*/
.-fc_green {
    color: var(--color-main-green);
}
.-bg_lightblue {
    background: var(--color-bg);
}