  /*======= common style =======*/
@charset "utf-8";

/* import font */

/* import font */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-weight: 400;
    color: #000000;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.4;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

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;
}

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 {
    width: 1100px;
    padding: 0 10px;
    margin: 0 auto;
    transition: 0.2s;
}

.min {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	line-height: 1.4 !important;
	font-size: 17px !important;
	font-weight: 500;
}

@media all and (max-width: 1100px ){
    .container {
        width: 960px;
       padding: 0px;
    }
}

.cl-white {
    color: #ffffff !important;
}

.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;
}

.btn-site {
    padding: 10px 22px;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 19px;
    font-weight: 400;

    transition: 0.2s;
    background-color: transparent;
    border-radius: 30px;
    color: #fff;
}

.btn-site.--bg {
    background-color: #00A26F;
}

.btn-site.--no-border {
    border-color: transparent;
}

.btn-site.--bd-white {
    border-color: #fff;
}

.btn-site.--bg:hover {
    background-color: #fff;
    color: #00A26F;
    opacity: 1;
    border-color: #00A26F;
}

.btn-site svg {
    transition: 0.2s;
}

.btn-site:hover svg {
    fill: #00A26F !important;
}

.section-title.center {
    text-align: center;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    padding-bottom: 4px;
    margin-bottom: 10px;
    border-bottom: 1px solid #000000;
}

.section-title h2.cl-white {
    border-color: rgb(223, 223, 223);
}

.section-title span {
    font-size: 28px;
    color: #00A26F;
    font-weight: 600;
    letter-spacing: 1px;
}
/* ============start - header============ */
header {
    width: 100%;
}

.header__top {
    background-color: #00a270;
}

.header__top .__inner {
    width: 100%;
    flex-wrap: nowrap;
    height: 125px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.header__logo img {
    max-width: 410px;
}

.header__phone a {
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 30px;
    font-weight: 400;
}

.header__nav {
    margin-top: 2px;
    background-color: #000000;
}

.header__menu {
    justify-content: center;
    align-items: center;
}

.header__menu li a {
    font-size: 15px;
    display: block;
    position: relative;
    text-transform: uppercase;
    color: #fff;
    padding: 8px 5px 8px 18px;
    font-weight: 400;
    transition: 0.6s;
}

.header__menu li:nth-child(4) a,
.header__menu li:nth-child(5) a {
    padding: 8px 18px;

}
.header__menu li a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
    background-color: #BBBDC0;
    transition: 0.3s ease-in;
    color: #000000;
}

.header__menu li a span {
    position: relative;
    z-index: 1;
}

.header__menu li a:hover {
    opacity: 1;
    color: #000000;
}

.header__menu li a:hover::after {
    height: 100%;
}

.header__menu li a.letter-spacing {
    letter-spacing: 13px;
}

.header__menu li.active a {
    background-color: #BBBDC0;
    color: #000000;
}
/* =============end - header============= */


/* =========start - footer========= */
footer {
    border-top: 50px solid #000000;
    background-color: #e3f2e7;
}

.footer__content {
    padding: 24px 0px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__logo p {
    font-size: 15px;
    line-height: 27px;
    margin-top: 20px;
}

.footer__copyright {
    font-size: 15px;
    text-align: right;
    line-height: 25px;
}
/* =========end - footer========= */

/* css button back to top */
#back-to-top {
    position: fixed;
    bottom: 60px;
    right: 32px;
    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 {
    max-width: 145px;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
  }

#back-to-top:hover {
    opacity: 0.7;
}
/* css button back to top */

.btn a {
	display: block;
	width: 300px;
	font-weight: 500;
	background-color: #00A26F;
	border: 2px solid #00A26F;
	border-radius: 100vh;
	color: #FFF;
	padding: 10px 8px;
	text-align: center;
}

.btn img {
	display: inline;
	margin-left: 4px;
	vertical-align: 1px;
}

.btn2 a {
	display: block;
	width: 300px;
	font-weight: 500;
	background-color: #00A26F;
	border: 2px solid #FFF;
	border-radius: 100vh;
	color: #FFF;
	padding: 10px 8px;
	text-align: center;
	margin: 40px auto 0;
}

.btn2 img {
	display: inline;
	margin-left: 4px;
	vertical-align: 1px;
}

.btn3 a {
	display: block;
	width: 300px;
	font-weight: 500;
	background-color: #00A26F;
	border: 2px solid #00A26F;
	border-radius: 100vh;
	color: #FFF;
	padding: 10px 8px;
	text-align: center;
	margin: 40px auto 0;
}

.btn3 img {
	display: inline;
	margin-left: 4px;
	vertical-align: 1px;
}

.footer__logo a img {
	display: inline;
}


