@charset 'UTF-8';





/*

    Base

*/

/*  color  */
:root {
	--text-color: #000000;
	--black-color: #000000;
	--white-color: #FFFFFF;
	--gray-color: #F2F2F2;
	--main-color: #FFE900;
	--caution-color: #FF0000;
}

/*  font  */
body {
	font-family: "Noto Sans JP", sans-serif;
	color: var(--text-color);
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.25;
}
@media screen and (min-width: 768px) {
	body {
		font-size: 15px;
		font-size: 1.5rem;
	}
}

/*  heading  */
h1 {
	
}
h2 {
	margin: 0 auto 2em;
	font-size: 2em;
	text-align: center;
}
h2 + p {
	font-weight: 700;
	text-align: center;
	line-height: 2;
}
h3 {
	margin: 1em 0;
	font-size: 1.5em;
}
h4 {
	position: relative;
	margin: 1em 0;
	padding: 0 0 0 1.5em;
	font-size: 1.25em;
}
h4:before {
	position: absolute;
	top: 0.75em;
	left: 0;
	content: "";
	display: inline-block;
	width: 1em;
	height: 2px;
	background-color: var(--black-color);
	vertical-align: middle;
}

/*  layout  */
.container {
	width: 100%;
	margin: 0 auto;
	padding: 25px 10px;
	box-sizing: border-box;
}
.container > *:first-child {
	margin-top: 0 !important;
}
.container > *:last-child {
	margin-bottom: 0 !important;
}
@media screen and (min-width: 768px) {
	.container {
		max-width: 1200px;
		padding: 50px 0;
	}
}

/*  a  */
a {
	color: inherit;
	cursor: pointer;
}
a:hover {
	opacity: 0.75;
}
a.invalid {
	pointer-events: none;
}

/*  i  */
i {
	font-style: normal;
}

/*  em  */
em {
	font-style: normal;
	background: linear-gradient(transparent 70%, var(--main-color) 70%);
}

/*  img/iframe  */
img,
iframe {
	width: 100%;
	height: auto;
}





/*

    parts

*/

/* .sp/.pc  */
.sp {
	display: block;
}
.pc {
	display: none;
}
@media screen and (min-width: 768px) {
	.sp {
		display: none;
	}
	.pc {
		display: block;
}
}

/*  .br  */
.br {
	display: block;
}
@media screen and (min-width: 768px) {
	.br {
		display: inline;
	}
}

/*  .inline  */
.inline {
	display: inline;
}
@media screen and (min-width: 768px) {
	.inline {
		display: block;
	}
}

/*  .caution  */
.caution {
	 color: var(--caution-color);
}

/*  .no  */
.no {
	display: block;
	margin-right: 1em;
	font-weight: bold;
	color: var(--main-color);
	text-align: center;
	line-height: 1;
}
.no strong {
	display: block;
	font-size: 2em;
}

/*  .btn  */
a.btn {
	display: inline-block;
	margin: 0.5em 0;
	padding: 0.5em 1.5em;
	background-color: var(--gray-color);
	border-radius: 9999px;
	font-weight: 700;
	text-align: center;
	box-sizing: border-box;
}
a.btn.conversion {
	background-color: var(--black-color);
	color: var(--white-color);
}

/*  .img-txt ※sp:縦/pc:横  */
.img-txt {
	display: block;
}
.img-txt .img {
	display: block;
	width: 100%;
}
.img-txt .img img,
.img-txt .img iframe {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.img-txt .txt {
	display: block;
	width: 100%;
}
@media screen and (min-width: 768px) {
	.img-txt {
		display: flex;
		flex-wrap: wrap;
	}
	.img-txt .img {
		width: 50%;
	}
	.img-txt .txt {
		width: 50%;
		padding: 0 0 0 2em;
		box-sizing: border-box;
	}
	.img-txt .txt > *:first-child {
		margin-top: 0 !important;
	}
	.img-txt .txt > *:last-child {
		margin-bottom: 0 !important;
	}
}

/*  .img-txt.vertical ※sp:縦/pc:縦  */
@media screen and (min-width: 768px) {
	.img-txt.vertical {
		display: block;
	}
	.img-txt.vertical .img {
		width: 100%;
	}
	.img-txt.vertical .txt {
		width: 100%;
		padding: 0;
	}
}

/*  .img-txt.horizontal ※sp:横/pc:横  */
.img-txt.horizontal {
	display: flex;
	flex-wrap: wrap;
}
.img-txt.horizontal .img {
	width: 50%;
}
.img-txt.horizontal .txt {
	width: 50%;
	padding: 0 0 0 2em;
	box-sizing: border-box;
}
.img-txt.horizontal .txt > *:first-child {
	margin-top: 0 !important;
}
.img-txt.horizontal .txt > *:last-child {
	margin-bottom: 0 !important;
}

/*  .telop  */
.telop {
	width: 100%;
	overflow: hidden;
}
.telop ul {
	list-style: none;
	display: inline-block;
	margin: 0;
	white-space: nowrap;
	font-size: 0; /* 隙間なくす */
	animation: loop-slide 50s infinite linear;
}
.telop ul li {
	display: inline-block;
	margin: 0;
	padding: 0;
	width: 20%; /* 要素数/幅 */
	box-sizing: border-box;
}
.telop ul li img {
	vertical-align: top; /* 隙間なくす */
}
@keyframes loop-slide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%); /* 見え方で微調整 */
	}
}

/*  .wideframe  */
.wideframe {
	display: block;
	width: 100%;
	white-space: nowrap;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.wideframe * {
	width: auto;
	max-height: 350px;
}
.wideframe:before {
	content: "※→スクロールしてご確認ください";
	display: block;
	margin: 0 0 1em 0;
	font-size: 1.0rem;
	color: var(--text02-color);
}
@media screen and (min-width: 768px) {
	.wideframe * {
		width: 100%;
		max-height: none;
	}
	.wideframe:before {
		content: none;
	}
}

/*  .emphasis  */
.emphasis {
	margin: 2em auto;
	padding: 2em;
	border-radius: 10px;
	border: 2px solid var(--black-color);
	background-color: var(--white-color);
	box-sizing: border-box;
}
.emphasis > *:first-child {
	margin-top: 0 !important;
}
.emphasis > *:last-child {
	margin-bottom: 0 !important;
}
@media screen and (min-width: 768px) {
	.emphasis {
		max-width: 960px;
	}
}

/*  ul.note  */
ul.note {
	list-style: none;
}
ul.note li {
	position: relative;
	margin: 0;
	padding: 0 0 0 1em;
	box-sizing: border-box;
}
ul.note li:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "※";
	display: block;
}

/*  ul.num-list  */
ul.num-list {
	list-style: none;
}
ul.num-list li {
	position: relative;
	margin: 0;
	padding: 0 0 0 1em;
	box-sizing: border-box;
}
ul.num-list li:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
}
ul.num-list li:nth-of-type(1):before { content: "①"; }
ul.num-list li:nth-of-type(1):before { content: "②"; }
ul.num-list li:nth-of-type(1):before { content: "③"; }
ul.num-list li:nth-of-type(1):before { content: "④"; }
ul.num-list li:nth-of-type(1):before { content: "⑤"; }
ul.num-list li:nth-of-type(1):before { content: "⑥"; }
ul.num-list li:nth-of-type(1):before { content: "⑦"; }
ul.num-list li:nth-of-type(1):before { content: "⑧"; }
ul.num-list li:nth-of-type(1):before { content: "⑨"; }

/*  table.plain  */
table.plain {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto;
}
table.plain tr th {
	width: 6em;
	vertical-align: top;
}
table.plain tr th,
table.plain tr td {
	padding: 1em;
	border: none;
	background-color: transparent;
	box-sizing: border-box;
}
@media screen and (min-width: 768px) {
	table.plain {
		max-width: 960px;
	}
}

/*  table.line  */
table.line {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto;
}
table.line tr {
	border-top: 2px dotted var(--black-color);
}
table.line tr th,
table.line tr td {
	display: block; /* 縦並び */
	padding: 1em;
	border: none;
	background-color: transparent;
	vertical-align: middle;
	box-sizing: border-box;
}
table.line tr td.apply {
	text-align: right;
}
@media screen and (min-width: 768px) {
	table.line tr th,
	table.line tr td {
		display: table-cell; /* 横並び */
	}
	table.line tr td.apply {
		text-align: center;
	}
}

/*  ul.steps  */
ul.steps {
	list-style: none;
	margin: 0;
}
ul.steps > li {
	margin: 2em 0;
	border-radius: 10px;
	overflow: hidden;
}
ul.steps > li .header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1em 2em;
	background-color: var(--black-color);
	color: var(--white-color);
	box-sizing: border-box;
}
ul.steps > li .content {
	padding: 1em 2em;
	background-color: var(--white-color);
	box-sizing: border-box;
}
@media screen and (min-width: 768px) {
	ul.steps > li {
		display: flex;
		flex-wrap: wrap;
	}
	ul.steps > li .header {
		justify-content: flex-start;
		width: 33.33%;
	}
	ul.steps > li .content {
		width: 66.66%;
	}
}

/*  ul.sns  */
ul.sns {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
}
ul.sns li {
	margin: 0 10px;
}
ul.sns li a {
	display: block;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
ul.sns li.line a { background-image: url('./images/line.png'); }
ul.sns li.x a { background-image: url('./images/x.png'); }
ul.sns li.instagram a { background-image: url('./images/instagram.png'); }
ul.sns li.facebook a { background-image: url('./images/facebook.png'); }

/*  ul.sitemap  */
ul.sitemap {
	display: flex;
	list-style: none;
}
ul.sitemap > li {
	margin: 0;
}
ul.sitemap > li + li {
	margin-left: 2em;
}
ul.sitemap > li > a {
	display: block;
	font-weight: bold;
}
ul.sitemap > li > ul {
	list-style: none;
}
ul.sitemap > li > ul > li {
	position: relative;
	margin: 0;
	padding: 0 0 0 1em;
	box-sizing: border-box;
}
ul.sitemap > li > ul > li:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "-";
	display: block;
	width: 1em;
	height: 1em;
}
ul.sitemap > li > ul > li a {
	font-size: 1.2rem;
}





/*

    animation

*/

/*  basic  */
*.animation {
	opacity: 0;
}
*.animation.start {
	animation-duration: 1.5s;
	animation-timing-function: cubic-bezier(0.1, -0.6, 0.2, 0);
	animation-delay: 0.5;
	animation-fill-mode: forwards;
}

/*  fadein  */
*.animation.fadein.start { animation-name: fadein;}
@keyframes fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}





/*

    header

*/
/*  common  */
body {
	padding-top: 50px;
	box-sizing: border-box;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: var(--main-color);
	z-index: 9999;
}
header .container {
	position: relative;
	display: flex;
	align-items: center;
	padding: 10px;
	height: 50px;
}
@media screen and (min-width: 768px) {
	body {
		padding-top: 0;
	}
	header {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
	}
	header .container {
		display: block;
		padding: 30px;
		max-width: none;
		height: auto;
	}
}

/*  .sitetop  */
header .container a.sitetop {
	display: block;
}
header .container a.sitetop h1,
header .container a.sitetop p {
	line-height: 0;
}
header .container a.sitetop h1 img,
header .container a.sitetop p img {
	width: calc(100% - 50px);
	height: auto;
	max-height: 30px;
}
@media screen and (min-width: 768px) {
	header .container a.sitetop h1 img,
	header .container a.sitetop p img {
		width: auto;
		height: 30px;
	}
}

/*  .itaneko  */
header .container .itaneko {
	display: none;
}
@media screen and (min-width: 768px) {
	header .container .itaneko {
		position: absolute;
		top: 30px;
		right: 30px;
		display: block;
		width: auto;
		height: 90px;
		z-index: 1;
	}
}



/*  a.menu  */
header a.menu {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 50px;
	height: 50px;
	background-image: url('./images/menu.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
header a.menu.close {
	background-image: url('./images/close.png');
}
@media screen and (min-width: 768px) {
	header a.menu {
		display: none;
	}
}

/*  nav  */
header nav {
	position: fixed;
	top: 50px;
	left: 0;
	display: none;
	width: 100%;
	padding: 1em 0;
	background-color: var(--main-color);
	z-index: 1;
	box-sizing: border-box;
}
header nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
}
header nav ul li {
	margin: 0;
}
header nav ul li a {
	display: block;
	width: 100%;
	padding: 0.5em 1em;
	font-weight: bold;
	text-align: center;
	box-sizing: border-box;
}
@media screen and (min-width: 768px) {
	header nav {
		position: relative;
		top: auto;
		left: auto;
		display: block;
		width: auto;
		height: auto;
		z-index: auto;
	}
}






/*

    footer

*/

/*  .bnr  */
footer .bnr .container ul.bnrs {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0;
}
footer .bnr .container ul.bnrs li {
	flex-shrink: 0;
	margin: 1em;
	overflow: hidden;
}
footer .bnr .container ul.bnrs li img {
	display: block;
	width: auto;
	height: 65px;
	object-fit: cover;
}

/*  .concept  */
footer .concept {
	background-color: rgba(255,233,0,0.5);
}
footer .concept .container p {
	text-align: center;
}

/*  .guide  */
footer .guide {
	background-color: var(--black-color);
	color: var(--white-color);
}
footer .guide .container small {
	display: block;
	font-size: 1.1rem;
	text-align: center;
}
@media screen and (min-width: 768px) {
	footer .guide {
		background-image: url('./images/stamp.png');
		background-repeat: no-repeat;
		background-size: auto 95px;
		background-position: right 30px bottom 40px;
	}
	footer .guide .container {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
	}
	footer .guide .container small {
		flex-shrink: 0;
		width: 100%;
		text-align: left;
	}
}





/*

    #mv

*/
#mv .container .frame {
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}
#mv .container .frame img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}





/*

    #introduction

*/
#introduction .container .emphasis p {
	display: flex;
	align-items: flex-start;
	font-size: 1.25em;
}
#introduction .container .emphasis p .label {
	flex-shrink: 0;
	width: 5em;
	margin: 0 1em 0 0;
	border-radius: 5px;
	background-color: var(--black-color);
	font-weight: bold;
	color: var(--white-color);
	text-align: center;
}
#introduction .container .emphasis p strong small {
	display: block;
}
@media screen and (min-width: 768px) {
	#introduction .container .emphasis p {
		font-size: 1.5em;
	}
}





/*

    #step

*/
#step {
	background-color: var(--main-color);
}





/*

    #note

*/





/*

    #guideline

*/
#guideline {
	background-color: var(--main-color);
}





/*

    #program

*/
#program {
	background-color: var(--main-color);
}





/*

    #outline

*/
#outline {
	background-color: var(--gray-color);
}
