@charset "utf-8";

/* ---------------------------------------- 
 - html
---------------------------------------- */

@charset "utf-8";

/* common ----------------------------- */

html {
  font-size: 80%;
}

body {
  font-family: "Jun 201", BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 12px;
  font-size: 1.2em;
  color: #222;
  line-height: 1.8;
}

ul {
  padding: 20px 0;
  
}


.inview {
  transition: 0.8s;
}

.inview.mv {
  opacity: 1.0 !important;
}

/* ---------------------------------------- 
 - header
---------------------------------------- */

header {
  height: 80px;
  text-align: center;
  background: #fff;
  position: relative;
  z-index: 999;
}

header #headWrap {
  height: 80px;
  text-align: center;
  background: #fff;
  transition: .3s;
}

header #headCol {
  width: 96%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

header #headCol .logo {
  width: 40%;
  max-width: 90px;
}

header .shoulder {
  /* rem = htmlのfont-sizeが基準 */
  font-size: 1.2rem;
  margin-left: 2%;
  font-weight: 700;
}

/* ---------------------------------------- 
 - menuBox (アクセス)
---------------------------------------- */
header .menuBox {
  font-size: 1.2rem;
  display: flex;
  margin-right: 80px;
  margin-left: auto;
}


header .menuBox .access a:hover,
header .menuBox .language span:hover {
  text-decoration: none;
  color: #007545;
  opacity: 0.7;
}

header .menuBox .access {
  padding-right: 18px;
}

header .menuBox .access a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.6;
  transition: all 0.3s;
  padding: 5px 0;
}

header .menuBox .access a::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 15px;
  background-image: url(./images/ico_access.svg);
  background-size: contain;
  vertical-align: text-bottom;
  background-position: left top;
  background-repeat: no-repeat;
  padding-right: 5px;
}

header .menuBox .access a:hover::before {
  background-image: url(./images/ico_access_green.svg);
}

/* ---------------------------------------- 
 - menuBox (language)
---------------------------------------- */
header .menuBox .language {
  position: relative;
}

header .menuBox .language span {
  position: relative;
  display: inline-block;
  padding: 5px 15px 5px 0;
  vertical-align: middle;
  line-height: 1.4;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

/* 地球儀 */
header .menuBox .language span::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../images/ico_language.svg);
  background-size: contain;
  vertical-align: text-bottom;
  background-position: left center;
  background-repeat: no-repeat;
  padding-right: 5px;
}

/* 下向き矢印 */
header .menuBox .language span::after {
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 0;
  margin: auto;
  margin-top: -1px;
  content: "";
  vertical-align: middle;
  box-sizing: border-box;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top: 6px solid #007545;
}
.menuBox .language > ul {
  display: none;
  position: absolute;
  width: 100%;
}
.menuBox .language > ul li a {
  background: #007545;
  height: 35px;
  line-height: 35px;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  margin: 0 0 1px;
  color: #fff;
}


/* ---------------------------------------- 
 - menu (ハンバーガーアイコン)
---------------------------------------- */
/* アイコン */
#menu {
  width: 55px;
  height: 48px;
  position: absolute;
  top: 50%;
  right: 0;
  cursor: pointer;
  z-index: 800;
  background: #756a00;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: .3s;
  transition: .3s;
}

/* 白い線(2本目) */
#menu i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 24px;
  height: 1px;
  margin: 0 auto;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: #fff;
  margin-top: -7px;
}

/* 白い線(1本目) */
#menu i::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  margin-top: 7px;
  -webkit-transition: .3s;
  transition: .3s;
  background: #fff;
}

/* 白い線(3本目) */
#menu i::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  margin-top: 6px;
  -webkit-transition: .3s;
  transition: .3s;
  background: #fff;
}

/* クリックしたら(アイコン) */
#menu.active {
  /* 透明になる */
  background: none;
  /* 前面になる */
  z-index: 910;
}

/* クリックしたら(白い線 1本目) */
#menu.active i::before {
  /* 要素の場所含めて非表示 */
  display: none;
}

/* クリックしたら(白い線 2本目) */
#menu.active i {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: 0px;
  margin-left: -10px;
  background: #000;
}

/* クリックしたら(白い線 3本目) */
#menu.active i::after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 24px;
  margin-top: 0;
  background: #000;
}

/* ---------------------------------------- 
 - gnavi (グローバルナビゲーション)
---------------------------------------- */

#gnavi {
  background-color: rgba(255,255,255,0.97);
  width: 100%;
  margin: 0 auto;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: left;
  overflow: auto;
  width: 100vw;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

#gnavi #gnaviCol {
  width: 100%;
  max-width: 1100px;
  display: block;
  margin: 0 auto;
  padding: 80px 2% 50px;
  box-sizing: border-box;
}

/* 左右に並べるflex */
#gnavi #gnaviCol .siteNavi {
  position: relative;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}

/* 左右の幅 */
#gnavi #gnaviCol .siteNavi .leftBox,
#gnavi #gnaviCol .siteNavi .rightBox {
  width: 47%;
}

/* 下に余白 */
#gnavi #gnaviCol .siteNavi dl {
  padding: 0 0 40px;
}

/* 緑の見出し */
#gnavi #gnaviCol .siteNavi dl dt {
  font-size: 2.0rem;
  color: #007545;
  border-bottom: solid 2px #007545;
  overflow: hidden;
}

/* 緑の見出し */

#gnavi #gnaviCol .siteNavi dl dd {
  padding: 10px 0 10px;
}

#gnavi #gnaviCol .siteNavi dl dd > ul > li {
  position: relative;
}

#gnavi #gnaviCol .siteNavi dl dd > ul > li .ttl {
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
  border-bottom: solid 1px #c6c6c6;
}

#gnavi #gnaviCol .siteNavi dl dd > ul > li .ttl a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 0;
  text-decoration: none;
  transition: 0.3s;
}

#gnavi #gnaviCol .siteNavi dl dd > ul > li .ttl .jp {
  font-size: 1.2rem;
  margin-left: 10px;
  padding-left: 10px;
  border-left: solid 1px #c6c6c6;
}

#gnavi #gnaviCol .siteNavi .sub {
  padding: 10px;
}

#gnavi #gnaviCol .siteNavi .sub li {
  font-size: 1.3rem;
}

#gnavi #gnaviCol .siteNavi .sub li a {
  transition: .3s;
  text-decoration: none;
  padding: 5px 0 5px 15px;
  position: relative;
  display: block;
}

#gnavi #gnaviCol .siteNavi .sub li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin: auto;
  margin-top: -1px;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid #808080;
  border-right: 1px solid #808080;
  -webkit-transform: translate(0,-50%) rotate(45deg);
  transform: translate(0,-50%) rotate(45deg);
}



/* ------------------------------------ */

/* conceptCol ------------------------- */

#conceptCol {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

#conceptCol .phtBox {
  position: relative;
  width: 48%;
  max-width: 850px;
  padding-top: 600px;
  overflow: hidden;
}

#conceptCol .phtBox::before {
  position: absolute;
  top: 0;
  right: -10px;
  display: block;
  width: 100%;
  height: 102%;
  content: '';
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon fill='%23ffffff' points='100,150 85,0 100,0'%3E%3C/polygon%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right top;
  z-index: 10;
}

#conceptCol .phtBox img {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
}

/* ------------------------------------ */

/* leadBox ---------------------------- */

.leadBox {
  width: 50%;
  max-width: 650px;
  padding: 30px 2% 0 2%;
  margin-right: auto;
  box-sizing: border-box;
}

.leadBox .mainTitle {
  padding: 0 0 25px;
}

.leadBox .mainTitle.concept .ttl {
  text-align: left;
  padding-left: 22px;
  margin: 0 auto;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.4;
  color: #756a00;
}

.leadBox .mainTitle.concept .ttl span.catch {
  position: relative;
  display: inline-block;
  margin-top: 26px;
}

.leadBox .mainTitle.concept .ttl span.catch::before {
  /* concept */
  content: '';
  display: inline-block;
  background-position: left top;
  background-repeat: no-repeat;
  position: absolute;
  width: 110px;
  height: 26px;
  background-image: url(../images/catch_concept.svg);
  top: -20px;
  left: -22px;
}


.leadBox .txtBox .map {
  width: 40%;
}

#conceptCol .leadBox .lead {
  padding-left: 25px;
  font-size: 1.6rem;
  font-weight: 400;
}

#conceptCol .leadBox .txtBox {
  width: 100%;
  margin: 30px 0 0;
  padding: 15px 0 0 22px;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}

#conceptCol .leadBox .txtBox .txt {
  font-size: 2.2rem;
  text-align: center;
  line-height: 2.0;
  padding: 10px 0 30px;
  width: 58%;
  box-sizing: border-box;
}

@media screen and (max-width: 480px) {
	#conceptCol .leadBox .txtBox .txt {
    font-size: 1.6rem;
    text-align: center;
    line-height: 2.0;
    padding: 10px 0 30px;
    width: 58%;
    box-sizing: border-box;
  }
}


#conceptCol .leadBox .txtBox .btnMore {
  display: inline-block;
  min-width: 240px;
  margin: 0;
}

#conceptCol .leadBox .txtBox .btnMore a {
  width: 100%;
  min-width: 100%;
  background: #3193fd;
  color: #fff;
  padding: 0 35px;
  height: 45px;
  line-height: 45px;
  font-size: 1.4rem;
  text-decoration: none;
  display: block;
  border-radius: 30px;
  max-width: 100%;
  transition: .3s;
  text-align: center;
  box-sizing: border-box;
  position: relative;
}

#conceptCol .leadBox .txtBox .btnMore a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  margin: auto;
  margin-top: -1px;
  content: "";
  vertical-align: middle;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
}

/* leadBox ---------------------------- */
.contents0 {background-image: url(../images/2.jpg);
  background-size: cover;
}


.contents1 {
  width: 100%;
  margin: 0px auto;
  padding: 10px 0;
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.8;
}

.contents1 h2{
  font-family: Ryumin Regular KL;
  padding: 30px;
}

.contents1 h3{
  font-family: Ryumin Regular KL;
  padding: 30px 0 0 0;
}

.contents1 h4{
  font-family: Ryumin Regular KL;
  padding: 0;
  font-size: 2.6rem;
}

.contents1 h5{
  font-family: Ryumin Regular KL;
  padding: 0;
  font-size: 2.0rem;
}

.contents1 p{
  font-size: 1.6rem;
}


.contents2 {
  font-family: Ryumin Regular KL;
  text-align: center;
  margin: 0 auto;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.8;
  color: #756a00;
}

.contents3 {
  font-size: 2.2rem;
  font-weight: 200;
  line-height: 1.8;
  text-align: center;
  padding: 30px;
}

.contents6 {
  font-size: 2.2rem;
  font-weight: 200;
  line-height: 1.8;
  text-align: left;
}

.contents4 {
  max-width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
}

.contents5 {
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 200;
  line-height: 2.8;
  color: #756a00;
}

.contents6 {
  font-size: 1.6rem;
}

.contents7 {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 3em;
  padding: 10px;
  /* borderに関する設定 */
  border: 1px solid; /* 線の太さと可視化 */
  border-radius: 8px;
}

.contents7 h4 {
  font-family: Ryumin Regular KL;
  font-size: 2.6rem;
}

.contents8 {
    padding: 0px 5px;
    font-size: 1.6rem;
    font-weight: 200;
    line-height: 1.8;
}

.contents9 {
  text-align: left;
  padding: 10px 30px;
  font-size: 1.6rem;
  font-weight: 200;
  line-height: 1.8;
}

.contents10 {
  width: 60%;
  margin: 0 auto;
}

.contents10 img {
  display: block;
  margin: 0 auto;
  width: 60%;
}

.contents11 {
  margin: 50px auto;
  font-family: Ryumin Regular KL;
  text-align: center;
  font-size: 2rem;
  color: #eb6100;
}

.contents11 img {
  width: 100%;
  max-width: 600px;
}

.contents12 {
  text-align: center;
  margin: 0 auto;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
  text-shadow: 1px 2px 3px #808080;
}

.contents13 {
  max-width: 100%;
  margin: 0px auto;
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.8;
}

.contents13 h3 {
  font-family: Ryumin Bold KL;
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 100px 0;
}

.contents13 p {
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 100px 0;
}

.contents14 {
  width: 60%;
  margin: 0 auto;
}

.contents16 {
  padding: 80px 0px;
}

.contents17 {
  width: 100%;
  margin: 0px auto;
  text-align: center;
}
.img1 {
  margin-top: 100px;
  border-radius: 50% 50% 0 50%
}

.img2 {
  width: 80%;
}

.contents18 {
  width: 80%;
  margin: 0px auto;
  text-align: center;
  font-family: Ryumin Regular KL;
  text-align: center;
  margin: 0 auto;
  font-size: 8rem;
font-size: clamp(3rem, 1vw, 8rem);

  line-height: 1.8;
  color: #756a00;
}

.contents18 img {
  width: 100%;
}

.contents19 {
  padding: 100px 0;
}

.contents20 {
  width: 80%;
  margin: 0px auto;
  text-align: center;
  font-family: Ryumin Regular KL;
  text-align: center;
  margin: 0 auto;
  font-size: 8rem;
  font-size: clamp(3rem, 1vw, 8rem);
  line-height: 1.8;
  color: #756a00;
}

.contents20 img {
  width: 96%;
}

.contents21 {
  width: 100%;
  margin: 0px auto;
  padding: 100px 0;
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.8;
}

.contents22 {
  margin: 50px auto;
}

.contents22 img {
  width: 100%;
  max-width: 800px;
}

.contents24 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  color: #00b4d2;
}

.contents25 {
  font-family: Ryumin Regular KL;
  text-align: center;
  margin: 0 auto;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.8;
  color: #756a00;
}

.contents26 {
  font-size: 2.2rem;
  font-weight: 200;
  line-height: 1.8;
  text-align: center;
  padding: 30px;
}
.contents27 {
  margin: 0 auto;
  width: 90%;
  max-width: 700px;
}








@media screen and (max-width: 520px) {
  .contents1 {
    width: 90%;
    padding: 0px 0 0px 0;
    font-size: 2.0rem;
    text-align: left;
  }
  .contents1 img {
    width: 100%;
    padding: 10px 0;
  }
  .contents1 p{
    font-size: 1.2rem;
    text-align: left;
  }

  
  .contents1 h3{
    font-size: 1.6rem;
    padding: 30px 0 0 0;
  }

  .contents1 h4{
    font-size: 2.4rem;
  }

  .contents1 h5{
    font-size: 2.0rem;
  }

  .contents21 {
    width: 100%;
    padding: 0px 0 0px 0;
    font-size: 2.0rem;
    text-align: left;
  }
  .contents21 img {
    width: 100%;
    padding: 10px 0;
  }
  .contents21 p{
    font-size: 1.2rem;
    text-align: left;
  }

  .contents21 h2{
    font-size: 2.6rem;
  }

  .contents21 h3{
    font-size: 1.6rem;
    padding: 30px 0 0 0;
  }

  .contents21 h4{
    font-size: 2.4rem;
  }

  .contents21 h5{
    font-size: 2.0rem;
  }

  contents21 p{
    font-size: 1.2rem;
    text-align: left;
  }

  .contents2 {
    font-size: 2rem;
  }

	.contents3 {
    font-size: 1.6rem;
    font-weight: 200;
    line-height: 1.8;
  }

  .contents5 {
    font-size: 1.4rem;
    text-align: left;
  }

  .contents8 {
    font-size: 1.2rem;
    text-align: left;
}

.contents7 {
  width: 90%;
  font-size: 1.2rem;
  text-align: left;
  padding: 10px;
  line-height: 1.8;
}

.contents7 h4 {
  font-size: 2.0rem;
}

  .contents10 {
    width: 90%;
    margin: 0 auto;
    text-align: left;
  }
  
  .contents10 img {
    width: 100%;
  }

  .contents13 {
    max-width: 90%;
    text-align: left;
  }
  
  .contents13 {
    font-size: 1.8rem;
    text-align: left;
}
  
  .contents13 h3 {
    font-family: Ryumin Bold KL;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 30px 0;
  }

  .contents13 p {
    font-size: 2.2rem;
    padding: 50px 0;
    text-align: left;
  }

  .contents14 {
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }

  .contents15 {
    padding: 0px;
    text-align: left;
  }

  .contents16 {
    padding: 80px 0px;
    text-align: left;
  }

  .contents17 {
    margin: 10px;
    text-align: left;
  }

  .img1 {
    margin-top: 0px;
  }

  .img2 {
    width: 100%;
  }

  .contents20 {
    width: 100%;
    text-align: left;
  }

  
  .contents22 img {
    width: 90%;
  }

  .contents24 {
    font-size: 1.6rem;
    text-align: left;
  }

  .contents25 {
    font-size: 2rem;
    text-align: left;
  }
  
  .contents26 {
    font-size: 1.6rem;
    text-align: left;
  }






  

}







/* ------------------------------------ */

/* fadebox ---------------------------- */
#conceptCol .fadeBox {
  padding: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
}

#conceptCol .fadeBox .fadeImg {
  width: 50%;
  padding-top: 30%;
  position: relative;
  overflow: hidden;
}

#conceptCol .fadeBox .fadeImg img {
  width: 101%;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

#conceptCol .fadeBox #fadeImg1 {
  width: 62%;
  padding-top: 28%;
}

#conceptCol .fadeBox #fadeImg2 {
  width: 38%;
  padding-top: 28%;
}

#conceptCol .fadeBox #fadeImg3 {
  width: 31%;
  padding-top: 20%;
}

#conceptCol .fadeBox #fadeImg4 {
  width: 31%;
  padding-top: 20%;
}

#conceptCol .fadeBox #fadeImg5 {
  width: 38%;
  padding-top: 20%;
}


@media screen and (max-width: 768px) {
	#concept {
		padding: 30px 0 0;
		display: block;
		width:100%;
	}
	/* phtBox */
#conceptCol .phtBox {
		width: 100%;
		padding-top: 145px;
			margin: 0 0 0 auto;
	}
	#concept .phtBox::before {
		top: auto;
		display: block;
		background-image: none;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 100vw 35px 0;
		border-color: transparent transparent #fff transparent;
	}
	#concept .phtBox img {
		position: absolute;
		top: 50%;
		right:auto;
		left:50%;
		width: 100%;
		height: auto;
		-webkit-transform: translate(-50%,-50%);
    	transform: translate(-50%,-50%);
	}
	/* leadBox */
	.leadBox {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		/*box-sizing: border-box;*/
	}
	.leadBox .mainTitle .ttl {
		padding-left: 7%;
	}
	#concept .leadBox .lead {
		padding: 0 7%;
	}
	
	#concept .leadBox .txtBox {
		margin: 10px 0 0;
		padding: 15px 0 20px 7%;
	}
	#concept .leadBox .txtBox .txt {
		width: 62%;
	}
	#concept .leadBox .txtBox .btnMore {
		padding: 30px 0 0;
		min-width: 240px;
	}
	#concept .leadBox .txtBox .btnMore a {
		width: 100%;
		min-width: 100%;
	}
	#concept .leadBox .txtBox .map {
		width: 35%;
	}
  /* fadeBox */
  #conceptCol .fadeBox {
		padding: 0 0 0;
	}
	#conceptCol .fadeBox #fadeImg1 {
		width: 100%;
		padding-top: 45%;   
	}
	#conceptCol .fadeBox #fadeImg2 {
		width: 45%;
		padding-top: 28%;   
	}
	#conceptCol .fadeBox #fadeImg3 {
		width: 55%;
		padding-top: 28%;   
	}
	#conceptCol .fadeBox #fadeImg4 {
		width: 55%;
		padding-top: 28%;   
	}
	#conceptCol .fadeBox #fadeImg5 {
		width: 45%;
		padding-top: 28%;   
	}	
}

@media screen and (max-width: 480px) {
	/* phtBox */
	.phtBox {
		padding-top: 120px;
	}
}


/* ---------------------------------------- 
 - mainVisual 
---------------------------------------- */
/* mainVisual */
#mainVisual{
	position:relative;
	max-height: 100%;
}
#mainVisualCol{
	position:relative;
	width:100%;
	height: 100%;
	max-height: 100%;
	overflow: hidden;
}

/* mainText */
#mainVisual #mainVisualCol .mainText {
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	z-index:10;
	text-align: center;
	width:90%;
	max-width: 1000px;
	margin-top:-1.0em;
}
#mainVisual #mainVisualCol .mainText .txt {
	padding-bottom:0.5em;
	line-height:1.5;
	color: #fff;
	animation:fadeIn 1.7s 1.1s; 
	animation-fill-mode: both;
	font-size: 4.0rem;
	font-weight:500;
	margin:0 auto;
	display:inline-block;
	padding-left: 0.7em;
	letter-spacing: 0.1em;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@media screen and (max-width: 768px) {
	#mainVisual #mainVisualCol .mainText .txt {
		font-size: 3.3rem;
	}
}
@media screen and (max-width: 480px) {
	#mainVisual #mainVisualCol .mainText .txt {
		font-size: 2.2rem;
	}
}

.main{
	display: flex;
	justify-content: center;
	width: 90%;
	height: auto;
	margin: 0 auto;
	margin-top: 50px;
	margin-bottom: 50px;
}

@media screen and (max-width:880px) {
	.main{
		flex-direction: column;
    align-items: center;
	}
}


/* main */

.area1{
	width: 30%;
	margin-top: auto;
}

.area1 img {
  width: 100%;
  border-radius: 26px 100px 26px 26px;
}

.area1 h3{
  font-family: Ryumin Regular KL;
	font-size: 2rem;
	padding: 3rem;
  font-weight: 200;
  color: #756a00;
}

.area1 p{
  padding: 0 5px;
	font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.8;
}

@media screen and (max-width:880px) {
	.area1{
		width: 100%;
	}
  .area1 p{
    text-align: left;
    padding: 0 5px;
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 1.8;
  }
}

.area2{
  width: 60%;
	line-height: 2;
	text-align: left;
	padding: 50px 15px;
}
.area2 h3{
	font-size: 2.5rem;
  color: #756a00;
  margin-bottom: 30px;
  font-family: Ryumin Regular KL;
}

.area2 p{
	font-size: 1.2rem;
}

@media screen and (max-width:880px) {
  .area2{
    padding: 0px 0 0 0;
  }

	.area2{
		width: 100%;
	}

  .area2 img{
		width: 70%;
	}

  .area2 h3 {
    font-size: 1.6rem;
  }

  .area2 p {
    font-size: 1.2rem;
  }
}


/* main2 */

.main2 {
	display: flex;
	justify-content: center;
	width: 90%;
	height: auto;
	margin: 0 auto;
	margin-top: 50px;
	margin-bottom: 50px;
}

@media screen and (max-width:880px) {
	.main2 {
		flex-direction: column-reverse;
    align-items: center;
	}
}


.area3{
	width: 40%;
	line-height: 2;
	vertical-align: middle;
  display: inline-block;
	padding: 150px 15px;
  background-image: url(../images/6.jpg);
  background-size: cover;

}
.area3 h3{
  font-family: Ryumin Regular KL;
	font-size: 2rem;
	padding: 3rem;
  font-weight: 200;
  color: #fff;
}

.area3 p{
  padding: 0 5px;
	font-size: 1.6rem;
  font-weight: 200;
  line-height: 1.8;
}

@media screen and (max-width:880px) {
	.area3{
		width: 100%;
	}
  .area3 p{
    text-align: left;
    padding: 0 5px;
    font-size: 1.4rem;
    font-weight: 200;
    line-height: 1.8;
  }
}

.area5{
	width: 40%;
	line-height: 2;
	vertical-align: middle;
  display: inline-block;
	padding: 150px 15px;
  background-image: url(../images/7.jpg);
  background-size: cover;

}
.area5 h3{
  font-family: Ryumin Regular KL;
	font-size: 2rem;
	padding: 3rem;
  font-weight: 200;
  color: #fff;
}

.area5 p{
  padding: 0 5px;
	font-size: 1.6rem;
  font-weight: 200;
  line-height: 1.8;
}

@media screen and (max-width:880px) {
	.area5{
		width: 100%;
	}
  .area5 p{
    text-align: left;
    padding: 0 5px;
    font-size: 1.4rem;
    font-weight: 200;
    line-height: 1.8;
  }
}

.area6{
	width: 40%;
	line-height: 2;
	vertical-align: middle;
  display: inline-block;
	padding: 150px 15px;
  background-image: url(../images/8.jpg);
  background-size: cover;

}
.area6 h3{
  font-family: Ryumin Regular KL;
	font-size: 2rem;
	padding: 3rem;
  font-weight: 200;
  color: #fff;
}

.area6 p{
  padding: 0 5px;
	font-size: 1.6rem;
  font-weight: 200;
  line-height: 1.8;
}

ul {
  font-size: 1.2rem;
}

@media screen and (max-width:880px) {
	.area6{
		width: 100%;
	}
  .area6 p{
    text-align: left;
    padding: 0 5px;
    font-size: 1.4rem;
    font-weight: 200;
    line-height: 1.8;
  }
}

.area4{
  width: 60%;
	line-height: 2;
	text-align: left;
	padding: 50px 15px;
}
.area4 h3{
  font-family: Ryumin Regular KL;
	font-size: 2.5rem;
  color: #756a00;
}

.area4 p{
	font-size: 1.6rem;
  font-weight: 200;
  line-height: 1.8;
}

@media screen and (max-width:880px) {
  .area4{
    padding: 50px 0 0 0;
  }

	.area4{
		width: 100%;
	}

}


.area7{
	width: 60%;
	margin-top: auto;
}

.area7 img {
  width: 100%;
  border-radius: 26px 100px 26px 26px;
}

.area7 h3{
  font-family: Ryumin Regular KL;
	font-size: 2rem;
	padding: 3rem;
  font-weight: 200;
  color: #756a00;
}

.area7 p{
  padding: 0 5px;
	font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.8;
}

@media screen and (max-width:880px) {
	.area7{
		width: 100%;
	}
  .area7 p{
    text-align: left;
    padding: 0 5px;
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 1.8;
  }
}

.area8{
  width: 40%;
	line-height: 2;
	text-align: left;
	padding: 50px 15px;
}
.area8 h3{
	font-size: 2.5rem;
  color: #756a00;
  margin-bottom: 30px;
  font-family: Ryumin Regular KL;
}

.area8 p{
	font-size: 1.2rem;
}

@media screen and (max-width:880px) {
  .area8{
    padding: 0px 0 0 0;
  }

	.area8{
		width: 100%;
	}

  .area8 img{
		width: 70%;
	}

  .area8 h3 {
    font-size: 1.6rem;
  }

  .area8 p {
    font-size: 1.2rem;
  }
}





/* noteBox */
#mainVisual #mainVisualCol .noteBox {
	position:absolute;
	top:15px;
	right:1%;
	z-index:10;
	text-align: center;
	background: #fff;
	padding: 10px 15px;
	background-color: rgba(255,255,255,0.95);
}
#mainVisual #mainVisualCol .noteBox .txt a {
	font-size: 1.3rem;
	color:#c21008;
}
#mainVisual #mainVisualCol .noteBox:nth-child(3) {
	top:70px;
}
@media screen and (max-width: 768px) {
	#mainVisual #mainVisualCol .noteBox {
		padding: 5px 7px;
	}
	#mainVisual #mainVisualCol .noteBox .txt a {
		font-size: 1.2rem;
	}
}

/* bannerBox */
#mainVisual #mainVisualCol .bannerBox {
	position:absolute;
	bottom:20px;
	left:4%;
	z-index:20;
	width:335px; /* バナー2つまでの場合 */
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#mainVisual #mainVisualCol .bannerBox .banner{
	width: 90%; /* バナー1つの場合 */
	width: 47%; /* バナー2つの場合 */	
    max-width: 175px;
}
#mainVisual #mainVisualCol .bannerBox a {
	-webkit-transition: .3s;
    transition: .3s;
}
#mainVisual #mainVisualCol .bannerBox a:hover {
	opacity:0.9;
}





/* ムービング */
#mainVisualCol .slick-list {
    width: 105%;
}	
#mainVisualCol .slick-slide{
	width:100%;
	margin: 0 auto;
	text-align:center;
	transform: translate(-4%);
}
#mainVisualCol .slick-slide.slick-current {
    -webkit-animation: slideAnime 10s linear 0s;
    animation: slideAnime 10s linear 0s;
	animation-fill-mode: forwards;
}	
@-webkit-keyframes slideAnime {
0% {
	transform: translate(0%);
    }
100% {
	transform: translate(-4%);
    }
}
@keyframes slideAnime { 
0% {
	transform: translate(0%);
    }
100% {
	transform: translate(-4%);
    }
}
@media screen and (max-width: 768px){
	#mainVisualCol .slick-list {
		width: 110%;
	}	
	#mainVisualCol .slick-slide{
		transform: translate(-9%);
	}
	#mainVisualCol .slick-slide.slick-current {
		-webkit-animation: slideAnime 10s linear 0s;
		animation: slideAnime 10s linear 0s;
		animation-fill-mode: forwards;
	}	
	@-webkit-keyframes slideAnime {
	0% {
		transform: translate(0%);
		}
	100% {
		transform: translate(-9%);
		}
	}
	@keyframes slideAnime { 
	0% {
		transform: translate(0%);
		}
	100% {
		transform: translate(-9%);
		}
	}
}

/* mainImage（1枚画像） */
.mainImage {
    position: relative;
    width:100%;
	max-height: 100%;
    display: inline-block;
    overflow: hidden;
}
.mainImage > img {
    position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
@supports ( object-fit: cover ) {
    .mainImage img {
        position: static;
        height: 100%;
        width: 100%;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        -webkit-transform: none;
        transform: none;
    }
}
@supports (-ms-ime-align: auto) { /* Edgeのみ */
	.mainImage > img {
        position: absolute;
        top: 50%;
    	left: 50%;
    	-webkit-transform: translateX(-50%) translateY(-50%);
    	transform: translateX(-50%) translateY(-50%);
    }  
}

/* ---------------------------------------- 
 - contents（sns）
---------------------------------------- */
#sns #snsCol {
	padding: 60px 3%;
	width: 94%;
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}
#sns #snsCol .lead {
	padding: 0 0 40px;
	width: 90%;
	max-width: 700px;
	font-size:1.6rem;
	margin: 0 auto;
	text-align: center;
}

.banner2 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	background-color: #fff;
}

.banner2 strong,
.banner2 p {
	margin: 0 10px;
}

.banner2 p {
	width: 36px;
}

footer {
	width: 100%;
	height: 150px;
	background-color: #f3f3f0;
}

.footer1 {
	width: 110px;
	margin: 0 auto;
	text-align: center;
	font-size: 10px;
}

.footer1 img {
  width: 100%;
}

.footer3 {
	font-size: 10px;
	text-align: center;
	padding: 10px;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
スライドイン表示後にマスクがスライドアウトするアニメーション
----------------------------*/

.box {
  width: 100%;
  margin: 0 0 2% 0;
  overflow: hidden;
}

.box .boxInner {
  opacity: 0;
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }
  
  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(100%);
  }
}

.isPlay {
  animation-name: play;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
}

.isPlay:before {
  animation-name: maskOut;
  animation-duration: .5s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-image: linear-gradient( 109.6deg,  rgb(255, 255, 255) 11.2%, rgb(133, 204, 230) 91.1% );
}

.circle {
  border-radius: 10%;
}

.btn {
  background: #3193fd;
  color: #fff;
  display: block;
  padding: 0 35px;
  height: 45px;
  line-height: 45px;
  font-size: 2.4rem;
  text-decoration: none;
  border-radius: 30px;
}

@media screen and (max-width: 480px) {
	.btn {
    font-size: 1.6rem;
  }
}


/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 1000px) {
  /*
  スマホ時はテキストエリアと画像を縦に並べるので、
  「position: static;」で位置の固定を解除する。
  「height: auto;」で高さの固定も解除する。
  */
  .content {
    height: auto;
    position: static;
    margin: 0;
  }
  .text {
    max-width: 100%;
    padding: 60px 20px;
    position: static;
  }
  .img {
    max-width: 100%;
    position: static;
  }
}


/*-------------------------------------------
skewを使った斜め背景
-------------------------------------------*/

.slant-bg {
  width: 100%;
  padding: 150px 0;
  clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% calc(100% - 7vw), 0 100%);
  background-color: #f3f3f0;
}

.slant-bg1 {
  width: 100%;
  padding: 100px 0;
  background-color: #f3f3f0;
}

.slant-bg2 {
  width: 100%;
  padding: 0px 0;
  background-color: #f3f3f0;
}

@media screen and (max-width: 520px) {
  .slant-bg {
    padding: 50px 0;
  }
}

/*-------------------------------------------
要素を横並び
-------------------------------------------*/

.example2 {
  display: flex;
  flex-wrap: wrap;
  padding: 100px 50px;
}
.example2 div{
  /*コレ*/width: calc(100% / 3 - 20px);
  /*コレ追加*/margin: 10px;
  border: 1px solid #333;
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
  text-align: center;
}

.example2 h3{
  font-family: Ryumin Regular KL;
  text-align: center;
	font-size:2.0rem;
  border-bottom:1px solid;
  padding-bottom: 1px;
}

/*-------------------------------------------
Q and A
-------------------------------------------*/

.Qa-Box {
  width: 80%;
  margin: 0 auto;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: baseline;
  margin: 15px 0;
  padding: 15px;
}

.Qa-Box .Qa dt {
  background: #F5F5F5;
}

.Qa-Box .Qa dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
}

.Qa-Box .Qa dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
}

.Qa-Box .Qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #6699B7;
  width: 2em;
  height: 2em;
}

.Qa-Box .Qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #D65556;
  width: 2em;
  height: 2em;
}

@media screen and (max-width: 960px) {
  .Qa-Box {
    width: 95%;
  }
}

/*-------------------------------------------
ボタン点滅
-------------------------------------------*/

.blink a {
  text-align: center;
	font-weight: 600;
	color: #fff;
	background: #f66946;
	padding: 18px 70px;
	border-radius: 5px;
	text-decoration: none;
	box-shadow: 0 4px 0 3193fd;
}

.blink {
	-webkit-animation: blink 1s ease-in-out infinite alternate;
	animation: blink 1s ease-in-out infinite alternate;
  padding: 100px o;
}
@-webkit-keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*-------------------------------------------
グリッド
-------------------------------------------*/

@media screen and (min-width: 768px) {
  .lp-achievement__badge[data-v-0abc011c] {
      box-sizing:border-box
  }
}

.lp-fact[data-v-9d9ae73c] {
  padding: 40px 30px;
  background-color: #fff;
  
}

@media screen and (max-width: 520px) {
  .lp-fact[data-v-9d9ae73c] {
      padding:30px 20px;
      clip-path: polygon(0 0, 100% 0, 100% 97%, 85% 97%, 50% 100%, 15% 97%, 0 97%);
  }
}

@media screen and (min-width: 768px) {
  .lp-fact[data-v-9d9ae73c] {
      padding:80px 230px;
      
  }
}

@media screen and (min-width: 768px) {
  .lp-fact__inner[data-v-9d9ae73c] {
      display:grid;
      grid-template: "heading list" auto "text list" auto "note list" 1fr/1fr 680px;
      margin: auto;
      max-width: 1200px;
      position: relative
  }
}

.lp-fact__heading[data-v-9d9ae73c] {
  font-weight: 700;
  font-size: 2.4rem;
}

@media screen and (max-width: 520px) {
 .lp-fact__heading[data-v-9d9ae73c] {
    font-size: 1.6rem;
    padding: 30px 0 0 0;
    }
}

@media screen and (min-width: 768px) {
  .lp-fact__heading[data-v-9d9ae73c] {
      grid-area:heading;
  }
}

.lp-fact__heading-strong[data-v-9d9ae73c] {
  color: #00b4d2
}

.lp-fact__text[data-v-9d9ae73c] {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8
}

@media screen and (min-width: 768px) {
  .lp-fact__text[data-v-9d9ae73c] {
      grid-area:text
  }

  .lp-fact__text br[data-v-9d9ae73c]:nth-of-type(2) {
      display: none
  }
}

.lp-fact__text br[data-v-9d9ae73c]:nth-of-type(3) {
  display: none
}

@media screen and (min-width: 768px) {
  .lp-fact__text br[data-v-9d9ae73c]:nth-of-type(3) {
      display:block
  }
}

.lp-fact__note[data-v-9d9ae73c] {
  margin-top: 6px;
  font-size: 10px
}

@media screen and (min-width: 768px) {
  .lp-fact__note[data-v-9d9ae73c] {
      grid-area:note
  }
}

.lp-fact__img[data-v-9d9ae73c] {
  display: block;
  margin: 0 auto -24px;
  width: 290px
}

@media screen and (min-width: 768px) {
  .lp-fact__img[data-v-9d9ae73c] {
      margin:0;
      width: 480px;
      position: absolute;
      bottom: -5px;
      left: -25px
  }
}

.lp-fact__list[data-v-9d9ae73c] {
  margin: 0 -10px;
  position: relative
}

@media screen and (min-width: 768px) {
  .lp-fact__list[data-v-9d9ae73c] {
      grid-area:list;
      margin: 0
  }
}

.lp-fact__item[data-v-9d9ae73c] {
  padding: 30px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,.16)
}

@media screen and (min-width: 768px) {
  .lp-fact__item[data-v-9d9ae73c] {
      display:flex;
      align-items: center;
      padding: 0 10px;
      height: auto;
      border-radius: 40px
  }
}

.lp-fact__item+.lp-fact__item[data-v-9d9ae73c] {
  margin-top: 8px
}

@media screen and (min-width: 768px) {
  .lp-fact__item+.lp-fact__item[data-v-9d9ae73c] {
      margin-top:16px
  }
}

.lp-fact__item-heading[data-v-9d9ae73c] {
  font-weight: 700;
  font-size: 18px
}

@media screen and (min-width: 768px) {
  .lp-fact__item-heading[data-v-9d9ae73c] {
      width:300px
  }
}

.lp-fact__item-heading-strong[data-v-9d9ae73c] {
  color: #00b4d2;
  font-size: 2.2rem;
}

.lp-fact__item-text[data-v-9d9ae73c] {
 text-align: left;
 
}

@media screen and (min-width: 768px) {
  .lp-fact__item-text[data-v-9d9ae73c] {
      flex:1;
      margin: 30px 0;
      
  }
}

.lp-fact__h {
  text-align: center;
  margin: 0 30px 0 0;
  font-size: 2.6rem;

  font-weight: 700;
}

/*-------------------------------------------
ピックアップ
-------------------------------------------*/


.lp-about[data-v-67cb759b] {
  padding: 40px 30px;
  background-image: url(../images/2.jpg);
  background-size: cover;
}

@media screen and (max-width: 320px) {
  .lp-about[data-v-67cb759b] {
      padding:30px 20px
  }
}

@media screen and (min-width: 768px) {
  .lp-about[data-v-67cb759b] {
      padding:80px 30px
  }
}

@media screen and (min-width: 768px) {
  .lp-about__inner[data-v-67cb759b] {
      margin:auto;
      max-width: 1136px
  }
}

.lp-about__subtitle[data-v-67cb759b] {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  position: relative;
  color: #fff;
  background-color: #00b4d2;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1
}

@media screen and (min-width: 768px) {
  .lp-about__subtitle[data-v-67cb759b] {
      margin:auto;
      width: 488px;
      height: 52px;
      border-radius: 26px;
      font-size: 22px
  }
}

.lp-about__subtitle[data-v-67cb759b]:before {
  position: absolute;
  top: 100%;
  left: 50%;
  border: 8px solid transparent;
  border-top-color: #00b4d2;
  content: "";
  transform: translateX(-50%)
}

.lp-about__heading[data-v-67cb759b] {
  margin-top: 10px;
  color: #00b4d2;
  font-weight: 700;
  font-size: 24px;
  text-align: center
}

@media screen and (max-width: 320px) {
  .lp-about__heading[data-v-67cb759b] {
      font-size:21px
  }
}

@media screen and (min-width: 768px) {
  .lp-about__heading[data-v-67cb759b] {
      margin-top:20px;
      font-size: 36px;
      line-height: 1.4
  }

  .lp-about__heading br[data-v-67cb759b]:nth-of-type(2) {
      display: none
  }
}

.lp-about__text[data-v-67cb759b] {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .lp-about__text[data-v-67cb759b] {
      margin-top:15px;
      text-align: center
  }
}

.lp-about__list[data-v-67cb759b] {
  margin: 24px -10px 0
}

@media screen and (min-width: 768px) {
  .lp-about__list[data-v-67cb759b] {
      display:flex;
      margin: 130px 0 0
  }
}

.lp-about__item[data-v-67cb759b] {
  padding: 30px;
  background-color: #fff;
  border-radius: 16px
}

@media screen and (min-width: 768px) {
  .lp-about__item[data-v-67cb759b] {
      flex:1;
      border-radius: 40px
  }
}

.lp-about__item+.lp-about__item[data-v-67cb759b] {
  margin-top: 8px
}

@media screen and (min-width: 768px) {
  .lp-about__item+.lp-about__item[data-v-67cb759b] {
      margin:0 0 0 16px
  }
}

.lp-about__item-subtitle[data-v-67cb759b] {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 134px;
  height: 24px;
  color: #fff;
  background-color: #00b4d2;
  border-radius: 12px;
  font-size: 12px
}

@media screen and (min-width: 768px) {
  .lp-about__item-subtitle[data-v-67cb759b] {
      margin:0 auto 0 0
  }
}

.lp-about__item-subtitle-num[data-v-67cb759b] {
  margin-left: 4px;
  font-size: 18px
}

.lp-about__item-heading[data-v-67cb759b] {
  margin-top: 8px;
  font-weight: 700;
  font-size: 20px;
  text-align: center
}

@media screen and (min-width: 768px) {
  .lp-about__item-heading[data-v-67cb759b] {
      font-size:26px;
      text-align: left;
      line-height: 1.4
  }
}

.lp-about__item-text[data-v-67cb759b] {
  margin-top: 10px;
  font-size: 1.2rem;
}

.lp-about__item-img[data-v-67cb759b] {
  margin: 10px -30px
}

@media screen and (min-width: 768px) {
  .lp-about__item-img[data-v-67cb759b] {
      margin:10px -40px 0;
      width: calc(100% + 80px);
  }
}

.lp-about__item-img img[data-v-67cb759b] {
  display: block;
  margin: auto;
}

.lp-about .lp-cta[data-v-67cb759b] {
  margin-top: 24px
}

@media screen and (min-width: 768px) {
  .lp-about .lp-cta[data-v-67cb759b] {
      margin-top:40px
  }
}



.lp-cta__btn[data-v-71256583] {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px auto auto;
  width: 275px;
  height: 48px;
  color: #fff;
  background-color: #f66946;
  border-radius: 8px;
  box-shadow: 0 4px 0 #e4360b;
  font-size: 16px;
  -webkit-animation: lp-cta__btn-data-v-71256583 2s infinite;
  animation: lp-cta__btn-data-v-71256583 2s infinite;
  cursor: pointer;
}

@media screen and (max-width: 320px) {
  .lp-cta__btn[data-v-71256583] {
      width:100%
  }
}

@media screen and (min-width: 768px) {
  .lp-cta__btn[data-v-71256583] {
      width:420px;
      height: 80px;
      font-size: 22px;
  }
}

@-webkit-keyframes lp-cta__btn-data-v-71256583 {
  0%,55%,65%,70%,80% {
      box-shadow: 0 4px 0 #e4360b;
      transform: translateY(0)
  }

  60%,75% {
      box-shadow: none;
      transform: translateY(4px)
  }
}

@keyframes lp-cta__btn-data-v-71256583 {
  0%,55%,65%,70%,80% {
      box-shadow: 0 4px 0 #e4360b;
      transform: translateY(0)
  }

  60%,75% {
      box-shadow: none;
      transform: translateY(4px)
  }
}

/*-------------------------------------------
矢印（三角）
-------------------------------------------*/

.arrow_animation_button {
  display: inline-block;
  position: relative;
  padding: 10px 20px 10px 50px;
  color: #fff;
  border-radius: 10px;
  transform: rotate(100deg); /* ボックスを回転させる（下向き矢印） */
}

 
.arrow_animation_button::before { /* 矢印の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  transform: rotate(35deg);
  animation: slideBlink 1s linear infinite; /* アニメーションの初期設定 */
}
 
@keyframes slideBlink { /* アニメーションの内容 */
  from { /* アニメーション開始時のスタイル */
    opacity: 0;
    left: 8px;
  }
  to { /* アニメーション終了時のスタイル */
    opacity: 1;
    left: 25px;
  }
}

/*-------------------------------------------
二つ並んだ要素の一部を重ねる

-------------------------------------------*/
.row {
  display: flex;
  margin-bottom: 60px;
  padding: 20px 0;
}

.column--background1 {
  align-self: flex-start;
  width: 60%;
}
.column--foreground1 {
  align-self: flex-end;
  width: calc(40% + 100px);
  margin-left: -100px;
  transform: translate(0, 60px);
}

.column--background2 {
  align-self: flex-start;
  width: 60%;
}
.column--foreground2 {
  align-self: flex-end;
  width: calc(40% + 100px);
  margin-right: -100px;
  transform: translate(0, 60px);
}

.right {
  font-family: Ryumin Regular KL;
  text-align: right;
	font-size: 2.5rem;
  color: #756a00;
}

.left {
  font-family: Ryumin Regular KL;
  text-align: left;
	font-size: 2.5rem;
  color: #756a00;
}

.row p{
	font-size: 1.2rem;
  border: 1px solid #444;
  padding: 10px;
  background-color: #fff;
  border-radius: 8px;
}

@media screen and (max-width:520px) {
  .right {
    font-size: 1.8rem;
  }
  .left {
    font-size: 1.8rem;
  }
}



/*-------------------------------------------
テキストをスライドしながらフェードイン
-------------------------------------------*/

 /* 左からフェードイン */
 .slide-left {
	opacity: 0;
	transform: translate(-20px, 0);
	transition: all 1s ease-out;
 }

 .slide-left p{
  font-family: Ryumin Regular KL;
	font-size: 3.0rem;
  font-weight: 800;
  color: #00b4d2;
  padding: 50px 0 20px 0;
}

@media screen and (max-width: 520px) {
  .slide-left p{
    font-size: 2.4rem;
  }
}

/*-------------------------------------------
アンダーライン
-------------------------------------------*/

/* ブルー */
.highlight {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.3em; /* 線の太さ */
  text-decoration-color: rgba(0, 180, 210, 0.3); /* 線の色 */
  text-underline-offset: -0.1em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

.highlight1 {
  font-size: 2.4rem;
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.3em; /* 線の太さ */
  text-decoration-color: rgba(0, 180, 210, 0.3); /* 線の色 */
  text-underline-offset: -0.1em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}
.highlight0 {
  font-size: 2.4rem;
  
}

.highlight3 {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.3em; /* 線の太さ */
  text-decoration-color: rgba(255, 222, 89, 0.5); /* 線の色 */
  text-underline-offset: -0.1em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

.highlight4 {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.3em; /* 線の太さ */
  text-decoration-color: rgba(0, 180, 210, 0.3); /* 線の色 */
  text-underline-offset: -0.1em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

@media screen and (max-width: 520px) {
  .highlight1 {
    font-size: 1.2rem;
    text-decoration: underline; /* 下線 */
    text-decoration-thickness: 0.3em; /* 線の太さ */
    text-decoration-color: rgba(0, 180, 210, 0.3); /* 線の色 */
    text-underline-offset: -0.1em; /* 線の位置。テキストに重なるようにやや上部にする */
    text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
    text-align: left;
  }
.highlight1 {
  font-size: 1.2rem;
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.3em; /* 線の太さ */
  text-decoration-color: rgba(0, 180, 210, 0.3); /* 線の色 */
  text-underline-offset: -0.1em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
  text-align: left;
}
.highlight0 {
  font-size: 1.2rem;
  text-align: left;
}
.highlight3 {
  font-size: 1.2rem;
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.3em; /* 線の太さ */
  text-decoration-color: rgba(255, 222, 89, 0.5); /* 線の色 */
  text-underline-offset: -0.1em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
  text-align: left;
}
}
/* 波線 */
.wavy {
  text-decoration:underline wavy blue;
  text-decoration-color: rgba(0, 180, 210, 0.3); /* 線の色 */
  text-underline-offset: -0.1em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

.simple-border5 {
  text-decoration:underline wavy;
  -webkit-text-decoration:underline wavy;
  text-decoration-color: rgba(0, 180, 210, 0.5); /* 線の色 */
  text-decoration-thickness: 0.2em; /* 線の太さ */
  text-underline-offset: -0.0em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

/*-------------------------------------------
　　　　矢印が動いてスクロールを促す
-------------------------------------------*/

/*スクロールダウン全体の場所*/
.scrolldown4{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
bottom:20%;
right:5%;
  /*矢印の動き1秒かけて永遠にループ*/
animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
    0%{bottom:1%;}
    50%{bottom:3%;}
   100%{bottom:1%;}
}

/*Scrollテキストの描写*/
.scrolldown4 span{
  /*描画位置*/
position: absolute;
left:-20px;
bottom:10px;
  /*テキストの形状*/
color: #222;
font-size: 0.7rem;
letter-spacing: 0.05em;
/*縦書き設定*/
-ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*矢印の形状*/
  width: 1px;
  height: 20px;
  background: #222;
  transform: skewX(-31deg);
}

.scrolldown4:after{
content:"";
  /*描画位置*/
position: absolute;
bottom:0;
right:0;
  /*矢印の形状*/
width:1px;
height: 50px;
background:#222;
}

/*-------------------------------------------
　　　　矢印が動いてスクロールを促す(横）
-------------------------------------------*/
.btn1 { display: inline-block; padding: 1em 7em 1em 1em; position: relative; transition: all ease .3s;}
.btn1::before { display: block; position: absolute; right: 1em; top: 50%; transform: translateY(-50%); width: 2em; height: 2em; border-radius: 50%; content: "";}
.btn1::after { display: block; position: absolute; top: 50%; right: 1.8em; transform: translateY(-50%) rotate(45deg); width: 2em; height: 2em; border-top: 2px solid #000; border-right: 2px solid #000; content: ""; animation: move-arrow 1.5s linear infinite;}
.btn1:hover { color: #fff;}
@keyframes move-arrow {
  0% { right: 3em; opacity: 0;}
  30% { opacity: 1;}
  60% { opacity: 1;}
  100% { right: 1em; opacity: 0;}
}


/*-------------------------------------------
　　　　スマホ＆PC画像
-------------------------------------------*/

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/*-------------------------------------------
　　　　体験談
-------------------------------------------*/

.taiken{
  width: 100%;
  margin: 0px auto;
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.8;
  font-family: Ryumin Regular KL;
}
.taiken img{
  max-width: 360px;
  padding: 20px 0;
}


.main1 {
	display: flex;
	justify-content: center;
	width: 95%;
	height: auto;
	margin: 0 auto;
	margin-top: 50px;
	margin-bottom: 50px;
}

@media screen and (max-width:880px) {
	.main1 {
    align-items: center;
	}
}


/*-------------------------------------------
　　　　横幅広いPC用
-------------------------------------------*/


@media screen and (min-width: 1920px) {
	/* 2000px以上に適用されるCSS（PC用） */
  .contents1 p{
    font-size: 3.6rem;
  }
  .contents2 {
    font-size: 7.6rem;
}
.lp-about__inner[data-v-67cb759b] {
  margin: auto;
  max-width: 90%;
}
.lp-about__item-text[data-v-67cb759b] {
  font-size: 2.2rem;
}
.lp-about__item-heading[data-v-67cb759b] {
  font-size: 46px;
}
.lp-about__text[data-v-67cb759b] {
  font-size: 2.6rem;
}
.area2 h3 {
  font-size: 4.5rem;
}
.area2 p {
  font-size: 2.2rem;
}
.area2 li {
  font-size: 2.2rem;
}
.lp-fact__heading[data-v-9d9ae73c] {
  font-size: 5.4rem;
}
.contents13 p {
  font-size: 6.0rem;
}
.highlight1 {
  font-size: 5.4rem;
}
.slide-left p {
  font-size: 6.0rem;
}
.right {
  font-size: 5.0rem;
}
.left {
  font-size: 5.0rem;
}
.row p {
  font-size: 2.2rem;
}
.contents13 h3 {
  font-size: 6.0rem;
}
.contents7 {
  font-size: 2.6rem;
}
.taiken img {
  max-width: 660px;
  padding: 20px 0;
}
.contents3 {
  font-size: 4.2rem;
}
.contents2 {
  font-size: 5.6rem;
}
.area7 p {
  font-size: 2.2rem;
}
li {
  font-size: 2.2rem;
}
.contents1 h4 {
  font-size: 4.6rem;
}
.contents1 p {
  font-size: 2.6rem;
}
}

/*-------------------------------------------
申込みボタン
-------------------------------------------*/
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn--radius {
  border-radius: 100vh;
}

/*-------------------------------------------
テーブル
-------------------------------------------*/
@media screen and (max-width: 767px) {
  table {
    display: block;
    width: 100%;
    text-align: left;
  }
  table tbody {
    display: block;
    width: 100%;
  }
  table tr {
    display: block;
    width: 100%;
  }
  table th {
    display: block;
    width: 100%;
    color: #808080;
  }
  }

  /*-------------------------------------------
ボタン
-------------------------------------------*/
.shiny_btn02 {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 40px;
  color: #ffffff;
  background-image: linear-gradient(45deg, #06dd3c 0%, #02c032 100%);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border-bottom: solid 3px #00751d;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.shiny_btn02::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny_btn02 3s ease-in-out infinite;
  transform-origin: unset;
}

/* マウスオーバーした際のデザイン */
.shiny_btn02:hover {
  background-image: -webkit-linear-gradient(top, #9cd3aa, #8ac499); /* グラデーション背景色 */
  background-image: -moz-linear-gradient(top, #9cd3aa, #8ac499); /* グラデーション背景色 */
  background-image: -ms-linear-gradient(top, #9cd3aa, #8ac499); /* グラデーション背景色 */
  background-image: -o-linear-gradient(top, #9cd3aa, #8ac499); /* グラデーション背景色 */
  background-image: -webkit-gradient(to bottom, #9cd3aa, #8ac499); /* グラデーション背景色 */
  color: #fff;
}

/* 光るアニメーション */
@-webkit-keyframes shiny_btn02 {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}


@media screen and (max-width: 520px) {
  .shiny_btn02 {
    font-size: 1.7rem;
  }
}

/* 点滅 */
.blink1 {
	animation: blinking 1s ease-in-out infinite alternate;
}
 
@keyframes blinking {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* カウントタイマー */
#CDT {
  width: 100%;
  text-align: center;
  font-size: 49px;
  font-weight: bold;
  color: #ffffff;
  font-family: 'Noto Sans JP', sans-serif;}
  #CDT01 {
  width: 100%;
  text-align: center;
  font-size: 49px;
  font-weight: bold;
  color: #ffffff;
  font-family: 'Noto Sans JP', sans-serif;
  }
  
  .ttl {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  line-height: 1.5;
  }
  
  .timer {
      background: #d00000;
      margin: 5px auto;
      padding: 5px;
      text-align: center;
      font-size: 2.5rem;
      color: #fff;
      line-height: 1.5;
      font-weight: 600;
  }

  @media screen and (max-width:880px) {
    #CDT {
      font-size: 29px;
     }
      #CDT01 {
      font-size: 29px;
      }
    .timer {
      font-size: 1.5rem;
  }
  }
