@charset "utf-8";



.PageHeader {
	height: 120px;
}

.PageHeader::before,
.load .PageHeader::before {
	background-color: var(--color-bg);
}

.PageHeader__sub::before {
	display: none;
}

.PageHeader__sub .back-to-index {
	color: currentColor;
}

.PageHeader__sub .back-to-index:hover {
	color: #000;
}

.PageHeader__ttl {
	align-items: center;
	text-align: center;
}

.PageHeader__ttl-outer {
	left: auto;
	padding-top: 0;
}

.PageHeader__ttl .sub {
	transform-origin: center;
}

.PageHeader__ttl .ja {
	transform-origin: center;
}


/* -------------------------------------------------------------------- */


.mainimage {
	position: relative;
}

.mainimage__title {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	color: #fff;
	width: calc(100% - 60px);
	margin: auto;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel__container {
	margin: 0;
}


.carousel {
	opacity: 0;
}

.carousel.-ready {
	opacity: 1;
	transition: opacity 1s ease;
}

.carousel__item::before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
}

.carousel__item {
	width: auto;
}

.carousel__item img {
	width: auto;
	height: 500px;
}


/* -------------------------------------------------------------------- */


.images {
	position: relative;
	left: -20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: calc(100% + 40px);
	row-gap: 10px;
	margin: 30px 0;
}

.images__item {
	width: calc(50% - 5px);
}

.images__item:first-child {
	width: 100%;
}

.images__item img {
	display: block;
	width: 100%;
	border-radius: 3px;
}

@media all and (min-width: 768px) {
	.images {
		column-gap: 20px;
		flex-wrap: nowrap;
		width: calc(100% + 80px);
		left: -40px;
	}
	
	.images__item:first-child,
	.images__item {
		width: auto;
	}
}


/* -------------------------------------------------------------------- */


.part-title {
	font-size: 1.8rem;
	font-family: var(--sansserif);
	font-feature-settings: "palt";
	font-weight: bold;
	text-align: center;
}

.part-title__inner {
	transform: scaleX(0.92);
	letter-spacing: 0.06em;
	transform-origin: center;
	width: calc(100% / 0.92);
}

@media all and (min-width: 768px) {
	.part-title {
		font-size: 2rem;
		font-family: var(--sansserif);
	}
}

@media all and (min-width: 1280px) {
	.part-title {
		font-size: 2.6rem;
		font-family: var(--sansserif);
	}
}


/* -------------------------------------------------------------------- */


.part-copy {
	font-size: 1.8rem;
	font-family: var(--sansserif);
	font-feature-settings: "palt";
	font-weight: bold;
}

.part-copy__inner {
	display: block;
	transform: scaleX(0.92);
	letter-spacing: 0.06em;
	transform-origin: left center;
	width: calc(100% / 0.92);
}

.part-subcopy {
	font-size: 1.6rem;
	font-family: var(--sansserif);
	font-feature-settings: "palt";
	font-weight: bold;
}

@media all and (min-width: 768px) {
	.part-copy {
		font-size: 2.6rem;
		font-family: var(--sansserif);
	}
}

@media all and (min-width: 1280px) {
	.part-copy {
		font-size: 3.4rem;
		font-family: var(--sansserif);
	}
}


/* -------------------------------------------------------------------- */


.section-title {
	border-top: 1px solid rgba(0,0,0,0.6);
	margin-bottom: 1.5em;
	padding-top: 1.5em;
	font-weight: bold;
	font-size: 120%;
}

.section-title.h-dot {
	padding-left: 1.25em;
}

.section-title.h-dot:before {
	top: 1.5em;
	width: 0.25em;
	height: 1.5em;
	border-radius: 2px;
}


.careers__img {
	width: calc(100% + 60px);
	margin: 0 0 0 -30px;
}

.careers__img img {
	width: 100%;
	vertical-align: bottom;
}


@media all and (min-width: 768px) {
	
}

@media all and (min-width: 1280px) {
	
}


/* -------------------------------------------------------------------- */


.NewsIndex {
	list-style: none;
	padding-left: 0;
}

.NewsIndex__item {
	border-top: 1px solid rgba(0,0,0,0.1);
}

.NewsArticle {
	position: relative;
	display: block;
	padding: 18px 30px 18px 0;
	border-bottom: none;
}

.NewsArticle::after {
	display: none !important;
}

.NewsArticle__row {
	display: inline-flex;
	align-items: center;
	font-size: 1.2rem;
	padding-right: 10px;
}

.NewsArticle__row > * {
	margin-top: 0;
	padding-left: 10px;
	padding-right: 10px;
	border-right: 1px solid rgba(0,0,0,0.2);
	line-height: 1.5;
}

.NewsArticle__date {
	flex-grow: 1;
	text-align: center;
	border-left: 1px solid rgba(0,0,0,0.2);
}

.NewsArticle__cat {
	flex-grow: 1;
	justify-content: center;
	text-align: center;
}

.NewsArticle__ttl {
	margin-top: 0.5em;
	line-height: 1.6;
	font-weight: bold;
}

.NewsArticle .icon {
	position: absolute;
	right: 0;
	bottom: 18px;
	stroke-width: 1.5;
}

@media all and (min-width: 768px) {
	.NewsArticle {
		
	}
	
	.NewsArticle__row {
		
	}
	
	.NewsArticle__ttl {
		
	}
}

@media all and (min-width: 1280px) {
	.NewsArticle {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.NewsArticle__row {
		width: 25%;
		padding-right: 20px;
	}
	
	.NewsArticle__ttl {
		width: 75%;
		margin-top: 0;
	}
}


/* -------------------------------------------------------------------- */


.DescriptionList {
	width: 100%;
	line-height: 1.7;
}

.DescriptionList__item {
	--padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	row-gap: 10px;
	column-gap: 15px;
	padding: var(--padding) 0;
	border-top: 1px solid rgba(0,0,0,0.05);
}

.DescriptionList dt {
	flex-shrink: 0;
	width: calc(30% - 10px);
}

.DescriptionList dd {
	flex-grow: 1;
	margin-left: 0;
}

.DescriptionList__item.-header {
	padding: 5px 0;
	font-size: 1.1rem;
	font-weight: bold;
	background-color: rgba(0,0,0,0.015);
	color: rgba(0,0,0,0.5);
}

.DescriptionList .btn {
	font-weight: bold;
	font-size: 90%;
}

@media all and (min-width: 768px) {
	.DescriptionList > div {
	}
	
	.DescriptionList dt {
	}
	
	.DescriptionList dd {
	}
}

@media all and (min-width: 1280px) {
	
}


/* -------------------------------------------------------------------- */


.table {
	width: 100%;
	border-collapse: collapse;
	line-height: 1.5;
}

.table tr {
	--padding: 15px;
	row-gap: 10px;
	column-gap: 15px;
	padding: var(--padding) 0;
}

.table tr > * {
	padding: var(--padding) 5px;
	border-top: 1px solid rgba(0,0,0,0.05);
}

.table tr > *:first-child {
	padding-left: 0;
}

.table tr > *:last-child {
	padding-right: 0;
}

.table tr.-header {
	padding: 5px 0;
	font-size: 1.1rem;
	font-weight: bold;
	background-color: rgba(0,0,0,0.015);
	color: rgba(0,0,0,0.5);
}

.table tr.-header > * {
	padding-top: 5px;
	padding-bottom: 5px;
}

.table .btn {
	font-weight: bold;
	font-size: 90%;
}

@media all and (min-width: 768px) {
	.table > div {
	}
	
	.table dt {
	}
	
	.table dd {
	}
}

@media all and (min-width: 1280px) {
	

}


/* -------------------------------------------------------------------- */


.sectionInfoSessionTable {
	
}

.sectionInfoSessionTable__row {
	padding: 30px 25px;
	box-sizing: border-box;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 10px 10px 20px rgba(133,87,74,0.1);
}

.sectionInfoSessionTable__row > * {
	margin-top: 15px;
}

.sectionInfoSessionTable__row > *:first-child {
	margin-top: 0;
}

.sectionInfoSessionTable__row .ttl {
	font-weight: bold;
	font-size: 115%;
}

.sectionInfoSessionTable__row .btns {
	
}

.sectionInfoSessionTable__row .btns > * {
	margin-top: 15px;
}

.sectionInfoSessionTable__row .btns > *:first-child {
	margin-top: 0;
}

.sectionInfoSessionTable__row .btn {
	display: flex;
	padding-top: 15px;
	padding-bottom: 15px;
}

.sectionInfoSessionTable__row .btn .icon {
	stroke-width: 1.3;
}

@media all and (min-width: 768px) {
	.sectionInfoSessionTable {
		display: flex;
		justify-content: space-between;
	}
	.sectionInfoSessionTable__row {
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		width: calc(50% - 10px);
	}
	.sectionInfoSessionTable__row .btns {
		margin-top: auto;
		padding-top: 15px;
	}
}


/* -------------------------------------------------------------------- */


.FlowList {
	padding: 0;
	list-style: none;
	line-height: 1.5;
	counter-reset: FlowList-num;
}

.FlowList__item {
	--margin: 15px;
	--padding: 15px;
	--countsize: 30px;
	
	position: relative;
	display: flex;
	align-items: center;
	margin: var(--margin) 0 0 0;
	padding: var(--padding);
	color: var(--color-txt);
	font-weight: bold;
	background-color: #fff;
	border-radius: 5px;
}

.FlowList__item:first-child {
	
}

.FlowList__item:last-child {
	
}

.FlowList__item:before {
	counter-increment: FlowList-num;
	content: counter(FlowList-num);
	
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	
	width: var(--countsize);
	margin: 0 15px 0 0;
	padding: 0;
	font-weight: bold;
	line-height: 1;
	box-sizing: border-box;
	
	z-index: 1;
}

.FlowList__item:after {
	position: absolute;
	left: calc(var(--countsize) / 2 + var(--padding));
	top: calc(var(--margin) * -1);
	display: block;
	width: 1px;
	height: var(--margin);
	background-color: currentColor;
	content: "";
	opacity: 0.5;
}

.FlowList__item:first-child:after {
	display: none;
}

.FlowList__item:last-child:after {
	
}

@media all and (min-width: 768px) {
	.FlowList__item {
		
	}
}

@media all and (min-width: 1280px) {
	.FlowList__item {
		--padding: 15px;
	}
}


/* -------------------------------------------------------------------- */


.FaqList {
	
}

.FaqList__item {
	background-color: #fff;
	margin-top: 20px;
	padding: 30px;
	box-sizing: border-box;
	border-radius: 5px;
}

.FaqList__q::before,
.FaqList__a::before {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	color: rgba(255,255,255,1);
	font-weight: normal;
	line-height: 1.25;
	border-radius: 15px;
	transform: translateX(calc(-100% - 15px));
}

.FaqList__q {
	position: relative;
	font-weight: bold;
}

.FaqList__q::before {
	content: 'Q';
	width: 20px;
	background-color: rgba(221,161,161,1);
}

.FaqList__a {
	position: relative;
	margin-left: 0;
	margin-top: 10px;
}

.FaqList__a::before {
	content: 'A';
	width: 20px;
	background-color: rgba(136,115,115,1);
}


/* -------------------------------------------------------------------- */


.RelatedSns {
	padding: 25px;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 10px;
}

.RelatedSns__content {
	
}

.RelatedSns__ttl {
	text-align: center;
	margin-top: 0;
}

.RelatedSns__ttl .icon {
	color: #62bf48;
}

.RelatedSns__ttl .icon svg {
	width: 40px;
	height: 40px;
}

.RelatedSns__ttl .lbl {
	display: block;
	margin-top: 10px;
}

.RelatedSns__des {
	font-size: 90%;
}

.RelatedSns__bnr {
	display: none;
	width: 20%;
	min-width: 140px;
	margin: 0;
}

.RelatedSns__bnr img {
	display: block;
	width: 100%;
	border-radius: 10px;
}

.RelatedSns__lnk {
	
}

@media all and (min-width: 768px) {
	.RelatedSns {
		display: flex;
		justify-content: space-between;
		text-align: left;
	}
	
	.RelatedSns__content {
		width: calc(80% - 20px);
	}
	
	.RelatedSns__ttl {
		display: flex;
		align-items: center;
		text-align: left;
	}
	
	.RelatedSns__ttl .lbl {
		margin-top: 0;
		margin-left: 10px;
	}
	
	.RelatedSns__bnr {
		display: block;
		width: calc(20% - 20px);
	}
}


/* -------------------------------------------------------------------- */

.ContactAddress {
	
}

.ContactAddress a[href^="tel"] {
	text-decoration: none;
}

.ContactAddress .tel {
	font-weight: bold;
	font-size: 120%;
	text-decoration: none;
}


/* -------------------------------------------------------------------- */


.Conversion__link {
	font-weight: bold;
}

.Conversion__link svg {
	stroke-width: 1.5;
}


/* -------------------------------------------------------------------- */


.extraConversion {
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0;
	display: flex;
	width: 100%;
	z-index: 10;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
	padding-bottom: env(safe-area-inset-bottom);
	background-color: #3a3737;
	margin: 0 auto;
	transition: 0.5s cubic-bezier(.08,.82,.17,1);
	transition-property: opacity, transform;
}

.scroll-y-end .extraConversion {
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
}

.extraConversion__link {
	position: relative;
	margin: 0;
	flex: 1;
	box-sizing: border-box;
}

.extraConversion__link::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 1px;
	height: calc(100% - 30px);
	margin: auto;
	background: var(--color-bg);
	opacity: 0.5;
}

.extraConversion__link:first-child::before {
	display: none;
}

.extraConversion__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: none;
	color: #fff;
	transition: background 0.2s;
	margin: 0;
	padding: 15px;
	box-sizing: border-box;
	background-color: #3a3737;
}


.extraConversion__btn:hover {
	color: #fff;
	background-color: var(--color-hover);
}

.extraConversion__btn .icon {
	
}

.extraConversion__btn .lbl {
	margin-left: 8px;
	font-size: 1.0rem;
	font-weight: bold;
	line-height: 1.2;
}

.extraConversion__btn[target="_blank"]::after {
	display: none;
}

@media all and (min-width: 768px) {
	.extraConversion {
		width: calc(100% - 40px);
		max-width: 900px;
		border-radius: 5px;
		bottom: 20px;
	}
	
	.extraConversion__btn .lbl {
		font-size: 1.2rem;
	}
}

@media all and (min-width: 1280px) {
	.extraConversion {
		
	}
}

