@charset "UTF-8";

/* Post
------------------------- */
.post-title {
	padding: 20px 5px 10px;
	margin: 0 0 20px;
	border-bottom: solid 1px var(--navy);
	font-size: 24px;
	color: var(--navy);
}

.post-title a {
	text-decoration: none;
	font-weight: 500;
	color: var(--navy);
}

.excerpt {
	margin: 0 0 30px;
	font-weight: 700;
	font-size: 17px;
	color: var(--navy);
}

.wp-block-image {
	display: flex;
	justify-content: space-around;
}

.core-contents .wp-block-image img {
	max-width: 100%;
	height: auto;
}

.gotoContactForm {
	margin: 0 0 30px;
}

.gotoContactForm__button {
	transition: 0.4s;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 460px;
	height: 64px;
	margin: auto;
	background-color: var(--navy);
	text-decoration: none;
	color: #fff;
}

.gotoContactForm__button:hover {
	background-color: var(--blue);
}

.gotoContactForm__name {
	font-weight: 600;
	font-size: 18px;
}

.gotoContactForm__name:before {
	display: inline-block;
	content: "";
	width: 30px;
	height: 21px;
	margin: 0 10px 0 0;
	background-image: url("../img/icon/icon_mail.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	vertical-align: -3px;
}

.before-after {
	justify-content: center;
}

.before-after .before-after-icon {
	flex: 0 0 75px !important;
}

.before-after .before,
.before-after .after {
	flex-shrink: 1;
	flex: 0 0 auto !important;
}

/* Category
------------------------- */
.core-contents__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.core-contents__inner:after {
	content: "";
	display: block;
	width: calc(100% / 3 - 60px);
}

.blogList {
	flex: 0 0 calc(100% / 3 - 60px);
	margin: 0 0 50px;
}

.blogList__item {
	overflow: hidden;
	position: relative;
	aspect-ratio: 5 / 4;
	width: 100%;
	height: auto;
}

.blogList__contents {
	z-index: 5;
	aspect-ratio: 5 / 4;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}

.blogList__title {
	z-index: 10;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 37%;
	margin: 0;
	background-color: rgba(16, 15, 76, 0.4);
}

.blogList__title a {
	display: block;
	text-decoration: none;
	color: #fff;
}

.blogList__title-name {
	display: block;
	padding: 10px;
	letter-spacing: 0;
	font-weight: 600;
	font-size: 18px;
}

.blogList__eyecatch {
	transition: 0.4s;
	overflow: hidden;
	object-fit: cover;
	object-position: top;
	aspect-ratio: 5 / 4;
	width: 100%;
	height: auto;
}

.blogList__eyecatch.hovered {
	opacity: 1.0;
	filter: brightness(1.2);
	transform: scale(1.1);
}

.viewDetails {
	width: 175px;
	height: 35px;
	margin: 0 auto 0;
}

.viewDetails .viewDetails__button {
	transition: 0.4s;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 175px;
	height: 35px;
	padding: 0 0 0 30px;
	background-color: var(--navy);
	text-decoration: none;
	color: #fff;
}

.viewDetails .viewDetails__button:hover {
	background-color: var(--blue);
}

.viewDetails .viewDetails__button span {
	position: relative;
	display: block;
	font-size: 13px;
}

.viewDetails span:after {
	position: relative;
	display: inline-block;
	content: "";
	top: -2px;
	width: 20px;
	height: 6px;
	margin: 0 0 0 9px;
	background-image: url("../img/icon/arrow_white.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.viewDetails.white .viewDetails__button {
	width: 155px;
	height: 25px;
	padding: 0 0 0 30px;
	background-color: #fff;
	text-decoration: none;
	color: var(--navy);
}

.viewDetails.white .viewDetails__button:hover {
	background-color: #fff;
}

.viewDetails.white .viewDetails__button span {
	font-size: 12px;
}

.viewDetails.white span:after {
	background-image: url("../img/icon/arrow_navy.svg");
}

.post-excerpt {
	display: none;
}

.cat-annotation {
	padding: 0 40px;
}

.single-annotation {
	text-align: center;
	margin-top: 0.5em;
}

/* staff */
.staff .blogList__title-name {
	letter-spacing: 3px;
	margin: 0 0 5px;
	text-align: center;
	font-weight: 600;
	font-size: 24px;
}

/* single
------------------------- */
/* related posts */
#relatedPost {
	border: solid 12px var(--light-gray);
	margin: 0 0 50px;
}

#relatedPost .relatedPost__heading {
	margin: 0 0 30px;
	padding: 5px 20px 14px 10px;
	background-color: var(--light-gray);
	font-weight: 600;
	font-size: 20px;
	color: var(--navy);
}

#relatedPost .relatedPost__heading:before {
	display: inline-block;
	content: "";
	width: 17px;
	height: 17px;
	margin: 0 7px 0 0;
	background-color: var(--navy);
	vertical-align: -2px;
}

.relatedPosts {
	list-style-type: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 30px;
}

.relatedPosts__item {
	flex: 0 0 calc(25% - 30px);
	margin: 0 0 30px;
}

.relatedPosts a {
	text-decoration: none;
	color: var(--navy);
}

.relatedPosts .blogList__eyecatch {
	display: block;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	width: 100%;
	height: auto;
}

.relatedPosts .post-title__text {
	letter-spacing: 0;
	font-size: 16px;
}

/* navigation */
.navigation {
	display: flex;
	justify-content: space-between;
	margin: 50px 0 0;
	border-top: dotted 1px #999;
	border-bottom: dotted 1px #999;
	font-size: 15px;
}

.navigation__item {
	display: none;
}

.navigation__item:has(a) {
	display: block;
	flex: 1 1 50%;
}

.navigation a {
	display: flex;
	width: 150px;
	margin: auto;
	padding: 15px 10px 15px 10px;
	text-decoration: none;
	text-align: center;
	color: #000;
}

.previous a:before {
	display: block;
	content: "";
	flex: 0 0 31px;
	background-image: url("../img/icon/arrow_navy_left.svg");
	background-repeat: no-repeat;
	background-position: left 4px;
	background-size: 24px 13px;
}

.next a:after {
	display: block;
	content: "";
	flex: 0 0 30px;
	background-image: url("../img/icon/arrow_navy.svg");
	background-repeat: no-repeat;
	background-position: right 4px;
	background-size: 24px 13px;
}

/* Works
------------------------- */
#chest main.category-works {
	padding: 30px 0 100px;
}

/* Topics
------------------------- */
.newsList {
	display: flex;
	padding: 20px 10px;
	border-bottom: dotted 1px #999;
}

.newsList__title a {
	text-decoration: none;
	color: #000;
}

.newsList__date {
	flex: 0 0 195px;
}

.newsList__date:before {
	display: inline-block;
	content: "";
	width: 15px;
	height: 15px;
	margin: 0 3px 0 0;
	background-image: url("../img/icon/icon-calendar.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	vertical-align: -1px;
}

/* Faq
--------------------------------- */
.faqList {
	margin: 0 0 50px;
}

.faqList__title {
	list-style-type: none;
}

.faqList__title a {
	display: block;
	padding: 20px 10px;
	border-bottom: dotted 1px #999;
	text-decoration: none;
	color: #000;
}

.faqList__title a:before {
	display: inline-block;
	content: "";
	width: 33px;
	height: 33px;
	margin: 0 10px 0 0;
	background-image: url("../img/icon/icon-q.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	vertical-align: -10px;
}

/* Words
--------------------------------- */
.category-words .faqList__title a:before {
	display: none;
}

#wordsIndexes {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#wordsIndexes:before {
	order: 1;
	content: "";
	display: block;
	width: 320px;
}

#wordsIndexes:after {
	content: "";
	display: block;
	width: 320px;
}

.wordsIndex {
	flex: 0 0 320px;
	margin: 0 0 20px;
}

.wordsIndex__title {
	transition: 0.4s;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	padding: 0 0 0 26px;
	/*border: solid 1px var(--navy);*/
	background-color: var(--navy);
	text-decoration: none;
	font-weight: 600;
	color: var(--navy);
	color: #fff;
}

.wordsIndex__title:hover {
	background-color: var(--blue);
}

.wordsIndex__name {
	font-size: 21px;
}

.wordsIndex__name:after {
	position: relative;
	display: inline-block;
	content: "";
	top: -5px;
	width: 20px;
	height: 6px;
	margin: 0 0 0 15px;
	background-image: url("../img/icon/arrow_white.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.word .wordsIndex__title {
	height: 80px;
	padding: 10px 15px;
}

.word .wordsIndex__name {
	text-align: center;
	font-size: 19px;
}

.word .wordsIndex__name:after {
	display: none;
}

.kana {
	letter-spacing: 0;
	font-size: 12px;
}

/* End of CSS */