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

common.css

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

    /* 必須余白 */
	--common-inner-padding: 24px;
	--common-inner-padding-wide: 24px;
	--common-inner-padding-narrow: 24px;

    /* サイト幅（デフォルト） */
    --common-inner-base-width: 1200px;
	--common-inner-max-width: calc(var(--common-inner-base-width) + (var(--common-inner-padding) * 2));

    /* サイト幅（幅広） */
	--common-inner-base-width-wide: 1200px;
	--common-inner-max-width-wide: calc(var(--common-inner-base-width-wide) + (var(--common-inner-padding-wide) * 2));

    /* サイト幅（幅狭） */
	--common-inner-base-width-narrow: 800px;
	--common-inner-max-width-narrow: calc(var(--common-inner-base-width-narrow) + (var(--common-inner-padding-narrow) * 2));

    /* 色 */
    --common-color-text: #333333;           /* 基本テキスト色 */
    --common-color-main: #000;           /* メイン色 */
    --common-color-sub: #0B4B46;            /* サブ色 */
    --common-color-black: #333333;
    --common-color-white: #fff;
    --common-color-white2: #f4f4f4;
    --common-color-background-base: #fff;       /* 背景色(html,body用) */
    --common-color-background1: #2B2F7C;       /* 背景色1 */
    --common-color-background2: #f4f4f4;       /* 背景色2 */
    --common-color-border: #d2d2d2;       /* 背景色2 */
    --common-color-accent: #0D0DCC;            /* アクセント色 */
    --common-color-attention: #FF451D;      /* 注意色 */
    --common-color-attention-bg: #FFF5F5;   /* 注意色(背景用) */
    --common-color-notice: #A4A4A4;      /* 注釈色 */

    /* フォーカス色 */
    --common-color-focus-light: var(--common-color-black);
    --common-color-focus-dark: var(--common-color-white);
    --common-color-focus: var(--common-color-focus-light);  /* 通常 */
    --common-color-button-focus: #08B6B1;    /* ボタンフォーカス色 */

    /* フォントファミリー */
    --common-font-family: 'Noto Sans JP', sans-serif;
    --common-font-family-en: "Mulish", sans-serif;

}

html {
    --rem10px: 0.625rem;
    --rem11px: 0.6875rem;
    --rem12px: 0.75rem;
    --rem14px: 0.875rem;
    --rem16px: 1rem;
    --rem18px: 1.125rem;
    --rem20px: 1.25rem;
    --rem22px: 1.375rem;
    --rem24px: 1.5rem;
    --rem26px: 1.625rem;
    --rem28px: 1.75rem;
    --rem30px: 1.875rem;
    --rem32px: 2rem;
    --rem34px: 2.125rem;
    --rem36px: 2.25rem;
    --rem38px: 2.375rem;
    --rem40px: 2.5rem;
    --rem42px: 2.625rem;
    --rem44px: 2.75rem;
    --rem46px: 2.875rem;
    --rem48px: 3rem;
    --rem50px: 3.125rem;
    --rem52px: 3.25rem;
    --rem54px: 3.375rem;
    --rem56px: 3.5rem;
    --rem58px: 3.625rem;
    --rem60px: 3.75rem;
    --rem62px: 3.875rem;
    --rem64px: 4rem;
    --rem120px: 7.5rem;
    /* --rempx: rem;
    --rempx: rem; */
}

/* サイト幅・余白（デフォルト） */
body {
    --inner-max-width: var(--common-inner-max-width);
    --inner-padding: var(--common-inner-padding);
}

/* サイト幅・余白（幅狭） */
body.page-form #main-contents > :not(#mainvisual) {
    --inner-max-width: var(--common-inner-max-width-narrow);
    --inner-padding: var(--common-inner-padding-narrow);
}


/* フォーカス色 指定
---------------------------------------- */
.bg-dark {
    --common-color-focus: var(--common-color-focus-dark);
}
.bg-light,
#indiv-header .sub-menu-list {
    --common-color-focus: var(--common-color-focus-light);
}

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

/*============================================================
 format
*============================================================*/
/* ベース
---------------------------------------- */
html {
    display: block;
    background-color: var(--common-color-background-base);
}
body {
    width: 100%;
    font-family: var(--common-font-family);
    font-style: normal;
    font-weight: normal;
    font-size: var(--rem16px);
    line-height: 160%;
    color: var(--common-color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0 0 0 0;
    background-color: var(--common-color-background-base);
}
*[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;
}

/* 2カラム */
#main-contents[data-column2] {
    display: flex;
    flex-wrap: wrap;
    gap: 56px;
}
#main-contents[data-column2] .column-contents {
    flex: 1;
}
#main-contents[data-column2] .column-sidebar {
    width: 100%;
    max-width: 344px;
}

/* コンテンツ内
---------------------------------------- */
.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;
}
main .inner > *:not(h1, h2, h3, h4) {
    margin-bottom: 32px;
}
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: bold;
    font-size: var(--rem48px);
    line-height: 140%;
}
h2.sec-title {
    font-weight: bold;
    font-size: var(--rem40px);
    line-height: 160%;
    margin-bottom: 32px;
}
h3.block-title {
    font-weight: bold;
    font-size: var(--rem24px);
    line-height: 160%;
    margin-bottom: 16px;
}

p {}
img {
    max-width: 100%;
    height: auto;   
}
svg {
    max-width: 100%;
    height: auto;    
}
span {  
    font-weight: inherit;
}
a, button, [role="button"] {
}
a:focus-visible, button:focus-visible, [role="button"]:focus-visible, summary:focus-visible {
    border-radius: 4px;
    outline: solid 2px var(--common-color-focus);
    outline-offset: 1px;
}

a[href^="tel:"] {
    pointer-events: none;
}
a[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 14px;
    background-image: url(../images/common/icon-link-ext.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 12px auto;
    margin-left: 4px;
}
.bg-dark a[target="_blank"]::after {
    background-image: url(../images/common/icon-link-ext-white.svg);
}
strong {}
.attention {
    font-size: var(--rem12px);
    line-height: 140%;
    color: var(--common-color-attention);
}
.notice {
    font-size: var(--rem12px);
    line-height: 140%;
}
.list-date {
    font-size: var(--rem12px);
    line-height: 160%;
}

/* 読み上げ専用（別タブリンク等）
---------------------------------------- */
.visually-hidden {
    position: fixed !important;
    /* keep it on viewport */
    top: 0px !important;
    left: 0px !important;
    /* give it non-zero size, VoiceOver on Safari requires at least 2 pixels
        before allowing buttons to be activated. */
    width: 4px !important;
    height: 4px !important;
    /* visually hide it with overflow and opacity */
    opacity: 0 !important;
    overflow: hidden !important;
    /* remove any margin or padding */
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    /* ensure no other style sets display to none */
    display: block !important;
    visibility: visible !important;
}

/*============================================================
 ブロックスキップ
*============================================================*/
#skipButton {
    display: block;
	width: calc(100% - (var(--inner-padding) * 2));
	max-width: 560px;
	padding: 18px 0 14px 0;
	border-radius: 0 0 8px 8px;
	background-color: var(--common-color-black);
	color: var(--common-color-white);
	font-weight: 500;
	line-height: 100%;
	text-align: center;
	text-decoration: underline;

	position: fixed;
	top: -100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999999;
}
#skipButton:focus-visible {
	top: 0;
}
#blockskip-content {
    position: absolute;
    z-index: -1;
}

/*============================================================
 メインビジュアル(下層)
*============================================================*/
.page-lower #mainvisual {
    padding-bottom: 72px;
    margin-bottom: 40px;
}
.page-lower #mainvisual:has(.mainvisual-meta) {
    padding-bottom: 48px;
}

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

/* 下層ページでは表示
---------------------------------------- */
#breadcrumb {
    margin: 0 0 8px 0;
}
#breadcrumb .block-wscroll .block-wscroll-inner {
    padding: 8px 16px 16px 0;
    /* padding: 8px var(--inner-padding) 16px 0; */
}
#breadcrumb .bread-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
    padding: 8px 0;
}
#breadcrumb .bread-label {
    padding: 8px 10px;
    background-color: #f1f1f1;
    border-radius: 2px;
    font-size: var(--rem14px);
    line-height: 100%;
}
#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 16px;
    font-size: var(--rem16px);
    line-height: 140%;
}
#breadcrumb li > * {
    font-weight: 500;
    line-height: 140%;
}
#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: 8px;
    height: calc(1rem * 1.4);
    background-image: url(../images/common/icon-bread-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px auto;
    margin-left: 16px;
    vertical-align: text-bottom;
}

/*============================================================
 SNSシェアブロック関連
*============================================================*/
/* クリップボードコピー用メッセージ
---------------------------------------- */
#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: rgba(0, 47, 59, 0.8);
    border-radius: 100px;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 auto;
}
#clipbord-msg.copySuccess,
#clipbord-msg.copyError {
    bottom: 56px;
}

/* SNSシェアセクション
---------------------------------------- */
#sec-sns-share {
    margin-bottom: 48px;
}

/* SNSシェアブロック
---------------------------------------- */
.block-sns-share {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
}
.block-sns-share .label {
    font-weight: 600;
    font-size: var(--rem16px);
    line-height: 160%;
    /* letter-spacing: 0.64em; */
}
.block-sns-share .url-copy-clipbord {
    width: 48px;
    height: 48px;
    background-color: transparent;
    padding: 0;
    border-radius: 100%;
    position: relative;
    margin-right: 33px;
}
.block-sns-share .url-copy-clipbord::after {
    content: "";
    display: block;
    width: 1px;
    height: 24px;
    background-color: #B7B4AD;
    position: absolute;
    top: 12px;
    right: -33px;
}
.block-sns-share .list-sns {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.block-sns-share .list-sns a {
    display: block;
    border-radius: 100%;
}
.block-sns-share .list-sns a::after {
    display: none;
}

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

/* カード
---------------------------------------- */
.block-card {
    display: flex;
    flex-wrap: wrap;
    --gap: 32px;
    --col: 3;
    gap: var(--gap);
}
.block-card .item {
    display: block;
    width: calc((100% - var(--gap) * (var(--col) - 1)) / var(--col));
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 20%);
}
.block-card .item .image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.block-card .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: .3s ease-in-out;
}
.block-card .item:hover .image img {
    transform: scale(1.2);
}
.block-card .item .info {
    padding: 16px;
}
.block-card .item .info .title {
    font-weight: bold;
    font-size: var(--rem18px);
}

/* 要素幅超スクロールのカード一覧 */
.block-wscroll-inner .block-card .item {
    width: calc((var(--common-inner-base-width) - var(--gap) * (var(--col) - 1)) / var(--col));
}

/* リスト
---------------------------------------- */
.block-list {
    display: flex;
    flex-direction: column;
    --gap: 16px;
    gap: var(--gap);
}
.block-list .item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    padding: var(--gap) 0;
    border-bottom: solid 1px var(--common-color-border);
}
.block-list .item .item-date {
    width: 88px;
}
.block-list .item .item-category {
    width: 180px;
    background-color: var(--common-color-main);
    border-radius: 4px;
    text-align: center;
    color: #fff;
}
.block-list .item .item-title {
    flex: 1;
}


/*============================================================
 モーダルカスタム(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: var(--rem12px);
    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 ul {
    list-style-type: disc;
    margin-left: 1em;
    margin-bottom: 16px;
}
.block-post-content ul li {
    list-style-type: disc;
    margin-left: 0.6em;
}
/* 連番リスト
---------------------------------------- */
.block-post-content ol {
    list-style: decimal;
    margin-left: 0.6em;
    margin-bottom: 16px;
}
.block-post-content ol li {
    list-style: decimal;
    padding-left: 0.4em;
    margin-left: 0.6em;
}
/* 段落
---------------------------------------- */
.block-post-content p {
    margin-bottom: 16px;
}
.block-post-content a {
    text-decoration: underline;
}
.block-post-content strong {
    font-weight: bold;
}
/* 画像
---------------------------------------- */
.block-post-content figure {    
    margin-bottom: 16px;
}
.block-post-content figure figcaption { 
    font-size: var(--rem12px);
    line-height: 140%;
    color: var(--common-color-notice);
    margin: 8px 0 0 0;
}

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


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

/*============================================================
 サイト内検索フォーム
*============================================================*/
#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 {
    display: flex;
    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: var(--rem20px);
    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: var(--rem120px);
    line-height: 100%;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

#page-system-error #sec-system-error .system-error-sts {
    font-weight: bold;
    font-size: var(--rem32px);
    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: 16px 0;
    color: #fff;
}

/* メニューリスト
---------------------------------------- */
#site-footer #fnav .menu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}
#site-footer #fnav .menu-list .sub-menu-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 8px;

    font-weight: bold;
    font-size: var(--rem14px);
    line-height: 220%;
}

/* Copyright
---------------------------------------- */
#site-footer #copyright {
    font-weight: 500;
    font-size: var(--rem14px);
    line-height: 200%;
    text-align: center;
}


