@charset "utf-8";
/***** 全体 *****/
.l-contents__main {
	min-height: 400px;
	padding-top: 40px;
	box-sizing:border-box;
}

.c-content {
	overflow: hidden;
}

.c-item {
	max-width: 1320px;
	margin: 0 auto 100px auto;
	padding: 0 60px;
}

.c-item:last-child {
	margin-bottom: 160px;
}

.c-item__in {
	margin-bottom: 50px;
}

.c-item .c-item__in:last-child {
	margin-bottom: 0;
}

/*.c-item:nth-of-type(even) {
	position: relative;
	padding: 100px 60px;
}

.c-item:nth-of-type(even):before {
	content: "";
	position: absolute;
	width: 100vw;
	height: 100%;
	margin: 0 calc(50% - 50vw);
	padding: 0 calc(50vw - 50%);
	background-color: var(--base-color);
	top: 0;
	right: 0;
	z-index: -1;
}

.c-item:nth-of-type(even):last-child {
	margin-bottom: 0;
	padding-bottom: 160px;
}*/

@media screen and (max-width: 768px){
	.l-contents__main {
		width: 100%;
		padding-top: 30px;
	}
	
	.c-item {
		margin: 0 auto 6rem auto;
		padding: 0 1.5rem;
	}
	
	.c-item:last-child {
		margin-bottom: 10rem;
	}
	
	.c-item__in {
		margin-bottom: 4rem;
	}
	
	/*.c-item:nth-of-type(even) {
		padding: 6rem 1.5rem;
	}
	
	.c-item:nth-of-type(even):last-child {
		padding-bottom: 10rem;
	}*/
}

/***** 配置 *****/
.c-flex__ph {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.c-flex__txt {
	flex: 1;
	margin-right: 5rem;
}

.c-flex__img {
	max-width: 465px;
	width: 45%;
	height: 100%;
}

.c-flex__img img {
	border-radius: 10px;
}

@media screen and (max-width: 768px){
	.c-flex__ph {
		display: block;
	}
	
	.c-flex__txt {
		margin: 0;
	}
	
	.c-flex__img {
		width: 100%;
		margin-top: 30px;
	}
}

/***** ボックス *****/
.c-box {
	margin: 30px 0;
	padding: 40px;
	border: 2px solid var(--sub-color);
}

.c-box:last-child {
	margin-bottom: 0;
}

@media screen and (max-width:768px){
	.c-box {
		margin: 15px 0;
		padding: 20px;
	}
}

/***** ボタン *****/
.c-btn {
	margin-top: 30px;
	margin-bottom: 30px;
}

.c-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: 500;
	color: #111;
	text-decoration: none;
	border: 1px solid #111;
	padding: 15px;
	flex-grow: 1;
	transition: 0.3s;
}

.c-btn a:hover {
	width: 100%;
	border: 1px solid var(--point-color);
	color: var(--point-color);;
}

.c-btn__icon {
	display: inline-block;
	width: 3.8rem;
	height: 3.8rem;
	margin-left: 1.6rem;
	background-color: var(--point-color);
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

.c-btn__icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(233,200,135,0) 0%, rgba(233,200,135,.3) 100%);
	transform: skewX(-25deg);
}

.c-btn a:hover .c-btn__icon::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.c-btn__arrow::before {
	content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
	right: 1.2rem;
    margin: auto;
    width: 1.5rem;
    height: 1px;
    background: #fff;
    transition: .3s;
}

.c-btn__arrow::after {
	content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.2rem;
    margin: auto;
    width: 1rem;
    height: 1rem;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-135deg);
    transition: .3s;
}

.c-btn a:hover .c-btn__arrow::before,
.c-btn a:hover .c-btn__arrow::after {
	right: 0.7rem;
}

.c-btn__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem 1.6rem;
}

.c-btn__list li {
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
}

.c-btn__list .c-btn {
	margin-top: 0;
}

@media screen and (max-width: 768px){
	.c-btn__list {
		grid-template-columns: 1fr;
	}
}

/***** テーブル *****/
.c-table {
	width: 100%;
	overflow-wrap: anywhere;
}

.c-table th {
	padding: 2.8rem 2.8rem 2.8rem 0;
	font-weight: 600;
	border-bottom: 1px solid #DEDEDE;
	width: 22%;
	vertical-align: baseline;
}

.c-table td {
	padding: 2.8rem 0;
	border-bottom: 1px solid #DEDEDE;
}

.c-table tr:first-child th,
.c-table tr:first-child td {
	border-top: 1px solid #DEDEDE;
}

@media screen and (max-width: 768px){
	.c-table th {
		padding: 2rem 2rem 2rem 0;
		width: 35%;
	}
}

/***** Our Mission *****/
.p-ttl__mission {
	margin-bottom: 10px;
}

/***** PROFILE *****/
.p-profile__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	gap: 2rem;
}

.p-profile__grid-list {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-profile__grid-list img {
	border-radius: 5px;
	max-width: 150px;
}

.p-profile__grid-list span {
	font-size: 1.4rem;
	line-height: 1.2;
	text-align: center;
	margin-top: 10px;
}

@media screen and (max-width: 768px){
	.p-profile__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	}
}

/***** ACCESS *****/
.p-access__box {
	display: flex;
	align-items: center;
	gap: 2.4rem;
}

.p-access__box dt {
	padding: 1rem 3.2rem;
	font-size: 1.8rem;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #111;
}

.p-access__map iframe {
	width: 100%;
	height: 600px;
}

@media screen and (max-width: 768px){
	.p-access__box {
		flex-direction: column;
		gap: 1.6rem;
	}
	
	.p-access__box dt {
		width: 100%;
		padding: 0.8rem 1rem;
		font-size: 1.6rem;
	}
	
	.p-access__map iframe {
		height: 300px;
	}
}

/***** Our Archives *****/
.p-archives__list .c-btn a {
	min-height: 94px;
}

.c-archives__wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 0 4rem;
}

.c-archives__list {
	font-size: 1.6rem;
	width: calc((100% - 4rem) / 2);
}

.c-archives__list li {
	border-bottom: 1px solid #DEDEDE;
	padding-bottom: 1rem;
}

@media screen and (max-width: 768px){
	.p-archives__list .c-btn a {
		min-height: auto;
	}
	
	.c-archives__wrap {
		display: block;
	}
	
	.c-archives__list {
		width: 100%;
	}
}