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

common.css

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

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

    --common-color-text: #252525;           /* 基本テキスト色 */
    --common-color-main: #000;           /* メイン色 */
    --common-color-sub: #636262;            /* サブ色 */
    --common-color-background1: #636262;       /* 背景色1 */
    --common-color-background2: #F8FAFB;       /* 背景色2 */
    --common-color-accent: #FAA43F;            /* アクセント色 */
    --common-color-attention: #D93838;      /* 注意色 */
    --common-color-attention-bg: #FFF5F5;   /* 注意色(背景用) */
    --common-color-notice: #B3B3B3;      /* 注釈色 */

    --common-font-family: 'Noto Sans JP', sans-serif;
	--common-font-family-serif: "Noto Serif JP", serif;
    --common-font-family-en: "Lato", 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-size: 16px;
    line-height: 160%;
	font-weight: 300;
    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); */
}
 /*Google Chrome、Safariへの対応*/
body::-webkit-scrollbar{
  display: none;
}

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

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

.inner {
    width: 100%;
    max-width: 1008px;
    padding: 0 var(--inner-padding);
    margin: 0 auto;
}
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-size: 48px;
    line-height: 140%;
	letter-spacing: 0.08em;
	font-family: var(--common-font-family-en);
}
h2.sec-title {
    font-size: 32px;
    line-height: 160%;
    margin-bottom: 24px;
}
h3.block-title {
    font-size: 20px;
    line-height: 160%;
    margin-bottom: 16px;
}

p {
	font-weight: 300;
}
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: 6px;
}
.list-date {
    font-size: 12px;
    line-height: 160%;
}
.font-en {
	font-family: var(--common-font-family-en);
	font-weight: 400;
}

/*============================================================
 メインビジュアル(下層)
*============================================================*/
.page-lower #mainvisual {
	margin: 80px 0;
}
.page-lower #mainvisual.indiv {
	margin-top: 0;
}
.page-lower #mainvisual.indiv .image {
}
.page-lower #mainvisual.indiv .page-title {
	margin-top: 80px;
}
.page-lower .basic-block {
	gap: 80px;
}
.page-lower .basic-block h2 {
	font-size: 40px;
	line-height: 1.4;
	font-weight: 300;
	font-family: var(--common-font-family-serif);
	margin-bottom: 32px;
}
.page-lower .basic-block .image {
	width: 32%;
	overflow: hidden;
}
.page-lower .basic-block .info {
	width: 61%;
}
.page-lower .basic-block .info p {
	line-height: 2;
}
.page-lower .basic-block .info p:not(:last-child) {
	margin-bottom: 24px;
}


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

/* 下層ページでは表示
---------------------------------------- */
#breadcrumb {
    padding-top: 90px;
	background: var(--common-color-background1);
	color: #fff;
}
#breadcrumb .inner {
	/*max-width: var(--common-inner-max-width);*/
	max-width: 100%!important;
}
#breadcrumb ul {
	list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
    font-size: 12px;
    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: 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) 14px 0;
}
.block-wscroll .block-wscroll-inner > * {
    width: auto;
    white-space: nowrap;
}

/* カード
---------------------------------------- */
.block-card {
    --gap: 24px;
    --col: 4;
    gap: var(--gap);
}
.block-card .item {
    display: block;
    width: calc((100% - var(--gap) * (var(--col) - 1)) / var(--col));
    overflow: hidden;
	text-align: center;
}
.block-card .item:hover:before {
	opacity: 1;
}
.block-card .item .image {
    width: 100%;
    overflow: hidden;
	position: relative;
	margin-bottom: 16px;
}
.block-card .item .image:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.25);
	opacity: 0;
	transition: all .3s;
	top: 0;
	left: 0;
	z-index: 1;
}
.block-card .item:hover .image:before {
	opacity: 1;
}
.block-card .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: .3s ease-in-out;
}
.block-card .item .info {
}
.block-card .item:hover .info {
	opacity: 0.5;
}
.block-card .item .info .title {
	letter-spacing: 0;
}
.block-card .item .info .title-jp {
	margin-bottom: 4px;
	font-weight: 400;
}
.block-card .item .info .material {
	font-size: 12px;
	color: #7F7F7F;
}
.block-card .item .info .price {
	font-size: 14px;
	font-weight: 300;
	color: #353535;
	letter-spacing: 0;
}

/* お知らせ
---------------------------------------- */
.block-news .item {
	padding-bottom:8px;
	border-bottom: 1px solid #DCDCDC;
	display: block;
	transition: all .3s;
}
.block-news .item:hover {
	opacity: 0.7;
}
.block-news .item .info .posted-date {
	font-size: 12px;
	font-weight: 400;
}
.block-news .item .info .title {
	line-height: 2;	
	position: relative;
}
.block-news .item .info .title:before {
	content: "";
	position: absolute;
	background-image: url(../images/common/icon-inner-link-arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	top: 50%;
	transform: translatey(-50%);
	right: 0;
}


/* コレクション
---------------------------------------- */
.block-collection {
	--gap: 32px;
    --col: 3;
    gap: var(--gap);
}
.block-collection .item {
	position: relative;
	transition: all .3s;
	width: calc((100% - var(--gap) * (var(--col) - 1)) / var(--col));
}
.block-collection .item:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .3s;
}
.block-collection .item:hover:before {
	opacity: 1;
}
.block-collection .item .info {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 40px;
	padding: 0 24px; 
	color: #fff;
	font-family: var(--common-font-family-serif);
}
.block-collection .item .info .title {
	font-size: 40px;
	line-height: 1.2;
}

/*============================================================
 モーダルカスタム(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 {
	font-size: 32px;
	line-height: 1.5;
	margin-bottom: 24px;
}
.block-post-content h3 {    
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 24px;
}
.block-post-content p {
	line-height: 1.8;
	margin-bottom: 16px;
}

/* 箇条書きリスト
---------------------------------------- */
.block-post-content ul {
    list-style-type: circle;
    margin-left: 0.5em;
	margin-top: 16px;
    margin-bottom: 16px;
}
.block-post-content ul li {
    list-style-type: circle;
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 16px;
    margin-left: 0.6em;
}
.block-post-content * li:last-child {
	margin-bottom: 0;
}
/* 連番リスト
---------------------------------------- */
.block-post-content ol {
    list-style: decimal;
    margin-left: 0.6em;
	margin-top: 16px;
    margin-bottom: 16px;
}
.block-post-content ol li {
    list-style: decimal;
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 16px;
    padding-left: 0.4em;
    margin-left: 0.6em;
}
.block-post-content ol li ul {
	list-style-type: circle;
	margin-left: 0.5em;
}
.block-post-content ol li ul li {
	list-style-type: circle;
	padding-left: 0.2em;
}

/* 段落
---------------------------------------- */
.block-post-content p {
    margin-bottom: 16px;
}
.block-post-content a {
    text-decoration: underline;
}
.block-post-content strong {
    font-weight: 400;
}
/* 画像
---------------------------------------- */
.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;
}

/* 余白調整
---------------------------------------- */
.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 {
    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;
}


/*============================================================
 モーダル
*============================================================*/

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
	background: #000;
}

/*============================================================
 footer
*============================================================*/
#site-footer {
    background-color: var(--common-color-sub);
    padding: 88px 0 40px;
    color: #fff;
}
#site-footer .block {
	margin-bottom: 72px;
}

/* 住所
---------------------------------------- */
#site-footer .address {
	font-size: 12px;
	margin-top: 16px;
}


/* メニューリスト
---------------------------------------- */
#site-footer #fnav a {
	display: block;
	transition: all .3s;
}
#site-footer #fnav a:hover {
	opacity: 0.7;
}
#site-footer #fnav .menu-list {
    gap: 24px;
    margin-bottom: 24px;
	list-style: none;
}
#site-footer #fnav .menu-list li a {
	padding: 8px 0;
	font-family: var(--common-font-family-en);
	letter-spacing: 0.04em;
}
#site-footer #fnav .menu-list li ul {
	list-style: none;
}
#site-footer #fnav .menu-list li ul a {
	position: relative;
	font-size: 14px;
	padding: 0 0 0 12px;
	line-height: 1.8;
}
#site-footer #fnav .menu-list li ul a:before {
	content: "";
	position: absolute;
	background: url(../images/common/icon-nav-arrow.svg) no-repeat center center / contain;
	width: 4px;
	height: 8px;
	left: 0;
	top: 50%;
	transform: translatey(-50%);
}
#site-footer #fnav .sub-menu-list {
	gap: 24px;
	list-style: none;
}
#site-footer #fnav .sub-menu-list li a {
	font-size: 12px;
	text-decoration: underline;
}

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


