@charset "utf-8";

/* ---------------------------------------------------------------
	Reset
--------------------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* add to
---------------------------------------------------------- */
html{
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
}
*, *:before, *:after{
	box-sizing: inherit;
}
main{
	display: block;
}
img {
	border-style: none;
}



/* ---------------------------------------------------------------
	Base
--------------------------------------------------------------- */
body {
	color: #262626;
	font-size: 15px;
	font-weight: normal;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, arial, sans-serif;
	line-height: 1.5;
	word-break: normal;
	overflow-wrap: break-word;
	word-wrap: break-word;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	text-align: left;
}
#all{
	text-align: center;
	padding: 0 20px;
}

a {
	color: #333;
	text-decoration: underline;
}

strong{
	font-weight: bold;
}
em{
	font-style: italic;
}
del{
	font-style: line-through;
}

sup, sub {
	line-height: 1.35;
	font-size: 10px;
}
sup {
	vertical-align: super;
}
sub {
	vertical-align: inherit;
}

img{
	max-width: 100%;
	height: auto !important;
	display: block;
	margin: auto;
}

table{
	max-width: 100%;
}
/* PCのみ */
@media all and (min-width: 621px) {
	body{
		min-width: 620px;
	}
	#all{
		width: 620px;
		margin: auto;
	}
	
	a,
	a img{
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
		transition: 0.3s;
	}
	a:hover{
		text-decoration: none;
	}
	a:hover img{
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
}
/* SPのみ */
@media all and (max-width: 620px) {
	body{
		width: 100%;
		min-width: 320px;
	}
	#all{
		width: 100%;
	}
}



/* ---------------------------------------------------------------
	Content
--------------------------------------------------------------- */

header{
	padding: 2em 0 0.5em
}

/* common
---------------------------------------------------------- */
video{
	display: block;
	width: 100%;
}
.left{
	text-align: left;
}
.right{
	text-align: right;
}
.lh1{
	line-height: 1;
}
.lh15{
	line-height: 1.5;
}
h2{
	margin-top: 15%;
}
h3{
	margin: 10% 0 5%;
}
p{
	line-height: 2;
}
.txt{
	margin: 2.5em 0;
}
.mt15{
	margin-top: 1.5em;
}
.mb1{
	margin-bottom: 1em;
}
.bold{
	font-weight: bold;
}
.underline{
	text-decoration: underline;
}
.bg_yellow{
	background: rgb(255, 255, 0);
}
.bg_yellow_light{
	background: #fffb9f;
}
.red{
	color: rgb(230, 0, 0);
}
.blue{
	color: rgb(0, 0, 255);
}
.dark_blue{
	color: #15609c;
}
.green{
	color: rgb(31, 157, 176);
}
.fs8{
	font-size: 8.5px;
}
.fs11{
	font-size: 11px;
}
.fs13{
	font-size: 13px;
}
.fs17{
	font-size: 17px;
}
.fs19{
	font-size: 19px;
}
.fs23{
	font-size: 23px;
}
/* SPのみ */
@media all and (max-width: 640px) {
	.annotation{
		font-size: calc(18vw / 620 * 100);
	}
}


/* animation
---------------------------------------------------------- */
.downArrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.downArrow>span {
	/* 矢印の大きさの設定 */
	width: 100px;
	height: 65px;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.downArrow>span::before {
	content: "";
	display: block;
	margin: 0 auto;
	width: 50%;
	height: 40%;
	/* 矢印の色の設定 */
	background: #ca8b38;
}
.downArrow>span::after {
	content: "";
	display: block;
	width: 100%;
	height: 60%;
	/* 矢印の色の設定 */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(49%, transparent), color-stop(50%, #ca8b38)) top left/50% 100% no-repeat, -webkit-gradient(linear, right bottom, left top, color-stop(49%, transparent), color-stop(50%, #ca8b38)) top right/50% 100% no-repeat;
	background: linear-gradient(to top right, transparent 49%, #ca8b38 50%) top left/50% 100% no-repeat, linear-gradient(to top left, transparent 49%, #ca8b38 50%) top right/50% 100% no-repeat;
}
/*動きの速さを変更する場合は、複数あるanimation-durationの1.5s(=1.5秒)の時間を変更
動きの回数を変更する場合は、複数あるanimation-iteration-countのinfinite（=無限,              3=3回など）を変更*/
.movebtn {
	-webkit-animation-name: btnAnime02;
	-webkit-animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-moz-animation-name: btnAnime02;
	-moz-animation-duration: 1.5s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: ease;
	align-items: flex-start;
	justify-content: center;
}
@-webkit-keyframes btnAnime02 {
	/*初期位置*/
	0% {
		/*1番目の値はX方向, 2番目の値はY方向*/
		-webkit-transform: translate(0, 0);
	}
	/*animation-durationで設定した値の半分の時間（50%）の時の位置*/
	50% {
		-webkit-transform: translate(0, -8px);
	}
	/*animation-durationで設定した値になった（100%）時の位置*/
	100% {
		-webkit-transform: translate(0, 0);
	}
}
/*上記の「@-webkit-keyframes btnAnime02」と同様の値にしてください*/
@-moz-keyframes btnAnime02 {
	0% {
		-moz-transform: translate(0, 0);
	}
	50% {
		-moz-transform: translate(0, -8px);
	}
	100% {
		-moz-transform: translate(0, 0);
	}
}


/* cta
---------------------------------------------------------- */
/* 全体の設定 */
.puyoBtn__area {
	/* 横幅（ボタンの大きさに影響します） */
	width: 500px;
	/* 最大幅 */
	max-width: 95%;
	/* 高さ */
	height: auto;
	/*外側の余白｜上下余｜*/
	padding: 10px 0;
	/*左右余白（auto=センタリング）*/
	margin-inline: auto;
}
/* ボタンリンクの設定 */
.puyoBtn__area .btn {
	display: block;
	/* 横幅 */
	width: 100%;
	/* 高さ */
	height: auto;
}
/* ボタンの画像 */
.puyoBtn__area .btn img {
	/* 横幅 */
	width: 100%;
	/* 高さ */
	height: auto;
	/*アニメーションの設定｜アニメーション名｜1回のサイクルに要する時間｜進め方｜実行回数｜*/
	animation: puyoBtn 1.6s ease-in infinite;
}
@media (max-width: 500px) {
	.puyoBtn__area {
		/* モバイルデバイスでコンテンツの横ずれを防ぐ */ overflow-x: hidden;
	}
	.puyoBtn__area .btn img {
		/* アニメーションしたボタンが親要素より大きくならないように調整 */
		max-width: 94%;
		margin-inline: auto; }
}
/* アニメーションの詳細設定 */
@keyframes puyoBtn {
	/* タイミング */
	0% {
		/* ボタンの拡大、縮小
		・値が1つ = X＆Y軸
		・値が2つ = X軸, Y軸 */
		transform: scale(1.09);
	}
	10% {
		transform: scale(1.09);
	}
	30% {
		transform: scale(1.01);
	}
	40% {
		transform: scale(1.01);
	}
	50% {
		transform: scale(1, 1.04);
	}
	60% {
		transform: scale(1.09);
	}
	70% {
		transform: scale(1.02);
	}
	100% {
		transform: scale(1.09);
	}
}



/* ---------------------------------------------------------------
	Footer
--------------------------------------------------------------- */
footer{
	font-size: 10px;
	margin: 10% 0 5%;
	line-height: 3;
}
footer ul{
	list-style: none;
}
footer ul li a{
	color: #4682b4;
}
footer ul li a:hover{
	text-decoration: none;
}


