@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Noto+Serif+JP:wght@500;700&display=swap');

@font-face {
  font-family: 'icomoon';
  src:  url('/fonts/icomoon.eot?imfjci');
  src:  url('/fonts/icomoon.eot?imfjci#iefix') format('embedded-opentype'),
    url('/fonts/icomoon.ttf?imfjci') format('truetype'),
    url('/fonts/icomoon.woff?imfjci') format('woff'),
    url('/fonts/icomoon.svg?imfjci#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow_w:before {
  content: "\e900";
}
.icon-square_ic:before {
  content: "\e901";
}

/*font{
	font-family: 'Noto Sans JP', sans-serif;
font-weight: 500;
	font-family: 'Noto Serif JP', serif;
font-weight: 700;
}*/

/*----------------------------------------------------------
 調整用
---------------------------------------------------------- */
.fs_pait{
	font-feature-settings : "palt";
}

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

body{
  font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
	line-height: 1.5;
  font-size: 18px;
}

img{
  width: auto;
  max-width: 100%;
}

a{
  display: inline-block;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

a:hover{
  opacity: 0.6;
}

/* ---------------------------------------------------------------- *
	inner
 * ---------------------------------------------------------------- */
.inner{
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
/* PC */
@media (min-width: 769px) , print{
  .inner{
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* SP */
@media (max-width: 768px) {
  .inner{
    width: 95%;
  }
}

/* ---------------------------------------------------------------- *
	p
 * ---------------------------------------------------------------- */
.text p{
	margin-bottom: 1em;
}

.text p:last-child{
	margin-bottom: 0;
}

/* ---------------------------------------------------------------- *
	medhia
 * ---------------------------------------------------------------- */
/* PC */
@media (min-width: 769px) , print{
  .no-pc, .spOnly { display: none !important;}
	.pcOnly{display:block !important;}
}

/* SP */
@media (max-width: 768px) {
  .no-sp, .pcOnly { display: none !important;}
	.spOnly{display: block !important;}
}


/* ---------------------------------------------------------------- *
	wrap
 * ---------------------------------------------------------------- */
#wrapper{
  padding-top: 10px;
  position: relative;
}
#wrapper::before{
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
	background-image: url("../img/rainbow_bg.png");
  background-position: center center;
  background-repeat: repeat;
}


/* ---------------------------------------------------------------- *
	square_ttl
 * ---------------------------------------------------------------- */
.square_ttl{
	font-size: 24px;
	color: #1cab37;
	margin-bottom: 10px;
	text-align: left;
	padding-left: 32px;
	text-indent: -32px;
	position: relative;
}
.square_ttl::before{
	font-family: 'icomoon' !important;
  content: "\e901";
	margin-right: 10px;
  font-size: 22px;
  vertical-align: bottom;
}

/* SP */
@media (max-width: 768px) {
	.square_ttl{
		font-size: 22px;
	}
}

/* ---------------------------------------------------------------- *
	btn
 * ---------------------------------------------------------------- */
.btnWrap{
	margin-left: auto;
	margin-right: auto;
  width: 100%;
  display: block;
}

/* PC */
@media (min-width: 769px) , print{
	.btnWrap{
		max-width: 600px;
	}
}

.grd_btn{
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  padding: 20px;
  border-radius: 999px;
  text-align: center;
  /*background: -webkit-linear-gradient(0deg, #6dbb58 0%, #d0be23 100%);
  background: linear-gradient(90deg, #6dbb58 0%, #d0be23 100%);*/
  background: -webkit-linear-gradient(0deg, #F44336 0%, #e97d1e 100%);
  background: linear-gradient(90deg, #F44336 0%, #e97d1e 100%);
}


.grd_btn.blue_btn{
  background: -webkit-linear-gradient(90deg, #007ED2 0%, #41ACE9 50%, #007ED2 100%);
  background: linear-gradient(90deg, #007ED2 0%, #41ACE9 50%, #007ED2 100%);
}

/* ---------------------------------------------------------------- *
	mv
 * ---------------------------------------------------------------- */
#mv{
	background-image: url("/img/mvbg.jpg?ver25");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
  position: relative;
  /*background-color: transparent;
  background-image:
    radial-gradient(#fff 20%, transparent 20%),
    radial-gradient(#fff 20%, transparent 20%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;*/
}

/* ---------------------------------------------------------------- *
	footer
 * ---------------------------------------------------------------- */
#footer {
	border-top: 1px solid #3D3939;
	padding: 40px 0;
	background-color: #fff;
	text-align: center;
}

#footer ul li p{
	font-size: 16px;
	margin-bottom: 9px;
}

#footer ul li:nth-of-type(3) p{
	font-size: 12px;
}
#footer ul li p span{
  display: inline-block;
}
#footer ul li img{
  width: 100%;
}

/* PC */
@media (min-width: 769px) , print{
	#footer ul{
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		-webkit-align-items: stretch;
		align-items: stretch;
		-webkit-justify-content: space-between;
		-webkit-box-pack: space-between;
		-ms-flex-pack: space-between;
		-moz-box-pack: space-between;
		justify-content: space-between;
	}

	#footer ul li{
		margin-right: 2%;
		width: 32%;
		max-width: 260px;
		display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-box-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	}

	#footer ul li:last-of-type{
		margin-right: 0;
	}
}

/* SP */
@media (max-width: 768px) {
	#footer ul{
		width: 70%;
	}
	#footer ul li{
		margin-bottom: 30px;
	}
	#footer ul li:last-of-type{
		margin-bottom: 0;
	}
}