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

common.css

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

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

    --common-color-text: #395266;           /* 基本テキスト色 */
    --common-color-main: #395266;           /* メイン色 */
    --common-color-sub: #EFDED4;            /* サブ色 */
    --common-color-background0: #EFDED4;       /* 背景色1 */
    --common-color-background1: #000;       /* 背景色1 */
    --common-color-accent: #FAA43F;            /* アクセント色 */
    --common-color-attention: #DC4545;      /* 注意色 */

    --common-font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	--common-font-family-en: 'Noto Serif', 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;
	scroll-behavior: smooth;
}
body {
    width: 100%;
    font-family: var(--common-font-family);
    font-style: normal;
	position: relative;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
	background: var(--common-color-background0);
    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); 
}

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

/* コンテンツ内
---------------------------------------- */
.section {
    margin-bottom: 64px;
	padding: 56px 0 72px;
	border-top: 1px solid var(--common-color-text);
    margin-bottom: 0;
}

.inner {
    width: 100%;
    max-width: var(--inner-max-width);
    padding: 0 var(--inner-padding);
    margin: 0 auto;
}
main .sec-block, main .inner .sec-block {
    margin-bottom: 48px;
}
main .sec-block:last-child {
    margin-bottom: 0;
}
main .sec-block > *:not(h1, h2, h3, h4) {
    margin-bottom: 32px;
}
main .sec-block > *:last-child {
    margin-bottom: 0;
}

/* sec title
---------------------------------------- */
.sec-title {
	margin-bottom: 48px;
	letter-spacing: 0.1em;
}
.sec-title .en {
	font-size: 24px;
	margin-bottom: 16px;
}
.sec-title h2 {
	font-size: 32px;
	font-weight: bold;
}

.page-group {
    font-weight: bold;
}
h1.page-title {
    font-weight: bold;
    font-size: 32px;
    line-height: 160%;
}
h2.sec-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 160%;
    margin-bottom: 32px;
}
h3.block-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 160%;
    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 {
    font-size: 12px;
    line-height: 160%;
	margin-top: 10px;
}
.list-date {
    font-size: 12px;
    line-height: 160%;
}

/*============================================================
 ページヘッダー(下層)
*============================================================*/
#page-header {
	margin-top: 86px;
}
#page-header .page-title {
	font-size: 35px;
	font-weight: normal;
	letter-spacing: 0.1em;
	display: inline-block;
	position: relative;
}
#page-header .page-title:before {
	position: absolute;
	content: "";
	left: 50%;
	transform: translatex(-50%);
	bottom: -16px;
	width: 80px;
	height: 1px;
	background: #fff;
}
/* タイプ1
---------------------------------------- */
#page-header.type01 {
	color: #fff;
	min-height: 600px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
#page-header.type01 .inner {
	padding-top: 240px;
	max-width: 1256px;
}
/* タイプ2
---------------------------------------- */
#page-header.type02 {
	color: #fff;
	margin-bottom: 80px;
	min-height: 192px;
	background: var(--common-color-main);
}
#page-header.type02 .inner {
	max-width: 1256px;
	padding-top: 64px;
}
/* タイプ3
---------------------------------------- */
#page-header.type03 .page-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 16px;
}
#page-header.type03 .page-title:before {
	display: none;
}
#page-header.type03 .tag {
	font-size: 14px;
	color: #949FA1;
}

/*============================================================
 詳細ページ共通
*============================================================*/
.single .section {
	border-top: none;
}
.single #sec-post {
	font-size: 16px;
	border-top: none;
	padding-bottom: 0;
}
.single #sec-post .inner > * {
	margin-bottom: 32px;
}
.single #sec-post .inner > *:last-child {
	margin-bottom: 0;
}
.single #sec-post .inner h2,
.single #sec-post .inner h3,
.single #sec-post .inner h4 {
	font-weight: bold;
	letter-spacing: 0.1em;
}
.single #sec-post .inner h2 {
	margin-top: 56px;
	margin-bottom: 32px;
	font-size: 32px;	
}
.single #sec-post .inner h3 {
	margin-bottom: 32px;
	font-size: 24px;
}
.single #sec-post .inner h4 {
	margin-bottom: 32px;
	font-size: 20px;
}
.single #sec-post .inner ul,
.single #sec-post .inner ol {
	background: #fff;
	padding: 16px 16px 16px 40px;
	border-radius: 16px;
}
.single #sec-post .inner ul li,
.single #sec-post .inner ol li {
	margin: 8px 0;
	line-height: 2;
}
.single #sec-post .inner ul li {
	list-style: disc;
}
.single #sec-post .inner ol li {
	list-style: decimal;
}
.single #sec-post .inner .wp-block-image figcaption {
	font-size: 14px;
	color: #B4B4B4;
	margin-top: 12px;
}

.single #sec-outer-link {
	padding-bottom: 0;
}

.single #sec-conductor .parts-btn {
	margin: 0 auto;
}
.single #sec-conductor .block {
	gap: 64px;
	margin-bottom: 80px;
}
.single #sec-conductor .block-copy {
	gap: 32px;
}
.single #sec-conductor .block-copy p {
	font-weight: bold;
	letter-spacing: 0.04em;
}
.single #sec-conductor .block-copy .url-copy-clipbord {
	cursor: pointer;
}
.single #sec-conductor .block-sns {
	gap: 24px;
}

.single #sec-related-post h2 {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 40px;
	text-align: center;
}


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

/* 下層ページでは表示
---------------------------------------- */
#breadcrumb {
    margin: 86px 0 40px 0;
	padding-top: 56px;
}
#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
    font-size: 12px;
    line-height: 140%;
}
#breadcrumb li a {
    text-decoration-line: underline;
}
#breadcrumb li a::after {
    content: "/";
    display: inline-block;
    margin-left: 8px;
}



/*============================================================
 コンテンツ共通
*============================================================*/
/* 共通ブロック(要素幅超スクロール)
---------------------------------------- */
.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));
	transition: all .3s;
}
.block-card .item:hover {
	opacity: 0.7;
}
.block-card .item .image {
    width: 100%;
    aspect-ratio: 16 / 12;
	padding-top: 10px;
	padding-right: 14px;
    overflow: hidden;
	position: relative;
	z-index: 1;
	margin-bottom: 12px;
}
.block-card .item .image:before {
	position: absolute;
	content: "";
	width: calc(100% - 14px);
	height: calc(100% - 10px);
	border: 1px solid var(--common-color-main);
	border-radius: 15px;
	top: 0;
	right: 0;
	z-index: -1;
}
.block-card .item .image .wrap {
	border-radius: 15px;
	overflow: hidden;
}
.block-card .item .image img {
    object-fit: cover;
	width: 100%;
	height: 100%;
    transition: .3s ease-in-out;
}
.block-card .item .info .tag {
	font-size: 14px;
	color: #949FA1;
	margin-bottom: 12px;
}
.block-card .item .info .title {
	letter-spacing: 0.1em;
	font-weight: bold;
	margin-bottom: 12px;
}
.block-card .item .info .text {
	font-size: 16px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

/* お知らせ投稿
---------------------------------------- */
.block-news {
	flex-direction: column;
	gap: 16px;
}
.block-news .item {
	gap: 24px;
	letter-spacing: 0.1em;
	transition: all .3s;
}
.block-news .item:hover {
	opacity: 0.7;
}
.block-news .item .date {
	font-size: 15px;
	width: 134px;
	font-weight: bold;
}
.block-news .item .title {
	color: rgba(57, 82, 102, 0.7);
	text-decoration: underline;
	width: calc(100% - 158px);
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

/* 外部リンクカード
---------------------------------------- */
.block-outer-link .item {
	gap: 40px;
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	margin-bottom: 24px;
	transition: all .3s;
}
.block-outer-link .item:hover {
	opacity: 0.8;
}
.block-outer-link .item-img {
	width: 160px;
	height: 160px;
	border-radius: 8px;
	overflow: hidden;
}
.block-outer-link .item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.block-outer-link .item-contents {
	width: calc(100% - 200px);
}
.block-outer-link .item-contents .title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 16px;
}
.block-outer-link .item-contents .excerpt {
	font-size: 12px;
	color: #B4B4B4;
	margin-bottom: 16px;
}
.block-outer-link .item-contents .url {
	word-break: break-all;
	font-size: 10px;
	color: #B4B4B4;
}

/*============================================================
 ページネーション
*============================================================*/
.pagination {
	margin-top: 40px;
}
.pagination .page-numbers {
	display: flex;
	justify-content: center;
	gap: 16px;
}

/*============================================================
 目次
*============================================================*/
#toc_container {
	background: #fff;
	border-radius: 16px;
	padding: 24px 16px;
}
#toc_container .toc_title {
	padding-bottom: 12px;
	border-bottom: 1px solid #DBDBDB;
	margin-bottom: 16px;
	color: #B4B4B4;
}
#toc_container .toc_list  {
	padding: 0!important;
}
#toc_container .toc_list li {
	list-style: none!important;
	margin: 0 0 0 24px!Imabove;
}
#toc_container .toc_list li:last-child {
	margin-bottom: 0;
}
#toc_container .toc_list li a { 
	font-size: 18px;
	text-decoration: underline;
}

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


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

/*============================================================
 クリップボードコピー用メッセージ
*============================================================*/
#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: var(--common-color-main);
    border-radius: 100px;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 auto;
}
#clipbord-msg.copySuccess,
#clipbord-msg.copyError {
    bottom: 56px;
}

/*============================================================
 システムエラー　404、500
*============================================================*/
#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-family: 'Noto Serif JP', sans-serif;
    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-family: 'Noto Serif JP', sans-serif;
    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: var(--common-color-main);
    padding: 32px 0;
    color: #fff;
}
#site-footer .inner {
	max-width: 1280px;
}
#site-footer .logo p {
	font-size: 10px;
	transform: scale(0.7);
	line-height: 1;
	margin-top: -2px;
	margin-left: -26px;
}
#site-footer .menu-list {
	gap: 40px;
}
#site-footer .menu-list li a {
	color: var(--common-color-sub);
	letter-spacing: 0.05em;
}
#site-footer #copyright {
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
}


@media screen and (max-width: 1200px) {
	#breadcrumb {
		margin-top: 55px;
	}
	
	#page-header {
		margin-top: 55px;
	}
	#page-header.type01 {
		min-height: 400px;
	}
	#page-header.type01 .inner {
		padding-top: 160px;
	}
}


