@charset "UTF-8";
/********************************************************************************

common.css

********************************************************************************/
/*============================================================
 css変数
*============================================================*/
:root {
    --common-vh: 100vh;                         /* jsで変動 */
    --common-vw: 100vw;                         /* jsで変動 */

	--common-inner-max-width: 1128px;           /* 通常サイト幅 */
	--common-inner-max-width-wide: 1328px;      /* ワイドサイト幅 */
	--common-inner-padding: 24px;               /* 通常サイト幅内余白 */
	--common-inner-padding-wide: 24px;          /* ワイドサイト幅内余白 */

    --common-color-text: #66554F;           /* 基本テキスト色 */
    --common-color-main: #CA5D00;           /* メイン色 */
    --common-color-sub: #B79069;            /* サブ色 */
    --common-color-background1: #EFEAE0;       /* 背景色1 */
    --common-color-background2: #F8F7F3;       /* 背景色2 */
    --common-color-background3: #D7D2C8;       /* 背景色3 */
    --common-color-accent: #FAA43F;            /* アクセント色 */
    --common-color-attention: #D93838;      /* 注意色 */
    --common-color-attention-bg: #FFF5F5;   /* 注意色(背景用) */
    --common-color-notice: #B3B3B3;      /* 注釈色 */

    --common-font-family: "Zen Kaku Gothic New", sans-serif;
    --common-font-family-mincho: "Zen Old Mincho", serif;
    --common-font-family-serif: "Noto Serif JP", serif;
    --common-font-family-sans: "Noto Sans JP", sans-serif;

    --common-header-height: 0;                  /* jsで変動 */
    --common-footer-height: 0;                  /* jsで変動 */
}

body {
    --inner-max-width: var(--common-inner-max-width);
    --inner-padding: var(--common-inner-padding);
}

/*============================================================
 system
*============================================================*/
/* pc-sp display switch
---------------------------------------- */
.forPC {
    display: inherit;
}
.forSP {
    display: none;
}

/*============================================================
 format
*============================================================*/
/* ベース
---------------------------------------- */
html {
    display: block;
    background-color: #fff;
}
body {
    width: 100%;
    font-family: var(--common-font-family);
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 180%;
    color: var(--common-color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0 0 0 0;
}
*[data-font="en"] {
    font-family: var(--common-font-family-en); 
}

body.page-lower {
    /* padding-top: var(--common-header-height); */
}

/* レイアウト
---------------------------------------- */
#main-contents {
    width: 100%;
    padding-bottom: 112px;
}

/* コンテンツ内
---------------------------------------- */
.section {
    margin-bottom: 64px;
}
.section:last-child {
    margin-bottom: 0;
}

.inner {
    width: 100%;
    max-width: var(--inner-max-width);
    padding: 0 var(--inner-padding);
    margin: 0 auto;
}
.single #main-contents .inner {
	max-width: 960px;
}
main .inner > *:not(h1, h2, h3, h4) {
    margin-bottom: 40px;
}
main .inner > *:last-child {
    margin-bottom: 0;
}

main .block, main .inner .block {
    margin-bottom: 48px;
}
main .block:last-child {
    margin-bottom: 0;
}

main .block > *:not(h1, h2, h3, h4) {
    margin-bottom: 32px;
}
main .block > *:last-child {
    margin-bottom: 0;
}

.page-group {
    font-weight: bold;
}
h1.page-title {
    font-weight: 500;
    font-size: 56px;
    line-height: 140%;
	font-family: var(--common-font-family-mincho);
}
h2.sec-title {
    font-weight: 400;
    font-size: 36px;
    line-height: 160%;
	font-family: var(--common-font-family-mincho);
    margin-bottom: 32px;
}
h3.block-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
	font-family: var(--common-font-family-mincho);
    margin-bottom: 16px;
}

p {}
img {
    max-width: 100%;
    height: auto;
}
svg {
    max-width: 100%;
    height: auto;    
}
span {
    font-weight: inherit;
}
a[href^="tel:"] {
    pointer-events: none;
}
strong {}
.attention {
    font-size: 12px;
    line-height: 160%;
    color: var(--common-color-attention);
}
.notice {
	margin-top: 8px;
    font-size: 12px;
    line-height: 160%;
}
.list-date {
    font-size: 12px;
    line-height: 160%;
}


/*============================================================
 パンくずリスト
*============================================================*/
/* TOPページでは非表示
---------------------------------------- */
#page-top #breadcrumb {
    display: none;
}

/* 下層ページでは表示
---------------------------------------- */
#breadcrumb {
    margin: 16px 0 8px 0;
	position: relative;
}
#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
    font-size: 16px;
    line-height: 140%;
	font-family: var(--common-font-family-sans);
	font-weight: 500;
}
#breadcrumb ul li {
}
#breadcrumb li a {
    text-decoration-line: underline;
}
/* セパレーター(テキストの場合) */
#breadcrumb li:not(:last-child)::after {
    content: "/";
    display: inline-block;
    margin-left: 8px;
}
/* セパレーター(画像の場合) */
/* #breadcrumb li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 100%;
    background-image: url(../images/common/icon-bread-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px auto;
    margin-left: 8px;
    vertical-align: text-bottom;
} */



/*============================================================
 共通ブロック
*============================================================*/
/* 要素幅超スクロール
---------------------------------------- */
.block-wscroll {
    width: calc(100vw - ((100vw - 100%) / 2));
    overflow-x: auto;
}
.block-wscroll .block-wscroll-inner {
    width: max-content;
    padding: 0 var(--inner-padding) 16px 0;
}
.block-wscroll .block-wscroll-inner > * {
    width: auto;
    white-space: nowrap;
}

/* カード
---------------------------------------- */
.block-card {
    --gap: 48px;
    --col: 3;
    gap: var(--gap);
}
.block-card .item {
    display: block;
    width: calc((100% - var(--gap) * (var(--col) - 1)) / var(--col));
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
	position: relative;
	transition: all .3s;
}
.block-card .item:hover {
	opacity: 0.7;
}
.block-card .item:before {
	position: absolute;
	content: "";
	background: url(../images/common/icon-arrow-white.svg) no-repeat center center / contain;
	width: 24px;
	height: 24px;
	bottom: 16px;
	right: 8px;
	z-index: 2;
}
.block-card .item .image {
    width: 100%;
    /*aspect-ratio: 16 / 12;*/
	aspect-ratio: 4 / 2.8;
    overflow: hidden;
	position: relative;
	border-radius: 16px;
}
.block-card .item .image:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	border-radius: 16px;
}
.block-card .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.block-card .item .info {
    padding: 16px 32px 16px 16px;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	color: #fff;
	z-index: 1;
}
.block-card .item .info h2 {
	font-size: 20px;
	font-family: var(--common-font-family);
	line-height: 1.6;
}
.block-card .item .info .tags {
	margin-top: 8px;
	gap: 16px;
}
.block-card .item .info .tags .tag {
	border: 1px solid #fff;
	line-height: 1.2;
	padding: 5px;
	height: 24px;
	width: 62px;
	text-align: center;
	font-size: 10px;
	border-radius: 2px;
}
.block-card .item .info .tags .tag img {
	margin-right: 3px;
}
.block-card .item .info .tags .posted-date {
	font-size: 10px;
	line-height: 1.6;
	font-family: var(--common-font-family-sans);
}

/* お知らせ
---------------------------------------- */
.block-news .item {
    display: block;
	width: 100%;
	padding-bottom: 8px;
	border-bottom: 1px solid #DCDCDC;
	font-family: var(--common-font-family-sans);
	margin-bottom: 24px;
	transition: all .3s;
}
.block-news .item:hover {
	opacity: 0.6;
}
.block-news .item:last-child {
	margin-bottom: 0;
}
.block-news .item .posted-date {
	font-size: 12px;
	line-height: 2;
	margin-bottom: 2px;
}
.block-news .item .title {
	position: relative;
	font-size: 16px;
	font-family: var(--common-font-family-sans);
	line-height: 2;
	font-weight: 400;
	margin-bottom: 0;
	-webkit-line-clamp: 1;
	padding-right: 36px;
}
.block-news .item .title:before {
	content: "";
	position: absolute;
	background: url(../images/common/icon-arrow.svg) no-repeat center center / contain;
	width: 24px;
	height: 24px;
	top: 50%;
	transform: translatey(-50%);
	right: 0;
}

/* スタッフ
---------------------------------------- */
.block-staff {
	--gap: 56px;
    --col: 4;
    gap: var(--gap);
}
.block-staff .item {
	display: block;
    width: calc((100% - var(--gap) * (var(--col) - 1)) / var(--col));
    overflow: hidden;
	position: relative;
	transition: all .3s;
}
.block-staff .item:hover {
	opacity: 0.7;
}
.block-staff .item .image {
	margin-bottom: 24px;
	border-radius: 50%;
	overflow: hidden;
}
.block-staff .item .info .title {
	font-size: 24px;
	text-align: center;
	margin-bottom: 0;
}

/* 説明会
---------------------------------------- */
.block-seminar {
}
.block-seminar .item {
    width: 100%;
	position: relative;
	gap: 80px;
	transition: all .3s;
	margin-bottom: 80px;
}
.block-seminar .item:hover {
	opacity: 0.7;
}
.block-seminar .item:last-child {
	margin-bottom: 0;
}
.block-seminar .item .image {
	width: 50%;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
}
.block-seminar .item .image img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}
.block-seminar .item .info {
	width: 42%;
}
.block-seminar .item .info .title {
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 16px;
}
.block-seminar .item .info .tags {
	gap: 16px;
	align-items: center;
	margin-bottom: 16px;
}
.block-seminar .item .info .tags .tag {
	border: 1px solid var(--common-color-main);
	color: var(--common-color-main);
	line-height: 1.2;
	padding: 5px;
	height: 24px;
	width: 62px;
	text-align: center;
	font-size: 10px;
	border-radius: 2px;
}
.block-seminar .item .info .tags .tag img {
	margin-right: 3px;
}
.block-seminar .item .info .tags .date {
	line-height: 2.2;
	color: #939393;
	font-size: 10px;
	line-height: 1.6;
	font-family: var(--common-font-family-sans);
}
.block-seminar .item .info .text {
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

/*============================================================
 モーダルカスタム(Modaal.js)
 ※z-index指定　ヘッダー < .modaal-overlay < .modaal-wrapper
*============================================================*/
.modaal-wrapper {
    z-index: 999999;
}
.modaal-overlay {
    z-index: 99999;
}


/*============================================================
 ページング
*============================================================*/
/* bones_page_navi使用時
---------------------------------------- */
.pagination {
    margin-top: 80px;
}
.pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    margin: 0 auto;
    gap: 8px;
}
.pagination .page-numbers li > * {
    display: block;
    width: 32px;
    height: 32px;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 32px;
    text-align: center;
}
.pagination .page-numbers li > a {
    background-color: #F5F5F5;
    border-radius: 2px;
}
.pagination .page-numbers li > .current {
    background-color: transparent;
    font-weight: bold;
}
.pagination .page-numbers li > a.prev,
.pagination .page-numbers li > a.next {
    padding: 8px;
    background-color: #000;
    color: #fff;
}
.pagination .page-numbers li > *.page-numbers.dots {
    background-color: transparent;
}

/*============================================================
 記事本文ブロック
*============================================================*/
/* 見出し
---------------------------------------- */
.block-post-content h2 {
}
.block-post-content h3 {    
}
.block-post-content h2.wp-block-heading {
	margin-top: 72px;
}

/* 箇条書きリスト
---------------------------------------- */
.block-post-content ul {
    list-style-type: disc;
	padding-left: 18px;
	margin-bottom: 16px;
}
.block-post-content ul > li {
	position: relative;
    list-style-type: disc;
    margin-bottom: 8px;
}
.block-post-content ul > li:last-child {
	margin-bottom: 0;
}
.block-post-content ul > li::marker {
	color: var(--common-color-main);
}
.block-post-content ul > li ul {
	margin-top: 16px;
}
.block-post-content ul > li ol {
	margin-top: 16px;
}

/* 連番リスト
---------------------------------------- */
.block-post-content ol {
	padding-left: 18px;
    list-style: decimal;
	margin-bottom: 16px;
}
.block-post-content ol > li {
    position: relative;
    list-style-type: decimal;
    margin-bottom: 8px;
}
.block-post-content ol > li:last-child {
	margin-bottom: 0;
}
.block-post-content ol > li::marker {
	color: var(--common-color-main);
}
.block-post-content ol > li ul {
	margin-top: 16px;
}
.block-post-content ol > li ol {
	margin-top: 16px;
}


/* 段落
---------------------------------------- */
.block-post-content p {
    margin-bottom: 16px;
	line-height: 2;
}
.block-post-content a {
    text-decoration: underline;
}
.block-post-content strong {
	color: var(--common-color-main);
}
/* 画像
---------------------------------------- */
.block-post-content figure {    
    margin-bottom: 16px;
}
.block-post-content figure figcaption { 
    font-size: 12px;
    line-height: 140%;
    color: var(--common-color-notice);
    margin: 8px 0 0 0;
}

/* テーブル
---------------------------------------- */
/*.wp-block-table td, .wp-block-table th {
	border: none;
	padding-top: 24px;
	padding-bottom: 16px;
}
.wp-block-table tr {
	border-bottom: 1px solid #D8C6B5;
}
.wp-block-table td strong, .wp-block-table th strong {
	color: #908F8E;
	font-weight: bold;
}*/
.wp-block-table table {
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}
.wp-block-table table tr {
	border-bottom: 1px solid #D3C8BD;
}
.wp-block-table table th,
.wp-block-table table td {
	border: none;
	line-height: 1.4;
	color: #AA8F85;
	padding: 11px;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	font-family: var(--common-font-family-mincho);
}
.wp-block-table table th strong,
.wp-block-table table td strong {
	color: #AA8F85;
	font-weight: bold;
}
.wp-block-table table td:first-child {
	/*width: 188px;
	font-weight:500;*/
	font-size: 16px;
	/*background: var(--common-color-background2);*/
	line-height: 1.4;
	padding: 17px 24px;
	/*text-align: right;*/
}
.wp-block-table table thead {
	border: none;
}
.wp-block-table table thead tr {
	border-bottom: 2px solid #D3C8BD;
}
.wp-block-table table thead tr th {
	background: var(--common-color-background2);
	padding: 8px 0;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
}

/* 強調ブロック
---------------------------------------- */
.wp-block-preformatted {
	background: var(--common-color-background2);
	font-family: var(--common-font-family);
	padding: 16px;
}
.wp-block-preformatted strong {
	color: var(--common-color-main);
	font-weight: 500;
}

/* グループ
---------------------------------------- */
.wp-block-group.is-vertical.is-layout-flex {
	gap: 16px;
}
.wp-block-group.is-vertical.is-layout-flex > * {
	margin-bottom: 0!important;
}
.wp-block-group.is-vertical.is-layout-flex > h2 {
	margin-top: 0;
}

/* 余白調整
---------------------------------------- */
.block-post-content .inner > *:first-child {
    margin-top: 0;
}




/*============================================================
 詳細ページ共通
*============================================================*/
.single #sec-eyecatch {
	margin-bottom: 80px!important;
}
.single #sec-eyecatch .eyecatch {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 16px;
}
.single #sec-eyecatch .eyecatch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.single #sec-conductor {
	margin-top: 64px;
}
.single #sec-conductor .outer-link {
	gap: 64px;
	margin-bottom: 64px;
}
.single #sec-conductor .outer-link .copy {
	gap: 32px;
}
.single #sec-conductor .outer-link .copy .url-copy-clipbord {
	cursor: pointer;
}
.single #sec-conductor .outer-link .copy p {
	font-weight: 500;
}
.single #sec-conductor .outer-link .sns {
	gap: 24px;
	position: relative;
}
.single #sec-conductor .outer-link .sns:before {
	content: "";
	position: absolute;
	width: 1px;
	height: 24px;
	background: #D2D2D2;
	top: 50%;
	transform: translatey(-50%);
	left: -32px;
}

/*============================================================
 クリップボードコピー用メッセージ
*============================================================*/
#clipbord-msg {
    width: 100%;
    position: fixed;
    bottom: -190px;
    left: 0;
    z-index: 999999;
	-webkit-transition: bottom 0.5s;
    transition: bottom 0.5s;
}
#clipbord-msg .msg {
    width: fit-content;
    padding: 12px 32px;
	background: #333;
    border-radius: 100px;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 auto;
}
#clipbord-msg.copySuccess,
#clipbord-msg.copyError {
    bottom: 56px;
}

/*============================================================
 CTA
*============================================================*/
/* お問い合わせ
---------------------------------------- */
#cta-contact {
    padding: 48px 0;
}
#cta-contact .sec-title {
    text-align: center;
}
#cta-contact .parts-btn {
    margin: 0 auto;
}

/*============================================================
 説明会予約追従ボタン
*============================================================*/
#reservation-btn {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 999;
	display: none;
}
#reservation-btn a {
	display: block;
	width: 104px;
	transition: all .3s;
}
#reservation-btn a:hover {
	opacity: 0.7;
}

/*============================================================
 サイト内検索フォーム
*============================================================*/
#searchform > div > * {
    vertical-align: middle;
}

/*============================================================
 サイト内検索結果
*============================================================*/
/* 結果リスト
---------------------------------------- */
#page-search #sec-search-results {
    padding: 80px 0;
}
/* 検索結果数 */
#page-search #sec-search-results .total-cnt {
    margin-bottom: 40px;
}
/* リスト */
#page-search #sec-search-results .block-search-results {
    flex-direction: column;
    gap: 32px;
}
#page-search #sec-search-results .block-search-results .item {
}
#page-search #sec-search-results .block-search-results .item .title {
    font-weight: bold;
    font-size: 20px;
    line-height: 160%;
    margin-bottom: 8px;
}
#page-search #sec-search-results .block-search-results .item .lead {
}

/*============================================================
 システムエラー　404
*============================================================*/
#page-system-error #sec-system-error {
    height: max(600px, calc(var(--common-vh) - var(--common-footer-height) - 64px));
    padding: 200px 0 0 0;
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
}

#page-system-error #sec-system-error .system-error-num {
    font-weight: 900;
    font-size: 120px;
    line-height: 100%;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

#page-system-error #sec-system-error .system-error-sts {
    font-weight: bold;
    font-size: 32px;
    line-height: 180%;
    margin-bottom: 24px;
}

#page-system-error #sec-system-error .system-error-lead {
    margin-bottom: 56px;
}
#page-system-error #sec-system-error .parts-btn {
    margin: 0 auto;
}


/*============================================================
 footer
*============================================================*/
#site-footer {
    background-color: #EFEAE0;
    padding: 48px 0 80px;
	position: relative;
}
#site-footer .inner {
	max-width: var(--common-inner-max-width-wide);
}
#site-footer .wrap {
	justify-content: space-between;
	margin-bottom: 64px;
}
#site-footer .wrap .block .info {
	justify-content: space-between;
	margin-bottom: 0;
	gap: 32px;
}
#site-footer .wrap .block .info .access {
	width: 356px;
	line-height: 1.2;
	position: relative;
	font-family: var(--common-font-family-mincho);
	font-size: 14px;
}
#site-footer .wrap .block .info .access .tel {
	display: block;
	line-height: 1.5;
	margin-top: 8px;
}
#site-footer .wrap .block .info .access .map {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 12px;
	display: block;
	padding-left: 20px;
	text-decoration: underline;
}
#site-footer .wrap .block .info .access .map:before {
	content: "";
	position: absolute;
	background: url(../images/common/icon-pin.svg) no-repeat center center / contain;
	left: 0;
	top: -2px;
	width: 18px;
	height: 20px;
}
#site-footer .wrap .block .info .links {
	gap: 40px;
}
#site-footer .wrap .block .info .links .sns {
	gap: 8px;
}
#site-footer .wrap .block .info .parts-btn {
	margin: 0;
	width: 180px;
}
#site-footer .wrap .block .info .parts-btn > * {
	font-size: 16px;
	font-family: var(--common-font-family-mincho);
}

/* メニューリスト
---------------------------------------- */
#site-footer .menu-list.forPC {
	gap: 64px;
	display: flex;
	margin-bottom: 80px;
}
#site-footer .menu-list li {
	color: #3F3535;
	font-family: var(--common-font-family-serif);
	font-size: 14px;
}
#site-footer .menu-list li a {
	display: block;
	font-size: 16px;
	padding: 11px 0;
	position: relative;
	transition: all .3s;
}
#site-footer .menu-list li a:hover {
	opacity: 0.6;
}

#site-footer .menu-list .sub-menu-list {
	display: inline-block;
}
#site-footer .menu-list .sub-menu-list li a {
	padding: 2px 0 2px 20px;
	font-size: 14px;
}
#site-footer .menu-list .sub-menu-list li a:before {
	content: "";
	position: absolute;
	background: url(../images/common/icon-nav-arrow.svg) no-repeat center center / contain;
	width: 4px;
	height: 8px;
	left: 4px;
	top: 50%;
	transform: translatey(-50%);
}


/* 外部リンク
---------------------------------------- */
#site-footer .external {
	justify-content: center;
	margin-bottom: 16px;
}
#site-footer .external a {
	display: inline-block;
	padding: 0 24px;
	text-align: center;
	font-family: var(--common-font-family-sans);
	font-size: 14px;
	font-weight: 500;
	line-height: 220%;
	text-decoration-line: underline;
}

/* Copyright
---------------------------------------- */
#site-footer #copyright {
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
}


