@charset "UTF-8";

/* General Style
-------------------------------------- */
*{
	margin : 0;
	padding : 0;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-size: 16px;
	width: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}
@media screen and (max-width: 899px) {
	html {
		font-size: 12px;
	}
}

body {
	position: relative;
	width: 100%;
	font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-style: normal;
	color: #004C86;
	background: #fff;
  line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	word-break: break-all;
	line-break: anywhere;
	word-wrap: break-word;
	overflow-wrap: break-word;
	/* font-feature-settings: "palt"; */
}

/* chrome opera
-------------------------------------- */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}
img {
	display: block;
	width: 100%;
	height: auto;
	border: none;
	image-rendering: auto;
}

/* リセット
-------------------------------------- */
a img{
	border: none;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
a,
a:link,
a:visited {
	color: inherit;
	text-decoration: none;
}
@media screen and (min-width: 900px) {
  a:hover, a:active {
	  opacity: 0.6;
	  filter: grayscale(50%);
	  transition: all .5s ease;
  }
}

h1, h2, h3, h4, h5, h6, h7, h8, h9 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}
strong {
	font-weight: bold;
}

ol, ul {
  list-style: none;
}

/* フォームリセット
-------------------------------------- */
input,
button,
select,
file,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}
textarea {
	resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
file,
button,
select {
	cursor: pointer;
}

/*全体
-------------------------------------- */
body::before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
	width: 100%;
	height: 100vh;
	background: url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-pattern.png) top center repeat #fff;
	background-size: 134px;
}

/* アニメーション
-------------------------------------- */
@keyframes fadeIn {
  from {
	  opacity: 0;
  }
  to {
	  opacity: 1;
  }
}
@keyframes fadeTside {
  from {
	  opacity: 0;
	  transform: translateY(-100%);
  }
  to {
	  opacity: 1;
	  transform: translateY(0%);
  }
}
@keyframes fadeBside {
  from {
	  opacity: 0;
	  transform: translateY(100%);
  }
  to {
	  opacity: 1;
	  transform: translateY(0%);
  }
}
@keyframes fadeLside {
  from {
	  opacity: 0;
	  transform: translateX(-100%);
  }
  to {
	  opacity: 1;
	  transform: translateX(0%);
  }
}

/* header
-------------------------------------- */
header {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	background: url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-head2.png) center 5px no-repeat, url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-head1.png) center top no-repeat;
	background-size: 96%, 100%;
	/*
	opacity: 0;
	animation: fadeTside .3s .3s ease-out forwards;
	*/
}
header section {
	position: relative;
	width: 100%;
	max-width: 1472px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 0.5em;
}
header section picture {
	width: 46%;
}
header section div {
	width: 94%;
	height: 100px;
	max-width: 1122px;
	/*
	background: #fff;
	border-top: 10px solid #004C86;
	border-left: 10px solid #004C86;
	border-right: 10px solid #004C86;
	*/
	margin-top: 1em;
}
@media screen and (max-width: 899px) {
	header {
		background: url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-head2-sp.png) center 5px no-repeat, url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-head1.png) center top no-repeat;
		background-size: 96%, 100%;
	}
	header section {
		margin-top: 0.25em;
	}
	header section picture {
		width: 60%;
	}
	header section div {
		background: transparent;
		border: none;
	}
}

/* コンテンツまとめ
-------------------------------------- */
article {
	position: relative;
	width: 100%;
	max-width: 1122px;
	border-left: 10px solid #004C86;
	border-right: 10px solid #004C86;
	margin: 0 auto;
}
article section {
	position: relative;
	width: 94%;
	max-width: 960px;
	margin: 0 auto;
	text-align: center;
}
h2 {
	display: block;
	width: 100%;
  padding: 0 0 1.5em;
}
@media screen and (max-width: 899px) {
	article {
		border: none;
	}
	article section {
		width: 94%;
		padding-top: 0;
	}
	h2 {
	  padding: 0 0 1em;
	}
}

/* メインタイトル
-------------------------------------- */
article.main {
	width: 100%;
	max-width: none;
	border: none;
	margin-top: calc(-3.25% - 100px);
	z-index: 1;
}
article.main > div {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
}
article.main section {
	max-width: 1122px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 0;
	margin-top: -4.5vw;
}
.main_ttl1 {
	width: 58.4%;
}
h1 {
	width: 81%;
	margin-top: 0.5em;
}
.main_ttl2 {
	width: 71.3%;
	margin-top: 1em;
	font-size: clamp(12px, 2.8vw, 16px);
	text-align: center;
}
.main_ttl2 img {
	margin-bottom: 1em;
}
.main_ttl3 {
	width: 71.3%;
	margin-top: 1.5em;
	font-size: clamp(12px, 2.8vw, 16px);
	text-align: center;
}
.main_ttl3_txt {
	width: 80%;
	margin: 0 auto 1em;
}
.main_ttl3 ul {
	display: inline-block;
	margin: 1em 0 0;
	text-align: left;
}
.main_ttl3 ul li {
  padding-left: 1em;
  text-indent: -1em;
}
article.main nav {
	width: 82.3%;
	display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5em;
}
article.main nav a {
  width: 22.5%;
}
article.main p {
  font-size: clamp(14px, 3.3vw, 20px);
	color: #004C86;
	text-align: center;
	margin: 1.5em 0 3em;
}
article.main p strong {
  font-size: 1.2em;
  font-weight: 800;
	color: #E62E8B;
}
@media screen and (max-width: 899px) {
	article.main {
		margin-top: calc(-3.25% - 100px);
	}
	article.main section {
		margin-top: -2vw;
	}
	.main_ttl1 {
		width: 90%;
	}
	h1 {
		width: 100%;
		margin-top: 0.25em;
	}
	.main_ttl2 {
		width: 100%;
		margin-top: 0.5em;
	}
	.main_ttl2 img {
		margin-bottom: 0.5em;
	}
	.main_ttl3 {
		width: 100%;
		margin-top: 1em;
	}
	.main_ttl3_txt {
		width: 90%;
		margin: 0 auto 1em;
	}
	.main_ttl3 ul {
		width: 90%;
		margin: 1em 0 0;
	}
	.main_ttl3 ul li {
	  padding-left: 1em;
	  text-indent: -1em;
	}
	article.main nav {
		width:100%;
	  margin-top: 1em;
	}
	article.main p {
		margin: 1em 0 2.5em;
	}
}

/* 応募コース
-------------------------------------- */
article#prize {
	background: url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-prize.png) top center repeat;
	background-size: 574px;
	margin-top: -6.25vw;
}
#prize section {
	padding-top: 0;
}
.prize_img {
	position: relative;
	top: 3.125vw;
	display: block;
	width: 100%;
}
article#prize section p {
	display: inline-block;
	font-size: clamp(12px, 2.8vw, 16px);
	text-align: left;
	margin-top: 1.5em;
}
#prize .prize_wrap {
	width: 100%;
	max-width: 1021px;
	padding: 3em 0 4em;
}
@media screen and (max-width: 899px) {
	article#prize {
		background-size: 382px;
	}
	#prize section {
		padding-top: 0;
	  margin-top: 1.5625vw;
	}
	#prize .prize_wrap {
		padding: 1.5em 0 3em;
	}
}

/*応募
-------------------------------------- */
.apply {
	width: 100%;
	border-top: 10px solid #004C86;
  border-bottom: 10px solid #004C86;
  background: url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-apply-pc.png) center no-repeat;
	background-size: 100% 100%;
}
.apply section {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: none;
	padding: 2.5em 0;
}
.apply h3 {
	width: 85%;
	max-width: 628px;
}
.apply a, .apply div {
	width: 94%;
	max-width: 512px;
	margin: 1.5em 0;
}
.apply ul {
	width: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: clamp(12px, 2.8vw, 16px);
  text-align: left;
}
.apply ul ul li {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 899px) {
	.apply {
		border-top: 5px solid #004C86;
	  border-bottom: 5px solid #004C86;
	  background: url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-apply-sp.png) center no-repeat;
		background-size: 100% 100%;
	}
	.apply ul {
		width: 85%;
	}
}

/*応募方法
-------------------------------------- */
article#method {
  background: url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-method.png) top center repeat;
	background-size: 650px;
  padding: 0 0 4em;
}
.method_img {
	position: relative;
	top: 0;
	display: block;
	width: 100%;
}
#method h2 {
  width: 94%;
	margin: 0 auto;
  padding: 0;
  transform: translateY(-50%);
}
#method section {
  display: flex;
	flex-direction: column;
	align-items: center;
  padding-top: 0;
  border: 5px solid #00A8E3;
  border-radius: 30px;
  background: #fff;
}
#method ol {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 94%;
	margin-top: -3em;
}
#method ol li {
	position: relative;
	width: 48%;
  margin-bottom: 2em;
}
#method ol li a, #method ol li div {
	position: absolute;
	bottom: 24%;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
	width: 72%;
}
#method ul {
	width: 90%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: clamp(12px, 2.8vw, 16px);
  text-align: left;
  padding: 2em 0 3em;
}
#method ul li {
	position: relative;
	padding-left: 1em;
  text-indent: -1em;
}
.method_ill1 {
	position: absolute;
	top: -10%;
  right: -1%;
  width: 27.5%;
}
.method_ill2 {
	position: absolute;
	bottom: -12.5%;
  left: -5%;
  width: 27.5%;
}
.method_ill3 {
	position: absolute;
	bottom: 7.5%;
  left: 5%;
  width: 27.5%;
}
.method_ill4 {
	position: absolute;
	bottom: -6%;
  right: -4%;
  width: 27.5%;
}
@media screen and (max-width: 899px) {
	article#method {
		background-size: 432px;
	  padding: 0 0 2em;
	}
	#method h2 {
	  padding: 0;
	}
	#method section {
	  margin-top: 1.5em;
	  border: 3px solid #00A8E3;
	  border-radius: 15px;
	}
	#method ol {
		margin-top: -1em;
	}
	#method ol li {
		width: 100%;
	  margin-bottom: 1.5em;
	}
	#method ol li a, #method ol li div {
		bottom: 20%;
		width: 81%;
	}
	#method ul {
		width: 94%;
	  padding: 1em 0 2em;
	}
	.method_ill1 {
	  width: 20.5%;
	}
	.method_ill2 {
    top: -3.5%;
    left: 1%;
    width: 19.5%;
	}
	.method_ill3 {
	  width: 20.5%;
	}
	.method_ill4 {
		bottom: -2%;
    right: -1%;
    width: 19.5%;
	}
}

/*対象商品
-------------------------------------- */
article#seal {
  background: url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-seal.png) top center repeat;
	background-size: 650px;
  padding: 0 0 4em;
}
.method_img {
	position: relative;
	top: 0;
	display: block;
	width: 100%;
}
#seal h2 {
  width: 94%;
	margin: 0 auto;
  padding: 0;
  transform: translateY(-50%);
}
#seal section {
  display: flex;
	flex-direction: column;
	align-items: center;
  padding-top: 0;
  border: 5px solid #E62E8B;
  border-radius: 30px;
  background: url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-seal1.png) top left no-repeat, url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-seal2.png) bottom right no-repeat #fff;
	background-size: 30%, 30%;
}
#seal h3 {
  display: inline-block;
	margin: 0 0 0.5em;
  padding: 0.125em 0.3em;
  background: #E62E8B;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 4.8vw, 40px);
  color: #fff;
}
.seal_txt1 {
  display: inline-block;
	margin: 0 0 1em;
  padding: 0.125em 0.3em;
  font-size: clamp(12px, 3.1vw, 24px);
  color: #E62E8B;
}
.seal_wrap {
  position: relative;
  display: inline-block;
	margin: 0 0 1em;
  padding: 1em;
  background: #fff;
  border: 3px solid #004C86;
  font-size: clamp(12px, 3.1vw, 20px);
  text-align: left;
}
.seal_wrap li {
	margin: 0.5em 0;
}
.seal_wrap span {
  display: inline-block;
  padding: 0.125em 0.3em;
  margin-left: 0.25em;
  border: 1px solid #004C86;
}
.seal_wrap span.maru {
  border-radius: 0.825em;
}
.seal_wrap b {
  position: absolute;
	top: 0;
  left: -3px;
  padding: 0.125em 0.3em;
  display: inline-block;
  background: #004C86;
  transform: translateY(-50%);
  font-size: clamp(14px, 3.2vw, 20px);
  font-weight: 800;
  color: #fff;
}
.seal_txt2 {
  display: inline-block;
	margin: 0 0 1em;
  padding: 0.125em 0.3em;
  font-size: clamp(12px, 3.1vw, 20px);
}
.seal_txt2 a {
  display: block;
  color: #E62E8B;
  font-size: 0.86em;
}
.blank {
  display: inline;
  width: 0.85em;
  height: 0.85em;
  vertical-align: baseline;
  margin-right: 0;
}
@media screen and (min-width: 900px) {
	.seal_wrap li {
		white-space: nowrap;
  }
}
@media screen and (max-width: 899px) {
	article#seal {
		background-size: 432px;
	  padding: 0 0 2em;
	}
	#seal section {
	  margin-top: 40vw;
	  border: 3px solid #E62E8B;
	  border-radius: 15px;
	}
	#seal h2 {
	  position: absolute;
	  top: -28vw;
	  left: 0;
	  right: 0;
	  margin: auto;
	  padding: 0;
	}
	#seal h3 {
	  position: absolute;
	  top: -10vw;
	  left: 0;
	  right: 0;
	  margin: auto;
	  width: 4.6em;
	}
	.seal_txt1 {
	  margin: 0.5em 0 1.5em;
	}
	.seal_wrap li {
		margin: 0.75em 0;
	}
}

/*アコーディオン
-------------------------------------- */
.accbox {
	position: relative;
	width: 94%;
	max-width: 812px;
	margin: 0 auto 3em;
	padding: 0;
	text-align: center;
	border: 3px solid #E62E8B;
	outline-offset: 0;
	border-radius: 39px;
	background: #FFF3F8;
	box-shadow: 0 0 0 3px #004C86;
}
.accbox label {
	position: relative;
	display: block;
	margin: 0;
	padding : 0.5em 0;
	font-size: clamp(18px, 4.8vw, 36px);
	color: #E62E8B;
	line-height: 1;
	cursor :pointer;
	transition: all .5s ease;
	z-index: 1;
}
.accbox label div {
  position: absolute;
  top: 50%;
  right: 0.6em;
  transform: translateY(-50%);
  display: block;
  width: 1em;
  height: 1em;
}
.accbox label div span {
	position: absolute;
	left: 0;
  width: 100%;
  height: 100%;
	transition: all .5s ease;
}
.accbox label div span:nth-of-type(1) {
  opacity: 1;
}
.accbox label div span:nth-of-type(2) {
  opacity: 0;
}
.cssacc:checked + label div span:nth-of-type(1) {
	opacity: 0;
}
.cssacc:checked + label div span:nth-of-type(2) {
	opacity: 1;
}
@media screen and (max-width: 899px) {
  .accbox {
		border: 2px solid #E62E8B;
		outline: 2px solid #004C86;
		border-radius: 20px;
	}
}
@media screen and (min-width: 900px) {
  .accbox label:hover {
	  opacity: 0.6;
  }
  .cssacc:checked + label:hover {
	  /* opacity: 0.6; */
  }
}

/*アコーディオン表示
-------------------------------------- */
.accbox input {
    display: none;
}
.accbox .accshow {
  width: 100%;
	height: 0;
	opacity: 0;
  overflow: hidden;
	transition: all .5s ease;
}
.cssacc:checked + label + .accshow {
	width: 100%;
	height: auto;
	opacity: 1;
}
.accshow_wrap {
	width: 94%;
  padding: 0 0 2em;
	margin: 0 auto;
}
.accshow_wrap dl {
	width: 100%;
	text-align: left;
}
.accshow_wrap dl dt {
  display: inline-block;
  padding: 0.15em 0.3em;
  margin-top: 1.5em;
  background: #E62E8B;
  font-size: clamp(12px, 3.1vw, 20px);
  color: #fff;
}
.accshow_wrap dl dd {
	display: flex;
	flex-wrap: wrap;
  justify-content: flex-start;
	align-items: flex-start;
}
.accshow_wrap dl dd img {
	width: 23%;
	margin: 1em 1% 0;
}
.accshow_wrap ul {
  display: block;
  width: 100%;
  margin: 2em auto 0;
  font-size: clamp(11px, 2.8vw, 16px);
  text-align: left;
}
.accshow_wrap ul li {
	padding-left: 1em;
  text-indent: -1em;
  line-height: 2;
}
.accshow_wrap ul li span {
  padding: 0.05em 0.2em;
  margin: 0 0.2em;
  border: 1px solid #004C86;
}

@media screen and (max-width: 899px) {
	.accshow_wrap dl dd img {
		width: 31.333%;
		margin: 1em 1% 0;
	}
	.accshow_wrap dl dt:first-child {
    margin-top: 0.5em;
	}
}

/*応募規約
-------------------------------------- */
article#terms {
  background: url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-terms.png) top center repeat;
	background-size: 650px;
  padding: 0 0 4em;
}
.terms_img {
	position: relative;
	top: 0;
	display: block;
	width: 100%;
}
#terms h2 {
  width: 94%;
	margin: 0 auto;
  padding: 0;
  transform: translateY(-50%);
}
#terms section {
  display: flex;
	flex-direction: column;
	align-items: center;
  padding-top: 0;
  border: 5px solid #EEB300;
  border-radius: 30px;
  background: url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-terms-txt.png) top center no-repeat #fffcc3;
  background-size: 100%;
}
#terms section > picture {
  width: 72%;
  max-width: 720px;
	margin: 0;
}
.terms_txtwrap {
  width: 94%;
  max-width: 800px;
	margin: 2em 0 3em;
	padding: 1.5em 1.25em;
	background: #fff;
}
.terms_txtwrap > div {
  width: 100%;
  height: 110vw;
  max-height: 500px;
  padding: 0 1.25em;
	font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 2.8vw, 14px);
  text-align: left;
  line-height: 1.6;
	overflow-y: scroll;
  scrollbar-color: #FFF987 #fff;
}
.terms_txtwrap p {
	margin-bottom: 1em;
}
.terms_txtwrap b {
  display: inline-block;
  padding: 0 0.3em;
  margin-left: 0.4em;
  border: 1px solid #004C86;
  font-weight: normal;
  line-height: 1.2;
  font-size: 1em;
  transform: scale(0.9);
  transform-origin: left center;
}
.terms_txtwrap span {
  display: inline-block;
  padding: 0 0.3em;
  margin-left: 0.4em;
  border: 1px solid #004C86;
  border-radius: 0.625em;
  line-height: 1.2;
  font-size: 1em;
  transform: scale(0.9);
  transform-origin: left center;
}
.terms_txtwrap a {
  text-decoration: underline;
}
.terms_txtwrap ul {
	
}
.terms_txtwrap ul li {
	padding-left: 1em;
  text-indent: -1em;
}
.terms_txtwrap p strong {
	color: #FB567A;
	font-weight: normal;
}
.terms_txtwrap strong b {
  border: 1px solid #FB567A;
}
.terms_txtwrap strong span {
  border: 1px solid #FB567A;
}

@media screen and (max-width: 899px) {
	article#terms {
		background-size: 432px;
	  padding: 0 0 2em;
	}
	#terms h2 {
	  padding: 0;
	}
	#terms section {
	  margin-top: 1.5em;
	  border: 3px solid #EEB300;
	  border-radius: 15px;
	}
	#terms section > picture {
		margin: -1em 0 0;
	}
	.terms_txtwrap {
	  width: 94%;
		margin: 1em 0 2em;
		padding: 1em 0.5em;
	}
	.terms_txtwrap > div {
	  padding: 0;
	}
}

/* お問合せ
-------------------------------------- */
article#contact {
  background: url(/hubfs/eisai.jp/lp/lp-chocola-egg-cp-start-2506-001-01/assets/img/bg-contact.png) top center repeat;
	background-size: 50px;
  padding: 3em 0 15em;
  background:repeating-linear-gradient(45deg, #f8e4fe, #f8e4fe 30px, #fae8ff 0, #fae8ff 60px);
}
#contact h4 {
  width: 100%;
  padding-bottom: 0.25em;
  border-bottom: 2px solid #004C86;
  font-size: clamp(18px, 4.8vw, 24px);
}
#contact section {
  display: flex;
	flex-direction: column;
	align-items: center;
	width: 94%;
  max-width: 800px;
}
#contact section p {
  display: block;
  width: 100%;
  margin: 2rem 0 0;
  font-size: clamp(18px, 4.8vw, 24px);
  color: #E62E8B;
}
#contact section p strong {
  display: block;
  padding: 0.15em 0;
  font-size: 1.33em;
  color: #004C86;
  font-weight: 800;
}
#contact section p span {
  padding-right: 5.2em;
}
#contact section p small {
  display: block;
  font-size: 0.66em;
  font-weight: 500;
  color: #004C86;
}
#contact section ul {
  width: 100%;
  margin: 2em 0 0;
  padding: 1em 1.5em;
  background: #fff;
  font-size: 0.9375em;
  font-weight: 500;
  text-align: left;
}
#contact section ul li {
	padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 899px) {
	article#contact {
	  background:repeating-linear-gradient(45deg, #f8e4fe, #f8e4fe 16px, #fae8ff 0, #fae8ff 32px);
	}
}

/* footer
-------------------------------------- */
footer {
	position: relative;
	width: 100%;
	margin-top: -12em;
}
footer picture {
	display: block;
	width: 100%;
}
footer section {
	position: absolute;
	bottom: 4rem;
	left: 0;
	right: 0;
	margin: auto;
	width: 46.27vw;
}
footer p {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
	width: 94%;
	font-family: "Noto Sans", sans-serif;
	font-size: 0.875em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 899px) {
	footer section {
		bottom: 5rem;
		width: 94%;
	}
}

/* 終了
-------------------------------------- */
article.end {
	position: relative;
	width: 91.78%;
	max-width: 800px;
	height: 100vh;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: none;
}
article.end picture {
	width:100%;
}

/* フェードイン
--------------------------------------
.trigger section {
	opacity: 0;
}
.fadeIN section {
	animation: fadeBside 1s .4s ease-out forwards;
}
*/

/* 画角切替
-------------------------------------- */
.pc {
	display: block;
}
.sp {
	display: none;
}
@media screen and (max-width: 899px) {
  .pc {
	  display: none;
  }
  .sp {
	  display: block;
  }
}