@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700,800,900&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-size: 100%;
	vertical-align: baseline;
	font-family: "Noto Sans JP","メイリオ","ms pgothic", sans-serif;
	color: #1D1D1D;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
    overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea{
	margin: 0;
	padding: 0;
}

ol, ul{
    list-style:none;
}

table{
    border-collapse: collapse;
    border-spacing:0;
}

caption, th{
    text-align: left;
}

a:focus {
	outline:none;
}

body{
	line-height: 150%;
	overflow: hidden;
	-webkit-text-size-adjust: 100%;
}

a{
	text-decoration: none;
}

img{
	max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}

.trim img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

p,
a,
li{
	font-size: 3.5vw;
	line-height: 170%;
}

p a,
li a{
	font-size: inherit;
	font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a{
	letter-spacing: 0.03em;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7,
h7{
	line-height: 150%;
}

.tab,
.pc{
	display: none;
}

.photo{
	line-height: 0;
}

.link_text{
	color: #246A9B;
}

.link_text:hover{
	text-decoration: underline;
}

.hover_border:hover{
	text-decoration: underline;
}

.link_text.underbar{
    color: #2980B9;
	text-decoration: underline;
}

a.boder{
	text-decoration: underline;
}

a.boder:hover,
.link_text.underbar:hover{
	text-decoration: none;
}

.inner{
	padding-left: 6vw;
	padding-right: 6vw;
}

#wrap{
	position: relative;
}


/* header
   ================================================================== */
header{
	position: relative;
}

.top_page header{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

header .inner{
	padding: 3vw 3vw;
    height: 70px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.site_logo{
    line-height: 0;
    width: 45vw;
}

.site_logo a{
    display: inline-block;
    line-height: 0;
}

.under_page header .site_logo{
    display: none;
}


/* Navi
   ================================================================== */
.ham_btn{
    position: fixed;
    right: 0;
    top: 0;
    font-size: 26px;
    display: block;
    z-index: 500;
    text-align: center;
    cursor: pointer;
    width: 70px;
    height: 70px;
    box-sizing: border-box;
    padding: 24px 20px;
	transition: ease-out 0.3s;
    background: #000;
}

.ham_btn .inner{
    padding: 10px 0 0;
    width: 30px;
    height: 23px;
    display: block;
    position: relative;
    transition: ease-out 0.8s;
    box-sizing: border-box;
}


.ham_btn .bar,
.ham_btn .bar:before,
.ham_btn .bar:after{
    transition: ease-out 0.3s;
    text-indent: -9999px;
    height: 2px;
    width: 30px;
    background: #fff;
    display: block;
}

.ham_btn .bar:before{
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
}

.ham_btn .bar:after{
    content: "";
    position: absolute;
    bottom: 7px;
    left: 0;
}

.ham_btn.open{
    transform: rotate(0deg);
}

.ham_btn .bar{
    background: transparent !important;
}

.ham_btn.open .bar:before{
    transform: rotate(45deg);
    top: 11px;
}

.ham_btn.open .bar:after{
    transform: rotate(-45deg);
    bottom: 10px;
}

body.open{
    position: fixed;
    width: 100%;
}

.gnav{
    display: none;
}

.slide_menu{
    padding: 70px 0 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,1);
    box-sizing: border-box;
    z-index: 20;
    transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
    transition-delay: 0s;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    display: none;
}

.slide_menu.show{
    display: flex;
}

.slide_menu.open{
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    transition-duration: 0.6s;
}

.slide_menu > .inbox{
    margin: 0 0 0;
    padding: 0 0 0 10vw;
}

.slide_menu .logo{
    margin: 10vw 0 0;
    line-height: 0;
    width: 55vw;
   
}

@keyframes navi_logo_animation_off{
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

.slide_menu.open .logo{
    animation: navi_logo_animation_open 1s cubic-bezier(0,.58,.42,1) 0s 1 normal both;
}

@keyframes navi_logo_animation_open{
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide_menu .slide_nav{
    padding: 0 0 70px;
}

.slide_nav > ul{
    padding: 10vw 0 0;
    width: 100%;
}   

.slide_nav > ul > li{
    margin: 8vw 0 0;
    padding: 0 1vw;
}

.slide_nav > ul > li > div span,
.slide_nav > ul > li a{
    padding: 0;
    display: inline-block;
    transition: all ease-out 0.3s;
    z-index: 2;
    box-sizing: border-box;
    font-size: 4.5vw;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #212121;
    line-height: 120%;
}

.slide_nav li{
    line-height: 1;
}

/* 閉じる時 */
.slide_nav > ul > li > a{
   
}

.slide_nav > ul > li:nth-child(2) > a{
    animation-delay: .05s;
}

.slide_nav > ul > li:nth-child(3) > a{
    animation-delay: .1s;
}

.slide_nav > ul > li:nth-child(4) > a{
    animation-delay: .15s;
}

.slide_nav > ul > li:nth-child(5) > a{
    animation-delay: .2s;
}

.slide_nav > ul > li:nth-child(6) > a{
    animation-delay: .25s;
}

@keyframes navi_animation_off{
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}

/* 開く時 */
.slide_menu.open .slide_nav > ul > li > a{
    animation: navi_animation_open 1s cubic-bezier(0,.58,.42,1) 0s 1 normal both;
}

.slide_menu.open .slide_nav > ul > li:nth-child(2) > a{
    animation-delay: .1s;
}

.slide_menu.open .slide_nav > ul > li:nth-child(3) > a{
    animation-delay: .15s;
}

.slide_menu.open .slide_nav > ul > li:nth-child(4) > a{
    animation-delay: .2s;
}

.slide_menu.open .slide_nav > ul > li:nth-child(5) > a{
    animation-delay: .25s;
}

.slide_menu.open .slide_nav > ul > li:nth-child(6) > a{
    animation-delay: .3s;
}

@keyframes navi_animation_open{
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* fix
   ================================================================== */
#fix{
	position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6vw;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: 10;
}

#fix h1{
    padding: 1.5vw 0 0;
    width: auto;
    height: 6vw;
    font-size: 3.2vw;
    transform: rotate(90deg);
    transform-origin: center center;
    line-height: 1;
    letter-spacing: 0.61em;
    box-sizing: border-box;
    white-space: nowrap;
}

#fix h1 img{
    width: 100%;
}


/* footer
   ================================================================== */
footer{
	padding: 15vw 0 0;
	background: #fff;
    position: relative;
    z-index: 1;
}

.footer_bg_wrap{
	background: #F0F0F0;
    position: relative;
    z-index: 1;
}

.top_page footer .footer_logo{
	display: none;
}

footer .footer_logo{
	padding: 10vw 0;
	background: #fff;
    position: relative;
    z-index: 1;
    border-top: 1px solid #D5D5D5;
}

footer .footer_logo .logo{
	margin: 0 auto;
    width: 50vw;
    line-height: 0;
}

footer .footer_logo .logo a{
	display: block;
    line-height: 0;
}

footer .inner{
	padding: 0;
}

footer .footer_top{
	padding: 3vw 0 6vw;
}

footer .footer_nav{
	margin: 0 0 0;
    padding: 0 3vw;
    line-height: 0;
}

footer .footer_nav ul{
	margin: 0;
    font-size: 0;
}

footer .footer_nav ul li{
	margin: 3vw 0 0;
    display: inline-block;
}

footer .footer_nav ul li a{
	padding: 0 5vw;
	display: block;
	color: #1F1F1F;
	font-size: 3.5vw;
    line-height: 130%;
    font-weight: 700;
    position: relative;
}

footer .footer_nav ul li a::after{
    content: "";
    background: #707070;
    width: 1px;
    height: 90%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

footer .footer_nav ul li:nth-child(4) a::before,
footer .footer_nav ul li:first-child a::before{
    content: "";
    background: #707070;
    width: 1px;
    height: 90%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

footer .footer_nav ul li:last-child a{
	border-bottom: none;
}

footer .footer_bottom{
	margin: 0 0 0;
    padding: 3vw 0 0;
    border-top: 1px solid #fff;
}

footer .help_nav{
	margin: 0 0 0;
    line-height: 0;
}

footer .help_nav ul{
	margin: 0;
    font-size: 0;
}

footer .help_nav ul li{
	margin: 3vw 3vw 0;
    padding: 0;
    display: inline-block;
}

footer .help_nav ul li a{
	padding: 0 0 0 3vw;
	display: block;
	color: #1F1F1F;
	font-size: 3.2vw;
    line-height: 150%;
    font-weight: 400;
    position: relative;
}

footer .help_nav ul li a::before,
footer .help_nav ul li a::after{
    content: "";
    position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    width: 2vw;
    height: 1px;
    background: #999;
    transition: .2s;
    transform-origin: right center;
}

footer .help_nav ul li a::before{
    transform: rotate(40deg);
}

footer .help_nav ul li a::after{
    transform: rotate(320deg);
}

footer address{
    margin: 6vw 0 0;
	padding: 4vw 2vw;
	font-size: 3.2vw;
    letter-spacing: 0.03em;
    line-height: 150%;
	color: #1F1F1F;
	text-align: center;
    border-top: 1px solid #fff;
}


/* contents_wrap
   ================================================================== */
.contents_wrap{
    margin: 0 0 0;
    padding: 0 0 0;
    position: relative;
    z-index: 1;
}


/* block_title
   ================================================================== */
.block_title{
    margin: 0 0 0;
}

.block_title > span{
    padding: 0 4vw 0 0;
    font-size: 4.5vw;
    min-height: 7vw;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.330em;
    color: #000;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.block_title > span::before{
    content: "";
    background: #000;
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
}

.block_title.border_none > span::before{
    display: none;
}

.block_title.white > span{
    color: #fff;
}

.block_title.white > span::before{
    background: #fff;
}

.block_title .sub{
    margin: 5vw 0 0;
    padding: 0;
    font-size: 3.8vw;
    height: 7vw;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.20em;
    display: flex;
    align-items: center;
    position: relative;
}

.block_title .sub::before{
    display: none;
}


/* block_bg_color
   ================================================================== */
.block_bg_color{
	padding: 8vw 6vw 10vw 0;
    position: relative;
}

.block_bg_color::before{
    content: "";
    background: #EBEBEB;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    right: 6vw;
    border-radius: 0 10px 10px 0;
}

.block_bg_color .inner{
    position: relative;
    z-index: 1;
}

/* position_right */
.block_bg_color.position_right{
	padding: 8vw 0 10vw 6vw;
}

.block_bg_color.position_right::before{
    right: auto;
    left: 6vw;
    border-radius: 10px 0 0 10px;
}


/* btn
   ================================================================== */	
.btn{
	text-align: center;
	line-height: 0;
}

.btn a{
	padding: 0;
	width: 90vw;
    height: 14vw;
	font-size: 5vw;
    line-height: 130%;
    font-weight: 700;
	color: #fff;
	display: inline-flex;
    align-items: center;
    justify-content: center;
	box-sizing: border-box;
    max-width: 100%;
	background: #000;
	position: relative;
    text-align: center;
    border-radius: 100px;
    border: 2px solid #707070;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.btn a::before{
    content: "";
    margin: auto;
    background-image: url("../images/icon_search.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 7vw;
    height: 7vw;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5vw;
}


@media screen and (min-width : 500px){

	
	p,
	a,
	li{
		font-size: 1.5vw;
	}
   
    a.over{
    	transition: all ease-out 0.3s;
    }
    	
    a.over:hover{
    	opacity: 0.6;
    }
    	
    a.link_under:hover{
    	text-decoration: underline;
    }

	.sp{
		display: none;
	}

	.tab{
		display: inherit;
	}

    .inner{
    	padding-left: 5vw;
    	padding-right: 5vw;
    }


    /* header
       ================================================================== */
    .top_page header{
        position: fixed;
        transition: .5s;
    }

    .top_page.reach header{
        background: rgba(0,0,0,.5);
    }

    header .inner{
    	padding: 0 2.5vw;
        height: 7.5vw;
    }
   
    .site_logo{
        width: 28.6vw;
    }
  
	
    /* Navi
       ================================================================== */
    .ham_btn{
        display: none;
    }

    .slide_menu{
        display: none;
    }

    .gnav{
        margin: 0 0 0 auto;
        display: block;
    }
   
    .gnav > ul{
    	margin: auto;
        padding: 0 0 0;
    	font-size: 0;
        overflow: inherit;
    }
   
    .gnav > ul > li{
        margin: 0;
        padding: 0 1.5vw;
    	text-align: center;
		width: auto;
		display: inline-block;
        transition: none;
        transition-delay: 0s;
        position: relative;
    }
   
    .gnav > ul > li::before{
        content: "";
        background: #BCBCBC;
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
   
    .gnav > ul > li:first-child::before{
        display: none;
    }
   
    .gnav > ul > li > a{
        padding: .6vw 0;
    	display: flex;
        align-items: center;
        justify-content: center;
    	text-align: center;
        line-height: 1;
        border: none;
        height: auto;
        position: relative;
    	font-size: 1.8vw;
        letter-spacing: 0;
        font-weight: 700;
        transition: .5s ease;
        top: 0;
        animation: none;
    }
   
    .gnav > ul > li > a::before{
        content: "";
        background: #111;
        width: 100%;
        height: 1px;
        position: absolute;
        top: 100%;
        left: 0;
        transform: scale(0);
        transition: transform 0.3s ease;
        transform-origin: right center;
    }
   
    .top_page .gnav > ul > li > a{
        color: #fff;
        text-shadow: 0 3px 6px rgba(0,0,0,1);
    }
   
    .top_page .gnav > ul > li > a::before{
        background: #fff;
    }
   
    .gnav > ul > li > a:hover::before{
        transform: scale(1);
        transform-origin: left center;
    }


    /* fix
       ================================================================== */
    #fix{
        width: 6.0vw;
    }

    #fix h1{
        padding: 0 0 0;
        height: 1.7vw;
        font-size: 1.2vw;
    }


    /* footer
       ================================================================== */
    footer{
        padding: 9.0vw 0 0;
    }

    footer .footer_logo{
        padding: 5.7vw 0 6.2vw;
    }

    footer .footer_logo .logo{
        width: 31.8vw;
    }

    footer .inner{
        padding: 0 2.0vw;
    }

    footer .footer_top{
        padding: 2.0vw 0;
    }

    footer .footer_nav{
        margin: 0 0 0;
        padding: 0;
    }

    footer .footer_nav ul{
        margin: 0;
        text-align: center;
    }

    footer .footer_nav ul li{
        margin: 0 0 0;
    }

    footer .footer_nav ul li a{
        padding: 0 2.4vw;
        font-size: 1.4vw;
    }

    footer .footer_nav ul li a::after{
        height: 2.0vw;
    }

    footer .footer_nav ul li:first-child a::before{
        height: 2.0vw;
    }

    footer .footer_nav ul li:nth-child(4) a::before{
        display: none;
    }

    footer .footer_bottom{
        padding: 2.0vw 0;
    }

    footer .footer_bottom .inner{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    footer .help_nav{
        margin: 0 0 0;
    }

    footer .help_nav ul{
        margin: 0;
    }

    footer .help_nav ul li{
        margin: 0 2.5vw 0 0;
    }

    footer .help_nav ul li:last-child{
        margin: 0;
    }

    footer .help_nav ul li a{
        padding: 0 0 0 1.1vw;
        font-size: 1.4vw;
    }

    footer .help_nav ul li a::before,
    footer .help_nav ul li a::after{
        width: .7vw;
    }

    footer .footer_nav ul li a,
    footer .help_nav ul li a{
        transition: .2s;
    }

    footer .footer_nav ul li a:hover,
    footer .help_nav ul li a:hover{
        color: #5192c8;
    }

    footer .help_nav ul li a:hover::before,
    footer .help_nav ul li a:hover::after{
        background-color: #5192c8;
    }

    footer address{
        margin: 0 0 0;
        padding: 0;
        font-size: 1.4vw;
        border-top: none;
    }


    /* contents_wrap
       ================================================================== */
    .contents_wrap{
        padding: 0 0 0;
    }
   
   
    /* block_title
       ================================================================== */
    .block_title > span{
        margin: 0 2.0vw 0 0;
        padding: 0 2.0vw 0 0;
        font-size: 2.0vw;
        min-height: 3.3vw;
    }

    .block_title > span::before{
        width: 3px;
    }

    .block_title .sub{
        margin: 0;
        font-size: 1.3vw;
        height: 3.3vw;
        display: inline-flex;
    }


    /* block_bg_color
       ================================================================== */
    .block_bg_color{
        padding: 5.0vw 6.0vw 5.0vw 0;
    }

    .block_bg_color::before{
        right: 6.0vw;
        border-radius: 0 15px 15px 0;
    }

    /* position_right */
    .block_bg_color.position_right{
        padding: 5.0vw 0 5.0vw 6.0vw
    }

    .block_bg_color.position_right::before{
        right: auto;
        left: 6.0vw;
        border-radius: 15px 0 0 15px;
    }


    /* btn
       ================================================================== */	
    .btn a{
        width: 64.7vw;
        height: 8.7vw;
        font-size: 2.8vw;
        transition: .3s;
    }

    .btn a::before{
        width: 4.6vw;
        height: 4.6vw;
        right: 3.3vw;
    }
   
    .btn a:hover{
        opacity: .7;
        box-shadow: 0 0 0 rgba(0,0,0,0);
    }
	
	
}
@media screen and (min-width : 1100px){

	
    a{
    	text-decoration: none;
    }
   
    .inner{
    	padding-left: 0;
    	padding-right: 0;
    	max-width: 1000px;
    	margin: auto;
		box-sizing: border-box;
    }
	
	p,
	a,
	li{
		font-size: 15px;
	}

	.tab{
		display: none;
	}

	.pc{
		display: inherit;
	}

    #wrap{
        padding: 0 0 0;
    	position: relative;
    }


    /* header
       ================================================================== */
    header .inner{
    	padding: 0 25px;
        height: 75px;
        display: flex;
        align-items: center;
    }
   
    .site_logo{
        width: 286px;
    }
  
	
    /* Navi
       ================================================================== */
    .ham_btn{
        display: none;
    }

    .slide_menu{
        display: none;
    }

    .gnav{
        margin: 0 0 0 auto;
        display: block;
    }
   
    .gnav > ul{
    	margin: auto;
        padding: 0 0 0;
    	font-size: 0;
        overflow: inherit;
    }
   
    .gnav > ul > li{
        margin: 0;
        padding: 0 15px;
    	text-align: center;
		width: auto;
		display: inline-block;
        transition: none;
        transition-delay: 0s;
        position: relative;
    }
   
    .gnav > ul > li::before{
        content: "";
        background: #BCBCBC;
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
   
    .gnav > ul > li:first-child::before{
        display: none;
    }
   
    .gnav > ul > li > a{
        padding: 6px 0;
    	display: flex;
        align-items: center;
        justify-content: center;
    	text-align: center;
        line-height: 1;
        border: none;
        height: auto;
        position: relative;
    	font-size: 18px;
        letter-spacing: 0;
        font-weight: 700;
        transition: .5s ease;
        top: 0;
        animation: none;
    }


    /* fix
       ================================================================== */
    #fix{
        width: 82px;
    }

    #fix h1{
        padding: 0 0 0;
        height: 17px;
        font-size: 16px;
    }


    /* footer
       ================================================================== */
    footer{
        padding: 90px 0 0;
    }

    footer .footer_logo{
        padding: 57px 0 62px;
    }

    footer .footer_logo .logo{
        width: 318px;
    }

    footer .inner{
        padding: 0 20px;
    }

    footer .footer_top{
        padding: 20px 0;
    }

    footer .footer_nav{
        margin: 0 0 0;
        padding: 0;
    }

    footer .footer_nav ul{
        margin: 0;
        text-align: center;
    }

    footer .footer_nav ul li{
        margin: 0 0 0;
    }

    footer .footer_nav ul li a{
        padding: 0 24px;
        font-size: 14px;
    }

    footer .footer_nav ul li a::after{
        height: 20px;
    }

    footer .footer_nav ul li:first-child a::before{
        height: 20px;
    }

    footer .footer_nav ul li:nth-child(4) a::before{
        display: none;
    }

    footer .footer_bottom{
        padding: 20px 0;
    }

    footer .footer_bottom .inner{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    footer .help_nav{
        margin: 0 0 0;
    }

    footer .help_nav ul{
        margin: 0;
    }

    footer .help_nav ul li{
        margin: 0 25px 0 0;
    }

    footer .help_nav ul li a{
        padding: 0 0 0 12px;
        font-size: 14px;
    }

    footer .help_nav ul li a::before,
    footer .help_nav ul li a::after{
        width: 7px;
    }

    footer address{
        margin: 0 0 0;
        padding: 0;
        font-size: 14px;
        border-top: none;
    }


    /* contents_wrap
       ================================================================== */
    .contents_wrap{
        padding: 0 0 0;
    }
   
   
    /* block_title
       ================================================================== */
    .block_title > span{
        margin: 0 23px 0 0;
        padding: 0 23px 0 0;
        font-size: min(2.0vw,25px);
        min-height: 38px;
    }

    .block_title > span::before{
        width: 3px;
    }

    .block_title .sub{
        font-size: min(1.2vw,15px);
        height: 38px;
        display: inline-flex;
    }


    /* block_bg_color
       ================================================================== */
    .block_bg_color{
        padding: 50px 82px 50px;
    }

    .block_bg_color::before{
        right: 82px;
        border-radius: 0 15px 15px 0;
    }

    /* position_right */
    .block_bg_color.position_right{
        padding: 50px 50px 82px;
    }

    .block_bg_color.position_right::before{
        right: auto;
        left: 82px;
        border-radius: 15px 0 0 15px;
    }


    /* btn
       ================================================================== */	
    .btn a{
        width: 647px;
        height: 87px;
        font-size: 28px;
    }

    .btn a::before{
        width: 46px;
        height: 46px;
        right: 33px;
    }
	
}
@media screen and (min-width : 1300px){
   
   
    /* block_title
       ================================================================== */
    .block_title > span{
        font-size: 25px;
    }

    .block_title .sub{
        font-size: 18px;
    }
   
  
}
   
