@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,600;0,800;1,600&display=swap');


/* ========================================================
	template.css => テンプレート用CSS
======================================================== */
html,body{
    width: 100%;
    overflow-x: hidden;
}
html {
	font-size: 62.5%;
}
body {
	background-color: #fff;
	font-size: 10px;
	font-size: 1rem;
	line-height: 1.7;
	color: #666666;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ","Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", serif;
    font-weight: 500;
	-webkit-text-size-adjust: 100%;
}
b
table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 1.7;
}
a {
	text-decoration: none;
	-webkit-transition: color 0.2s, background-color 0.2s, background-image 0.2s, border 0.2s, opacity 0.2s;
	-o-transition: color 0.2s, background-color 0.2s, background-image 0.2s, border 0.2s, opacity 0.2s;
	transition: color 0.2s, background-color 0.2s, background-image 0.2s, border 0.2s, opacity 0.2s;
	color: #666666;
    outline:none;
}

label {
	cursor: pointer;
}
input, select, textarea, button {
	margin: 0;
	vertical-align: middle;
	font-family: inherit;
	outline: none;
	font-size: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

button {
	cursor: pointer;
}
iframe {
	vertical-align: middle;
}
@media screen and (max-width: 768px) {
	img {
		max-width: 100%;
		height: auto;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	iframe {
		max-width: 100%;
		height: 200px;
	}
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.font-min {
	font-family: "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN",
		YuMincho, serif;
}

/* pc / tab / sp
============================================================================================================ */
.pcs,
.tab,
.sp {
	display: none !important;
}
@media screen and (max-width: 960px) {
    .pcs {
        display: block!important;
    }
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
	.tab {
		display: block !important;
	}
    .sp {
		display: block !important;
	}
	img.tab, span.tab, br.tab, em.tab, strong.tab {
		display: inline !important;
	}
}
@media screen and (max-width: 375px) {
	img.sp, spsan.sp, br.sp, em.sp, strong.sp {
		display: inline !important;
	}
}


/* sp
============================================================================================================ */
@media screen and (max-width: 768px) {
	*[data-label] img {
		display: none;
	}
	*[data-label]:before {
		content: attr(data-label);
	}
	*[data-label-r]:after {
		content: attr(data-label-r);
	}
}


/* w
============================================================================================================ */
.w {
	position: relative;
	display: block;
	width: 1000px;
	margin: 0 auto;
	padding: 0 10px;
}
.w1000 {
    position: relative;
    display: block;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.w900 {
    position: relative;
    display: block;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.w800 {
    position: relative;
    display: block;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.w_side {
    background: #fff;
    margin-right:3vw;
    margin-left: 3vw;
}
.mw {
	min-width: 1000px;
}
.w:after,
.mw:after {
	content: "."; display: block; height: 0; clear: both; visibility: hidden; line-height: 0; overflow: hidden;
}
@media screen and (max-width: 1200px) {
    .w1000 {
        width: auto;
        margin-right:5vw;
        margin-left: 5vw;
    }
}
@media screen and (max-width: 1000px) {
    .w900 {
        width: auto;
        margin-right:5vw;
        margin-left: 5vw;
    }
}
@media screen and (max-width: 900px) {
    .w800 {
        width: auto;
        margin-right:5vw;
        margin-left: 5vw;
    }
}
@media screen and (max-width: 768px) {
    .w {
		width: auto;
		padding: 0;
	}
	#container.sub .w {
		width: auto;
	}
	.mw {
		min-width: 0;
	}
}



/* hv_wh
============================================================================================================ */
a.hv_wh,
button.hv_wh,
a .hv_wh,
.hv_wh a {
	position: relative;
	display: inline-block;
}
a.hv_wh:after,
button.hv_wh:after,
a .hv_wh:after,
.hv_wh a:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(255,255,255,0);
	-webkit-transition: background 0.15s;
	-o-transition: background 0.15s;
	transition: background 0.15s;
	z-index: 3;
}
a.hv_wh:hover:after,
button.hv_wh:hover:after,
a:hover .hv_wh:after,
.hv_wh a:hover:after {
	background-color: rgba(255,255,255,0.3);
}
@media screen and (max-width: 768px) {
	a.hv_wh:after,
	button.hv_wh:after,
	a .hv_wh:after,
	.hv_wh a:after {
		content: none;
	}
}


/* ヘッダー
============================================================================================================ */
#header {
	font-size: 1.4rem;
	width: 100%;
    position: fixed;
	z-index: 100;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    background: #fff;
    height: 80px;
    border-bottom: 1px solid #e5e5e5;
}
#header.fixed {
    box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.15);
}
/* logo */
#header .logo {
	position: absolute;
    left: 3vw;
    top: 27px;
    z-index: 50;
}
#header .logo img {
	width: 375px;
    height: auto;
}
#header nav {
    padding-left: 300px;
}
#header nav > div > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
/*header nav a  {
    transition: all 0.3s ease;
}*/
#header nav a:hover {
    opacity: 0.85;
}
#header nav > div > div > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
#header nav > div > div > ul > li a {
    font-size: 1.6rem;
    font-weight: bold;
    color: #666666;
    padding: 0 1.5vw;
    height: 80px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
#header nav > div > div > ul > li:nth-last-of-type(2) a {
    padding-right: 3vw;
}
#header nav > div > div > ul > li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#header nav ul li {
    position: relative;
}
#header nav ul li:before {
    content:"";
    display: inline-block;
    background: #ea6000;
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
-webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
		transition: all 0.3s ease;
}
#header nav ul li:hover {
    color: #ea6000;
}
#header nav ul li:hover:before {
    height: 5px;
}
#header nav ul li ul {
    display: block;
    visibility: hidden;
    opacity: 0;
}
#header nav ul li.has_snav ul {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 80px;
    min-width: 100%;
    -webkit-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
}
#header nav ul li.has_snav ul:before {
    content:"";
    display: inline-block;
    width: 100%;
    height: -webkit-calc(100% - 18px);
    height: calc(100% - 18px);
    -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
	-ms-box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
	box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
    mix-blend-mode: multiply;
    position: absolute;
    left: 0;
    bottom: 0;
}
#header nav ul li.has_snav ul li:nth-child(2):after {
    content:"";
    display: inline-block;
    width: 17px;
    height: 15px;
    background: #fff;
    background:
      linear-gradient(to bottom right, rgba(255,255,255,0) 50%, #fff 50.5%) no-repeat top left/50% 100%,
      linear-gradient(to bottom left, rgba(255,255,255,0) 50%, #fff 50.5%) no-repeat top right/50% 100%;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    top: -15px;
    z-index: 1;
}
#header nav ul li ul li:before {
    content: none;
}
#header nav ul li.has_snav ul li:nth-child(2):before {
    content: "";
    display: inline-block;
    width: 90px;
    height: 50px;
    background: url("../images/bg_navi_arrow.png") no-repeat;
    background-size: contain;
    mix-blend-mode: multiply;
    position: absolute;
    left: -webkit-calc(50% + 5px);
    left: calc(50% + 5px);
    transform: translatex(-50%);
    top: -15px;
    bottom: inherit;
    z-index: -1;
}
#header nav ul li.has_snav.open ul {
    display: block;
    visibility: visible;
    opacity: 1;
}
#header nav ul li.has_snav ul li {
    position: relative;
    z-index: 1;
}
#header nav ul li.has_snav ul li a {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
    color: #666666;
    background: #fff;
    padding: 0.5em 1em;
    height: auto;
    width: 100%;
    white-space: nowrap;
}
#header nav ul li.has_snav ul li:nth-child(2) {
    margin-top: 18px;
}
#header nav ul li.has_snav ul li:nth-child(2) a {
    padding-top: 1em;
}
#header nav ul li.has_snav ul li:last-child a {
    padding-bottom: 1em;
}
#header nav ul li.has_snav ul li a:hover {
    color: #ea6000;
    opacity: 1 !important;
}
#header nav ul li.has_snav ul li a:before {
    content: none ;
}
#header nav ul li.has_snav ul li a span {
    position: relative;
    padding-left: 20px;
}
#header nav ul li.has_snav ul li a span:before,
#header nav ul li.has_snav ul li a span:after {
    content:"";
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    -webkit-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
}
#header nav ul li.has_snav ul li a span:before {
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #666666;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    left: 0;
}
#header nav ul li.has_snav ul li a span:after {
    width: 3px;
    height: 3px;
    border-top: 1px solid #666666;
    border-right: 1px solid #666666;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 4px;
    margin-top: -1px;
}
#header nav ul li.has_snav ul li a:hover span:before {
    background: #ea6000;
    border: 1px solid #ea6000;
}
#header nav ul li.has_snav ul li a:hover span:after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
_:-ms-lang(x)::-ms-backdrop, #header nav ul li.has_snav ul li a span:before { margin-top: -3px }
_:-ms-lang(x)::-ms-backdrop, #header nav ul li.has_snav ul li a span:after { margin-top: -4px }
#header nav ul li.contact a {
    background: #fabe00;
    padding-left: 3vw;
    padding-right: 3vw;
}
#header nav ul li.contact:before{
    content: none ;
}
#header nav ul li.contact span {
    position: relative;
    padding-left: 40px;
}
#header nav ul li.contact span:before,
#header nav ul li.contact span:after {
    content: "";
    display: inline-block;
    transform: translatey(-50%);
    position: absolute;
    left: 0;
    top: 50%;
-webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
		transition: all 0.3s ease;
}
#header nav ul li.contact span:before {
    width: 28px;
    height: 22px;
    background: url("../images/icon_contact_gray.svg") no-repeat;
    background-size: 100% auto;
}
#header nav ul li.contact span:after {
    width: 28px;
    height: 22px;
    background: url("../images/icon_contact_white.svg") no-repeat;
    background-size: 100% auto;
    opacity: 0;
    overflow: hidden;
}
#header nav ul li.contact a:hover {
    color: #fff;
    background: #ea6000;
}
#header nav ul li.contact a:hover span:before {
    opacity: 0;
    overflow: hidden;
}
#header nav ul li.contact a:hover span:after {
    opacity: 1;
    overflow: auto;
}
@media screen and (max-width: 1300px) {
    #header .logo img {
        width: 27vw;
    }
}
@media screen and (max-width: 1200px) {
    #header nav > div > div > ul > li a {
        padding: 0.8em 1.0vw;
    }
    #header nav > div > div > ul > li:nth-last-of-type(2) a {
        padding-right: 2vw;
    }
    #header nav ul li.contact a {
        padding-left: 2vw;
        padding-right: 2vw;
    }
}
@media screen and (max-width: 1100px) {
    #header nav {
        padding-left: 26vw;
    }
    #header nav > div > div > ul > li a {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 1000px) {
    #header .logo img {
        width: 25vw;
    }
}
@media screen and (max-width: 960px) {
	#header {
		height: 70px;
        display: block;
	}
	#header .logo {
		top: 25px;
        left: 5vw;
        opacity: 1;
	}
    #header .logo img {
        width: 275px;
    }
    #header nav {
        margin-right: 0;
        padding-left: 0;
    }
    #header nav > div > div {
        display: block;
    }
    #header nav > div > div > ul {
        display:block;
        text-align: left;
    }
    #header nav > div > div > ul li {
        display: block;
        border-top: 1px solid #f2f2f2;
    }
    #header nav > div > div > ul > li a {
        display: block;
        text-align: left;
        height: auto;
        padding: 1em 2em;
    }
    #header nav ul li.contact a {
        padding: 1em 2em;
    }
    #header nav > div > div > ul > li:nth-last-of-type(2) a {
        padding-right: 2em;
    }
    #header nav ul li:before,
    #header nav ul li.has_snav ul:before,
    #header nav ul li.has_snav ul li:nth-child(2):before,
    #header nav ul li.has_snav ul li a span:before,
    #header nav ul li.has_snav ul li a span:after{
        content: none;
    }
    #header nav ul li.has_snav ul {
        position: relative;
        top: 0;
        height: 0;
        visibility: hidden;
        opacity: 0 !important;
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s;
    }
    #header nav ul li.has_snav ul li a {
        font-size: 1.5rem;
        padding: 1em 2em;
        font-weight: normal;
    }
    #header nav ul li.has_snav ul li:nth-child(2) {
        margin-top: 0;
    }
    #header nav ul li.has_snav ul.open {
        visibility: visible !important;
        opacity: 1 !important;
        /*margin: 0 0 0.75em;
        padding: 0.5em 0;*/
        margin: 0;
        padding: 0;
    }
    #header nav ul li.has_snav > a {
        position: relative;
        display: block;
        padding-right: 20px;
    }
    #header nav ul li.has_snav > a:before,
    #header nav ul li.has_snav > a:after{
        content: "";
        display: inline-block;
        position: absolute;
        right: 15px;
        top: 2em;
        width: 15px;
        height: 1px;
        background: #666;
        margin-top: -4px;
    }
    #header nav ul li.has_snav > a:after {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    #header nav ul li.has_snav.open > a:after {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}


/* nav ハンバーガー
------------------------------------------------------------- */

#header .nav_btn {
	display: none;
}
@media screen and (max-width: 960px) {
	#header nav {
        width: 100%;
		position: fixed;
		overflow: hidden;
        height: 100%;
		height: -webkit-calc(100% - 50px);
		height: calc(100% - 50px);
		top: 70px;
		/*right: 0;
		width: 0;*/
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
        z-index: 10;
	}
	#header nav > div {
		height: 100%;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	#header nav > div > div {
		height: 100%;
		overflow-y: auto;
		background: #fff;
		pointer-events: auto;
	}

	#header .nav_btn {
		display: block;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 11;
        /*background: #fff;*/
	}
	#header .nav_btn a {
		position: relative;
		display: block;
		width: 70px;
		height: 70px;
		z-index: 2;
	}
	#header .nav_btn:before,
	#header .nav_btn a:before,
	#header .nav_btn a:after {
		content: "";
		position: absolute;
		left: 23px;
		right: 23px;
		top: 50%;
		height: 2px;
		margin-top: -1px;
		background-color: #666;
		-webkit-transition: all 0.2s;
		-o-transition: all 0.2s;
		transition: all 0.2s;
	}
	#header .nav_btn a:before {
		-webkit-transform: translateY(-8px);
		-ms-transform: translateY(-8px);
		-o-transform: translateY(-8px);
		transform: translateY(-8px);
	}
	#header .nav_btn a:after {
		-webkit-transform: translateY(8px);
		-ms-transform: translateY(8px);
		-o-transform: translateY(8px);
		transform: translateY(8px);
	}
	/* open */
	#header.open nav {
		opacity: 1;
		visibility: visible;
		width: 100%;
	}
    #header.open .nav_btn {
        background: none;
	}
	#header.open .nav_btn:before {
		opacity: 0;
	}
	#header.open .nav_btn a:before {
		-webkit-transform: translateY(0) rotate(45deg);
		-ms-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
	}
	#header.open .nav_btn a:after {
		-webkit-transform: translateY(0) rotate(-45deg);
		-ms-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}

}


/* footer
============================================================================================================ */
footer {
	font-size: 1.4rem;
    position: relative;
    border-top: 1px solid #e5e5e5;
}
footer .foot_area {
    padding: 60px 0 35px;
}
footer .foot_area .logo {
    text-align: center;
    margin-bottom: 45px;
}
footer .foot_area .logo img {
	width: 375px;
    height: auto;
}
footer .foot_nav,
footer .foot_nav ul,
footer .foot_bottom_nav {
    display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
footer .foot_nav,
footer .foot_bottom_nav {
     margin-bottom: 25px;
}
footer .foot_nav ul li,
footer .foot_bottom_nav li {
    margin: 0 1em;
}
footer .foot_nav ul li a {
    display: inline-block;
    position: relative;
    font-size: 1.4rem;
    padding-left: 20px;
}
footer .foot_nav ul li a:before,
footer .foot_nav ul li a:after {
    content:"";
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
}
footer .foot_nav ul li a:before {
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #666666;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    left: 0;
    margin-top: -1px;
}
footer .foot_nav ul li a:after {
    width: 3px;
    height: 3px;
    border-top: 1px solid #666666;
    border-right: 1px solid #666666;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 4px;
    margin-top: -2px;
}
_:-ms-lang(x)::-ms-backdrop, footer .foot_nav ul li a:before { margin-top: -3px }
_:-ms-lang(x)::-ms-backdrop, footer .foot_nav ul li a:after { margin-top: -5px }
footer .foot_bottom_nav {
    font-size: 1.2rem;
}
footer .social_list {
    display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
footer .social_list li {
    margin: 0 17px;
}
footer .social_list li.facebook img {
    width: 24px;
    height: auto;
}
footer .social_list li.youtube img {
    width: 28px;
    height: auto;
}
footer .pmark {
    position: absolute;
    right: 0;
    bottom: 20px;
}
footer .foot_bottom {
    border-top: 1px solid #f2f2f2;
    padding: 20px 0;
}
footer .page_top {
    position: absolute;
    right: 3vw;
    top: 0;
}
footer .page_top span {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #478545;
    position: relative;
    padding-top: 65px;
}
footer .page_top span:after {
    content:"";
    display: inline-block;
    width: 2px;
    height: 55px;
    background: #478545;
    position: absolute;
    left: 50%;
    top: 0;
}

@media screen and (max-width: 960px) {
    footer .foot_nav ul li {
        margin: 0 1vw;
    }
}
@media screen and (max-width: 768px) {  
    footer .foot_area {
        padding: 80px 0 25px !important;
    }
    footer .foot_area .logo {
        margin-bottom: 35px;
    }
    footer .foot_area .logo img {
        width: 285px;
    }
    footer .foot_nav {
        margin-bottom: 10px;
        margin-left: 7%;
    }
    footer .foot_nav ul:first-child {
        width: 55%;
        display:block;
    }
    footer .foot_nav ul:nth-child(2) {
        width: 45%;
        display:block;
    }
    footer .foot_nav ul li {
        margin: 0 0 1.5em;
    }
    footer .foot_bottom_nav {
        display: block;
        margin-bottom: 35px;
    }
    footer .foot_bottom_nav li {
        margin: 0 0 1.5em;
        text-align: center;
    }
    footer .pmark {
        position: relative;
        right: 0;
        bottom: 0;
        text-align: center;
        margin-top: 35px;
    }
    footer .pmark img {
        width: 65px;
        height: auto;
    }
    footer .foot_bottom {
        padding: 10px 0;
    }
    footer .page_top {
        position: absolute;
        right: 50%;
        transform: translatex(50%);
        top: 0;
    }
    footer .page_top span {
        -ms-writing-mode: lr-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        padding-top: 35px;
    }
    footer .page_top span:after {
        height: 30px;
    }
}

/* copyright
------------------------------------------------------------- */
.copyright {
	display: block;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.copyright {
		display: block;
		font-size: 1.2rem;
        padding: 0.69em;
		line-height: 1.4;
		text-align: center;
	}
}


/* ===================================================================================================================

	コンテンツ

=================================================================================================================== */

/* topic_path
============================================================================================================ */
.topic_path{
	font-size: 12px;
	font-size: 1.2rem;
	position: relative;
	z-index: 1;
    margin-right:auto;
    margin-left: auto;
}
.topic_path ul{
    margin: 0 auto;
    padding: 1em 0 1.2em;
}
.topic_path li a {
    color: #2B2B2B;
    text-decoration: none!important;
}
.topic_path li{
	display: inline-block;
}
.topic_path li a:after{
	content:">";
	margin-left: 5px;
    color: #2B2B2B;
}
_:-ms-lang(x)::-ms-backdrop, .topic_path ul { padding-top: 1.3em; padding-bottom: 0.7em }
@media screen and (max-width: 768px) {
	.topic_path{
		font-size: 1.2rem;
	}
    .topic_path ul {
        display:block;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
        overflow: auto;
        white-space: nowrap;
        padding: 0.5em 1em;
    }
}

/* コンテナ
============================================================================================================ */
#container {
	position: relative;
	font-size: 16px;
	font-size: 1.6rem;
	display: block;
    padding-top: 80px;
}
section a {
    text-decoration: underline;
    color: #ea6000;
    word-break: break-all;
}
section a:hover {
    text-decoration: none;
}
#container a:hover {
	opacity: 0.8;
}
@media screen and (max-width: 960px) {
	#container {
		padding-top: 70px;
	}
}
@media screen and (max-width: 768px) {
	#container {
		font-size: 1.5rem;
	}
}



/* ===================================================================================================================

	モジュール

=================================================================================================================== */

/* section
============================================================================================================ */
.section + .section,
.section-border + .section,
.section_s + .section {
	margin-top: 40px;
}
@media screen and (max-width: 768px) {
	.section + .section {
		margin-top: 30px;
	}
}

/* title
============================================================================================================ */
.title_l {
    font-size: 3.5rem;
    line-height: 1.4;
    text-align: center;
    color: #666666;
    margin-bottom: 1em;
    font-weight: bold;
}
.title_l span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    display: block;
}
.title_m {
	font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    color: #666666;
    margin-bottom: 2em;
    position: relative;
}
.title_s {
	font-size: 2.0rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    color: #666666;
    padding-bottom: 1em;
	margin-bottom: 1.5em;
    position: relative;
}
.title_s:after {
    content:"";
    display: inline-block;
    width: 50px;
    height: 5px;
    background: #478445;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    bottom: 0;
}
.title_ss {
    font-family: 'Poppins', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ","Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #666666;
    text-align: center;
    margin-bottom: 1.5em;
}
.title_sss {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1.5em;
}
.title_border_g {
    font-size: 1.8rem;
    font-weight: bold;
    color: #478445;
    border-bottom: 1px solid #478445;
    margin-bottom: 1.5em;
}
.title_bg {
    font-size: 1.6rem;
    font-weight: bold;
    background: #f2f2f2;
    padding: 0.5em 1em;
    margin-bottom: 1.5em;
}
.title_line {
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1.5;
    color: #478445;
    margin-bottom: 1.5em;
    padding: 0.5em 0 0.5em 40px;
    border-bottom: 1px solid #478445;
    position: relative;
}
.title_line:before {
    content:"";
    display: inline-block;
    width: 25px;
    height: 5px;
    background: #478445;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
}
.title_dot {
    font-size: 1.6rem;
    font-weight: bold;
    position: relative;
    padding-left: 1.2em;
}
.title_dot:before {
    content:"●";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0.05em;
}
.catch {
    font-size: 1.6rem;
    font-weight: normal;
    text-align: center;
}
_:-ms-lang(x)::-ms-backdrop, .title_bg { padding-top: 0.7em; padding-bottom: 0.2em }
@media screen and (max-width: 768px) {
	.title_l {
		font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1em;
	}
    .title_l span {
        font-size: 1.5rem;
    }
	.title_m {
		font-size: 2.4rem;
        text-align: left;
        margin-bottom: 1em;
	}
	.title_s {
		font-size: 2.0rem;
	}
    .title_ss {
        font-size: 1.8rem;
        margin-bottom: 1em;
    }
    .title_ss.title_ss_en {
        font-size: 1.5rem;
    }
    .title_sss {
        font-size: 1.6rem;
        margin-bottom: 1em;
    }
    .title_bg {
        font-size: 1.5rem;
    }
    .title_line {
        padding: 0.5em 0 0.5em 35px;
        margin-bottom: 1em;
    }
    .title_line:before {
        width: 23px;
    }
    .title_dot {
        font-size: 1.5rem;
        margin-bottom: 1em;
    }
    .catch {
        font-size: 1.5rem;
        text-align: left;
    }
}


/* table
============================================================================================================ */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
table.basic {
	line-height: 1.6;
	table-layout: fixed;
    border: 2px solid #fff;
}
table.basic th,
table.basic td {
	padding: 1em 1em;
	word-wrap:break-word;
    border: 2px solid #fff;
}
_:-ms-lang(x)::-ms-backdrop, table.basic th { padding-top: 1.0em; padding-bottom: 0.6em }
_:-ms-lang(x)::-ms-backdrop, table.basic td { padding-top: 1.0em; padding-bottom: 0.6em }
table.basic th {
    font-weight: bold;
	background:#EFDCF8;
}
table.basic td {
	background:#FAF3FD;
}
table.basic a {
    text-decoration: underline;
}
table.basic a:hover{
    text-decoration: none;
}
table.basic.th_center th {
	text-align: center;
}
table.basic.td_center td {
	text-align: center;
}
table.basic.td_right td {
	text-align: right;
}
table.basic.th_nowrap th {
    white-space: nowrap;
}
table.basic.td_nowrap td {
    white-space: nowrap;
}
table.basic.td_right td.tac {
    text-align: center;
}
table.basic.td_center td.tal {
    text-align: left;
}
table.table_line th,
table.table_line td {
    border-top: 1px solid #666; 
    padding: 1em;
}
table.table_line tr:first-child th,
table.table_line tr:first-child td {
    border-top: none;  
}
table.w100 {
    width: 100%;
}
table.table_line th {
    vertical-align: top;
}
table.th_w10 tr th:first-child,
table.th_w10 tr td:first-child{
    width: 10%;
}
table.th_w15 tr th:first-child,
table.th_w15 tr td:first-child{
    width: 15%;
}
table.th_w20 tr th:first-child,
table.th_w20 tr td:first-child{
    width: 20%;
}
table.th_w25 tr th:first-child,
table.th_w25 tr td:first-child{
    width: 25%;
}
table.th_w30 tr th:first-child,
table.th_w30 tr td:first-child{
    width: 30%;
}
table.th_w35 tr th:first-child,
table.th_w35 tr td:first-child{
    width: 35%;
}
table.th_w40 tr th:first-child,
table.th_w40 tr td:first-child{
    width: 40%;
}
table.th_w50 tr th:first-child,
table.th_w50 tr td:first-child{
    width: 50%;
}

table.border_none td,
table.border_none th{
	padding-bottom: 20px;
}
table.basic.border_c th,
table.basic.border_c td{
	border: 1px solid #231815 !important;
}

table.form {
	width: 100%;
	line-height: 1.6;
	table-layout: fixed;
}
table.form th,
table.form td {
	padding: 1em 0;
	word-wrap:break-word;
}
table.form th {
    width: 35%;
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 0.2em;
    font-weight: bold;
    color: #444;
}
table.form td {
    font-size: 1.7rem;
}
_:-ms-lang(x)::-ms-backdrop, table.form th { padding-top: 0.2em; padding-bottom: 0em }
table.form tr:first-child th {
    margin-top: 0;
}
table.form span.req {
    font-size: 1.6rem;
    color: #BB0000;
    margin-left: 0.5em;
}
.contact_top {
    font-size: 1.5rem;
}
.contact_top span.req {
    font-size: 1.8rem;
    color: #BB0000;
    margin-right: 0.5em;
    position: relative;
    top: 0.1em;
}
_:-ms-lang(x)::-ms-backdrop, table.form span.req { padding-top: 0.4em; padding-bottom: 0em }
table.form span.note {
    font-size: 1.3rem;
    color: #dd0000;
    margin-left: 1em;
}
table.form input[type=text],
table.form input[type=email],
table.form input[type=tel],
table.form input[type=url],
table.form select,
table.form textarea {
	width: 100%;
	padding: 0.6em 1em;
	border: 1px solid #CC99FF;
	font-size: 15px;
	font-size: 1.5rem;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
input::placeholder,
textarea::placeholder{
  color: #B2B2B2;
}
input:focus::placeholder,
textarea:focus::placeholder {
    color: transparent;
    transition: .1s;
}
/* Chrome・Safari用 */
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: transparent;
    transition: .1s;
}
/* Firefox18以前用 */
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
    color: transparent;
    transition: .1s;
}
/* Firefox19以上用 */
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    color: transparent;
    transition: .1s;
}
table.form input[type=text]:focus,
table.form input[type=tel]:focus,
table.form input[type=email]:focus,
table.form textarea:focus {
	border: 1px solid #ea6000;
    -webkit-box-shadow: 0px 0px 0 1px #ea6000;
	-moz-box-shadow: 0px 0px 0 1px #ea6000;
	-ms-box-shadow: 0px 0px 0 1px #ea6000;
	box-shadow: 0px 0px 0 1px #ea6000;
}
table.form input.size_l {
	width: 100%;
}
table.form input.size_m {
	width: 50%;
}
table.form input.size_s {
	width: 29%;
}
table.form input.size01 {
	width: 80%;
}
table.form input.size02 {
	width: 150px;
}
table.form input.size03 {
	width: 320px;
}
table.form input.size04 {
	width: 85px;
}
table.form textarea.size_l {
	width: 100%;
	height: 200px;
}
table .w10 {width: 10%;}
table .w15 {width: 15%;}
table .w20 {width: 20%;}
table .w25 {width: 25%;}
table .w30 {width: 30%;}
table .w35 {width: 35%;}
table .w40 {width: 40%;}
table .w45 {width: 45%;}
table .w50 {width: 50%;}

@media screen and (max-width: 768px) {
	table.basic {
		border-width: 2px;
		font-size: 1.4rem;
		line-height: 1.5;
        border: none;
	}
    table.basic.sp_td_center td {
        text-align: center;
    }
    table.sp_table_block th,
    table.sp_table_block td{
      border-top: none;
    }
    table.sp_table_block tbody,
    table.sp_table_block tr,
    table.sp_table_block th,
    table.sp_table_block td {
        display: block;
    }
	/*table.basic th {
		width: 10%;
	}
	table.basic td {
		width: 20%;
	}*/
    table.sp_table_block.th_w10 tr th:first-child,
    table.sp_table_block.th_w15 tr th:first-child,
    table.sp_table_block.th_w20 tr th:first-child,
    table.sp_table_block.th_w25 tr th:first-child,
    table.sp_table_block.th_w30 tr th:first-child,
    table.sp_table_block.th_w35 tr th:first-child,
    table.sp_table_block.th_w40 tr th:first-child,
    table.sp_table_block.th_w50 tr th:first-child,
    table.sp_table_block.th_w15 tr td:first-child,
    table.sp_table_block.th_w10 tr td:first-child,
    table.sp_table_block.th_w20 tr td:first-child,
    table.sp_table_block.th_w25 tr td:first-child,
    table.sp_table_block.th_w30 tr td:first-child,
    table.sp_table_block.th_w35 tr td:first-child,
    table.sp_table_block.th_w40 tr td:first-child,
    table.sp_table_block.th_w50 tr td:first-child {
        width: 100%;
    }

	table.form th,
	table.form td {
		display: block;
		border-right: none;
        padding: 0.3em 0;
	}

    table.form th {
        width: 100%;
        font-size: 1.5rem;
    }
    table.form td {
        font-size: 1.6rem;
    }
    table.form span.req {
        font-size: 1.2rem;
        margin-left: 1em;
    }
    table.form input[type=text],
    table.form input[type=tel],
    table.form select,
    table.form textarea {
        padding: 0.5em 0.75em;
        font-size: 15px;
        font-size: 1.5rem;
    }
    table.form textarea.size_l {
        height: 100px;
    }

    .scroll_table .scroll {
        overflow:auto;
    }
    .scroll_table .scroll table {
            width:100%;
            white-space: nowrap;
            display:block;
    }
    /* scroll */
    .scroll_table .mCSB_horizontal.mCSB_inside > .mCSB_container {
        margin-bottom: 20px !important;
    }
    .scroll_table #mCSB_1_scrollbar_horizontal,
    .scroll_table #mCSB_2_scrollbar_horizontal{
        position: relative;
        height: 10px;
        bottom: 5px;
    }
    .scroll_table #mCSB_1_scrollbar_horizontal:before,
    .scroll_table #mCSB_2_scrollbar_horizontal:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0px;
        border-bottom: 10px solid #F0F0F0;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        z-index:1;
    }
    .scroll_table mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        background-color: #666 !important;
    }
    .scroll_table .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
        width: 100px !important;
    }
    .scroll_table .mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
    .scroll_table .mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
        background-color: #666;
        height: 10px !important;
        top: 0;
        margin: 0 !important;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        opacity: 1.0 !important;
    }
    .scroll_table .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
        height: 10px !important;
    }
    .scroll_table .mCSB_scrollTools{ opacity: 1.0 !important; filter: "alpha(opacity=100)" !important; -ms-filter: "alpha(opacity=100)" !important; }
    .scroll_table .mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
        background-color: #fff !important;
    }
    .scroll_table .mCSB_scrollTools .mCSB_draggerContainer {
        position: relative !important;
    }
    .scroll_table .mCSB_scrollTools {
        position: relative !important;
    }
}

/* dl
============================================================================================================ */

dl.dl_line {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}
dl.dl_line > dt {
    width: 18.9%;
    font-weight: bold;
    text-align: left;
    color: #478445;
    padding: 1.5em 1em;
    border-bottom: 1px solid #e5e5e5;
}
dl.dl_line > dd {
    width: 81.1%;
    padding: 1.5em 0;
    border-bottom: 1px solid #e5e5e5;
}
_:-ms-lang(x)::-ms-backdrop, dl.dl_line > dt  { padding-top: 1.8em; padding-bottom: 1.2em }
_:-ms-lang(x)::-ms-backdrop, dl.dl_line > dd  { padding-top: 1.8em; padding-bottom: 1.2em }

dl.dl_line.dl_line_narrow > dt {
    padding: 0.75em 1em;
}
dl.dl_line.dl_line_narrow > dd {
    padding: 0.75em 0;
}
_:-ms-lang(x)::-ms-backdrop, dl.dl_line.dl_line_narrow > dt  { padding-top: 1.05em; padding-bottom: 0.55em }
_:-ms-lang(x)::-ms-backdrop, dl.dl_line.dl_line_narrow > dd  { padding-top: 1.05em; padding-bottom: 0.55em }

dl.dl_line.dl_line_a_center > dt {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

dl.dl_dt_border {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
dl.dl_dt_border dt {
    width: 6em;
    text-align: center;
    border: 1px solid #666666;
    padding: 0.2em;
}
dl.dl_dt_border dd {
    width: -webkit-calc(100% - 6em);
    width: calc(100% - 6em);
    padding-left: 10px;
}
dl.dl_dt_border.dl_dt_border_w4 dt {
    width: 4em;
    text-align: center;
    border: 1px solid #666666;
    padding: 0.2em;
}
dl.dl_dt_border.dl_dt_border_w4 dd {
    width: -webkit-calc(100% - 4em);
    width: calc(100% - 4em);
}


dl.dl_dt_border + dl.dl_dt_border {
    margin-top: 10px;
}
_:-ms-lang(x)::-ms-backdrop, dl.dl_dt_border dt { padding-top: 0.4em; padding-bottom: 0.1em }
@media screen and (max-width: 768px) {
    dl.dl_line {
        display: block;
    }
    dl.dl_line > dt {
        width: 100%;
        padding: 0.75em 0;
    }
    dl.dl_line > dd {
        width: 100%;
        padding: 0.75em 0;
        border-bottom: none;
        margin-bottom: 0.5em;
    }
    dl.dl_dt_border {
        display: block;
    }
    dl.dl_dt_border dt,
    dl.dl_dt_border.dl_dt_border_w4 dt {
        width: 100%;
    }
    dl.dl_dt_border dd,
    dl.dl_dt_border.dl_dt_border_w4 dd {
        width: 100%;
        margin-top: 1em;
        padding-left: 0;
    }
    dl.dl_dt_border + dl.dl_dt_border {
        margin-top: 7%;
    }
}

/* link
============================================================================================================ */
/*a.blank {
	padding: 3px 26px 3px 0;
	background: url(../images/parts/ico_blank.png) 100% no-repeat;
}
a.pdf {
	padding: 3px 22px 3px 0;
	background: url(../images/parts/ico_pdf.png) 100% no-repeat;
}

@media screen and (max-width: 768px) {
	a.blank {
		background-image: url(../images/parts/ico_blank_sp.png);
		-webkit-background-size: 16px;
		background-size: 16px;
	}
	a.pdf {
		background-image: url(../images/parts/ico_pdf_sp.png);
		-webkit-background-size: 16px;
		background-size: 16px;
	}
}*/



/* li
============================================================================================================ */
/* square
------------------------------------------------------------- */
ul.square > li {
	position: relative;
	padding-left: 1.2em;
}
ul.square > li:before {
	content: "■";
	position: absolute;
	left: 0;
    color: #D3B9F8;
}

/* circle
------------------------------------------------------------- */
ul.circle > li {
	position: relative;
	padding-left: 1.2em;
}
ul.circle > li:before {
	content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    position: absolute;
    left: 0;
    top: 0.5em;
}
ul.circle > li + li {
    margin-top: 0.75em;
}
ul.circle.fz_ss > li:before {
    width: 10px;
    height: 10px;
    top: 0.4em;
}


ul.list_green > li {
	position: relative;
}
ul.list_green > li:before {
	content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #478445;
    position: relative;
    left: 0;
    margin-right: 0.2em;
}
ul.list_green > li span {
    color: #478445;
    font-weight: bold;
}

/* asterisk
------------------------------------------------------------- */
ul.asterisk > li {
	position: relative;
	padding-left: 1em;
	margin-bottom: 5px;
}
ul.asterisk > li:before {
	content: "＊";
	position: absolute;
	left: 0;
}


/* disc
------------------------------------------------------------- */
ul.disc > li {
	position: relative;
	padding-left: 1em;
}
ul.disc > li:before {
	content: "・";
	position: absolute;
	left: 0;
}

/* notes
------------------------------------------------------------- */
ul.notes > li {
	position: relative;
	padding-left: 1em;
}
ul.notes > li:before {
	content: "※";
	position: absolute;
	left: 0;
}

/* decimal
------------------------------------------------------------- */
ol.decimal {
	list-style-type: decimal;
}
ol.decimal > li {
	margin-left: 1.5em;
}

/* parentheses
------------------------------------------------------------- */
ol.parentheses > li {
	position: relative;
	padding-left: 2em;
}
ol.parentheses > li .num {
	position: absolute;
	left: 0;
}

/* number
------------------------------------------------------------- */
ol.number {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}
ol.number ol{
    padding-left: 1em;
}
ol.number li{
    text-indent: -1.3em;
    padding-left: 1.3em;
}
ol.number li:before {
    counter-increment: item;
    content: counter(item)'.';
    font-family: 'Poppins', sans-serif;
    padding-right: .5em;
    font-weight: 600;
}


/* img
============================================================================================================ */
img {
	max-width: 100%;
	height: auto;
}
.ofi {
  object-fit: cover;
  font-family: 'object-fit: cover;'
}
.ofi_contain {
  object-fit: contain;
  font-family: 'object-fit: contain;'
}

/* img.radius
============================================================================================================ */
img.radius {
	border-radius: 50%;
}

/* border_box
============================================================================================================ */
.border_box {
	border: 1px solid #666;
	padding: 3% 4%;
	box-sizing: border-box;
}
.border_p_box {
	border: 1px solid #CC99FF;
	padding: 3% 4%;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
    .border_box {
        padding: 5% 6%;
    }
}


/* border_radius
============================================================================================================ */
.border_radius {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

/* flex
============================================================================================================ */
.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.ai-end {
	-webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.jc-center {
	-webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.jc-space-between{
	-webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.fd-reverse {
	-webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.fw-wrap {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.b_box {
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
@media screen and (max-width: 768px) {
    .sp_block {
        display: block;
    }
}

/* col_
============================================================================================================ */
.col_2,
.col_3,
.col_4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.col_5 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.col_2 > li,
.col_2 > div,
.col_2 > ul,
.col_2 > dl{
    width: 47.5%;
    margin-bottom: 3%;
}
.col_2_s > li,
.col_2_s > div,
.col_2_s > ul,
.col_2_s > dl{
    width: 45%;
    margin-bottom: 3%;
}
.col_2_l > li,
.col_2_l > div,
.col_2_l > ul,
.col_2_l > dl{
    width: 49%;
    margin-bottom: 2%;
}
.col_3 > li,
.col_3 > div,
.col_3 > ul,
.col_3 > dl{
    width: 31.25%;
    margin-bottom: 3%;
}
.col_3:after {
    content:"";
    display: block;
    width: 31.5%;
}
.col_3_l > li,
.col_3_l > div,
.col_3_l > ul,
.col_3_l > dl{
    width: 32.3%;
    margin-bottom: 3%;
}
.col_3_l:after {
    content:"";
    display: block;
    width: 32.3%;
}
.col_4 > li,
.col_4 > div,
.col_4 > ul,
.col_4 > dl{
    width: 23.7%;
    margin-bottom: 3%;
}
.col_4:before {
    content: "";
    display: block;
    width: 23.7%;
    order: 1;
}
.col_4:after {
    content: "";
    display: block;
    width: 23.7%;
}
.col_5 > li,
.col_5 > div,
.col_5 > ul,
.col_5 > dl{
    width: 18.4%;
    margin-bottom: 3%;
    margin-right: 2%;
}
.col_5 > li:nth-of-type(5n),
.col_5 > div:nth-of-type(5n),
.col_5 > ul:nth-of-type(5n),
.col_5 > dl:nth-of-type(5n){
    margin-right: 0;
}
@media screen and (max-width: 960px) {
    .col_2_l > li,
    .col_2_l > div,
    .col_2_l > ul,
    .col_2_l > dl{
        width: 48%;
        margin-bottom: 4%;
    }
}

@media screen and (max-width: 768px) {
    .col_2,
    .col_3,
    .col_4,
    .col_5 {
        display: block;
    }
    .col_2 > li,
    .col_2 > div,
    .col_2 > ul,
    .col_2 > dl{
        width: 100%;
        margin-bottom: 5%;
    }
    .col_2_s > li,
    .col_2_s > div,
    .col_2_s > ul,
    .col_2_s > dl{
        width: 100%;
        margin-bottom: 5%;
    }
    .col_2_l > li,
    .col_2_l > div,
    .col_2_l > ul,
    .col_2_l > dl{
        width: 100%;
        margin-bottom: 5%;
    }
    .col_3 > li,
    .col_3 > div,
    .col_3 > ul,
    .col_3 > dl{
        width: 100%;
        margin-bottom: 5%;
    }
    .col_3:after {
        content: none;
    }
    .col_3_l > li,
    .col_3_l > div,
    .col_3_l > ul,
    .col_3_l > dl{
        width: 100%;
        margin-bottom: 5%;
    }
    .col_3_l:after {
        content: none;
    }
    .col_4 > li,
    .col_4 > div,
    .col_4 > ul,
    .col_4 > dl{
        width: 100%;
        margin-bottom: 5%;
    }
    .col_4:before,
    .col_4:after {
        content: none;
    }
    .col_5 > li,
    .col_5 > div,
    .col_5 > ul,
    .col_5 > dl{
        width: 100%;
        margin-bottom: 5%;
    }
    
    .sp_col_2 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .sp_col_2 > li,
    .sp_col_2 > div,
    .sp_col_2 > ul,
    .sp_col_2 > dl{
        width: 48.5%;
        margin-bottom: 3%;
    }
}

/* btn
============================================================================================================ */
.btn {
    display: inline-block;
    min-width: 297px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #666666;
    background: #fabe00;
    padding: 0.85em 50px;
    border-radius: 3em;
	-webkit-border-radius: 3em;
	-moz-border-radius: 3em;
    position: relative;
    text-decoration: none;
}
.btn:before,
.btn:after {
    content:"";
    display: inline-block;
    transform: translatey(-50%);
    position: absolute;
    top: 50%;
    -webkit-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
}
.btn:before {
    width: 30px;
    height: 30px;
    background: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    right: 10px;
}
.btn:after {
    width: 9px;
    height: 9px;
    border-top: 1px solid #666666;
    border-right: 1px solid #666666;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 22px;
    margin-top: -4px;
}
.btn:hover {
    color: #fff;
    background: #ea6000;
    opacity: 1 !important;
}
.btn:hover:after {
    border-top: 1px solid #ea6000;
    border-right: 1px solid #ea6000;
}
.btn.btn_line {
    border: 1px solid #fff;
    background: none;
}
.btn.btn_line:hover {
    color: #fff;
    border: 1px solid #ea6000;
    background: #ea6000;
}
.btn.btn_s {
    min-width: 180px;
    font-size: 1.5rem;
    padding: 0.5em 50px;
}
.btn.btn_link_ex:after {
    width: 13px;
    height: 13px;
    background: url("../images/icon_target_gray.svg") no-repeat;
    position: absolute;
    right: 18px;
    border: none;
    -webkit-transform: rotate(0) translatey(-50%);
    transform: rotate(0) translatey(-50%);
    margin-top: 0;
}
.btn.btn_gray {
    background: #888;
}
.btn_2col {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.btn_2col > button,
.btn_2col > a {
    margin-right: 2%;
    margin-left: 2%;
}

_:-ms-lang(x)::-ms-backdrop, .btn { padding-top: 1.2em; padding-bottom: 0.8em }
_:-ms-lang(x)::-ms-backdrop, .btn.btn_s { padding-top: 0.8em; padding-bottom: 0.3em }
_:-ms-lang(x)::-ms-backdrop, .btn.btn_2row { padding-top: 0.8em; padding-bottom: 0.3em }
@media screen and (max-width: 768px) {
    .btn {
        background: #fabe00;
    }
    .btn:after {
        border-top: 1px solid #fabe00;
        border-right: 1px solid #fabe00;
    }
    .btn.sp_btn_l {
        padding-left: 20px;
    }
    .btn.sp_btn_row2 {
        line-height: 1.26;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
    }
    .btn.btn_line {
        border: 1px solid #fff;
    }
    .btn.btn_link_ex:after {
        background: url("../images/icon_target_orange.svg") no-repeat;
    }
    .btn_2col .btn {
        min-width: 48%;
    }
}

/* tel_link
============================================================================================================ */
a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none !important;
}
@media screen and (max-width: 768px) {
a[href^="tel:"] {
        pointer-events: auto;
        text-decoration: underline !important;
    }
}


/* bg
============================================================================================================ */
.bg_l_gray {
    background: #f2f2f2;
}
.bg_ll_gray {
    background: #f1f1f1;
}
.bg_green {
    background: #478445;
}
.bg_white {
    background: #fff;
}

/* text_area
============================================================================================================ */
.text_area p + p {
    margin-top: 1.25em;
}


/* text
============================================================================================================ */
.underline {
    border-bottom: 1px solid #2B2B2B;
}


