@charset "UTF-8";
:root {
  --spDesign: 750;
  --spViewport: 375;
  --breakPointSpMin: 374px;
  --breakPointSp: 767px;
  --breakPointWide: 768px;
  --widthDefault: 1240rem;
  --widthMax: 1440rem;
  --widthMin: 1000rem;
  --heightHeaderSp:60rem;
  --heightHeaderPc:80rem;
  --headerHeight:calc((var(--heightHeaderSp) + var(--heightHeaderPc)) / 2);
  --vh:100vh;
  --vw:100vw;
  --sidePaddingSp1:15rem;
  --sidePaddingPc1:20rem;
  --fontBase: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  --fontEn1: "Oswald", sans-serif;
  --colorBg1: #FFFFFF;
  --colorBg2: #F8F8F8;
  --colorText1: #343434;
  --colorText2: #BCBCBC;
  --colorText3: #888888;
  --colorBorder1:#DDDDDD;
  --colorBorder2:#E6E6E6;
  --colorAccent1:#2D65BF;
  --colorAccent2:#015DC8;
  --colorAccent3:#0757D8;
  --colorAccent4:#2F938F;
  --colorAccent5:#EC5704;
  --colorAccent6:#03C7A2;
  --colorCaution1:#FF0202;
  --colorCaution2:#FFD9D9;
  --colorStamp1:#31B6C1;
  --colorStamp1_pastel:#EDFDFF;
  --colorStamp2:#E25D5D;
  --colorStamp3:#7CB946;
  --colorStamp4:#6A6AD9;
  --easingBasic:cubic-bezier(.86,0,.07,1);
}

body {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	font-size: 16rem;
	font-weight: 500;
	letter-spacing: 0;
	overflow-y: scroll;
	margin: 0;
	padding: 0;
	color: var(--colorText1);
	background: var(--colorBg1);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
		text-size-adjust: none;
	position: relative;
	word-break: break-all;
}
.width800 {
	margin: 0 auto;
	width: 800rem;
}
.width1240 {
	margin: 0 auto;
	width: 1240rem;
	position: relative;
}

@media (max-width: 767px) {
.width800 {
	width: 100%;
}
.width1240 {
	width: 100%;
}
}
.firstvisual_area {
	margin: 0 auto;
	max-width: 1240rem;
}
.firstvisual_img-pc {
	position: relative;
	width: 1240rem;
}

/* share */
.share_fixed {
	position: fixed !important;
	top: 100rem !important;
}
.article-single-share__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24rem;
}
.article-single-share__item {
	width: 34rem;
}
.article-single-share__item img {
	width: 100%;
}
.article-single-share__item a {
	position: relative;
	display: block;
	cursor: pointer;
}
.article-single-share__item--copy a::before {
	content: "";
	display: block;
	width: 10rem;
	height: 15rem;
	border: solid #FFF;
	border-width: 0 3rem 3rem 0;
	position: absolute;
	left: calc(50% - 5rem);
	top: calc(50% - 9rem);
	z-index: 2;
	transform: rotate(45deg);
	opacity: 0;
	transition: 0.3s;
}
.article-single-share__item--copy a::after {
	content: "";
	display: block;
	background: #343434;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: 0.3s;
}
.article-single-share__item--copy a.js-urlCopy--finish::before, .article-single-share__item--copy a.js-urlCopy--finish::after {
	opacity: 1;
}
.article-single-share__item--copy a.js-urlCopy--finish::before {
	transition-delay: 0.3s;
}

@media (max-width: 767px) {
	.only-wide {
		display: none !important;
	}
}

@media (min-width: 768px) {
	html {
		font-size: 1px;
	}
	.only-sp {
		display: none !important;
	}
	.article-single-share {
		position: absolute;
		top: 0;
		left: 0;
	}
	.article-single-share__list {
		flex-direction: column;
	}
	.article-single-share__item {
		width: 40rem;
	}
}