@charset "utf-8";

:root {
	-ms-overflow-style: -ms-autohiding-scrollbar;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
audio:not([controls]) {
	display: none;
}
details {
	display: block;
}
input[type="number"] {
	width: auto;
}
input[type="search"] {
	-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
main {
	display: block;
}
summary {
	display: block;
}
pre {
	overflow: auto;
}
progress {
	display: inline-block;
}
small {
	font-size: 75%;
}
template {
	display: none;
}
textarea {
	overflow: auto;
}
[hidden] {
	display: none;
}
[unselectable] {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
*,
	::before,
	::after {
	box-sizing: inherit;
}
* {
	font-size: inherit;
	line-height: inherit;
}
::before,
::after {
	text-decoration: inherit;
	vertical-align: inherit;
}
*,
::before,
::after {
	border-style: solid;
	border-width: 0;
}
* {
	margin: 0;
	padding: 0;
}
:root {
	box-sizing: border-box;
	cursor: default;
	font: 16px/1.5 sans-serif;
	text-rendering: optimizeLegibility;
}
html {
	background-color: #fff;
}
a {
	text-decoration: none;
}
a:link, a:visited {
    transition: ease-in-out .2s;
    -webkit-transition: ease-in-out .2s;
    -moz-transition: ease-in-out .2s;
}
audio, canvas, iframe, img, svg, video {
	vertical-align: middle;
}
button, input, select, textarea {
	background-color: transparent;
}
button, input, select, textarea {
	color: inherit;
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
}
button, input, select, textarea {
	min-height: 1.5em;
}
code, kbd, pre, samp {
	font-family: monospace, monospace;
}
nav ol, nav ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
textarea {
	resize: vertical;
}
@media screen {
	[hidden~="screen"] {
		display: inherit;
	}
	[hidden~="screen"]:not(:active):not(:focus):not(:target) {
		clip: rect(0 0 0 0) !important;
		position: absolute !important;
	}
}

/*--------------------------------------
	common
--------------------------------------*/
* {
	-webkit-text-size-adjust: 100%;
}
body {
	line-height: 1.6;
	font-family: "メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Robot,"Droid Sans",sans-serif;
	font-size: 16px;
	color: #646464;
}
@media screen and (max-width: 767px) {
	body {
		line-height: 1.4em;
		font-size: 14px;
	}
}
li {
	list-style: none;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
}
a {
	outline: none;
	color: #333;
	text-decoration: none;
	-webkit-transition: 280ms ease-in-out;
	    transition: 280ms ease-in-out;
}
a:hover {
	opacity: .8;
}
.fg {
	font-family: "游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Robot,"Droid Sans",sans-serif;
}
.fm {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px) {
	.sp-none {
		display: none !important;
	}
	.pc-none {
		display: block !important;
	}
}
@media screen and (min-width: 767px) {
	.sp-none {
		display: block !important;
	}
	.pc-none {
		display: none !important;
	}
}
.inner {
	margin: 0 auto;
	max-width: 1000px;
}
@media screen and (max-width: 767px) {
	.inner {
		padding: 0 15px;
		width: 100%;
	}
}
#wrapper {
	position: relative;
	overflow: hidden;
}

#head {
	padding: 15px 0 20px;
    background-color: #fff;
    border-top: 9px solid #3bb678;
    border-bottom: 2px solid #3bb678;
    z-index: 100;
    transition: ease-in-out .3s;
}
#head .inner {
    display: -webkit-flex;
    display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
#head .logo {
    -webkit-flex: 0 0 465px;
    flex: 0 0 465px;
	max-width: 465px;
}
#head .hcontact {
    display: -webkit-flex;
    display: flex;
}
#head .hcontact .hmail {
    margin-left: 20px;
    padding-top: 4px;
}
@media screen and (max-width: 767px) {
    #head .logo {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

#gnavi ul {
    display: -webkit-flex;
    display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    height: 50px;
}
#gnavi li {
    -webkit-flex: 1;
    flex: 1;
    position: relative;
    text-align: center;
}
#gnavi li.current:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -22px;
    display: block;
    margin-left: -10px;
    width: 21px;
    height: 25px;
    background: transparent url(../images/common/icon_current.svg) no-repeat 0 0;
    z-index: 2;
}
#gnavi a {
	position: relative;
	display: block;
    letter-spacing: 1px;
}
#head {
	transition: ease-in-out .3s;
}
#head .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
#head #sp-nav {
    display: none;
}
#head #menu-img {
    display: none;
}
#head #menu-btn {
    display: none;
}
.sp_contact {
    display: none;
}
@media screen and (max-width:1300px) {
	#gnavi a {
		font-size: 14px;
	}
}
@media screen and (max-width:1100px) {
	#gnavi a {
		font-size: 12px;
	}
}
@media screen and (max-width:767px) {
    #head #sp-nav {
        display: block;
        position: fixed;
        top: 55px;
        right: 0px;
        bottom: 0;
        z-index: 999;
        width: 175px;
        margin-right: -100%;
        transition: ease-in-out .4s;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
        overflow: auto;
        padding-bottom: 120px;
    }
    #head #sp-nav.active {
        margin-right: 0px;
    }
    #head #sp-nav nav {
        background-color: #646464;
    }
    #head #menu-btn {
        position: fixed;
        top: 10px;
        right: 10px;
		width: 37px;
		text-align: center;
        z-index: 9999999999;
        cursor: pointer;
        display: block;
    }
    #head #menu-btn .sub-txt {
        position: absolute;
        left: 2px;
        bottom: -18px;
        text-align: center;
    }
    #head #menu-btn .sub-txt img {
		width: 42px;
	}
    #head #sp-nav > nav > ul {
        padding-bottom: 30px;
    }
    #head #sp-nav > nav > ul > li {
        display: block;
        border-bottom: 1px solid #fff;
    }
    #head #sp-nav > nav > ul > li:first-child {
        border-top: 1px solid #fff;
    }
    #head #sp-nav li .op-box {
        padding-bottom: 10px;
    }
    #head #sp-nav li .op-box a {
        text-decoration: none;
        font-weight: 500;
        padding-left: 40px;
        padding-right: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        display: block;
        font-size: 95%;
    }
    #head #sp-nav li .op-box a span {
        font-size: 70%;
        font-weight: normal;
        margin-left: 9px;
    }
	#head #sp-nav li .op-box a:before {
        content: "";
        display: inline-block;
        margin-right: 5px;
        width: 14px;
        height: 10px;
        background: transparent url(../images/common/sp/icon_cursor3.svg) no-repeat 0 0;
        background-size: 14px 10px;
    }
    #head #sp-nav .btn,
	#head #sp-nav ul > li > a {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
		font-size: 16px;
        cursor: pointer;
        padding: 18px 20px;
        position: relative;
        display: block;
        text-align: left;
        letter-spacing: 1px;
	}
	#head #sp-nav > nav > ul > li:nth-child(1) > a {
		border-top: none;
	}
	#head #sp-nav > nav > ul > li > a:before {
        content: "";
        display: inline-block;
        margin-right: 8px;
        width: 28px;
        height: 33px;
        vertical-align: middle;
        background: transparent url(../images/common/sp/icon_cursor.svg) no-repeat 0 0;
        background-size: 28px 33px;
    }
    #head #sp-nav .btn.no-arrow:after {
        display: none;
    }
    #head #sp-nav .btn:after,
	#head #sp-nav ul > li > a:after {
        content: "";
        position: absolute;
        right: 10px;
        top: 50%;
        margin-top: -10px;
    }
    #head #sp-nav .btn span,
	#head #sp-nav ul > li > a span {
        color: #fff;
        margin-left: 10px;
    }
    #head #sp-nav .op-box {
        display: none;
    }
    #head #sp-nav .stitle {
		padding: 7px 0;
		text-align: center;
		background-color: #323232;
		font-weight: bold;
		font-size: 18px;
		color: #fff;
	}
	#head .btn_close {
		padding: 10px 20px;
		text-align: right;
		border-bottom: 2px solid #323232;
	}
	#head .btn_close img {
		vertical-align: text-bottom;
	}
    .accordion_icon,
	.accordion_icon span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }
    .accordion_icon {
        position: absolute;
        width: 30px;
        height: 30px;
        right: 10px;
        margin-top: -7px;
        top: 50%;
        vertical-align: middle;
    }
    .accordion_icon span {
        position: absolute;
        left: 6px;
        width: 50%;
        height: 2px;
        background-color: #EB5514;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -ms-border-radius: 4px;
        -moz-border-radius: 4px;
        -o-border-radius: 4px;
    }
    .accordion_icon span:nth-of-type(1) {
        top: 5px;
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    .accordion_icon span:nth-of-type(2) {
        top: 5px;
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    }
    .accordion_icon.active span:nth-of-type(1) {
        display: none;
    }
    .accordion_icon.active span:nth-of-type(2) {
        top: 5px;
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }
    .menu-trigger,
	.menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }
    .menu-trigger {
        position: relative;
        width: 24px;
		height: 19px;
    }
    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #fff;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 0;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 8px;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .active .menu-trigger span:nth-of-type(1) {
        -webkit-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg);
    }
    .active .menu-trigger span:nth-of-type(2) {
        opacity: 0;
    }
    .active .menu-trigger span:nth-of-type(3) {
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg);
	}

    #head {
        padding: 15px 0;
        border-top: 5px solid #3bb678;
        border-bottom: 1px solid #3bb678;
    }
	#head .logo img {
		width: 270px;
		height: auto;
	}
	
    #head .hcontact {
		display: none;
    }
	#gnavi {
		display: none;
    }

    .sp_contact {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        padding: 10px;
        background-color: #3bb678;
    }
    .sp_contact div {
        margin: 0 7px;
    }
}
@media screen and (max-width:767px) {
	#head .htop {
		padding: 5px;
		font-size: 12px;
	}
    #head #sp-nav {
        top: 82px;
        box-sizing: border-box;
        webkit-overflow-scrolling: touch;
        overflow-y: auto;
		overflow-x: hidden;
	}
    #HOME #head #sp-nav {
        top: 82px;
    }
    #head.fixed #sp-nav {
        top: 74px;
    }
    #HOME #head.fixed #sp-nav {
        top: 74px;
    }
    #head #menu-btn {
        position: fixed;
        top: 30px;
		right: 13px;
		padding: 12px 0 8px;
		width: 47px;
		background-color: #3bb678;
		border-radius: 8px;
		z-index: 9999;
    }
    #head #menu-btn {
        top: 16px;
    }
    #head.fixed #menu-btn {
        top: 13px;
    }
    .menu-trigger {
        width: 27px;
		height: 20px;
    }
    .menu-trigger span {
        height: 4px;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 0;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 8px;
    }
    .active .menu-trigger span:nth-of-type(1) {
        -webkit-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg);
    }
    .active .menu-trigger span:nth-of-type(2) {
        opacity: 0;
    }
    .active .menu-trigger span:nth-of-type(3) {
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg);
    }
}

footer#footer {
    margin-top: 120px;
    border-top: 2px solid #3bb678;
}
footer#footer .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}
footer#footer .cl {
    -webkit-flex: 0 0 373px;
    flex: 0 0 373px;
}
footer#footer .cl .faddress {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
}
footer#footer .cr {
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    padding-top: 60px;
}
footer#footer .cr ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
footer#footer .cr ul li {
    -webkit-flex: 0 0 33%;
    flex: 0 0 33%;
    margin-top: 10px;
}
footer#footer .cr ul li:before {
    content: "";
    display: inline-block;
    margin-right: 5px;
    width: 10px;
    height: 10px;
    background: transparent url(../images/common/icon_list.svg) no-repeat 0 0;
    background-size: 10px 10px;
}
footer#footer .cr a {
    color: #646464;
}
footer#footer .copyright {
    padding: 5px 0;
    text-align: center;
    background-color: #3bb678;
    font-size: 12px;
    color: #fff;
}
.pagetop {
    position: absolute;
    right: 0;
    top: -25px;
}
@media screen and (max-width:768px) {
    footer#footer {
        margin-top: 80px;
        border-top: 1px solid #3bb678;
    }
    footer#footer .inner {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 20px 0 0 0;
    }
    footer#footer .cl {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        padding-bottom: 15px;
    }
    footer#footer .cl .flogo {
        text-align: center;
    }
    footer#footer .cl .flogo img {
        width: 240px;
    }
    footer#footer .cl .faddress {
        margin-top: 20px;
        font-size: 12px;
    }
    footer#footer .cr {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 5px 50px 15px;
        background-color: #3bb678;
    }
    footer#footer .cr ul li {
        -webkit-flex: 0 0 50%;
        flex: 0 0 50%;
        margin-top: 10px;
    }
    footer#footer .cr ul li a {
        font-size: 12px;
        color: #fff;
    }
    footer#footer .cr ul li:before {
        content: "";
        display: inline-block;
        margin-right: 5px;
        width: 5px;
        height: 8px;
        background: transparent url(../images/common/sp/icon_list2.svg) no-repeat 0 0;
        background-size: 5px 8px;
    }
    footer#footer .cr a {
        color: #fff;
    }
    footer#footer .copyright {
        padding: 5px 0;
        text-align: center;
        background-color: #fff;
        font-size: 10px;
        color: #3bb678;
    }
    .pagetop {
        position: absolute;
        right: 50%;
        top: -40px;
        margin-right: -24px;
    }
    .pagetop img {
        width: 48px;
    }
}

.OTHER #topban {
    position: relative;
}
.OTHER #topban .page_title {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 365px;
    height: 127px;
}
@media screen and (max-width: 767px) {
    .OTHER #topban .page_title {
        width: 142px;
        height: 45px;
    }
}

#bread {
	margin: 0 auto 0;
    padding: 10px 0;
    text-align: center;
}
#bread li {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	font-size: 12px;
    white-space: nowrap;
}
#bread li:first-child {
	padding-left: 0;
}
#bread li::before {
	content: ">";
	position: absolute;
	left: 4px;
	top: 0;
	font-size: 12px;
}
#bread li:first-child::before {
	content: "";
	padding-left: 0;
}
#bread li a,
#bread li span {
    font-size: 12px;
    color: #646464;
}
#bread li i {
	margin-right: 5px;
}
@media screen and (max-width: 767px) {
	#bread {
		padding: 5px 0;
		width: 100%;
	}
	#bread.mt {
		margin-top: 10px;
	}
	#bread li {
		font-size: 10px;
	}
	#bread li a,
	#bread li span {
		font-size: 10px;
	}
}

#TOP #topban {
    margin: 0 auto;
    max-width: 1500px;
}
.OTHER #topban img {
    width: 100%;
    height: auto;
}
.OTHER .sec {
    padding: 60px 0;
}
.OTHER .sec .mark {
    text-align: center;
}
@media screen and (max-width: 767px) {
    #TOP #topban {
        max-width: 100%;
    }
    .OTHER .sec {
        padding: 30px 0;
    }
}

#BUSINESS #sec1 .title {
    margin-top: 40px;
    text-align: center;
    font-size: 30px;
}
#BUSINESS #sec1 .text {
    margin-top: 40px;
    text-align: center;
    line-height: 1.8;
}
#BUSINESS #sec2 {
    padding-top: 0;
}
#BUSINESS .c_title {
    padding: 10px;
    width: 100%;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 30px;
    color: #fff;
}
@media screen and (max-width: 767px) {
    #BUSINESS #sec1 .title {
        margin-top: 30px;
        font-size: 20px;
    }
    #BUSINESS #sec1 .text {
        margin-top: 30px;
    }
    #BUSINESS .c_title {
        padding: 12px 10px;
        font-size: 22px;
    }
}