@charset "UTF-8";

/* ====================================
	共通スタイル
 ==================================== */
/* 動画 */
video {
	width: 100%;
	vertical-align: bottom;
}

.bg-cream {
	background-color: #FFFCF2;
}

.sub-text sup {
	color: #000;
}

/* アニメーション */
.icon-check {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0 10px;
	background-color: #FABE00;
	background-image: url(images/check.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 80% auto;
	border-radius: 50%;
	box-shadow: 5px 5px 0px rgba(0, 0, 0, .1);
	transform-origin: 50% 50%;
	opacity: 0;
}

.icon-check.passed {
	animation: anim-scale .5s ease-out .5s;
	animation-fill-mode: forwards;
}

@keyframes anim-scale {
	0% {
		opacity: 1;
		transform: scale(0.4, 0.4);
	}

	40% {
		transform: scale(1.2, 1.2);
	}

	60% {
		transform: scale(1, 1);
	}

	80% {
		transform: scale(1.1, 1.1);
	}

	100% {
		opacity: 1;
		transform: scale(1, 1);
	}
}

.flex-container.col3 .flex-item:nth-of-type(1) {
	transition: all 1s .7s;
}

.flex-container.col3 .flex-item:nth-of-type(2) {
	transition: all 1s 1s;
}

.flex-container.col3 .flex-item:nth-of-type(3) {
	transition: all 1s 1.3s;
}

.flex-container.col3 .flex-item:nth-of-type(4) {
	transition: all 1s 1.6s;
}

.flex-container.col3 .flex-item:nth-of-type(5) {
	transition: all 1s 1.9s;
}

.flex-container.col3 .flex-item:nth-of-type(6) {
	transition: all 1s 2.1s;
}

.flex-container.col3:not(.passed) .flex-item {
	opacity: 0;
}

/* .sub-header {
	transition: all .5s;
}

.sub-section .flex-img {
	transition: all 1s .6s;
}

.sub-section .flex-text {
	transition: all 1s .6s;
}

.sub-section:not(.passed) .sub-header {
	opacity: 0;
	transform: scale(1.1);
}

.sub-section:not(.passed) .flex-img,
.sub-section:not(.passed) .flex-text {
	opacity: 0;
} */

.mv-title-wrap {
	overflow: hidden;
}

.span-outer {
	display: inline-block;
	overflow: hidden;
}

.mv-title .span-wrap {
	display: inline-block;
	background-color: #fff;
	overflow: hidden;
	transition: transform .7s cubic-bezier(0.215, 0.61, 0.355, 1) .3s;
}

.mv-title .span-wrap span {
	display: inline-block;
	padding: 0 .5em;
	transition: transform .7s cubic-bezier(0.215, 0.61, 0.355, 1) .3s;
}

.mv-title .line2 .span-wrap,
.mv-title .line2 .span-wrap span {
	transition-delay: .6s;
}

.mv-title-wrap:not(.loaded) .mv-title .span-wrap {
	transform: translate(-100%, 0);
}

.mv-title-wrap:not(.loaded) .mv-title .span-wrap span {
	transform: translate(100%, 0);
}

.mv-title-img {
	overflow: hidden;
}

.mv-title-img img {
	transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}

.mv-title-wrap:not(.loaded) .mv-title-img img {
	opacity: 0;
	transform: translate(0, 30%);
}

/* 音声を聞くボタン */
.sound-btn-wrap {
	position: relative;
}

.sound-btn-wrap a {
	display: inline-block;
	text-decoration: none;
	position: absolute;
	bottom: 10px;
	left: 10px;
}

.sound-btn-wrap .sound-btn {
	padding: 8px 14px 8px 26px;
	background-color: #fff;
	border-radius: 30px;
	line-height: 1;
	position: relative;
}

.sound-btn-wrap .sound-btn::before {
	content: '';
	display: block;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	background-color: #FDD118;
	position: absolute;
	top: 50%;
	left: 7px;
	transform: translate(0, -50%);
}

/* ====================================
	1023px以下専用スタイル
===================================== */
@media only screen and (max-width: 1023px) {

	/* メインビジュアル */
	#mainVisual {
		position: relative;
	}

	#mainVisual .outer-base-width,
	#mainVisual .base-width,
	#mainVisual .visual {
		width: 100%;
		height: 100%;
	}

	#mainVisual .visual {
		background: url(images/bg-main-visual_sp.jpg) no-repeat center center;
		background-size: cover;
		position: absolute;
		top: 0;
		left: 0;
	}

	#mainVisual .base-width {
		position: relative;
	}

	.mv-title-wrap {
		height: 100%;
		padding: 10% 0 88%;
		position: relative;
	}

	.mv-title {
		font-size: 2rem;
	}

	.mv-title-img {
		width: 80%;
		margin: 20px auto 0;
	}

	/* メインセクション */
	.main-section {
		padding: 60px 0 40px;
		font-size: 1.6rem;
		line-height: 1.7;
	}

	.main-title {
		margin-bottom: 2rem;
		font-size: 1.8rem;
		text-align: center;
	}

	.main-text {
		font-size: 1.4rem;
		line-height: 1.8;
	}

	/* スライダー */
	#slider1 {
		margin-top: 40px;
	}

	/* スライダー：通話内容 */
	.tsuuwa-wrap {
		padding: 30px 5px 5px;
	}

	.tsuuwa-wrap:not(:first-child) {
		margin-top: 30px;
	}

	.tsuuwa {
		padding: 60px 5% 30px;
		background-color: #fff;
		border: solid 5px #FFE36F;
		border-radius: 30px;
		box-shadow: 5px 5px 0px rgba(0, 0, 0, .1);
		position: relative;
	}

	.tsuuwa-header {
		width: 86%;
		padding: .5em 0;
		background-color: #FFE36F;
		border-radius: 40px;
		text-align: center;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.tsuuwa-lead {
		font-size: 1.2rem;
		line-height: 1.2;
	}

	.tsuuwa-title {
		font-size: 1.6rem;
		line-height: 1.4;
	}

	.tsuuwa-item:first-child {
		margin-bottom: 20px;
	}

	.tsuuwa-speaker,
	.tsuuwa-juwaki {
		width: 100%;
		margin-bottom: 20px;
		padding: .25em .5em;
		font-size: 1.4rem;
		text-align: center;
	}

	.tsuuwa-speaker {
		background-color: #FFE36F;
	}

	.tsuuwa-juwaki {
		background-color: #A0A0A0;
		color: #fff;
	}

	.tsuuwa-text {
		font-size: 1.4rem;
	}

	/* チェック */
	.check {
		margin-top: 100px;
		padding: 60px 5%;
		background-color: #fff;
		box-shadow: 5px 5px 0px rgba(0, 0, 0, .1);
		position: relative;
	}

	.check .flex-img {
		width: 100%;
	}

	.check .flex-text {
		width: 100%;
	}

	.icon-check-wrap {
		width: 70px;
		height: 70px;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.check-title {
		margin-bottom: 40px;
		font-size: 1.8rem;
		text-align: center;
	}

	.check-sub-title {
		margin: 1.5em 0 1em;
		padding-left: .5em;
		font-weight: bold;
		border-left: solid 5px #FABE00;
	}

	.check-photo {
		max-width: 180px;
	}

	.check-profile {
		font-size: 1.2rem;
	}

	.check-txt {
		margin-top: 20px;
		font-size: 1.4rem;
	}

	.outer-link {
		margin-top: 60px;
		max-width: 480px;
		border: solid #FABE00 4px;
		text-align: center;
	}

	.outer-link a {
		display: block;
		padding: 10px 40px 10px 10px;
		font-size: 1.4rem;
		text-decoration: none;
		background: url(images/icon-arrow-r.svg) no-repeat;
		background-position: right 15px center;
		background-size: 15px auto;
	}

	/* イントロダクション */
	.introduction-section {
		padding: 60px 0 0;
	}

	.introduction-header {
		margin-bottom: 40px;
	}

	.introduction-title {
		width: 100%;
		font-size: 2.2rem;
		text-align: center;
	}

	.introduction-logo {
		max-width: 240px;
		margin: 0 auto 30px;
	}

	.introduction-section .flex-img {
		max-width: 240px;
		margin: 0 auto 30px;
	}

	/* サブセクション */
	.sub-section {
		padding: 50px 0 0;
		overflow: hidden;
	}

	.line-dot {
		padding-top: 50px;
		border-top: none;
		border-bottom: dotted 5px #FDD118;
	}

	.sub-title-lead {
		margin-bottom: .5em;
		font-size: 1.8rem;
	}

	.sub-title-lead::before {
		content: '';
		display: inline-block;
		margin-right: .5em;
		width: 1em;
		height: 1em;
		background-color: #FDD118;
		border-radius: 20px;
		box-shadow: 3px 3px 0px rgba(0, 0, 0, .1);
	}

	.sub-title {
		margin-bottom: 30px;
		font-size: 2.2rem;
	}

	.img-kadomaru {
		margin-top: 40px;
		border-radius: 30px;
		box-shadow: 5px 5px 0px rgba(0, 0, 0, .1);
	}

	.img-kadomaru img {
		border-radius: inherit;
	}

	.flex-container.col3 {
		padding-top: 30px;
	}

	.flex-container.col3 .flex-item {
		padding: 40px 5% 20px;
		border: solid 1px #D9D9D9;
		box-shadow: 5px 5px 0px #D9D9D9;
		position: relative;
	}

	.flex-container.col3 .ttl {
		width: 90%;
		padding: .5em 0;
		font-size: 1.6rem;
		background-color: #FFE36F;
		border-radius: 30px;
		text-align: center;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.flex-container.col3 .img {
		margin-bottom: 1em;
	}

	/* 動画 */
	.movie-section {
		padding: 50px 0 0;
		text-align: center;
	}

	.movie-title {
		margin-bottom: 40px;
		font-size: 2.2rem;
	}

	.movie-section .btn-arrow {
		margin-top: 60px;
	}

	/* 個別スタイル */
	.sub03-title {
		margin: 60px 0 40px;
		font-size: 1.8rem;
		text-align: center;
	}
}

/* ====================================
	768px以下専用スタイル
===================================== */
@media screen and (max-width: 767px) {

	/* スライダー：通話内容 */
	.tsuuwa-img {
		width: 80%;
		max-width: 250px;
		margin: 0 auto 20px;
	}

	/* 個別スタイル */
	.flex-container.col3 .flex-item:not(:first-child) {
		margin-top: 60px;
	}
}

/* ====================================
	768px以上1023以下専用スタイル
===================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {

	/* メインビジュアル */
	.mv-title-wrap {
		padding: 10% 0 70%;
	}

	/* スライダー：通話内容 */
	.tsuuwa-item {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}

	.tsuuwa-item:first-child {
		margin-bottom: 40px;
	}

	.tsuuwa-img {
		width: 48%;
	}

	.tsuuwa-text {
		width: 48%;
	}

	/* 個別スタイル */
	.flex-container.mid-col2 {
		justify-content: space-between;
	}

	.flex-container.mid-col2 .flex-item {
		width: 47%;
	}

	.flex-container.col3 .flex-item:not(:nth-child(-n+2)) {
		margin-top: 60px;
	}
}

/* ====================================
	1024px以上印刷専用スタイル
===================================== */
@media print,
screen and (min-width: 1024px) {

	/* メインビジュアル */
	#mainVisual {
		height: 620px;
		position: relative;
	}

	#mainVisual .outer-base-width,
	#mainVisual .base-width,
	#mainVisual .visual {
		width: 100%;
		height: 100%;
	}

	#mainVisual .visual {
		background: url(images/bg-main-visual.jpg) no-repeat center center;
		background-size: cover;
		position: absolute;
		top: 0;
		left: 0;
	}

	#mainVisual .base-width {
		position: relative;
	}

	.mv-title-wrap {
		padding: 200px 0 0;
	}

	.mv-title {
		font-size: 4rem;
		overflow: hidden;
	}

	.mv-title-img {
		width: 43%;
		text-align: center;
		position: absolute;
		right: 0;
		bottom: 0;
	}

	.mv-title-img img {
		width: 360px;
	}

	/* メインセクション */
	.main-section {
		padding: 100px 0;
	}

	.main-title {
		margin-bottom: 5rem;
		font-size: 4rem;
		text-align: center;
	}

	.main-text {
		font-size: 1.7rem;
		line-height: 2;
		text-align: center;
	}

	/* スライダー */
	#slider1 {
		margin-top: 100px;
	}


	/* スライダー：通話内容 */
	.tsuuwa-wrap {
		padding: 40px 5px 5px;
	}

	.tsuuwa {
		padding: 80px 10% 40px;
		background-color: #fff;
		border: solid 5px #FFE36F;
		border-radius: 30px;
		box-shadow: 5px 5px 0px rgba(0, 0, 0, .1);
		position: relative;
	}

	.tsuuwa-header {
		width: 450px;
		padding: .5em 0;
		background-color: #FFE36F;
		border-radius: 40px;
		text-align: center;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.tsuuwa-lead {
		font-size: 2rem;
		line-height: 1.2;
	}

	.tsuuwa-title {
		font-size: 3rem;
		line-height: 1.4;
	}

	.tsuuwa-container {
		display: flex;
		justify-content: space-between;
		text-align: center;
	}

	.tsuuwa-item {
		width: 46%;
	}

	.tsuuwa-speaker {
		margin-bottom: 20px;
		padding: .5em;
		background-color: #FFE36F;
	}

	.tsuuwa-juwaki {
		margin-bottom: 20px;
		padding: .5em;
		background-color: #A0A0A0;
		color: #fff;
	}

	.tsuuwa-img {
		margin-bottom: 20px;
	}

	/* チェック */
	.check {
		margin-top: 140px;
		padding: 80px 3%;
		background-color: #fff;
		box-shadow: 5px 5px 0px rgba(0, 0, 0, .1);
		position: relative;
	}

	.icon-check-wrap {
		width: 70px;
		height: 70px;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.check .flex-container {
		justify-content: space-between;
	}

	.check .flex-img {
		width: 38%;
	}

	.check .flex-text {
		width: 57%;
	}

	.check-title {
		margin-bottom: 60px;
		font-size: 2.4rem;
		text-align: center;
	}

	.check-sub-title {
		margin: 1.5em 0 1em;
		padding-left: .5em;
		font-weight: bold;
		border-left: solid 5px #FABE00;
	}

	.check-sub-title:first-child {
		margin-top: 0;
	}

	.check-photo {
		width: 250px;
	}

	.check-profile {
		font-size: 1.2rem;
	}

	.check-txt {
		margin-top: 20px;
		font-size: 1.4rem;
	}

	.outer-link {
		margin-top: 60px;
		max-width: 620px;
		border: solid #FABE00 4px;
		text-align: center;
	}

	.outer-link a {
		display: block;
		padding: 10px 20px;
		text-decoration: none;
		background: url(images/icon-arrow-r.svg) no-repeat;
		background-position: right 20px center;
		background-size: 22px auto;
	}

	/* イントロダクション */
	.introduction-section {
		padding: 80px 0;
	}

	.introduction-header {
		margin-bottom: 80px;
	}

	.introduction-title {
		width: 52%;
		font-size: 3.8rem;
	}

	.introduction-logo {
		width: 40%;
	}

	.introduction-section .flex-img {
		width: 40%;
	}

	.introduction-section .flex-text {
		width: 52%;
	}

	/* サブセクション */
	.sub-section {
		padding: 100px 0 0;
		overflow: hidden;
	}

	.line-dot {
		padding-top: 100px;
		border-top: none;
		border-bottom: dotted 5px #FDD118;
	}

	.sub-title-lead {
		margin-bottom: .5em;
		font-size: 2.4rem;
	}

	.sub-title-lead::before {
		content: '';
		display: inline-block;
		margin-right: .5em;
		width: 1em;
		height: 1em;
		background-color: #FDD118;
		border-radius: 20px;
		box-shadow: 3px 3px 0px rgba(0, 0, 0, .1);
	}

	.sub-title {
		margin-bottom: 50px;
		font-size: 3.4rem;
	}

	.sub-text {
		font-size: 1.8rem;
		line-height: 2;
	}

	.img-kadomaru {
		border-radius: 30px;
		box-shadow: 5px 5px 0px rgba(0, 0, 0, .1);
	}

	.img-kadomaru img {
		border-radius: inherit;
	}

	.flex-container.col3 {
		padding-top: 30px;
	}

	.flex-container.col3 .flex-item {
		width: 31%;
		padding: 50px 2.5% 30px;
		border: solid 1px #D9D9D9;
		box-shadow: 5px 5px 0px #D9D9D9;
		position: relative;
	}

	.flex-container.col3 .flex-item:not(:nth-child(3n-2)) {
		margin-left: 3.5%;
	}

	.flex-container.col3 .flex-item:not(:nth-child(-n+3)) {
		margin-top: 70px;
	}

	.flex-container.col3 .ttl {
		width: 90%;
		padding: .5em 0;
		font-size: 2.2rem;
		background-color: #FFE36F;
		border-radius: 30px;
		text-align: center;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.flex-container.col3 .img {
		margin-bottom: 1em;
	}

	.flex-container.col3 .text {
		font-size: 1.8rem;
		line-height: 1.8;
	}

	/* 動画 */
	.movie-section {
		padding: 100px 0 0;
		text-align: center;
	}

	.movie-title {
		margin-bottom: 60px;
		font-size: 3rem;
	}

	.movie-section .btn-arrow {
		margin-top: 60px;
	}

	/* 個別スタイル */
	.sub03-title {
		margin: 90px 0 70px;
		font-size: 2.8rem;
		text-align: center;
	}

}

/* ====================================
	1024px以上1199px以下専用スタイル
===================================== */
@media print,
screen and (min-width: 1024px) and (max-width: 1199px) {}

/* ====================================
	1200px以上専用スタイル
===================================== */
@media screen and (min-width: 1200px) {}

/* ====================================
	IE
===================================== */
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
	.sound-btn-wrap .sound-btn {
		padding: 12px 14px 4px 26px;
	}
}