@charset "utf-8";

/* =
------------------------------------------------------------------------------ */
:root {
  --whiteColor: #fff;
  --keyColor: #c55474;
  --keyColor2: #df5a80;
	--bgColor: #f4f9f2;
}

html {
    font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP',Arial,sans-serif;
	font-style: normal;
	color: #333;
	background-color: var(--bgColor);
	line-height: 2;
	font-size: clamp(1.4rem, 1.136rem + 0.48vw, 1.8rem);
	font-weight: 400;
}
img {
    max-width: 100%;
    height: auto;
		vertical-align: top;
}
.wrap {
	max-width: 1200px;
	padding: 0 4%;
	margin: 0 auto;
}
.wide {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 2%;
}

a {
	overflow: hidden;
	outline: none;
	text-decoration: none;
}
a:hover, a:active {
	text-decoration: none;
	outline: none;
}
a.opa:hover {
	text-decoration: none;
	opacity: 0.75;
}

a.BTN {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
	border: 1px solid var(--keyColor2);
	border-bottom: 5px solid var(--keyColor);
	padding: 0.5em 2em;
	white-space: nowrap;
	position: relative;
	color: var(--whiteColor);
	background-color: var(--keyColor2);
	/* z-index: 1; */
}
a.BTN:hover {
	color: var(--keyColor2);
	background-color: var(--whiteColor);
}
a.BTN.arrow {
	padding-right: 2.5em;
}
a.BTN.arrow::after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 25px;
	margin: auto;
	width: 10px;
	height: 10px;
	border-top: 2px solid;
	border-right: 2px solid;
	transform: rotate(45deg);
}
a.BTN img {
	display: inline-block;
	height: auto;
	width: 16px;
	margin: 0 0.5em;
}
a.BTN.rd {
	border-radius: 9999px;
}

a.btn-access {
	font-size: 14px;
	padding: 0.2em 3em 0.2em 2em;
}

a.btn-access.arrow::after {
	right: 18px;
}

@media screen and (max-width: 568px){
	.wide {
		padding: 0;
	}

}

/* =フォント
------------------------------------------------------------------------------ */

.fw-n {
	font-weight: 400;
}
.fw-m {
	font-weight: 500;
}
.fw-b {
	font-weight: 700;
}

.fs-s {
	font-size: 0.8em;
}


/* = body
------------------------------------------------------------------------------ */
body {
	position: relative;
}
body::before {
	content: '';
	display: block;
	width: 100%;
	height: 100vh;
	background: url('../img/bg-footer.png') repeat-x;
	background-position: bottom left;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: -1;
}
@media screen and (max-width: 767px) {
	body::before {
		background-size: auto 200px;
	}
}

/* = header
------------------------------------------------------------------------------ */
header {
	background: #fbe7d9;
}
header .logo {
	padding-top: 1em;
	padding-bottom: 1em;
}
header .logo img {
	height: auto;
	width: 200px;
}
header .logo p {
	display: inline-block;
	vertical-align: middle;
	margin: 0 1.5em;
	font-style: italic;
	font-size: 1.2em;
}
@media screen and (max-width: 568px){
	header .logo img {
		height: auto;
		width: 120px;
	}
	.header .wrap {
		background-size: auto 40%;
	}
}

/* =CTA
------------------------------------------------------------------------------ */
.cta {
	text-align: center;
}
.cta .BTN {
	width: 90%;
	max-width: 460px;
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.5;
	overflow: visible;
	background: linear-gradient(to top,#f19422, #f5c423);
	border-color: #fff;
}
.cta .BTN:hover {
	background: #fff;
	color: #f19422;
	border-color: #f19422;
}
.cta .cta-txt {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 15px;
	padding: 10px 0 5px;
	font-size: 2rem;
	font-weight: bold;
}
.cta .cta-txt::before,
.cta .cta-txt::after {
	content: '';
	display: block;
	width: 3px;
	height: 26px;
	position: relative;
	top: -5px;
	background: #333;
}
.cta .cta-txt::before {
	transform: rotate(-20deg);
}
.cta .cta-txt::after {
	transform: rotate(20deg);
}
.cta .cta-fuki {
	position: absolute;
	right: -20px;
	top: -10px;
	width: 90px;
	aspect-ratio: 1 / 1;
	background: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #CF1F41;
	font-size: 3rem;
	font-weight: bold;
	transform: translateY(-50%);
	&::after {
		content: '';
		display: block;
		width: 16px;
		height: 16px;
		clip-path: polygon(100% 0, 0 50%, 100% 100%);
		transform: rotate(-46deg);
		background: #fff;
		position: absolute;
		bottom: 3px;
		left: 0;
	}
}

@media screen and (max-width: 568px){ 
	.cta .BTN {
		font-size: 2rem;
	}
	.cta .cta-fuki {
		width: 64px;
		font-size: 2.4rem;
		&::after {
			width: 14px;
			height: 14px;
		}
	}
}


/* = number
------------------------------------------------------------------------------ */
.number {
	background: #fff;
	/* display: flex; */
	position: relative;
}
.number .wrap {
	position: relative;
	padding-top: 1em;
	padding-bottom: 1em;
}
@media screen and (max-width: 568px){
	.header .number {
		display: block;
	}
}

/* =
------------------------------------------------------------------------------ */
section.lp {
	padding: 4em 0;
}
section.lp .body {
	border: 1px solid #df5a80;
	background-color: #fff;
	padding: 4em;
}
section.lp .body.present {
	padding: 0;
}

h2.sec-ttl {
	font-size: clamp(1.75rem, 1.182rem + 2.42vw, 3rem);
	text-align: center;
  background-color: #df5a80;
	color: #fff;
	border-radius: 16px 16px 0 0;
	word-break: keep-all;
	padding: 0.5em 1em;
	margin: 0 auto;
	font-weight: 500;
}

h3 {
	font-size: clamp(1.75rem, 1.182rem + 2.42vw, 3rem);
	font-weight: 500;
	padding: 0;
	margin: 0 0 1em;
}

h4 {
	font-size: 2rem;
	font-weight: 500;
	padding: 0;
	margin: 0 0 0.5em;
}

.present h3 {
	margin: 0;
}


/* =コラム */

.flexBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flexBox.start {
	justify-content: flex-start;
}
.flexBox.center {
	justify-content: center;
}
.flexBox.row {
	flex-direction: row-reverse;
}
.flexBox > div {
	width: 48%;
}


/* =テーブル */

table {
	clear: both;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: auto;
	background-color: transparent;
	width: 100%;
}
table caption .supple {
	float: right;
	font-weight: normal;
	font-size: 75%;
	margin-top: 0.5em;
}
table tr {
	border-bottom: 2px solid #666;
}
table th {
	background-color: transparent;
	border: none;
	font-weight: 500;
	padding: 1em;
	vertical-align: top;
	word-break: keep-all
}
table td {
	background-color: transparent;
	border: none;
	padding: 1em;
	vertical-align: top;
}

/* =リスト */

ul.mark {
	margin-left: 0;
}
ul.mark li {
	position: relative;
	padding-left: 1.4em;
	line-height: 2.2;
}
ul.mark li::before {
	width: 1em;
	height: 1em;
	line-height: 1;
	position: absolute;
	top: 0.6em;
	left: 0;
}
ul.mark.dot li::before {content: "・"; color: #333;}
ul.mark.circle li::before {content: "●";}
ul.mark.square li::before {content: "■";}
ul.mark.dia li::before {content: "◆";}
ul.mark.star li::before {content: "★";}
ul.mark.ast li::before {content: "※"; color: #f00;}




@media screen and (max-width: 568px){
	section {
		padding: 2em 0;
	}
	section.lp .body {
		padding: 2em;
	}

	.flexBox {
		display: block;
	}
	.flexBox div {
		width: 100%;
	}

	table th {
		display: block;
		padding: 1em 0.5em 0;
		font-weight: bold;
		font-size: 1.1em;
	}
	table td {
		display: block;
		padding: 0 0.5em 1em;
	}

}


/* =フェードイン
------------------------------------------------------------------------------ */

.fadeIn {
	transform: translate(0, 50px);
	opacity: 0;
	transition: 0.8s;
}
.fadeIn.animated {
	transform: translate(0, 0);
	opacity: 1;
}


/* =フッター
------------------------------------------------------------------------------ */

footer {
	padding-bottom: 400px;
	text-align: center;	
	position: relative;
}
footer dd {
	margin-bottom: 1em;
}

.copyright {
	margin: 3em auto 2em;
}

@media screen and (max-width: 568px){

	footer {
		background-size: 150% auto;
		font-size: 1.3rem;
		padding-bottom: 150px;
	}

}


/* =ページトップ
------------------------------------------------------------------------------ */
.pagetop {
	position: fixed;
	bottom: 25px;
	right: 25px;
	z-index: 3;
}
.pagetop a {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #df5a80;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.pagetop a span {
	display: block;
	margin-top: 8px;
	width: 16px;
	height: 16px;
	border-top: 4px solid #fff;
	border-left: 4px solid #fff;
	transform: rotate(45deg);
}
@media screen and (max-width: 568px){


.pagetop {
	bottom: 15px;
	right: 15;
}
.pagetop a {
	width: 48px;
	height: 48px;
}

}


/* =その他共通
------------------------------------------------------------------------------ */

.clearFix::after {
	content: "";
	display: block;
	clear: both;
}
.clear {
	clear: both;
}
.clearText	{
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.indt {
	text-indent: 1.0em;
}
.dangle {
	margin-left: 1.0em;
	text-indent: -1.0em;
}
.tac {
	text-align: center;
}
.tar {
	text-align: right;
}
.tal {
	text-align: left;
}
.mt0 {margin-top: 0;}
.mt05 {margin-top: 0.5em;}
.mt1 {margin-top: 1em;}
.mt2 {margin-top: 2em;}
.mt3 {margin-top: 3em;}
.mt4 {margin-top: 4em;}
.mt5 {margin-top: 5em;}
.mt6 {margin-top: 6em;}
.mt7 {margin-top: 7em;}
.mt8 {margin-top: 8em;}
.mr0 {margin-right: 0;}
.mr1 {margin-right: 1em;}
.mr2 {margin-right: 2em;}
.mr3 {margin-right: 3em;}
.mr4 {margin-right: 4em;}
.mr5 {margin-right: 5em;}
.mr6 {margin-right: 6em;}
.mr7 {margin-right: 7em;}
.mr8 {margin-right: 8em;}
.mb0 {margin-bottom: 0;}
.mb1 {margin-bottom: 1em;}
.mb2 {margin-bottom: 2em;}
.mb3 {margin-bottom: 3em;}
.mb4 {margin-bottom: 4em;}
.mb5 {margin-bottom: 5em;}
.mb6 {margin-bottom: 6em;}
.mb7 {margin-bottom: 7em;}
.mb8 {margin-bottom: 8em;}
.ml0 {margin-left: 0;}
.ml1 {margin-left: 1em;}
.ml2 {margin-left: 2em;}
.ml3 {margin-left: 3em;}
.ml4 {margin-left: 4em;}
.ml5 {margin-left: 5em;}
.ml6 {margin-left: 6em;}
.ml7 {margin-left: 7em;}
.ml8 {margin-left: 8em;}

.gap05 { gap: 0.5em ;}
.gap1 { gap: 1em; }
.gap2 { gap: 2em; }
.gap3 { gap: 3em; }
.gap4 { gap: 4em; }
.gap5 { gap: 5em; }

.bold {
	font-weight: bold;
}
.fsz-b {
	font-size: 1.4em;
}
.font-serif {
	font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", yumincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-optical-sizing: auto;
}
.marker {
	background: linear-gradient(transparent 50%, #FFAEBF 50%);
}
.relative {
	position: relative;
}
.inline-block {
	display: inline-block;
}
@media screen and (max-width: 568px) {
	.sp-block {
		display: block;
	}
}

/* = catch
------------------------------------------------------------------------------ */
.catch {
	background-color: var(--bgColor);
	background-image: url('../img/flag-l.svg'), url('../img/flag-r.svg');
	background-repeat: no-repeat, no-repeat;
	background-position: top left, top right;
	background-size: 27% auto, 25% auto;
	padding: 4em 0 6em;
}
.catch__title {
	/* margin: calc(clamp(20px, 2.5vw, 45px) * -1) auto; */
	margin: 0 auto;
	padding: 3em;
	text-align: center;
}
.catch__info {
	font-size: clamp(1.7rem, 2.25vw, 2.7rem);
	line-height: 1.7;
	position: relative;
	z-index: 3;
}
.catch__info .date {
	margin-bottom: 1em;
}
.catch__inner {
	display: flex;
	justify-content: center;
	gap: 2em;
}
.catch__inner .catch__np {
	width: auto;
}
.catch__np {
	margin: 0.7em 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.3em;
}
.catch__np > span {
	display: block;
	padding: 5px 10px;
	border-radius: 10px;
	background: var(--keyColor);
	color: #fff;
	font-size: 0.8em;
	white-space: nowrap;
}
.catch__np .catch__full {
	text-decoration: line-through;
    text-decoration-color: #333;
    position: relative;
}
.catch__np .full-text {
	display: inline-block;
    text-align: center;
    font-size: 0.8em;
    color: var(--keyColor);
    line-height: 1.4;
    margin-top: -0.5em;
    margin-bottom: 1.2em;
    position: absolute;
    left: 2em;
    top: -0.3em;
}
.catch__message {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 2em auto;
}
.catch__text {
	display: inline-block;
	font-size: 2.2rem;
	font-weight: bold;
	border-bottom: 3px solid var(--keyColor);
	position: relative;
	z-index: 3;
}

@media screen and (max-width: 767px) {
	.catch {
		padding-bottom: 3em;
	}
	.catch__info .date {
		max-width: 500px;
		margin: 1em auto 3em;
	}
	.catch__inner {
		flex-direction: column;
		gap: 1em;
	}
	.catch__inner > div {
		width: 100%;
	}
	.catch__np {
		margin:  0.3em 0;
	}
}
@media screen and (max-width: 568px){
	.catch__title {
		padding: 0 3em 2em;
		position: relative;
		z-index: 3;
	}
	.catch__info {
		font-size: clamp(1.7rem, 5.25vw, 2.2rem);
		line-height: 1.7;
		position: relative;
		z-index: 3;
	}
	.catch__info .date {
		margin: 0 auto 1em;
	}
	.catch__inner {
		gap: 10px;
	}
	.catch__np > span {
		display: block;
		width: 100px;
		text-align: center;
		padding: 5px 10px;
		border-radius: 10px;
		background: var(--keyColor);
		color: #fff;
		font-size: 0.8em;
	}
	.catch__text {
		font-size: 1.4rem;
	}
	.catch__message {
		margin-top: 1em;
	}
}

/* = leadtext
------------------------------------------------------------------------------ */
h2.catch-ttl {
	font-size: 2em;
	line-height: 1.7;
	letter-spacing: 0.05em;
}
h2.catch-ttl span {
	display: inline-block;
}
ul.catch-list {
	background: #fff;
	padding: 0 1em;
	border-radius: 20px;
}
ul.catch-list li {
	font-size: 1.4em;
	padding: 0.5em 1em;
}
ul.catch-list li:not(:last-child) {
	background-image : linear-gradient(to right, #DF5A80 3px, transparent 3px);
	background-size: 10px 2px;
	background-repeat: repeat-x;
	background-position: left bottom;
}
ul.catch-list li::before {
	content: '';
	display: inline-block;
	width: 32px;
	height: 32px;
	background: url('../img/icon-wallet.svg') no-repeat;
	background-size: contain;
	margin-right: 0.5em;
	vertical-align: middle;
}
@media screen and (max-width: 568px) {
	h2.catch-ttl {
		font-size: 2rem;
	} 
	ul.catch-list {
		background: #fff;
		padding: 0;
		border-radius: 20px;
	}
	ul.catch-list li {
		font-size: 1.8rem;
		padding: 0.5em;
	}
	ul.catch-list li::before {
		width: 18px;
		height: 18px;
	}
	.catch .body {
		padding: 4em 2em;
	}
}

/* = host
------------------------------------------------------------------------------ */
.host {
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(-15%, -25%);
}
.host figure {
	width: clamp(100px, 20vw, 200px);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	z-index: 3;
}
.host figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.host p {
	font-size: 1.4rem;
	text-align: center;
	background: #fff;
	padding: 0.5em;
}
@media screen and (max-width: 568px) {
	.host {
		transform: translate(-10px, -80px);
	}
	.host p {
		font-size: 1.2rem;
		padding: 0;
	}
}

