@charset "UTF-8";
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	Vars
----------------------------------------*/
/*----------------------------------------
	Reset
----------------------------------------*/
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	border: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	font: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th, td {
	text-align: left;
	vertical-align: top;
}

img {
	border: none;
	vertical-align: top;
}

/*----------------------------------------
	Mediaquery
----------------------------------------*/
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	Base
----------------------------------------*/
html {
	font-size: 14px;
}
@media screen and (max-width: 767px) {
	html {
		font-size: 15px;
	}
}

* {
	box-sizing: border-box;
}

body {
	font-family: "Zen Maru Gothic", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	line-height: 1.5;
	letter-spacing: 0.06em;
	background-color: #ffffff;
	color: #000000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: 100%;
}

img {
	width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	transition: opacity 0.4s ease;
}
a:link, a:visited {
	color: #000000;
}

a:hover {
	opacity: 0.7;
}

a[data-rel=external]:after {
	content: "";
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.5em;
	background: transparent url("../image/icon-external.png") no-repeat scroll center center;
	background-size: contain;
	margin-right: 0.5em;
}

/*----------------------------------------
	Setting
----------------------------------------*/
/* font family */
/*----------------------------------------
	Layout
----------------------------------------*/
.l-limit {
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.l-limit {
		box-sizing: border-box;
		min-width: 1000px;
		max-width: 1600px;
	}
}

.l-frame {
	width: 89.3333333333%;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.l-frame {
		width: 89.0625%;
	}
}

@media screen and (max-width: 767px) {
	.l-column {
		display: flex;
		justify-content: space-between;
	}
}
.l-column-both {
	display: flex;
	justify-content: space-between;
}
.l-column--wrap {
	flex-wrap: wrap;
}
.l-column--reverse {
	flex-direction: row-reverse;
}

/*----------------------------------------
	Header
----------------------------------------*/
.l-header {
	position: fixed;
	top: 30px;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 735px;
	width: 100%;
	z-index: 999;
}

.l-headerButton {
	position: fixed;
	right: 20px;
	top: 20px;
	border: 2px solid #0064FF;
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	z-index: 9999;
	display: none;
}
@media screen and (max-width: 767px) {
	.l-headerButton {
		display: block;
	}
}
.l-headerButton:before {
	content: "";
	display: block;
	position: absolute;
	top: 19px;
	left: 20px;
	width: 16px;
	height: 2px;
	background: #0064FF;
	border-radius: 4px;
	transition: 0.4s;
}
.l-headerButton:after {
	content: "";
	display: block;
	position: absolute;
	top: 35px;
	left: 20px;
	width: 16px;
	height: 2px;
	background: #0064FF;
	border-radius: 4px;
	transition: 0.4s;
}
.l-headerButton span {
	display: block;
	position: absolute;
	top: 27px;
	left: 20px;
	height: 2px;
	width: 16px;
	background: #0064FF;
	border-radius: 4px;
	transition: 0.4s;
}
.l-headerButton.-active:before {
	width: 24px;
	left: 16px;
	top: 27px;
	rotate: 45deg;
}
.l-headerButton.-active:after {
	width: 24px;
	left: 16px;
	top: 27px;
	rotate: -45deg;
}
.l-headerButton.-active span {
	opacity: 0;
}

@media screen and (max-width: 767px) {
	.l-headerGnav {
		background: #FDF9E8;
		position: fixed;
		left: 0;
		top: 0;
		opacity: 0;
		visibility: hidden;
		transition: 0.4s;
	}
	.l-headerGnav.-active {
		opacity: 1;
		visibility: visible;
	}
}
.l-headerGnav__logo {
	display: none;
}
@media screen and (max-width: 767px) {
	.l-headerGnav__logo {
		display: block;
		width: 100%;
		margin: 0 auto -40px;
	}
}

.l-nav {
	background: #fff;
	border-radius: 40px;
	border: 2px solid #0064FF;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 40px;
}
@media screen and (max-width: 767px) {
	.l-nav {
		padding: 15px 30px;
		background: #FDF9E8;
		display: block;
		border: none;
		height: 100svh;
	}
}
.l-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	padding-right: 20px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.l-nav__list {
		display: block;
		margin: 0 0 50px;
		padding: 0;
	}
}
.l-nav__list:after {
	content: "";
	display: block;
	width: 2px;
	height: 14px;
	background: #474747;
	border-radius: 4px;
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}
@media screen and (max-width: 767px) {
	.l-nav__list:after {
		display: none;
	}
}
.l-nav__list li {
	margin-right: 16px;
}
@media screen and (max-width: 767px) {
	.l-nav__list li {
		margin: 0 0 20px;
		text-align: center;
	}
}
.l-nav__list li:last-child {
	margin-right: 0;
}
@media screen and (max-width: 767px) {
	.l-nav__list li:last-child {
		margin-bottom: 0;
	}
}
.l-nav__list a {
	font-size: 14px;
	font-weight: bold;
	color: #474747;
}
@media screen and (max-width: 767px) {
	.l-nav__list a {
		font-size: 18px;
	}
}
@media screen and (max-width: 767px) {
	.l-nav__btn {
		text-align: center;
	}
}
.l-nav__btn a {
	font-size: 13px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.1em;
	padding: 6px 22px;
	display: inline-block;
	background: #0064FF;
	border-radius: 40px;
}
@media screen and (max-width: 767px) {
	.l-nav__btn a {
		max-width: 280px;
		width: 100%;
		font-size: 15px;
		padding: 19px;
	}
}
.l-nav__btn img {
	display: none;
}
@media screen and (max-width: 767px) {
	.l-nav__btn img {
		display: inline-block;
		width: 14px;
		margin-left: 10px;
		position: relative;
		top: 1px;
	}
}
.l-nav__sns {
	margin-left: 20px;
	display: flex;
}
@media screen and (max-width: 767px) {
	.l-nav__sns {
		justify-content: center;
		align-items: center;
		margin: 40px auto 0;
	}
}
.l-nav__sns a {
	display: inline-block;
	max-width: 20px;
}
.l-nav__sns a + a {
	margin-left: 14px;
}

.l-header-floating-logo {
	position: fixed;
	left: 20px;
	bottom: 20px;
	max-width: 154px;
	z-index: 4;
	opacity: 0;
	transition: 0.4s;
}
.l-header-floating-logo.-active {
	opacity: 1;
}
@media screen and (max-width: 767px) {
	.l-header-floating-logo {
		bottom: auto;
		top: 20px;
		max-width: 74px;
	}
}
/*----------------------------------------
	Footer
----------------------------------------*/
.l-footer {
	background: #0064FF;
	position: relative;
	overflow: hidden;
	padding: 0 0 30px;
}
.l-footer__icon {
	position: absolute;
}
.l-footer__icon.-icon01 {
	max-width: 127px;
	top: 13%;
	left: 0;
}
@media screen and (max-width: 767px) {
	.l-footer__icon.-icon01 {
		max-width: 16%;
		top: 9%;
		left: 21%;
	}
}
.l-footer__icon.-icon02 {
	max-width: 155px;
	top: 28%;
	left: 14%;
}
@media screen and (max-width: 767px) {
	.l-footer__icon.-icon02 {
		max-width: 21%;
		top: 17%;
		left: -3%;
	}
}
.l-footer__icon.-icon03 {
	max-width: 145px;
	top: 56%;
	left: 3%;
}
@media screen and (max-width: 767px) {
	.l-footer__icon.-icon03 {
		max-width: 22%;
		top: 72%;
		left: -3%;
	}
}
.l-footer__icon.-icon04 {
	max-width: 156px;
	top: 84%;
	left: 10%;
}
@media screen and (max-width: 767px) {
	.l-footer__icon.-icon04 {
		max-width: 21%;
		left: 19%;
		top: 82%;
	}
}
.l-footer__icon.-icon05 {
	max-width: 155px;
	top: 16%;
	right: 18%;
}
@media screen and (max-width: 767px) {
	.l-footer__icon.-icon05 {
		max-width: 21%;
		top: 12%;
		right: 23%;
	}
}
.l-footer__icon.-icon06 {
	max-width: 116px;
	top: 30%;
	right: 5%;
}
@media screen and (max-width: 767px) {
	.l-footer__icon.-icon06 {
		max-width: 16%;
		top: 18%;
		right: 0;
	}
}
.l-footer__icon.-icon07 {
	max-width: 145px;
	top: 55%;
	right: 12%;
}
@media screen and (max-width: 767px) {
	.l-footer__icon.-icon07 {
		max-width: 23%;
		top: 73%;
		right: 0;
	}
}
.l-footer__icon.-icon08 {
	max-width: 150px;
	top: 78%;
	right: -1%;
}
@media screen and (max-width: 767px) {
	.l-footer__icon.-icon08 {
		max-width: 22%;
		top: 84%;
		right: 8%;
	}
}
.l-footer__front {
	margin: 0 auto;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.l-footer__front img {
	width: 54%;
	transform: translateY(-3%);
}
@media screen and (max-width: 767px) {
	.l-footer__front img {
		width: 100%;
		transform: translateY(-7%);
	}
}
.l-footer__under {
	position: relative;
	padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
	.l-footer__under {
		padding: 140px 0 0;
	}
}
.l-footer__under:before {
	content: "";
	position: absolute;
	top: -0.5px;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../../image/ill_wave_baige.svg) no-repeat center top/100% auto;
}
@media screen and (max-width: 767px) {
	.l-footer__under.-single {
		padding: calc(140px - 7.8vw) 0 0;
	}
	.l-footer__under.-single:before {
		content: none;
	}
}
.l-footer__logo {
	text-align: center;
	margin: 0 0;
	position: relative;
}
@media screen and (max-width: 767px) {
	.l-footer__logo {
		margin-bottom: -10px;
	}
}
.l-footer__logo img {
	max-width: 220px;
}
.l-footer__nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
	.l-footer__nav {
		display: block;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 767px) {
	.l-footer__nav li {
		text-align: center;
	}
}
.l-footer__nav li + li {
	margin-left: 40px;
}
@media screen and (max-width: 767px) {
	.l-footer__nav li + li {
		margin: 16px 0 0;
	}
}
.l-footer__nav a {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
	.l-footer__nav a {
		font-size: 15px;
	}
}
.l-footer__btn {
	position: relative;
	text-align: center;
}
.l-footer__btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50px;
	font-size: 18px;
	letter-spacing: 0.06em;
	color: #0064FF;
	max-width: 300px;
	margin: 0 auto;
	width: 100%;
	padding: 25px 0;
	line-height: 1;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.l-footer__btn a {
		max-width: 280px;
		font-size: 15px;
		padding: 22px 0;
	}
}
.l-footer__btn a img {
	width: 14px;
	margin-left: 10px;
	position: relative;
	top: 1px;
}
@media screen and (max-width: 767px) {
	.l-footer__btn a img {
		width: 10px;
	}
}
.l-footer__sns {
	position: relative;
	margin: 40px auto 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width: 767px) {
	.l-footer__sns {
		margin-bottom: 130px;
	}
}
.l-footer__sns li {
	max-width: 30px;
}
.l-footer__sns li + li {
	margin-left: 30px;
}

.l-footerCopyright {
	text-align: center;
}
.l-footerCopyright small {
	display: block;
	font-size: 13px;
	font-weight: bold;
	color: #fff;
}

/*----------------------------------------
	Component
----------------------------------------*/
.c-h1 {
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	.c-h1 {
		font-size: 1rem;
		line-height: 1.5;
	}
}

/*----------------------------------------
	Utility
----------------------------------------*/
.u-hidden {
	display: none !important;
}

@media screen and (max-width: 767px) {
	.u-hidden-sp {
		display: none !important;
	}
}

@media screen and (min-width: 767px) {
	.u-hidden-pc {
		display: none !important;
	}
}

.u-left {
	text-align: left;
}

.u-center {
	text-align: center;
}

.u-right {
	text-align: right;
}

.u-red {
	color: red;
}

.u-bg-red {
	background-color: red;
}

/* 
* 余白打ち消しクラス
*/
.u-noRadius {
	border-radius: 0 !important;
}

.u-noMargin {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.u-noMargin-top {
	margin-top: 0 !important;
}

.u-noMargin-bottom {
	margin-bottom: 0 !important;
}

.u-noPadding {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.u-noPadding-top {
	padding-top: 0 !important;
}

.u-noPadding-bottom {
	padding-bottom: 0 !important;
}

/* 
* 余白
*/
.-padding-t {
	padding-top: 10px;
}
.-padding-t.-x2 {
	padding-top: 20px;
}
.-padding-t.-x4 {
	padding-top: 40px;
}
.-padding-t.-x6 {
	padding-top: 60px;
}
.-padding-t.-x8 {
	padding-top: 80px;
}
.-padding-t.-x10 {
	padding-top: 100px;
}

.-padding-b {
	padding-bottom: 10px;
}
.-padding-b.-x2 {
	padding-bottom: 20px;
}
.-padding-b.-x4 {
	padding-bottom: 40px;
}
.-padding-b.-x6 {
	padding-bottom: 60px;
}
.-padding-b.-x8 {
	padding-bottom: 80px;
}
.-padding-b.-x10 {
	padding-bottom: 100px;
}

.-margin-t {
	margin-top: 10px;
}
.-margin-t.-x2 {
	margin-top: 20px;
}
.-margin-t.-x4 {
	margin-top: 40px;
}
.-margin-t.-x6 {
	margin-top: 60px;
}
.-margin-t.-x8 {
	margin-top: 80px;
}
.-margin-t.-x10 {
	margin-top: 100px;
}

.-margin-b {
	margin-bottom: 10px;
}
.-margin-b.-x2 {
	margin-bottom: 20px;
}
.-margin-b.-x4 {
	margin-bottom: 40px;
}
.-margin-b.-x6 {
	margin-bottom: 60px;
}
.-margin-b.-x8 {
	margin-bottom: 80px;
}
.-margin-b.-x10 {
	margin-bottom: 100px;
}

/*----------------------------------------
	Page Home
----------------------------------------*/
.t-hero {
	font-family: "Zen Maru Gothic", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.home-index {
	background: #0064FF;
}

@keyframes fuwa01 {
	0% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-8px) rotate(1.5deg);
	}
	100% {
		transform: translateY(0) rotate(0deg);
	}
}
.anim-fuwa01 {
	animation: fuwa01 4s ease-in-out infinite alternate;
}

@keyframes fuwa02 {
	0% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-2px) rotate(2.5deg);
	}
	100% {
		transform: translateY(0) rotate(0deg);
	}
}
.anim-fuwa02 {
	animation: fuwa02 4s ease-in-out infinite alternate;
}

@keyframes fuwa03 {
	0% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-14px) rotate(0.5deg);
	}
	100% {
		transform: translateY(0) rotate(0deg);
	}
}
.anim-fuwa03 {
	animation: fuwa03 4s ease-in-out infinite alternate;
}

.p-front-hero {
	position: relative;
	clip-path: inset(0 0 0 0);
	background: #0064FF;
}
.p-front-hero__bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.p-front-hero__bg img {
	position: absolute;
	opacity: 0;
}
.p-front-hero__bg .icon01 {
	max-width: 127px;
	top: 13%;
	left: 0;
}
@media screen and (max-width: 767px) {
	.p-front-hero__bg .icon01 {
		max-width: 18%;
		top: 2%;
		left: 21%;
	}
}
.p-front-hero__bg .icon02 {
	max-width: 155px;
	top: 28%;
	left: 14%;
}
@media screen and (max-width: 767px) {
	.p-front-hero__bg .icon02 {
		max-width: 23%;
		top: 10%;
		left: -3%;
	}
}
.p-front-hero__bg .icon03 {
	max-width: 145px;
	top: 56%;
	left: 3%;
}
@media screen and (max-width: 767px) {
	.p-front-hero__bg .icon03 {
		max-width: 24%;
		top: 76%;
		left: -2%;
	}
}
.p-front-hero__bg .icon04 {
	max-width: 156px;
	top: 84%;
	left: 10%;
}
@media screen and (max-width: 767px) {
	.p-front-hero__bg .icon04 {
		max-width: 23%;
		left: 18%;
		top: 85%;
	}
}
.p-front-hero__bg .icon05 {
	max-width: 155px;
	top: 16%;
	right: 18%;
}
@media screen and (max-width: 767px) {
	.p-front-hero__bg .icon05 {
		max-width: 23%;
		top: 6%;
		right: 23%;
	}
}
.p-front-hero__bg .icon06 {
	max-width: 116px;
	top: 30%;
	right: 5%;
}
@media screen and (max-width: 767px) {
	.p-front-hero__bg .icon06 {
		max-width: 18%;
		top: 15%;
		right: 0;
	}
}
.p-front-hero__bg .icon07 {
	max-width: 145px;
	top: 55%;
	right: 12%;
}
@media screen and (max-width: 767px) {
	.p-front-hero__bg .icon07 {
		max-width: 25%;
		top: 76%;
		right: 0;
	}
}
.p-front-hero__bg .icon08 {
	max-width: 150px;
	top: 78%;
	right: -1%;
}
@media screen and (max-width: 767px) {
	.p-front-hero__bg .icon08 {
		max-width: 23%;
		top: 91%;
		right: 12%;
	}
}
.p-front-hero__logo {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
}
.p-front-hero__logo img {
	width: 54.3%;
	transform: translateY(-7%);
}
@media screen and (max-width: 767px) {
	.p-front-hero__logo img {
		width: 100%;
		transform: translateY(-10%);
	}
}
.p-front-hero__logo:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: calc(50% - 1px);
	width: 2px;
	height: 80px;
	background: rgba(255, 255, 255, 0.4);
}
.p-front-hero__logo:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: calc(50% - 1px);
	width: 2px;
	height: 30px;
	background: white;
	animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
}
@keyframes circlemove {
	0% {
		bottom: 60px;
	}
	100% {
		bottom: -10px;
	}
}
@keyframes cirlemovehide {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	80% {
		opacity: 0.9;
	}
	100% {
		opacity: 0;
	}
}
.p-front-hero__body {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding-bottom: 9.8vw;
}
.p-front-hero__body p {
	text-align: center;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 2.2;
}
@media screen and (max-width: 767px) {
	.p-front-hero__body p {
		font-size: 15px;
	}
}
.p-front-hero__body .large {
	font-size: 40px;
	margin-top: 60px;
}
@media screen and (max-width: 767px) {
	.p-front-hero__body .large {
		font-size: 26px;
		margin-top: 40px;
		line-height: 1.7;
	}
	.p-front-hero__body .large span {
		display: block;
	}
}

.p-front-about {
	padding: 175px 0 178px;
	position: relative;
	background: #fff;
	z-index: 2;
}
@media screen and (max-width: 767px) {
	.p-front-about {
		padding: 80px 0 90px;
	}
}
.p-front-about:before {
	content: "";
	position: absolute;
	top: -7.7vw;
	left: 0;
	width: 100%;
	height: 7.8vw;
	background: url(../../image/wave_right_white.svg) no-repeat center top/100% auto;
}
@media screen and (max-width: 767px) {
	.p-front-about:before {
		background-size: cover;
		top: -7.7vw;
		left: -0.5%;
		width: 100.5%;
		height: 7.9vw;
	}
}
.p-front-about__head {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin: 0 0 60px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.p-front-about__head {
		display: block;
		text-align: center;
		margin-bottom: 34px;
	}
}
.p-front-about__head span {
	color: #0064FF;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	.p-front-about__head span {
		display: block;
	}
}
.p-front-about__head .en {
	font-size: 64px;
}
.p-front-about__head .en span {
	display: inline-block;
}
.p-front-about__head .en span:nth-child(2), .p-front-about__head .en span:nth-child(7) {
	margin-right: 0.2em;
}
@media screen and (max-width: 767px) {
	.p-front-about__head .en {
		font-size: 34px;
	}
}
.p-front-about__head .jpn {
	font-size: 34px;
	margin-left: 12.8px;
	position: relative;
	bottom: 3px;
}
@media screen and (max-width: 767px) {
	.p-front-about__head .jpn {
		font-size: 20px;
		margin-top: 10px;
		margin-left: 0;
		position: static;
	}
}
.p-front-about__txt {
	text-align: center;
	font-size: 22px;
	letter-spacing: 0.06em;
	line-height: 2.36;
	font-weight: bold;
	position: relative;
}
@media screen and (max-width: 767px) {
	.p-front-about__txt {
		font-size: 15px;
	}
}
.p-front-about__mov {
	margin: 80px auto 0;
	max-width: 880px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.p-front-about__mov {
		padding: 0 20px;
		margin-top: 50px;
	}
}
.p-front-about__mov button {
	background: none;
	display: block;
	width: 100%;
	border: none;
}
.p-front-about__modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: 0.4s;
}
.p-front-about__modal.-active {
	opacity: 1;
	visibility: visible;
}
.p-front-about__modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}
.p-front-about__modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 120px;
	height: 120px;
	z-index: 2;
}
@media screen and (max-width: 767px) {
	.p-front-about__modal__close {
		width: 40px;
		height: 40px;
	}
}
.p-front-about__modal__close::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	height: 2px;
	background: #fff;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.p-front-about__modal__close::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	height: 2px;
	background: #fff;
	transform: translate(-50%, -50%) rotate(45deg);
}
.p-front-about__modal__inner {
	max-width: 1000px;
	width: 100%;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}
.p-front-about__modal__inner:before {
	content: "";
	display: block;
	padding-top: 56.25%;
}
.p-front-about__modal__inner iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.p-front-library {
	position: relative;
	z-index: 2;
	background: #fff;
	padding: 0 0 80px;
}
@media screen and (max-width: 767px) {
	.p-front-library {
		padding-bottom: 60px;
		margin-top: -1px;
	}
}
.p-front-library__inner {
	max-width: 1160px;
	width: calc(100% - 120px);
	margin: 0 auto;
	background: #DDEFFF;
	border-radius: 40px;
	padding: 80px 60px;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	.p-front-library__inner {
		width: calc(100% - 40px);
		padding: 60px 20px;
	}
}
.p-front-library__inner:before, .p-front-library__inner:after {
	content: "";
	display: block;
	position: absolute;
}
.p-front-library__inner:before {
	top: 1%;
	left: 12.6%;
	width: 171px;
	height: 128px;
	background: url(../../image/front/ill_01.svg) no-repeat center top/contain;
}
@media screen and (max-width: 767px) {
	.p-front-library__inner:before {
		left: 4%;
		width: 93px;
		height: 69px;
		top: 0%;
	}
}
.p-front-library__inner:after {
	top: -9%;
	right: 18%;
	width: 118px;
	height: 86px;
	background: url(../../image/front/ill_02.svg) no-repeat center top/contain;
}
@media screen and (max-width: 767px) {
	.p-front-library__inner:after {
		width: 77px;
		height: 51px;
		top: -3%;
	}
}
.p-front-library__inner__on:before {
	top: 3%;
	right: 11%;
	content: "";
	display: block;
	position: absolute;
	width: 115px;
	height: 70px;
	background: url(../../image/front/ill_03.svg) no-repeat center top/contain;
}
@media screen and (max-width: 767px) {
	.p-front-library__inner__on:before {
		width: 58px;
		height: 51px;
		top: 1.6%;
		right: 7%;
	}
}
.p-front-library__head {
	margin: 0 0 60px;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.p-front-library__head {
		margin-bottom: 34px;
	}
}
.p-front-library__head span {
	display: block;
	color: #0064FF;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.3;
	text-align: center;
}
.p-front-library__head .en {
	font-size: 64px;
}
.p-front-library__head .en span {
	display: inline-block;
}
.p-front-library__head .en span:nth-child(7) {
	margin-right: 0.2em;
}
@media screen and (max-width: 767px) {
	.p-front-library__head .en {
		font-size: 36px;
		display: block;
	}
}
.p-front-library__head .jpn {
	font-size: 18px;
	margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
	.p-front-library__head .jpn {
		font-size: 14px;
	}
}
.p-front-library__list {
	display: flex;
	justify-content: center;
	gap: 4.3%;
}
@media screen and (max-width: 767px) {
	.p-front-library__list {
		flex-wrap: wrap;
		gap: 34px;
		line-height: 2;
	}
}
.p-front-library__item {
	width: 30.4%;
	list-style: none;
}
@media screen and (max-width: 767px) {
	.p-front-library__item {
		width: 100%;
	}
}
.p-front-library__item .thumb {
	border-radius: 20px;
	border: 1px solid #7A7A7A;
	overflow: hidden;
	aspect-ratio: 16/9;
	margin: 0 0 20px;
}
.p-front-library__item .thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.p-front-library__item .cat span {
	display: inline-block;
	font-size: 12px;
	color: #0064FF;
	font-weight: bold;
	line-height: 1;
	background: #fff;
	border: 2px solid #0064FF;
	padding: 7px 22px;
	border-radius: 90px;
}
.p-front-library__item h3 {
	color: #474747;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.77;
	margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
	.p-front-library__item h3 {
		font-size: 16px;
	}
}

.p-front-bg-baige {
	position: relative;
	background: #FDF7E8;
	padding: 140px 0 80px;
	z-index: 2;
}
@media screen and (max-width: 767px) {
	.p-front-bg-baige {
		padding: 60px 0 80px;
		margin-top: -1px;
	}
}
.p-front-bg-baige:before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../../image/front/pattern_02.svg) no-repeat center top/100% auto;
}
@media screen and (max-width: 767px) {
	.p-front-bg-baige:after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 7.8vw;
		background: url(../../image/ill_wave_blue_right.svg) no-repeat center top/100% auto;
	}
}

.p-front-articles {
	position: relative;
	margin: 0 0 160px;
}
.p-front-articles__head {
	margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
	.p-front-articles__head {
		margin-bottom: 34px;
	}
}
.p-front-articles__head span {
	display: block;
	color: #0064FF;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.4;
	text-align: center;
}
.p-front-articles__head .en {
	font-size: 64px;
}
@media screen and (max-width: 767px) {
	.p-front-articles__head .en {
		font-size: 36px;
	}
}
.p-front-articles__head .jpn {
	font-size: 18px;
	margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
	.p-front-articles__head .jpn {
		font-size: 14px;
	}
}
.p-front-articles__list {
	max-width: 880px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px 80px;
}
@media screen and (max-width: 767px) {
	.p-front-articles__list {
		grid-template-columns: 1fr;
		gap: 34px;
		padding: 0 40px;
	}
}
.p-front-articles__list .thumb {
	border-radius: 20px;
	border: 1px solid #7A7A7A;
	overflow: hidden;
	aspect-ratio: 16/9;
	margin: 0 0 20px;
}
.p-front-articles__list .thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.p-front-articles__list .cat {
	display: flex;
	align-items: center;
}
.p-front-articles__list .cat span {
	display: inline-block;
	font-size: 12px;
	color: #0064FF;
	font-weight: bold;
	line-height: 1;
	background: #fff;
	border: 2px solid #0064FF;
	padding: 7px 22px;
	text-transform: uppercase;
	border-radius: 90px;
	min-width: 100px;
	text-align: center;
}
.p-front-articles__list .cat time {
	font-size: 12px;
	color: #0064FF;
	line-height: 1;
	margin-left: 10px;
}
.p-front-articles__list h3 {
	color: #474747;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.77;
	margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
	.p-front-articles__list h3 {
		font-size: 16px;
	}
}
.p-front-articles__btn {
	margin: 60px 0 0;
	text-align: center;
}
.p-front-articles__btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0064FF;
	border-radius: 50px;
	font-size: 18px;
	letter-spacing: 0.06em;
	color: #fff;
	max-width: 300px;
	margin: 0 auto;
	width: 100%;
	padding: 25px 0;
	line-height: 1;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.p-front-articles__btn a {
		max-width: 280px;
		padding: 22px 0;
		font-size: 15px;
	}
}
.p-front-articles__btn a img {
	width: 14px;
	margin-left: 10px;
	position: relative;
	top: 1px;
}
@media screen and (max-width: 767px) {
	.p-front-articles__btn a img {
		width: 10px;
	}
}

.p-front-sns {
	position: relative;
	z-index: 2;
}
.p-front-sns__head {
	margin: 0 0 60px;
}
.p-front-sns__head span {
	display: block;
	color: #0064FF;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1;
	text-align: center;
}
.p-front-sns__head .en-small {
	font-size: 34px;
}
@media screen and (max-width: 767px) {
	.p-front-sns__head .en-small {
		font-size: 20px;
	}
}
.p-front-sns__head .en {
	font-size: 64px;
	margin: 5px 0;
}
@media screen and (max-width: 767px) {
	.p-front-sns__head .en {
		font-size: 36px;
	}
}
.p-front-sns__head .jpn {
	font-size: 18px;
	margin: 20px 0 0;
}
@media screen and (max-width: 767px) {
	.p-front-sns__head .jpn {
		font-size: 14px;
		line-height: 1.5;
	}
}
.p-front-sns__body {
	max-width: 560px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.p-front-sns__body {
		width: calc(100% - 40px);
		margin: 0 auto;
	}
}
.p-front-sns__body .ibasho {
	margin: 0 0 40px;
}
.p-front-sns__body .ibasho img {
	border-radius: 20px;
	border: 1px solid #7A7A7A;
}
.p-front-sns__body .x {
	margin: 100px 0 40px;
}
.p-front-sns__body .btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.06em;
	color: #fff;
	background: #0064FF;
	border-radius: 50px;
	padding: 12px;
	margin: 0 auto;
	max-width: 364px;
	width: 100%;
	min-height: 82px;
}
@media screen and (max-width: 767px) {
	.p-front-sns__body .btn a {
		font-size: 15px;
		max-width: 280px;
		width: 100%;
		padding: 17px 0;
	}
}
.p-front-sns__body .btn a img {
	width: 13px;
	margin-left: 10px;
}
@media screen and (max-width: 767px) {
	.p-front-sns__body .btn a img {
		margin-left: 5px;
		width: 10px;
		height: auto;
	}
}

.p-front-contact {
	position: relative;
	padding: 140px 0 80px;
	z-index: 2;
}
@media screen and (max-width: 767px) {
	.p-front-contact {
		padding: 40px 0 30px;
		overflow: hidden;
		margin-top: -1px;
	}
}
.p-front-contact:before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../../image/front/pattern_03.svg) no-repeat center top/100% auto;
}
@media screen and (max-width: 767px) {
	.p-front-contact:before {
		content: none;
	}
}
.p-front-contact__head {
	position: relative;
	margin: 0 0 60px;
}
.p-front-contact__head span {
	display: block;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.4;
	text-align: center;
}
.p-front-contact__head .en {
	font-size: 64px;
	margin: 5px 0;
}
.p-front-contact__head .en span {
	display: inline-block;
}
.p-front-contact__head .en span:nth-child(4) {
	margin-right: 0.2em;
}
@media screen and (max-width: 767px) {
	.p-front-contact__head .en {
		font-size: 36px;
	}
}
.p-front-contact__head .jpn {
	font-size: 18px;
	margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
	.p-front-contact__head .jpn {
		font-size: 16px;
	}
}
.p-front-contact__body {
	position: relative;
	max-width: 880px;
	margin: 0 auto;
	border-radius: 40px;
	background: #fff;
	padding: 60px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
@media screen and (max-width: 767px) {
	.p-front-contact__body {
		grid-template-columns: 1fr;
		padding: 60px 20px;
		width: calc(100% - 40px);
		margin: 0 auto;
		gap: 33px;
	}
}
.p-front-contact__item .thumbnail {
	margin: 0 0 20px;
}
.p-front-contact__item .btn {
	padding: 0 30px;
}
@media screen and (max-width: 767px) {
	.p-front-contact__item .btn {
		padding: 0;
	}
}
.p-front-contact__item .btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #0064FF;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.06em;
	color: #0064FF;
	border-radius: 50px;
	padding: 12px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.p-front-contact__item .btn a {
		font-size: 15px;
		max-width: 280px;
		width: 100%;
		padding: 17px 0;
	}
}
.p-front-contact__item .btn a img {
	width: 13px;
	margin-left: 10px;
}
@media screen and (max-width: 767px) {
	.p-front-contact__item .btn a img {
		margin-left: 5px;
		width: 10px;
		height: auto;
	}
}
.p-front-contact__footer {
	position: relative;
	margin: 120px auto 60px;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	.p-front-contact__footer {
		margin: 80px auto 34px;
		font-size: 15px;
	}
}
.p-front-contact__btn {
	position: relative;
	margin: 60px 0 0;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.p-front-contact__btn {
		margin-top: 34px;
	}
}
.p-front-contact__btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50px;
	font-size: 18px;
	letter-spacing: 0.06em;
	color: #0064FF;
	max-width: 300px;
	margin: 0 auto;
	width: 100%;
	padding: 25px 0;
	line-height: 1;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.p-front-contact__btn a {
		max-width: 280px;
		font-size: 15px;
		padding: 22px 0;
	}
}
.p-front-contact__btn a img {
	width: 14px;
	margin-left: 12px;
	position: relative;
	top: 1px;
}
@media screen and (max-width: 767px) {
	.p-front-contact__btn a img {
		width: 10px;
	}
}

/*----------------------------------------
	Page Articles
----------------------------------------*/
.p-articles {
	padding: 175px 0 0;
	position: relative;
}
@media screen and (max-width: 767px) {
	.p-articles {
		padding: 120px 0 0;
	}
}
.p-articles__head {
	margin: 0 0 56px;
}
@media screen and (max-width: 767px) {
	.p-articles__head {
		margin-bottom: 110px;
	}
}
.p-articles__head span {
	display: block;
	color: #0064FF;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.4;
	text-align: center;
}
.p-articles__head .en {
	font-size: 76px;
}
@media screen and (max-width: 767px) {
	.p-articles__head .en {
		font-size: 40px;
	}
}
.p-articles__head .jpn {
	font-size: 18px;
	margin-top: 25px;
}
@media screen and (max-width: 767px) {
	.p-articles__head .jpn {
		font-size: 14px;
		margin-top: 10px;
	}
}
.p-articles__body {
	background: #FDF7E8;
	padding: 62px 0 0;
	position: relative;
}
@media screen and (max-width: 767px) {
	.p-articles__body {
		padding: 31px 40px 0;
	}
}
.p-articles__body:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../../image/ill_wave_white.svg) no-repeat center top/100% auto;
}
.p-articles__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px 80px;
	max-width: 880px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.p-articles__list {
		grid-template-columns: 1fr;
		gap: 34px 0;
		margin-top: -110px;
	}
}
.p-articles__item {
	position: relative;
}
.p-articles__item .thumb {
	border-radius: 20px;
	border: 1px solid #7A7A7A;
	overflow: hidden;
	aspect-ratio: 16/9;
	margin: 0 0 20px;
}
.p-articles__item .thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.p-articles__item .cat {
	display: flex;
	align-items: center;
}
.p-articles__item .cat span {
	display: inline-block;
	font-size: 12px;
	color: #0064FF;
	font-weight: bold;
	line-height: 1;
	background: #fff;
	border: 2px solid #0064FF;
	padding: 7px 22px;
	border-radius: 90px;
	text-transform: uppercase;
	min-width: 100px;
	text-align: center;
}
.p-articles__item .cat time {
	font-size: 12px;
	color: #0064FF;
	line-height: 1;
	margin-left: 10px;
}
.p-articles__item h2 {
	color: #474747;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.77;
	margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
	.p-articles__item h2 {
		font-size: 16px;
	}
}

.c-pagination {
	background: #FDF7E8;
	padding: 60px 0 0;
}
@media screen and (max-width: 767px) {
	.c-pagination {
		padding-top: 34px;
	}
}
.c-pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
.c-pagination li {
	margin: 0 5px;
}
.c-pagination li.-active a {
	background: #0064FF;
	color: #fff;
}
.c-pagination li.-leader {
	display: flex;
	align-items: center;
}
@media screen and (max-width: 767px) {
	.c-pagination li.-leader {
		max-width: 21px;
	}
}
.c-pagination li.-arrow a {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}
.c-pagination li.-arrow img {
	width: 10px;
}
.c-pagination a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 16px;
	color: #0064FF;
	font-weight: bold;
	background: #fff;
	border-radius: 50%;
	font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
	.c-pagination a {
		width: 36px;
		height: 36px;
		font-size: 13px;
	}
}

.p-articles-btn {
	padding: 60px 0 80px;
	background: #FDF7E8;
}
@media screen and (max-width: 767px) {
	.p-articles-btn {
		padding: 34px 0 60px;
	}
}
.p-articles-btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0064FF;
	border-radius: 50px;
	font-size: 18px;
	letter-spacing: 0.06em;
	color: #fff;
	max-width: 300px;
	margin: 0 auto;
	width: 100%;
	padding: 25px 0;
	line-height: 1;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.p-articles-btn a {
		max-width: 280px;
		padding: 22px 0;
		font-size: 15px;
	}
}
.p-articles-btn a img {
	width: 14px;
	margin-right: 10px;
	position: relative;
	top: 1px;
}
@media screen and (max-width: 767px) {
	.p-articles-btn a img {
		width: 10px;
	}
}

.p-single {
	padding: 170px 0 0;
	display: block;
	position: relative;
}
@media screen and (max-width: 767px) {
	.p-single {
		padding-top: 120px;
	}
	.p-single:before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 7.6vw;
		background: url(../../image/ill_wave_blue_left.svg) no-repeat center top/100% auto;
		z-index: 1;
	}
}
.p-single__header {
	position: relative;
	z-index: 2;
	max-width: 920px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.p-single__header {
		padding: 0 20px;
	}
}
.p-single__header .cat {
	display: flex;
	align-items: center;
}
.p-single__header .cat span {
	display: inline-block;
	font-size: 12px;
	color: #0064FF;
	font-weight: bold;
	line-height: 1;
	background: #fff;
	border: 2px solid #0064FF;
	padding: 7px 22px;
	border-radius: 90px;
	text-transform: uppercase;
	min-width: 100px;
	text-align: center;
}
.p-single__header .cat time {
	font-size: 12px;
	color: #0064FF;
	line-height: 1;
	margin-left: 10px;
}
.p-single__title {
	font-size: 42px;
	color: #474747;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.4;
	margin: 20px 0 0;
}
@media screen and (max-width: 767px) {
	.p-single__title {
		font-size: 24px;
		line-height: 1.5;
		margin-top: 12px;
	}
}
.p-single__thumb {
	margin: 60px 0 0;
	border-radius: 40px;
	overflow: hidden;
	border: 1px solid #7A7A7A;
}
@media screen and (max-width: 767px) {
	.p-single__thumb {
		margin-top: 40px;
	}
}
.p-single__body {
	position: relative;
	background: #FDF7E8;
	padding: 320px 0 80px;
	margin-top: -320px;
}
@media screen and (max-width: 767px) {
	.p-single__body {
		padding: 80px 20px;
		margin-top: -80px;
	}
}
.p-single__body:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../../image/ill_wave_white.svg) no-repeat center top/100% auto;
}
.p-single__inner {
	max-width: 740px;
	margin: 0 auto;
	position: relative;
	padding: 40px 0 0;
}
.p-single__inner h2 {
	font-size: 30px;
	font-weight: bold;
	color: #474747;
	letter-spacing: 0.06em;
	line-height: 1.4;
	margin: 60px 0 40px;
}
@media screen and (max-width: 767px) {
	.p-single__inner h2 {
		font-size: 20px;
		line-height: 1.5;
		margin: 40px 0 24px;
	}
}
.p-single__inner p {
	font-size: 16px;
	line-height: 2.3;
	color: #474747;
}
@media screen and (max-width: 767px) {
	.p-single__inner p {
		font-size: 15px;
		line-height: 2;
	}
}
.p-single__inner p + p {
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	.p-single__inner p + p {
		margin: 34px 0 0;
	}
}
.p-single__inner p a {
	color: #0064FF;
	text-decoration: underline;
	word-break: break-all;
}
.p-single__inner .small {
	font-size: 0.8em;
}
.p-single__inner img {
	width: 100%;
	border-radius: 40px;
	overflow: hidden;
	margin: 40px 0 70px;
	display: block;
}
@media screen and (max-width: 767px) {
	.p-single__inner img {
		margin: 40px auto;
		border-radius: 20px;
		width: calc(100% - 40px);
	}
}
.p-single__inner iframe {
	margin: 40px 0 70px;
	width: 100%;
	aspect-ratio: 16/9;
	height: auto;
	border: 0;
	display: block;
}
.p-single__author {
	max-width: 740px;
	background: #fff;
	border-radius: 40px;
	padding: 40px;
	margin: 80px auto 0;
	position: relative;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.p-single__author {
		max-width: 100%;
		padding: 40px 20px;
		display: block;
	}
}
.p-single__author__en {
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1;
	color: #0064FF;
	position: absolute;
	left: 40px;
	top: -0.5em;
}
@media screen and (max-width: 767px) {
	.p-single__author__en {
		left: 0;
		right: 0;
		text-align: center;
		margin: auto;
	}
}
.p-single__author__ph {
	width: 18.1%;
	overflow: hidden;
	border-radius: 50%;
	position: relative;
}
@media screen and (max-width: 767px) {
	.p-single__author__ph {
		width: 44.1%;
		margin: 0 auto 18px;
	}
}
.p-single__author__ph:before {
	content: "";
	display: inline-block;
	padding-top: 100%;
	width: 100%;
}
.p-single__author__ph img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.p-single__author__body {
	width: 75.5%;
}
@media screen and (max-width: 767px) {
	.p-single__author__body {
		width: 100%;
	}
}
.p-single__author__body h3 {
	font-weight: bold;
	font-size: 20px;
	letter-spacing: 0.06em;
	margin: 0 0 20px;
	color: #474747;
}
@media screen and (max-width: 767px) {
	.p-single__author__body h3 {
		text-align: center;
	}
}
.p-single__author__body p {
	font-size: 14px;
	line-height: 1.8;
	color: #474747;
}
.p-single__btn {
	margin: 60px 0 0;
	position: relative;
}
@media screen and (max-width: 767px) {
	.p-single__btn {
		margin-top: 50px;
	}
}
.p-single__btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0064FF;
	border-radius: 50px;
	font-size: 18px;
	letter-spacing: 0.06em;
	color: #fff;
	max-width: 300px;
	margin: 0 auto;
	width: 100%;
	padding: 25px 0;
	line-height: 1;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.p-single__btn a {
		max-width: 280px;
		padding: 22px 0;
		font-size: 15px;
	}
}
.p-single__btn a img {
	width: 14px;
	margin-right: 10px;
	position: relative;
	top: 1px;
}
@media screen and (max-width: 767px) {
	.p-single__btn a img {
		width: 10px;
	}
}