@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');


/* =============================================
main
============================================= */

body {
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: #514327f7;
}

@media only screen and (min-width:651px) {
	body {
		font-size: 16px;
		width: 680px;
		margin: 0 auto;
	}
}

@media only screen and (min-width:961px) {
	body {
		font-size: 16px;
		width: 680px;
		margin: 0 auto;
	}
}

p {
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 2.0;
	text-align: justify;
	letter-spacing: 0.13em;
	color: #514327f7;
	margin-bottom: 1.5em;
}

mark {
	background: linear-gradient(transparent 0%, #ff9 10%);
	color: #514327f7;
	/*font-size: 1.3125rem;*/
}

mark.green {
	background: linear-gradient(transparent 0%, #6EC300 10%);
	color: #fff;
	font-size: 1.65rem;
	padding: 0 .5em;
	font-weight: 600;
	line-height: 1.8;
}

mark.yellow {
	background: linear-gradient(transparent 0%, #ff9 10%);
	color: #514327f7;
}

mark.brown {
	background: linear-gradient(transparent 0%, #F2EBE3 10%);
	color: #514327f7;
}


.center {
	text-align: center;
}


/* font */
.fs14 {
	font-size: 1rem;
}

.fs20 {
	font-size: 1.25rem;
}

.fs22 {
	font-size: 1.375rem;
}

.fs23 {
	font-size: 1.4375rem;
}

.fs24 {
	font-size: 1.5rem;
}

.fs25 {
	font-size: 1.5625rem;
}

.fs26 {
	font-size: 1.625rem;
}

.fs27 {
	font-size: 1.6875rem;
}

.fs28 {
	font-size: 1.75rem;
}

.fs32 {
	font-size: 2rem;
}


.ls0 {
	letter-spacing: 0;
}

.bold {
	font-weight: 800;
}



/* margin */
.mt5 {
	margin-top: 0.5em;
}

.mt10 {
	margin-top: 1.0em;
}

.mt20 {
	margin-top: 2em;
}

.mt30 {
	margin-top: 3em;
}

.mt50 {
	margin-top: 5em;
}

.mb10 {
	margin-bottom: 1.0em;
}

.mb30 {
	margin-bottom: 3em;
}

.mb50 {
	margin-bottom: 5em;
}

#sp_body {
	font-family: "Koburina Gothic W6 JIS2004", sans-serif;
	padding: 0 0 2em;
}


/* =============================================
header
============================================= */

header {
	position: relative;
	padding: 0 2em 0;
	margin-top: 2em;
}


.header_heading {
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.3;
	text-align: center;
	letter-spacing: .08em;
	color: #FFFFFF;
	background: #64B200;
	margin-bottom: .3em;
	padding: 3% 0;
}

header p {
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 1.3rem;
	line-height: 2.0;
	text-align: center;
	letter-spacing: 0.13em;
	color: #514327f7;
	margin-bottom: 1em;
}

header h1 {
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 3.3rem;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 0.15em;
	color: #64B200;
	margin-bottom: .25em;
}

header .caption {
	font-weight: normal;
	font-size: .8rem;
	line-height: 2.0;
	text-align: right;
	letter-spacing: 0.05em;
	color: #AAA9A9;
	margin-bottom: 3em;
}


/* =============================================
	parallax
============================================= */

.parallax_box {
  margin: 3em 0;
}

.parallax_content {
  display: flex;
  height: 100%;
  padding: 100%;
  justify-content: center;
  align-items: center;
  padding: 10% 0;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.parallax_content h1 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFF;
  letter-spacing: 0.1em;
}

.parallax_content h1 .subheading {
  font-size: 80%;
  line-height: 1.5em;
  margin-top: .5em;
}

.parallax_content h1 span {
  font-size: 80%;
}

.img_bg {
  background: url("../img/cover.webp") top center no-repeat;
}


@media screen and (max-width: 768px) {
  .parallax_content {
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .parallax_box::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(0, 0, -1px);
    transform: translate3d(0, 0, -1px);
    width: 100%;
    min-hieght: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: -1;
  }
}


/* =============================================
button
============================================= */

.subscription_button__area {
	text-align: center;
	margin-bottom: 3em;
	padding: 0 1em;
}

.subscription_button {
	display: inline-block;
	width: 75%;
	height: auto;
	text-decoration: none;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: .18em;
	border-radius: 6rem;
	text-align: center;
	padding: 5px 20px 25px;
	background-color: #6ec300;
	cursor: pointer;
	line-height: 1.4;
	transition-property: background-color, border-color, color, box-shadow, filter;
	transition-duration: 0.3s;
	border: 1px solid transparent;
	text-transform: uppercase;
	white-space: normal;
	outline: none;
	box-sizing: border-box;
	background: linear-gradient(135deg, rgb(168, 220, 0) 0%, rgb(111, 195, 0) 100%);
	box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.2), 1px 0 1px rgba(0, 0, 0, 0.1), -1px 0 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3), 0 3px 4px rgba(0, 0, 0, 0.2);
}

.subscription_button::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	content: "";
	background-color: #fff;
	opacity: 0;
	transition: opacity .2s;
	border-radius: .5384615385rem;
}

.subscription_button-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

/* ボタン本体 */
.cta_button {
  display: inline-block;
  padding: 1em 4em 2em;
  border: 1px solid #589c00;
  background-color: #6ec300; /* 背景色 */
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.2), 1px 0 1px rgba(0, 0, 0, 0.1), -1px 0 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3), 0 3px 4px rgba(0, 0, 0, 0.2);
  border-radius: 60px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  height: auto;
  letter-spacing: .18em;
  line-height: 1.4;
  width: 100%;
}

.cta_button a {
	color: #fff;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 600;
}

/* ホバー時 */
.cta_button:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: none;
  transform: translateY(5px);
}

/* クリック時 */
.cta_button:active {
  box-shadow: none;
  transform: translateY(5px);
}

.cta_button span {
	font-size: 1.125rem;
	letter-spacing: .2em;
	font-weight: bold;
}



@media screen and (max-width: 480px) {
	.subscription_button-label2::after {
		right: 0.3rem;
	}
}

/* =============================================
emoji
============================================= */

img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 0.07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;



/* =============================================
footer
============================================= */

.footer {
	position: relative;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	font-size: .7692307692rem;
	font-family: "Koburina Gothic W6 JIS2004", sans-serif;
	letter-spacing: .07em;
	line-height: 1.9;
}

.badge li {
	display: inline-block;
	vertical-align: middle;
}

.footer_copyright {
	margin: .5em;
	font-size: 90%;
	font-weight: normal;
	text-align: center;
	width: 100%;
}