@charset "UTF-8";
html {
	font-size: 62.5%;
	/* 1rem = 10px */
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
:root {
	/* colors */
	--c-text: #000000;
	--c-bg: #fdfdfd;
	--c-gy1: #f4f7f9;
	--c-gy2: #4B4C50;
	--c-border: #A0A4BA;

	/* font */
	--ff-base: "Noto Serif JP", serif;
	--ff-title: "Adamina", "BIZ UDMincho", "Noto Serif JP", serif;
	--ff-en: "Adamina", serif;
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-bold: 700;

	/* font-size scale */
	--fs-xs: 1.2rem;
	--fs-s: 1.4rem;
	--fs-m: 1.6rem;
	--fs-l: 1.8rem;
	--fs-xl: 2.2rem;
	--fs-xxl: 2.4rem;
	--fs-xxxl: 4.8rem;

	/* line-height */
	--lh-base: 1.75;
	--lh-title: 1.416;

	/* spacing */
	--gutter: 100px;
	--container: 1240px;

	/* section spacing */
	--section-gap: 120px;
	--section-pa: 100px;
	--section-pad-y: 0px;

	/* radius / shadow */
	--radius-s: 2px;
	--radius-l: 3em;
	/* margin */
	--margin-s: 40px;
	--margin-m: 80px;

	/*	btn*/
	--btn-h: 65px;
}

@media (max-width: 1280px) {
	:root {
		--gutter: 40px;
	}
}

@media (max-width: 900px) {
	:root {
		--gutter: 16px;
		--section-gap: 72px;
		--container: 100%;
		--fs-xs: 1.2rem;
		--fs-s: 1.2rem;
		--fs-m: 1.4rem;
		--fs-l: 1.6rem;
		--fs-xl: 1.8rem;
		--fs-xxl: 2rem;
		--fs-xxxl: 3.6rem;
		--section-gap: 60px;
		--section-pa: 60px;
		--margin-m: 40px;
	}

}
.u-mb-1{
	margin-bottom: 1em;
}
.u-mb-2{
	margin-bottom: 2em!important;
}
.u-mb-3{
	margin-bottom: 3em!important;
}
.u-mb-4{
	margin-bottom: 4em!important;
}
.u-mb-5{
	margin-bottom: 5em!important;
}
.post-content{
	width: min(900px,100%);
	margin: 0 auto 0 0 ;
}
.p-entry__title{
	margin-bottom: 2em!important;
}
/*
:where(.wp-block-columns){
	margin-bottom: 80px
}
*/
/* 共通の本文用スタイル */
.p-entry__content {
    margin: 0 auto 40px;
    line-height: 1.8;
	color: var(--c-gy2);
	width: 100%;
}

.p-entry__content a,
:where(.editor-styles-wrapper) a{
	color: #000;
	text-decoration: underline;
}
.p-entry__content a:hover, :where(.editor-styles-wrapper) a:hover{
	color: #fff;
	background: var(--c-gy2);
	text-decoration: none;
}
.padding-left{
	padding-left: 2em
}
/* 見出し*/
.p-entry__content h2,
.p-entry__content h3,
.p-entry__content h4,
.p-entry__content h5 {
    font-family: YakuHanMP, var(--ff-en), var(--ff-title);
    color: #000;
	line-height: 1.4;
}
.p-entry__content h3,
.p-entry__content h4{
    margin-bottom: 1em;
    line-height: 1.4;
}
.p-entry_h2title,
.editor-styles-wrapper .p-entry_h2title{
    margin-bottom: 60px;
}
.p-entry_h2title h2,
.editor-styles-wrapper .p-entry_h2title h2{
	font-size: 3.8rem;
    color: var(--c-gy2);
    font-weight: 300;
	padding-top: .65em;
	position: relative;
}
.p-entry_h2title h2:before,
.editor-styles-wrapper .p-entry_h2title h2:before{
	content: '';
	width: 50px;
	height: 1px;
	background: var(--c-gy2);
	top: 0;
	left: 0;
	position: absolute;
}
.p-entry__content h2,
.editor-styles-wrapper h2 {
    font-size: 3rem;
    color: #333;
    font-weight: 300;
    padding-top: .65em;
    position: relative;
}
.p-entry__content h2:not(.wp-block-heading){
	margin-bottom: 40px
}
.p-entry__content h2:before,
.editor-styles-wrapper h2:before{
	content: '';
    width: 50px;
    height: 1px;
    background: var(--c-gy2);
    top: 0;
    left: 0;
    position: absolute;
}
.p-entry__content h3,
.editor-styles-wrapper h3 {
    font-size: 2.4rem;
	    padding-bottom: .5em;
    border-bottom: 1px solid var(--c-border);
	margin-bottom: 20px
}

.p-entry__content h4,
.editor-styles-wrapper h4 {
    font-size: 2rem;
position: relative;
	padding-left: .8em
}
.p-entry__content h4:before,
.editor-styles-wrapper h4:before {
    content: '';
	width: .3em;
	height: .3em;
	background: var(--c-gy2);
	position: absolute;
	left: 0;
	top: .5em
}
.p-entry__content h5,
.editor-styles-wrapper h5 {
    font-size: 2rem;
	border-bottom: 1px solid var(--c-border);
}
.p-entry__content .alignleft {
  display: block;
  margin: 0 auto 1em 0;
}

.p-entry__content .alignright {
   display: block;
  margin: 0 0 1em auto;
}

.p-entry__content .aligncenter {
   display: block;
  margin: 0 auto 1em;
}

.p-entry__content .alignnone {
  margin-bottom: 1em;
}
.p-entry__content img {
  max-width: 100%;
  height: auto;
}

.p-entry__content::after {
  content: "";
  display: block;
  clear: both;
}
.p-entry__content ul,
.p-entry__content ol,
.editor-styles-wrapper ul,
.editor-styles-wrapper ol{
	margin-bottom: 40px
}
.p-entry__content ul li,
.editor-styles-wrapper ul li{
	padding-left: 1em;
	position: relative;
	padding-bottom: .5em;
	margin-bottom: .5em
}
.p-entry__content ul li:before,
.editor-styles-wrapper ul li:before{
	content: '';
	width: .65em;
	height: 1px;
	background: var(--c-border);
	position: absolute;
	left: 0;
	top: 50%;
}
.p-entry__content ol li,
.editor-styles-wrapper ol li{
	list-style: auto;
    list-style-position: inside;
	padding-bottom: .5em;
	border-bottom: 1px dotted #c1c1c1;
	margin-bottom: .5em
}
.is-sticky{
		position: sticky;
	top: 0;
	align-self: start;
}
.link-bloc{
	padding: 20px;
	border: 1px solid var(--c-border);
}
/*追加cssレイアウト*/
.l-row-center{
	display: flex;
	align-items: center;
}
.l-row-top{
	align-items: flex-start;
}
/* 段落 */
.p-entry__content p,
.editor-styles-wrapper p {
    line-height: 1.8;
    margin-bottom: 24px;
}
.p-entry__content blockquote,
.editor-styles-wrapper blockquote{
    padding: 0 45px;
    position: relative;
    margin-bottom: 20px;
}
.p-entry__content blockquote:before,
.editor-styles-wrapper blockquote:before{
    content: '“';
    top: 0;
    left: 0;
}
.p-entry__content blockquote:after,
.editor-styles-wrapper blockquote:after{
    content: '”';
    bottom: -37px;
    right: 0;
}
.p-entry__content blockquote:before,.editor-styles-wrapper blockquote:before,
.p-entry__content blockquote:after,.editor-styles-wrapper blockquote:after{
    position: absolute;
    font-size: 70px;
    color: #d5dce1;
    line-height: 1;
}
.link-bloc p{
	margin-bottom: 0;
}
.p-entry__content img,
.p-entry__content .wp-block-image {
    max-width: 100%;
    height: auto;
    display: block;
	margin-bottom: 40px
}
.wp-block-table{
	table-layout: fixed;
	font-size: 1.4rem;
	margin-bottom: 24px!important
}
.wp-block-table td:first-child{
	width: 30%;
	padding-right: 1em;
	border-right: 1px solid #d8d9e2
}
.wp-block-table td:last-child{
	padding-left: 2em;
}
.wp-block-table td, .wp-block-table th{
	border: none;
	vertical-align: text-top;
}
.wp-block-list li{
	position: relative;
    padding-left: 1.5em;
}
.wp-block-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #ccc; 
    font-weight: 300;
}

/*個別*/
.philosophy__copy{
	width: min(480px,90%);
}
/*post*/
.p-entry__thumbnail{
	    width: min(556px, 100%);
    margin-bottom: 40px;
}
.post-content .news-card__venue{
	    margin: 0 auto 40px;
    padding: 40px 5%;
    border-top: 1px dashed var(--c-border);
    border-bottom: 1px dashed var(--c-border);
}
.post-content .p-post-meta{
	margin-bottom: 20px
}
.post-content .news-card__date{
	font-size: 1.2rem;
	padding-left: 1em
}
.p-entry__tags {
    display: flex;
    flex-wrap: wrap; /* タグが溢れたら折り返す */
    gap: 10px;       /* タグ同士の間隔 */
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.p-entry__tags li a {
    display: block;
    padding: 5px 12px;
    font-size: 14px;
    color: #888;          /* 少し薄めの文字色 */
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;   /* 角丸 */
    transition: all 0.3s ease;
}

.p-entry__tags li a:hover {
    color: var(--c-gy2);
    border-color: var(--c-gy2);
    background-color: #f9f9f9;
}
.nav-links {
    display: flex;
    justify-content: space-between;
}
.post-content .p-entry__header {
    padding-bottom: 0px;
 
    margin-bottom: 40px;
}
.faq-card:not(:last-child){
	border-bottom: 1px solid var(--c-border);
    margin-bottom: 24px;
}
.faq-q,.faq-a{
	position: relative;
	padding-left: 2.2em;
}
.faq-q:before,.faq-a:before{
	    position: absolute;
    left: 0;
    top: -12px;
    font-size: 160%;
}
.faq-q:before{
	content: 'Q.';
}
.faq-a:before{
	content: 'A.';
}
.wp-block-buttons .wp-block-button__link{
	text-decoration: none;
}
.wp-block-buttons .wp-block-button__link:hover{
	opacity: .8
}
@media (max-width: 900px) {
	.p-entry__header .c-ttl--lg{
		font-size: 2.4rem
	}
	.p-entry__tags{
		margin: 20px 0
	}
	.p-entry__tags li a{
		font-size: 1rem
	}
	.p-entry__content h2, .editor-styles-wrapper h2{
		font-size: 2rem
	}
	.p-entry__content h3, .editor-styles-wrapper h3{
		font-size: 1.7rem
	}
	.p-entry__content h4, .editor-styles-wrapper h4{
		font-size: 1.5rem
	}
	.p-entry__content p, .editor-styles-wrapper p{
		margin-bottom: 20px
	}
	:where(.wp-block-columns.is-layout-flex){
		gap:10px
	}
	.p-entry__content iframe{
		width: 100%
	}
	.p-entry_h2title, .editor-styles-wrapper .p-entry_h2title{
		margin-bottom: 30px
	}
	.wp-block-table td:first-child{
		width: 34%
	}
	.wp-block-table td:last-child {
    padding-left: 1em;
}
}