*,*::before,*::after {
	-webkit-tap-highlight-color: transparent; /* タップしたときの強調をなくす */
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}


html {
  font-size: 100%; /* ＝そもそも設定が不要 */
}


/* Lityが開いている間、背景のスクロールを禁止（位置ズレを起こさない記述） */
html.lity-active,html.lity-active body {
	overflow: hidden;
	height: 100vh; /* 画面の高さを固定してスクロールをロック */
}


body {
    font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem; /*16px*/
	line-height: 2;
}


main {
	max-width: 1200px;
	margin: 0 auto;
}


footer {
	background: #314399;
	color: #ffffff;
	margin: auto;
	padding: 3rem;
	text-align: center;
	width: 100%;
	max-width: 1200px;
}


#pagetop {
    position: fixed;
    bottom: 1rem;
	right: 1rem;
	cursor: pointer;
	z-index: 99;
}


.hplink {
	color: #ffffff;
	text-decoration: none;
}


.hplink:hover {
	color: #e0ebaf;
}


.ptop {
	position: relative;
	width: 80px;
	height: 80px;
	background-color: #f5deb3;
	border-radius: 50%;
	box-shadow: 0 3px 6px rgba(0,0,0,0.25);
	color: #d2691e;
	text-align: center;
	opacity: 0.5;
}


.ptop p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}


h1 {
	font-size: clamp(1.5rem, 5vw, 3rem);
	line-height: 1.8;
}


h2 {
	font-size: clamp(1.3rem, 5vw, 2.7rem);
	line-height: 1.5;
}


p {
	font-size: clamp(1rem, 4vw, 1.5rem);
	line-height: 1.5;
}

	
img {
	max-width: 100%;
	height: auto;
	display: block;
}


video {
	width: 100%;
	height: 100%;
}


/*ロゴの大きさを調整*/
#logo img {
	max-width:35%;
}


/*
nav {
	width: 100%;
	height: 70px;
	align-items: center;
	position: relative;
	background: #F6F6F6;
}


.drawer {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 70px;
	padding: 0 1em;
}


.nv-st {
	max-width: 1200px;
	margin: auto;
}
*/



.hschan1 {
	/*画面幅に合わせる設定（好みの％やvw）*/
    width: 90%;
	max-width: 600px;
	/*1コマの比率を維持して自動で高さを決める*/
    aspect-ratio: 3/1;
	/*url()にはCSSファイルから見た画像への相対パス*/
	/*CSSファイルが別フォルダにある場合は上の階層に戻る（../）*/
    background: url("../img/amcr1_20260918_01c.svg");
	/*1コマ分（100％）×24コマ＝2400％*/
	background-size: 2400% auto;
	/*24コマを等間隔でアニメーション*/
    animation: play1 3s steps(24) infinite;
	margin: 1.5rem auto 0 auto;
}


.hschan2 {
	/*画面幅に合わせる設定（好みの％やvw）*/
    width: 90%;
	max-width: 600px;
	/*1コマの比率を維持して自動で高さを決める*/
    aspect-ratio: 3/1;
	/*url()にはCSSファイルから見た画像への相対パス*/
	/*CSSファイルが別フォルダにある場合は上の階層に戻る（../）*/
    background: url("../img/amcr1_20260918_02.svg");
	/*1コマ分（100％）×24コマ＝2400％*/
	background-size: 2400% auto;
	/*24コマを等間隔でアニメーション*/
    animation: play1 3s steps(24) infinite;
	margin: 1.5rem auto 0 auto;
}


@keyframes play1 {
    0% {
		background-position: 0% 0;
    }
	100% {
		background-position: calc(-100%*24) 0;
	}
}


.container1 {
	background: rgb(212 236 238 / 1);
	max-width: 1200px;
	margin: auto;
	padding-bottom: 6rem;
}


.container2 {
	background: rgb(212 236 238 / 1);
	max-width: 1200px;
	margin: auto;
}


.flex_02 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 95%;
	max-width: 1000px;
	margin: auto;
	padding: 1rem;
	gap: 10px;
}

.flex_02 img {
	width: 100%;
	max-width: 300px;
}


.flexbox1a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 3rem auto;
}


.flexbox1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 6rem auto 3rem auto;
}


.flexbox2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 40px;
	margin: 1rem auto 1rem auto;
}


.flexbox-A {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	max-width: 700px;
	height: auto;
	margin: 0 auto;
	padding: 1rem 1rem 2rem 1rem;
	background-color: #fff;
	border-radius: 20px;
}


.flexbox-A2 {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 1rem 1rem 2rem 1rem;
	background-color: #fff;
	border-radius: 20px;
}


.flexbox-A3 {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 1rem 1rem 2rem 1rem;
	background-color: #fff;
	border-radius: 20px 20px 0 0;
}


/*
.updown1 {
    animation-name: updown1;
    animation-delay: 0s;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes updown1 {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}
*/


.ghost_01 {
	width: 100%;
	max-width: 500px;
	max-height: 800px;
	margin: 0 auto 3rem auto;
	padding: 0 20px;
	background-color: #ffffff;
}

.ghost_01 img {
	width: 100%;
	height: auto;
}


.award1 {
	display: flex;
	justify-content: center;
	align-items: center;	
	width: 95%;
	max-width: 150px;
	height: 50px;
	margin: 0 auto 2rem auto;
	text-align: center;
	color: #000000;
	background: #ffd700;
	box-shadow: 0 3px 6px rgba(0,0,0,0.25);
	border-radius: 25px;
}


.award2 {
	display: flex;
	justify-content: center;
	align-items: center;	
	width: 95%;
	max-width: 150px;
	height: 50px;
	margin: 0 auto 2rem auto;
	text-align: center;
	color: #000000;
	background: #ffc0cb;
	box-shadow: 0 3px 6px rgba(0,0,0,0.25);
	border-radius: 25px;
}


.award3 {
	display: flex;
	justify-content: center;
	align-items: center;	
	width: 95%;
	max-width: 150px;
	height: 50px;
	margin: 0 auto 2rem auto;
	text-align: center;
	color: #000000;
	background: #9acd32;
	box-shadow: 0 3px 6px rgba(0,0,0,0.25);
	border-radius: 25px;
}


.award4 {
	display: flex;
	justify-content: center;
	align-items: center;	
	width: 95%;
	max-width: 150px;
	height: 50px;
	margin: 0 auto 2rem auto;
	text-align: center;
	color: #000000;
	background: #f5f5dc;
	box-shadow: 0 3px 6px rgba(0,0,0,0.25);
	border-radius: 25px;
}


.a-win {
	flex: none;
	height: 350px;
}


.a-win-t {
	flex: 1;
}


.a-win img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}


.a-title {
	text-align: center;
	margin: 1.5rem;
}


.a-title2 {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 2rem;
	background-color: #fff;
	border-radius: 20px;
}


.a-com1 {
	width: 90%;
	max-width: 600px;
	color: #000000;
	text-align: justify;
	margin-inline: auto;
	margin-bottom: 2rem;
	padding: 1rem;
}


.a-com2 {
	width: 90%;
	max-width: 600px;
	color: #00008b;
	font-weight: 700;
	background: #fff;
	text-align: justify;
	margin-inline: auto;
	border-radius: 1rem;
	padding: 1.5rem;
}


.quiz1 {
	display: flex;
	justify-content: center;
	align-items: center;	
	width: 95%;
	max-width: 300px;
	height: 50px;
	margin: 0 auto 2rem auto;
	text-align: center;
	color: #fff;
	background: #4169e1;
	box-shadow: 0 3px 6px rgba(0,0,0,0.25);
	border-radius: 25px;
}


.quiz2 {
	display: flex;
	justify-content: center;
	align-items: center;	
	width: 95%;
	max-width: 300px;
	height: 45px;
	margin: 0 auto 2rem auto;
	text-align: center;
	color: #fff;
	background: #00bfff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.25);
	border-radius: 25px;
}


.qz {
	width: 90%;
	max-width: 680px;
}


.answer {
	width: 90%;
	max-width: 800px;
	color: #000000;
	margin: 1rem auto 2rem auto;
}


.space {
	margin: 1rem 0 2rem 0;
}


.req1 {
	display: flex;
	justify-content: center;
	align-items: center;	
	width: 95%;
	max-width: 300px;
	height: 40px;
	margin: 1rem auto;
	text-align: center;
	background: #ff69b4;
	box-shadow: 0 3px 6px rgba(0,0,0,0.25);
	border-radius: 20px;
}


.req1 .lbt {
	text-decoration: none;
}


.req1 h2 {
	color: #fff;
}


.text_d00 {
	color: #00008b;
	font-weight: 600;
	width: 90%;
	max-width: 1000px;
	text-align: center;
	margin: 3rem auto 1rem auto;
}


.text_d01 {
	color: #00008b;
	font-weight: 600;
	width: 90%;
	max-width: 1000px;
	margin: auto;
	padding: 1rem 0 1rem 0;
}


.text_d02 {
	color: #00008b;
	font-weight: 600;
	width: 90%;
	max-width: 1000px;
	margin: auto;
	padding: 2rem 0;
}


.text_d03 {
	color: #00008b;
	width: 90%;
	max-width: 1000px;
	margin: auto;
	padding: 2rem 0 1rem 0;
	text-align: left;
}


.text_d04 {
	color: #333333;
	width: 90%;
	max-width: 1000px;
	margin: auto;
	padding: 1rem 0;
	text-align: left;
	font-weight: 700;
}


.text_d05 {
	color: #333333;
	width: 90%;
	max-width: 1000px;
	margin: auto;
	padding: 2rem 0 1rem 0;
	text-align: left;
	font-weight: 700;
}
	

.linkB {
	display: flex;
	justify-content: center;
	align-items: center;
	margin:20px 0;
}

.linkB a{
	width: 70%;
	max-width: 600px;
	height: auto;	
}

.linkB img{
	width: 100%;
	height: auto;
}

.linkB img:hover {
	opacity: 0.6;
	transition: 0.8s;
}


.linkC {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0 30px 0;
}

.linkC a{
	width: 70%;
	max-width: 600px;
	height: auto;	
}

.linkC img{
	width: 100%;
	height: auto;
}

.linkC img:hover {
	opacity: 0.6;
	transition: 0.8s;
}


.animashow {
	animation: show linear both;
	animation-timeline: view();
	animation-range: entry 0% cover 40%;
}


.slideinleft1 {
	overflow: clip;
	width: 100%;
	margin: 4rem 0 2rem 0;
}

.slideinleft1 img {
	width: 90%;
	max-width: 600px;
	height: auto;
	margin: auto;
}

@keyframes show {
	0% {
		opacity: 0;
		transform: translateX(-100%);
	}
	100% {
		opacity: 1;
		transform: translateX(-10%);
	}
}


.comment {
	width: 90%;
	max-width: 1000px;
	color: #333333;
	font-weight: 400;
	text-align: justify;
	margin: auto;
	padding: 3rem 0 1rem 0;
}


.swiper-container {
	margin: 0 0 8rem 0;
	position: relative;
}


.swiper1 {
	width: 100%;
	max-width: 1200px;
	height: 730px;
	margin: 0 auto 3rem auto;
	padding: 0 20px;
}


.swiper2 {
	width: 100%;
	max-width: 1200px;
	height: 600px;
	margin: 0 auto 3rem auto;
	padding: 0 20px;
}


.swiper3 {
	width: 100%;
	max-width: 1200px;
	height: 600px;
	margin: 0 auto 3rem auto;
	padding: 0 20px;
}


.swiper-card {
	width: 100%;
	height: 100%;
	padding: 1rem;
	text-align: center;
	background-color: #fff;
	border-radius: 20px;
}


.swiper-card_img1 {
	display: block;
	width: 100%;
	height: 40%;
	object-fit: cover;
	border-radius: 20px;
}


.swiper-card_img2 {
	display: block;
	width: 100%;
	height: 50%;
	object-fit: cover;
	border-radius: 20px;
}


.swiper-card_movie1 {
	display: block;
	width: 100%;
	height: 40%;
	background-color: #000;
	border-radius: 20px;
}


.swiper-card_movie2 {
	display: block;
	width: 100%;
	height: 50%;
	background-color: #000;
	border-radius: 20px;
}


.a-title {
	text-align: center;
	margin: 1.5rem;
}


