@charset "UTF-8";

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,aside,figure {margin: 0;padding: 0;}
address,caption,cite,code,dfn,em,strong,th,var {font-style: normal;}
table {border-collapse: collapse;border-spacing: 0;}
caption,th {text-align: left;}
object, embed {vertical-align: top;}
hr,legend {display: none;}
h1,h2,h3,h4,h5,h6 {font-size: 100%;}
img,abbr,acronym,fieldset {border: 0;}
li {list-style-type: none;}


/* base
----------------------------------------*/
html{
	font-size: 62.5%;
	overflow: auto;
}
body{
	width: 100%;
	color: #000;
	font-family: "游ゴシック","Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans","ヒラギノ角ゴ ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	overflow: hidden;
	box-sizing: border-box;
	word-break: normal;
	-webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
	box-sizing: border-box
}
h1,h2,h3,h4,h5,h6{
	font-feature-settings: "palt";
}
a:link {color:#000;text-decoration:underline;}
a:visited {color:#000;text-decoration:underline;}
a:active, a:hover {color:#000;text-decoration:none;}

img{
	vertical-align: bottom;
}

.spview{display: none;}

@media screen and (max-width: 767px){
	.pcview{display: none;}
	.spview{display: block;}
}


/* layout
----------------------------------------*/
.wrapper img{
	width: 100%;
	height: auto;
}


/* mv
----------------------------------------*/
.mv{
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 0 0;
}
.mv::before{
  position: absolute;
  top: 10px;
  right: 30px;
  display: inline-block;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(45deg,#a9ebba,#fff2c2); /* 色変更 */
  content: "";
  z-index: -40;
}
.mv-inner{
  max-width: 1400px;
  margin: 0 auto;
}
.mv-title{
  max-width: 1000px;
  width: 94%;
  margin: 0 auto 40px;
  text-align: center;
}
.mv-title span{
  display: block;
}
.mv-title .main{
  font-size: 5.0rem;
  line-height: 1.4;
}
.mv-title .main > span{
  display: inline-block;
}
.mv-title .sub{
  margin-top: 15px;
  color: #23b24a; /* 色変更 */
  font-size: 3.0rem;
  line-height: 1.4;
}
.mv-image{
  max-width: 1400px;
  margin: 0 auto;
}
.mv-image{
  position: relative;
  padding-bottom: 35.71428571428571%;
}
.mv-image::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-bottom: 35.71428571428571%;
  background: url(bg-mv.jpg) no-repeat center;
  background-size: cover;
  content: "";
}

@media screen and (max-width: 1000px){
  .mv::before{
    width: 400px;
    height: 400px;
  }
}

@media screen and (max-width: 767px){
  .mv{
    padding: 20px 0 0;
  }
  .mv::before{
    top: -100px;
    right: -90px;
    width: 200px;
    height: 200px;
  }
  .mv-title{
    margin: 0 auto 20px;
  }
  .mv-title .main{
    font-size: 3.0rem;
  }
  .mv-title .sub{
    font-size: 2.2rem;
  }
  .mv-image{
    padding-bottom: 53.33333333333333%;
  }
  .mv-image::before{
    padding-bottom: 53.33333333333333%;
    background: url(bg-mv-sp.jpg) no-repeat center;
    background-size: cover;
  }
}


/* nav
----------------------------------------*/
.nav{
  padding: 15px 5%;
  background-color: #23b24a; /* 色変更 */
}
.nav-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}
.nav-list-number{
  display: block;
  font-size: 2.0rem;
}
.nav-list-title{
  display: block;
  font-size: 1.4rem;
}
.nav-list li{
  width: calc(100% / 3);
  border-right: solid 1px #fff;
}
.nav-list li:first-of-type{
  border-left: solid 1px #fff;
}
.nav-list li > *{
  display: block;
  padding: 0 10px 5px;
  color: #fff;
  font-feature-settings: "palt";
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.nav-list li a{
  text-decoration: none;
  opacity: 0.7;
  transition: 0.7s;
}
.nav-list li a:hover{
  opacity: 1;
}
.nav-list li .comingsoon{
  color: #ccc;
}

@media screen and (max-width: 767px){
  .nav{
    padding: 10px 0 5px;
  }
  .nav-list-title{
    display: none;
  }
  .nav-list li:first-of-type{
    border-left: none;
  }
  .nav-list li:last-of-type{
    border-right: none;
  }
  .nav-list li > *{
    padding: 0;
    text-align: center;
  }
}


/* lead
----------------------------------------*/
.lead{
	padding: 40px 5%;
}
.lead-inner{
	max-width: 900px;
	margin: 0 auto;
}
.lead-inner p{
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 2;
}

@media screen and (max-width: 767px){
	.lead{
		padding: 30px 5%;
	}
}


/* contents
----------------------------------------*/
.contents{
  position: relative;
  padding: 0 5%;
}
.contents::before{
  position: absolute;
  top: 50%;
  right: -450px;
  display: inline-block;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background-color: #f4fceb; /* 色変更 */
  content: "";
  z-index: -30;
}
.contents::after{
  position: absolute;
  bottom: 0;
  left: -450px;
  display: inline-block;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background-color: #f2f2f2;
  content: "";
  z-index: -30;
}

@media screen and (max-width: 1000px){
  .contents::before{
    width: 700px;
    height: 700px;
  }
  .contents::after{
    width: 700px;
    height: 700px;
  }
}

@media screen and (max-width: 767px){
  .contents::before{
    right: -70%;
    width: 500px;
    height: 500px;
  }
  .contents::after{
    left: -70%;
    width: 500px;
    height: 500px;
  }
}


/* section
----------------------------------------*/
.section{
  position: relative;
	max-width: 1600px;
  margin: 0 auto;
  padding: 70px 0;
}
.section::before{
  position: absolute;
  top: 0;
  display: inline-block;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(45deg,#a9ebba,#fff2c2); /* 色変更 */
  content: "";
  opacity: 0.5;
  z-index: -20;
}
.section:nth-child(odd)::before{
  left: 0;
}
.section:nth-child(even)::before{
  right: 0;
}
.section-inner{
  max-width: 900px;
  margin: 0 auto;
}
.section-heading{
	position: relative;
	margin-bottom: 40px;
  padding: 0 0 15px 45px;
  border-bottom: solid 2px #23b24a; /* 色変更 */
  color: #23b24a; /* 色変更 */
	font-size: 3.0rem;
	font-weight: 700;
	line-height: 1.4;
}
.section-heading::before{
  position: absolute;
  top: 0.2em;
  left: 0;
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 50%;
  border: solid 6px #23b24a; /* 色変更 */
  content: "";
}
.section-text{
  padding: 0 5.55555555555556%;
}
.section-text > p{
	margin-bottom: 1.5em;
	font-size: 1.6rem;
	line-height: 2;
}
.section-text > p:last-of-type{
	margin-bottom: 0;
}
.section-text > p.question{
  color: #23b24a; /* 色変更 */
  font-weight: 700;
}

@media screen and (max-width: 1000px){
  .section::before{
    width: 500px;
    height: 500px;
  }
}

@media screen and (max-width: 767px){
  .section{
    padding: 30px 0;
  }
  .section::before{
    width: 300px;
    height: 300px;
  }
  .section:nth-child(odd)::before{
    left: -40%;
  }
  .section:nth-child(even)::before{
    right: -40%;
  }
  .section-heading{
    margin-bottom: 30px;
    padding: 0 0 15px 40px;
    font-size: 2.6rem;
  }
  .section-heading::before{
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: solid 5px #23b24a; /* 色変更 */
  }
  .section-text{
    padding: 0;
  }
}


/* photo
----------------------------------------*/
.photo{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 40px auto;
}
.photo-image{
  width: 53.33333333333333%;
}
.photo-right .photo-image{
  order: 2;
}
.photo-caption{
  position: relative;
  width: calc(100% - 53.33333333333333%);
}
.photo-caption::before{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #efefef;
  content: "";
  z-index: -10;
}
.photo-left .photo-caption::before{
  left: -50px;
}
.photo-right .photo-caption::before{
  right: -50px;
}
.photo-caption-name{
  font-size: 1.6rem;
  line-height: 1.6;
}
.photo-left .photo-caption-name{
  margin-left: 30px;
}
.photo-right .photo-caption-name{
  margin-right: 30px;
  text-align: right;
}
.photo-caption-name span{
  font-size: 150%;
}
.photo-wide{
  max-width: 1200px;
  margin: 70px auto 0;
}
.photo-wide-caption{
	margin-top: 15px;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px){
  .photo{
    margin: 30px auto;
  }
  .photo-image{
    width: 80%;
    margin: 0 auto;
  }
  .photo-right .photo-image{
    order: 1;
  }
  .photo-caption{
    width: 80%;
    margin: 10px auto 0;
  }
  .photo-caption::before{
    top: calc(50% - 50px);
    width: 200px;
    height: 200px;
  }
  .photo-left .photo-caption-name{
    margin-left: 0;
  }
  .photo-right .photo-caption-name{
    margin-right: 0;
    text-align: left;
  }
  .photo-right .photo-caption{
    order: 2;
  }
  .photo-wide{
    margin: 30px auto 0;
  }
}


/* link
----------------------------------------*/
.link{
  padding: 50px 5%;
}

.link-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}
.link-heading{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #23b24a; /* 色変更 */
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 150px;
  text-align: center;
}
.link-list{
  width: calc(100% - 150px - 30px);
}
.link-list li + li{
  margin-top: 1em;
}
.link-list li a{
  display: inline-block;
  position: relative;
  padding-left: 25px;
  font-size: 1.8rem;
  line-height: 1.6;
  text-decoration: none;
}
.link-list li a::before{
  position: absolute;
  top: 1em;
  left: 0;
  content: "●";
  font-size: 50%;
  color: #23b24a; /* 色変更 */
}
.link-list li a:hover{
  text-decoration: underline;
}

@media screen and (max-width: 767px){
  .link{
    padding: 20px 5% 30px;
  }
  .link-heading{
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    font-size: 2.0rem;
    line-height: 120px;
  }
  .link-list{
    width: 100%;
  }
  .link-list li a{
    padding-left: 20px;
    font-size: 1.6rem;
  }
}


/* contact
----------------------------------------*/
.contact{
  position: relative;
  padding-top: 12.5%;
}
.contact::before{
  display: inline-block;
  position: absolute;
  top: 0;
  left: -1px;
  width: calc(100% + 2px);
  height: auto;
  padding-top: 12.5%;
  background: url(bg-wave.svg) no-repeat top center;
  background-size: cover;
  content: "";
  z-index: -10;
}
.contact-inner{
  margin-top: -1px;
  padding: 60px 5% 190px;
  background-color: #23b24a; /* 色変更 */
}
.contact-text{
  position: relative;
  max-width: 800px;
  margin: 2px auto 0;
  z-index: 10;
}
.contact-heading{
  margin-bottom: 60px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.contact-link{
  color: #fff;
  font-feature-settings: "palt";
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.contact-link a{
  color: #fff;
  font-size: 50%;
  text-decoration: none;
}

@media screen and (max-width: 767px){
  .contact-inner{
    padding: 60px 5% 80px;
  }
  .contact-heading{
    margin-bottom: 40px;
    font-size: 2.2rem;
  }
  .contact-link{
   font-size: 2.5rem;
  }
}


/* pagetop
----------------------------------------*/
.pagetop{
	position: fixed;
	bottom: 2em;
	right: 2em;
  z-index: 100;
}
.pagetop img{
	width: 60px;
	height: 60px;
}
.pagetop a {
  display: block;
  transition: 0.5s;
}
.pagetop a:hover{
    opacity: 0.8;
}

@media screen and (max-width: 767px){
	.pagetop{
		position: fixed;
		bottom: 0.5em;
		right: 0.5em;
	}
	.pagetop img{
		width: 50px;
		height: 50px;
	}
}


/* footer
----------------------------------------*/
.footer-bottom{
	background: #fff;
}
div.localFooter{
	padding: 20px;
	text-align: left;
	line-height: 1.6;
}