* {
	padding: 0;
	margin: 0;
}
html {
	height: 100%;
    font-size: 100%; /* = 16px 基準に */
    box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	width: 100%;
	height: 100%;
	color: #323232;
	background-color: #FFFFFF;
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Noto Sans JP', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	word-wrap: break-word;
	margin-bottom: 25px;
    font-size: 1rem; /* = 16px 基準に */
	line-height: 1.6;
	overscroll-behavior: none;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
*, *::before, *::after {
	box-sizing: inherit;
}

th {
	white-space: nowrap;
}


/*タイトル/テキスト-------------------------------------------*/
h2 {
	font-size: 2.5rem;         /* 40px */
	font-weight: bold;
	line-height: 1.3;
	margin: 0.5rem 0 2.5rem;
}

h3 {
	font-size: 2rem;           /* 32px */
	font-weight: bold;
	line-height: 1.3;
}

h4 {
	font-size: 1.5rem;         /* 24px */
	font-weight: bold;
	line-height: 1.5;
}

p {
	font-size: 1rem;           /* 16px */
	line-height: 1.8;
	margin-bottom: 1rem;
}
/* 1300px以下（ノートPC・小型デスクトップ） */
@media screen and (max-width: 1280px) {
	h2 { 
		font-size: 2.25rem; 
		margin: 0.5rem 0 1rem;
	} /* 36px */
	h3 { font-size: 1.8rem; }  /* 28.8px */
	h4 { font-size: 1.4rem; }  /* 22.4px */
	p  { font-size: 0.95rem; } /* 15.2px */
}

  /* 1024px以下（タブレット横向き） */
@media screen and (max-width: 1024px) {
	h2 { font-size: 2rem; }   /* 32px */
	h3 { font-size: 1.6rem; } /* 25.6px */
	h4 { font-size: 1.3rem; } /* 20.8px */
	p  { font-size: 0.9rem; } /* 14.4px */
}

  /* 768px以下（タブレット縦向き） */
@media screen and (max-width: 768px) {
	h2 { font-size: 1.8rem; } /* 28.8px */
	h3 { font-size: 1.4rem; } /* 22.4px */
	h4 { font-size: 1.2rem; } /* 19.2px */
	p  { 
		font-size: 0.875rem; 
		text-align: left;
	} /* 14px */
}

  /* 560px以下（スマホ横向き・小型タブレット） */
@media screen and (max-width: 560px) {
	h2 { font-size: 1.6rem; } /* 25.6px */
	h3 { font-size: 1.3rem; } /* 20.8px */
	h4 { font-size: 1.1rem; } /* 17.6px */
	p  { font-size: 0.85rem; } /* 13.6px */
}

  /* 450px以下（スマホ縦向き） */
@media screen and (max-width: 450px) {
	h2 { font-size: 1.4rem; } /* 22.4px */
	h3 { font-size: 1rem; } /* 19.2px */
	h4 { font-size: 1rem; }   /* 16px */
	p  { font-size: 0.8rem; } /* 12.8px */
}

.block-ttl {
	text-align: center;
	padding-top: 30px;
	margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
	.block-ttl {
		padding-top: 20px;
		margin-bottom: 20px;
	}
}

/*レイアウト-------------------------------------------*/
.wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.wrapper-middle {
    max-width: 960px;
    width: 100%; 
    margin: 0 auto;
}
.wrapper-small {
    /* max-width: 700px;
    width: 100%; 
    margin: 0 auto; */
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: auto;
    gap: 10px;
}

@media screen and (max-width: 768px) {
	.wrapper {
		max-width: 98%;
		padding: 0 1rem;
	}
	.wrapper-middle {
		max-width: 98%;
	}
	.wrapper-small {
		max-width: 98%;
		gap: 55px;
	}
}
@media screen and (max-width: 450px) {
	.wrapper-small {
		margin-top: 90px;
		margin-bottom: 30px;
	}
}


img {
	max-width: 100%;
}
section,
article {
	display: block;
}
a:hover img {
	opacity: 0.9;
	transition: opacity 0.5s ease;
}
li {
	list-style-type: none;
}
a {
	color: #323232;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
	text-decoration: none;
}
a:hover {
	opacity: 0.9;
	transition: opacity 0.5s ease;
	text-decoration: none;
}
.txt-contents {
	text-align: center;
}
.textCenter{
	text-align: center;
}
.textLeft{
	text-align: left;
}
.center {
	margin: 0 auto;
}
.clfix::after {
	content: "";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.sp__on{
	display: none;
}
.pc__on{
	display: block;
}
.pt-4 {
	padding-top: 4rem;
}
.pt-5 {
	padding-top: 5rem;
}
.pt-6 {
	padding-top: 6rem;
}
.pt-10 {
	padding-top: 10rem;
}
.mb-2 {
	margin-bottom: 2rem;
}
.mb-3 {
	margin-bottom: 3rem;
}
.mb-4 {
	margin-bottom: 4rem;
}
.mb-5 {
	margin-bottom: 5rem;
}
.mb-6 {
	margin-bottom: 6rem;
}
.mb-10 {
	margin-bottom: 10rem;
}
.pb-3 {
	padding-bottom: 3rem;
}
.pb-10 {
	padding-bottom: 10rem;
}
.br-pc {
	display: block;
}
.br-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.br-pc {
		display: none;
	}
	.br-sp {
		display: block;
	}
	.txt-contents {
		text-align: left;
	}
	.pt-6 {
		padding-top: 1rem;
	}
	.mb-10 {
		margin-bottom: 5rem;
	}
	.mb-3 {
		margin-bottom: 2rem;
	}
	.pb-3 {
		padding-bottom: 2rem;
	}
	.sp__on{
		display: block;
	}
	.pc__on{
		display: none;
	}
	.sp-img {
		width: 220px;
	}
}
.bg-y {
	background-color:#FFF9E3;
	z-index: -100;
}
.bg-g {
	background-color:#00A159;
	z-index: -100;
}

.txt-w {
	color: #fff;
}
.txt-r {
	color: #fb5d6c;
	font-weight: bold;
}
.bg-w {
	background-color:#fff;
}


/*共通の装飾-------------------------------------------*/

/* 背景 */
.side-bg01 {
	max-width: 100%;
    background-image: url(../img/side-bg01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.side-bg02 {
	max-width: 100%;
    background-image: url(../img/side-bg02.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.side-bg03 {
	max-width: 100%;
    background-image: url(../img/side-bg03.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.side-bg04 {
	max-width: 100%;
    background-image: url(../img/side-bg04.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
@media screen and (max-width: 768px) {
	.side-bg01,
	.side-bg02,
	.side-bg03,
	.side-bg04 {
		background-image: none;
	}
}


/* リボン */
.ribbon1 {
	display: inline-block;
    position: relative;
    height: 75px;
    line-height: 33px;
    text-align: center;
    padding: 20px 85px 0;
    font-size: 24px;
    background: #C71B2B;
    color: #FFF;
    box-sizing: border-box;
    margin: 0;
    /* z-index: 1; */
    letter-spacing: 1.5px;
    position: absolute;
    top: -82px;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 70%;
}
.ribbon1:before, .ribbon1:after {
	position: absolute;
	content: '';
	width: 0px;
	height: 0px;
	z-index: 0;
}
.ribbon1:before {
	top: -8px;
	left: -2px;
	border-width: 48px 0px 45px 25px;
    /* border-width: 49px 0 52px 25px; */
	border-color: transparent transparent transparent #fff;
	border-style: solid;
}
.ribbon1:after {
	top: -6px;
    right: -3px;
    border-width: 45px 25px 52px 0px;
    border-color: transparent #fff transparent transparent;
    border-style: solid;
}
.ribbon2 {
	display: inline-block;
	position: relative;
	height: 50px;/*リボンの高さ*/
	line-height: 50px;/*リボンの高さ*/
	text-align: center;
	padding: 0 70px;/*横の大きさ*/
	font-size: 24px;/*文字の大きさ*/
	background: #C71B2B;/*塗りつぶし色*/
	color: #FFF;/*文字色*/
	box-sizing: border-box;
	margin:0;
	z-index: 1;
}

.ribbon2:before, .ribbon2:after {
	position: absolute;
	content: '';
	width: 0px;
	height: 0px;
	z-index: 0;
}
.ribbon2:before {
	top: 0;
	left: 0;
	border-width: 25px 0px 25px 15px;
	border-color: transparent transparent transparent #fff;
	border-style: solid;
}
.ribbon2:after {
	top: 0;
	right: 0;
	border-width: 25px 15px 25px 0px;
	border-color: transparent #fff transparent transparent;
	border-style: solid;
}
.ribbon-box {
	position: relative;
}
.ribbon-mv-contents {
	width: 100%;
    background: #fff;
    border: solid 2px #C71B2B;
    border-radius: 20px;
    /* position: absolute; */
    /* top: 45px; */
    position: relative;
}
.ribbon-txt {
	padding-top: 3.3rem;
}
.ribbon-txt-ttl {
	font-size:20px;
	font-weight:bold;
	margin-bottom: 10px;
}
.ribbon-date {
	background-color:#FED932;
}
.ribbon-date p {
	text-align: center;
	font-size:20px;
	font-weight:bold;
	padding: 10px 40px 0;
}
.ribbon-date span {
	font-size:40px;
}
@media screen and (max-width: 768px) {
	.ribbon2 {
		font-size: 20px;
	}
	.ribbon-box {
		margin-bottom: 75px;
	}
	.ribbon-date p {
		line-height: 1.2;
		padding: 20px 10px;
	}
	.ribbon1 {
		padding: 20px 60px 0;
	}
}
@media screen and (max-width: 450px) {
	.ribbon1 {
		font-size: 16px;
        line-height: 25px;
        padding: 13px 30px;
        height: 50px;
		top: -58px;
	}
	.ribbon-date span {
		font-size: 18px;
	}
	.ribbon2 {
		font-size: 14px;
		height: 35px;
		line-height: 35px;
		padding: 0 55px;
	}
	.ribbon2:before {
		left: -1px;
		border-width: 18px 0px 18px 15px;
	}
	.ribbon2:after {
		right: -1px;
		border-width: 18px 15px 18px 0px;
	}
	.ribbon1:before {
		top: 0;
		left: -1px;
		border-width: 27px 0px 35px 20px
	}
	.ribbon1:after {
		top: 0;
		right: -1px;
		border-width: 27px 20px 35px 0px;
	}
	.ribbon-txt-ttl {
		font-size:14px;
		margin-bottom: 5px;
	}
	.ribbon-txt {
		padding-top: 2.5rem;
	}
	.ribbon-date p {
		font-size:14px;
		padding: 20px 0;
	}
	.ribbon-mv-contents {
		top:30px;
	}
}

/* CVR btn */
.inline-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem; /* 画像と文字の間のスペース */
	background-color: #f39800;
	color: white;
	font-weight: bold;
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-size: 1rem;
}
.inline-button img {
	height: 1.2em; /* 文字サイズに合わせた高さ */
	vertical-align: middle;
}


/* エフェクト */
.itemEffect {
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha( opacity=0 )";
	transform: translateY(30px);
	-webkit-transform: translateY(30px);  
    -moz-transform: translateY(30px); 
	-webkit-transition: 1.0s ease-out;
	-moz-transition: 1.0s ease-out;
	transition: 1.0s ease-out;
}
.itemEffect.delay02 {
	transition-delay:0.2s;
	-webkit-transition-delay:0.2s;
}
.itemEffect.delay04 {
	transition-delay:0.4s;
	-webkit-transition-delay:0.4s;
}
.itemEffect.delay06 {
	transition-delay:0.6s;
	-webkit-transition-delay:0.6s;
}
.itemEffect.delay08 {
	transition-delay:0.8s;
	-webkit-transition-delay:0.8s;
}
.itemEffect.start {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	transform: translateY(0px);
	-webkit-transform: translateY(0px);  
	-moz-transform: translateY(0px);   
}

/* 画面右固定ボタン */
.rsvBtn {
    position: fixed;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    right: 0;
    z-index: 10;
}
.rsvBtn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: padding-right .2s;
}
.rsvBtn a span {
    writing-mode: vertical-lr;
    color: var(--white-y);
}
.rsvBtn img {
	margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
	.rsvBtn {
		display: none;
	}
}