﻿@charset "utf-8";
:root {
	--minW: 360;
	--maxW: 1080;
	--FFG: 'Roboto', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	--FFM: Meiryo, sans-serif;
	--FFMaru: "Zen Maru Gothic", sans-serif;
	--slide-dist: 48px; /* スライド距離：お好みで調整 */
	--ease: cubic-bezier(.2,.6,.2,1);
	--dur: 360ms;
	--stage-h: 280px;
	--overlap: 60px;
	--strColor: #0053b5;
	--linkColor: #26499d;
}

/* /////////////////////////////////
▼▼common▼▼
//////////////////////////////////*/
.number-liststyle li{
list-style:decimal;
margin-left: 20px;
}

.disc-liststyle li{
list-style:disc;
margin-left: 20px;
}

.c-anchor-shift{
 margin-top: -200px;
 padding-top: 200px;
}

.c-center{
    text-align:center;
}

.c-left{
    text-align:left;
}

.c-right{
    text-align:right;
}

.c-float-left{
    float:left;
}

.c-float-right{
    float:right;
}

.c-clear-both{
    clear:both;
}

.c-m0a{
margin: 0 auto;
}

.c-m-lr-a{
margin-left: auto;
margin-right: auto;
}

.c-mw1100-l97-ma{
max-width: 1100px;
margin-left: auto;
margin-right: auto;
}

.c-w90-l100{
    width:90%;
}

.c-w80-l100{
    width:80%;
}

.c-w75-l100{
    width:70%;
}

.c-w70-l100{
    width:70%;
}

.c-w67-l100{
    width:60%;
}

.c-w60-l100{
    width:60%;
}

.c-w50-l100{
    width:50%;
}

.c-w40-l100{
    width:40%;
}

.c-w33-l100{
    width:33.33%;
}

.c-w30-l100{
    width:30%;
}

.c-w25-l100{
    width:25%;
}

.c-w20-l100{
    width:20%;
}

.c-w10-l100{
    width:10%;
}

.c-w100-bg-glay{
    width:100%;
    background:#e3e3e3;
}

.c-bg-cream{
    background:#fffaf1;
}

.c-bg-title-glay{
    background-color:#EFEFEF;
    padding:10px 10px;
}

.c-b-b1-red{
    border-bottom:1px solid  #b52b2b;
}

.c-b-b1-black{
    border-bottom:1px solid  #555555;
}

.c-b-b1-glay{
    border-bottom:1px solid #d0d0d0;
}

.c-b-t1-glay{
    border-top:1px solid #d0d0d0;
}

.c-b-b1-white{
    border-bottom:1px solid #ffffff;
}

.c-b-b1-dotted-glay{
    border-bottom:1px dotted #575757;
}

.c-b-t1-red{
    border-top:1px solid  #b52b2b;
}

.c-b-t1-black{
    border-top:1px solid  #555555;
}

.c-box-1-red-p15{
    border:1px solid  #b52b2b;
    padding:15px;
    box-sizing:border-box;
}

.c-img-scale {
    max-width: 400px;
    max-height: 300px;
    overflow: hidden;
}
.c-img-scale img {
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
}
.c-img-scale img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.c-l-off{
    display:block;
}

.c-l-on{
    display:none;
}

.c-l-off-768{
    display:block;
}

.c-l-on-768{
    display:none;
}

/*///////////////////////////////////////
▼▼flex▼▼
///////////////////////////////////////*/
.f{
    display: -webkit-box; /* android */
    display: -webkit-flex; /* safari */
    display: -ms-flexbox; /* IE */
    display: flex;
}

.f-wrap{
    -webkit-box-lines:multiple; /* android */
    -webkit-flex-wrap: wrap; /* Safari */
     -ms-flex-wrap: wrap; /* IE */
    flex-wrap:wrap;
}

.f-l-column-center{
    display: -webkit-box; /* android */
    display: -webkit-flex; /* safari */
    display: -ms-flexbox; /* IE */
    display: flex;
}

.f-l-column-center768{
    display: -webkit-box; /* android */
    display: -webkit-flex; /* safari */
    display: -ms-flexbox; /* IE */
    display: flex;
}

.f-wrap-l-column{
    -webkit-box-lines:multiple; /* android */
    -webkit-flex-wrap: wrap; /* Safari */
     -ms-flex-wrap: wrap; /* IE */
    flex-wrap:wrap;
}

.f-inline{
    display: inline-flex;
}

.f-around{
    -webkit-justify-content:space-around; /* safari */
    -ms-flex-pack:distribute; /* IE */
    justify-content:space-around;
}

.f-between{
    -webkit-box-pack:justify; /* android */   
    -webkit-justify-content:space-between; /* safari */
    -ms-flex-pack:justify; /* IE */
    justify-content:space-between;
}

.f-center{
    -webkit-box-pack:center; /* android */
    -webkit-justify-content:center; /* safari */
    -ms-flex-pack:center; /* IE */
    justify-content:center;
}

.f-end{
    -webkit-box-pack:end ; /* android */   
    -webkit-justify-content:flex-end; /* safari */
    -ms-flex-pack:end; /* IE */
    justify-content:flex-end;
}

.f-wrap-flex-start{
    -webkit-box-lines:multiple; /* android */
    -webkit-flex-wrap: wrap; /* Safari */
     -ms-flex-wrap: wrap; /* IE */
    flex-wrap:wrap;

    -webkit-box-align:flex-start; /* android */
    -webkit-align-items:flex-start; /* safari */
    -ms-flex-align:flex-start; /* IE */
    align-items:flex-start;       
}

.f-wrap-center{
    -webkit-box-lines:multiple; /* android */
    -webkit-flex-wrap: wrap; /* Safari */
     -ms-flex-wrap: wrap; /* IE */
    flex-wrap:wrap;

    -webkit-box-pack:center; /* android */
    -webkit-justify-content:center; /* safari */
    -ms-flex-pack:center; /* IE */
    justify-content:center;   
}

.f-colume-center{
    -webkit-box-orient:vertical; /* android */
    -webkit-flex-direction:column; /* safari */
    -ms-flex-direction:column; /* IE */
    flex-direction:column;

    -webkit-box-align:center; /* android */
    -webkit-align-items:center; /* safari */
    -ms-flex-align:center; /* IE */
    align-items:center;   
}

.f-reverse-around{
    -webkit-box-direction:row-reverse;
    -moz-box-direction:row-reverse;
    -webkit-flex-direction:row-reverse;
    -moz-flex-direction:row-reverse;
    flex-direction:row-reverse;

    -webkit-justify-content:space-around; /* safari */
    -ms-flex-pack:distribute; /* IE */
    justify-content:space-around;
}

.f-reverse-between{
    -webkit-box-direction:row-reverse;
    -moz-box-direction:row-reverse;
    -webkit-flex-direction:row-reverse;
    -moz-flex-direction:row-reverse;
    flex-direction:row-reverse;

    -webkit-box-pack:justify; /* android */   
    -webkit-justify-content:space-between; /* safari */
    -ms-flex-pack:justify; /* IE */
    justify-content:space-between;
}

.f-alignitem-center{
    -webkit-box-align:center; /* android */
    -webkit-align-items:center; /* safari */
    -ms-flex-align:center; /* IE */
    align-items:center;  
}




/* /////////////////////////////////
▼▼テーブル▼▼
//////////////////////////////////*/

table.care{
	width:98%;
	margin:0 auto;
	text-align:center;
	border-collapse: collapse;
}

table.care th{
	border: #CBCBCB 1px solid;
 background-color:#f3f3f3;
	padding:15px 0;
	text-align:center;
	vertical-align: middle;
	letter-spacing: 3px;
}



table.care td{
	background-color:#ffffff;
	border: #CBCBCB 1px solid;
	padding:5px 15px;
	vertical-align: middle;
	width: 33%;
}

table.company {
	--maxF: 16;
	--minF: 12;
	width:100%;
	margin: 0 auto;
	text-align: center;
	border-collapse: collapse;
	font-size: clamp( calc(var(--minF) * 1px), calc( (var(--minF) * 1px) + (var(--maxF) - var(--minF)) * ((100vw - (var(--minW) * 1px)) / (var(--maxW) - var(--minW))) ), calc(var(--maxF) * 1px) );
}

	table.company th {
		--maxF: 3;
		--minF: 0;
		border: #CBCBCB 1px solid;
		background-color: #f3f3f3;
		padding: 15px 5px;
		text-align: center;
		vertical-align: middle;
		letter-spacing: clamp( calc(var(--minF) * 1px), calc( (var(--minF) * 1px) + (var(--maxF) - var(--minF)) * ((100vw - (var(--minW) * 1px)) / (var(--maxW) - var(--minW))) ), calc(var(--maxF) * 1px) );
		width: 30%;
	}

table.company td{
	background-color:#ffffff;
	border: #CBCBCB 1px solid;
	padding:5px 15px;
	vertical-align: middle;
	width: 70%;
	text-align:left;
}

table.company2 {
	--maxF: 16;
	--minF: 12;
	width: 98%;
	margin: 0 auto;
	text-align: center;
	border-collapse: collapse;
	font-size: clamp( calc(var(--minF) * 1px), calc( (var(--minF) * 1px) + (var(--maxF) - var(--minF)) * ((100vw - (var(--minW) * 1px)) / (var(--maxW) - var(--minW))) ), calc(var(--maxF) * 1px) );
}

table.company2 th{
	border: #CBCBCB 1px solid;
 background-color:#f3f3f3;
	padding:15px 0;
	text-align:center;
	vertical-align: middle;
	letter-spacing: 3px;
}



table.company2 td{
	background-color:#ffffff;
	border: #CBCBCB 1px solid;
	padding:5px 15px;
	vertical-align: middle;
	width: 33%;
}


table.form{
	width:98%;
	margin:0 auto;
	text-align:center;
}

table.form th{
	border-bottom: #CBCBCB 1px solid;
 background-color:#f3f3f3;
	padding:15px 0;
	text-align:center;
	vertical-align: middle;
	letter-spacing: 3px;
}

table.form td{
	background-color:#ffffff;
	border-bottom: #CBCBCB 1px solid;
	padding:5px 15px;
	vertical-align: middle;
}



#btn{
	position:relative;
	float:left;
	left:40%;
	padding-top:10px;

}

#btn p{
	float:left;
	padding-left:40px;
	position:relative;
	left:-50%;
}

input[type="text"], textarea{
vertical-align:middle;
max-width:90%;
line-height:1.5;
height:30px;
padding:1px 5px;
border:1px solid #d4d4d7;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
font-size:14px;
color:#666666;
background:#fcfcfc;
}

textarea{
height:auto;
line-height:1.5;
}

/* /////////////////////////////////
▼▼font▼▼
//////////////////////////////////*/
.fs-mincho{
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

.fs-gothic{
font-family: "メイリオ", "Meiryo", "Century Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", "Arial", "sans-serif";
}

.fs-bold{
	font-weight:bold;
}

.fs-red{
	color:#D82528;
}

.fs-black{
	color:#000000;
}

.fs-white{
	color:#ffffff;
}

.fs-blue{
	color:#26499d
}

.fs-green{
	color:#229C2C;
}

.fs-gray{
	color:#515151;
}

.fs-brown{
	color:#8F4243;
}

.fs-yellow{
	color:#F9F812;
}

.fs-lh13{
line-height: 1.3;
}

.fs-lh15{
line-height: 1.5;
}

.fs-lh18{
line-height: 1.8;
}

.fs-lh20{
line-height: 2.0;
}

.fs-lh23{
line-height: 2.3;
}

.fs-lh25{
line-height: 2.5;
}

.fs-lh30{
line-height: 3.0;
}

.fs-10{
	font-size:10px;
	font-size: 1.0rem;
}

.fs-11{
	font-size:11px;
	font-size: 1.1rem;
	}

.fs-12{
	font-size:12px;
	font-size: 1.2rem;
	}

.fs-13{
	font-size:13px;
 font-size: 1.3rem;
}

.fs-14{
	font-size:14px;
 font-size: 1.4rem;
}

.fs-15{
	font-size:15px;
 font-size: 1.5rem;
}

.fs-16{
	font-size:16px;
 font-size: 1.6rem;
}

.fs-17{
	font-size:17px;
 font-size: 1.7rem;
}

.fs-18{
	font-size:18px;
 font-size: 1.8rem;
}

.fs-19{
	font-size:19px;
 font-size: 1.9rem;
}

.fs-20{
	font-size:20px;
 font-size: 2.0rem;
}

.fs-21{
	font-size:21px;
 font-size: 2.1rem;
}

.fs-22{
	font-size:22px;
 font-size: 2.2rem;
}

.fs-23{
	font-size:23px;
 font-size: 2.3rem;
}

.fs-24{
	font-size:24px;
 font-size: 2.4rem;
}

.fs-25{
	font-size:25px;
 font-size: 2.5rem;
}

.fs-26{
	font-size:26px;
 font-size: 2.6rem;
}

.fs-27{
	font-size:27px;
 font-size: 2.7rem;
}

.fs-28{
	font-size:28px;
 font-size: 2.8rem;
}

.fs-29{
	font-size:29px;
 font-size: 2.9rem;
}

.fs-30{
	font-size:30px;
 font-size: 3.0rem;
}

.fs-m{
	font-size:25px;
	font-size: 2.5rem;
}

.fs-l{
	font-size:30px;
	font-size: 3.0rem;
}

.fs-ll{
	font-size:35px;
	font-size: 3.5rem;
}

/* /////////////////////////////////
▼▼余白▼▼
//////////////////////////////////*/
/*-----▼左右▼-----*/
.p-lr-10{
	padding-left: 10px;
	padding-right: 10px;
}

.p-lr-20{
	padding-left: 20px;
	padding-right: 20px;
}

.p-lr-30{
	padding-left: 30px;
	padding-right: 30px;
}

.m-lr-3{
	margin-left: 3px;
	margin-right: 3px;
}

.m-lr-10{
	margin-left: 10px;
	margin-right: 10px;
}

.m-lr-20{
	margin-left: 20px;
	margin-right: 20px;
}

.m-lr-30{
	margin-left: 30px;
	margin-right: 30px;
}

.m-lr-10-l2{
margin-left: 10px;
margin-right: 10px;
}

.m-lr5-l0{
margin-left: 5px;
margin-right: 5px;
}

/*-----▼上下▼-----*/
.p-tb-10{
	padding-top: 10px;
	padding-bottom: 10px;
}

.p-tb-20{
	padding-top: 20px;
	padding-bottom: 20px;
}

.p-tb-30{
	padding-top: 30px;
	padding-bottom: 30px;
}

.p-tb-40{
	padding-top: 40px;
	padding-bottom: 40px;
}

.p-tb-50{
	padding-top: 50px;
	padding-bottom: 50px;
}

.p-tb-60{
	padding-top: 60px;
	padding-bottom: 60px;
}

.p-tb-70{
	padding-top: 70px;
	padding-bottom: 70px;
}

.p-tb-80{
	padding-top: 80px;
	padding-bottom: 80px;
}

.m-tb-10{
	margin-top: 10px;
	margin-bottom: 10px;
}

.m-tb-20{
	margin-top: 20px;
	margin-bottom: 20px;
}

.m-tb-30{
	margin-top: 30px;
	margin-bottom: 30px;
}

.m-tb-40{
	margin-top: 40px;
	margin-bottom: 40px;
}

.m-tb-50{
	margin-top: 50px;
	margin-bottom: 50px;
}

.m-tb-60{
	margin-top: 60px;
	margin-bottom: 60px;
}

.m-tb-70{
	margin-top: 70px;
	margin-bottom: 70px;
}

.m-tb-80{
	margin-top: 80px;
	margin-bottom: 80px;
}

/*-----▼左▼-----*/
.p-l10{
	padding-left:10px;
}

.p-l20{
	padding-left:20px;
}

.p-l30{
	padding-left:30px;
}

.m-l10{
	margin-left:10px;
}

.m-l20{
	margin-left:20px;
}

.m-l30{
	margin-left:30px;
}

.m-l10-l0{
margin-left: 10px;
}

/*-----▼右▼-----*/
.p-r10{
	padding-right:10px;
}

.p-r20{
	padding-right:20px;
}

.p-r30{
	padding-right:30px;
}

.m-r10{
	margin-right:10px;
}

.m-r20{
	margin-right:20px;
}

.m-r30{
	margin-right:30px;
}

/*-----▼上▼-----*/
.p-t5{
	padding-top:5px;
}

.p-t10{
	padding-top:10px;
}

.p-t20{
	padding-top:20px;
}

.p-t30{
	padding-top:30px;
}

.p-t40{
	padding-top:40px;
}

.p-t50{
	padding-top:50px;
}

.m-t5{
	margin-top:5px;
}

.m-t10{
	margin-top:10px;
}

.m-t20{
	margin-top:20px;
}

.m-t30{
	margin-top:30px;
}

.m-t40{
	margin-top:40px;
}

.m-t50{
	margin-top:50px;
}

.m-t60{
	margin-top:60px;
}

.m-t70{
	margin-top:70px;
}

.m-t70-l35{
margin-top: 70px;
}

.m-t50-l25{
margin-top: 50px;
}

/*-----▼下▼-----*/
.p-b5{
	padding-bottom:5px;
}

.p-b10{
	padding-bottom:10px;
}

.p-b15{
	padding-bottom:15px;
}

.p-b20{
	padding-bottom:20px;
}

.p-b30{
	padding-bottom:30px;
}

.p-b40{
	padding-bottom:40px;
}

.p-b50{
	padding-bottom:50px;
}

.p-b60{
	padding-bottom:60px;
}

.p-b70{
	padding-bottom:70px;
}

.p-b80{
	padding-bottom:80px;
}

.m-b5{
	margin-bottom:5px;
}

.m-b10{
	margin-bottom:10px;
}

.m-b15{
	margin-bottom:15px;
}

.m-b20{
	margin-bottom:20px;
}

.m-b30{
	margin-bottom:30px;
}

.m-b40{
	margin-bottom:40px;
}

.m-b50{
	margin-bottom:50px;
}

.m-b60{
	margin-bottom:60px;
}

.m-b70{
	margin-bottom:70px;
}

.m-b80{
	margin-bottom:80px;
}

/* /////////////////////////////////
▼▼pagetopスクロール▼▼
//////////////////////////////////*/
#page-top {
    position: fixed;
    bottom: 100px;
    right: 0;
    font-size: 77%;
    z-index: 300;
}
#page-top a {
    background: #666;
    text-decoration: none;
    color: #fff;
    width: 70px;
    padding: 10px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#page-top a:hover {
    text-decoration: none;
    background: #999;
}


/* /////////////////////////////////
▼▼template▼▼
//////////////////////////////////*/
.header-info{
	z-index: 20;
}

.header-info img{
 margin: 0 5px;
}

/*--------topmainimg noslideshow--------*/
.top-mainimg {
	background: url(img/top_mainimg.png) no-repeat;
	background-size:cover;
	background-position: center;
	height:600px; 
	position: relative;
}

.top-mainimg img{
 position: absolute;
	bottom: 20%;
	left: 45%;
}

/*--------topmainimg copy--------*/
.top-mainimg-copy img {
	position: absolute;
 right: 5%; 
 bottom: 10%; 
 /*margin: auto;*/
	max-width: 679px;
	z-index: 1;
}

/*--------otherpagemainimg--------*/
.other-mainimg {
 background: url(img/othermainimg.png) no-repeat;
	background-position: center;
	max-width: 2024px;
	margin: 0 auto 30px;
	height: 250px;
	background-size: cover;
}

.other-mainimg-access {
 background: url(img/othermainimg_access.jpg) no-repeat;
	background-position: center;
	max-width: 2024px;
	margin: 0 auto 30px;
	height: 250px;
	background-size: cover;
}

.other-mainimg-company {
 background: url(img/othermainimg_company.jpg) no-repeat;
	background-position: center;
	max-width: 2024px;
	margin: 0 auto 30px;
	height: 250px;
	background-size: cover;
}

.other-mainimg-privacy {
 background: url(img/othermainimg_privacy.jpg) no-repeat;
	background-position: center;
	max-width: 2024px;
	margin: 0 auto 30px;
	height: 250px;
	background-size: cover;
}

.other-mainimg-works {
 background: url(img/othermainimg_works.jpg) no-repeat;
	background-position: center;
	max-width: 2024px;
	margin: 0 auto 30px;
	height: 250px;
	background-size: cover;
}

.other-mainimg p{
	font-size: 35px;
	font-weight: bold;
	height: 250px;
	color: #271B73;
	text-shadow: 2px 2px 3px #ffffff;
	letter-spacing:3px;
	}
	
/*--------footer--------*/
.footer_wrap {
	max-width: 1100px;
	margin: 0 auto;
}

.footer-navi{
 margin-top: 10px;
}

.footer-navi li{
 margin-bottom: 10px;
	margin-right: 20px;
}

.footer-navi li a:before{
 content:url(img/footer_navi_mark.png);
	position: relative;
	bottom: -2px;
	margin-right: 5px;
	}

.footer-logo{
margin-top: 10px;
margin-left: 10px;
}

.footer-navi-wrap{
margin-top: 10px;
}

.footer_copyright{
margin-top: 15px;
}

/* /////////////////////////////////
▼▼news blog▼▼
//////////////////////////////////*/

.news-box {
	border-bottom: 1px solid #E3E3E3;
	padding-bottom: 15px;
}

.news-day {
background: #2A54C0;
width: 50px;
height: 50px;
text-align: center;
color: #FFf;
padding: 5px;
box-sizing: border-box;
}

.news-text {
	margin-left: 15px;
}

.blog-allbtn {
	width: 100px;
	font-size: 12px;
	background: #191970;
	color: #fff;
	text-align: center;
	padding: 2px 0;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
 border-radius: 10px;
 -webkit-border-radius: 10px;    /* Safari,Google Chrome用 */
 -moz-border-radius: 10px;   /* Firefox用 */	
}

.blog-allbtn a{
color: #fff;
}

.blog-allbtn a:hover{
color: #ccc;
}

.blog-box {
	background:#f6f6f6;
	padding: 10px 10px;
	margin: 5px 7px;
	box-sizing: border-box
}


.blog-day {
	background: #000;
	width: 100px;
	text-align: center;
	color: #fff;
	margin-top: 10px;
}

.blog-cat li {
	background:#191970;
	width: auto;
	color: #fff;
	padding: 0 3px;
	margin-top: 15px;
	display: inline-block;
 margin-right: 5px;
	font-size: 10px;
}

.blog-cat li a{
	color: #fff;
	font-size: 11px;
}

.blog-title {
	font-size: 15px;
	font-weight: bold;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
	color:#191970;
	margin-top: 10px;
}

.blog-title a{
	color: #BD934F;
}

.blog-title-single {
	font-size: 20px;
	font-weight: bold;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
	color:#191970;
}

.blog-text {
	margin-top: 10px;
}

.blog-img {
	text-align: center;
}

.blog-archive-title {
	background:#191970;
	color: #fff;
	padding: 3px 5px;
	text-align: center;
}

.blog-archive li{
 padding: 5px 5px 5px 10px;
	border-bottom: 1px dotted #D9D9D9;
}

.pagenavi {
    margin: 20px 0 0 0;
    text-align: center;
}

/* /////////////////////////////////
▼▼お問い合わせフォーム▼▼
//////////////////////////////////*/
div.wpcf7 { background:#fafafa; border:1px solid #ddd; padding:0px; -moz-border-radius:10px; -khtml-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; margin:0 0 30px 0; }
div.wpcf7 p { padding:20px 20px 20px; margin:0; font-size:20px; border-bottom:1px dotted #848484; }
div.wpcf7 p:last-child{border:none;}
div.wpcf7 input, .wpcf7 textarea { border:1px solid #ccc; padding:8px; font-size:14px; }
div.wpcf7 textarea { width:97.5%; height:300px; }
div.wpcf7 input.wpcf7-submit {
   cursor:pointer; color:#fff; font-weight:bold; font-size:14px; width:200px; height:45px; margin:0 auto; display:block;
   -moz-border-radius:5px; -khtml-border-radius:5px; -webkit-border-radius:5px; border-radius:5px;
   background:#333; box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5), inset 0px 32px 0px -12px #808080; border:1px solid #666;
}
div.wpcf7 input.wpcf7-submit:hover { background:#006080; box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5), inset 0px 32px 0px -12px #007ea8; border:1px solid #006080; }
.wpcf7 input.wpcf7-submit:active { box-shadow:none; bottom:-2px; position:relative; }
.wpcf7 input:focus, .wpcf7 textarea:focus { border:1px solid #009de1; }
.wpcf7-captchac { border:1px solid #ccc; }


/* エラー個所をわかりやすく表示 */
.wpcf7 .wpcf7-not-valid { background: #ffb6c1; }
.wpcf7 span.wpcf7-not-valid-tip {font-size: 80%;}
.wpcf7 .wpcf7-response-output {margin: 10px 0 0; padding: 8px 35px 8px 14px; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }
.wpcf7 .wpcf7-validation-errors {color: #B94A48; background-color: #F2DEDE; border: 1px solid #EED3D7; font-size:14px;}
.wpcf7 .wpcf7-mail-sent-ok {color: #3A87AD; background-color: #D9EDF7; border: 1px solid #BCE8F1; font-size:14px;}

/* 必須赤色表示 */
.wpcf7 .required { color: #f00;}
/* 任意緑色表示 */
.wpcf7 .any{ color: #080;}

/* /////////////////////////////////
▼▼original▼▼
//////////////////////////////////*/
/*--------design--------*/
.sample12 {
	width:			500px;
	height:			auto;
	overflow:		hidden;
	position:		relative;
	margin: 0 auto;
}

.sample12 .caption {
	width:			100%;
	height:			100%;
	visibility:		hidden;	/* 文字を表示しない */
	font-size:		130%;
	color:			#fff;
	top:			0;
	left:			0;
	position:		absolute;
	text-align:		center;
	-webkit-transition:	all 0.4s step-end;
	transition:		all 0.4s step-end;
}
.sample12:hover .caption {
	visibility:		visible;	/* 文字を表示する */
}
.sample12 .caption p {
	font-size:		130%;
	padding-top:		30%;
	color:			#fff;
	opacity:		0;	/* ホバーが解除された時すぐ消えるように、文字を表示しない */
}
.sample12:hover .caption p {
	opacity:		1;	/* 文字を表示する */
	font-weight: bold;
}
.sample12 .mask1, .sample12 .mask2 {
	width:			100%;
	height:			50%;	/* 高さは半部のサイズ */
	position:		absolute;
	left:			0;
	background-color:	rgba(0,0,0,0.4);
	-webkit-transition:	all 0.4s ease;	
	transition:		all 0.4s ease;
}
.sample12 .mask1 {
	top:			-50%;	/* 枠の上に置いて表示させない */
}
.sample12:hover .mask1 {
	top:			0;	/* 下にずらして表示する */
}
.sample12 .mask2 {
	bottom:			-50%;	/* 枠の下に置いて表示させない */
}
.sample12:hover .mask2 {
	bottom:			0;	/* 上にずらして表示する */
}

.title-r-line{
    height:1px;
    width:100%;
    position:relative;
    background: #333333;
}

.title-r-line p {
    letter-spacing: 2px;
    background: #FFFFFF;
    margin-top: -11px;
    position: absolute;
    left: 0px;
    top: 50%;
    line-height: 22px;
    padding-right: 10px;
}

/*--------common--------*/
.h2-title {
font-size: 35px;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
color: #2A54C0;
text-align: center;
margin-top: 70px;
padding-bottom: 7px;
border-bottom: 3px solid #2A54C0;
font-weight: bold;
line-height: 1.2;
}

.h2-other-title{
font-size: 25px;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
color:#2DA07F;
margin-top: 70px;
padding-bottom: 7px;
border-bottom: 2px solid #2DA07F;
font-weight: bold;
line-height: 1.2;
}

.h3-oher-subtitle {
	--minTF: 18;
	--maxTF: 22;
	--minLH: 160;
	--maxLH: 180;
	--minP: 10;
	--maxP: 20;
	color: var(--strColor);
	font-weight: 700;
	font-size: clamp( calc(var(--minTF) * 1px), calc( (var(--minTF) * 1px) + (var(--maxTF) - var(--minTF)) * ((100vw - (var(--minW) * 1px)) / (var(--maxW) - var(--minW))) ), calc(var(--maxTF) * 1px) );
	line-height: clamp(calc(var(--minLH) * 1%), calc((var(--minLH) * 1%) + (var(--maxLH) - var(--minLH)) * ((100vw - (var(--minW) * 1%)) / (var(--maxW) - var(--minW)))), calc(var(--maxLH) * 1%));
	padding-top: clamp( calc(var(--minP) * 1px), calc( (var(--minP) * 1px) + (var(--maxP) - var(--minP)) * ((100vw - (var(--minW) * 1px)) / (var(--maxW) - var(--minW))) ), calc(var(--maxP) * 1px) );
	padding-bottom: clamp( calc(var(--minP) * 1px), calc( (var(--minP) * 1px) + (var(--maxP) - var(--minP)) * ((100vw - (var(--minW) * 1px)) / (var(--maxW) - var(--minW))) ), calc(var(--maxP) * 1px) );
}
.NO1::before {
	--minF: 20;
	--maxF: 24;
	position: relative;
	font-size: clamp( calc(var(--minF) * 1px), calc( (var(--minF) * 1px) + (var(--maxF) - var(--minF)) * ((100vw - (var(--minW) * 1px)) / (var(--maxW) - var(--minW))) ), calc(var(--maxF) * 1px) );
	content: "1.";
	margin-right: 10px;
	top: 1px;
}
.NO2::before {
	--minF: 20;
	--maxF: 24;
	position: relative;
	font-size: clamp( calc(var(--minF) * 1px), calc( (var(--minF) * 1px) + (var(--maxF) - var(--minF)) * ((100vw - (var(--minW) * 1px)) / (var(--maxW) - var(--minW))) ), calc(var(--maxF) * 1px) );
	content: "2.";
	margin-right: 10px;
	top: 1px;
}
.NO3::before {
	--minF: 20;
	--maxF: 24;
	position: relative;
	font-size: clamp( calc(var(--minF) * 1px), calc( (var(--minF) * 1px) + (var(--maxF) - var(--minF)) * ((100vw - (var(--minW) * 1px)) / (var(--maxW) - var(--minW))) ), calc(var(--maxF) * 1px) );
	content: "3.";
	margin-right: 10px;
	top: 1px;
}
.NO4::before {
	--minF: 20;
	--maxF: 24;
	position: relative;
	font-size: clamp( calc(var(--minF) * 1px), calc( (var(--minF) * 1px) + (var(--maxF) - var(--minF)) * ((100vw - (var(--minW) * 1px)) / (var(--maxW) - var(--minW))) ), calc(var(--maxF) * 1px) );
	content: "4.";
	margin-right: 10px;
	top: 1px;
}
.NO5::before {
	--minF: 20;
	--maxF: 24;
	position: relative;
	font-size: clamp( calc(var(--minF) * 1px), calc( (var(--minF) * 1px) + (var(--maxF) - var(--minF)) * ((100vw - (var(--minW) * 1px)) / (var(--maxW) - var(--minW))) ), calc(var(--maxF) * 1px) );
	content: "5.";
	margin-right: 10px;
	top: 1px;
}
.NO6::before {
	--minF: 20;
	--maxF: 24;
	position: relative;
	font-size: clamp( calc(var(--minF) * 1px), calc( (var(--minF) * 1px) + (var(--maxF) - var(--minF)) * ((100vw - (var(--minW) * 1px)) / (var(--maxW) - var(--minW))) ), calc(var(--maxF) * 1px) );
	content: "6.";
	margin-right: 10px;
	top: 1px;
}


.c-underline{
text-decoration: underline;
}

.occupation {
	display: list-item;
	position: relative;
	width: 100%;
	overflow: hidden;
}
	.occupation li {
		--minTF: 14;
		--maxTF: 16;
		position: relative;
		float: left;
		width: 275px;
		padding: 0 70px 0 10px;
		overflow: hidden;
		list-style: inside !important;
		font-family: var(--FFG);
		font-size: clamp(calc(var(--minTF) * 1px), calc((var(--minTF) * 1px) + (var(--maxTF) - var(--minTF)) * ((100vw - (var(--minW) * 1px)) / (var(--maxW) - var(--minW)))), calc(var(--maxTF) * 1px));
	}
/*--------top--------*/
.nav-style {
background-color: #F0F0F0;
padding-top: 5px;
padding-bottom: 5px;
margin-top: 10px;
}

.nav-style-btm {
background-color: #F0F0F0;
padding-top: 2px;
padding-bottom: 15px;
margin-top: 0;
}

.footer-navitext a{
color: #fff!important;
}

.shousai-btn{
background: #2A54C0;
padding: 5px 2px;
text-align: center;
font-size: 14px;
color: #fff;
width: 180px;
margin-left: auto;
margin-right: auto;
border-radius: 18px;
margin-top: 20px;
}

.shousai-btn a{
color: #fff;
}

/*--------ibs--------*/
.contry-link a{
text-decoration: underline;
color: #25379E;
}

/*--------care--------*/
.care-box{
background: #2D55DB;
max-width: 700px;
font-size: 25px;
padding: 10px 5px;
color: #fff;
margin-left: auto;
margin-right: auto;
text-align: center;
border-radius: 20px;
margin-top: 30px;
}

.care-box2{
border: 2px solid #2D55DB;
max-width: 700px;
padding: 20px 20px;
margin-left: auto;
margin-right: auto;
border-radius: 20px;
margin-top: 30px;
}

/*--------skill--------*/
.skill-box{
border: 1px solid #2A54C0;
padding: 20px 15px;
border-radius: 20px;
box-sizing:border-box;
}

/*--------flow--------*/
.flow-title{
font-size: 16px;
font-weight: bold;
border-bottom: dotted 1px #2A54C0;
padding-bottom: 5px;
}

/*--------companyphoto--------*/
.companyphoto-text{
font-size: 16px;
text-align: center;
margin-top: 10px;
}

/*--------form--------*/
.form-box{
border: 1px solid #2A54C0;
padding: 10px 15px;
border-radius: 20px;
box-sizing:border-box;
max-width: 40%;
margin-top: 20px;
text-align: center;
}



/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*max1200start*/
@media only screen and (max-width: 1200px){
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.c-mw1100-l97-ma{
max-width: 97%;
margin-left: auto;
margin-right: auto;
}
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/
}/*max1200end*/
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/




/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*max1099スタート*/
@media only screen and (max-width: 1099px){
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
#wrapper{
	width:100%;
	margin:179px 0 0 0;
}

.top-mainimg {
 height: 300px;
}

.top-mainimg img{
 left: 0;
}

.sample12 {
	width:			97%;
	height:			auto;
	overflow:		hidden;
	position:		relative;
}

/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/
}/*max1099end*/
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/




/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*min1099スタート*/
@media only screen and (min-width: 1099px){
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.h_logo{
margin-left: 20px;
}
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/
}/*min1099end*/
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/




/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*min768スタート*/
@media only screen and (min-width: 768px){
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/

.c-chenge-pc{
display: block;
max-width:1100px;
margin:0 auto;
}

.c-chenge-sp{
display: none;
}

/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/
}/*min768end*/
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/



/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*max768スタート*/
@media only screen and (max-width: 768px){
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
#wrapper{
width: 100%;
margin-top: 168px;
margin-right: 0;
margin-left: 0;
margin-bottom: 0;
}

nav p{
display: none;
}

  .mean-nav .mask {
    background: rgba(0,0,0,.6);
    top: 84px;
    left: 0;
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100vh;
    opacity: 1;
    display: none;
  }


  #gNav .nav {
    overflow-y: auto;
    height: 100vh;
    z-index: 2;
  }
  .mean-nav .container {
    padding: 0;
  }
  .nav .sub-menu li:last-child {
    border-bottom: none;
  }
  .nav li .fa {
    display: none;
  }



.top-mainimg-copy img {
	position: absolute;
 right: 5%; 
 bottom: 5%; 
 /*margin: auto;*/
	max-width: 50%;
	z-index: 1;
}




.c-l-off-768{
    display:none;
}

.c-l-on-768{
    display:block;
}

.f-l-column-center768{
    -webkit-box-orient:vertical; /* android */
    -webkit-flex-direction:column; /* safari */
    -ms-flex-direction:column; /* IE */
    flex-direction:column;
                
    -webkit-box-pack:center; /* android */
    -webkit-justify-content:center; /* safari */
    -ms-flex-pack:center; /* IE */
    justify-content:center;   
}

.f-l-wrap-center768{
    -webkit-box-lines:multiple; /* android */
    -webkit-flex-wrap: wrap; /* Safari */
     -ms-flex-wrap: wrap; /* IE */
    flex-wrap:wrap;

    -webkit-box-pack:center; /* android */
    -webkit-justify-content:center; /* safari */
    -ms-flex-pack:center; /* IE */
    justify-content:center;   
}

.blog-box {
	background:#f6f6f6;
	padding: 10px 5px;
	margin: 15px 5px;
}

.fs-l11{
font-size: 11px;
}

.form-box{
border: 1px solid #2A54C0;
padding: 10px 15px;
border-radius: 20px;
box-sizing:border-box;
max-width: 80%;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
text-align: center;
}

.c-l-center768{
text-align: center;
}


/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/
}/*max768end*/
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/




/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*min767スタート*/
@media only screen and (min-width: 767px){
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
 
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/
}/*min767end*/
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/



/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*max767スタート*/
@media only screen and (max-width: 767px){
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/

	
		.header-info{
position: absolute;
right: 5px;
top: 12px;
z-index: 20;
}

  .h_logo {
    width: 289px;
    position: absolute;
    top: 15px;
    left: 10px;
  }
		  .h_logo img {
    margin: 0 0 0 20px;
				width: 50%;
  }

.c-chenge-pc{
display: none;
}

.c-chenge-sp{
display: block;
}

.s-right2-text {
  top: 20%;
  font-size: 30px;
		text-shadow: 1px 1px 2px #000000;
}

.s-right2-sub {
  top: 45%;
  font-size: 18px;
		text-shadow: 1px 1px 2px #000000;
		line-height: 1.1;
}

.other-mainimg{
 height: 150px;
}

.other-mainimg p{
height: 150px;
font-size: 28px;
}


.header-info img{
 margin: 0 2px;
}

.footer-logo{
margin-top: 10px;
margin-left: 0;
text-align: center;
}

.footer-navi-wrap{
margin-top: 10px;
margin-left: 20px;
}

.footer_copyright{
margin-top: 15px;
text-align: center;
}

.c-w10-l100, .c-w20-l100, .c-w25-l100, .c-w30-l100, .c-w33-l100, .c-w40-l100, .c-w50-l100, .c-w60-l100, .c-w67-l100, .c-w70-l100, .c-w75-l100, .c-w80-l100, .c-w90-l100{
width: 100%;
}

.c-l-w90{
    width: 90%;
}

.c-l-w85{
    width: 85%;
}

.c-l-off{
    display:none;
}

.c-l-on{
    display:block;
}

.c-l-left{
text-align: left;
}

.c-l-center{
text-align: center;
}

.f-l-column-center{
    -webkit-box-orient:vertical; /* android */
    -webkit-flex-direction:column; /* safari */
    -ms-flex-direction:column; /* IE */
    flex-direction:column;
                
    -webkit-box-pack:center; /* android */
    -webkit-justify-content:center; /* safari */
    -ms-flex-pack:center; /* IE */
    justify-content:center;   
}

.f-wrap-l-column{
    -webkit-box-orient:vertical; /* android */
    -webkit-flex-direction:column; /* safari */
    -ms-flex-direction:column; /* IE */
    flex-direction:column;
                
    -webkit-box-pack:center; /* android */
    -webkit-justify-content:center; /* safari */
    -ms-flex-pack:center; /* IE */
    justify-content:center;   
}

.f-l-wrap-center{
    -webkit-box-lines:multiple; /* android */
    -webkit-flex-wrap: wrap; /* Safari */
     -ms-flex-wrap: wrap; /* IE */
    flex-wrap:wrap;

    -webkit-box-pack:center; /* android */
    -webkit-justify-content:center; /* safari */
    -ms-flex-pack:center; /* IE */
    justify-content:center;   
}

table.form th{
	width: 98%;
}

table.form td{
	width: 98%;
}

table.form th{
display: block;
text-align: left!important;
}

table.form td{
display: block;
text-align: left!important;
}

table.form td::before{
    content: attr(label);
}

table.care th{
	width: 30%;
}

table.care td{
	width: 33%;
}



.m-lr-10-l2{
margin-left: 2px;
margin-right: 2px;
}

.m-t70-l35{
margin-top: 35px;
}

.m-t50-l25{
margin-top: 25px;
}

.m-l-t10{
	margin-top:10px;
}

.m-l-t20{
	margin-top:20px;
}

.m-l-t30{
	margin-top:30px;
}

.m-l-b10{
	margin-bottom:10px;
}

.m-l-b20{
	margin-bottom:20px;
}

.m-l-b30{
	margin-bottom:30px;
}

.m-l-tb-10{
	margin-top: 10px;
	margin-bottom: 10px
}

.m-l-tb-20{
	margin-top: 20px;
	margin-bottom: 20px
}

.m-l-tb-30{
	margin-top: 30px;
	margin-bottom: 30px
}

.p-l-tb-10{
 padding-top: 10px;
	padding-bottom: 10px;
}

.p-l-tb-20{
 padding-top: 20px;
	padding-bottom: 20px;
}

.m-l10-l0{
margin-left: 0;
}

.p-l-tb-30{
 padding-top: 30px;
	padding-bottom: 30px;
}

.news-day {
	width: 50px;
	height: 50px;
	text-align: center;
	color: #FFf;
	padding: 1px;
	box-sizing: border-box;
}

.news-text {
	margin-left: 0;
	margin-top: 10px;
}

.h2-title {
	font-size: 20px;
	text-align: center;
	margin-top: 30px;
	padding-bottom: 5px;
}

.shousai-btn{
background: #2A54C0;
padding: 3px 2px;
text-align: center;
font-size: 12px;
color: #fff;
width: 130px;
margin-left: auto;
margin-right: auto;
border-radius: 18px;
margin-top: 20px;
}

		.h2-other-title{
		font-size: 18px;
		border-bottom: 1px solid #2DA07F;
		}
		

.m-lr5-l0{
margin-left: 0;
margin-right: 0;
}


/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/
}/*max767end*/
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/



/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*max450スタート*/
@media only screen and (max-width: 450px){
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
  .h_logo {
    width: 55%;
    position: absolute;
    top: 15px;
    left: -10px;
  }
		
		 .h_logo img {
    margin: 0 0 0 20px;
				width: 60%;
  }
		
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/
}/*max450end*/
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/




/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*max375スタート*/
@media only screen and (max-width: 375px){
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.fs-m{
	font-size:20px;
	font-size: 2.0rem;
	}
	
	.fs-l{
	font-size:25px;
	font-size: 2.5rem;
}

.fs-ll{
	font-size:28px;
	font-size: 2.8rem;
}
	
.fs-l18{
	font-size:18px !important;
	font-size: 1.8rem;
}

.fs-l19{
	font-size:19px !important;
	font-size: 1.9rem;
}

.fs-l20{
	font-size:20px !important;
	font-size: 2.0rem;
}

.fs-l21{
	font-size:21px !important;
	font-size: 2.1rem;
}

.fs-l22{
	font-size:22px !important;
	font-size: 2.2rem;
}

.fs-l23{
	font-size:23px !important;
	font-size: 2.3rem;
}

.fs-l24{
	font-size:24px !important;
	font-size: 2.4rem;
}

.fs-l25{
	font-size:25px !important;
	font-size: 2.5rem;
}

/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/
}/*max375end*/
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/



