@charset "UTF-8";

*{
	margin: 0;
	padding: 0;
}
body{
	position: relative;
	font-size: 16px;
	font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
	line-height: 1.8;
	color: #333;
	background: #fff;
	overflow-x: hidden;
}
img{
	max-width: 100%;
	height: auto;
}
a{
	text-decoration: none;
	transition: opacity 0.2s;
}
a:hover {
    opacity: 0.5;
}
ul,
ol{
	list-style: none;
}
h3{
	text-align: center;
    color: #bda482;
    font-size: 35px;
    padding-bottom: 50px;
	letter-spacing: 0.3rem;
}
@font-face {
	font-family: "Lakeside";
	src: url("../fonts/Lakeside-Regular.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "NotoSansJP Medium";
	src: url("../fonts/NotoSansJP-Medium.otf");
}
@font-face {
	font-family: "NotoSansJP Black";
	src: url("../fonts/NotoSansJP-Black.otf");
}
@font-face {
	font-family: "Hiragino w3";
	src: url("../fonts/Heisei Kaku Gothic Std W3.otf");
}
@font-face {
	font-family: "Hiragino w5";
	src: url("../fonts/Heisei Kaku Gothic Std W5.otf");
}
@font-face {
	font-family: "Hiragino w6";
	src: url("../fonts/Hiragino Kaku Gothic Pro W6.otf");
}
@font-face {
	font-family: "Hiragino w9";
	src: url("../fonts/Heisei Kaku Gothic Std W9.otf");
}
@media screen and (max-width: 768px) {
	h3{
		font-size: 20px;
		padding-bottom: 30px;
	}
}

/*共通パーツ
=======================================================*/
.inner,
.inner-pc{
	width: 1000px;
	margin: 0 auto;
	padding: 100px 0;
}
.inner2{
	width: 1000px;
	margin: 0 auto;
	padding: 0 0 100px 0;
}
.inner-pc{
	padding: 0 0 50px;
}
/* 文字色 */
.fc-y{
	color:#F7F975!important;
}
.fc-w{
	color:#fff!important;
}
.fc-b{
	color:#003893!important;
}
.fc-black{
	color:#333!important;
}
/* 背景色 */
.bg-b{
	background: #003893!important;
}
.bg-o{
	background: #F98100!important;
}
.bg-p{
	background: #EC5C73!important;
}
/* 位置 */
.tac{
	text-align: center;
}
/* タイトル */

.pc-none{
	display: none;
}
.tb-none{
	display:none;
}
.sp-none{
	display: block;
}

/* 共通アニメーション */
.fadein/* スクロールありで下から上 */ {
	opacity : 0;
	transform: translateY(50px);
	transition: all 2s;
}
.fadein2/* スクロールありで右から左 */ {
	opacity : 0;
	transform: translateX(-50px);
	transition: all 1.5s;
}
.fadein5/* スクロールありで上から下 */ {
	opacity : 0;
	transform: translateY(-50px);
	transition: all 2s;
}
.fadein3/* スクロールなし下から上でフェードイン */ {
	animation-duration: 2s;/* アニメーション時間 */
	animation-name: fadein3;/* アニメーション名 */
}
.fadein4/* スクロールなしで上から下フェードイン */ {
	animation-duration: 2s;/* アニメーション時間 */
	animation-name: fadein4;/* アニメーション名 */
}

@keyframes fadein3 {
	0% {
		opacity: 0;/* 透明 */
		transform: translateY(50px);
	}
	100% {
		opacity: 1;/* 不透明 */
		transform: translateY(0);
	}
	}
	@keyframes fadein4 {
	0% {
		opacity: 0;
		transform: translateY(-50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.img-anime2{
	animation: fluffy1 2s ease infinite; 
}
.img-anime3{
  animation: fluffy1 3s ease infinite; 
}
@keyframes fluffy1 {
	0% {
		transform: translateY(0);
	}
	5% {
		transform: translateY(0);
	}
	10% {
		transform: translateY(0);
	}
	20% {
		transform: translateY(-10px);
	}
	25% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(-10px);
	}
	50% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(0);
	}
}

/* 共通フレーム */
.frame{
    border-radius: 50px;
    background: #fff;
    padding: 50px;
    box-shadow: 4px 4px 0px #A58355;
	position: relative;
}

@media screen and (max-width: 1000px){
	.inner,
	.inner2{
		width: 90%;
	}
	.inner-pc{
		width: 90%;
	}
	.pc-none{
		display: block;
	}
	.tb-none{
		display: none;
	}
	.sp-none{
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.inner{
		width: 90%;
		padding: 50px 0;
	}
	.inner2{
		width: 90%;
		padding: 0 0 50px 0;
	}
	.inner-pc{
		width: 100%;
	}
	.frame{
		padding: 30px 20px;
		border-radius: 30px;
		box-shadow: 7px 7px 0px #a58355;
	}
	.tb-none{
		display: block;
	}
	.sp-none{
		display: none;
	}
}

/*メインビジュアル topview
=======================================================*/
.topview{
	background: #ede2d6;
	position: relative;
}
.topview .inner{
	padding-bottom: 150px;
}
.topview-bg{
	position: absolute;
	width: 10vw;
}
.topview-bg1{
	bottom:0;
	left:0;
}
.topview-bg2{
	top:5%;
	right: 0;
}
.topview-bg3{
    top: 30%;
    left: 3%;
    height: 100px;
    object-fit: contain;
}
.topview-bg4{
	bottom: 4%;
    right: 30%;
    height: 70px;
    object-fit: contain;
}
.topview-bg5{
	bottom: 33%;
    right: 5%;
    height: 45px;
    object-fit: contain;
}
.topview-bg6{
    bottom: 10%;
    left: 28%;
    height: 50px;
    object-fit: contain;
}
.topview-bg7{
    bottom: 6%;
    left: 35%;
    height: 50px;
    object-fit: contain;
}
.topview-bg8{
	top: 19%;
    right: 8%;
    height: 50px;
    object-fit: contain;
}
.topview-wrap{
	font-family: 'Hiragino w5','NotoSansJP Medium','メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'sans-serif';	position: relative;
	background-image: url(../images/top_frame.png);
    background-repeat: no-repeat;
    background-size: contain;
	background-position: center;
	display: grid;
	width: 100%;
    margin: 0 auto;
}
.topview-img{
	position: absolute;
}
.topview-img1{
    left: -14%;
    top: -3%;
}
.topview-img2{
	right: -6%;
    top: -5%;
    width: 130px;
}
.topview-img3{
    left: -4%;
    height: 200px;
	object-fit: contain;
    top: 25%;
}
.topview-img4{
    right: -10%;
    top: 40%;
    height: 120px;
	object-fit: contain;
}
.topview-img5{
	left: -4%;
    bottom: -6%;
}
.topview-img6{
    right: -1%;
    bottom: -5%;
    height: 200px;
	object-fit: contain;
}
.topview-font{
	font-family: Lakeside;
    bottom: 15%;
    right: 4%;
    font-size: 60px;
    line-height: 1.0;
    color: #9a8873;
	transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
}
.top-lines1{
    background-image: url(../images/top_lines.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    font-size: 25px;
    color: #fff;
    height: 130px;
    font-weight: bold;
    line-height: 155px;
    margin: 10px 0;
}
.top-lines1 span{
	font-size:35px;
	margin-left: 20px;
}
.top-lines2{
	font-size: 30px;
	font-weight: bold;
	color:#807764;
}
.top-lines2 span{
	border-bottom: double 7px #d99b50;
    padding-bottom: 3px;
}
.top-lines3{
	font-size: 50px;
    line-height: 1.5;
    margin: 20px 0;
	color:#807764;
}
.top-lines3 span{
	color: rgba(0,0,0,0);
    font-family: 'Hiragino w9', 'NotoSansJP Black', 'ヒラギノ角ゴ Pro W3','メイリオ', 'Meiryo', 'Hiragino Kaku Gothic Pro', 'sans-serif';
    font-size: 65px;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #ed9d3e;
    -webkit-text-stroke: 1px #000;
    text-shadow: 3px 3px #5d5a55;
}
.top-lines3 span ruby rt{
	text-align: center;
    margin: 0 auto;
    font-size: 25px;
}
.top-lines4{
    font-family: 'Hiragino w3','NotoSansJP Medium','メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'sans-serif';	font-weight: bold;
	color:#807764;
	letter-spacing: 0.2rem;
	position: relative;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: fit-content;
	margin: 0 auto 50px;
    background-image: url(../images/dot_line.png);
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: 100%;
	padding-bottom: 5px;
}
.top-lines4 span{
	font-size: 18px;
	margin-bottom: 2px;
}
span.top-lines4-txt-era{
	font-size: 25px;
	margin-bottom: 0px;
}
.top-lines4 .top-lines4-txt{
	margin-left: 20px;
	display: flex;
    align-items: flex-end;
}
.lines4-img1,
.lines4-img2{
	position: absolute;
	top: 5%;
}
.lines4-img1{
	left: -10%;
}
.lines4-img2{
	right: -10%;
}

@media screen and (max-width: 1000px){
	.topview .inner{
		width: 100%;
	}
	.topview-wrap{
		width: 90%;
	}
	.topview-sp-bg1{
		width: 60%;
		top: 1%;
		z-index: 1;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}
	.topview-sp-bg2{
		width: 60%;
		bottom: 0;
		z-index: 1;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}
	.top-lines2{
		font-size: 3vw;
	}
	.top-lines3{
		line-height: 1.2;
		font-size: 4vw;
	}
	.top-lines3 span{
		font-size: 6vw;
	}
}
@media screen and (max-width: 768px){
	.topview .inner{
		padding: 20vw 0;
	}
	.topview-bg1,
	.topview-bg2{
		width: 20vw;
	}	
	.topview-bg1{
	    top: 9%;
	}
	.topview-bg2{
		top: 50%;
		right: 0;
	}
	.topview-wrap{
		background-image: url(../images/top_frame_sp.png);
	}
	.top-lines1{
		height: 65px;
		line-height: 80px;
		font-size: 12px;
		margin-top: 30px;
	}
	.top-lines1 span{
		font-size: 20px;
	}
	.top-lines2{
		font-size: 15px;
	}
	.top-lines2 span{
		padding-bottom: 0;
	}
	.top-lines3{
		font-size: 30px;
		margin: 10px 0;
	}
	.top-lines3 span{
		font-size: 40px;
		-webkit-text-stroke: 0.8px #000;
		text-shadow: 2px 2px #5d5a55;
	}
	.top-lines3 span ruby rt{
		font-size: 15px;
	}
	.top-lines4{
		display: block;
		font-size: 21px;
		margin: 0 auto 30px;
		line-height: 1.2;
	}
	.top-lines4 .top-lines4-txt{
		margin-left: 0;
	}
	.top-lines4 span{
		font-size: 13px;
	}
	.lines4-img1,
	.lines4-img2{
		display: none;
	}
	.topview-sp-bg1,
	.topview-sp-bg2{
		width: 80%;
	}
}

/*説明 intro
=======================================================*/
.intro{
	background: #d99b50;
	position: relative;
	padding-top: 100px;
}
.intro-bg{
	position: absolute;
	top:0;
	left: 0;
	width: 10vw;
}
.intro-wrap{
	color:#fff;
	line-height: 2.5;
}
.intro-txt-wrap{
	padding-bottom: 20px;
}
.intro-txt-wrap .intro-txt{
    margin-right: 10px;
}
.intro-txt{
	background: #fff;
	clip-path: polygon(5% 0%, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0 50%);
    color: #d99b50;
    position: relative;
    padding: 10px 20px;
    display: inline-block;
	margin: 20px 0;
}
.intro-txt:first-child{
    margin-top: 0;
    margin-bottom: 0;
}
.intro-txt2{
	width: 500px;
}
.intro-txt-wrap{
	display: flex;
	justify-content: center;
	align-items: center;
}
.intro-img{
	margin-top: 100px;
    display: flex;
    justify-content: space-between;
	align-items: flex-start;
}
.intro-img img{
	object-fit: contain;
}
.intro-img img:nth-child(odd){
	margin-top: 100px;
}
.intro-img img:nth-child(even){
	margin-bottom: 100px;
}

@media screen and (max-width: 1000px){
	.intro-img img{
		width: calc(100% / 4.4);
	}
}
@media screen and (max-width: 768px){
	.intro{
		font-size: 10px;
		padding-top: 50px;
	}
	.intro-bg{
		display: none;
	}
	.intro-txt{
		padding: 10px;
	}
	.intro-txt-wrap .intro-txt{
		margin-right: 5px;
	}
	.intro-txt2{
		width: 300px;
	}
	.intro-img{
		margin-top: 50px;
	}
	.intro-img img:nth-child(odd){
		margin-top: 50px;
	}
	.intro-img img:nth-child(even){
		margin-bottom: 50px;
	}
}

/*詳細 detail
=======================================================*/
.detail{
	background: #ede2d6;
	position: relative;
}
.detail .frame{
	box-shadow: 4px 4px 0px #afa594;
}
.detail-bg{
	position: absolute;
    width: 200px;
    object-fit: contain;
}
.detail-bg1{
	right: 2%;
	top:5%;
}
.detail-bg2{
	left:2%;
	top:50%;
}
.detail-bg3{
	right: 2%;
	bottom:10%;
}
.detail .frame{
	position: relative;
	margin-top: 100px;
}
.detail .frame:first-child{
	margin-top: 0;
}
.ttl-wrap{
	position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.detail .frame .ttl-L{
	background: #fff;
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);
    text-align: center;
    width: 530px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.detail .frame h2{
    background: #79705c;
    clip-path: polygon(0 0, 100% 0, 96% 50%, 100% 100%, 0 100%, 4% 50%);
    border-radius: 5px;
    color: #fff;
    width: 500px;
    height: 45px;
    text-align: center;
    margin-bottom: 0;
}
.detail-time{
	font-weight: bold;
    color: #807764;
    letter-spacing: 0.2rem;
    position: relative;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: fit-content;
	margin: 20px auto;
	background-image: url(../images/dot_line.png);
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: 100%;
    padding: 5px 20px;
}
.detail-time span{
	margin-bottom: 3px;
	font-size: 18px;
}
.active li{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	margin: 20px 0;
    padding: 20px 0;
}
.active li::after{
	content: "";
    position: absolute;
    bottom: 0;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	background-image: url(../images/dot_line.png);
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: 100%;
    padding: 5px 20px;
}
.active li:last-child{
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
}
.active li:last-child:after{
	content: none;
}
.active li .num{
	position: relative;
	width: 15%;
    height: auto;
}
.active li .num span{
    position: absolute;
    font-size: 60px;
    font-weight: bold;
    color: #fff;
	top: 47%;
    left: 47%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.active li .active-txt{
	width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.active li .active-txt span{
	width: 70%;
    font-size: 23px;
    font-weight: bold;
    color: #807764;
}
.active li .active-txt .active-txt-img{
	width: 20%;
}
.active li .active-txt img{
	margin: 0 auto;
    display: block;
}
.step-wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
}
.step-box-txt{
	font-size: 20px;
	color: #807764;
}
.step-box-ttl{
	font-size: 30px;
    margin-bottom: 20px;
}
.step-box{
	display: flex;
    flex-wrap: wrap;
    width: 40%;
    justify-content: space-between;
    align-items: center;
	font-weight: bold;
}
.step-arrow{
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid #807764;
    height: 20px;
}
.step-box-img{
	display: flex;
	align-items: center;
	justify-items: center;
	width: 180px;
	height: 180px;
	border-radius: 100%;
	background: #ede2d6;
}
.step-box-img img{
	margin: 0 auto;
}
.step-btn a{
	background: #ed7995;
	color:#fff;
    width: 99%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    font-size: 40px;
    margin-top: 50px;
}
.step-btn span{
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #fff;
    margin-left: 20px;
}

@media screen and (max-width: 1000px){
	.step-box{
		justify-content: space-around;
	}
	.active li .num span{
		top: 39%;
	}
	.detail-time span:first-child {
		margin-right: 20px;
	}
}
@media screen and (max-width: 768px){
	.detail .frame{
		padding: 50px 20px;
		box-shadow: 7px 7px 0px #cdc7bd;
	}
	.detail .frame .ttl-L{
		width: 320px;
		height: 50px;
	}
	.ttl-wrap{
		top: -20px;
	}
	.detail .frame h2{
		font-size: 20px;
		width: 300px;
		height: 40px;
	}
	.detail-time{
		font-size: 15px;
		white-space: nowrap;
		margin: 0 auto;
		padding: 5px;
	}
	.detail-time span{
		font-size: 10px;
		letter-spacing: 1px;
	}
	.detail-time span:first-child{
		margin-right: 10px;
	}
	.active li::after{
		width: 100%;
	}
	.active li .active-txt{
		width: 100%;
	}
	.active li .num{
		width: 100%;
		text-align: center;
	}
	.active li .num img{
		width: 90px;
		transform: rotate(60deg);
	}
	.active li .num span{
		top: 3%;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		font-size: 40px;
	}

	.active li {
		margin: 0;
	}
	.active li .active-txt span{
		width: 77%;
		font-size: 14px;
	}
	.step-wrap{
		justify-content: center;
		margin-top: 12px;
	}
	.step-box{
		width: 100%;
	}
	.step-arrow{
		transform: rotate(90deg);
		border-top: 20px solid transparent;
		border-bottom: 20px solid transparent;
		border-left: 20px solid #807764;
		margin: 20px 0;
	}
	.step-box-img{
		width: 100px;
	    height: 100px;
	}
	.step-box-img img{
		width: 50%;
	}
	.step-box-ttl{
		font-size: 22px;
		margin-bottom: 0;
	}
	.step-box-txt{
		font-size: 15px;
		letter-spacing: 2px;
	}
	.step-btn a{
		font-size: 25px;
	}
	.step-btn span{
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-left: 10px solid #fff;
	}
}

/*注意事項 notes
=======================================================*/
.notes{
	background: #d99b50;
	font-weight: bold;
	position: relative;
}
.notes-bg1,
.notes-bg2{
	width: 10vw;
	position: absolute;
}
.notes-bg2{
	bottom:0;
	right: 0;
}

.notes-txt{
	line-height: 2.3;
    font-size: 18px;
}
.breadcrumb{
	padding-top: 100px;
	color:#fff;
	font-weight: normal;
	font-size: 15px;
}

@media screen and (max-width: 1000px){
}
@media screen and (max-width: 768px){
	.notes-bg1,
	.notes-bg2{
		display: none;
	}
	.notes-txt{
		font-size: 12px;
	}
}