/*   
Theme Name: kanei_2605
*/
@charset "UTF-8";

/* Repeatable Patterns
----------------------------------------------------*/

*{
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}


body {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    color: #343B37;
    background: #F0F2EF;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* print setting */
@media print {
    html {
        font-size: 38%;
    }

    body {
        -webkit-print-color-adjust: exact;
    }
}

html.is-scroll-prevent {
    height: 100%;
    overflow: hidden;
}

.all_container{
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease-out;
}

a:hover{
    color: rgba(52,59,55,0.6);
}

a img, a svg {
    transition: 0.3s ease-out;
}

a:hover img{
    opacity: .7;
}

::-moz-selection {
    background: #343B37;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #343B37;
    color: #fff;
    text-shadow: none;
}

img {
    width: 100%;
    height: auto;
    max-width: none !important;
}

figure{
    margin: 0;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
    font-weight: 600;
}

p{
    margin: 0;
}

img {
    width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

svg{
    fill: currentcolor;
}

ul, ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

input,
textarea,
button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border-radius: 0;
    transition: 0.3s ease-out;
    cursor: pointer;
    color: #343B37;
    border: none;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
}

.display_none{
    display: none;
}

.wrapper {
    width: calc(1166 / 1280 * 100%);
    max-width: 1166px;
    margin-left: auto;
    margin-right: auto;
}

.sub_wrapper-1{
    width: 68rem;
    margin-left: auto;
    margin-right: auto;
}

.sub_wrapper-2{
    width: 54rem;
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*テキスト*/
.en{
    font-family: "EB Garamond", serif;
    font-weight: 400;
}

p a{
    word-break: break-all;
}


/*リンク*/
.link_arrow{
    justify-content: flex-end;
    align-items: center;
}

.link_arrow span{
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .07rem;
    padding-right: 2rem;
}

.link_arrow img{
    width: .8rem;
}

.link_box{
    width: 28rem;
    height: 6.6rem;
    border: 1px solid;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 2px;
}

.link_box:hover{
    background: rgba(52, 59, 55, 0.15);
    color: inherit;
}

.link_box span{
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .07rem;
    padding-right: 2rem;
}

.link_box img{
    width: .8rem;
}


/*fadein*/
.fadein {
    opacity: 0;
    transition: 1000ms ease-in;
}

.fadein.scrollin {
    opacity: 1;
}

@media print {
    .fadein {
        opacity: 1;
    }
}

/* Header
----------------------------------------------------*/

.header_container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 4.4rem 0 0;
    width: calc(1166 / 1280 * 100%);
    margin: auto;
}

.header_logo{
    width: calc(100 / 1166 * 100%);
    max-width: 8.8rem;
}

.header_nav{
    width: calc(1066 / 1166 * 100%);
    padding-top: 1.2rem;
}

.header_nav_list{
    justify-content: flex-end;
    align-items: center;
}

.header_nav_item a{
    position: relative;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    padding: .4rem 0;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}

.header_nav_item:not(:last-child) a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    transition: .2s;
}

.header_nav_item:not(:last-child) a:hover::after{
    width: 100%;
} 

.header_nav_item + .header_nav_item{
    margin-left: 2.9%;
}

.header_nav_item:last-child a{
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1rem 1.5rem;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.header_nav_item:last-child a:hover{
    background: rgba(255, 255, 255, 0.15);
    text-shadow: none;
}

/* Footer
----------------------------------------------------*/

.footer_container{
    margin-top: 8.8rem;
}

.footer_main{
    position: relative;
    padding: 0 0 0 5%;
}

.footer_logo{
    width: 16.5%;
    padding-right: 9.5%;
}

.footer_info{
    width: 38.5%;
}

.footer_main_inner + .footer_main_inner{
    margin-top: 4.8rem;
}

.footer_main_heading{
    font-size: 1.3rem;
    letter-spacing: .08rem;
    font-weight: 500;
    color: rgba(52, 59, 55, 0.7);
    padding-bottom: 1.4rem;
}

.footer_main_text{
    font-size: 1.6rem;
    line-height: 1.7;
}

.footer_main_text span{
    font-size: 1.4rem;
}

.footer_main_text_s{
    font-size: 1.4rem;
    line-height: 1.7;
    padding-top: .8rem;
}

.footer_main_text_s a{
    text-decoration: underline;
}

.footer_main .link_arrow{
    justify-content: flex-start;
}

.footer_map_link{
    margin-top: 1.6rem;
}

.footer_map_link span{
    font-size: 1.4rem;
}

.footer_contact{
    width: 45%;
}

.footer_contact .footer_main_heading{
    padding-bottom: 2rem;
}

.footer_contact_link + .footer_contact_link{
    margin-top: 1.7rem;
}

.footer_contact_link span{
    font-size: 1.6rem;
}

.footer_contact_link span.en{
    font-size: 1.8rem;
    font-weight: 500;
}

.footer_contact_link svg{
    margin-right: .8rem;
}

.footer_agopan{
    position: absolute;
    bottom: -3rem;
    right: 2rem;
    width: 15rem;
}

.footer_sub{
    font-size: 1.4rem;
    margin-top: 8.8rem;
    padding-top: 4.4rem;
    padding-bottom: 4.4rem;
    border-top: 1px solid rgba(52,59,55,0.15);
    justify-content: space-between;
    align-items: center;
    color: rgba(52, 59, 55, 0.7);
}


/* トップページ
----------------------------------------------------*/

/*ファーストビジュアル*/
.top_fv_slide{
    width: 100%;
    height: 100vh;
    height: 100svh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.top_fv_slide-1{
    background-image: url(img/fv-1_pc.jpg);
}

.top_fv_slide-2{
    background-image: url(img/fv-2_pc.jpg);
}

.top_fv_slide-3{
    background-image: url(img/fv-3_pc.jpg);
}

.top_fv_slide-4{
    background-image: url(img/fv-4_pc.jpg);
}

/*展示会*/

.top_exhibition_container{
    padding-top: 12rem;
    padding-bottom: 12rem;
}

.section_heading{
    align-items: center;
}

.section_heading .jp{
    width: auto;
    height: 2.9rem;
}

.section_heading .en{
    margin-left: 3.2rem;
    color: rgba(52,59,55,0.7);
    font-size: 1.6rem;
    letter-spacing: .14rem;
}

.top_exhibition_heading{
    margin-bottom: 6rem;
}

.home .exhibition_list_container{
    padding: 0 9%;
}

.exhibition_main_list_item + .exhibition_main_list_item{
    margin-top: 6rem;
}

.exhibition_main_list_item{
    align-items: center;
}

.archive .exhibition_main_list_item{
    background: #fff;
    padding: 6% 9%;
}

.exhibition_main_list_body{
    width: 45%;
    padding-right: 6%;
}

.exhibition_list_icon{
    font-size: 1.6rem;
    display: inline-block;
    padding: .6rem .9rem;
    border: 1px solid;
    border-radius: 1px;
    margin-bottom: 4rem;
}

.exhibition_main_list .exhibition_list_date{
    font-size: 1.6rem;
    padding-bottom: 2.2rem;
}

.exhibition_date_start{
    margin-right: .8rem;
    display: inline-block;
    letter-spacing: .06rem;
    font-family: 'EB Garamond', "Shippori Mincho", serif;
}

.exhibition_date_end{
    margin-left: 1rem;
    display: inline-block;
    letter-spacing: .06rem;
    font-family: 'EB Garamond', "Shippori Mincho", serif;
}

.exhibition_main_list .exhibition_list_title{
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 4.8rem;
}

.exhibition_main_list_img{
    width: 55%;
}

.exhibition_link_all{
    margin-top: 6rem;
}

.exhibition_sub_list{
    margin: 0 -3%;
}

.exhibition_sub_list_item{
    width: calc(100% / 3);
    padding: 0 3% 4.8rem;
}

.exhibition_sub_list_img{
    margin-bottom: 3.2rem;
}

.exhibition_sub_list .exhibition_list_date{
    font-size: 1.5rem;
    margin-bottom: 1.6rem;
}

.exhibition_sub_list .exhibition_list_title{
    font-size: 2rem;
    line-height: 1.5;
}

.exhibition_list_link{
    justify-content: flex-start;
}

.exhibition_list_link span{
    font-size: 1.6rem;
}

/*アバウト*/

.top_about_container{
    padding-bottom: 20rem;
}

.top_about_inner{
    position: relative;
    margin-top: 11rem;
}

.top_about_heading{
    position: absolute;
    top: 0;
    left: 4.4%;
    flex-direction: row-reverse;
    align-items: flex-start;
}

.top_about_heading .jp{
    width: 3rem;
    height: auto;
}

.top_about_heading .en{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    margin-left: 0;
    margin-right: 1.2rem;
    padding-top: .3rem;
}

.top_about_text{
    margin-top: 6rem;
    padding-left: 4rem;
    width: 58rem !important;
}

.top_about_text_jp{
    font-size: 1.6rem;
    line-height: 2.1;
    margin-bottom: 5rem;
}

.top_about_text_en{
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: justify;
    color: rgba(52,59,55,0.7);
    margin-bottom: 8.8rem;
}

/*Instagram*/

.top_instagram_container{
    padding-bottom: 13rem;
}

.top_instagram_inner{
    position: relative;
}

.top_instagram_heading{
    margin-bottom: 4.8rem;
}

.top_instagram_heading svg{
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 1.1rem;
}

.top_instagram_heading .jp{
    height: 2.6rem;
}

.instagram_link_all{
    position: absolute;
    top: .7rem;
    right: 0;
}

#sbi_images{
    gap: 24px !important;
}

/*鑑定・オンラインショップ*/
.top_links_container{
    margin-bottom: 15rem;
}

.top_links_inner{
    background: #fff;
    height: 32rem;
    padding: 4rem 0;
}

.top_links_link{
    width: 50%;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.top_links_link + .top_links_link{
    border-left: 1px solid rgba(52,59,55,0.15);
}

.top_links_link .jp{
    font-size: 2.2rem;
    font-weight: 600;
}

.top_links_link .en{
    font-size: 1.6rem;
    letter-spacing: .14rem;
    color: rgba(52,59,55,0.7);
    padding-top: 1.6rem;
}

.top_footer_img{
    margin-right: calc(50% - 50vw);
    border-radius: 15rem 0 0 0;
    overflow: hidden;
}

/* 下層ページ
----------------------------------------------------*/

/* --- ギャラリーについて --- */

.page_header_container {
    position: relative;
    background-size: cover;
    background-position: center;
    aspect-ratio: 1366 / 430;
    margin-bottom: 10rem;
}

.page_header_container::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
}

.page_header {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 12%;
    color: #fff;
}

.page_heading{
    flex-direction: column;
    align-items: flex-end;
}

.page_heading .jp{
    font-size: 2.6rem;
    letter-spacing: .12rem;
    padding-bottom: 1.4rem;
}

.page_heading .en{
    font-size: 1.6rem;
    letter-spacing: .14rem;
    color: rgba(255,255,255,0.7);
}

.other_page_heading{
    font-size: 2.2rem;
    line-height: 1.5;
}

.about_page_header_container {
    background-image: url(img/about_main_pc.jpg);
}

.about_page_header_container::before{
    opacity: .25;
}

/*ご挨拶*/
.about_intro_container{
    padding-bottom: 13rem;
}

.page_section_heading{
    font-size: 2.8rem;
    letter-spacing: .12rem;
    text-align: center;
    margin-bottom: 6.6rem;
}

.about_intro_text_jp{
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.15;
    margin-bottom: 8rem;
}

.about_intro_text_en{
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: justify;
    color: rgba(52, 59, 55, 0.7);
}

/*プロフィール*/
.about_profile_container{
    padding-bottom: 14rem;
}

.about_profile_img{
    margin-bottom: 8.8rem;
}

.about_profile_inner{
    justify-content: space-between;
}

.about_profile_inner + .about_profile_inner{
    margin-top: 10rem;
}

.about_profile_name{
    width: 100%;
    align-items: center;
    margin-bottom: 4rem;
}

.about_profile_name .jp{
    font-size: 2.4rem;
    letter-spacing: .12rem;
}

.about_profile_name .en{
    margin-left: 2.4rem;
    color: rgba(52, 59, 55, 0.7);
    font-size: 1.4rem;
    letter-spacing: .2rem;
}

.about_profile_text_jp{
    width: 46%;
    font-size: 1.5rem;
    line-height: 2;
    text-align: justify;
}

.about_profile_text_en{
    width: 46%;
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: justify;
    color: rgba(52, 59, 55, 0.7);
}

/*歴史*/

.about_history_container{
    background: #fff;
    padding-top: 11rem;
    padding-bottom: 13rem;
}

.about_history_text_jp{
    text-align: justify;
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 6.8rem;
}

.about_history_text_en{
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: justify;
    color: rgba(52, 59, 55, 0.7);
}

.about_history_imgs{
    margin-top: 8.8rem;
    justify-content: space-between;
}

.about_history_img{
    width: 31.5%;
}

.about_history_img figcaption{
    text-align: justify;
    font-size: 1.4rem;
    line-height: 1.6;
    padding-top: 1.6rem;
}


/* --- 鑑定・査定・買取 --- */

.buy_page_header_container {
    background-image: url(img/buy_main_pc.jpg);
}

.buy_page_header_container::before{
    opacity: .15;
}

/*イントロダクション*/
.buy_intro_container{
    padding-bottom: 13rem;
}

.buy_intro_heading{
    flex-direction: column;
    margin-bottom: 5rem;
}

.buy_intro_heading .jp{
    font-size: 2.4rem;
    line-height: 1.6;
    letter-spacing: .18rem;
    margin-bottom: 1.8rem;
}

.buy_intro_heading .en{
    font-size: 1.6rem;
    line-height: 1.6;
    color: rgba(52, 59, 55, 0.7);
    letter-spacing: .08rem;
}

.buy_intro_inner + .buy_intro_inner{
    margin-top: 10rem;
}

.buy_intro_text{
    justify-content: space-between;
}

.buy_intro_text_jp{
    width: 46%;
    text-align: justify;
    font-size: 1.6rem;
    line-height: 2.15;
}

.buy_intro_text_en{
    width: 47%;
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: justify;
    color: rgba(52, 59, 55, 0.7);
}

/*流れ*/

.buy_flow_container{
    background: #fff;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.buy_flow_item + .buy_flow_item{
    margin-top: 2.4rem;
    padding-top: 4.8rem;
    position: relative;
}

.buy_flow_item + .buy_flow_item::before{
    border-left: 1px solid;
    border-top: 1px solid;
    width: 15px !important;
    height: 15px !important;
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(225deg);
    color: rgba(52, 59, 55, 0.4);
}

.buy_flow_item_heading{
    padding: 2rem;
    background: rgba(52, 59, 55, 0.12);
    text-align: center;
    font-size: 2rem;
    line-height: 1.5;
}

.buy_flow_item_text{
    padding-top: 2.8rem;
    font-size: 1.5rem;
    line-height: 1.85;
    text-align: center;
}

.buy_flow_item_text a{
    text-decoration: underline;
}

.buy_flow_caution{
    padding-top: 6rem;
    padding-bottom: 6rem;
    margin-top: 10rem;
    margin-bottom: 8rem;
    border-top: 1px solid rgba(52, 59, 55, 0.15);
    border-bottom: 1px solid rgba(52, 59, 55, 0.15);
}

.buy_flow_caution_list{
    list-style: circle;
    margin-left: 2rem;
}

.buy_flow_caution_item{
    font-size: 1.5rem;
    line-height: 2;
    text-align: justify;
}

/* --- 展示会　一覧 --- */

.page_exhibition_container{
    margin-bottom: 16rem;
}

.exhibition_page_header_container {
    background-image: url(img/exhibition_main_pc.jpg);
}

.exhibition_page_header_container::before{
    opacity: .05;
}

.exhibition_list_container + .exhibition_list_container{
    margin-top: 12rem;
}

.exhibition_list_header{
    margin-bottom: 7.2rem;
    justify-content: space-between;
    align-items: center;
}

.exhibition_list_heading{
    font-size: 2.8rem;
    letter-spacing: .12rem;
}

/*ドロップダウンメニュー*/

/* セレクトボックス全体のラッパー要素 */
.exhibition_year_archive {
    position: relative; /* 子要素の絶対配置の基準にする */
    width: 20rem;
    height: 4rem;
}

/* セレクト本体の装飾 */
.exhibition_year_archive select {
    display: block;
    position: absolute; /* 親要素内で全体に広げる */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid;
    border-radius: 1px;
    color: inherit;
    font: inherit;
    outline: none; /* デフォルトのフォーカス線を消す */
    appearance: none; /* ブラウザ標準の矢印を非表示にする */
    cursor: pointer;
    padding: 1rem 1rem;
    font-size: 1.6rem;
    background: transparent;
    transition: 0.3s ease-out;
}

/* ホバー・フォーカス時の強調 */
.exhibition_year_archive select:hover,
.exhibition_year_archive select:focus {
    background: rgba(52, 59, 55, 0.15);
    color: inherit;
}

/* 矢印（三角形）の描画 */
.exhibition_year_archive_arrow{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2rem;
    margin: auto;
}

.exhibition_year_archive_arrow::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    background: rgba(52, 59, 55, 0.6);
    clip-path: polygon(0 0, 100% 0, 50% 100%); /* 下向き三角形を描く */
    transform: translate(-50%, -50%); /* 中央に配置 */
    width: 10px;
    height: 6px;
}

.exhibition_year_error{
    font-size: 2rem;
    line-height: 2;
    text-align: justify;
}

/*ページャー（WP-PageNavi）*/

.wp-pagenavi {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
    font-size: 2.1rem;
    margin: 0 1.2rem;
    position: relative;
    padding: .6rem .3rem;
}

.wp-pagenavi span.current {
    border-bottom: 1px solid;
}

.wp-pagenavi span.extend {
    padding-left: 0;
    padding-right: 0;
}

.wp-pagenavi .previouspostslink{
    margin-right: 2rem;
}

.wp-pagenavi .nextpostslink{
    margin-left: 2rem;
}

/* --- 展示会　個別記事 --- */

.exhibition_post_container{
    padding-top: 10rem;
    padding-bottom: 10rem;
    background: #fff;
}

.exhibition_post_header{
    margin-bottom: 6rem;
}

.exhibition_post_icon{
    font-size: 1.6rem;
    display: inline-block;
    padding: .6rem .9rem;
    border: 1px solid;
    border-radius: 1px;
    margin-bottom: 4rem;
}

.exhibition_post_date{
    font-size: 1.6rem;
    padding-bottom: 2.4rem;
}

.exhibition_post_title{
    font-size: 2.4rem;
    line-height: 1.5;
}

.post_body{
    font-size: 1.6rem;
    line-height: 2;
    text-align: justify;
}

.post_body > * + * {
    margin-top: 2.8rem;
}

.post_body figure{
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.post_body h1 {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-top: 6rem;
}

.post_body h2 {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-top: 6rem;
}

.post_body h3 {
    font-size: 1.9rem;
    line-height: 1.5;
    margin-top: 4rem;
}

.post_body a {
    text-decoration: underline;
}

.post_body hr.wp-block-separator{
    border-top: 1px solid rgba(52,59,55,0.15);
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.post_body figure.is-type-video .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.post_body figure.is-type-video iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.wp-block-image :where(figcaption){
    margin-top: 1.2rem !important;
    font-size: 80%;
}

.wp-block-button__link{
    width: 26rem !important;
    height: 6rem !important;
    font-size: 2rem !important;
    border: 1px solid;
    justify-content: center;
    align-items: center;
    margin: 0;
    display: flex !important;
    flex-wrap: wrap;
    text-decoration: none !important;
    margin: 3rem 0;
}

.wp-block-button__link:hover{
    color: inherit;
    background: rgba(52, 59, 55, 0.15);
}

ol.wp-block-list{
    list-style-type: decimal;
    margin-left: 2.6rem;
}

ul.wp-block-list{
    list-style-type: circle;
    margin-left: 2.6rem;
}

.related_post_container{
    margin-top: 10rem;
}

.related_post_header{
    margin-bottom: 6rem;
    justify-content: space-between;
    align-items: center;
}

.related_post_heading{
    font-size: 2.6rem;
    letter-spacing: .12rem;
}


/* --- お問い合わせ --- */

.contact_page_header_container {
    background-image: url(img/contact_main_pc.jpg);
}

.contact_page_header_container::before{
    opacity: .15;
}

.contact_intro_text{
    margin-bottom: 8rem;
}

.contact_intro_text_jp{
    text-align: justify;
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 4.4rem;
}

.contact_intro_text_en{
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: justify;
    color: rgba(52, 59, 55, 0.7);
}

.contact_form_container{
    padding: 10rem 15%;
    background: #fff;
}

.form_list {
    list-style-type: none !important;
    margin-left: 0 !important;
}

.form_item + .form_item {
    padding-top: 4.4rem;
}

.form_title {
    line-height: 1.4;
    width: 30%;
    padding-top: .8rem;
    flex-direction: column;
}

.form_item:first-child .form_title {
    padding-top: 0.5rem;
}

.form_title .jp {
    font-size: 1.8rem;
    margin-bottom: .6rem;
}

.form_title .en {
    font-size: 1.5rem;
    color: rgba(52, 59, 55, 0.7);
    letter-spacing: .07rem;
}

.form_box {
    width: 70%;
}

.form_box input,
.form_box textarea {
    font-size: 1.6rem;
    line-height: 1.8;
    width: 100%;
    background: #fff;
    border: 1px solid #343B37;
}

.form_box input {
    padding: 1rem 1.4rem;
}

.form_box textarea {
    padding: 1.2rem 1.4rem;
}

.wpcf7-list-item-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
}

.wpcf7-list-item {
    margin-left: 0 !important;
    margin-right: 2rem !important;
    margin-top: .8rem !important;
    margin-bottom: .8rem !important;
}

input[type="radio"] {
    opacity: 0;
    position: absolute;
}

.wpcf7-list-item-label::before {
    background: #fff;
    border-radius: 100%;
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    margin-bottom: auto;
    margin-right: .8rem;
    margin-top: auto;
    transition: background-color .5s;
    border: 1px solid #343B37;
}

input[type="radio"]:checked + .wpcf7-list-item-label::before {
    background-color: #343B37;
    box-shadow: inset 0 0 0 .3rem #fff;
}

.wpcf7-submit {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    width: 28rem;
    height: 6.6rem;
    border: 1px solid;
    border-radius: 2px;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .07rem;
    letter-spacing: .1rem;
    background: #fff;
    border: 1px solid #343B37;
    margin: 3rem auto 0;
}

.wpcf7-submit:hover {
    background: rgba(52, 59, 55, 0.15);
    color: inherit;
}

.wpcf7-not-valid-tip {
    font-size: 1.5rem !important;
    padding-top: .8rem;
}

.wpcf7-acceptance {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0 auto 4.8rem;
    display: block;
}

.wpcf7-response-output {
    margin: 2.4em 0 0 !important;
    padding: 1.2rem 1rem !important;
    color: #333;
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
}

.cf7-cf-turnstile {
    text-align: center;
    margin-top: 6rem !important;
}


/* --- 404 --- */

.page_other_container{
    margin-bottom: 16rem;
}

.other_page_header_container {
    background-image: url(img/other_main_pc.jpg);
}

.other_page_header_container::before{
    opacity: .15;
}

.error_intro_title {
    font-size: 3rem;
    line-height: 1.5;
    text-align: center;
    font-weight: 600;
}

.page_404_link{
    margin: 6rem auto 0;
}

/*----------------------------------------------------

PCのみ

----------------------------------------------------*/

@media screen and (min-width: 768px) {
    .display_sp {
        display: none !important;
    }
}

@media screen and (min-width: 1400px) {
    html {
        font-size: 66%;
    }
}


@media screen and (max-width: 1099px) and (min-width: 900px) {
    html {
        font-size: 56%;
    }

    .wrapper{
        width: 92%;
    }

}

@media screen and (max-width: 899px) and (min-width: 768px) {
    html {
        font-size: 54%;
    }
    
    .wrapper{
        width: 92%
    }
}

/*----------------------------------------------------

スマートフォンのみ

----------------------------------------------------*/


@media screen and (max-width: 767px) {
    body {
        position: relative;
        background-image: none;
    }

    .display_pc{
        display: none !important;
    }

    .wrapper {
        width: 100%;
        padding: 0 2rem;
    }

    .sub_wrapper-1{
        width: 100%;
    }

    .sub_wrapper-2{
        width: 100%;
    }
    
    /*リンク*/

    .link_arrow span{
        font-size: 1.5rem;
        padding-right: 1.2rem;
    }    

    .link_box{
        width: 23rem;
        height: 5.3rem;
    }

    .link_box span{
        font-size: 1.5rem;
        padding-right: 1.4rem;
    }


    /* Header
    ----------------------------------------------------*/

    .header_container{
        width: 100%;
        padding: 2.6rem 2rem 0 3rem;
    }

    .header_logo{
        width: 6.6rem;
        max-width: none;
    }
    
    body:not(.home) .header_logo{
        width: 5rem;
    }

    /*ドロワーメニュー*/

    .drawer-hamburger {
        position: fixed;
        top: 3rem;
        right: 2rem;
        width: 3.8rem;
        height: 1rem;
        z-index: 1000;
        padding: 0;
        mix-blend-mode: difference;
    }

    .drawer-hamburger-icon,
    .drawer-hamburger-icon:after,
    .drawer-hamburger-icon:before {
        transition: all .3s cubic-bezier(.19, 1, .22, 1);
    }

    .drawer-hamburger-icon {
        position: relative;
        display: block;
        height: 1px;
        margin: 0 auto;
        background-color: transparent;
    }

    .drawer-hamburger-icon:after,
    .drawer-hamburger-icon:before {
        position: absolute;
        content: " ";
        height: 1px;
        background-color: #fff;
        left: 0;
        right: 0;
        margin-left: auto;
    }

    .drawer-hamburger-icon:before {
        top: -.5rem !important;
        width: 100% !important;
    }

    .drawer-hamburger-icon:after {
        top: .5rem !important;
        width: 70% !important;
    }

    .is-opened .drawer-hamburger-icon {
        background-color: transparent;
    }

    .is-opened .drawer-hamburger-icon:before,
    .is-opened .drawer-hamburger-icon:after {
        width: 120% !important;
        top: 0 !important;
        left: -10%;
    }

    .is-opened .drawer-hamburger-icon:before {
        transform: rotate(30deg);
    }

    .is-opened .drawer-hamburger-icon:after {
        transform: rotate(-30deg);
    }

    .drawer-nav {
        display: block;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 999;
        overflow-y: scroll;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: 100%;
        transition: right .15s ease-in-out;
        -webkit-overflow-scrolling: touch;
        background-color: rgba(52,59,55,0.95);
        color: #fff;
    }

    .is-opened .drawer-nav {
        right: 0;
        transition: right .2s ease-in-out;
    }

    .drawer_inner {
        position: relative;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 10rem 4.8rem 8rem;
        align-items: flex-end;
    }

    .drawer_nav{
        width: 100%;
    }
    
    .drawer_nav_list{
        margin-bottom: 4.4rem;
    }
    
    .drawer_nav_item + .drawer_nav_item{
        margin-top: 2.8rem;
    }
    
    .drawer_nav_link{
        align-items: center;
    }
    
    .drawer_nav_link .jp{
        font-size: 1.7rem;
    }
    
    .drawer_nav_link .en{
        font-size: 1.2rem;
        margin-left: 1.2rem;
        letter-spacing: .14rem;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .drawer_instagram_link{
        align-items: center;
    }
    
    .drawer_instagram_link svg{
        width: 1.6rem;
        height: 1.6rem;
        margin-right: .8rem;
    }
    
    .drawer_instagram_link span{
        font-size: 1.7rem;
        letter-spacing: .14rem;
    }

    /* Footer
    ----------------------------------------------------*/

    .footer_container{
        margin-top: 6rem;
    }

    .footer_main{
        padding: 0;
    }

    .footer_info{
        width: 100%;
        margin-bottom: 4rem;
    }

    .footer_main_inner + .footer_main_inner{
        margin-top: 4rem;
    }

    .footer_main_heading{
        font-size: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .footer_main_text{
        font-size: 1.4rem;
    }

    .footer_main_text span{
        font-size: 1.2rem;
    }

    .footer_main_text_s{
        font-size: 1.3rem;
        line-height: 1.7;
        padding-top: .6rem;
    }

    .footer_map_link{
        margin-top: 1.2rem;
    }

    .footer_map_link span{
        font-size: 1.4rem;
    }

    .footer_contact{
        width: 100%;
    }

    .footer_contact .footer_main_heading{
        padding-bottom: 1.8rem;
    }

    .footer_contact_link + .footer_contact_link{
        margin-top: 1.8rem;
    }

    .footer_contact_link span{
        font-size: 1.5rem;
    }

    .footer_contact_link span.en{
        font-size: 1.7rem;
    }

    .footer_contact_link svg{
        margin-right: .5rem;
    }

    .footer_agopan{
        bottom: -9rem;
        right: 0;
        width: 10.6rem;
    }

    .footer_sub{
        margin-top: 12rem;
        padding-top: 2.2rem;
        padding-bottom: 3rem;
        flex-direction: column;
        text-align: center;
    }
    
    .footer_kyoka{
        font-size: 1.1rem;
        padding-bottom: 2.2rem;
    }
    
    .copyright{
        font-size: 1.2rem;
    }


    /* トップページ
    ----------------------------------------------------*/

    /*ファーストビジュアル*/
    .top_fv_slide-1{
        background-image: url(img/fv-1_sp.jpg);
    }

    .top_fv_slide-2{
        background-image: url(img/fv-2_sp.jpg);
    }

    .top_fv_slide-3{
        background-image: url(img/fv-3_sp.jpg);
    }

    .top_fv_slide-4{
        background-image: url(img/fv-4_sp.jpg);
    }

    /*展示会*/

    .top_exhibition_container{
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .section_heading .jp{
        height: 2.1rem;
    }

    .section_heading .en{
        margin-left: 1.4rem;
        font-size: 1.3rem;
    }

    .top_exhibition_heading{
        margin-bottom: 4.6rem;
    }

    .home .exhibition_list_container{
        padding: 0;
    }
    
    .exhibition_main_list_item{
        flex-direction: column-reverse;
    }

    .exhibition_main_list_item + .exhibition_main_list_item{
        margin-top: 3.2rem;
    }

    .archive .exhibition_main_list_item{
        padding: 2rem 2rem 4rem;
    }

    .exhibition_main_list_body{
        width: 100%;
        padding-top: 2.8rem;
        padding-right: 0;
    }
    
    .home .exhibition_main_list_body{
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .exhibition_list_icon{
        font-size: 1.3rem;
        padding: .5rem .7rem;
        margin-bottom: 2rem;
    }

    .exhibition_main_list .exhibition_list_date{
        font-size: 1.5rem;
        padding-bottom: 1.8rem;
    }

    .exhibition_main_list .exhibition_list_title{
        font-size: 1.9rem;
        margin-bottom: 0;
    }

    .exhibition_main_list_img{
        width: 100%;
    }

    .exhibition_link_all{
        margin-top: 4.8rem;
    }

    .exhibition_sub_list{
        margin: 0;;
    }

    .exhibition_sub_list_item{
        width: 100%;
        padding: 0 0 3.6rem;
    }

    .exhibition_sub_list_img{
        margin-bottom: 2.4rem;
    }

    .exhibition_sub_list .exhibition_list_date{
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .exhibition_sub_list .exhibition_list_title{
        font-size: 1.8rem;
    }

    .exhibition_list_link{
        margin-top: 2.8rem;
        justify-content: flex-end;
    }
    
    .exhibition_list_link span{
        font-size: 1.4rem;
    }

    /*アバウト*/

    .top_about_container{
        padding-bottom: 12rem;
    }

    .top_about_inner{
        margin-top: 6rem;
    }

    .top_about_heading{
        position: relative;
        top: unset;
        left: unset;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 5rem;
    }

    .top_about_heading .jp{
        width: 2.2rem;
        height: auto;
    }

    .top_about_heading .en{
        margin-left: -1rem;
        margin-right: 1rem;
        padding-top: .1rem;
    }

    .top_about_text{
        width: 100% !important;
        padding-left: 0;
        margin-top: 0;
    }

    .top_about_text_jp{
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 4.8rem;
    }

    .top_about_text_en{
        font-size: 1.4rem;
        margin-bottom: 4.8rem;
    }

    /*Instagram*/

    .top_instagram_container{
        padding-bottom: 8rem;
    }
    
    .top_instagram_inner{
        padding-bottom: 3.2rem;
    }

    .top_instagram_heading{
        margin-bottom: 3rem;
    }

    .top_instagram_heading svg{
        width: 1.9rem;
        height: 1.9rem;
        margin-right: .8rem;
    }

    .top_instagram_heading .jp{
        height: 2.1rem;
    }

    .instagram_link_all{
        position: absolute;
        top: unset;
        bottom: 0;
        right: 2rem;
    }
    
    .top_instagram_main{
        margin: 0 calc(50% - 50vw);
    }
    
    #sbi_images{
        gap: 3px !important;
    }
    
    /*鑑定・オンラインショップ*/
    .top_links_container{
        margin-bottom: 8rem;
    }

    .top_links_inner{
        height: auto;
        padding: 0 2.4rem;
    }

    .top_links_link{
        width: 100%;
        padding: 6.6rem 0;
    }

    .top_links_link + .top_links_link{
        border-left: none;
        border-top: 1px solid rgba(52,59,55,0.15);
    }

    .top_links_link .jp{
        font-size: 1.7rem;
    }

    .top_links_link .en{
        font-size: 1.3rem;
        padding-top: 1.2rem;
    }

    .top_footer_img{
        border-radius: 6rem 0 0 0;
    }

    /* 下層ページ
    ----------------------------------------------------*/


    /* --- ギャラリーについて --- */

    .page_header_container {
        aspect-ratio: 370 / 250;
        margin-bottom: 6rem;
    }

    .page_header {
        bottom: 12%;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    }

    .page_heading .jp{
        font-size: 2rem;
        padding-bottom: 1.2rem;
    }

    .page_heading .en{
        font-size: 1.3rem;
    }

    .about_page_header_container {
        background-image: url(img/about_main_sp.jpg);
    }

    /*ご挨拶*/
    .about_intro_container{
        padding-bottom: 8rem;
    }

    .page_section_heading{
        font-size: 2.1rem;
        margin-bottom: 4.8rem;
    }

    .about_intro_text_jp{
        font-size: 1.5rem;
        margin-bottom: 5rem;
    }

    .about_intro_text_en{
        font-size: 1.3rem;
    }

    /*プロフィール*/
    .about_profile_container{
        padding-bottom: 6rem;
    }

    .about_profile_img{
        margin-bottom: 5rem;
    }
    
    .about_profile_img img{
        aspect-ratio: 3 / 2; 
        object-fit: cover;
    }

    .about_profile_inner + .about_profile_inner{
        margin-top: 7.2rem;
    }

    .about_profile_name{
        width: 100%;
        margin-bottom: 2.8rem;
    }

    .about_profile_name .jp{
        font-size: 1.8rem;
    }

    .about_profile_name .en{
        margin-left: 1.8rem;
        font-size: 1.2rem;
    }

    .about_profile_text_jp{
        width: 100%;
        font-size: 1.4rem;
        margin-bottom: 2.8rem;
    }

    .about_profile_text_en{
        width: 100%;
        font-size: 1.3rem;
    }

    /*歴史*/

    .about_history_container{
        padding-top: 6rem;
        padding-bottom: 8rem;
    }
    
    .about_history_inner{
        flex-direction: column-reverse;
    }

    .about_history_text_jp{
        font-size: 1.4rem;
        margin-bottom: 4.8rem;
    }

    .about_history_text_en{
        font-size: 1.3rem;
    }

    .about_history_imgs{
        margin-top: 0;
        margin-bottom: 4rem;
    }

    .about_history_img{
        width: 100%;
    }
    
    .about_history_img + .about_history_img{
        margin-top: 2rem;
    }

    .about_history_img figcaption{
        font-size: 1.3rem;
        padding-top: 1rem;
    }
    


    /* --- 鑑定・査定・買取 --- */

    .buy_page_header_container {
        background-image: url(img/buy_main_sp.jpg);
    }
    
    /*イントロダクション*/
    .buy_intro_container{
        padding-bottom: 6rem;
    }

    .buy_intro_heading{
        margin-bottom: 3.6rem;
    }

    .buy_intro_heading .jp{
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .buy_intro_heading .en{
        font-size: 1.3rem;
    }

    .buy_intro_inner + .buy_intro_inner{
        margin-top: 6rem;
    }

    .buy_intro_text_jp{
        width: 100%;
        font-size: 1.4rem;
        line-height: 2;
        margin-bottom: 3.2rem;
    }

    .buy_intro_text_en{
        width: 100%;
        font-size: 1.3rem;
    }

    /*流れ*/

    .buy_flow_container{
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .buy_flow_item + .buy_flow_item{
        margin-top: 1.6rem;
        padding-top: 3.6rem;
    }

    .buy_flow_item + .buy_flow_item::before{
        width: 14px !important;
        height: 14px !important;
    }

    .buy_flow_item_heading{
        padding: 1.6rem;
        font-size: 1.6rem;
    }

    .buy_flow_item_text{
        padding-top: 1.8rem;
        font-size: 1.3rem;
    }

    .buy_flow_caution{
        padding-top: 6rem;
        padding-bottom: 6rem;
        margin-top: 6rem;
        margin-bottom: 6rem;
    }

    .buy_flow_caution_item{
        font-size: 1.3rem;
    }


    /* --- 展示会　一覧 --- */

    .page_exhibition_container{
        margin-bottom: 0;
    }

    .exhibition_page_header_container {
        background-image: url(img/exhibition_main_sp.jpg);
    }

    .exhibition_list_container + .exhibition_list_container{
        margin-top: 8rem;
    }

    .exhibition_list_header{
        margin-bottom: 4rem;
    }

    .exhibition_list_heading{
        font-size: 2rem;
    }

    /*ドロップダウンメニュー*/

    /* セレクトボックス全体のラッパー要素 */
    .exhibition_year_archive {
        width: 13.6rem;
        height: 3.2rem;
    }

    /* セレクト本体の装飾 */
    .exhibition_year_archive select {
        padding: .5rem .8rem;
        font-size: 1.3rem;
    }

    /* 矢印（三角形）の描画 */
    .exhibition_year_archive_arrow{
        right: 1.4rem;
    }

    .exhibition_year_archive_arrow::before {
        width: 8px;
        height: 5px;
    }

    .exhibition_year_error{
        font-size: 1.6rem;
    }

    /*ページャー（WP-PageNavi）*/

    .wp-pagenavi {
        margin-bottom: 8rem;
    }

    .wp-pagenavi a,
    .wp-pagenavi span {
        font-size: 1.9rem;
        margin: 0 1rem;
    }

    .wp-pagenavi .previouspostslink{
        margin-right: 1rem;
    }

    .wp-pagenavi .nextpostslink{
        margin-left: 1rem;
    }

    /* --- 展示会　個別記事 --- */

    .exhibition_post_container{
        padding-top: 0;
        padding-bottom: 0;
        background: none;
    }

    .exhibition_post_header{
        margin-bottom: 4rem;
    }

    .exhibition_post_icon{
        font-size: 1.3rem;
        padding: .5rem .7rem;
        margin-bottom: 2rem;
    }

    .exhibition_post_date{
        font-size: 1.5rem;
        padding-bottom: 1.8rem;
    }

    .exhibition_post_title{
        font-size: 2rem;
    }

    .post_body{
        font-size: 1.4rem;
    }

    .post_body > * + * {
        margin-top: 2.4rem;
    }

    .post_body figure{
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
    
    .post_body h1 {
        font-size: 2.2rem;
        margin-top: 4rem;
    }
    
    .post_body h2 {
        font-size: 2rem;
        margin-top: 4rem;
    }

    .post_body h3 {
        font-size: 1.8rem;
    }

    .post_body hr.wp-block-separator{
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

    .wp-block-image :where(figcaption){
        margin-top: 1rem !important;
    }

    .wp-block-button__link{
        width: 23rem !important;
        height: 5.3rem !important;
        font-size: 1.5rem !important;
        margin: 2rem 0;
    }

    ol.wp-block-list{
        margin-left: 2rem;
    }

    ul.wp-block-list{
        margin-left: 2rem;
    }

    .related_post_container{
        margin-top: 6rem;
        border-top: 1px solid rgba(52, 59, 55, 0.15);
        padding-top: 6rem;
    }

    .related_post_header{
        margin-bottom: 3.6rem;
    }

    .related_post_heading{
        font-size: 2rem;
    }

    /* --- お問い合わせ --- */

    .contact_page_header_container {
        background-image: url(img/contact_main_sp.jpg);
    }

    .contact_intro_text{
        margin-bottom: 6rem;
    }

    .contact_intro_text_jp{
        font-size: 1.4rem;
        margin-bottom: 3.2rem;
    }

    .contact_intro_text_en{
        font-size: 1.3rem;
    }

    .contact_form_container{
        padding: 4rem 2rem;
    }

    .form_item + .form_item {
        padding-top: 3.2rem;
    }

    .form_title {
        width: 100%;
        padding-top: 0;
        flex-direction: row;
        align-content: center;
        margin-bottom: 1.6rem;
        line-height: 1;
    }

    .form_item:first-child .form_title {
        padding-top: 0
    }

    .form_title .jp {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 1.2rem;
    }

    .form_title .en {
        font-size: 1.3rem;
    }

    .form_box {
        width: 100%;
    }

    .form_box input,
    .form_box textarea {
        font-size: 1.6rem;
    }

    .form_box input {
        padding: .7rem 1rem;
    }

    .form_box textarea {
        padding: .7rem 1rem;
    }

    .wpcf7-list-item-label {
        font-size: 1.5rem;
    }

    .wpcf7-list-item {
        margin-left: 0 !important;
        margin-right: 2rem !important;
        margin-top: .8rem !important;
        margin-bottom: .8rem !important;
    }
    
    .wpcf7-list-item-label::before {
        width: 1.4rem;
        height: 1.4rem;
        margin-right: .6rem;
    }

    input[type="radio"]:checked + .wpcf7-list-item-label::before {
        box-shadow: inset 0 0 0 .2rem #fff;
    }

    .wpcf7-submit {
        width: 23rem;
        height: 5.3rem;
        font-size: 1.6rem;
        margin: 3rem auto 0;
    }

    .cf7-cf-turnstile {
        text-align: center;
        margin-top: 4rem !important;
    }

    /* --- 404 --- */

    .page_other_container{
        margin-bottom: 10rem;
    }

    .other_page_header_container {
        background-image: url(img/other_main_sp.jpg);
    }

    .error_intro_title {
        font-size: 2.2rem;
    }

    .page_404_link{
        margin: 4rem auto 0;
    }


}

@media print,
screen and (max-width: 320px) {
    html {
        font-size: 56%;
    }
}
