@charset "utf-8";

/* swiper ... module/_ui-swiper.scss */

body {
	/* .gh sticky */
	height: auto;
}

.main-wrapper {
	position: relative;
	padding-top: 0;
}

.main-wrapper {
	position: relative;
	padding-top: 0;
}

.section-header {
	text-align: center;
}

@media all and (min-width: 1280px) {
	.section-header__ttl {
		font-size: 2.8rem;
	}
}

/* --------------------------------------------------------------------------------------------------
 *
 * Keyvisual
 *
 * -------------------------------------------------------------------------------------------------- */

.kv {
	position: relative;
	overflow: hidden;
    margin-top: var(--headerH);
	margin-bottom: 40px;
	font-weight: bold;
	font-family: "游明朝体", "Yu Mincho", YuMincho, var(--serif);
	color: #fff;
	background-color: #fff;
}

@media all and (min-width: 768px) {
	.kv {
		margin-bottom: 100px;
		max-height: 100%;
	}
}

@media all and (min-width: 1280px) {
	.kv {
		margin-bottom: 0;
	}
}


.KvIndicator {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	background-color: var(--color-bg);
}

.kv.-start .KvIndicator {
	opacity: 0;
	transition: opacity 0.5s ease-out 1s;
}

.KvIndicatorLogo {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 48px;
	height: 48px;
	display: block;
	margin: auto;
	z-index: 9999;
	color: var(--color-accent);
}




.KvTitleContainer {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
	width: calc(100% - 60px);
    height: calc(100svh - var(--headerH, 60px));
	text-align: left;
	margin: 0 auto;
    padding-block: 20px 0;
	box-sizing: border-box;
	z-index: 2;
}

@media all and (min-width: 768px) {
	.KvTitleContainer {
		max-width: 100%;
		width: calc(100% - 100px);
		padding-block: 60px 40px;
	}
}

@media all and (min-width: 1280px) {
	.KvTitleContainer {
		align-items: flex-end;
		flex-direction: row;
		width: calc(100% - 180px);
        height: calc(100svh - var(--headerH, 80px));
		padding-block: 100px 80px;
	}
}


.KvTitle {
	order: 2;
	width: 100%;
	margin: auto 0 0;
	font-feature-settings: "palt";
}

.load .KvTitle {
	opacity: 1;
}

@media all and (min-width: 768px) {
	.KvTitle {
		margin: 0;
	}
}

@media all and (min-width: 1280px) {
	.KvTitle {
		width: auto;
		order: 1;
	}
}

.KvTitle__logoContainer {
	display: flex;
	align-items: center;
	margin-bottom: 26px;
	transition: 0.5s width 1.5s;
}

.load .KvTitle__logoContainer {

}

@media all and (min-width: 1280px) {
	.KvTitle__logoContainer {
		margin-bottom: 0;
	}
}

.KvTitle__logo {
	display: block;
	width: 36px;
	height: 36px;
	margin-right: 20px;
}

@media all and (min-width: 768px) {
	.KvTitle__logo {

	}
}

@media all and (min-width: 1280px) {
	.KvTitle__logo {
		width: 48px;
		height: 48px;
	}
}


.KvTitle__copy {
	width: 112%;
	margin: 0 auto 20px;
	transform: scaleX(0.88);
	transform-origin: left center;
	letter-spacing: 0.06em;
	font-size: 2rem;
	font-weight: 100;
}

@media all and (min-width: 768px) {
	.KvTitle__copy {
		font-size: 3rem;
		line-height: 1.5;
		margin-bottom: 30px;
		margin-left: -3px;
	}
}

@media all and (min-width: 1440px) {
	.KvTitle__copy {
		font-size: 4rem;
	}
}


.KvTitle__read {
	margin: 0;
	transform: scaleX(0.88);
	transform-origin: left center;
	letter-spacing: 0.06em;
	font-size: 1.3rem;
	font-weight: 300;
	line-height: 1.5;
}

@media all and (min-width: 1280px) {
	.KvTitle__read {
		font-size: 1.6rem;
	}
}

.KvTitle .anm {
	display: block;
	color: var(--color-accent);
	opacity: 0;
	transform: translate3d(20px, 0, 0);
	transition-duration: 1.5s;
	transition-property: opacity, transform, color;
	transition-timing-function: cubic-bezier(.55,.09,.68,.53), cubic-bezier(.65,.05,.36,1);
}

.load .KvTitle .anm {
	color: currentColor;
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.load .KvTitle__logo.anm {
	color: var(--color-accent) !important;
	background-color: #fff;
}

.KvTitle .anm:nth-child(1) { transition-delay: 1.15s; }
.KvTitle .anm:nth-child(2) { transition-delay: 1.30s; }
.KvTitle .anm:nth-child(3) { transition-delay: 1.45s; }
.KvTitle .anm:nth-child(4) { transition-delay: 1.60s; }
.KvTitle .anm:nth-child(5) { transition-delay: 1.75s; }




.KvInformation {
	width: calc(100% + 20px);
	margin: 0 -10px;
	font-size: 1.3rem;
	font-weight: 300;
	opacity: 0;
	transition: opacity 1s cubic-bezier(.55,.09,.68,.53) 1.5s;
	transition-property: opacity, -webkit-backdrop-filter, backdrop-filter;
}
.load .KvInformation {
	opacity: 1;
}


.Information__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.Information__listItem {
	padding: 0;
}

.Information__listItem a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 10px;
	box-sizing: border-box;
	text-decoration: none;
    line-height: 1.65;
	background-color: rgba(0,0,0,0);
	transition: background 0.2s ease;
}

.Information__listItem a:hover {
	color: inherit;
	background-color: rgba(0,0,0,0.35);
}

.Information__listItem .icon {
	display: none;
	transition: transform 0.2s ease;
}

.Information__listItem a:hover .icon {
	transform: translateX(5px);
}

@media all and (min-width: 1280px) {
	.KvInformation {
		order: 2;
		width: auto;
		min-width: 360px;
		margin: 0;
		font-size: 1.4rem;
	}
	
	.Information__listItem a {
		padding: 10px 10px;
	}
	
	.Information__listItem .icon {
		display: block;
	}
}


/* event --------------------- */

.kv {
	opacity: 0;
}

.-ready.kv {
	opacity: 1;
	transition: opacity 0.5s ease-in;
}

/* ---------- */

.kv__img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

.kv__img:before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 2;
	background-color: #000;
	transition: opacity 1.5s ease 1.5s;
}

.kv.-start .kv__img:before {
	opacity: 0.5;
}

.kv__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Image, Videos */

.img-reel {
	position: absolute;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	margin: auto;
	padding: 0;
	font-size: 0;
	line-height: 0;
	list-style: none;
	overflow: hidden;
	background-color: #000;
}

.img-reel__item {
	position: absolute;
	margin: 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-position: 0 center;
	animation-duration: 7s;
	animation-delay: 0s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	opacity: 0;
	z-index: 1;
}

.img-reel__item-inner {
	height: 100%;
	width: 100%;
}

.img-reel__item-bg.img {
	display: none;
}

.img-reel__item-bg.video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img-reel__item.current {
	z-index: 2;
	animation-name: showImage;
}

.img-reel__item.prev {
	z-index: 2;
	animation-name: hideImage;
}

.img-reel__item-inner {
	position: absolute;
	left: -50px;
	top: 0;
	width: calc(100% + 100px);
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transform: translate3d(0, 0, 0);
	transform-origin: center center;
	animation: inherit;
	animation-timing-function: linear;
}

.current .img-reel__item-inner {
	animation-name: showTranslateBG;
}

.prev .img-reel__item-inner {
	animation-name: hideTranslateBG;
}

@keyframes showImage {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

@keyframes hideImage {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

@keyframes showTranslateBG {
	0% {
		transform: translate3d(50px, 0, 0);
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes hideTranslateBG {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-50px, 0, 0);
	}
}





/* --------------------------------------------------------------------------------------------------
 *
 * page comon (home only)
 *
 * -------------------------------------------------------------------------------------------------- */

.viewmore {
	font-size: 1.15rem;
	font-weight: 600;
}

@media all and (min-width: 1280px) {
	.viewmore {
		font-size: 1.3rem;
	}
}

/* max-width */
@media all and (max-width: 768px) {
	.c-section--xl {
		margin-top: 100px;
	}
}

/* ---------------------------------------- */

.section-body__read {

}

.section-body__more {
	text-align: center;
}

@media all and (min-width: 768px) {
	.section-body__more {
		text-align: inherit;
	}
}

/* ---------------------------------------- */

.partitionBg {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.PrimaryContents .partitionBg {
	top: 80px;
	right: 0;
	width: calc(100% - 60px);
	max-width: 520px;
	height: 100%;
	background-color: #f6ededaa;
	border-radius: 5px 0 0 5px;
}

.Courses .partitionBg {
	left: 0;
	bottom: -180px;
	width: calc(100% - 64px);
	height: calc(100%);
	background-color: #f6f1edaa;
	border-radius: 0 5px 5px 0;
}

.Hospitality .partitionBg {
	top: 80px;
	right: 0;
	width: calc(100% - 60px);
	height: 100%;
	background-color: #f6ededaa;
	border-radius: 5px 0 0 5px;
}

@media all and (min-width: 768px) {
	.PrimaryContents .partitionBg {
		max-width: 100%;
	}

	.PrimaryContents .w-state {
		max-width: 100%;
		width: calc(100% - 100px);
	}
}

@media all and (min-width: 1280px) {
	.PrimaryContents .partitionBg {
		top: 120px;
		width: 66.666%;
	}

	.Courses .partitionBg {
		width: 66.666%;
	}

	.Hospitality .partitionBg {
		top: 100px;
		width: 66.666%;
	}

	.PrimaryContents .w-state {
		width: 100%;
	}
}

@media all and (min-width: 1440px) {
	.PrimaryContents .partitionBg {
		width: calc((((1440px - (var(--wcalc-gap) * 9)) / 10) * 9) + (var(--wcalc-gap) * 8) + ((100vw - var(--scrollbar-width) - 1440px) / 2));
		height: calc(100% - 60px);
	}

	.PrimaryContentsOutline {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.Courses .partitionBg {
		width: calc(50% + var(--wcalc-gap) / 2);
		width: calc((((1440px - (var(--wcalc-gap) * 9)) / 10) * 8) + (var(--wcalc-gap) * 7) + var(--wcalc-gap) + ((100vw - var(--scrollbar-width) - 1440px) / 2));
	}

	.Hospitality .partitionBg {
		width: calc((((1440px - (var(--wcalc-gap) * 9)) / 10) * 9) + (var(--wcalc-gap) * 8) + ((100vw - var(--scrollbar-width) - 1440px) / 2));
		height: calc(100% - 60px);
	}
}


/* --------------------------------------------------------------------------------------------------
 *
 * Side by side layout
 *
 * -------------------------------------------------------------------------------------------------- */


/* /assets/sass/layout/_main_module.scss */


/* --------------------------------------------------------------------------------------------------
 *
 * Side by side layout B type
 *
 * -------------------------------------------------------------------------------------------------- */


/* /assets/sass/layout/_main_module.scss */


/* --------------------------------------------------------------------------------------------------
 *
 * PrimaryContents
 *
 * -------------------------------------------------------------------------------------------------- */


/* /assets/sass/layout/_main_module.scss */

.PrimaryContents {
	margin-top: 0;
    padding-top: 20px;
	z-index: 1;
}

@media all and (min-width: 768px) {
	.PrimaryContents {
		padding-top: 40px;
	}
}

@media all and (min-width: 1280px) {
	.PrimaryContents {
		padding: 60px;
	}
}


.PrimaryContentsList li.-pct1 .PrimaryContentsList__bg {
	background-image: url(../img/dock/kv.webp);
}
.no-webp .PrimaryContentsList li.-pct1 .PrimaryContentsList__bg {
	background-image: url(../img/dock/kv.jpg);
}

.PrimaryContentsList li.-pct2 .PrimaryContentsList__bg {
	background-image: url(../img/medical-checkup/kv.webp);
}
.no-webp .PrimaryContentsList li.-pct2 .PrimaryContentsList__bg {
	background-image: url(../img/medical-checkup/kv.jpg);
}

.PrimaryContentsList li.-pct3 .PrimaryContentsList__bg {
	background-image: url(../img/for-corporate/kv.webp);
}
.no-webp .PrimaryContentsList li.-pct3 .PrimaryContentsList__bg {
	background-image: url(../img/for-corporate/kv.jpg);
}





/* ! max-width */
@media all and (max-width: 767px) {
	.PrimaryContents .w-state {
		width: calc(100% - 60px);
		max-width: 100%;
	}

	.PrimaryContentsOutline__txt {
		width: 100%;
		max-width: 520px;
		margin-right: auto;
		margin-left: auto;
	}
}




/* --------------------------------------------------------------------------------------------------
 *
 * Introduction
 *
 * -------------------------------------------------------------------------------------------------- */

/* outline */

.Intro {

}

.Intro__header {

}

.Intro__header ~ * {

}

.Intro__body {

}

/* contents */

.IntroFigure {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	height: 50vh;
	min-height: 400px;
	margin: 0;
}

.IntroFigure__img {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("../img/home/intro1.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.no-webp .IntroFigure__img {
	background-image: url("../img/home/intro1.jpg");
}

.IntroFigure__img::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
}

.IntroFigure__ttl {
	position: relative;
	width: calc(100% - 60px);
	max-width: 1920px;
	margin: 0 auto;
	padding-bottom: 40px;
	text-align: center;
	color: #fff;
	z-index: 2;
}

.IntroFigure__ttl-str {
	display: block;
	font-family: var(--serif);
	font-weight: 400;
	font-size: 2.0rem;
	transform: scaleX(0.88);
	letter-spacing: 0.12em;
}

@media all and (min-width: 768px) {
	.IntroFigure {
		height: 80vh;
	}

	.IntroFigure__ttl {
		width: calc(100% - 100px);
		padding-bottom: 80px;
		text-align: left;
	}

	.IntroFigure__ttl-str {
		font-size: 2.5rem;
		transform-origin: left center;
	}
}

@media all and (min-width: 1280px) {
	.IntroFigure__ttl {
		width: calc(100% - 160px);
	}
	.IntroFigure__ttl-str {
		font-size: 3rem;
	}
}

@media all and (min-width: 1440px) {

}


/* --------------------------------------------------------------------------------------------------
 *
 * Facilities
 *
 * -------------------------------------------------------------------------------------------------- */

.Facilities {
	position: relative;
}

.Facilities__figure {
	margin: 0;
}

.Facilities__figure + * {

}

.Facilities__header {

}

.Facilities__header ~ * {

}

.Facilities__body {

}

.Facilities .carousel {

}

@media all and (min-width: 768px) {

}



/* --------------------------------------------------------------------------------------------------
 *
 * Hospitality-up
 *
 * -------------------------------------------------------------------------------------------------- */

/* outline */

.Hospitality {
	position: relative;
	margin-bottom: -60px; /* swipe container */
}

.Hospitality__body {

}

.Hospitality__body > * {
	margin-top: 20px;
	margin-bottom: 0;
}

.Hospitality__body > *:first-child {
	margin-top: 0;
}

.Hospitality__ttl {
	font-size: 1.6rem;
}

.Hospitality__read {
	font-size: 1.3rem;
}

.Hospitality__read br {
	display: none;
}

.Hospitality .section-body__more {
	text-align: right;
}

@media all and (min-width: 768px) {
	.Hospitality__body {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.Hospitality .section-body__more {
		text-align: left;
	}
}

@media all and (min-width: 1280px) {
	.Hospitality__ttl {
		font-size: 1.8rem;
	}

	.Hospitality__read {
		font-size: 1.4rem;
	}
}


/* --------------------------------------------------------------------------------------------------
 *
 * Follow-up
 *
 * -------------------------------------------------------------------------------------------------- */

/* outline */

.Followup {

}

.Followup__header {
	margin-top: 40px;
}

.Followup__header ~ * {

}

.Followup__body {
	box-shadow: 20px 20px 40px rgba(133,87,74,0.2);
}

.Followup__body > * {
	margin-bottom: 0;
}

.Followup__body > *:first-child {
	margin-top: 0;
}

.FollowupBody__ttl {
	text-align: center;
	font-size: 1.6rem;
	font-feature-settings: "palt";
}

.FollowupBody__read {
	margin-top: 30px;
}

@media all and (min-width: 768px) {
	.Followup__body {
		justify-content: center;
		text-align: center;
	}

	.FollowupBody__ttl {
		font-size: 2.4rem;
	}

	.FollowupBody__read {
		font-size: 1.4rem;
	}
}

/* ------------------------------------------------------ */

.FollowupFigure {
	position: relative;
}

.FollowupFigure__img {
	width: 100%;
	height: 100%;
}

.FollowupFigure__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.-no-object-fit .FollowupFigure__img img {
	width: 100%;
	height: auto;
}

@media all and (min-width: 768px) {
	.FollowupFigure {
		margin: 0;
		padding: 0;
	}
}



/* --------------------------------------------------------------------------------------------------
 *
 * Course
 *
 * -------------------------------------------------------------------------------------------------- */

.Courses {
	position: relative;
}

.Courses a:hover {
	color: #000;
}



.CoursesNav {
	text-align: left;
	font-size: 1.2rem;
	font-weight: bold;
}

.CoursesNav-inner-width {
	display: flex;
	justify-content: center;
}

@media all and (min-width: 768px) {
	.CoursesNav {
		position: absolute;
		top: 0;
		width: 100%;
		font-size: 1.3rem;
	}

	.CoursesNav-inner-width {
		display: flex;
		justify-content: flex-end;
	}
}

@media all and (min-width: 1280px) {
	.CoursesNav {

	}
}

.CoursesNav-inner {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.CoursesNav__nav {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 2;
}

.CoursesNav__item {
	margin: 0 0 0 20px;
}

.CoursesNav__item:first-child {
	margin-left: 0;
}

.CoursesNav__currentbar {
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	min-width: 40px;
	height: 2px;
	padding: 0;
	border: none;
	box-sizing: border-box;
	text-align: center;
	text-decoration: none !important;
	color: inherit;
	white-space: nowrap;
	line-height: 1;
	background-color: currentColor;
	z-index: 1;
	transition: 1s cubic-bezier(.77,0,.18,1);
	transition-property: left, width;
}

.CoursesNav .btn {
	border-radius: 30px;
	padding: 10px 0;
	cursor: pointer;
}

.CoursesNav .btn.-current {

}
.CoursesNav .btn.-current:hover {

}
.CoursesNav .btn.-current::before {
	opacity: 0;
}

@media all and (min-width: 768px) {
	.CoursesNav__item {
		margin: 0 0 0 35px;
	}
	.CoursesNav .btn {

	}
}



.CoursesType-container {
	position: relative;
	margin-top: 40px;
}

.CoursesType {
	position: absolute;
	top: 0;
	transition: 1s cubic-bezier(.77,0,.18,1);
	transition-property: opacity, transform;
	width: 100%;
	margin-top: 0;
	padding: 1px 0 0;
	opacity: 0;
}

.CoursesType:first-child {
	position: relative;
}

.CoursesType.-show {
	display: block;
	opacity: 1;
}

.CoursesType.-hidden {
	display: none;
	pointer-events: none;
}

.CoursesType:first-child {

}




.CoursesTypeIntro {
	height: auto;
}

.CoursesTypeIntro.-card .swiper-slide-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: calc(100% - 20px);
	padding-right: 30px;
}

.CoursesTypeIntro__header {

}

.CoursesTypeIntro__icon {
	width: 48px;
	height: 48px;
	transform: translate(-3px, 0);
}

.CoursesTypeIntro__icon .icon {
	display: block;
}


.CoursesTypeIntro__icon svg {
	width: 100%;
	height: 100%;
}

.CoursesTypeIntro__ttl {
	transform: scaleX(0.9);
	transform-origin: left center;
	font-family: var(--serif);
	font-weight: normal;
	font-size: 2.2rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

.CoursesTypeIntro__ttlen {
	margin-top: 20px;
	font-size: 3.0rem;
	font-weight: 500;
	font-family: var(--serif-en);
	line-height: 1.2;
}

.CoursesTypeIntro__read {
	font-size: 1.2rem;
}

@media all and (min-width: 768px) {


}

@media all and (min-width: 1280px) {
	.CoursesTypeIntro__icon {
		width: 72px;
		height: 72px;
		transform: translate(-5px, 0);
	}

	.CoursesTypeIntro__ttl {
		margin-top: 20px;
		font-size: 3.4rem;
	}

	.CoursesTypeIntro__ttlen {
		font-size: 6rem;
	}

	.CoursesTypeIntro__read {
		font-size: 1.4rem;
	}
}


.CoursesType__list {
	margin: 0;
}

.CoursesType__item {
	transform: translateX(100%);
	transition: 1s cubic-bezier(.77,0,.18,1);
	transition-property: transform;
}

.CoursesType.-show .CoursesType__item {
	transform: translateX(0);
}



.CourseOutline {

}

.CourseOutline__img {
	margin: 0;
}

.CourseOutline__body {

}

.CourseOutline__body > * {
	margin-top: 20px;
	margin-bottom: 0;
}

.CourseOutline__body > *:first-child {
	margin-top: 0;
}

.CourseOutline__cat {
	font-size: 1.1rem;
	line-height: 1.3;
}

.CourseOutline__ttl {
	margin-top: 10px;
	line-height: 1.6;
	font-size: 1.8rem;
	font-feature-settings: "palt";
}

.CourseOutline__read {
	font-size: 1.3rem;
}

.CourseOutline__more {
	text-align: right;
}


/* --------------------------------------------------------------------------------------------------
 *
 * News
 *
 * -------------------------------------------------------------------------------------------------- */

/* outline */

.News {
	position: relative;
}

.News__header {

}

.News__body {
	border: none;
	padding: 0;
}

.News__footer {
	font-size: 1.4rem;
}

@media all and (min-width: 768px) {
	.News {

	}
}

@media all and (min-width: 1280px) {
	.News {

	}
}

/* ------------------------------------------------------ */

/* index */

.NewsIndex {
	width: 100%;
	list-style: none;
	padding: 0;
}

.NewsIndex__item {
    margin: 0;
}

.NewsIndex__item:first-child .NewsArticle {
    border-left: none;
}

@media all and (min-width: 768px) {
	.NewsIndex {
		margin: 0;
		padding: 0;
	}
}

@media all and (min-width: 1280px) {
	.News__body {
		opacity: 0;
		transition: 1s cubic-bezier(.77,0,.18,1);
		transition-property: transform, opacity;
	}

	.load .News__body {
		opacity: 1;
	}
}

/* ------------------------------------------------------ */

/* item */

.NewsArticle {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
	text-decoration: none;
	border-bottom: none;
	padding: 20px;
	height: 100%;
	transition: 0.2s ease;
	transition-property: box-shadow, color;
    border-left: 1px solid rgba(0,0,0,0.15);
}

.NewsArticle:hover {
	text-decoration: none;
}

.NewsArticle > * {
	margin-top: 10px;
	bottom: 0;
}

.NewsArticle > *:first-child {
	margin-top: 0;
}

@media all and (min-width: 768px) {
	.NewsArticle {
		position: relative;
        padding: 30px;
	}
}

@media all and (min-width: 1280px) {
	.NewsArticle {
        padding: 30px 3em;
	}
}

/* -------------------- */

/* contents */

.NewsArticle__row {
	display: flex;
	align-items: center;
}

.NewsArticle__date {
	margin: 0;
	font-size: 1.4rem;
	font-weight: normal;
	font-family: var(--serif);
}

.NewsArticle__cat {
	display: flex;
	align-items: center;
	font-size: 90%;
	white-space: nowrap;
	font-size: 1.2rem;
	margin: 0;
	padding: 0 10px;
	border-radius: 30px;
	font-family: var(--serif);
}

.NewsArticle__ttl {
	position: relative;
	width: 100%;
	font-size: 1.8rem;
	font-family: var(--serif);
	font-weight: bold;
	font-feature-settings: 'palt';
	letter-spacing: 0.05em;
	line-height: 1.6;
	transform: scaleX(0.9);
	transform-origin: left;
	width: calc(100% / 0.9);
	padding-top: 16px;
	margin-top: 15px;
    margin-bottom: 16px;
}

.NewsArticle__ttl:before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	opacity: 0.1;
}

.NewsArticle__exc {
	overflow: hidden;
	height: 6em;
	font-size: 1.2rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	color: #555;
	text-align: justify;
    margin-top: auto;
}

.NewsArticle__exc > * {
	margin: 0;
}

.NewsArticle__more {
    align-self: flex-end;
}

@media all and (min-width: 768px) {
	.NewsArticle__date,
	.NewsArticle__cat,
	.NewsArticle__ttl {

	}

	.NewsArticle__date {

	}

	.NewsArticle__cat {

	}

	.NewsArticle__ttl {
	}

	.NewsArticle__exc {
	}
}

@media all and (min-width: 1280px) {
	.NewsArticle__date,
	.NewsArticle__cat {

	}

	.NewsArticle__ttl {
		min-height: 3.5em;
		font-size: 2.0rem;
	}
}


/* -------------------- */

/* footer */

.News__footer {
	margin-top: -30px;
	text-align: center;
}

@media all and (min-width: 768px) {
	.News__footer {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
		text-align: right;
		pointer-events: none;
	}

	.News__footer a {
		pointer-events: auto;
	}
}

@media all and (min-width: 1280px) {
	.News__footer {
		margin-top: 0px;
	}
}



/* --------------------------------------------------------------------------------------------------
 *
 * Modal
 *
 * -------------------------------------------------------------------------------------------------- */

 [data-modal] {
	max-width: 700px;
}


/* -------------------------------------------------------------------------------------------------- */

/* 以下Web予約設置までの旧デザイン*/
/*
@media all and (min-width: 1280px) {

	.gh a {
		color: var(--color-txt);
	}

	.gh a:hover {
		color: var(--color-txt);
	}

	.site-subheader a {
		color: var(--color-txt);
	}

	.site-subheader__util__li a {
		color: var(--color-bg);
	}

	.site-subheader__util__li a:hover {
		color: #fff;
		background-color: #2c2929;
	}
}
*/
