/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
	font-family: "游ゴシック", YuGothic, 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "AXIS Std", "メイリオ", "Meiryo", sans-serif;
	font-feature-settings: "palt";
	word-break: break-all;
}

img {
	width: 100%;
	vertical-align: center;
}

/******** loading ******/
.loading-content {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background-color:  #50b802;
	transition: all ease-in-out 1.5s;
	z-index: 100;
}

.loading-content.js-loaded {
	opacity: 0;
  	visibility: hidden;
}

.loading-content .loader {
	width: 31.91%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/******** container ******/
main {
	width: 100%;
	padding: 0;
	text-align: left;
	overflow: hidden;
	position: relative;
	background-color: #f7f2ec;
}

.c-section .txt {
	font-size: 16px;
	line-height: 2.1;
	padding-bottom: 30px;
	text-align: justify;
}

.c-section .btn {
	width: 70.56vw;
	margin: 0 auto;
}

.scroll-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
}

.slick-slide img.pc {
	display: none;!important
}

.pb-12 {
	padding-bottom: 12px;
}

.pb-40 {
	padding-bottom: 40px;
}

.mb-12 {
	margin-bottom: 12px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-100 {
	margin-bottom: 100px;
}

.sp_br {
	display: block;
}

@media screen and (min-width : 768px) {

.c-section .btn {
	max-width: 220px;
	margin: 0 auto;
}

.slick-slide img.sp {
	display: none;
}

.slick-slide img.pc {
	display: block;!important
}

.sp_br {
	display: inline;
}

}

@media screen and (min-width : 900px) {

.c-section .btn {
	max-width: 254px;
	margin: 0 auto;
}

}

/************/
/** header **/
/************/
.header {
	width: 100%;
	padding: 3.125vw 0;
	background: #50b802;
	position: fixed;
	top: 0;
	z-index: 10;
}

.header .header__container {
	width: 92.63vw;
	margin: 0 auto;
	padding: 0;
	position: relative;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.header .hearder__logo {
	width: 19.07vw;
	padding: 0;
}

.header .header__container .menu-overlay__btn {
	width: 8.594vw;
}

.header .menu-overlay__nav .header-nav {
	opacity: 0;
	width: 45%;
	height: 100vh;
	margin: auto;
	padding: 14.063vw 3.906vw 0 3.906vw;
	background: #48b900;
	position: fixed;
	top: 0;
	right: -45%;
	z-index: 20;
	transition: 0.3s;
}

.header .menu-overlay__nav.open .header-nav {
	right: 0;
	opacity: 1;
	transition: 0.3s;
}

.menu-overlay {
	content: "";
	width: 0;
	height: 0;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	opacity: 0;
	transition: opacity .5s;
}

.header .menu-overlay__nav.open .menu-overlay {
	width: 100%;
	height: 100vh;
	opacity: 1;
}

.header .header-nav__btn {
	width: 8.594vw;
	position: absolute;
	right: 3.685vw;
	top: 3.125vw;
	z-index: 21;
}

.header .header-nav__item {
	font-size: 4.688vw;
	font-weight: bold;
	color: #ffffff;
	position: relative;
	padding: 0 0 4.688vw 0;
} 

.header .header-nav__item a {
	width: 100%;
	padding: 3.906vw 0 0 0;
	display: block;
	color: #ffffff;
	text-decoration: none;
	position: relative;
	z-index: 1;
}

.header .header__container .header-nav__item a:hover {
	text-decoration: none;
}

@media screen and (min-width : 768px) {

.header {
	padding: 10px 0;
}

.header .header__container {
	max-width: 1366px;
}

.header .hearder__logo {
	max-width: 100px;
}

.header .header__container .menu-overlay__btn {
	max-width: 30px;
	padding-top: 12px;
}

.header .menu-overlay__nav .header-nav {
	width: 200px;
	padding: 220px 60px 0 30px;
	right: -260px;
}

.header .header-nav__btn {
	width: 30px;
	right: 80px;
	top: 24px;
}

.header .header-nav__item {
	font-size: 20px;
	padding: 0 0 30px 0;
} 

.header .header-nav__item a {
	padding: 30px 0 0 0;
}

}


/*********/
/** slide **/
/*********/
#slide {
	width: 100%;
	padding-top: 22.22vw;
	position: relative;
}

#slide .slick_slide_img {
	position: relative;
	opacity: 0;
    visibility: hidden;
    transition: opacity 2s, visibility 2s, transform 2s;
}

#slide  .slick-active .slick_slide_img {
	opacity: 1;
    visibility: visible;
}

#slide .slick_slide_tit {
	position: relative;
	overflow: hidden;
	opacity: 0;
    visibility: hidden;
}

#slide .slick_slide_tit img {
	display: block;
    transform: matrix(1, 0, 0, 1, 0, 100);
    transition: 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

#slide .slick_slide_caption {
	position: relative;
	overflow: hidden;
	opacity: 0;
    visibility: hidden;
}

#slide .slick-active .slick_slide_tit,
#slide .slick-active .slick_slide_caption,
#slide .slick-active .slick_slide_txt{
	opacity: 1;
    visibility: visible;
}

#slide .slick_slide_tit {
	width: 76.39vw;
	margin: 0 auto 10vw auto;
}

#slide .slick_slide_tit1 {
	width: 76.39vw;
	margin-top: 5.56vw;
}

#slide .slick_slide_tit2 {
	width: 78.06vw;
	margin-top: 5.56vw;
}

#slide .slick_slide_tit3 {
	width: 90.35vw;
}

#slide .slick_slide_tit4 {
	width: 67.5vw;
}

#slide .slick-active .slick_slide_tit img {
	opacity: 1;
    visibility: visible;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

#slide .slick_slide_caption {
	width: auto;
	height: 20.47vw;
	position: absolute;
	top: 27.44vw;
	left: 4.72vw;
	z-index: 2;
}

#slide .slick_slide_caption img {
	width: 100%;
	height: 100%;
	margin: auto;
	display: block;
    transform: matrix(1, 0, 0, 1, 0, 100);
    transition: 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

#slide .slick-active .slick_slide_caption img {
	opacity: 1;
    visibility: visible;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

#slide .slick_slide_img {
	width: 87.78vw;
	margin: 0 0 40px auto;
}

#slide .slick_slide_txt {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	opacity: 0;
    visibility: hidden;
}

#slide .slick_slide_txt1 {
	width: 70.27vw;
}

#slide .slick_slide_txt2 {
	width: 84.84vw;
}

#slide .slick_slide_txt3 {
	width: 80.28vw;
}

#slide .slick_slide_txt4 {
	width: 76.5vw;
}

#slide .slick_slide_txt img {
	display: block;
    transform: matrix(1, 0, 0, 1, 0, 100);
    transition: 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

#slide .slick-active .slick_slide_txt img {
	opacity: 1;
    visibility: visible;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

#slide .slick-dots {
	margin-top: 24px;
	position: relative;
	bottom: 0;
	display: inline-block;
    text-align: center;
}

#slide .slick-dots li {
	width: 2.561vw!important;
	height:  2.561vw!important;
	padding: 0;
	background: #ffffff;
	border-radius: 50px;
	border: 1px solid #ffffff;
	position: relative;
	display: inline-block;
    text-align: center;
}

#slide .slick-dots li.slick-active {
	background: #50b802;
	border: 1px solid #50b802;
	opacity: 1.0;
}

#slide .slick-dots li button {
	width: 100%!important;
	height:  100%!important;
}

#slide .slick-dots li button:before {
	display: none;
}

.scroll {
	margin: 0 0 0 auto;
	position: relative;
	right: 12px;
	top: 25px;
	writing-mode: vertical-rl;
	color: #50b802;
}

.scroll::before {
	animation: scroll 2s infinite;
	background-color: #50b802;
	content: "";
	height: 60px;
	margin: auto;
	position: absolute;
	right: 23px;
	width: 1px;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}

@media screen and (min-width : 768px) {

#slide {
	max-width: 1366px;
	margin: 0 auto;
	padding-top: 100px;
}

#slide .slick_slide_tit {
	max-width: 550px;
	margin: 0 auto 40px auto;
}

#slide .slick_slide_tit1 {
	max-width: 550px;
	margin-top: 24px;
}

#slide .slick_slide_tit2 {
	max-width: 562px;
	margin-top: 24px;
}

#slide .slick_slide_tit3 {
	max-width: 797px;
}

#slide .slick_slide_tit4 {
	max-width: 532px;
}

#slide .slick_slide_caption {
	max-height: 95px;
	top: 170px;
	right: 68vw;
}

#slide .slick_slide_img {
	max-width: 1084px;
	margin: 0 0 40px auto;
}

#slide .slick_slide_txt1 {
	max-width: 340px;
}

#slide .slick_slide_txt2 {
	max-width: 418px;
}

#slide .slick_slide_txt3 {
	max-width: 394px;
}

#slide .slick_slide_txt4 {
	max-width: 374px;
}

#slide .slick-dots {
	margin-top: 20px;
}

#slide .slick-dots li {
	width: 20px!important;
	height:  20px!important;
}

.scroll {
	right: 12px;
	top: -74px;
	font-size: 20px;
}

.scroll::before {
	height: 60px;
	right: 23px;
	width: 1px;
}

}

@media screen and (min-width : 1380px) {

#slide .slick_slide_caption {
	left: 200px;
    right: auto;
}

}


/*************/
/** about **/
/*************/
#about {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.contents__col {
	width: 83.33vw;
	margin: 0 auto;
	position: relative;
}

#about .sec_h2 {
	width: 42.71vw;
	margin: 0;
	position: relative;
}

#about .sec_h3_col {
	width: 75.67vw;
	border-top-right-radius: 30vw;
	border-bottom-right-radius: 30vw;
	background: #48b900;
	padding: 12px 0 12px 30px;
	position: relative;
	left: -8.665vw;
}

#about .sec_h3 {
	width: 68.6vw;
	margin: 0;
}

#about .sec1_h3_eng {
	width: 58.33vw;
}

#about .sec1_img1 {
	width: 61.07vw;
	margin: 0 auto;
}

#about .sec1_img2,
#about .sec1_img3 {
	width: 29.16vw;
	position: absolute;
}

#about .sec1_img2 {
	top: 0;
	right: -12.5vw;
}

#about .sec1_img3 {
	bottom: 8.33vw;
	left: -22.5vw;
}

#about .sec1_img4 {
	width: 29.23vw;
	position : absolute;
	top: -50vw;
	right: -4vw;
}

@media screen and (min-width : 768px) {

}

@media screen and (min-width : 900px) {

#about .inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

#about .sec_h2 {
	max-width: 260px;
}

#about .sec_h3_col {
	width: 53vw;
	height: 135px;
	margin-left: calc(40% - 50vw);
	border-top-right-radius: 30vw;
	border-bottom-right-radius: 30vw;
	padding: 0;
	position: relative;
	left: 0;
}

#about .sec_h3 {
	max-width: 414px;
	margin: 0 0 0 auto;
	position: absolute;
	right: 9.8%;
	top: 20px;
}

#about .sec1_h3_eng {
	max-width: 356px;
}

#about .contents__col {
	max-width: 1100px;
	margin-bottom: 40px;
}

#about .contents__col2 {
	max-width: 550px;
	position: absolute;
	top: 25px;
	right: 0;
}

#about .flex__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
}

#about .contents__col3,
#about .contents__col5 {
	max-width: 550px;
	margin: 0;
}

#about .contents__col4 {
	max-width: 232px;
	margin: 0 auto;
}

#about .sec1_img1 {
	max-width: 388px;
	margin: 0 auto;
}

#about .sec1_img2,
#about .sec1_img3 {
	max-width: 184px;
}

#about .sec1_img2 {
	top: 40px;
	right: -66px;
}

#about .sec1_img3 {
	bottom: 77px;
	left: -85px;
}

#about .sec1_img4 {
	max-width: 232px;
	position : relative;
	top: 0;
	right: 0;
	margin: auto;
}

}

/**********/
/** rent **/
/**********/
#rent {
	width: 100%;
	padding: 40px 0;
	background: #48b900;
	position: relative;
	border-top-right-radius: 10vw;
	border-bottom-left-radius: 10vw;
}

#rent .sec2_img {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}

#rent .txt {
	color: #ffffff;
}

#rent .bnr {
	width: 44.44vw;
	margin: 0 auto;
}

@media screen and (min-width : 768px) {

#rent {
	padding: 60px 0;
	border-top-right-radius: 30px;
	border-bottom-left-radius: 30px;
}

#rent .inner {
	max-width: 860px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

#rent .contents__col1,
#rent .contents__col3 {
	max-width: 320px;
	margin: 0;
}

#rent .contents__col1 {
	margin-bottom: 60px;
}

#rent .contents__col2 {
	max-width: 420px;
	position: absolute;
	top: 0;
	right: 0;
}

#rent .flex__inner {
	max-width: 320px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-direction: row-reverse;
}

#rent .flex__inner .mb-40 {
	margin-bottom: 0;
}

#rent .txt {
	margin-bottom: 50px;
}

#rent .sec2_img {
	width: 100%;
	margin: 0;
}

#rent .bnr {
	max-width: 100px;
	margin: 0;
}

}

@media screen and (min-width : 1100px) {

#rent .inner {
	max-width: 1100px;
}

#rent .contents__col1,
#rent .contents__col3 {
	max-width: 460px;
}

#rent .contents__col2 {
	max-width: 600px;
}

#rent .flex__inner {
	max-width: 460px;
}

#rent .bnr {
	max-width: 160px;
	margin: 0;
}

}

/**********/
/*** service ***/
/**********/
#service .sec_h2 {
	width: 26.66vw;
	margin: 0 auto;
}

@media screen and (min-width : 768px) {

#service .contents__col {
	max-width: 760px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
}

#service .contents__col .sec3_img {
	max-width: 320px;
}

}

@media screen and (min-width : 1100px) {

#service .sec_h2 {
	max-width: 144px;
}

#service .contents__col {
	max-width: 800px;
}

#service .contents__col .sec3_img {
	max-width: 355px;
}

}

/*************/
/** contact **/
/*************/
#contact .sec_h2 {
	width: 68.29vw;
	margin: 0 auto;
}

#contact .sec4_img {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}

@media screen and (min-width : 768px) {

#contact .sec_h2 {
	max-width: 368px;
}

#contact .flex__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

#contact .contents__col {
	max-width: 540px;
	margin: 0 auto;
	position: relative;
}

#contact .contents__col2 {
	max-width: 448px;
}

#contact .sec4_img {
	width: 100%;
	margin: 0;
}

#contact .btn__col {
	width: 100%;
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 40px;
}

#contact .btn {
	max-width: 380px;
	margin: 0 auto;
}

}


/*************/
/*** map ***/
/*************/
#map .map__bg {
	width: 100%;
	padding-top: 8vw;
	background:url(../img/bg_map.png) top center no-repeat;
	background-size: cover;
}

#map .sec_h2 {
	width: 26.27vw;
	margin: 0 auto;
}

#map .sec5_map {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}

#map .sec5_map iframe {
	width: 100%;
	height: 77.78vw;
	border-radius: 4vw;
}

#map .txt {
	color: #fff;
	font-weight: bold; 
}

@media screen and (min-width : 768px) {

#map .sec_h2 {
	max-width: 146px;
}

#map .flex__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
}

#map .contents__col {
	max-width: 448px;
	margin: 0 auto;
	position: relative;
}

#map .contents__col2 {
	max-width: 540px;
}

#map .contents__col3 {
	max-width: 100%;
}

#map .sec5_map {
	width: 100%;
	margin: 0;
}

#map .sec5_map iframe {
	width: 100%;
	height: 422px;
	border-radius: 10px;
}

#map .txt {
	padding-left: 40px;
}

}

/******** footer ******/
#footer {
	width: 100%;
	margin: 0;
	position: relative;
	background-color: #48b900;
	padding: 12px 0;
}

#footer .footer__inner .copyright {
	color: #fff;
	font-size: 14px;
	text-align: center;
}


@media screen and (min-width : 768px) {

}

@media screen and (min-width : 1100px) {

#footer .footer__inner .copyright {
	font-size: 12px;
}

}