/*======= common style =======*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-weight: 300;
    font-size: 16px;
    color: #000000;
    overflow-x: hidden;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
				-webkit-text-size-adjust: 100%;
}

.sp {
	display: none;
}

.pc {
	display: block;
}

.alignright {
	float: right;
	margin: 0 0 30px 30px;
}

.aligncenter {
	display: block;
	margin: 0 auto 30px;
}


@media only screen and (max-width: 360px) {
    body {
        min-width: 320px;
    }
}

a {
    text-decoration: none;
    color: unset;
    transition: 0.2s;
}

a:hover {
    text-decoration: none;
    opacity: 0.7;
}

ul,
li {
    list-style-type: none;
    margin: 0px;
}

img {
    display: block;
    max-width: 100%;
    transition: .2s;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
}

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

.container {
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
    transition: 0.2s;
}

.cl-white {
    color: #ffffff;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

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

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

.pc-none {
    display: none !important;
}

.sp-none {
    display: block !important;
}

.mgn60 {
	margin-bottom: 60px !important;
}

@media only screen and (max-width: 768px) {
    .pc-none {
        display: block !important;
    }
    
    .sp-none {
        display: none !important;
    }
}

/* =====start - header===== */
.header__top {
    padding: 10px 10px;
    align-items: center;
    flex-wrap: wrap;
}

.header__logo img {
    max-width: 345px;
    object-fit: cover;
}

.header__logo {
    padding-right: 20px;
}

.header__contact {
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

.header__contact p {
    font-size: 14px;
    text-align: right;
    padding-right: 14px;
}

.header__button {
    gap: 2px;
    align-items: stretch;
}

.header__button a  img {
    max-height: 80px;
    object-fit: cover;
    position: relative;
}

.header__button-phone {
    background-color: #008c55;
}

.header__contact-link {
    background-color: #ff9900;
}

.contact-link__sp {
    display: none;
}

.header__nav {
    margin: 0 auto;
    padding: 10px 20px;
}

.main-menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.main-menu li a {
    display: block;
    padding: 7px 30px;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}

.main-menu li a::after {
    position: absolute;
    content: "";
    width: 0.5px;
    height: 100%;
    background-color: #999999;
    left: 0px;
    top: 0px;
    transition: 0.2s;
}

.main-menu li:last-child a::before {
    position: absolute;
    content: "";
    width: 0.5px;
    height: 100%;
    background-color: #999999;
    right: 0px;
    top: 0px;
    transition: 0.2s;  
}

.main-menu li a:hover {
    color: #008c55;
    opacity: 1;
}

.header__button-sp {
    display: none;
}
 
/* =====end - header===== */


/* =========start - footer========= */
footer {
    display: block;
    position: relative;
}

.footer__top {
    padding: 30px 0px;
    background-color: #008c55;
    color: #fff;
}

.footer-top__inner {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__info {
    padding-right: 30px;
}

.footer__info h2 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.footer__info ul li {
    color: #fff;
    margin-bottom: 2px;
    font-size: 14px;
}

.footer__menus {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 36px;
}

.footer__menu-block li a {
    font-size: 15px;
    color: #fff;
    padding: 4px 0px;
    display: block;
}

.footer__menu-block li a:hover {
    color: #ff9900;
    opacity: 1;
}

.footer__menu-block li {
    position: relative;
    padding-left: 15px;
}

.footer__menu-block li::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    left: 0px;
    top: 12px;
}

.footer__copyright {
    background-color: #fff;
    padding: 16px 20px;
    text-align: center;
}
/* =========end - footer========= */

/* css button back to top */
#back-to-top {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 90px;
    height: 90px;
    background-color: #ff9900;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    color: #fff;
    font-size: 14px;
    
}

#back-to-top img {
    margin-bottom: 5px;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
  }

#back-to-top:hover {
    opacity: 0.7;
}
/* css button back to top */


.button-hover-effect {
    position: relative;
    overflow: hidden;
}

.button-hover-effect:hover {
    opacity: 1;
}

.button-hover-effect::after {
    position: absolute;
    content: "";
    width: 10%;
    height: 150%;
    background-color: rgba(255, 255, 255, 0.403);
    box-shadow: 0px 0px 20px 0px rgb(255 255 255);
    left: -50%;
    top: 50%;
    transition: 0.5s;
    transform: translateY(-50%) rotate(40deg);
}

.button-hover-effect:hover::after {
    left: 120%;
}

section.section {
    padding: 65px 0px;
}

.section__title {
    padding-bottom: 30px;
}

.section__title h2 {
    font-size: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.section__title h2 span {
    text-transform: uppercase;
    color: #008c55;
    padding-left: 14px;
    padding-bottom: 3px;
    font-size: 14px;
    letter-spacing: 0.6px;
}

.section__title h2 span.mini {
	font-size: 24px;
	color: #000;
	padding: 0;
	padding-bottom: 1px;
}

.btn-site {
    font-size: 16px;
    padding: 9px 30px 11px;
    min-width: 240px;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
				text-decoration: none !important;
}

.btn-site svg {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s;
}

.btn-site:hover {
    opacity: 1;
}

.btn--blue {
    color: #fff;
    background-color: #008c55;
}

/*--------------------------------------------------*/
.secondTitle {
	height: 180px;
}

.secondTitle .text {
	width: 1000px;
	height: 100%;
	margin: 0 auto;
	position: relative;
}

.secondTitle .text h1 {
	position: absolute;
	display: inline-block;
	background-color: #008C55;
	color: #FFF;
	top: 50%;
 transform:translateY(-50%);
	font-size: 40px;
	line-height: 1;
	padding: 8px 28px 8px 8px;
}

.secondTitle .text h1:before {
	width: 20px;
	height: 2px;
	content: "";
	background-color: #FFF;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 10;
}

.secondTitle .text h1:after {
	width: 20px;
	height: 2px;
	content: "";
	background-color: #008C55;
	position: absolute;
	top: 50%;
	right: -20px;
	z-index: 10;
}

.pan {
	width: 1000px;
	margin: 0 auto;
	font-size: 14px;
	padding: 4px 0;
}

.pan ul {
	display: flex;
	justify-content: end;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pan ul li a {
	color: #008C55;
}

#second {
	margin: 60px auto;
	width: 1000px;
}

#second h2 {
	font-size: 26px;
	color: #008c55;
	margin: 0 0 30px;
	padding: 0 0 12px;
	border-bottom: 1px solid #CCC;
}

#second h3 {
	margin: 0 0 30px;
	padding: 4px;
 font-size: 22px;
	background-color: #E7F5F4;
	font-weight: 500;
}

#second h4 {
	margin: 0 0 20px;
	padding: 0 0 8px 10px;
	font-size: 20px;
	font-weight: 500;
	border-left: 4px solid #008c55;
	border-bottom: 1px dashed #CCC;
	color: #008c55;
}

#second p + h2 {
    margin-top: 60px;
}

#second p + h3 {
	margin: 80px 0 30px;
}

#second p {
	margin: 0 0 30px;
}

#second a {
	text-decoration: underline;
	color: #008c55;
}

#second ol {
	margin: 0 20px 30px;
}

#second ol li {
	margin: 0 0 20px;
	list-style-type: decimal;
}

#second .pager_wrap {
	position: relative;
	overflow: hidden;
	margin: 20px 0 10px;
}

#second .pager_wrap ul.pager {
	position: relative;
	left: 50%;
	float: left;
}

#second .pager_wrap ul.pager li {
	position: relative;
	left: -50%;
	float: left;
}

#second .pager_wrap ul.pager {
	margin: 0;
	padding: 0;
	list-style: none;
}

#second .pager_wrap ul.pager li {
	display: inline;
	min-width: 20px;
	margin: 2px;
	padding: 0;
	background-color: #FFF;
	text-align: center;
	border: 1px solid #008C55;
	text-indent: 0;
}

#second .pager_wrap ul.pager li a {
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	border: none;
}

#second .pager_wrap ul.pager li::before {
content: "";
margin-right: 0;
}
#second .pager_wrap ul.pager li.active {
	background-color: #008C55;
	display: block;
	padding: 10px 15px;
	color: #FFFFFF;
}

#second .pager_wrap ul.pager li.active a:link, #second .pager_wrap ul.pager li.active a:visited,
#second .pager_wrap ul.pager li.active a:hover, #second .pager_wrap ul.pager li.active a:active {
	color: #FFFFFF !important;
	opacity: 1;
}

#second .pager_wrap ul.pager li a:hover {
	color: #FFF;
	background-color: #008C55;
	opacity: 1;
}

.subMenu {
	margin: 0 0 60px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.subMenu li {
	width: 30%;
	margin: 0 0 20px;
	padding: 0;
	position: relative;
}

.subMenu li:nth-of-type(3n-1) {
	margin: 0 5% 20px;
}

.subMenu li a {
	display: block;
	border: 3px solid #EEE;
	padding: 8px 0;
	text-align: center;
	text-decoration: none !important;
	color: #000 !important;
}

.subMenu li a:before {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #B2E2DF;
	width: 24px;
	height: 3px;
	content: "";
}

.subMenu li a:hover {
	background-color: #E7F5F4;
	opacity: 1;
}

.subMenu2 {
	margin: 0 0 60px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.subMenu2 li {
	width: 46%;
	margin: 0 2% 20px;
	padding: 0;
	position: relative;
}

.subMenu2 li a {
	display: block;
	border: 3px solid #EEE;
	padding: 8px 0;
	text-align: center;
	text-decoration: none !important;
	color: #000 !important;
}

.subMenu2 li a:before {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #B2E2DF;
	width: 24px;
	height: 3px;
	content: "";
}

.subMenu2 li a:hover {
	background-color: #E7F5F4;
	opacity: 1;
}

.btn {
	text-align: center;
}

.btn a {
	color: #008c55 !important;
	text-decoration: none !important;
	padding: 9px 0 11px;
	width: 320px;
	display: block;
	border: 1px solid #008c55;
	opacity: 1;
	margin: 0 auto;
	background: url(../image/arrow-01.png) #FFF no-repeat 94% center;
	background-size: 8px;
}

.btn a:hover {
	background-color: #008c55;
	color: #FFF !important;
}

.btn a:hover {
	background: url(../image/arrow-02.png) #008c55 no-repeat 94% center;
	background-size: 8px;
}


.clear:after {
 content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clear {
 display: inline-table;
 overflow: hidden;
}

/* mac \*/
* html .clear {
 height: 1%;
}
.clear {
 display: block;
}
/* macend */

