@charset "UTF-8";

/** -----------------------------------------------
  共通
------------------------------------------------**/
body {
	overflow-x: hidden;
	color: #333333;
	letter-spacing: 0.05em;
	font-family: 'Cardo', "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	line-height: 1.6;
}

@media screen and (max-width: 992px) {
	body {
		font-size: 0.875rem;
	}
}

a {
	opacity: 1;
	transition: all .4s;
}

a:hover {
	text-decoration: none;
	opacity: .6;
}

img {
	max-width: 100%;
}

/** -----------------------------------------------
  レイアウト/余白
------------------------------------------------**/
.section-inner {
	margin: 0 auto;
	width: calc(100% - 10vw);
}

.section-inner.-sm {
	max-width: 1000px;
}

.news {
	padding-top: 100px;
}

.news .section-inner {
	margin: 0 0 0 auto;
	padding: 80px 100px;
	width: calc(100% - 5vw);
	background-color: #f7f7f7;
}

@media screen and (max-width: 768px) {
	.section-inner {
		width: calc(100% - 30px);
	}

	.news .section-inner {
		padding: 80px 40px;
		width: calc(100% - 15px);
	}
}

.l-footer {
	padding-top: 150px;
}

/* ヘッダー高さ分の余白を空ける */
.header+section {
	padding-top: 100px;
}

/* .sec1,
.sec2 {
	padding-top: 100px;
} */

@media screen and (max-width: 768px) {
	.news,
	.l-footer {
		padding-top: 100px;
	}
	.header+section {
		padding-top: 100px;
	}
	.sec1,
	.sec2 {
		padding-top: 100px;
	}
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}
}

.col-2,
.col-3 {
	display: flex;
	justify-content: space-between;
}

.col-2 .item {
	width: calc((100% - 2.5rem)/2);
}

.col-3 .item {
	width: calc((100% - 5rem)/3);
}


/** -----------------------------------------------
  フォント
------------------------------------------------**/
.section-title {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	text-transform: uppercase;
	font-size: 2rem;

	gap: 0 10px;
}

.section-title span {
	font-size: .875rem;
}

.-center {
	align-items: center;
}

@media screen and (max-width: 768px) {
	.section-title {
		font-size: 1.75rem;
	}

	.-left {
		align-items: center;
		flex-direction: row;
	}
}


/** -----------------------------------------------
  ボタン
------------------------------------------------**/
.c-button {
	position: relative;
	display: inline-block;
	border: none;
	background-color: transparent;
	text-decoration: none;
	cursor: pointer;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.btn-primary {
	display: block;
	padding: 20px 60px;
    border: 1px #333333 solid;
    background-color: #ffffff;
    color: #333333;
	transition: all .4s;
}

.btn-primary:hover {
    color: #999999;
}

.btn-primary::before {
	position: absolute;
	top: 50%;
	right: -20px;
	width: 40px;
	height: 1px;
    background-color: #333333;
	content: '';
	transition: all .4s;
}

.btn-primary:hover::before {
	right: -10px;
}

.btn-cta {
	padding: 20px 50px 20px 70px;
	background-color: #ffffff;
    color: #808080;
	transition: all .4s;
}
.btn-cta:hover {
	opacity: .8;
}

.btn-cta::before {
	position: absolute;
	top: 50%;
	left: 1.5rem;
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	background-image: url(../images/icon-paperplane.svg);
	background-size: contain;
	content: '';
	transition: all .4s;
	transform: translate(0, -50%);
}

.btn-cta:hover::before {
	left: 2rem;
}

/** -----------------------------------------------
  ヘッダー
------------------------------------------------**/
.header {
	position: fixed;
	top: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100px;
	background-color: #FFFFFF;
}

.header_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu {
	display: flex;
	align-items: center;

	gap: 2rem;
}

.menu li a {
	position: relative;
	display: block;
	text-align: center;
	font-size: 1.125rem;
}

.menu li a:before {
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0;
	height: 0;
	background-color: #808080;
	content: '';
	transition: all .4s;
}

.menu li a:hover:before {
	width: 100%;
	height: 1px;
}

.menu li a span {
	display: block;
	font-size: 0.75rem;
}

.p-hamburger {
	z-index: 9999;
	display: none;
	width: 40px;
	height: 40px;
	outline: none;
	border-radius: 100vh;
	background-color: transparent;
	box-shadow: 0 0 2rem transparent;
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out;
	transition: background-color .3s ease-in-out;
}

.p-hamburger:hover,
.p-hamburger:focus {
	/* box-shadow: 0 0 .5rem rgba(51, 51, 51, 0.6); */
	/* background-color: #333333; */
	border: 1px solid #333333;
}

.p-hamburger__line {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 18px;
	height: 2px;
	background-color: #333333;
	-webkit-transition: auto;
	transition: auto;
}

/* .p-hamburger:hover .p-hamburger__line,
.p-hamburger:focus .p-hamburger__line {
	background-color: #ffffff;
} */

.p-hamburger__line::before,
.p-hamburger__line::after {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-color: inherit;
	content: '';
	-webkit-transition: inherit;
	transition: inherit;
}

.p-hamburger__line::before {
	top: -5px;
}

.p-hamburger__line::after {
	top: 5px;
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line {
	background-color: transparent;
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line::before,
.p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
	top: 0;
	background-color: #ffffff;
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line::before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.u-visuallyHidden {
	position: absolute;
	overflow: hidden;
	clip: rect(0 0 0 0);
	margin: -1px;
	padding: 0;
	width: 1px;
	height: 1px;
	border: 0;
	white-space: nowrap;

	clip-path: inset(50%);
}

@media screen and (max-width: 768px) {
	body.is-drawerActive {
		overflow: hidden;
		height: 100vh;
	}

	.menu {
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: 999;
		flex-direction: column;
		opacity: 0;
		transform: translate(-50%, -50%);
	}

	.is-drawerActive .menu {
		opacity: 1;
	}

	.p-drawer {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
		visibility: hidden;
		overflow: auto;
		width: 100%;
		height: 100vh;
		color: #ffffff;
	}

	.is-drawerActive .p-drawer {
		visibility: visible;
	}

	.p-hamburger {
		display: block;
	}

	.circle-bg {
		position: fixed;
		top: -50px;
		right: -50px;
		z-index: 3;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		background-color: #333333;
		transition: all .6s;
		transform: scale(0);
	}

	.is-drawerActive .circle-bg {
		transform: scale(50);
	}
}

/** -----------------------------------------------
  mainvisual
------------------------------------------------**/
/* アニメーション */
.anime_wrap li {
	opacity: 0;
	transition: ease;
	transition-duration: 2000ms;
	/* transform: scale(1.2, 1.2); */
}

/* .anime_wrap.show li {
	opacity: 1;
	transform: scale(1);
} */

/* レイアウト */
.p-hero {
	margin-top: 100px;
}

.p-hero__image {
	height: calc(100vh - 4.5rem);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.p-hero__image:nth-child(1) {
	background-image: url(../images/kv_01_pc.jpg);
}

.p-hero__image:nth-child(2) {
	background-image: url(../images/kv_02_pc.jpg);
}

.p-hero__image:nth-child(3) {
	background-image: url(../images/kv_03_pc.jpg);
}

.p-hero__image:nth-child(4) {
	background-image: url(../images/kv_04_pc.jpg);
}

.p-hero__image:nth-child(5) {
	background-image: url(../images/kv_05_pc.jpg);
}

.p-hero__image:nth-child(6) {
	background-image: url(../images/kv_06_pc.jpg);
}

.p-hero__image:nth-child(7) {
	background-image: url(../images/kv_07_pc.jpg);
}

.p-hero__image:nth-child(8) {
	background-image: url(../images/kv_08_pc.jpg);
}

@media screen and (max-width: 1024px) {
	.p-hero__image {
		height: 40vh;
	}
	/* .p-hero__image:nth-child(1) {
		background-image: url(../images/kv_01_sp.jpg);
	}

	.p-hero__image:nth-child(2) {
		background-image: url(../images/kv_02_sp.jpg);
	}

	.p-hero__image:nth-child(3) {
		background-image: url(../images/kv_03_sp.jpg);
	}

	.p-hero__image:nth-child(4) {
		background-image: url(../images/kv_04_sp.jpg);
	}

	.p-hero__image:nth-child(5) {
		background-image: url(../images/kv_05_sp.jpg);
	}

	.p-hero__image:nth-child(6) {
		background-image: url(../images/kv_06_sp.jpg);
	} */
}


/** -----------------------------------------------
  Top：News
------------------------------------------------**/
.news__wrap {
	display: flex;

	gap: 40px 80px;
}

.news__list {
	display: flex;
	align-items: flex-start;
	flex: 1 0 0;
	flex-direction: column;
	padding-top: 1rem;

	gap: 2rem;
}

.news__item-wrap {
	display: flex;
	align-items: center;

	gap: 0 30px;
}

@media screen and (max-width: 768px) {
	.news__wrap {
		flex-direction: column;
	}

	.news__item-wrap {
		align-items: flex-start;
		flex-direction: column;
	}
}

.news__date {
	color: var(--gray, #808080);
}

@media screen and (max-width: 768px) {
	.news__date {
		font-size: .875rem;
	}
	
	.news__title {
		font-size: .875rem;
	}
}	
/** -----------------------------------------------
  footer
------------------------------------------------**/
.p-cv {
	position: relative;
	display: block;
	padding: 120px 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%), url(../images/ft-bg.jpg) center center/cover;
	background-color: #f7f7f7;
}

.p-cv__wrap {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin: 0 auto;
	padding: 60px;
	max-width: 1000px;
	border: 1px solid #ffffff;
	color: #ffffff;

	gap: 40px;
}

.copyright {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
	font-size: 0.75rem;
	column-gap: 10px;
}

@media screen and (max-width: 768px) {
	.copyright {
		flex-direction: column;
	}
}

/** -----------------------------------------------
  about page
------------------------------------------------**/
.profile {
	display: flex;
	align-items: center;

	gap: 40px;
}

.profile__image {
	width: 40%;
}

.profile__text {
	display: flex;
	flex-direction: column;
	width: 60%;

	gap: 40px;
}

.name-en {
	margin-bottom: .5rem;
	font-size: 1.25rem;
}

.profile__sns {
	color: #808080;
	font-size: 1.5rem;
}

.profile__sns a {
	margin-right: 8px;
}

.fa-twitter:before {
	content: '𝕏';
	font-weight: bold;
	font-family: unset;
}

@media screen and (max-width: 540px) {
	.profile {
		flex-direction: column;
	}

	.profile__image,
	.profile__text {
		width: 100%;
	}
}

.awards__wrap {
	display: flex;

	gap: 40px 80px;
}

.awards__list {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	padding-top: 1rem;

	gap: .5rem;
}

.awards__item {
	display: flex;
	align-items: center;

	gap: 0 20px;
}

.awards__date {
	color: var(--gray, #808080);
}

@media screen and (max-width: 768px) {
	.awards__wrap {
		flex-direction: column;
	}
}

/** -----------------------------------------------
  gallery page
------------------------------------------------**/
.gallery-wrap {
    display: flex;
    flex-direction: column;

    gap: 40px;
}
.category__list {
	display: flex;
	justify-content: center;

	gap: 10px;
}
.category__item {
	padding: 5px 10px;
	border-radius: 100vh;
	background-color: var(--lightgray, #F7F7F7);
}

/* .gallery .gallery-itemは自動生成のclass */

.gallery {
    overflow: hidden;
    margin: 0 auto;
}

.gallery .gallery-item {
    padding: 5px;
    max-width: 325px;
}

.gallery .gallery-item img {
    max-width: 100%;
    max-height: 429px;
    height: auto;
}

/** -----------------------------------------------
  Contact page
------------------------------------------------**/
.contact-wrap {
    display: flex;
    flex-direction: column;

    gap: 40px;
}

.contact-table {
	margin-top: 40px;
    width: 100%;
}
.is-required {
	color: #cc2919;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    padding: 1.25rem;
    max-width: 100%;
    width: 100%;
    background: var(--lightgray, #F7F7F7);
    font-size: .875rem;
}
/* input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
} */

/* 選択式フォームの矢印 */
.select-wrap {
	position: relative;
	max-width: 300px;
}
.select-wrap::before {
	position: absolute;
    top: 24px;
    right: 10%;
	z-index: 1;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    content: '';
    transform: rotate(45deg);
}

input[type="text"]:focus,
input[type="text"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
textarea:focus,
textarea:active,
select:focus,
select:active {
	outline: none;
	border-color: #cee0ec;
	box-shadow: inset 0 0 0px 3px #cee0ec;
}

.contact-item,
.contact-body {
	display: block;
}

.contact-item {
	margin-top: 30px;
	font-weight: normal;
}
.contact-body {
	margin-top: 10px;
}

.contact-submit {
	margin-top: 40px;
	text-align: center;
}

/** -----------------------------------------------
  News post page
------------------------------------------------**/
.post.category-news {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin: 0 0 0 auto;
	padding: 80px 100px;
	max-width: calc(100% - 5vw);
	background-color: #f7f7f7;

	gap: 60px;
}

.post.category-news>* {
	max-width: 760px;
	width: 100%;
}

.post__header {
	padding: 20px 40px;
	background-color: #ffffff;
}

.post__date {
	color: var(--gray, #808080);
	font-size: .8125rem;
}

.post__title {
	font-size: 1.25rem;
}

.post__content {
	font-size: .875rem;
}

.post__nav {
	display: flex;

	gap: 10px;
}

.nav__link {
	flex-grow: 1;
}

.nav__link.-wide {
	flex-grow: 3;
}
.nav__link a{
	display: block;
	padding: 8px;
	border: solid 1px #333;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.post.category-news {
		padding: 80px 20px;
		max-width: calc(100% - 15px);
	}

	.post__header {
		padding: 20px;
	}

	.post__title {
		font-size: 1rem;
	}
}
