@charset "utf-8";

/* Common
-------------------------------------------------------------------------------------------------*/
html {
	/*scroll-padding-top: 60px;*/
	scroll-behavior: smooth;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	font-variant-alternates: proportional-width;
	font-kerning: normal;
	letter-spacing: 0.03em;
	font-optical-sizing: auto;
	font-size: clamp(90%, 3vw, 100%); 
  font-weight: 400;
  font-style: normal;
	color: #2c2f32;
	overflow-y: scroll;
}
article {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-feature-settings: "palt";
	font-variant-alternates: proportional-width;
	font-kerning: normal;
	letter-spacing: 0;
  font-weight: 400;
  font-style: normal;
}
h1 {
	/*font-size: 24px;*/
}
h2 {
	/*font-size: 20px;*/
	color: #eb5505;
	margin-bottom: .5em;
	/*border-bottom: 2px solid #eb5505;*/
}
h3 {
	overflow: hidden;
}
.nostyle {
	border-left: none!important;
	padding-left: 0!important;
}
h4 {
	display: flex;
	align-items: center;
	line-height: 140%;
	margin: .3em 0;
}
h5 {
	font-size: 100%;
	line-height: 140%;
	display: flex;
	align-items: center;
}

.icon-disc {
	display: inline-flex;
	align-items: center;
}
.icon-disc::before {
	display: inline-flex;
	content: "";
	width: 4.4vw;
	max-width: 18px;
	height: 4.4vw;
	max-height: 18px;
	background: url("../../../common/img/icon-disc.svg") no-repeat;
	margin: 0 .5em -.1em 0;
	filter: invert(35%) sepia(96%) saturate(3060%) hue-rotate(9deg) brightness(100%) contrast(100%);
}

p {
	line-height: 170%;
}
hr {
	border-top: 2px solid #ccc;
	margin: 2em 0;
}
hr.dotted {
	border-top: 2px dotted #ccc;
	margin: 2em 0;
}
.border-bottom {
	border-bottom: 1px solid #ccc!important;
	padding-bottom: .5em;
	margin-bottom: 1em;
}
.border-left {
	border-left: 8px solid currentColor;
	padding: .3em .5em;
	margin-bottom: .5em;
}

.center {
	display: block;
	text-align: center;
	margin: 0 auto;
}

.blank::after {
	display: inline-block;
	content: "";
	width: 4vw;
	max-width: 14px;
	height: 4vw;
	max-height: 14px;
	/*background: url("../../../common/img/icon-external-link.svg") no-repeat;*/
	background-color: currentColor;
	margin-left: .3em;
	vertical-align: middle;
	/*filter: invert(47%) sepia(68%) saturate(3831%) hue-rotate(356deg) brightness(90%) contrast(105%);
	color: currentColor;*/
	mask-image: url("../../../common/img/icon-external-link.svg");
	mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.blank:hover::after {
	background: currentColor;
}

a {
	color: #eb5505;
}
a:hover {
	text-decoration: none;
}

/*a.arrow::before {
	display: inline-flex;
	align-items: center;
	content: "";
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	width: 7px;
	height: 7px;
	margin: -.2em .5em 0 0;
	padding: 0;
	vertical-align: middle;
	transition: .2s;
}*/

article a {
	color: #009944;
	font-weight: 700;
}
article a:hover {
	text-decoration: none;
}
article a.arrow::after {
	display: inline-flex;
	align-items: center;
	content: "";
	border-top: .5vw solid currentColor;
	border-right: .5vw solid currentColor;
	transform: rotate(45deg);
	width: 1.8vw;
	height: 1.8vw;
	margin: -.2em .5em 0 .3em;
	padding: 0;
	vertical-align: middle;
}

.btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 400px;
	color: #fff;
	background: #eb5505;
	line-height: 120%;
	margin: 0 auto;
	padding: 1em;
	border-radius: .5em;
	text-decoration: none;
	transition: .2s;
}
.btn a:hover {
	background: #ff560b;
	transition: .2s;
}
.btn a::after {
	display: inline-flex;
	align-items: center;
	content: "";
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	width: 8px;
	height: 8px;
	margin: .1em 0 0 .8em;
	padding: 0;
	line-height: 100%;
}

.anchor a {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3.6vw;
	/*
	width: 100%;
	background: #fff;
	border: 2px solid #eb5505;
	border-radius: .5em;
	*/
	color: #009944;
	font-weight: 700;
	max-width: 45%;
	line-height: 120%;
	margin: 8% auto;
	padding: 0;
	text-decoration: none;
	transition: .2s;
}
.anchor a:hover {
	/*background: #ffece2;*/
	text-decoration: underline;
	transition: .2s;
}
.anchor a::after {
	display: inline-flex;
	align-items: center;
	content: "";
	border-top: .5vw solid #009944;
	border-right: .5vw solid #009944;
	transform: rotate(135deg);
	width: 2vw;
	height: 2vw;
	margin: -.3em 0 0 .5em;
	padding: 0;
	line-height: 100%;
}

ul.asterisk {
	position: relative;
	font-weight: 400;
}
ul.asterisk li {
	position: relative;
	content: "※";
	padding: 0 0 .4em 1.2em;
}
ul.asterisk li::before {
	position: absolute;
	content: "※";
	margin: 0 0 0 -1.2em;
}

ul.disc li {
	position: relative;
	content: "※";
	padding: 0 0 .4em 1.2em;
}
ul.disc li::before {
	position: absolute;
	content: "•";
	margin: 0 0 0 -.9em;
}

ul.circle li {
	position: relative;
	content: "※";
	padding: 0 0 .4em 1.2em;
}
ul.circle li::before {
	position: absolute;
	content: "●";
	margin: 0 0 0 -1.2em;
}

ul li ul.tree li {
	position: relative;
	content: "※"!important;
	padding: 0 0 .4em 1.2em;
}

ol {
	list-style: none;
	counter-reset: number;
}
ol li {
	position: relative;
  padding: 0 0 .4em 1.5em;
}
ol li::before {
  counter-increment: number;
  content: counter(number)".";
  position: absolute;
  left: 0;
}

ol.asterisk {
	list-style: none;
	counter-reset: number;
}
ol.asterisk li {
	position: relative;
  padding: 0 0 .2em 2em;
}
ol.asterisk li::before {
  counter-increment: number;
  content: '※' counter(number);
  position: absolute;
  left: 0;
}

ol.list-none {
  list-style: none;
}
ol.list-none li {
	margin-bottom: .5em;
  padding-left: 1.2em;
	text-indent: -1.2em;
}
ol.list-none li:last-child {
	margin-bottom: 0;
}
ol.list-none li::before{
  content: "";
}

.orange {
	color: #eb5505;
}
.blue {
	color: #0066ff;
}
.white {
	color: #fff;
}
.gray {
	color: #999;
}
.small {
	font-size: 80%;
	line-height: 140%;
}
.x-small {
	font-size: 70%;
	line-height: 140%;
}
.bold {
	font-weight: 700;
}
.normal {
	font-weight: 400;
}
.txt-left {
	text-align: left;
}
.txt-right {
	text-align: right;
}
.txt-center {
	text-align: center;
}

.capture {
	border: 2px solid #eee;
	border-radius: .5em;
}
.app-icon {
	border: 2px solid #ccc;
	border-radius: 1em;
}
.app-badge {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
	margin: 1.5em 0
}
.app-badge img {
	max-height: 70px;
}

.flex {
	display: flex;
	align-items: center;
	gap: 1em;
	border: none;
}

ul.flex {
	display: flex;
	flex-flow: wrap;
	gap: 1em;
	align-items: center;
}
ul.flex.three-colmn {
	justify-content: center;
	text-align: center;
}
ul.flex.three-colmn li {
	width: 30%;
	text-align: center;
}
ul.flex-img {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .5em;
}
.flex-img img {
	display: block;
	width: 100%;
	/*max-width: 300px;*/
}

.bg {
	background: #f9f2ea;
	padding: 1.2em;
	border-radius: .5em;
}

.mt0 {
	margin-top: 0em!important;
}
.mt05em {
	margin-top: .5em!important;
}
.mt1em {
	margin-top: 1em!important;
}
.mt2em {
	margin-top: 2em!important;
}
.mt3em {
	margin-top: 3em!important;
}
.mr05em {
	margin-right: .5em!important;
}
.mr1em {
	margin-right: 1em!important;
}
.mb0 {
	margin-bottom: 0em!important;
}
.mb1em {
	margin-bottom: 1em!important;
}
.mb2em {
	margin-bottom: 2em!important;
}
.ml1em {
	margin-left: 1.5em!important;
}
.pc-exmg {
	margin-top: -2em!important;
}


header {
	width: 100%;
	margin: 0;
	padding: 1.5em;
	background: #fff;
}
header img {
	display: block;
	width: 80vw;
	max-width: 500px;
	margin: auto;
}
.inner {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	padding: 0 1em;
}


/* Swiper */

.swiper {
	margin: 0;
}
.swiper img {
	/*width: 100%;
	max-width: 180px;
	margin: auto;*/
}
.swiper-slide figure {
	position: relative;
}
.swiper-slide figure::after {
	position: absolute;
	right: -20%;
	bottom: 45%;
	display: inline-flex;
	content: "";
	border-top: .9vw solid #ccc;
	border-right: .9vw solid #ccc;
	width: 7vw;
	max-width: 50px;
	height: 7vw;
	max-height: 50px;
	transform: rotate(45deg)
}
.swiper-slide:last-child figure::after {
	display: none;
}
.swiper-slide figcaption {
	margin: 1em 0 1em 0;
	text-indent: 0;
	line-height: 140%;
	font-size: 3.2vw;
}
.swiper-slide figcaption.indent {
	margin: 1em 0 1em 1em;
	text-indent: -1em;
	line-height: 140%;
	font-size: 90%;
}
.swiper-pagination {
	position: relative;
	bottom: 0;
	display : flex;
	justify-content: center;
	align-items: center;
	padding: 1em 0 0 0;
	width: 100%;
	z-index: 10;
}
.swiper-pagination-bullet {
	display: block;
	background: #ccc;
	width: 12px;
	height: 12px;
	border-radius: 100%;
	margin: 0 .5em!important;
	padding: 0;
	cursor: pointer;
	transition: .2s;
}
.swiper-pagination-bullet-active {
	background: #009944!important;
	transition: .2s;
}

.photo {
	position:relative;
	overflow: hidden;
}
.swiper-button-prev {
	position: absolute;
	left: 0;
	top: 42%;
	z-index: 2;
	display: inline-flex;
	content: "";
	background: url(../img/slide-arrow.png) no-repeat;
	background-size: contain;
	transform: rotate(180deg);
	width: 5vw;
	max-width: 40px;
	height: 5vw;
	max-height: 40px;
}
.swiper-button-next {
	position: absolute;
	right: 0;
	top: 42%;
	z-index: 2;
	display: inline-flex;
	content: "";
	background: url(../img/slide-arrow.png) no-repeat;
	background-size: contain;
	width: 5vw;
	max-width: 40px;
	height: 5vw;
	max-height: 40px;
}


/* Accordion Line Type */

ul.accordion {
  width: 100%;
  margin: 0;
	color: #000;
}
ul.accordion li {
  list-style: none;
	border-bottom: 2px solid #ccc;
}
ul.accordion li.noline {
  list-style: none;
	border-bottom: none;
}
ul.accordion li.noline ul li {
	border-bottom: none;
}
ul.accordion li ul li {
	border-bottom: none;
}
ul.accordion .ac-head {
  position: relative;
  margin: 0;
	display: flex;
	align-items: center;
  padding: .8em 0;
  cursor: pointer;
	transition: .2s;
}
ul.accordion .ac-head::after {
  content: "";
  position: absolute;
  right: .8em;
  /*top: 32%;*/
  transition: all 0.2s ease-in-out;
  display: flex;
	width: 2vw;
  max-width: 10px;
	height: 2vw;
  max-height: 10px;
  border-top: solid 2px #666;
  border-right: solid 2px #666;
  transform: rotate(135deg);  
}
ul.accordion .ac-head p {
  padding-right: 40px;
}
ul.accordion .ac-head img {
  width: 6vw;
	max-width: 30px;
	height: 6vw;
	max-height: 30px;
	margin: .2em .5em 0 0;
}
ul.accordion .ac-head.open::after {
  transform: rotate(-45deg);
  top: 45%;
}
ul.accordion .ac-content {
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.3s ease-in-out, visibility 0s linear 0.3s;
}
ul.accordion .ac-content .inner {
  margin: 0;
  padding: 1em;
	border-top: 2px solid #ccc;
}
ul.accordion .ac-content.open {
  visibility: visible;
}

/* Accordion Button Type */

ul.accordion-btn {
  width: 100%;
  margin: 0;
	padding: 0;
	color: #000;
}
ul.accordion-btn li {
  list-style: none;
	border: 2px solid #ccc;
	border-radius: .5em;
	padding: 0;
}
ul.accordion-btn li.noline {
  list-style: none;
	border-bottom: none;
}
ul.accordion-btn li.noline ul li {
	border-bottom: none;
}
ul.accordion-btn li ul li {
	border-bottom: none;
}
ul.accordion-btn .ac-head {
  position: relative;
  margin: 0;
	padding: .8em;
	display: flex;
	align-items: center;
  cursor: pointer;
	transition: .2s;
}
ul.accordion-btn .ac-head::after {
  content: "";
  position: absolute;
  right: 1.2em;
  /*top: 32%;*/
  transition: all 0.2s ease-in-out;
  display: flex;
	width: 2vw;
  max-width: 10px;
	height: 2vw;
  max-height: 10px;
  border-top: solid 2px #666;
  border-right: solid 2px #666;
  transform: rotate(135deg);  
}
ul.accordion-btn .ac-head p {
  padding-right: 30px;
}
ul.accordion-btn .ac-head img {
  width: 6vw;
	max-width: 30px;
	height: 6vw;
	max-height: 30px;
	margin: .2em .5em 0 0;
}
ul.accordion-btn .ac-head.open::after {
  transform: rotate(-45deg);
  top: 45%;
}
ul.accordion-btn .ac-content {
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.3s ease-in-out, visibility 0s linear 0.3s;
}
ul.accordion-btn .ac-content .inner {
  margin: 0;
  padding: 1em;
	border-top: 2px solid #ccc;
}
ul.accordion-btn .ac-content.open {
  visibility: visible;
}

.video {
  width: 100%;
  aspect-ratio: 16 / 9;
	margin: 5% 0 0;
}
.video iframe {
  width: 100%;
  height: 100%;
	border-radius: .5em;
}



/* Smart Phone
-------------------------------------------------------------------------------------------------*/

.sp {
	display: block;
}
.pc {
	display: none;
}

.pc-center {
	display: block;
	text-align: left;
}

main {
	width: 100%;
}
#mv {
	width: 100%;
	/*max-width: 980px;*/
	margin: auto;
	padding: 0;
	background: #fff;
}
#mv .inner {
	width: 100%;
	padding: 0;
}

#overview {
	width: 100%;
	margin: auto;
	padding: 0;
	background: #fff;
	background: url("../img/overview-bg.jpg") no-repeat;
	background-position: bottom;
	background-size: cover;
}
#overview .inner {
	width: 100%;
	padding: 1em;
}
#overview h2 {
	color: #009944;
	font-size: 4.6vw;
	font-weight: 700;
	text-align: center;
	margin: 1em 0 0em;
	padding: .3em;
}
#overview h3 {
	background: #eb5505;
	color: #fff;
	font-size: 5.5vw;
	font-weight: 700;
	text-align: center;
	margin: 1em 0 0em;
	padding: .3em;
}
#overview p {
	color: #009944;
	font-size: 3.2vw;
	font-weight: 700;
	/*font-size: 10px;*/
	line-height: 160%;
	text-align: center;
	margin-bottom: 1em
}

#overview .info {
	font-size: 4vw;
	margin-top: 2em;
}
#overview dl {
	display: flex;
	align-items: center;
	width: 100%;
	background: rgba(255, 255, 255, .7);
	border-radius: .5em;
	padding: 1em;
	margin-bottom: 1em;
}
#overview dl dt {
	width: 30%;
	font-weight: 700;
	text-align: center;
}
#overview dl dd {
	width: 70%;
}

#flow {
	width: 100%;
	max-width: 980px;
	margin: auto;
	padding: 0;
	background: #fff;
}
#flow h3 {
	/*background: #dfe6e8;*/
	color: #009944;
	padding: 2em 1em 0;
	font-size: 6.2vw;
	line-height: 120%;
	text-align: center;
}
#flow h3 span {
	display: block;
	font-size: 3vw;
}
#flow .content {
	border: .5vw solid #ccc;
	border-radius: .5em;
	margin: 13vw 0;
	padding: 3vw;
}
#flow .content p {
	font-size: 3.2vw;
}
#flow .content h4 {
	margin: -8.5vw 0 5vw 0;
}
#flow .content .charge {
	background: #f2f2f2;
	padding: 4vw;
	border-radius: .5em;
}
#flow .content .charge .head {
	font-size: 3.6vw;
	font-weight: 700;
	line-height: 100%;
	border-bottom: 2px dotted #ccc;
	margin: 0 0 .8em 0;
	padding: 0 0 .8em 0;
}
#flow .content .charge ul {
	display: flex;
	width: 100%;
	flex-flow: wrap;
	font-size: 3.2vw;
}
#flow .content .charge ul li {
	width: 50%;
}
#flow h5 {
	color: #009944;
	font-size: 4vw;
	justify-content: center;
	margin: 1em 0 1.5em!important;
}

#story {
	width: 100%;
	max-width: 980px;
	margin: auto;
	padding: 0;
	background: #fff;
}

#youtube {
	margin: 0 0 10% 0;
	padding: 2em 0;
	background: url("../img/youtube-bg.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
#youtube h3 {
	text-align: center;
	font-size: 4vw;
	color: #fff;
	margin: 0 0 3% 0;
}
#youtube img {
	margin: auto;
	width: 100%;
	max-width: 460px;
}

#profile {
	width: 100%;
	max-width: 980px;
	margin: auto;
	padding: 0 0 10%;
	background: #fff;
}
#profile .inner {
	padding: 0 2em;
}
#profile h3 {
	font-size: 4.5vw;
	text-align: center;
}
#profile img {
	width: 70%;
	margin: 1.5em auto;
}
#profile p {
	font-size: 3vw;
	text-align: left;
}

#precautions {
	background: #efefef;
}
#precautions .inner {
	padding: 2em 1em;
}
#precautions h3 {
	font-size: 4.5vw;
	text-align: center;
}
#precautions h4 {
	font-size: 3vw;
	margin: 1em 0 .5em 0;
}
#precautions ul {
	font-size: 2.8vw;
}

footer {
	text-align: center;
	font-size: 12px;
}
footer .inner {
	padding: 3em 1em;
}
footer ul li {
	padding-bottom: .5em;
}
footer ul li:last-child {
	padding-bottom: 0;
}
footer .copyright {
	font-size: 10px;
	color: #999;
	padding-top: 2em;
	letter-spacing: 0;
}



/* PC
-------------------------------------------------------------------------------------------------*/

@media (min-width: 800px) {
	
	html {
		/*scroll-padding-top: 80px;*/
	}
	
	.sp {
		display: none;
	}
	.pc {
		display: block;
	}
	.pc-none {
		display: none;
	}
	.pc-resize {
		padding: 0 0 0 10em!important;
	}
	
	.pc-center {
		display: block;
		text-align: center;
		margin: 0 auto;
	}
	.x-small {
		font-size: 50%;
		line-height: 140%;
	}
	
	article a.arrow::after {
		display: inline-flex;
		align-items: center;
		content: "";
		border-top: 3px solid currentColor;
		border-right: 3px solid currentColor;
		transform: rotate(45deg);
		width: 10px;
		height: 10px;
		margin: -.2em .5em 0 .3em;
		padding: 0;
		vertical-align: middle;
	}
	
	.anchor a {
		font-size: 30px;
		max-width: 40%;
	}
	.anchor a::after {
		border-top: 4px solid #009944;
		border-right: 4px solid #009944;
		width: 20px;
		height: 20px;
		margin: -.3em 0 0 .5em;
	}
	
	ul.flex-3col {
		display: flex;
		gap: 1em;
	}
	ul.flex-3col li {
		width: 33%;
	}
	ul.flex-3col img {
		width: 100%;
	}
	
	header {
		width: 100%;
	}
	.inner {
		width: 100%;
		max-width: 980px;
		margin: 0 auto;
		padding: 1em 2em
	}
	
	main {
		width: 100%;
	}
	#overview {
		width: 100%;
	}
	#overview .inner {
		margin: 0 auto;
		padding: 2em;
	}
	#overview h2 {
		font-size: 40px;
	}
	#overview h3 {
		font-size: 50px;
	}
	#overview p {
		font-size: 24px;
	}
	
	#overview .info {
		
	}
	#overview dl {
		display: flex;
		align-items: center;
		border-radius: .5em;
		padding: 1em;
		margin-bottom: 1em;
	}
	
	#overview .info {
		font-size: 36px;
		margin-top: 3em;
	}
	
	#flow {
		
	}
	#flow h3 {
		font-size: 52px;
	}
	#flow h3 span {
		display: block;
		font-size: 24px;
	}
	#flow .content {
		border: 4px solid #ccc!important;
		border-radius: .5em;
		margin: 7em 0;
		padding: 2em;
	}
	#flow .content p {
		font-size: 20px;
	}
	#flow .content h4 {
		margin: -5.5em 0 3em 0!important;
	}
	#flow .content .charge {
		padding: 1em;
		border-radius: .5em;
	}
	#flow .content .charge .head {
		font-size: 22px;
		margin: 0 0 .8em 0;
		padding: 0 0 .8em 0;
	}
	#flow .content .charge ul {
		font-size: 22px;
	}
	#flow .content .charge ul li {
		width: 33.3%;
		font-size: 18px;
	}
	#flow h5 {
		font-size: 36px;
		justify-content: center;
		margin: 1.5em 0 1.5em!important;
	}
	
	#youtube h3 {
		font-size: 38px;
	}
	
	#profile {
		width: 100%;
		max-width: 980px;
		margin: auto;
		padding: 0 0 5em;
	}
	#profile h3 {
		font-size: 38px;
	}
	#profile img {
		width: 50%;
		margin: 2em auto;
	}
	#profile p {
		font-size: 20px;
	}
	
	#precautions h3 {
		font-size: 38px;
		text-align: center;
		margin-top: 1em;
	}
	#precautions h4 {
		font-size: 22px;
		margin: 1em 0 .5em 0;
	}
	#precautions ul {
		font-size: 16px;
	}
	
	footer {
		font-size: 14px;
	}
	footer .copyright {
		font-size: 12px;
	}
	
	/* Swiper */
	.swiper-slide figure::after {
		right: -18%;
		border-top: .2em solid #ccc;
		border-right: .2em solid #ccc;
		width: 4vw;
		max-width: 30px;
		height: 4vw;
		max-height: 30px;
	}
	.swiper-slide figcaption {
		margin: 1em 0 1em 0;
		text-indent: 0;
		line-height: 140%;
		font-size: 20px;
	}
	
}
