@import url('https://fonts.googleapis.com/css2?family=Damion&family=Inter:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');

body {
    color: #333;
    font-family: Inter,"Zen Kaku Gothic New", sans-serif;
}
img {
    max-width: 100%;
}
.inter {
    font-family: 'Inter', sans-serif;
}
.damion {
    font-family: "Damion", cursive;
    font-weight: 400;
    font-style: normal;
}
.inner {
    position: relative;
    width: 92%;
    max-width: 1020px;
    margin: auto;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}
.pc{
    display: block;
}
.sp{
    display: none;
}

/* スマホサイズ------------------------------- */
@media screen and (max-width:768px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    } 
}

/* component
--------------------------------------------------------------*/

.title-dia {
    position: relative;
    left: 35px;
    display: inline-block;
    color: #0C7947;
    font-size: 20px;
    font-weight: 700;
    z-index: 1;
}
.title-dia span {
    display: block;
    color: #333;
    font-size: 55px;
    font-weight: 800;
}


.title-dia::before {
    content: '';
    position: absolute;
    top: -35px;
    left: -64px;
    display: block;
    width: 126px;
    height: 126px;
    border: 1px solid #43B149;
    transform: rotate( 45deg );
    z-index: -1;
}
.btn {
    position: relative;
    display: block;
    z-index: 1;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 0%;
    background: linear-gradient(100deg, #333 0%,#4CBA07 0%, #2DCBE0 100%);
    background-size: auto;
    z-index: -1;
    transition: .3s;
}
.btn:hover::before {
    width: 100%;
}
.btn.arrow::after{
    content: '';
    position: absolute;
    right: 15px;
    top: calc( 50% - 8px );
    display: block;
    width: 13px;
    height: 13px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate( 45deg );
}
.text-link{
    text-decoration: underline;
}
.text-link:hover{
    color: #43B149;
    text-decoration: none;
}
.link {
  display: inline-block;
  padding: 0 17px 0 0;
  text-align: left;
  background: url(../img/common/link.png) right top 3px no-repeat;
  background-size: 13px;
  font-size: 16px;
  text-decoration: underline;
}
.blank-link{
    position: relative;
    text-decoration: underline;
}
.blank-link::before {
    content: '';
    position: absolute;
    right: -16px;
    bottom: 8px;
    display: block;
    width: 14px;
    height: 10px;
    border: 1px solid #444;
}
.blank-link::after {
    content: '';
    position: absolute;
    right: -18px;
    bottom: 6px;
    display: block;
    width: 13px;
    height: 9px;
    border-right: 1px solid #444;
    border-bottom: 1px solid #444;
}
.pdf {
  font-size: 16px;
  padding: 1px 0 1px 20px;
  background: url(../img/common/pdf.png) left top 3px no-repeat;
  background-size: 13px;
  display: inline-block;
  text-decoration: underline;
}


/*
  ページネーション
--------------------------*/
.paging {
  text-align: center;
  letter-spacing: -.4em;
  margin: 80px 0 0;
}
.paging span,
.paging a {
  border: solid 1px #0C7947;
  background: #fff;
  width: 40px;
  height: 40px;
  color: #0C7947;
  line-height: 38px;
  display: inline-block;
  letter-spacing: 0;
  box-sizing: border-box;
  margin: 0 10px 0 0;
  font-size: 16px;
}
.paging .current,
.paging a:hover {
  background: #0C7947;
  color: #fff;
}
/* プレビュー、ネクストボタン消してる */
.paging .prev,
.paging .next {
  display: none;
}


/* スマホサイズ------------------------------- */
@media screen and (max-width:768px) {
    .title-dia {
        left: 34px;
        font-size: 16px;
    }
    .title-dia span {
        font-size: 30px;
    }
    .title-dia::before {
        top: -15px;
        left: -30px;
        width: 70px;
        height: 70px;
    }
}

/* layout
--------------------------------------------------------------*/
.kv {
    width: 100%;
    height: 220px;
    padding: 75px 0 0;
    background: url(../img/common/bg_title.png) no-repeat;
    background-size: cover;
    border-bottom: 5px solid #0C7947;
}

.header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
	background: #2EB142;
}
.header .flex {
    justify-content: space-between;
    width: 100%;
}
.header .logo {
    display: block;
    width: 250px;
    height: 70px;
    padding: 0px 0 0 0px;
    background: #43B149;
    transition: .3s;
}
.header .logo:hover {
    background: #2EB142;
}
.header .logo img {
    width: 250px;
    height: 70px;
}
.header .logo > span {
    display: inline-block;
    width: 100px;
    height: 24px;
    margin: 0 0 0 20px;
    padding: 2px 5px;
    background: #333;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    vertical-align: 10px;
}
.header .logo > span span {
    margin: 0 2px;
}
.header .nav_trigger {
    display: none;
}
.header .header_nav_sp {
    position: fixed;
    top: 80px;
    right: -375px;
    width: 375px;
    height: 100%;
    padding: 30px 30px;
    background: #D3D3D3;
    font-size: 13px;
    z-index: 8;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.header .header_nav_sp ul.box{
    width: 100%;
    padding: 10px 25px;
    margin: 0 0 20px;
    background: #fff;
}
.header .header_nav_sp > ul.box > li {
    position: relative;
    padding: 0 0 0 15px;
}
.header .header_nav_sp > ul.box > li::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    width: 10px;
    height: 3px;
    background: #0C7947;
    border-radius: 6px;
}
.header .header_nav_sp > ul.box > li > a {
    display: block;
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
}
.header .header_nav_sp > ul.box > li > ul{
    display: none;
    background: #f5f5f5;
}
/*.header .header_nav_sp > ul.box > li > ul > li{
    position: relative;
    padding: 0 0 0 15px;
}
.header .header_nav_sp > ul.box > li > ul > li::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    width: 10px;
    height: 3px;
    background: #0C7947;
    border-radius: 6px;
}
*/
.header .header_nav_sp > ul.box > li > ul > li > a {
    display: block;
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
}

.header .header_nav_sp ul.bnr{
    width: 100%;
}
.header .header_nav_sp ul.bnr li{
    margin: 0 0 10px;
}
.header .header_nav_sp ul.bnr li .btn{
    display: block;
    height: 70px;
    width: 100%;
    padding: 18px 0 0 34px;
    background: #43B149 url(../img/common/icon_link.png) no-repeat right 25px top 27px;
    background-size: 21px;
    color: #fff;
    font-size: 16px;
}
.header .header_nav_sp ul.bnr li.header_nav-contact .btn {
    padding: 24px 0 0 84px;
    background: #333 url(../img/common/icon_contact.png) no-repeat 22px;
    background-size: 31px;
}
.header .header_nav_sp ul.bnr li.header_nav-dl .btn {
    padding: 24px 0 0 84px;
    background: #888 url(../img/common/icon_download_white.png) no-repeat 24px 20px;
    background-size: 34px;
}

.header .header_nav > ul > li{
    position: relative;
}
.header .header_nav > ul > li > a {
    display: block;
    height: 70px;
    padding: 28px 20px 0;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}
.header .header_nav > ul > li:not(.header_nav-catalog,.header_nav-contact):hover > a {
    color: #0C7947;
}
.header .header_nav > ul > li:not(.header_nav-catalog,.header_nav-contact)::before{
    position: absolute;
    bottom: 17px;
    left: 50%;
    content: "";
    display: inline-block;
    width: 0;
    height: 3px;
    background: #0C7947;
    border-radius: 6px;
    transition: .5s;
}


.header .header_nav > ul > li:hover::before{
    left: calc( 50% - 17px);
    width: 34px;
    
}
.header .header_nav .header_nav-catalog a {
    width: 172px;
    padding: 25px 0 0 70px;
    margin: 0 0 0 20px;
    background: #d3d3d3 url(../img/common/icon_download_black.png) no-repeat 24px 25px;
    background-size: 35px;
    font-size: 14px;
    text-align: left;
    transition: .3s;
}
.header .header_nav .header_nav-catalog a:hover {
    background: #43B149 url(../img/common/icon_download_white.png) no-repeat 24px 25px;
    background-size: 35px;
    color: #fff;
}
.header .header_nav .header_nav-contact a {
    position: relative;
    width: 70px;
    background: #333;
    z-index: 1;
}
.header .header_nav .header_nav-contact a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(138deg, #4CBA07 0%, #2DCBE0 100%);
    z-index: -1;
    transition: .3s;
}
.header .header_nav .header_nav-contact a:hover::before{
    width: 100%;
}
.header .header_nav .header_nav-contact a img{
    width: 35px;
    height: 23px;
}

/*サブメニューアニメーション*/

.drop > a::after {
    content: '';
    position: relative;
    top: -5px;
    left: 10px;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #0C7947;
    border-top: 2px solid #0C7947;
    transform: rotate( 135deg );
}
.drop.accordion-close > a::after {
    content: '';
    position: relative;
    top: 0px;
    right: 10px;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #0C7947;
    border-top: 2px solid #0C7947;
    transform: rotate( -45deg );
}
.menu_dropdown {
    position: absolute;
    width: auto;
    min-width: 170px;
    margin: 0 0 0 -20px;
    background: rgba(255,255,255,1);
    z-index: 100;
    text-align: center;
    transition:
        0.5s padding,
        2s background;
}
/*
.menu_dropdown::after {
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 101;
  transition: 0.5s border-top;
}
.drop:not(:hover) > .menu_dropdown {
  padding: 0;
  background: rgba(255,255,255,0);
  z-index: 99;
}
.menu_dropdown > * {
  overflow: hidden;
  padding: 0;
  background: #fff;
  white-space: nowrap;
  transition:
    0.5s height cubic-bezier(.73,.32,.34,1.5),
    0.5s padding cubic-bezier(.73,.32,.34,1.5),
    0.5s margin cubic-bezier(.73,.32,.34,1.5),
    0.5s 0.2s color,
    0.2s background-color;
}*/
.menu_dropdown a {
    overflow: hidden;
    width: 190px;
    height: 50px;
    padding: 15px 20px 0;
    display: block;
    color: #0C7947;
    transition: 0.5s 0.1s height,
    0.5s 0.1s padding;
}
.menu_dropdown a:hover {
    background: #F2F2F2;
}
.drop:not(:hover) > .menu_dropdown a {
  visibility: hidden;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  color: rgba(25,25,25,0);
  transition:
    0.5s 0.1s height,
    0.5s 0.1s padding,
    0.5s 0.1s margin,
    0.3s color,
    0.6s visibility;
  z-index: 99;
}



.footer {
    padding: 60px 0;
    background: #D9D9D9;
}
.footer .inner {
    max-width: 1180px;
    
}
.footer .inner .flex {
    margin-bottom: 20px;
    background: #fff;
}
.footer .footer_title-box {
    width: 48%;
    max-width: 510px;
    padding: 130px 75px 50px 75px;
    font-size: 16px;
}
.footer .footer_title-box .title-dia {
    margin: 0 0 85px 15px;
}
.footer .footer_title-box .title-dia span {
    font-size: 45px;
}
.footer .footer_title-box .logo {
    display: block;
    height: 70px;
    width: 360px;
    padding: 10px 0 0 33px;
    background: #43B149 url(../img/common/icon_link.png) no-repeat left 300px top 27px;
    background-size: 21px;
    transition: .3s;
}
.footer .footer_title-box .logo::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 0%;
    background: url(../img/common/icon_link.png) no-repeat left 300px top 27px, linear-gradient(100deg, #333 0%,#4CBA07 0%, #2DCBE0 100%);
    background-size: 21px, auto;
    z-index: -1;
    transition: .3s;
}
.footer .footer_title-box .logo:hover::before{
    width: 100%;
}
.footer .footer_title-box .logo img{
	width: 240px;
    height: 51px;
}
.footer .footer_info-box {
    width: 52%;
    max-width: 580px;
    padding: 160px 5% 0 9%;
    background: url(../img/common/bg_contact.png) no-repeat;
    background-size: cover;
}
.footer .footer_info-box .btn {
    display: block;
    height: 70px;
    width: 100%;
    max-width: 390px;
    padding: 24px 0 0 84px;
    margin: 0 0 30px;
    background: #888 url(../img/common/icon_download_white.png) no-repeat 24px 20px;
    background-size: 34px;
    color: #fff;
    font-size: 16px;
    z-index: 1;
}
.footer .footer_info-box li:first-child .btn {
    background: #333 url(../img/common/icon_contact.png) no-repeat 22px;
    background-size: 35px;
}
.footer .footer_info-box .btn::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 0%;
    background: url(../img/common/icon_download_white.png) no-repeat 24px 20px,linear-gradient(100deg, #333 0%,#4CBA07 0%, #2DCBE0 100%);
    background-size: 34px,auto;
    z-index: -1;
    transition: .3s;
}
.footer .footer_info-box li:first-child .btn::before {
    background: url(../img/common/icon_contact.png) no-repeat 22px,linear-gradient(100deg, #333 0%,#4CBA07 0%, #2DCBE0 100%);
    background-size: 35px,auto;
}

.footer .footer_info-box .btn:hover::before {
    width: 100%;
}


.footer .footer_info-box .footer_tel-box {
    position: relative;
}
.footer .footer_info-box .footer_tel-box::before {
    content: 'TEL';
    position: absolute;
    left: 0px;
    top: calc(50% - 33px);
    display: block;
    width: 75px;
    height: 66px;
    padding: 20px 0 0;
    background: #333;
    color: #fff;
    font-size: 16px;
    text-align: center;
}
.footer .footer_info-box .footer_tel-box li {
    display: block;
    width: 100%;
    max-width: 390px;
    padding: 21px 0 21px 100px;
    background: #fff;
    border: 1px solid #707070;
    font-size: 20px;
    letter-spacing: .15em;
	border-bottom: 1px solid #70706F !important;
}
.footer .footer_info-box .footer_tel-box li:first-child {
    border-bottom: none;
}
.footer .footer_info-box .footer_tel-box li span {
    display: inline-block;
    width: 75px;
    margin: 0 5px 0 0;
    font-size: 16px;
    font-weight: bold;
    vertical-align: 2px;
}
.footer .footer_info-box .footer_tel-box li:last-child span {
    letter-spacing: 1.3em;
}
.footer .copy {
    color: #fff;
    font-size: 1em;
    font-weight: 700;
}
/* CSS Text header Image */
.banner-text-image {
	position: relative;
	width: 100%;
	text-align: center;
}

.banner-text-image h1 {
	position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    text-align: center;
    margin: 0px;
    padding: 22px 0;
    background: linear-gradient(0deg, rgba(165, 195, 34, 0.05) 0%, rgba(255, 255, 255, 1) 50%);
    color: #44c95a;
    font-size: 4.0rem;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 9px 38px 8px rgba(20, 25, 31, 0.3), 59px 30px 20px rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 1351px) and (max-width: 1650px) {
  .banner-text-image h1 { font-size: 3.3rem; }
}

@media screen and (max-width:1350px) {
	.banner-text-image h1 {
		font-size: 2.7rem;
	}
}

/* PC調整用サイズ------------------------------- */
@media screen and (max-width:1200px) {
    body{
        margin: 80px 0 0;
    }
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        background: #fff;
        z-index: 10;
    }
    .header .header_nav {
        display: none;
    }

    .header .nav_trigger {
        position: relative;
        display: block;
        width: 80px;
        height: 80px;
        background: #D3D3D3;
        cursor: pointer;
        z-index: 10;
        
    }
    .header .nav_trigger span,
    .header .nav_trigger span::before,
    .header .nav_trigger span::after {
        position: absolute;
        left: 0;
        right: 0;
        top: calc( 50% - 1px );
        display: block;
        width: 24px;
        height: 2px;
        margin: auto;
        background: #000;
        border-radius: 2px;
        transition: all .4s;
    }
    .header .nav_trigger span::before {
        content: '';
        top: -9px;
    }
    .header .nav_trigger span::after {
        content: '';
        top: 8px;
    }
    .nav_trigger.active span::before {
        -webkit-transform: translateY(9px) rotate(-45deg);
        transform: translateY(9px) rotate(-45deg);
    }
    .nav_trigger.active span {
        background: rgba( 0, 0, 0, 0);
    }
    .nav_trigger.active span::after {
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg);
    }

    .overlay {
        content: '';
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0);
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        z-index: 7;
    }
    .side_open .overlay {
        visibility: visible;
        cursor: pointer;
        background: rgba(0,0,0,.7);
    }
    /* サイドメニューオープン */
    .side_open .overlay,
    .side_open .header_nav_sp {
        -webkit-transform: translate3d(-375px, 0, 0);
        transform: translate3d(-375px, 0, 0);
    }

    
    .footer .footer_title-box {
        width: 48%;
        max-width: 100%;
        padding: 120px 5% 40px;
        font-size: 14px;
    }
    .footer .footer_title-box .logo {
        width: 100%;
        max-width: 360px;
        padding: 10px 0 0 10px;
        background: #43B149 url(../img/common/icon_link.png) no-repeat right 25px top 27px;
        background-size: 21px;
    }
    .footer .footer_info-box {
        width: 52%;
        max-width: 580px;
        padding: 160px 5% 40px 5%;
    }
    .footer .footer_info-box .footer_tel-box li {
        padding: 21px 0 21px 90px;
    }
	
	.fv {
		height: unset;
	}
	
	.banner-text-image h1 {
		font-size: 2.7rem;
	}
}
/* タブレット（iPad Air）以下サイズ------------------------------- */
@media screen and (max-width:820px) {
    
    .footer .footer_title-box {
        width: 100%;
        max-width: 100%;
        padding: 70px 5% 40px;
        font-size: 14px;
    }
    .footer .footer_title-box .logo {
        height: 70px;
        width: 100%;
        max-width: 400px;
    }
    .footer .footer_info-box {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 55px 5%;
    }
    .footer .footer_info-box .btn {
        width: 100%;
        max-width: 400px;
        padding: 24px 0 0 84px;
        margin: 0 0 10px;
    }
    
    .footer .footer_info-box .footer_tel-box li {
        width: 100%;
        max-width: 400px;
        padding: 21px 0 21px 90px;
        letter-spacing: .15em;
    }
}
/* スマホサイズ------------------------------- */
@media screen and (max-width:768px) {
    body{
        margin: 60px 0 0;
    }
    .kv {
        height: 135px;
        padding: 45px 0 0;   
    }
    .kv .title-dia span {
        font-size: 30px;
    }
    
    .header .logo {
        width: 250px;
        height: 60px;
        padding: 0px 0 0 0px;
    }
    .header .logo img {
        width: 250px;
		height: 60px;
    }
    .header .logo > span {
        width: 93px;
        height: 24px;
        margin: 0 0 0 10px;
        padding: 3px 5px;
        font-size: 16px;
        vertical-align: 8px;
    }
    .header .nav_trigger {
        width: 55px;
        height: 60px;
    }
    .header .header_nav_sp {
        top: 60px;
    }
    .footer .footer_title-box {
        width: 100%;
        max-width: 100%;
        padding: 50px 5% 40px;
        font-size: 14px;
    }
.footer .footer_title-box .title-dia {
    margin: 0 0 50px 10px;
}
.footer .footer_title-box .title-dia span {
    font-size: 30px;
}
    .footer .footer_title-box .logo {
        height: 70px;
        width: 100%;
        max-width: 400px;
    }
    .footer .footer_info-box {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 55px 5%;
    }
    .footer .footer_info-box .btn {
        width: 100%;
        max-width: 400px;
        padding: 24px 0 0 84px;
        margin: 0 0 10px;
    }
    
    .footer .footer_info-box .footer_tel-box li {
        width: 100%;
        max-width: 400px;
        padding: 21px 0 21px 86px;
        letter-spacing: .15em;
    }
	
    .banner-text-image h1 {
		font-size: 2rem;
	}
	
	.footer .copy {
		font-size: 0.6em;
	}
}

.wschat-wrapper > .btn::before {
	background: none;
}

.xs{
	display:none;
}

/* project
--------------------------------------------------------------*/



/* utility
--------------------------------------------------------------*/

.bg-black {
    background: #333;
}

.bg-gray {
    background: #888;
}
.bg-green {
    background: #0C7947;
}
.ta-center {
    text-align: center;
}
.px12 {
    font-size: 12px;
}
.px18 {
    font-size: 18px;
}
.fw-light {
   font-weight: 300; 
}
.fw-bold {
   font-weight: 700; 
}
.fw-black {
   font-weight: 900; 
}
.mt10 {
    margin-top: 10px;
}
.mb10 {
    margin-bottom: 0px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb100 {
    margin-bottom: 100px;
}
.ml10 {
    margin-left: 10px;
}
.mr10 {
    margin-right: 10px;
}

.slide-dots > .slick-active {
	display:none !important;
}

#wschat_email_transcript_picker, #wschat_feedback_picker, .elex-ws-chat-video-open-btn{
	display: none !important;
}

.elex-ws-chat-widget-convo-box .btn::before {
	background: unset;
}

.pre-chat-panel > .pre-chat-form > div > textarea{
	min-height: 130px;
}

.lang-switcher-header {
	display: inline;
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding: 28px 20px 20px 10px;
}

.lang-switcher-header a {
  display: inline-block;
  color: #333333;          
  text-decoration: none;
  font-weight: bold;
}

.lang-switcher-header a:hover {
  color: #0066cc;      
}

.lang-switcher-header a.disabled {
  color: #aaa;    
  cursor: default;
  pointer-events: none; 
}

.lang-switcher-header a + a::before {
  content: "|";
  margin: 0 6px;
  color: inherit;
}