@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:wght@100..900&display=swap');
/* --------------------------------------------------
	CSS Reset
-------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.06em;
	font-feature-settings: "palt";
	vertical-align: baseline;
	background: transparent;
}
html {
	scroll-behavior: smooth;
}
body {
	position: relative;
	line-height: 1;
	background-color: #F4F4F4;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display: block;
}
ul,ol {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	transition: all 0.2s linear;
}
a:link,
a:visited {
	color: #333;
	text-decoration: none;
}
a:hover,
a:active {
	color: #333;
	text-decoration: underline;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
img {
	vertical-align: top;
	width: 100%;
}
.notosans {
  font-family: "Noto Sans JP", sans-serif;
}
.notoserif {
	font-family: "Noto Serif JP", serif;
}
.roboto {
  font-family: "Roboto", sans-serif;
}
.kerning-l {
	display: inline-block;
	margin-left: -0.5em;
	font-family: inherit;
}
.kerning-r {
	display: inline-block;
	margin-right: -0.5em;
	font-family: inherit;
}
.kerning-l2 {
	display: inline-block;
	margin-left: -0.25em;
	font-family: inherit;
}
.kerning-r2 {
	display: inline-block;
	margin-right: -0.25em;
	font-family: inherit;
}

/* --------------------------------------------------
	Clearfix
-------------------------------------------------- */
.clearfix:after {
	content: '';
	display: block;
	clear: both;
}
.clearfix { *zoom: 1; }

/* --------------------------------------------------
	.slidein-L, .slidein-R
-------------------------------------------------- */
.slidein-L,
.slidein-R {
	display: inline-block;
	font-family: inherit;
}
.slidein-L {
	overflow: hidden;
	transform: translateX(-100%);
	transform-origin: left center;
	transition-delay: inherit;
	transition: all 1.2s cubic-bezier(0.6, 0, 0.4, 1) 0.2s;
}
.slidein-R {
	overflow: hidden;
	transform: translateX(100%);
	transform-origin: right center;
	transition-delay: inherit;
	transition: all 1.2s cubic-bezier(0.6, 0, 0.4, 1) 0.2s;
}
.delighter.started .slidein-L,
.delighter.started .slidein-R {
	transform: translateX(0%);
}

/* --------------------------------------------------
	.bg-wipein
-------------------------------------------------- */
.bg-wipein span {
	display: block;
	width: 0;
	height: 100%;
	transition: all 1.2s cubic-bezier(0.6, 0, 0.4, 1);
}
.delighter.started .bg-wipein span {
	width: 100%;
}

/* --------------------------------------------------
	.pagetop
-------------------------------------------------- */
.pagetop {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 100;
	width: 60px;
}
.pagetop a { transition: 0.2s linear; }
.pagetop a:hover { opacity: 0.7; }
@media screen and (max-width: 768px) {
	.pagetop {
		right: 0;
		width: 10.6667vw;
	}
}

/* --------------------------------------------------
	.anchor
-------------------------------------------------- */
.anchor { transform: translate(0,0); }
@media screen and (max-width: 768px) {
	.anchor { transform: translate(0,-14.6667vw); }
}
/* --------------------------------------------------
	.inner
-------------------------------------------------- */
.inner {
	position: relative;
	margin: 0 auto;
	max-width: 1000px;
}
@media screen and (max-width: 1090px) {
	.inner {
		margin-left: 30px;
		margin-right: 60px;
	}
}
@media screen and (max-width: 768px) {
	.inner {
		margin-left: auto;
		margin-right: auto;
	}
}

/* --------------------------------------------------
	.sp-only,pc-only
-------------------------------------------------- */
@media screen and (min-width: 769px) {
	.sp-only { display: none; }
}
@media screen and (max-width: 768px) {
	.pc-only { display: none; }
}

/* --------------------------------------------------
	#header
-------------------------------------------------- */
#header {
	position: absolute;
	right: 0;
	top: 0;
}
#header .inner {
	margin-left: 0;
	margin-right: 0;
}
#header .logo {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 101;
	width: 200px;
}
#header .menuBtn {
	display: none;
	cursor: pointer;
}
#header nav {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100;
	padding-top: 100px;
	width: 60px;
	height: 100vh;
	background-color: #FFF;
	box-sizing: border-box;
}
#header nav ul {
	display: flex;
	flex-direction: column;
	width: 100%;
}
#header nav ul li {
	position: relative;
	text-align: center;
}
#header nav ul li::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%,0);
	display: block;
	width: 33%;
	border-bottom: #DBE1E7 1px solid;
}
#header nav ul li a {
	display: inline-block;
	padding: 20px 0;
	transition: all 0.2s linear;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: #004DA0;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	text-align: center;
}
#header nav ul li:nth-child(1) a {
	padding-top: 30px;
	padding-bottom: 35px;
}
#header nav ul li a span {
	padding-bottom: 0.2em;
	writing-mode: horizontal-tb;
}
#header nav ul li a:hover {
	text-decoration: none;
	opacity: 0.6;
}
@media screen and (max-width: 768px) {
	body { padding-top: 14.6667vw; }
	#header {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 100;
		width: 100vw;
		height: 14.6667vw;
	}
	#header .inner {
		height: 14.6667vw;
		background: #fff;
	}
	#header .logo {
		right: auto;
		left: 0;
		width: 24.9334vw;
	}
	#header .menuBtn {
		position: absolute;
		right: 0;
		top: 0;
		z-index: 101;
		display: block;
		width: 14.6667vw;
		height: 14.6667vw;
		transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	}
	#header .menuBtn span {
		position: absolute;
		left: 50%;
		top: 50%;
		width: 6.1334vw;
		height: 0.5334vw;
		background: #004DA0;
		transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	}
	#header .menuBtn span:nth-child(1) { transform: translate(-50%,-2.4vw); }
	#header .menuBtn span:nth-child(2) { transform: translate(-50%,0); }
	#header .menuBtn span:nth-child(3) { transform: translate(-50%,2.4vw); }
	#header.close .menuBtn { background: #fff; }
	#header.close .menuBtn span {
		width: 7.4667vw;
		background: #004DA0;
	}
	#header.close .menuBtn span:nth-child(1) { transform: translate(-50%,-50%) rotate(35deg); }
	#header.close .menuBtn span:nth-child(2) { opacity: 0; }
	#header.close .menuBtn span:nth-child(3) { transform: translate(-50%,-50%) rotate(-35deg); }
	#header nav {
		position: relative;
		z-index: 10;
		padding-top: 14.6667vw;
		width: 100%;
		overflow: hidden;
		pointer-events: none;
		background-color: transparent;
	}
	#header.close nav {
		pointer-events: auto;
	}
	#header nav ul {
		display: block;
		padding: 3vw 10vw 21.3334vw;
		width: 100vw;
		background: #fff;
		box-sizing: border-box;
		transform: translate(100%,0);
		transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	}
	#header.close nav ul {
		transform: translate(0,0);
	}
	#header nav ul li {
		width: 100%;
		height: auto;
	}
	#header nav ul li::after {
		width: 100%;
	}
	#header nav ul li a {
		display: block;
		padding: 2.6667vw 0;
		width: 100%;
		height: auto;
		box-sizing: border-box;
		font-size: 3.4667vw;
		color: #004DA0;
		writing-mode: horizontal-tb;
	}
	#header nav ul li:nth-child(1) a {
		padding: 2.6667vw 0;
	}
	#header nav ul li a span {
		padding-bottom: 0;
		writing-mode: horizontal-tb;
	}
	#header nav ul li a:hover {
		background-color: #fff;
		text-decoration: none;
	}
}

/* --------------------------------------------------
	#mainContents
-------------------------------------------------- */
#mainContents {
	max-width: 100%;
	overflow: hidden;
}

/* --------------------------------------------------
	.kv
-------------------------------------------------- */
.kv {
	position: relative;
	width: 100%;
	height: calc(100vh - 150px);
}
.kv::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: url("../img/kv_pc.png") no-repeat center center;
	background-size: cover;
	opacity: 0;
}
.kv .inner {
	height: 100%;
}
.kv-base {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	padding-top: 80px;
}
.kv .logo20th {
	margin: 0 auto 30px;
	width: 15.625vw;
	filter: blur(10px);
	opacity: 0;
}
.kv h1 {
	margin-bottom: 20px;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.5;
	font-family: "Noto Serif JP", serif;
	color: #004DA0;
	text-align: center;
	filter: blur(10px);
	opacity: 0;
}
.kv p {
	font-size: 18px;
	font-weight: 600;
	font-family: "Noto Serif JP", serif;
	line-height: 1.8;
	color: #004DA0;
	text-align: center;
	filter: blur(10px);
	opacity: 0;
}
.kv.delighter::before {
	transition: all 2s linear 0.5s;
}
.kv.delighter .logo20th {
	transition: all 1s linear 1.5s;
}
.kv.delighter h1 {
	transition: all 1s linear 1.6s;
}
.kv.delighter p {
	transition: all 1s linear 1.7s;
}
.kv.delighter.started::before {
	opacity: 1;
}
.kv.delighter.started .logo20th,
.kv.delighter.started h1,
.kv.delighter.started p {
	filter: blur(0);
	opacity: 1;
	transform: none;
}
@media screen and (max-height: 650px) {
	.kv-base {
		padding-top: 0;
	}
	.kv .logo20th {
		margin-bottom: 15px;
		width: 10vw;
	}
	.kv h1 {
		margin-bottom: 10px;
		font-size: 24px;
	}
	.kv p {
		font-size: 10px;
	}
}
@media screen and (max-width: 768px) {
	.kv {
		height: 140.5334vw;
		max-height: calc(100vh - 34vw);
	}
	.kv::before {
		background-image: url("../img/kv_sp.png");
	}
	.kv-base {
		padding-top: 4vw;
		width: 100%;
	}
	.kv .logo20th {
		margin-bottom: 3.3334vw;
		width: 30.8vw;
	}
	.kv h1 {
		margin-bottom: 3.3334vw;
		font-size: 4.8vw;
	}
	.kv p {
		font-size: 3.4667vw;
	}
}

/* --------------------------------------------------
	.introduction
-------------------------------------------------- */
.introduction {
	background: url("../img/bg_pc_1.png") no-repeat center 9px;
	background-size: 1440px auto;
}
.introduction .inner {
	padding-top: 90px;
	padding-bottom: 200px;
}
.introduction h2 {
	margin-bottom: 80px;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 1.69;
	letter-spacing: 0.05em;
	color: #004DA0;
}
.introduction p {
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0.06em;
	color: #004DA0;
}
.introduction p + p {
	margin-top: 2em;
}
.introduction [class^="pic"] {
	position: absolute;
	opacity: 0;
	filter: blur(10px);
	transform: translate(0,10%);
}
.introduction .pic1 {
	right: 147px;
	top: 62px;
	width: 229px;
}
.introduction .pic2 {
	right: -220px;
	top: 338px;
	z-index: 2;
	width: 516px;
}
.introduction .pic3 {
	right: 268px;
	top: 587px;
	width: 189px;
}
.introduction .pic4 {
	right: -149px;
	top: 680px;
	width: 269px;
}
.introduction .pic5 {
	right: -44px;
	top: 887px;
	width: 289px;
}
.introduction .pic1.delighter {
	transition: all 1s cubic-bezier(0.33, 1, 0.68, 1) 0.8s;
}
.introduction .pic2.delighter {
	transition: all 1s cubic-bezier(0.33, 1, 0.68, 1) 0.5s;
}
.introduction .pic3.delighter {
	transition: all 1s cubic-bezier(0.33, 1, 0.68, 1) 0.5s;
}
.introduction .pic4.delighter {
	transition: all 1s cubic-bezier(0.33, 1, 0.68, 1) 0.7s;
}
.introduction .pic5.delighter {
	transition: all 1s cubic-bezier(0.33, 1, 0.68, 1) 1.0s;
}
.introduction [class^="pic"].delighter.started {
	opacity: 1;
	filter: blur(0);
	transform: none;
}
@media screen and (max-width: 900px) {
	.introduction .pic1 {
		right: 47px;
	}
	.introduction .pic2 {
		right: -320px;
	}
	.introduction .pic3 {
		right: 110px;
	}
	.introduction .pic4 {
		right: -307px;
	}
	.introduction .pic5 {
		right: 3px;
	}
}
@media screen and (max-width: 768px) {
	.introduction {
		background: url("../img/bg_sp_1.png?260622") no-repeat center 8vw;
		background-size: 100% auto;
	}
	.introduction .inner {
		padding-top: 8.5334vw;
		padding-bottom: 14.6667vw;
	}
	.introduction h2 {
		margin-left: 6vw;
		margin-bottom: 6.6667vw;
		font-size: 4.8vw;
	}
	.introduction p {
		margin-left: 6vw;
		font-size: 3.7334vw;
	}
	.introduction [class^="pic"] {
		position: relative;
	}
	.introduction .pic1 {
		right: auto;
		top: 0;
		z-index: 3;
		margin-top: 10vw;
		margin-bottom: -28.0001vw;
		width: 35.4667vw;
	}
	.introduction .pic2 {
		right: auto;
		left: 30.9334vw;
		top: 0;
		margin-bottom: 8.6667vw;
		width: 74.1334vw;
	}
	.introduction .pic3 {
		right: auto;
		top: 0;
		margin-top: 8.6667vw;
		margin-left: 11.4667vw;
		margin-bottom: -35.2vw;
		width: 25.2vw;
	}
	.introduction .pic4 {
		right: 0;
		top: 0;
		margin-left: 54.8vw;
		margin-bottom: 6.6667vw;
		width: 38.6667vw;
	}
	.introduction .pic5 {
		right: auto;
		top: 0;
		margin-left: 32.2667vw;
		width: 38.5334vw;
	}
}

/* --------------------------------------------------
	.interview
-------------------------------------------------- */
.interview {
	padding-bottom: 150px;
	background: url("../img/bg_pc_2.png") no-repeat center 530px;
	background-size: 1440px auto;
}
.interview .heading-area {
	position: relative;
	padding-top: 130px;
	padding-left: 40px;
	height: 267px;
	background: #D9D9D9;
	box-sizing: border-box;
}
.interview .heading-area .en {
	position: absolute;
	left: 0;
	top: 69px;
	width: 652px;
	height: 91px;
}
.interview .heading-area .en span {
	background: url("../img/interview_en.svg") no-repeat;
	background-size: auto 100%;
}
.interview .heading-area::before,
.interview .heading-area::after {
	content: '';
	position: absolute;
	right: -100%;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #D9D9D9
}
.interview .heading-area::after {
	right: calc( (100vw - 1000px) / 2 * -1 ) ;
	width: 800px;
	height: 100%;
	background: linear-gradient(270deg, #F4F4F4 0%, rgba(244, 244, 244, 0) 100%);
}
.interview .heading-area h2 {
	position: relative;
	z-index: 2;
	font-family: "Noto Serif JP", serif;
	font-weight: 300;
	font-size: 46px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	color: #004DA0;
}
.interview .profile-area {
	position: relative;
	margin: -70px 0 -230px 130px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	gap: 50px;
	max-width: 870px;
}
.interview .profile-area .profile-pic {
	width: 323px;
	opacity: 0;
	filter: blur(10px);
	transform: translate(0,10%);
}
.interview .profile-area .profile-text {
	padding-top: 120px;
}
.interview .profile-area .profile-text p {
	color: #004DA0;
	opacity: 0;
	transform: translate(0,20px);
}
.interview .profile-area .profile-text p .position {
	padding-right: 1em;
	font-weight: 500;
	font-size: 16px;
}
.interview .profile-area .profile-text p .name {
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 32px;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
.interview .contents-area {
	margin-left: 130px;
	max-width: 740px;
}
.interview .contents-area h3 {
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	color: #004DA0;
}
.interview .contents-area p {
	margin-top: 50px;
	font-size: 18px;
	line-height: 2.2;
	letter-spacing: 0.06em;
	color: #5F5F5F;
}
.interview .contents-area p.serif {
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 19px;
	line-height: 2.12;
	color: #5F5F5F;
}
.interview .profile-area.delighter .profile-pic {
	transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
}
.interview .profile-area.delighter .profile-text p {
	transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1) 0.4s;
}
.interview .profile-area.delighter.started .profile-pic,
.interview .profile-area.delighter.started .profile-text p {
	opacity: 1;
	filter: blur(0);
	transform: none;
}
.interview .contents-area.delighter {
	opacity: 0;
	transform: translate(0,20px);
	transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
}
.interview .contents-area.delighter.started {
	opacity: 1;
	transform: none;
}
@media screen and (max-width: 1090px) {
	.interview .heading-area::after {
		right: 0;
	}
}
@media screen and (max-width: 1040px) {
	.interview .profile-area,
	.interview .contents-area {
		margin-left: 60px;
	}
}
@media screen and (max-width: 970px) {
	.interview .contents-area {
		margin-left: auto;
		margin-right: auto;
	}
	.interview .profile-area {
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px;
		margin: 50px auto;
		width: 500px;
	}
	.interview .profile-area .profile-pic {
		order: 1;
	}
	.interview .profile-area .profile-text {
		padding-top: 0;
		width: 100%;
		text-align: right;
	}
}
@media screen and (max-width: 768px) {
	.interview {
		padding-bottom: 20vw;
		background: url("../img/bg_sp_2.png?260622") no-repeat center 117.3334vw;
		background-size: 100% auto;
	}
	.interview .heading-area {
		padding-top: 17.3334vw;
		padding-left: 6.1334vw;
		height: 32.8001vw;
	}
	.interview .heading-area .en {
		top: 8vw;
		width: 91.7334vw;
		height: 12.8vw;
	}
	.interview .heading-area .en span {
	}
	.interview .heading-area::before {
		display: none;
	}
	.interview .heading-area::after {
		right: 0;
		width: 100%;
	}
	.interview .heading-area h2 {
		position: relative;
		z-index: 2;
		font-size: 6.4vw;
	}
	.interview .profile-area {
		margin: 5.3334vw 6.6667vw 10vw;
		justify-content: center;
		gap: 5.3334vw;
		flex-wrap: wrap;
		width: 86.6667vw;
	}
	.interview .profile-area .profile-pic {
		order: 1;
		width: 59.2vw;
	}
	.interview .profile-area .profile-text {
		padding-top: 0;
		width: 100%;
		text-align: right;
	}
	.interview .profile-area .profile-text p .position {
		font-size: 3.2vw;
	}
	.interview .profile-area .profile-text p .name {
		font-size: 5.0667vw;
	}
	.interview .contents-area {
		margin-left: 6.6667vw;
		width: 86.6667vw;
	}
	.interview .contents-area h3 {
		font-size: 4.8vw;
	}
	.interview .contents-area p {
		margin-top: 6.6667vw;
		font-size: 3.6vw;
		text-align: justify;
	}
	.interview .contents-area p.serif {
		font-size: 4vw;
		letter-spacing: 0;
	}
}


/* --------------------------------------------------
	.greeting
-------------------------------------------------- */
.greeting {
	position: relative;
	padding-bottom: 230px;
}
.greeting::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 120%;
	background: url("../img/bg_pc_1_2.png") no-repeat center 90px;
	background-size: 1440px auto;
}
.greeting .heading-area {
	position: relative;
	margin-bottom: 60px;
	padding-top: 60px;
}
.greeting .heading-area .en {
	position: absolute;
	left: 0;
	top: 0;
	width: 596px;
	height: 94px;
}
.greeting .heading-area .en span {
	background: url("../img/greeting_en.svg") no-repeat;
	background-size: auto 100%;
}
.greeting .heading-area h2 {
	font-family: "Noto Serif JP", serif;
	font-weight: 300;
	font-size: 46px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	color: #004DA0;
}
.greeting .profile-area {
	position: relative;
	margin: 0 0 -345px 130px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	gap: 50px;
	width: 870px;
}
.greeting .profile-area .profile-pic {
	width: 323px;
	opacity: 0;
	filter: blur(10px);
	transform: translate(0,10%);
}
.greeting .profile-area .profile-text p {
	color: #004DA0;
	opacity: 0;
	transform: translate(0,20px);
}
.greeting .profile-area .profile-text p .position {
	padding-right: 1em;
	font-weight: 500;
	font-size: 16px;
}
.greeting .profile-area .profile-text p .name {
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 32px;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
.greeting .contents-area {
	margin-left: 130px;
	width: 500px;
}
.greeting .contents-area h3 {
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	color: #004DA0;
}
.greeting .contents-area p {
	margin-top: 50px;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.06em;
	text-align: justify;
}
.greeting .profile-area.delighter .profile-pic {
	transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
}
.greeting .profile-area.delighter .profile-text p {
	transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1) 0.4s;
}
.greeting .profile-area.delighter.started .profile-pic,
.greeting .profile-area.delighter.started .profile-text p {
	opacity: 1;
	filter: blur(0);
	transform: none;
}
.greeting .contents-area .delighter {
	opacity: 0;
	transform: translate(0,20px);
	transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.greeting .contents-area .delighter.started {
	opacity: 1;
	transform: none;
}
@media screen and (max-width: 1090px) {
	.greeting .profile-area,
	.greeting .contents-area {
		margin-left: 60px;
	}
}
@media screen and (max-width: 970px) {
	.greeting .contents-area {
		margin-left: auto;
		margin-right: auto;
	}
	.greeting .profile-area {
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px;
		margin: 50px auto;
		width: 500px;
	}
	.greeting .profile-area .profile-pic {
		order: 1;
	}
	.greeting .profile-area .profile-text {
		padding-top: 0;
		width: 100%;
		text-align: right;
	}
}
@media screen and (max-width: 768px) {
	.greeting {
		padding-bottom: 28.0001vw;
	}
	.greeting::before {
		background: url("../img/bg_sp_1.png?260622") no-repeat center 80vw;
		background-size: 100% auto;
	}
	.greeting .heading-area {
		margin-bottom: 4.6667vw;
		padding-top: 10.6667vw;
		padding-left: 6.6667vw;
	}
	.greeting .heading-area .en {
		left: 6.6667vw;
		width: 83.8667vw;
		height: 13.2vw;
	}
	.greeting .heading-area h2 {
		font-size: 6.4vw;
	}
	.greeting .profile-area {
		margin: 5.3334vw 6.6667vw 10vw;
		justify-content: center;
		gap: 5.3334vw;
		flex-wrap: wrap;
		width: 86.6667vw;
	}
	.greeting .profile-area .profile-pic {
		order: 1;
		width: 59.2vw;
	}
	.greeting .profile-area .profile-text {
		padding-top: 0;
		width: 100%;
		text-align: right;
	}
	.greeting .profile-area .profile-text p .position {
		font-size: 3.2vw;
	}
	.greeting .profile-area .profile-text p .name {
		font-size: 5.0667vw;
	}
	.greeting .contents-area {
		margin-left: 6.6667vw;
		width: 86.6667vw;
	}
	.greeting .contents-area h3 {
		font-size: 4.8vw;
	}
	.greeting .contents-area p {
		margin-top: 6.6667vw;
		font-size: 3.6vw;
		text-align: justify;
	}
}

/* --------------------------------------------------
	.history
-------------------------------------------------- */
.history {
	position: relative;
	padding-bottom: 230px;
}
.history .heading-area {
	margin-bottom: 32px;
	padding-top: 60px;
}
.history .heading-area .en {
	position: absolute;
	left: 0;
	top: 0;
	width: 523px;
	height: 94px;
}
.history .heading-area .en span {
	background: url("../img/history_en.svg") no-repeat;
	background-size: auto 100%;
}
.history .heading-area h2 {
	font-family: "Noto Serif JP", serif;
	font-weight: 300;
	font-size: 46px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	color: #004DA0;
}
.history .history-scroll {
	position: absolute;
	right: 100px;
	top: 150px;
	width: 103px;
	pointer-events: none;
}
.swiper-nav {
	position: relative;
	margin: 0 auto 30px;
	max-width: 100%;
	height: 37px;
}
.swiper-button-next,
.swiper-button-prev {
	width: 103px;
	height: 37px;
	background-repeat: no-repeat;
	background-size: contain;
	text-indent: -9999px;
	transition: all 0.3s linear;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
	opacity: 0.5;
}
.swiper-button-next svg,
.swiper-button-prev svg {
	display: none;
}
.swiper-button-next {
	right: 0;
	background-image: url("../img/history_next.svg");
}
.swiper-button-prev {
	left: 0;
	background-image: url("../img/history_back.svg");
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}
.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}
.swiper-slide {
	position: relative;
	width: 230px;
	height: auto;
	box-sizing: border-box;
}
.swiper-slide .date {
	margin-bottom: 20px;
 	user-select: none;
 }
.swiper-slide .date .year {
	display: block;
	width: 114px;
}
.swiper-slide .date .year img {
	opacity: 0;
}
.swiper-slide .date .year.year-first img {
	opacity: 1;
}
.swiper-slide .date .month {
	display: block;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	color: #004DA0;
}
.swiper-slide .pic {
	margin-bottom: 20px;
 	user-select: none;
}
.swiper-slide p {
 	user-select: none;
	font-size: 14px;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.6;
	color: #004DA0;
}
.swiper-slide p .notoserif {
	display: block;
	padding-bottom: 0.8em;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	font-size: 18px;
}
.swiper-slide p .notoserif small {
	display: block;
	font-family: inherit;
	font-weight: 500;
	font-size: 83%;
}
@media screen and (max-width: 768px) {
	.history {
		padding-bottom: 28.0001vw;
	}
	.history .heading-area {
		margin-bottom: 3.4667vw;
		padding-top: 10vw;
		padding-left: 6.6667vw;
	}
	.history .heading-area .en {
		left: 6.6667vw;
		width: 73.6vw;
		height: 13.2vw;
	}
	.history .heading-area h2 {
		font-size: 6.4vw;
	}
	.history .history-scroll {
		right: 7.3334vw;
		top: 21.3334vw;
		width: 20vw;
	}
	.swiper-nav {
		margin-bottom: 3.4667vw;
		max-width: 86.6667vw;
		height: 7.3334vw;
	}
	.swiper-button-next,
	.swiper-button-prev {
		width: 20.2667vw;
		height: 7.3334vw;
	}
	.swiper-slide {
		width: 52vw;
	}
	.swiper-slide .date {
		margin-bottom: 3.3334vw;
	 }
	.swiper-slide .date .year {
		width: 114px;
	}
	.swiper-slide .date .year img {
		opacity: 1;
	}
	.swiper-slide .date .month {
		font-size: 4.1334vw;
	}
	.swiper-slide .pic {
		margin-bottom: 6vw;
	}
	.swiper-slide p {
		font-size: 3.2vw;
	}
	.swiper-slide p .notoserif {
		font-size: 4.08vw;
	}
}

/* --------------------------------------------------
	#footer
-------------------------------------------------- */
#footer {
	position: relative;
	height: 600px;
	background: #2165AB;
	overflow: hidden;
}
#footer::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: url("../img/footer_bg_pc.png") no-repeat center top;
	opacity: 0;
	transform: translate(0,50px);
}
#footer.delighter::before {
	transition: all 2s cubic-bezier(0.33, 1, 0.68, 1);
}
#footer.delighter.started::before {
	opacity: 1;
	transform: none;
}
#footer .inner {
	padding-top: 120px;
	text-align: center;
}
#footer .contactArea {
	margin-bottom: 80px;
	text-align: center;
}
#footer .contactArea p {
	margin-bottom: 50px;
	font-size: 24px;
	font-family: "Noto Serif JP", serif;
}
#footer .contactArea .btn-contact {
	margin: 0 auto;
	width: 500px;
	height: 130px;
}
#footer .contactArea .btn-contact a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 6px;
	font-size: 22px;
	font-weight: 700;
	color: #004DA0;
}
#footer .contactArea .btn-contact a:hover {
	opacity: 0.7;
	text-decoration: none;
}
#footer .contactArea .btn-contact a:after {
	content: '';
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translate(0,-50%);
	display: block;
	width: 52px;
	height: 18px;
	background: url("../img/icon_btn_arrow.svg") no-repeat;
	background-size: contain;
}
#footer nav { margin-bottom: 28px; }
#footer nav ul {
	display: flex;
	justify-content: center;
}
#footer nav ul li {
	padding: 0 1em;
	border-left: #fff 1px solid;
	font-size: 14px;
}
#footer nav ul li:nth-child(1) {
	border-left: none;
}
#footer nav ul li a {
	color: #fff;
	transition: opacity 0.2s linear;
}
#footer nav ul li a:hover {
	opacity: 0.7;
}
#footer p {
	font-size: 12px;
	color: #fff;
	text-align: center;
}
@media screen and (min-width: 1440px) {
	#footer::before {
		background-size: cover;
	}
}
@media screen and (max-width: 768px) {
	#footer {
		height: 80vw;
	}
	#footer::before {
		background-image: url("../img/footer_bg_sp.png");
		background-size: cover;
	}
	#footer .inner {
		padding-top: 16vw;
	}
	#footer .contactArea {
		margin-bottom: 8vw;
	}
	#footer .contactArea p {
		margin-bottom: 6.1334vw;
		font-size: 3.7334vw;
	}
	#footer .contactArea .btn-contact {
		width: 72vw;
		height: 17.3334vw;
	}
	#footer .contactArea .btn-contact a {
		border-radius: 0.8vw;
		font-size: 3.7334vw;
	}
	#footer .contactArea .btn-contact a:after {
		right: 5.0667vw;
		width: 6.9334vw;
		height: 2.4vw;
	}
	#footer nav { margin-bottom: 6.6667vw; }
	#footer nav ul li {
		font-size: 2.9334vw;
	}
	#footer p {
		font-size: 2.4vw;
	}
}
