/*** ----------------------------------------------------------------------------- 

reset

-----------------------------------------------------------------------------  ***/
.clearfix:after {
	content:".";
	display:block;
	visibility:hidden;
	clear:both;
	height:0.1px;
	font-size:0.1em;
	line-height:0;
}
.clearfix {
	display:inline-table;
	zoom:1;
}
/*Hides from IE-mac \*/
* html .clearfix {
	height:1%;
}
.clearfix {
	display:block;
}


/* End hide from IE-mac */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin:0px;
	padding:0px;
}　
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset, img {
	border:0;
}
address, caption, cite, code, dfn, em, th, var {
	font-style:normal;
	font-weight:normal;
}
ul {
	list-style:none;
}
ol li{
	list-style:none;
}
caption, th {
	text-align:left;
}
h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight:normal;
}
q:before, q:after {
	content:'';
}
abbr, acronym {
	border:0;
	font-variant:normal;
}
sup {
	vertical-align:top;
}
sub {
	vertical-align:text-bottom;
}
input, textarea, select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
input, textarea, select {
 *font-size:100%;
}
legend {
	color:#000000;
}
img {
	vertical-align:bottom;
}
table caption {
	font-weight: bold;
	margin:0 0 5px;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
/*** ------------------------------------------------------------------------------ 

HTML5

-----------------------------------------------------------------------------  ***/
#header, footer, nav, section, article, figure, aside {
	display:block;
}
* {
	box-sizing:border-box;
}
i{
	margin: 0 5px 0 0;
}
img{
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}

/*** ------------------------------------------------------------------------------ 

common

-----------------------------------------------------------------------------  ***/
html {
	font-size: 62.5%;
	overflow-x: hidden;
	height: 100%;
}
body {
	color: var(--color_black);
	line-height: 1.75;
	font-size: 1.6rem;
	font-family: "Noto Sans JP", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", MS PGothic, "ＭＳ Ｐゴシック", Osaka, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
@media (max-width:768px){
	body {
		font-size: 1.6rem;
		font-family: "Noto Sans JP", sans-serif, Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", MS PGothic, "ＭＳ Ｐゴシック", Osaka, sans-serif;
	}	
}

.inner00{
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.inner01{
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.inner02{
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.inner03{
	max-width: 940px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
@media (max-width:768px){
    .inner00{
        padding: 0 25px;
    }
	.inner01{
		padding: 0 25px;
	}
	.inner02{
		padding: 0 25px;
	}
    .inner03{
        padding: 0 25px;
    }
}

.pc{ display: block;}
.sp{ display: none;}
@media (max-width:768px){
	.pc{ display: none;}
	.sp{ display: block;}
}


/*** ----------------------------------------------------------------------------- 

変数定義

-----------------------------------------------------------------------------  ***/
:root{
    /* カラー　*/
    --color_base: #004898;
    --color_blue01: #F7FAFC;
    --color_green: #9AD579;
    --color_yellow: #F6DC60;
    --color_black: #282828;
    --color_red: #CB0707;
    
    
    /* フォント */
    --font_ja: "Noto Sans JP", serif;
    --font_ja-kakugo: "Zen Kaku Gothic New", serif;
    --font_en: "Ubuntu", serif;
}


/*** ------------------------------------------------------------------------------ 

リンク

-----------------------------------------------------------------------------  ***/
/* 基本 */
a{
	color: var(--color_base);
	outline:none;
	-webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}
a img {
	transition: 0.3s;
}

input[type=text],
textarea {
  -webkit-appearance: none;
}





/*** ------------------------------------------------------------------------------ 

header

-----------------------------------------------------------------------------  ***/
.header{
    position: fixed;
    /*position: absolute;*/
    
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
    transform:translateY(0px);
}
.header.hide{
    /*transform:translateY(-150px);*/
}
.header.show{
    position: fixed;
    transform:translateY(0px);
}

.header-cont{
    position: relative;
    height: 96px;
    background: #fff;
}
.header-cont .header-cont__logo{
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    /*margin: -14px 0 0;*/
    margin: 0;
    max-width: 346px;
}
.header-cont .header-cont__logo img{
    
}


.header-cont .sub-list{
    position: absolute;
    right: 185px;
    top: 20px;
    display: flex;
}
.header-cont .sub-list .sub-list__item{
    font-size: 1.2rem;
    font-weight: 500;
}
.header-cont .sub-list .sub-list__item a{
    display: inline-block;
    padding: 0 12px;
    letter-spacing: 0.025vw;
    position: relative;
    text-align-last: none;
    color: var(--color_black);
    text-decoration: none;
}
.header-cont .sub-list .sub-list__item a::after{
    position: absolute;
    right: 0;
    top: 15%;
    content: '';
    width: 1px;
    height: 70%;
    background: var(--color_black);
}
.header-cont .sub-list .sub-list__item:last-child a::after{
    content: none;
}
@media (min-width:769px){
    .header-cont .sub-list .sub-list__item a:hover{
        color: var(--color_base);
    }
}

.header-cont .list{
    position: absolute;
    right: 180px;
    top: 47px;
    display: flex;
}
.header-cont .list .list__item{
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 0 0 20px;
    letter-spacing: 0.025vw;
    position: relative;
}
.header-cont .list .list__item a{
    text-decoration: none;
    display: block;
    padding: 13px 20px 13px 15px;
    color: var(--color_black);
    position: relative;
    background: url("../img/icon-circle.svg") no-repeat left center / 10px auto;
}
.header-cont .list .list__item a::before{
    position: absolute;
    left: -12px;
    bottom: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--color_base);
    transition: 0.3s;
    transform: scale(0);
}
.header-cont .list .list__item--support a::before{
    z-index: 2;
}
.header-cont .list .list__item a::after{
    position: absolute;
    right: 0;
    top: 50%;
    content: '';
    width: 2px;
    height: 16px;
    margin: -8px 0 0;
    background: var(--color_black);
    transform: rotate(30deg);
    border-radius: 2px;
}
.header-cont .list .list__item:last-child a::after{
    content: none;
}
.header-cont .list .list__item .child{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 180px;
    width: 100%;
    z-index: 2;
    transform: translateX(-12px);
}
.header-cont .list .list__item .child li{
    
}
.header-cont .list .list__item .child li a{
    font-size: 1.2rem;
    background: var(--color_base);
    color: #fff;
    padding: 18px;
}
.header-cont .list .list__item .child li a::before{
    content: none;
}


@media (min-width:881px){
    .header-cont .list .list__item a:hover{
        color: var(--color_base);
    }
    .header-cont .list .list__item:hover a::before{
        transform: scale(1);
    }
    .header-cont .list .list__item:hover .child{
        opacity: 1;
        visibility: visible;
    }
    .header-cont .list .list__item .child li a:hover{
        text-decoration: underline;
    }
}

.header-cont .header-cont__contact{
    position: absolute;
    right: 25px;
    top: 0;
    width: 140px;
}
.header-cont .header-cont__contact a{
    display: block;
    background: var(--color_green);
    text-align: center;
    padding: 10px 0 0;
    border-radius: 0 0 15px 15px;
    position: relative;
    transition: 0.3s;
    color: var(--color_black);
    text-decoration: none;
}
.header-cont .header-cont__contact a::before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: calc(100% - 8px);
    height: calc(100% - 4px);
    border: 4px solid transparent;
    border-top: none;
    border-radius: 0 0 15px 15px;
    transition: 0.3s;
}

header #menu{
    display: none;    
}

@media (min-width:769px){
    .header-cont .header-cont__contact a:hover{
        background: #fff;
    }
    .header-cont .header-cont__contact a:hover::before{
        border: 4px solid var(--color_yellow);
        border-top: none;
    }
}
@media (max-width:1380px){
    .header-cont .header-cont__logo{
        left: 20px;
        width: 280px;
    }
}
@media (max-width:1300px){
    .header-cont .list .list__item{
        margin: 0 0 0 15px;
    }
    .header-cont .sub-list{
        right: 175px;
    }
    .header-cont .list{
        right: 168px;
    }
    .header-cont .header-cont__contact{
        right: 20px;
    }
}
@media (max-width:1240px){
    .header-cont .header-cont__logo{
        line-height: 1.0;
    }
    .header-cont .header-cont__contact{
        right: 0;
        width: 100px;
    }
    .header-cont .header-cont__contact a{
        overflow: hidden;
    }
    .header-cont .sub-list{
        right: 105px;
    }
    .header-cont .list{
        right: 100px;
    }
    .header-cont .list .list__item a{
        padding: 13px 15px;
    }
}
@media (max-width:1160px){
    .header-fix{
        transform:translateY(0px);
    }
    .header-fix.hide{
        transform:translateY(-60px);
    }
    
    .header-cont{
        height: 60px;
    }
    .header-cont .header-cont__logo{
        left: 20px;
        margin: 0 60px 0 0;
    }
    .header-cont nav{
        display: none;
    }
    .header-cont .header-cont__contact{
        display: none;
    }
    
    header #menu{
        display: block;
		position: fixed;
		right: 0;
		top: 0;
		z-index:9999;
		color:#FFFFFF;
		font-size:0.76em;
		height:60px;
		overflow:hidden;
        background: none;
	}
	header #menu:before{
		content: '';
		display:block;
		position:absolute;
		left:0;
		top:37px;
		width:60px;
		text-align: center;
		font-size:1.167em;
		z-index:999;
	}
	header #menu a{
        display: inline-block;
        position: relative;
        width: 60px;
        height:60px;
        overflow:hidden;
	}
	header #menu a span{
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 28px;
        height: 2px;
        margin: -2px 0 0 -14px;
        background: var(--color_base);
        transition: .2s;
        text-indent:-9999px;
	}
	header #menu a span:before,
    header #menu a span:after{
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 28px;
        height: 2px;
        background: var(--color_base);
        transition: .3s;
	}
	header #menu a span:before{
	    margin-top: -9px;
	}
	header #menu a span:after{
	    margin-top: 7px;
	}
	header #menu a .close{
	    background: transparent;
	}
	header #menu a .close:before,
    header #menu a .close:after{
	    margin-top: 0;
        background: #8DD068;
	}
	header #menu a .close:before{
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
	}
	header #menu a .close:after{
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
	}
}



/*** ------------------------------------------------------------------------------ 

sp-menu

-----------------------------------------------------------------------------  ***/
.sp-menu{
    display: none;
}
@media (max-width: 1160px){
    .sp-menu{
        display: block;
        position: fixed;
        right: -200%;
        top: 0;
        z-index: 1000;
        width: 100%;
        height: 100%;
        background: #F7FAFC;
        transition: 0.3s;
    }
    .sp-menu.is_active{
        right: 0%;
    }
    .sp-menu nav{
        overflow-y: scroll;
        height: 100vh;
        /* IE, Edge 対応 */
        -ms-overflow-style: none;
        /* Firefox 対応 */
        scrollbar-width: none;
    }
    .sp-menu nav::-webkit-scrollbar{
        display:none;
    }
    .sp-menu .logo{
        height: 60px;
        padding: 0 20px;
        display: flex;
        align-items: center;
        line-height: 1.0;
        background: #fff;
        font-size: min(1.8rem, 4.25vw);
        font-weight: bold;
    }
    .sp-menu .logo img{
        max-width: 280px;
    }
    .sp-menu .parent{
        padding: 0 20px;
    }
    .sp-menu .parent > li{
        border-bottom: 1px solid #B0CDE1;
        position: relative;
    }
    .sp-menu .parent > li > a{
        display: block;
        padding: 12px 55px 12px 0;
        text-decoration: none;
        font-size: 1.6rem;
        background: url("../img/icon-arrow.svg") no-repeat right 20px center;
    }
    .sp-menu .parent > li.has-child > a{
        background: none;
    }
    .sp-menu .parent .child{
        display: none;
    }
    .sp-menu .parent .child li a{
        display: block;
        padding: 8px 0 8px 1.0em;
        font-size: 1.4rem;
    }
    .sp-menu .parent .child li a.blank::after{
        display: inline-block;
        content: '';
        width: 14px;
        height: 14px;
        background: url("../img/icon-blank-blue.svg") no-repeat right center / 14px auto;
        transform: translate(10px, 2px);
    }
    .sp-menu .parent li.has-child .plus{
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 50px;
        height: 52px;
    }
    .sp-menu .parent li.has-child .plus:before{
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -1px 0 0 -7px;
        width: 14px;
        height: 2px;
        background-color: var(--color_base);
        transition: .2s;
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        border-right: none;
    }
    .sp-menu .parent li.has-child .plus:after{
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -1px 0 0 -7px;
        width: 14px;
        height: 2px;
        background-color: var(--color_base);
        transition: .3s;
    }
    .sp-menu .parent li.has-child .plus.on:before{
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    .sp-menu .parent li.has-child .plus.on:after{
        background-color: transparent;
    }
    
    .sp-menu .sp-menu-bnr{
        padding: 40px 20px 80px;
        text-align: center;
    }
    
    .sp-menu-close{
        position: absolute;
        right: 0;
        top: 0;
        width: 60px;
        height:60px;
    }
    .sp-menu-close a{
        display: inline-block;
        position: relative;
        width: 60px;
        height:60px;
        overflow:hidden;
	}
	.sp-menu-close a span{
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 28px;
        height: 2px;
        margin: -2px 0 0 -14px;
        background: var(--color_base);
        transition: .2s;
        text-indent:-9999px;
	}
	.sp-menu-close a span:before,
    .sp-menu-close a span:after{
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 28px;
        height: 2px;
        background: var(--color_base);
        transition: .3s;
	}
	.sp-menu-close a span:before{
	    margin-top: -9px;
	}
	.sp-menu-close a span:after{
	    margin-top: 7px;
	}
	.sp-menu-close a span{
	    background: transparent;
	}
	.sp-menu-close a span:before,
    .sp-menu-close a span:after{
	    margin-top: 0;
        background: #8DD068;
	}
	.sp-menu-close a span:before{
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
	}
	.sp-menu-close a span:after{
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
	}
}


/*** ------------------------------------------------------------------------------ 

footer

-----------------------------------------------------------------------------  ***/
footer{}

footer .footer__cont{
    background: var(--color_base);
}
footer .footer__cont .footer-fl{
    padding: 70px 20px 75px;
    display: flex;
}
footer .footer__cont .footer-fl .footer-fl__logo{
    max-width: 365px;
}
footer .footer__cont .footer-fl .footer-fl__info{
    width: 470px;
}
footer .footer__cont .footer-fl .footer-fl__info .info{
    margin: 33px 0 15px;
}
footer .footer__cont .footer-fl .footer-fl__info .info .info__title{
    font-size: 1.8rem;
    letter-spacing: 0.05vw;
    color: #fff;
    margin: 0 0 10px;
}
footer .footer__cont .footer-fl .footer-fl__info .info .info__title::before{
    font-size: 1.4rem;
    content: '■';
    margin: 0 8px 0 0;
    position: relative;
    top: -2px;
}
footer .footer__cont .footer-fl .footer-fl__info .info .info__tel{
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.05vw;
    color: #fff;
    line-height: 1.0;
    margin: 0 0 5px;
}
footer .footer__cont .footer-fl .footer-fl__info .info .info__time{
    font-size: 1.4rem;
    letter-spacing: 0.05vw;
    color: #fff;
}
footer .footer__cont .footer-fl .footer-fl__info .footer-fl__text{
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.333;
}
footer .footer__cont .footer-fl .footer-fl__nav{
    width: calc(100% - 470px);
    display: flex;
    justify-content: space-between;
    justify-content: flex-start;
}
footer .footer__cont .footer-fl .footer-fl__nav ul.parent:nth-of-type(1){
    max-width: 350px;
    margin: 0 3.5vw 0 0;
}
footer .footer__cont .footer-fl .footer-fl__nav ul.parent:nth-of-type(2){
    max-width: 350px;
}

footer .footer__cont .footer-fl .footer-fl__nav ul.parent li{
    font-size: 1.4rem;
    line-height: 2.5;
}
footer .footer__cont .footer-fl .footer-fl__nav ul.child{
    padding: 0 0 0 1.5em;
}
footer .footer__cont .footer-fl .footer-fl__nav ul.child li{
    /*
    text-indent: -1.5em;
    padding: 0 0 0 2.5em;
    */
}
    
footer .footer__cont .footer-fl .footer-fl__nav ul.child li::before{
    content: 'ー';
    color: #fff;
    margin: 0 5px 0 0;
}
footer .footer__cont .footer-fl .footer-fl__nav ul li a{
    color: #fff;
}
footer .footer__cont .footer-fl .footer-fl__nav ul li a.blank::after{
    display: inline-block;
    content: '';
    width: 14px;
    height: 14px;
    background: url("../img/icon-blank-white.svg") no-repeat right center / 14px auto;
    transform: translate(10px, 2px);
}
footer .footer__cont .footer-fl .footer-fl__nav li.has-child .plus{
    display: none;
}


footer .banner-list{
    display: flex;
    align-items: center;
    padding: 20px 20px;
    position: relative;
}
footer .banner-list::before{
    position: absolute;
    left: 20px;
    top: 0;
    content: '';
    width: calc(100% - 40px);
    height: 1px;
    background: #fff;
}
footer .banner-list__item{
    margin: 0 20px 0 0;
}
footer .banner-list__item:last-child{
    margin: 0;
}
footer .banner-list__item a{
    transition: 0.3s;
}
@media (min-width:769px){
    footer .banner-list__item a:hover{
        opacity: 0.6;
    }   
}
@media (max-width:1085px){
    footer .footer__cont .footer-fl .footer-fl__nav{
        display: block;
    }
    footer .footer__cont .footer-fl .footer-fl__nav ul{
        margin: 0;
    }
    footer .footer__cont .footer-fl .footer-fl__nav ul.parent:nth-of-type(1),
    footer .footer__cont .footer-fl .footer-fl__nav ul.parent:nth-of-type(2){
        max-width: 100%;
        margin: 0;
    }
}
@media (max-width:820px){
    footer .footer__cont .footer-fl{
        display: block;
        padding: 40px 20px 20px;
    }
    footer .footer__cont .footer-fl .footer-fl__info{
        width: 100%;
        margin: 0 0 40px;
    }
    footer .footer__cont .footer-fl .footer-fl__nav{
        width: 100%;
    }
    footer .footer__cont .footer-fl .footer-fl__nav ul.parent > li{
        border-bottom: 1px solid #fff;
        position: relative;
    }
    footer .footer__cont .footer-fl .footer-fl__nav ul.parent:first-of-type > li:first-child{
        border-top: 1px solid #fff;
    }
    footer .footer__cont .footer-fl .footer-fl__nav ul.parent > li > a{
        display: block;
        padding: 15px 0;
        text-decoration: none;
    }
    footer .footer__cont .footer-fl .footer-fl__nav ul.child{
        display: none;
    }
    footer .footer__cont .footer-fl .footer-fl__nav ul.child li::before{
        content: none;
    }
    footer .footer__cont .footer-fl .footer-fl__nav ul.parent > li.has-child > a{
        display: block;
        padding: 15px 55px 15px 0;
    }
    footer .footer__cont .footer-fl .footer-fl__nav ul.child > li > a{
        display: block;
        padding: 8px 0;
        text-decoration: none;
    }
    
    
    footer .footer__cont .footer-fl .footer-fl__nav li.has-child .plus{
        display: block;
        position: absolute;
        right: -20px;
        top: 0;
        width: 65px;
        height: 65px;
    }
    footer .footer__cont .footer-fl .footer-fl__nav li.has-child .plus:before{
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -1px 0 0 -7px;
        width: 14px;
        height: 2px;
        background-color: #fff;
        transition: .2s;
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        border-right: none;
    }
    footer .footer__cont .footer-fl .footer-fl__nav li.has-child .plus:after{
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -1px 0 0 -7px;
        width: 14px;
        height: 2px;
        background-color: #fff;
        transition: .3s;
    }
    footer .footer__cont .footer-fl .footer-fl__nav li.has-child .plus.on:before{
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    footer .footer__cont .footer-fl .footer-fl__nav li.has-child .plus.on:after{
        background-color: transparent;
    }

    footer .banner-list{
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 0 20px 20px;
    }
    footer .banner-list__item{
        margin: 0 4% 15px 0;
        width: 48%;
        text-align: center;
    }
    footer .banner-list__item:nth-child(2n){
        margin: 0 0 15px 0;
        text-align: center;
    }
    footer .banner-list__item{
        display: block;
    }
    footer .banner-list::before{
        content: none;
    }
}


footer .copyright{
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.66;
    color: var(--color_base);
    padding: 15px 20px 24px;
}
footer .copyright span{
    display: block;
    font-size: 1.4rem;
    line-height: 1.42;
}
@media (max-width:768px){
    footer .copyright{
        text-align: left;
        padding: 24px 20px 35px;
    }
    footer .copyright span{
        text-align: center;
        margin: 0 0 10px;
    }   
}


/*** ------------------------------------------------------------------------------ 

scroll-top

-----------------------------------------------------------------------------  ***/
.scroll-top{
    position: fixed;
    right: 25px;
    bottom: 55px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.scroll-top.on{
    opacity: 1;
    visibility: visible;
}
@media (max-width:768px){
    .scroll-top{
        width: 60px;
        right: 15px;
        bottom: 20px;
    }   
}

/*** ------------------------------------------------------------------------------ 

main

-----------------------------------------------------------------------------  ***/
main{
    padding: 96px 0 0;
}
@media (max-width:1160px){
    main{
        padding: 60px 0 0;
    }
}


/*** ------------------------------------------------------------------------------ 

headline01

-----------------------------------------------------------------------------  ***/
.headline01{
    margin: 0 0 45px;
}
.headline01 .headline01__title{
    font-size: 3.8rem;
    font-weight: bold;
    color: var(--color_base);
    letter-spacing: 0.05vw;
    line-height: 1.5;
}
.headline01--white .headline01__title{
    color: #fff;
}
.headline01 .headline01__en{
    line-height: 1.0;
    margin: 0 0 10px;
    font-family: var(--font_en);
}
.headline01 .headline01__en span{
    position: relative;
    left: 12px;
    display: inline-block;
    background: var(--color_yellow);
    font-size: 2.0rem;
    font-weight: 500;
    padding: 3px 15px;
    letter-spacing: 0.05vw;
}
.headline01--white .headline01__en span{
    background: none;
    border: 2px solid #fff;
    color: #fff;
}
.headline01 .headline01__en span::before{
    position: absolute;
    left: -12px;
    top: 50%;
    content: '';
    width: 18px;
    height: 3px;
    background: var(--color_green);
    border-radius: 4px;
    transform: translateY(-50%);
}
.headline01--white .headline01__en span::before{
    background: #fff;
}
@media (max-width:768px){
    .headline01{
        margin: 0 0 40px;
    }
    .headline01 .headline01__en span{
        font-size: 1.6rem;
    }
    .headline01 .headline01__title{
        /*font-size: 3.5rem;*/
        font-size: min(3.2rem, 6.6vw);
    }
}

/*** ------------------------------------------------------------------------------ 

headline02

-----------------------------------------------------------------------------  ***/
.headline02{
    margin: 0 0 40px;
}
.headline02 .headline02__en{
    font-size: 2.0rem;
    font-weight: 500;
    font-family: var(--font_en);
    text-align: center;
    line-height: 1.0;
    letter-spacing: 0.05vw;
}
.headline02 .headline02__title{
    font-size: 3.8rem;
    font-weight: bold;
    color: var(--color_base);
    text-align: center;
    letter-spacing: 0.05vw;
    
    margin: 10px 0 0;
    line-height: 1.5;
}
@media (max-width:768px){
    .headline02 .headline02__en{
        /*font-size: 1.9rem;*/
        font-size: 1.6rem;
    }
    .headline02 .headline02__title{
        /*font-size: 3.3rem;*/
        font-size: min(3.2rem, 6.6vw);
    }
}


/*** ------------------------------------------------------------------------------ 

headline03

-----------------------------------------------------------------------------  ***/
.headline03{
    margin: 0 0 30px;
    display: flex;
    align-items: flex-end;
}
.headline03 .headline03__title{
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.0;
    letter-spacing: 0.05vw;
    color: var(--color_base);
}
.headline03 .headline03__en{
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.0;
    letter-spacing: 0.05vw;
    margin: 0 0 0 15px;
}
@media (max-width: 768px){
    .headline03{
        margin: 0 0 40px;
        flex-wrap: wrap;
        text-align: center;
    }
    .headline03 .headline03__title{
        font-size: 2.6rem;
        width: 100%;
        order: 2;
    }
    .headline03 .headline03__en{
        font-size: 1.4rem;
        width: 100%;
        order: 1;
        margin: 0 0 10px;
    }   
}

/*** ------------------------------------------------------------------------------ 

headline04

-----------------------------------------------------------------------------  ***/
.headline04{
    margin: 0 0 50px;
}
.headline04 .headline04__title{
    font-family: var(--font_ja-kakugo);
    font-size: 3.4rem;
    font-weight: bold;
    text-align: center;
    color: var(--color_base);
    letter-spacing: 0.05vw;
}
@media (max-width: 768px){
    .headline04{
        margin: 0 0 40px;
    }
    .headline04 .headline04__title{
        font-size: min(3.2rem, 7.5vw);
        line-height: 1.51;
    }
}



/*** ------------------------------------------------------------------------------ 

visual-page

-----------------------------------------------------------------------------  ***/
.visual-page{
    display: flex;
}
.visual-page .visual-page__text{
    width: 32.5%;
    background: var(--color_base);
    display: flex;
    align-items: center;
    height: 280px;
    position: relative;
}
.visual-page .visual-page__text::after{
    position: absolute;
    left: 0;
    bottom: -80px;
    content: '';
    width: 100%;
    height: 200px;
    background: url("../img/mv-text-bg.svg") no-repeat center bottom / 100% auto;
}
.visual-page .visual-page__text-in{
    position: relative;
    z-index: 1;
    padding: 0 5% 0 10%;
    box-sizing: border-box;
}
.visual-page .visual-page__text .visual-page__en{
    font-family: var(--font_en);
    font-size: min(2.0rem, 2.0vw);
    font-weight: 500;
    color: #fff;
    position: relative;
    line-height: 1.5;
    padding: 0 0 0 35px;
}
.visual-page .visual-page__text .visual-page__en::before{
    position: absolute;
    left: 0;
    top: 13px;
    content: '';
    width: 18px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}
.visual-page .visual-page__text .visual-page__title{
    font-family: var(--font_ja-kakugo);
    font-size: min(3.8rem, 3.0vw);
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    margin: 15px 0 0;
}
.visual-page .visual-page__img{
    width: 67.5%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    height: 280px;
}
@media (max-width: 1600px){
    .visual-page .visual-page__text .visual-page__title{
        font-size: min(3.8rem, 2.25vw);
    }
}
@media (max-width: 1280px){
    .visual-page .visual-page__text{
        width: 40%;
    }
    .visual-page .visual-page__text .visual-page__title{
        font-size: min(3.8rem, 2.75vw);
    }
    .visual-page .visual-page__img{
        width: 60%;
    }   
}
@media (max-width: 768px){
    .visual-page{
        display: block;
    }
    .visual-page .visual-page__text{
        width: 100%;
        height: 100%;
        display: block;
        padding: 30px 0;
    }
    .visual-page .visual-page__text::after{
        content: none;
        /*
        bottom: -26px;
        width: 50%;
        height: 110px;
        background: url("../img/mv-text-bg-sp.svg") no-repeat left bottom / 100% auto;
        */
    }
    .visual-page .visual-page__text-in{
        padding: 0 25px;
    }
    .visual-page .visual-page__text .visual-page__en{
        font-size: 1.8rem;
        padding: 0 0 0 35px;
    }
    .visual-page .visual-page__text .visual-page__title{
        font-size: min(3.3rem, 7.25vw);
        font-weight: 500;
        color: #fff;
        margin: 5px 0 0;
    }
    .visual-page .visual-page__img{
        width: 100%;
        height: 200px;
        position: relative;
    }
    /*
    .visual-page .visual-page__img::before{
        position: absolute;
        left: 0;
        top: -1px;
        z-index: 2;
        content: '';
        width: 60%;
        height: 100%;
        background: url("../img/mv-text-bg-sp.svg") no-repeat left top / 100% auto;
    }
    */
}
@media (max-width: 768px){
    
}


/*** ------------------------------------------------------------------------------ 

topic-pass

-----------------------------------------------------------------------------  ***/
.topic-pass ul{
    display: flex;
    justify-content: flex-end;
    margin: 0 0 0 auto;
}
.topic-pass ul li{
    margin: 10px 0;
    font-size: 1.2rem;
}
.topic-pass ul li:nth-child(3){
    max-width: 400px;
    white-space: nowrap; /* 折り返し無しにする */
    overflow: hidden; /* はみ出た部分を非表示 */
    text-overflow: ellipsis; /* 語尾を3点リーダーに */
}
.topic-pass ul li a{
    line-height: 1.0;
}
.topic-pass ul li::after{
    content: '>';
    margin: 0 5px;
}
.topic-pass ul li:last-child::after{
    content: none;
}
@media (max-width: 1240px){
    .topic-pass ul li:nth-child(3){
        max-width: 300px;
    }
}
@media (max-width: 1100px){
    .topic-pass ul li:nth-child(3){
        max-width: 200px;
    }
}
@media (max-width: 1000px){
    .topic-pass ul li:nth-child(3){
        max-width: 100px;
    }
}
@media (max-width: 768px){
    .topic-pass ul{
        justify-content: flex-start;
        flex-wrap: wrap;
        margin: 5px auto 0;
    }
    .topic-pass ul li{
        margin: 5px 0;
    }
    .topic-pass ul li:nth-child(3){
        max-width: 300px;
    }
}




/*** ------------------------------------------------------------------------------ 

btn-round

-----------------------------------------------------------------------------  ***/
.btn-round a{
    display: block;
    text-align: center;
    max-width: 180px;
    width: 100%;
    border: 1px solid var(--color_base);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.25;
    padding: 12px 40px 12px 10px;
    background: url("../img/icon-arrow01.svg") no-repeat right 25px center #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}
@media (min-width:769px){
    .btn-round a:hover{
        background: url("../img/icon-arrow01-white.svg") no-repeat right 25px center var(--color_base);
        color: #fff;
    }   
}


/*** ------------------------------------------------------------------------------ 

btn-shadow

-----------------------------------------------------------------------------  ***/
.btn-shadow a{
    display: block;
    text-align: center;
    max-width: 248px;
    width: 100%;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.25;
    padding: 12px 10px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}
.btn-shadow a::before{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    content: '';
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 30px;
    border: 2px solid var(--color_base);
    background: #fff;
}
.btn-shadow a::after{
    position: absolute;
    left: 10px;
    bottom: -10px;
    z-index: -2;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: var(--color_green);
    transition: 0.3s;
}
.btn-shadow--email a span{
    position: relative;
}
.btn-shadow--email a span::before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: ;
    height: ;
    background: ;
}
@media (min-width:769px){
    .btn-shadow a:hover::after{
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: -2;
        content: '';
        width: 100%;
        height: 100%;
        border-radius: 30px;
        background: var(--color_green);
    }
}




/*** ------------------------------------------------------------------------------ 

ページ内リンクズレ対策
ページ内リンクズレ対策

-----------------------------------------------------------------------------  ***/
.anchor{
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}
.anchor01{
    display: block;
    padding-top: 167px;
    margin-top: -167px;
}
@media(max-width:768px){
	.anchor01{
		display: block;
		padding-top: 100px;
		margin-top: -100px;
	}
}


/*** ------------------------------------------------------------------------------ 

スクロールアニメーション

-----------------------------------------------------------------------------  ***/
/*----------------------------
scroll_fade ｜フェード出現
----------------------------*/
.scroll_fade {
    transition: 0.8s ease-in-out;
    opacity: 0;
}
.scroll_fade.on {
    opacity: 1.0;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}
.scroll_up.on {
	transform: translateY(0);
	opacity: 1.0;
	/*overflow: hidden;*/
}

.timing02 {transition-delay: .2s;}
.timing03 {transition-delay: .4s;}
.timing04 {transition-delay: .6s;}
.timing05 {transition-delay: .8s;}
.timing06 {transition-delay: 1.0s;}
.timing07 {transition-delay: 1.2s;}
.timing08 {transition-delay: 1.4s;}



/*** ------------------------------------------------------------------------------ 

    タブ切り替え

-----------------------------------------------------------------------------  ***/
.tab-target{}
.tab-target.hide{ display: none;}


/*** ------------------------------------------------------------------------------ 

l-sec-contact

-----------------------------------------------------------------------------  ***/
.l-sec-contact{
    background: #F7FAFC;
    padding: 65px 0 60px;
}
.l-sec-contact .headline02 .headline02__en span{
    position: relative;
}
.l-sec-contact .headline02 .headline02__en span::before{
    position: absolute;
    left: -30px;
    top: -15px;
    content: '';
    width: 28px;
    height: 27px;
    background: url("../img/contact-icon01.svg") no-repeat center center;
}
.l-sec-contact .headline02 .headline02__en span::after{
    position: absolute;
    right: -50px;
    bottom: -5px;
    content: '';
    width: 40px;
    height: 30px;
    background: url("../img/contact-icon02.svg") no-repeat center center;
}

.l-sec-contact .card{
    display: flex;
    justify-content: space-between;
}
.l-sec-contact .card .card__item{
    width: calc(100% / 2 - 20px);
    box-sizing: border-box;
    background: #fff;
    position: relative;
    text-align: center;
    border-radius: 15px;
}
.l-sec-contact .card .card__item--01{
    padding: 40px 7.5% 40px 15%;
}
.l-sec-contact .card .card__item--01 .card__img{
    position: absolute;
    left: 7.5%;
    top: -30px;
}
.l-sec-contact .card .card__item--02{
    padding: 40px 14% 40px 6.5%;
}
.l-sec-contact .card .card__item--02 .card__img{
    position: absolute;
    right: 7.5%;
    top: -30px;
}
.l-sec-contact .card .card__item .card__title{
    font-size: 2.0rem;
    font-weight: bold;
    color: var(--color_base);
}
.l-sec-contact .card .card__item .card__title span{
    font-size: 2.2rem;
}
.l-sec-contact .card .card__item .btn-shadow a{
    max-width: 330px;
    margin: 15px auto 0;
    padding: 12px 20px;
    color: #fff;
    box-sizing: border-box;
    line-height: 1.4;
}
.l-sec-contact .card .card__item--02 .btn-shadow a{
    max-width: 350px;
}
.l-sec-contact .card .card__item--02 .btn-shadow a br{
    display: none;
}
.l-sec-contact .card .card__item .btn-shadow a::before{
    background: var(--color_base);
}

@media(max-width:1163px){
    .l-sec-contact .card .card__item--02 .btn-shadow a br{
        display: block;
    }
    .l-sec-contact .card .card__item--02 .btn-shadow a::before{
        border-radius: 40px;
    }
    .l-sec-contact .card .card__item--02 .btn-shadow a::after{
        border-radius: 40px;
    }
}
@media(max-width:920px){
    .l-sec-contact .card{
        display: block;
    }
    .l-sec-contact .card .card__item{
        width: 100%;
    }
    .l-sec-contact .card .card__item:first-child{
        margin: 0 0 50px;
    }
    .l-sec-contact .card .card__item--01 .card__img{
        width: 55px;
        top: -20px;
    }
    .l-sec-contact .card .card__item--02 .card__img{
        width: 57px;
        top: -20px;
    }
}
@media(max-width:768px){
    .l-sec-contact .card .card__item--01{
        padding: 40px 20px 40px 75px;
    }
    .l-sec-contact .card .card__item--02{
        padding: 40px 75px 40px 20px;
    }
    .l-sec-contact .card .card__item--01 .card__img{
        left: 10px
    }
    .l-sec-contact .card .card__item--02 .card__img{
        right: 10px;
    }
    .l-sec-contact .card .card__item .card__title{
        font-size: 1.7rem;
    }
    .l-sec-contact .card .card__item .card__title span{
        font-size: 1.9rem;
    }
}


/*** ------------------------------------------------------------------------------ 

sec-related

-----------------------------------------------------------------------------  ***/
.l-sec-related{
    padding: 60px 0 45px;
}
.l-sec-related .list{
    display: flex;
    flex-wrap: wrap;
}
.l-sec-related .list .list__item{
    width: calc(91% / 4);
    margin: 0 3% 3% 0;
}
.l-sec-related .list .list__item:nth-child(4n){
    margin: 0 0 3% 0;
}
.l-sec-related .list .list__item a{
    transition: 0.3s;
}
.l-sec-related .list .list__item a img{
    border-radius: 6px;
}
@media (min-width: 769px){
    .l-sec-related .list .list__item a:hover{
        opacity: 0.6;
    }   
}
@media(max-width:768px){
    .l-sec-related .list .list__item{
        width: 48%;
        margin: 0 4% 4% 0;
    }
    .l-sec-related .list .list__item:nth-child(2n){
        margin: 0 0 4% 0;
    }
    .l-sec-related .list .list__item:nth-child(4n){
        margin: 0 0 4% 0;
    }
}




/*** ------------------------------------------------------------------------------ 

paginations

-----------------------------------------------------------------------------  ***/
.paginations{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
.navigation.first .paginations{
    padding-top: 0;
    padding-bottom: 0;
}
.paginations li a{
    border: solid 1px var(--color_black);
    background-color: #fff;
    width: 36px;
    padding: 10px 0;
    box-sizing: border-box;
    border-radius: 3px;
    font-size: clamp(1.2rem,1.3vw,1.4rem);
    font-weight: 500;
    line-height: 1;
    text-align: center;
    display: block;
    margin: 0 10px 10px 0;
    position: relative;
    color: var(--color_black);
    text-decoration: none;
}
.paginations li:first-child a{
    width: auto;
    border-radius: 15px 3px 3px 15px;
    padding: 10px 13px 10px 18px;
}
.paginations li:last-child a{
    width: auto;
    border-radius: 3px 15px 15px 3px;
    padding: 10px 18px 10px 13px;
}
.paginations li.current a,
.paginations li a:hover{
    opacity: 1;
    background-color: var(--main-color);
    color: var(--color_base);
    border: solid 1px  var(--color_base);
}
.paginations li.previous a{
  padding-left: 30px;
}
.paginations li.next a{
  padding-right: 30px;
}
.paginations li.previous a:before,
.paginations li.next a:after{
  content: '';
  display: inline-block;
  font-family: 'Material Icons';
  font-size: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.paginations li.previous a:before{
  content: '\e5cb';
  left: 5px;
}
.paginations li.next a:after{
  content: '\e5cc';
  right: 5px;
}
