@charset "utf-8";

/* ------------------------------------------------------------------------------------
 web fonts　ウェブフォントファイルを変更した場合はv=1.0の数字を変更（キャッシュ対策）
------------------------------------------------------------------------------------ */
@font-face {
    font-family: 'design_plus';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/design_plus.woff?v=1.1') format('woff');
}

@font-face {
    font-family: 'footer_bar';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/footer_bar.woff?v=1.1') format('woff');
}

@font-face {
    font-family: 'tiktok_x_icon';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/tiktok_x_icon.woff?v=1.0') format('woff');
}




/* ----------------------------------------------------------------------
 reset css
---------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    -webkit-text-size-adjust: 100%;
}

ul,
ol {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a:focus {
    outline: none;
}

ins {
    text-decoration: none;
}

mark {
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
}

table td,
table th {
    text-align: center;
    vertical-align: middle;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

button,
input,
select,
textarea {
    outline: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 100%;
}

input,
textarea {
    background-image: -webkit-linear-gradient(hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0));
    -webkit-appearance: none;
    border-radius: 0;
    /* Removing the inner shadow, rounded corners on iOS inputs */
}

textarea {
    width: 100%;
    height: 160px;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
}

input[type="radio"] {
    -webkit-appearance: radio;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

iframe {
    max-width: 100%;
}

svg {
    display: block;
}

*:focus {
    outline: none;
}

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

/* clearfix */
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}




/* ----------------------------------------------------------------------
 基本設定
---------------------------------------------------------------------- */
html {
    height: 100%;
    position: relative;
}

html:before {
    content: '';
    width: 100%;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
}

body {
    overflow-x: hidden;
    height: 100%;
    padding: 80px 0px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}


a {
    text-decoration: none;
}

a,
a:before,
a:after,
input {
    transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease;
}

.clear {
    clear: both;
}

.hide {
    display: none;
}

.post_content {
    word-wrap: break-word;
}

.post_content>:last-child {
    margin-bottom: 0;
}



/* レイアウト */
#container {
    position: relative;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    min-height: 100vh;
}

#main_content {
    background: #f4f1ef;
    padding: 40px 0 70px;
    position: relative;
}

#main_content:has(#blog_list) {
    padding: 120px 0;
}

#main_col {
    width: 930px;
    margin: 0 auto;
}

#article {
    background: #fff;
    position: relative;
    padding: 40px 50px;
}


@media screen and (max-width: 1200px) {
    #article {
        padding: 40px;
    }
}

@media screen and (max-width: 800px) {
    #article {
        padding: 20px;
    }
}

#single_post_title {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

#single_post_title .title {
    font-size: 28px;
    line-height: 1.5;
}

#single_post_title .title.animate {
    opacity: 1;
    transition: opacity 1.4s ease 0.3s;
    word-wrap: break-word;
}

#single_post_title .meta {
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Arial';
}

#single_post_title .meta .news_category {
    font-size: 14px;
    color: #999;
    border-left: 1px solid #ddd;
    padding: 0 0 0 10px;
    margin: 0 0 0 12px;
}

#single_post_title .date {
    position: relative;
    color: #999;
    font-size: 14px;
    margin: 0;
    display: block;
    font-family: 'Arial';
}

#single_post_title .update {
    position: relative;
    color: #999;
    font-size: 14px;
    display: block;
    margin: 0 0 0 15px;
    font-family: 'Arial';
}

#single_post_title .update:before {
    font-family: 'design_plus';
    content: '\e943';
    font-size: 14px;
    display: inline-block;
    margin: 0 2px 0 0;
    vertical-align: -1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#single_post_image {
    position: relative;
    margin: 0 50px 50px;
    height: 480px;
    aspect-ratio: 830/480;
}

#single_post_image img {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    object-fit: cover;
}


/* 本文 */

#main_content.paged .post_content {
    padding-top: 50px;
}

.post_content a:hover {
    text-decoration: underline;
}



/* ----------------------------------------------------------------------
　ページ上部　ヘッダー
---------------------------------------------------------------------- */
body.admin-bar #header {
    top: 32px;
}

#header {
    z-index: 100;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 80px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

body.header_hidden #header {
    transform: translate3d(0, -100%, 0);
    transition: transform 0.25s ease;
}

body.hide_page_header_bar #header {
    background: transparent !important;
    position: absolute !important;
}

body.hide_page_header_bar.open_header #header:after {
    display: none;
}

body.open_header #header {
    position: fixed;
    animation: open_header_animation 0.8s ease forwards;
    top: 0 !important;
}

body.close_header #header {
    position: fixed;
    animation: close_header_animation 0.3s ease forwards;
    top: 0 !important;
}

body.admin-bar.open_header #header {
    top: 32px !important;
}

body.admin-bar.close_header #header {
    top: 32px !important;
}

body.open_header #header:after,
body.hide_page_header #header:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

body.hide_page_header.hide_page_header_bar #header:after {
    display: none;
}

@keyframes open_header_animation {
    0% {
        transform: translate3d(0, -100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes close_header_animation {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(0, -100%, 0);
    }
}


/* ロゴ */
@media screen and (min-width:801px) {
    body.no_header_logo_image #header_logo {
        display: none;
    }
}

@media screen and (max-width:800px) {
    body.no_header_logo_image_mobile #header_logo {
        display: none;
    }
}

body:has(#article) #header_logo {
    display: none;
}

body:has(#article) #header_logo2 {
    display: block;
}


#header_logo {
    width: 210px;
    height: 210px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    z-index: 200;
}

#header_logo.animate a {
    opacity: 1;
}

#header_logo img {
    display: block;
    transition: opacity 0.3s ease-in-out;
    max-width: 100%;
    height: auto;
}

#header_logo img.mobile {
    display: none;
}

#header_logo a {
    width: 210px;
    height: 210px;
    display: block;
    padding: 20px;
    aspect-ratio: 1/1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: opacity 1.4s ease 0.5s;
}

#header_logo a:hover img {
    opacity: 0.5;
}

#header_logo a .logo_text {
    font-weight: 500;
    line-height: 1.4;
}

#header_logo a:hover .logo_text {}

#header_logo a {
    opacity: 0;
}

#header_logo.animate a {
    opacity: 1;
}

body.hide_header_message.hide_page_header_bar #header_logo {
    top: 0 !important;
}

body.hide_logo #header_logo,
body.hide_logo #header_logo2 {
    display: none !important;
}

body.hide_page_header #header_logo,
body.hide_page_header #header_logo2 {
    display: none !important;
}

body.hide_page_header.show_page_header_bar #header_logo2 {
    display: block !important;
}

body.hide_page_header.show_page_header_bar.hide_logo #header_logo2 {
    display: none !important;
}


/* 小さいロゴ */
#header_logo2 {
    z-index: 200;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

body.show_text_logo #header_logo2 {
    display: block;
}

@media screen and (min-width:801px) {
    body.no_header_logo_image #header_logo2 {
        display: block;
    }
}

@media screen and (max-width:800px) {
    body.no_header_logo_image_mobile #header_logo2 {
        display: block;
    }
}

body.home.no_header_logo_image #header_logo2 {
    opacity: 0;
    transition: opacity 1.4s ease 0.5s;
}

body.home.no_header_logo_image #header_logo2.animate {
    opacity: 1;
}

#header_logo2 a {
    height: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#header_logo2 .icon_image {
    width: 80px;
    height: 80px;
    background: #937960;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#header_logo2 .text_image {
    padding: 0 30px;
    height: 80px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

body.open_header #header_logo2,
body.close_header #header_logo2 {
    display: inline-block;
}

#header_logo2 img {
    display: block;
    transition: opacity 0.3s ease-in-out;
    max-height: 40px;
    width: auto;
}

#header_logo2 img.mobile {
    display: none;
}

#header_logo2 .icon_image:hover img {
    opacity: 0.5;
}

#header_logo2 .text_image:hover img {
    opacity: 0.5;
}

#header_logo2 .logo_text {
    font-weight: 500;
    padding-left: 30px;
}

@media screen and (max-width:800px) {
    .text_image_mobile+.logo_text {
        display: none;
    }
}

body.single #header_logo {
    display: none;
}

body.single #header_logo2 {
    display: block;
}

body.hide_page_header_bar #header_logo2 {
    display: none;
}

body.no_header_logo_image.hide_page_header_bar #header_logo2 {
    display: block;
}

body.no_header_logo_image.hide_page_header_bar.open_header #header_logo2 {
    display: none;
}

body.no_header_logo_image.hide_page_header_bar.close_header #header_logo2 {
    display: none;
}


/* サイトの説明文 */
#site_desc {
    width: 80px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

body.home #site_desc {
    opacity: 0;
}

body.home #site_desc.animate {
    opacity: 1;
    transition: opacity 1.4s ease 2.0s;
}

#site_desc .desc {
    font-size: 16px;
    font-weight: 500;
    writing-mode: vertical-rl;
    display: inline-block;
    text-align: left;
    position: relative;
}


/* グローバルメニュー */
body.hide_page_header_bar #global_menu {
    display: none;
}

#global_menu {
    width: 100%;
    height: 80px;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

#global_menu>ul {
    position: relative;
    text-align: center;
    font-size: 0;
    padding-inline-start: 40px;
}

#global_menu>ul>li {
    display: inline-block;
    position: relative;
    line-height: 1;
    text-align: center;
    font-size: 16px;
}

#global_menu>ul>li>a {
    color: #000;
    text-decoration: none;
    height: 80px;
    line-height: 80px;
    padding: 0 19px;
    display: block;
    position: relative;
    overflow: hidden;
}

#global_menu>ul>li.active>a {}

#global_menu ul ul {
    background: #f3f3f3;
    display: none;
    width: 250px;
    position: absolute;
    top: 80px;
    margin: 0;
    padding: 0;
    z-index: 100;
}

#global_menu ul ul ul {
    left: 100%;
    top: 0 !important;
    margin: 0;
}

#global_menu ul ul li {
    line-height: 1.5;
    font-size: 14px;
    padding: 0;
    margin: 0;
    text-align: left;
    position: relative;
    display: block;
}

#global_menu ul ul a {
    color: #000;
    display: block;
    position: relative;
    padding: 15px 20px 13px;
    height: auto;
    line-height: 1.6;
    margin: 0;
}

#global_menu ul ul a:hover {
    text-decoration: none;
}

#global_menu>ul>li.current-menu-item>a,
#global_menu>ul>li.current-menu-parent>a,
#global_menu>ul>li.current-menu-ancestor>a {}

#header.active #global_menu>ul>li>a {}

#global_menu ul ul li.menu-item-has-children>a:before {
    font-family: 'design_plus';
    content: '\e910';
    color: #000;
    display: block;
    position: absolute;
    right: 9px;
    top: 19px;
    font-size: 10px;
}


/* ドロワーメニュー */
@keyframes side_icon_animation {
    0% {
        transform: translate3d(0, -100%, 0);
    }

    100% {
        transform: translate3d(0, 80px, 0);
    }
}

#drawer_menu_button {
    display: none;
}

#drawer_menu {
    display: none;
}

#side_icon_button {
    position: absolute;
    right: 0;
    top: 80px;
}

body.open_header #side_icon_button {
    position: fixed;
    top: -1px;
    animation: side_icon_animation 0.8s ease forwards;
    z-index: 1;
    top: 0 !important;
}

#side_icon_button .item {
    width: 81px;
    height: 80px;
}

#side_icon_button a {
    color: #937960;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#side_icon_button a.no_icon {
    background: #937960;
    border-color: #937960;
    color: #fff !important;
}

#side_icon_button .item:first-of-type a {
    border-top: 1px solid #ddd;
}

#side_icon_button a:hover span,
#side_icon_button a:hover:before {
    opacity: 0.5;
}

#side_icon_button a.no_icon:hover span,
#side_icon_button a.no_icon:hover:before {
    opacity: 1;
}

#side_icon_button span {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
    transition: opacity 0.2s ease;
    text-align: center;
}

.icon_button a:before {
    display: block;
    font-family: "footer_bar";
    font-size: 20px;
    margin: 0 0 8px 0;
    transition: opacity 0.2s ease;
}

.icon_button .google_icon {
    font-family: 'Material Symbols Rounded';
    font-weight: 300 !important;
    font-style: normal !important;
    margin: 2px 7px 0 0;
    font-size: 26px;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

#side_icon_button .google_icon {
    font-size: 28px;
    margin: 0 0 -2px 0;
}

.icon_button a.twitter:before {
    content: "\ea96";
}

.icon_button a.facebook:before {
    content: "\e944";
    font-family: 'design_plus';
    font-size: 22px;
}

.icon_button a.instagram:before {
    content: "\ea92";
}

.icon_button a.youtube:before {
    content: "\ea9d";
}

.icon_button a.line:before {
    content: "\e90f";
    font-size: 18px;
}

.icon_button a.spotify:before {
    content: "\ea94";
}

.icon_button a.heart:before {
    content: "\e9da";
}

.icon_button a.star1:before {
    content: "\e9d9";
}

.icon_button a.star2:before {
    content: "\e9d7";
}

.icon_button a.list1:before {
    content: "\e9bb";
}

.icon_button a.list2:before {
    content: "\e907";
}

.icon_button a.fire:before {
    content: "\e9a9";
}

.icon_button a.bubble:before {
    content: "\e96c";
}

.icon_button a.cart:before {
    content: "\e93a";
}

.icon_button a.bell:before {
    content: "\e951";
}

.icon_button a.profile:before {
    content: "\e923";
}

.icon_button a.user:before {
    content: "\e90a";
    font-size: 16px;
}

.icon_button a.map:before {
    content: "\e909";
}

.icon_button a.film:before {
    content: "\e913";
}

.icon_button a.camera:before {
    content: "\e905";
    font-size: 14px;
}

.icon_button a.news:before {
    content: "\e904";
}

.icon_button a.office:before {
    content: "\e903";
}

.icon_button a.home:before {
    content: "\e900";
}

.icon_button a.help:before {
    content: "\e901";
    font-size: 19px;
}

.icon_button a.light:before {
    content: "\e902";
    font-size: 20px;
}

.icon_button a.menu:before {
    content: "\e90e";
    font-size: 13px;
}

.icon_button a.grid:before {
    content: "\e90d";
    font-size: 14px;
}

.icon_button a.search:before {
    content: "\e90c";
}

.icon_button a.tel:before {
    content: "\e90b";
}

.icon_button a.calendar:before {
    content: "\e908";
}

.icon_button a.mail:before {
    content: "\e906";
    font-size: 12px;
}

.icon_button a.pdf:before {
    content: "\e910";
}

.icon_button a.pencil:before {
    content: "\e911";
}

.icon_button a.clock:before {
    content: "\e912";
}

.icon_button a.tiktok:before {
    content: "\e94d";
    font-family: 'design_plus';
}

.icon_button a.crown:before {
    content: "\e940";
    font-family: 'design_plus';
    font-size: 21px;
}

.icon_button a.share:before {
    content: "\f1e0";
    font-family: 'design_plus';
}

#page_header {
    width: calc(100% + 2px);
    margin: -80px -1px 0;
    height: 400px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#page_header .catch {
    max-height: 100%;
    padding: 0;
    color: #fff;
    text-align: center;
    z-index: 3;
    line-height: 1.6;
}

#page_header .catch,
#page_header_small .catch {
    font-size: 28px;
}

#page_header .catch,
#page_header_small .catch {
    font-family: var(--tcd-font-type1);
    font-weight: 600;
}


#page_header .catch span {
    display: block;
    position: relative;
    transition: transform 1.8s ease, opacity 1.8s ease;
    transform: translate3d(0, 30px, 0);
    opacity: 0;
}

#page_header .catch span.animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

#page_header .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
}

#page_header .overlay {
    background-color: rgba(0, 0, 0, 0.1);
}

#page_header .bg_image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

#page_header .bg_image img {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    object-fit: cover;
}

/* パンくずリンク */
.breadcrumb_type2 {
    background: #f4f1ef;
    border-bottom: 1px solid #ddd;

}

#bread_crumb {
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
    height: 60px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: thin;
    border-top: none;
}

body.hide_page_header #bread_crumb {
    display: none;
}

.breadcrumb_type3 #bread_crumb {
    background: #f6f6f6;
}

#bread_crumb ul {
    height: 60px;
    line-height: 60px;
    padding: 0;
    overflow-y: hidden;
    white-space: nowrap;
}


#bread_crumb li {
    display: inline;
    font-size: 14px;
    margin: 0 10px 0 0;
    padding: 0 20px 0 0;
    position: relative;
}

#bread_crumb li:after {
    font-family: 'design_plus';
    content: '\e910';
    font-size: 11px;
    color: #000;
    display: block;
    height: 13px;
    line-height: 13px;
    position: absolute;
    right: 0px;
    top: 2px;
}

#bread_crumb li:last-of-type:after {
    display: none;
}

#bread_crumb,
#bread_crumb li.last {}

#bread_crumb li a {
    color: #000;
    display: inline-block;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

#bread_crumb li a:hover {
    opacity: 0.5;
}

#bread_crumb li.category a {
    display: none;
}

#bread_crumb li.category a:first-of-type,
#bread_crumb li.category a:only-of-type {
    display: inline-block;
}

#bread_crumb li.home a {
    position: relative;
    width: 16px;
}

#bread_crumb li.home a span {
    opacity: 0;
}

#bread_crumb li.home a:before {
    font-family: 'design_plus';
    content: '\e90c';
    font-size: 12px;
    color: #000;
    display: inline-block;
    top: 0px;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}




/* ----------------------------------------------------------------------
 フッター
---------------------------------------------------------------------- */

/* 画像カルーセル */
#footer_image_carousel.splide {
    visibility: visible;
}

#footer_image_carousel.no_slide .splide__list {
    display: flex;
    flex-wrap: wrap;
}

#footer_image_carousel .item {
    width: 322px;
    height: auto;
    aspect-ratio: 322/209;
    position: relative;
    overflow: hidden;
}

#footer_image_carousel.no_slide .splide__list .item {
    flex: 1 1 0%;
}

#footer_image_carousel img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}



/* ロゴエリア */
#footer {
    border-top: 1px solid #ddd;
}

#footer_top {
    display: flex;
    flex-wrap: wrap;
}

#footer_top>div {
    flex: 1 1 0%;
    border-left: 1px solid #ddd;
    padding: 60px 60px;
}

#footer_top>div:first-of-type {
    border-left: none;
}

#footer_top .footer_menu_mobile {
    display: none;
}


/* ロゴ */
#footer_logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#footer_logo img {
    display: block;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    margin: 0 auto;
}

#footer_logo a:hover img {
    opacity: 0.5;
}

#footer_logo a .logo_text {
    font-weight: 500;
}

#footer_logo a:hover .logo_text {}

#footer_logo .logo_image.mobile {
    display: none;
}


/* メニュー */
.footer_menu li {
    margin: 0 0 30px 0;
    font-size: 14px;
}

.footer_menu li:last-of-type {
    margin: 0;
}

.footer_menu li a {
    display: block;
}

.footer_menu li a:hover {
    color: rgba(0, 0, 0, 0.5) !important;
}

/* 住所 */
#footer_address {
    text-align: center;
    font-size: 14px;
    line-height: 2;
    border-top: 1px solid #ddd;
    padding: 15px;
}

#footer_address span {
    padding: 0 0.5em;
}

/* コピーライト */
#copyright {
    border-top: 1px solid #ddd;
    height: 60px;
    line-height: 60px;
    position: relative;
    text-align: center;
    font-size: 12px;
}


/* 上部へ戻る*/
#return_top {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: fixed;
    right: 0px;
    bottom: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: end;
    z-index: 2;
}

#return_top a {
    color: #000;
    width: 80px;
    line-height: 80px;
    font-size: 14px;
    font-weight: 500;
    writing-mode: vertical-rl;
    display: inline-block;
    text-align: left;
    position: relative;
    padding: 60px 0 30px 0;
}

#return_top a:before {
    content: '\e90f';
    font-family: 'design_plus';
    display: block;
    transform: rotate(90deg);
    position: absolute;
    top: 35px;
}

#return_top.active {
    opacity: 1;
}

#return_top span,
#return_top a:before {
    transition: opacity 0.2s ease;
}

#return_top a:hover span,
#return_top a:hover:before {
    opacity: 0.5;
}


/* SNSボタン */
#footer_sns {
    position: fixed;
    left: 0px;
    bottom: 20px;
    z-index: 10;
    width: 80px;
    background: #fff;
    padding: 20px 0 0;
}

#footer_sns li {
    display: block;
    margin: 0;
}

#footer_sns li a {
    width: 80px;
    height: 35px;
}

#footer_sns.color_type1 li a:before {
    color: #937960;
}

body.hide_page_header_bar #footer_sns,
body.hide_page_side_bar #footer_sns {
    display: none;
}


/* SNSボタン（全箇所共通） */
.sns_button_list {
    font-size: 0;
    z-index: 20;
    text-align: center;
}

.page-template-page-column-child .entry-title,
.single-post h1.entry-title {
    font-family: 'Hiragino Mincho ProN', '游明朝', 'Noto Serif JP', serif !important;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #b28a56 !important;
}

/* 1104追記 */
#global_menu ul ul li.menu-item a {
    position: relative;
    display: block;
    padding: 15px 20px 15px 70px;
}

#global_menu ul ul li.menu-item a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#global_menu ul ul li.menu-item:nth-child(1) a::before {
    background-image: url(../img/syringe.svg);

}

#global_menu ul ul li.menu-item:nth-child(2) a::before {
    background-image: url(../img/surgical.svg);


}

#global_menu ul ul li.menu-item:nth-child(3) a::before {
    background-image: url(../img/conditions.svg);

}

#global_menu ul ul li.menu-item:nth-child(4) a::before {
    background-image: url(../img/health_cross.svg);

}

#global_menu ul ul li.menu-item:nth-child(5) a::before {
    background-image: url(../img/pill.svg);

}

#global_menu ul ul li.menu-item:nth-child(6) a::before {
    background-image: url(../img/drip.svg);

}


/* 1113追記 */
#global_menu::after {
    position: absolute;
    content: "";
    background-color: #c9aa75;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    z-index: -1;

    opacity: 0;
    pointer-events: none;
    /* ← 非表示中はクリック無効化 */
    transition: opacity 0.5s ease;
    /* 出入りどちらも同じ速度 */
}

#global_menu.show-after::after {
    opacity: 1;
    pointer-events: auto;
    /* 表示中はクリック可 */
}



#global_menu ul li {
    position: initial;
}

#global_menu ul ul.sub-menu {
    padding-top: 20px;
}

#global_menu ul ul.sub-menu li {
    text-align: right;
}

#global_menu ul ul.sub-menu li:nth-child(2n) {
    text-align: left;
}

/* 
#global_menu ul ul.sub-menu {
    background-color: unset;
    width: fit-content;
    padding: 20px 100px;
    grid-template-columns: repeat(2, 1fr);
    left: 0px;
    right: 0;
    margin: auto;
    gap: 11px;
    transition: .5s;
    display: grid;
}

.sub-menu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  pointer-events: auto;
} */

#global_menu ul ul.sub-menu {
    background-color: unset;
    width: fit-content;
    padding: 20px 100px;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    right: 0;
    margin: auto;
    gap: 11px;
    display: none;
    /* JSでdisplay:grid制御 */
    opacity: 0;
    position: absolute;
    /* メインメニューの下に出す場合 */
    transition: none;
    /* JSで制御するので不要 */
}



.menu-item-has-children {
    transition: .5s;
}


#global_menu ul ul.sub-menu li a {
    display: inline-block;
    text-align: center;
    padding: 30px 20px 30px 70px;
    background-color: #fff;
    width: 273px;
    height: 114px;
    transition: .5s;
    font-size: 1rem;
}

#global_menu ul ul.sub-menu li a:hover {
    opacity: .6;
}

/* 251211　追記 */
.tribeau-banner {
    text-align: center;
    margin: 0 auto 60px;
    width: 500px;
    height: auto;
}

@media (max-width: 800px) {
    .tribeau-banner {
        width: 300px;
    }
}

.tribeau-banner a img {
    width: 100%;
    height: auto;
    transition: transform 0.35s ease-out;
}

.tribeau-banner a img:hover {
    transform: translateY(-5px);
}


/* ────────── design-plus.css ────────── */
:root {
    --tcd-font-type1: Arial, "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
    --tcd-font-type2: "Times New Roman", Times, "Yu Mincho", "游明朝", "游明朝体", "Hiragino Mincho Pro", serif;
    --tcd-font-type3: Palatino, "Yu Kyokasho", "游教科書体", "UD デジタル 教科書体 N", "游明朝", "游明朝体", "Hiragino Mincho Pro", "Meiryo", serif;
    --tcd-font-type-logo: "Noto Sans JP", sans-serif;
}

.post_content>*:first-child {
    margin-top: 0;
}


/* ----------------------------------------------------------------------
 Underline - アンダーライン
---------------------------------------------------------------------- */



/* ----------------------------------------------------------------------
 flame - 囲み枠
---------------------------------------------------------------------- */
.q_frame {
    line-height: 1.8;
    position: relative;
    padding: 1.3em 2em;
    margin-bottom: 2em;
    border: 1px solid #ddd;
}

*+.q_frame {
    margin-top: 2.5em;
}

.q_frame_label {
    max-width: calc(100% - 2em);
    line-height: 1.4;
    font-weight: 600;
    display: inline-block;
    padding: 0 1em;
    background: inherit;
    position: absolute;
    top: -0.7em;
    left: 1em;
}

@media (max-width: 800px) {
    .q_frame {
        padding: 1em 1.5em;
    }

    .q_frame_label {
        padding: 0 0.5em;
    }
}


.well {
    margin-bottom: 30px;
    padding: 1.1em 2em;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fafafa;
}

.well2 {
    margin-bottom: 30px;
    padding: 1.1em 2em;
    border: 1px solid #ddd;
}

.well3 {
    margin-bottom: 30px;
    padding: 1.1em 2em;
    border: 1px dashed #ddd;
    background: #fafafa;
}

.wl_red {
    border-color: #ebccd1;
    background-color: #f2dede;
    color: #a94442 !important;
}

.wl_yellow {
    border-color: #faebcc;
    background-color: #fcf8e3;
    color: #8a6d3b !important;
}

.wl_blue {
    border-color: #bce8f1;
    background-color: #d9edf7;
    color: #31708f !important;
}

.wl_green {
    border-color: #d6e9c6;
    background-color: #dff0d8;
    color: #3c763d !important;
}

@media screen and (max-width: 800px) {

    .well,
    .well2,
    .well3 {
        padding: .9em .8em .9em 1em;
    }
}


/* ----------------------------------------------------------------------
 ol - 番号付きリスト
---------------------------------------------------------------------- */

/* リストデザイン */
.q_styled_ol {
    counter-reset: item;
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 2em;
    position: relative;
}

.q_styled_ol li {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 0.4em;
    display: block;
    padding-left: 2em;
}

.q_styled_ol li:before {
    position: absolute;
    left: 0;
    counter-increment: item;
    content: counter(item);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 1.5em;
    min-width: 1.5em;
    height: 1.5em;
    background: rgba(var(--tcd-accent-color, 0, 0, 0), 1);
    color: #fff;
    border-radius: 50%;
    line-height: 1;
    margin-top: 0.3em;
    margin-right: 0.7em;
}

:root {
    /* 基本カラー */
    --tcd-accent-color: 0, 0, 0;
}


/* ----------------------------------------------------------------------
 Underline - アンダーライン
---------------------------------------------------------------------- */



/* ----------------------------------------------------------------------
 flame - 囲み枠
---------------------------------------------------------------------- */
.q_frame {
    line-height: 1.8;
    position: relative;
    padding: 1.3em 2em;
    margin-bottom: 2em;
    border: 1px solid #ddd;
}

*+.q_frame {
    margin-top: 2.5em;
}

.q_frame_label {
    max-width: calc(100% - 2em);
    line-height: 1.4;
    font-weight: 600;
    display: inline-block;
    padding: 0 1em;
    background: inherit;
    position: absolute;
    top: -0.7em;
    left: 1em;
}

@media (max-width: 800px) {
    .q_frame {
        padding: 1em 1.5em;
    }

    .q_frame_label {
        padding: 0 0.5em;
    }
}


.well {
    margin-bottom: 30px;
    padding: 1.1em 2em;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fafafa;
}

.well2 {
    margin-bottom: 30px;
    padding: 1.1em 2em;
    border: 1px solid #ddd;
}

.well3 {
    margin-bottom: 30px;
    padding: 1.1em 2em;
    border: 1px dashed #ddd;
    background: #fafafa;
}

.wl_red {
    border-color: #ebccd1;
    background-color: #f2dede;
    color: #a94442 !important;
}

.wl_yellow {
    border-color: #faebcc;
    background-color: #fcf8e3;
    color: #8a6d3b !important;
}

.wl_blue {
    border-color: #bce8f1;
    background-color: #d9edf7;
    color: #31708f !important;
}

.wl_green {
    border-color: #d6e9c6;
    background-color: #dff0d8;
    color: #3c763d !important;
}

@media screen and (max-width: 800px) {

    .well,
    .well2,
    .well3 {
        padding: .9em .8em .9em 1em;
    }
}


/* ----------------------------------------------------------------------
 ol - 番号付きリスト
---------------------------------------------------------------------- */

/* リストデザイン */
.q_styled_ol {
    counter-reset: item;
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 2em;
    position: relative;
}

.q_styled_ol li {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 0.4em;
    display: block;
    padding-left: 2em;
}

.q_styled_ol li:before {
    position: absolute;
    left: 0;
    counter-increment: item;
    content: counter(item);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 1.5em;
    min-width: 1.5em;
    height: 1.5em;
    background: rgba(var(--tcd-accent-color, 0, 0, 0), 1);
    color: #fff;
    border-radius: 50%;
    line-height: 1;
    margin-top: 0.3em;
    margin-right: 0.7em;
}

/* ----------------------------------------------------------------------
 Underline - アンダーライン
---------------------------------------------------------------------- */



/* ----------------------------------------------------------------------
 flame - 囲み枠
---------------------------------------------------------------------- */
.q_frame {
    line-height: 1.8;
    position: relative;
    padding: 1.3em 2em;
    margin-bottom: 2em;
    border: 1px solid #ddd;
}

*+.q_frame {
    margin-top: 2.5em;
}

.q_frame_label {
    max-width: calc(100% - 2em);
    line-height: 1.4;
    font-weight: 600;
    display: inline-block;
    padding: 0 1em;
    background: inherit;
    position: absolute;
    top: -0.7em;
    left: 1em;
}

@media (max-width: 800px) {
    .q_frame {
        padding: 1em 1.5em;
    }

    .q_frame_label {
        padding: 0 0.5em;
    }
}


.well {
    margin-bottom: 30px;
    padding: 1.1em 2em;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fafafa;
}

.well2 {
    margin-bottom: 30px;
    padding: 1.1em 2em;
    border: 1px solid #ddd;
}

.well3 {
    margin-bottom: 30px;
    padding: 1.1em 2em;
    border: 1px dashed #ddd;
    background: #fafafa;
}

.wl_red {
    border-color: #ebccd1;
    background-color: #f2dede;
    color: #a94442 !important;
}

.wl_yellow {
    border-color: #faebcc;
    background-color: #fcf8e3;
    color: #8a6d3b !important;
}

.wl_blue {
    border-color: #bce8f1;
    background-color: #d9edf7;
    color: #31708f !important;
}

.wl_green {
    border-color: #d6e9c6;
    background-color: #dff0d8;
    color: #3c763d !important;
}

@media screen and (max-width: 800px) {

    .well,
    .well2,
    .well3 {
        padding: .9em .8em .9em 1em;
    }
}


/* ----------------------------------------------------------------------
 ol - 番号付きリスト
---------------------------------------------------------------------- */

/* リストデザイン */
.q_styled_ol {
    counter-reset: item;
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 2em;
    position: relative;
}

.q_styled_ol li {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 0.4em;
    display: block;
    padding-left: 2em;
}

.q_styled_ol li:before {
    position: absolute;
    left: 0;
    counter-increment: item;
    content: counter(item);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 1.5em;
    min-width: 1.5em;
    height: 1.5em;
    background: rgba(var(--tcd-accent-color, 0, 0, 0), 1);
    color: #fff;
    border-radius: 50%;
    line-height: 1;
    margin-top: 0.3em;
    margin-right: 0.7em;
}

/* ----------------------------------------------------------------------
 font-color - フォントカラー
---------------------------------------------------------------------- */
.red {
    color: red
}

/* 赤色 */
.blue {
    color: #2ca9e1
}

/* 青色 */
.green {
    color: #82ae46
}

/* 緑色 */
.orange {
    color: #ff7d00
}

/* 橙色 */
.yellow {
    color: #fff000
}

/* 黄色 */
.pink {
    color: #ff0084
}

/* ピンク */
.gray {
    color: #999999
}

/* グレー */



/* style */
body {
    font-size: 16px;
}

.single_title {
    font-size: 28px;
}


body,
input,
textarea {
    font-family: var(--tcd-font-type1);
}

.single_title {
    font-family: var(--tcd-font-type1);
    font-weight: 600;
}


a {
    color: #000;
}

:root {
    --tcd-accent-color: 201, 170, 117;
}

#header_logo2 .icon_image,
#comment_tab li.active a,
.widget_tab_post_list_button div.active,
.widget_categories a:before,
#single_post_category,
#header_slider_wrap .slick-dots .slick-active button::before,
#side_icon_button a.no_icon,
#drawer_icon_button .item.long a,
.tcdw_search_box_widget .tag_list a:hover {
    background-color: #c9aa75;
}


#side_icon_button a,
#footer_icon_banner a:before,
.icon_button .google_icon,
#footer_sns.color_type1 li a:before,
#bread_crumb,
#bread_crumb li.last,
#related_post .headline,
.news_category_button li.current a,
.schedule_content table,
#comments .headline,
.splide__arrow:before,
#treatment_list .header .catch,
#page_contents .content_header .common_catch,
#post_pagination p,
#global_menu>ul>li.current-menu-item>a,
.megamenu_a .category_list li.active a,
#global_menu>ul>li.active_megamenu_button>a,
.faq_list .title.active,
.page_navi span.current,
#drawer_icon_button a,
#drawer_icon_button a:before,
#drawer_icon_button .item.long a,
.doctor_meta .item.name a:hover {
    color: #c9aa75;
}


a:hover,
#header_logo a:hover,
#drawer_menu .menu ul ul a:hover,
#drawer_menu .menu li>a:hover>span:after,
#drawer_menu .menu li.active>a>.button:after,
#featured_post a:hover,
#drawer_menu .close_button:hover:before,
#drawer_menu_search .button_area:hover:before,
#drawer_lang_button li a:hover,
.megamenu_b .splide__arrow:hover:before,
#related_post .meta .news_category:hover,
#header.active #header_search_button:hover:before,
#global_menu>ul>li>a:hover,
#global_menu>ul>li.current-menu-parent>a,
#global_menu>ul>li.current-menu-ancestor>a,
#header_search_button:hover:before,
#header_search .button:hover label:before,
.single_post_nav:hover span:after,
.faq_list .title:hover,
#drawer_menu .menu a:hover,
#drawer_menu .menu>ul>li.active>a,
#drawer_menu .menu>ul>li.current-menu-item>a,
#drawer_menu .menu>li>a>.title:hover,
.cb_news_list .news_category_sort_button li.active span,
.cb_news_list .news_category_sort_button li:hover span,
#searchform .submit_button:hover:before,
#footer_social_link li a:hover:before,
#next_prev_post a:hover,
.tcdw_search_box_widget .search_area .search_button:hover:before,
#single_author_title_area .author_link li a:hover:before,
.author_profile a:hover,
#post_meta_bottom a:hover,
.cardlink_title a:hover,
.comment a:hover,
.comment_form_wrapper a:hover,
#tcd_toc.styled .toc_link:hover,
.tcd_toc_widget.no_underline .toc_widget_wrap.styled .toc_link:hover,
#news_list .category:hover,
#single_post_title .meta .news_category:hover,
#treatment_list .post_list a:hover,
.mega_treatment_category a:hover .title {
    color: #a1824d;
}

#archive_blog,
.breadcrumb_type2 #bread_crumb,
.cb_carousel,
.cb_free_space:before,
#treatment_list,
#mobile_menu li li a,
#mobile_menu li ul,
body.single-post #main_content,
#page_contents .color_bg_content::before,
.cb_two_column {
    background-color: #f4f1ef;
}

.post_content a,
.widget_block a,
.textwidget a,
#no_post a,
#page_404_header .desc a {
    color: #1578d6;
}

.simplebar-wrapper {
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
}

/* 追加 */
#page_404_header {
    width: 100%;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    position: relative;
    background: #f4f1ef;
}

#container:has(#page_404_header) #footer_image_carousel {
    display: none;
}

#page_404_header .content {
    position: absolute;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 50px;
    color: #000;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#page_404_header .desc {
    line-height: 2;
    margin: 15px 0 0 0;
}

.common_catch {
    font-size: 28px;
}

.post-thumbnail {
    width: 100%;
    margin-bottom: 20px;
}

.post-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}

.post-content>:last-child {
    margin-bottom: 0;
}

.pr {
    margin-left: 10px;
    color: #999;
    font-size: 12px;
    display: block;
    font-family: 'Arial';
    line-height: 1;
    padding: 4px 8px;
    border: 1px solid #999;
}

#blog_list {
    width: 930px;
    margin: 0 auto;
}

.posts_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.posts_list li {
    position: relative;
}

.posts_list li:after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    background: #ddd;
    z-index: 2;
}

.posts_list li:nth-child(2n):after,
.posts_list li:last-of-type:after {
    display: none;
}

.posts_list a {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.posts_list img {
    display: block;
    width: 100%;
    height: auto;
    transition: .4s;
}

.posts_list a:hover img {
    opacity: .6;
}

.posts_list-info {
    background: #fff;
    padding: 32px 40px;
    flex: 1;
}

.posts_list-ttl {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.4;
}

.posts_list-date {
    font-size: 14px;
    color: #999;
}


.posts_list-btn {
    width: fit-content;
    margin: 80px auto 0px;
}

.posts_list-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 270px;
    max-width: 100%;
    min-height: 60px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    box-sizing: border-box;
    border-radius: 10px;
    text-align: center;
    background: #c9aa75;
    transition: .4s;
    border: 2px solid #f5e6c8;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Hiragino Mincho ProN', '游明朝', 'Noto Serif JP', serif;
}

.posts_list-btn a:hover {
    opacity: .6;
}

.pagination {
    margin: 50px 0 0;
}

.pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: fit-content;
    margin: 0 auto;
}

.pagination li {
    border: 1px solid var(--border-color);
    overflow: hidden;
    border: 1px solid #ddd;
    margin-left: -1px;
}


.pagination li>* {
    font-family: "Arial";
    background: #fff;
    color: #000;
    font-size: 14px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
}

@media screen and (max-width: 1221px) {
    @media screen and (max-width: 800px) {
        .pagination li>* {
            font-size: 12px;
            width: 40px;
            height: 40px;
            line-height: 40px;
        }

        .posts_list-date {
            font-size: 12px;
            bottom: 20px;
        }

        .posts_list-info {
            padding: 15px 20px;
        }

        .posts_list-ttl {
            font-size: 14px;
        }
    }

}

.pagination li .current {
    color: #c9aa75;
}

.pagination .next,
.pagination .prev {
    font-family: 'design_plus';
    font-size: 12px;
    top: 1px;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (hover: hover) {

    .pagination li a:hover {
        transition: 0s;
        color: rgba(0, 0, 0, 0.5) !important;
    }
}

.pagination li:has(.dots) {
    border: none;
}

.pagination .dots {
    width: 30px;
    background: none;
    border: none;
}

/* パーツ */


.post_content img {
    display: block;
    width: 100%;
    height: auto;
}

.parts-mokuji {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 400px;
    margin-bottom: 24px;
}

.post_content * {
    line-height: 1.6;
    box-sizing: border-box;
}

.post_content a {
    color: #1A0DAB;
    transition: .4s;
    text-decoration: underline;
}

.post_content a:hover {
    opacity: .6;
}


.post_content h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 2.4em 0 1.3em;
    border-bottom: 3px solid #f5e6c8;
    display: inline-block;
    padding-bottom: .5em;
    width: 100%;
    line-height: 1.4;
}

.post_content h3 {
    font-weight: bold;
    font-size: 20px;
    border-left: 4px solid #f5e6c8;
    padding: 10px 0 10px 16px;
    display: block;
    margin: 2em 0 1.4em;
    line-height: 1.4;
}

.post_content h2+h3 {
    margin-top: 0;
}

.post_content h4 {
    font-size: 19px;
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: bold;
    color: #c9aa75;
}

.post_content h3+h4 {
    margin-top: 0;
}


.post_content p {
    margin-bottom: 20px;
}

.post_content table {
    word-break: break-all;
    text-align: center;
}

.subhead {
    position: relative;
    margin-top: 2em;
    margin-bottom: 1em;
    padding-left: 1.4em;
    font-size: 18px;
    font-weight: bold;
}

.subhead::before {
    position: absolute;
    top: -.1em;
    left: 3px;
    content: '\1F7C6';
    display: block;
    font-size: 1.2em;
    color: #a0784a;
}

.numhead {
    position: relative;
    margin-top: 2em;
    margin-bottom: 1em;
    padding-left: 2em;
    font-size: 18px;
    font-weight: bold;
    color: #b86b5b;
}

.numhead-num {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.6em;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #d8c2a8;
    color: #fff;
}

.post_content .red {
    font-weight: bold;
    color: #b86b5b;
}

.post_content .orange {
    font-weight: bold;
    color: #f4a439;
}

.caution {
    display: inline-block;
    font-size: 11px;
    color: #707070;
    margin-bottom: 20px;
}

p .caution {
    margin-bottom: 0;
}

.post_content *:has(+.caution) {
    margin-bottom: 2px;
}

.bold {
    font-weight: bold;
}

.marker {
    background: linear-gradient(transparent 70%, #fbd5cd 70%);
    font-weight: bold;
}

.table {
    margin-bottom: 24px;
}

.table,
.table td,
.table th {
    box-sizing: border-box;
    border: 1px solid #d0d0d0;
}

.table thead th {
    background: #c9aa75;
    color: #fff;
}

.table thead th a {
    color: #fff;
}

.table thead th,
.table tbody th {
    font-weight: bold;
    text-align: center;
}

.table tbody th {
    vertical-align: middle;
    background: #f7f7f2;
}

.table th,
.table td {
    padding: 0.8em 0.6em;
}

.post_content .table th>:last-child,
.post_content .table td>:last-child {
    margin-bottom: 0;
}

.table th ul:not([class]),
.table td ul:not([class]),
.table th ol:not([class]),
.table td ol:not([class]),
.table th .checklist,
.table td .checklist {
    text-align: left;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
}

.table th ul:not([class]) li,
.table td ul:not([class]) li,
.table th ol:not([class]) li,
.table td ol:not([class]) li,
.table th .checklist li,
.table td .checklist li {
    width: fit-content;
}

.table img {
    margin: 0 auto;
}

.table-logo {
    margin: 0 auto 4px;
    max-width: 150px;
}


.table .c-btn {
    margin-top: 0;
    width: 100%;
}

.table .c-btn a {
    margin: 0 auto;
    width: 100%;
    min-width: auto;
    font-size: 16px;
}

.box {
    padding: 24px;
}

.simplebox {
    border: 2px solid #e8dbc5;
    box-sizing: border-box;
    margin-bottom: 24px;
}

.simplebox:has(+.simplebox) {
    margin-bottom: 10px;
}

.post_content .simplebox>:last-child {
    margin-bottom: 0;
}

.post_content .simplebox>:first-child {
    margin-top: 0;
}

div[data-box="bg"] {
    background: #fffaf2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: none;
}

.box-ttl {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 12px;
}

.post_content ul:not([class]) {
    margin-bottom: 24px;
    margin-left: 0;
}

.post_content ul:not([class]) li {
    list-style-type: none;
    position: relative;
    padding-left: 1.2em;
}

.post_content ul:not([class]) li::before {
    content: "";
    position: absolute;
    display: block;
    background: #c4a98b;
    width: .5em;
    aspect-ratio: 1 / 1;
    top: .6em;
    left: .2em;
    border-radius: 50%;
}

.post_content ol:not([class]) {
    list-style-type: decimal;
    padding: 0 0 0 20px;
    margin-bottom: 24px;
}

.post_content ul:not([class]) li+li,
.post_content ol:not([class]) li+li,
.post_content .checklist li+li {
    margin-top: 10px;
}

.checklist {
    margin-bottom: 24px;

}

.checklist li {
    position: relative;
    padding-left: 24px;
}

.checklist li::before {
    position: absolute;
    left: 0;
    top: .2em;
    content: '';
    display: block;
    width: 1.2em;
    aspect-ratio: 1 / 1;
    background: url(../img/checklist-icon.png) center center / contain no-repeat;
}

.flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.flex img {
    width: 100%;
    height: auto;
}

.flex-txt>:last-child {
    margin-bottom: 0;
}

.float {
    margin-bottom: 24px;
}

.float::after {
    content: "";
    display: table;
    clear: both;
}

.float img {
    float: left;
    max-width: 48%;
    margin: 0 20px 10px 0;
}

.float-txt>:last-child {
    margin-bottom: 0;
}

.arrow-down {
    clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
    width: 50px;
    margin: 10px auto;
    aspect-ratio: 1;
    background-color: #c9aa75;
    transform: rotate(90deg);
}

.full-img {
    width: 100%;
    margin-bottom: 24px;
}

.full-img img {
    display: block;
    width: 100%;
    height: 100%;
}

.quote {
    position: relative;
    color: #2b2b2b;
    margin-bottom: 2em;
    padding: 2em 2.4em;
    box-shadow: none;
    background: #fafafa;
    border: none;
    border-left: 3px solid #6d6d6d;
}

.quote::before {
    line-height: 40px;
    top: 5px;
    left: 10px;
}

.quote::after {
    text-align: left;
    line-height: 60px;
    bottom: 10px;
    right: -2px;
}

.quote::before,
.quote::after {
    content: '"';
    font-style: italic;
    font-size: 30px;
    font-weight: normal;
    color: #6d6d6d;
    width: 30px;
    height: 30px;
    position: absolute;
}

.quote .full-img {
    width: 80%;
    margin: 0 auto 20px;
}

.post_content .quote>:last-child {
    margin-bottom: 0;
}

.fukidashi {
    background: #c9aa75;
    font-size: 18px;
    padding: 12px 20px;
    margin: 30px auto 25px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    position: relative;
    width: fit-content;
    min-width: 40%;
}

.fukidashi::after {
    position: absolute;
    content: "";
    border-top: 20px solid #c9aa75;
    border-left: 20px solid transparent;
    border-right: 19px solid transparent;
    left: 50%;
    bottom: -15px;
    z-index: 1;
    margin-left: -20px;
}

.matome {
    margin-bottom: 24px;
    margin-top: 40px;
    border: 2px solid #c9aa75;
    background: #fffaf2;
}

.post_content .matome>:last-child {
    margin-bottom: 0;
}

.matome-ttl {
    display: block;
    width: fit-content;
    text-align: center;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 13px;
    text-decoration-color: #ffe1dd;
    text-underline-offset: -5px;
    text-decoration-skip-ink: none;
}

.matome-inner {
    padding: 20px;
}

.survey {
    margin-bottom: 24px;
    background: #fafafa;
}

.survey-ttl {
    position: relative;
    font-size: 18px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: bold;
    color: #c9aa75;
    padding-bottom: 12px;
}

.survey-ttl::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    content: "";
    display: block;
    height: 2px;
    width: 50%;
    background: linear-gradient(to right, #eaeaea, #d8c2a8, #eaeaea);
    margin: 1.2em auto 0;
}

.post_content .survey-inner>:last-child {
    margin-bottom: 0;
}

.hosoku {
    box-sizing: border-box;
    border-top: 3px solid #c9aa75;
    margin-bottom: 24px;
    background: #fafafa;
}

.hosoku-ttl {
    position: relative;
    padding-left: 1.4em;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hosoku-ttl::before {
    position: absolute;
    top: -.1em;
    left: 0;
    content: '\1F7C6';
    display: block;
    font-size: 1.2em;
    color: #c9aa75;
}

.hosoku-inner {
    font-size: 14px;
}

.hosoku-inner>:last-child {
    margin-bottom: 0;
}

.c-btn {
    width: fit-content;
    margin: 30px auto 40px;
}

.c-btn a {
    position: relative;
    display: block;
    width: fit-content;
    min-width: 330px;
    max-width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    box-sizing: border-box;
    border-radius: 10px;
    text-align: center;
    background: #f4a439;
    box-shadow: inset 0 -8px 5px -5px rgba(0, 0, 0, 0.3);
}

.c-btn a:hover {
    text-decoration: none;
}

.c-btn a::after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: block;
    content: "";
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    width: 8px;
    aspect-ratio: 1 / 1;
    background-color: #fff;
}

.tag {
    margin-bottom: 24px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-content: center;
    margin-bottom: 24px;
}

.tag .item {
    background: #fafafa;
    border: 1px solid #dadada;
    border-radius: 4px;
    color: #8b9195;
    font-size: 12px;
    letter-spacing: 0;
    display: inline-block;
    padding: 8px 14px;
    margin-bottom: 0;
    box-sizing: border-box;
    line-height: 1.4;
}

.tag .item.on {
    border: 2px solid #f5e6c8;
    background: #fffaf2;
}

.scrolltable {
    overflow-x: auto;
    width: 100%;
    margin-bottom: 24px;
}

.scrolltable thead th {
    width: 220px;
}

.scrolltable thead th:first-of-type {
    width: 180px;
}

.scrolltable .table {
    width: 110%;
    margin-bottom: 0;
}

.scrolltable .table th,
.scrolltable .table td {
    text-align: center;
}


.stickytable-top thead {
    position: sticky;
    top: 79px;
    left: 0;
    z-index: 5;
}

@media (max-width: 1221px) {
    .stickytable-top thead {
        top: 59px;
    }
}

.stickytable-top thead th:not(:last-of-type) {
    position: relative;
}

.stickytable-top thead th:not(:last-of-type):after {
    position: absolute;
    top: 0;
    right: -1px;
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #d0d0d0;
}


.scrolltable .stickytable-left {
    min-width: 110%;
}

.stickytable-left {
    will-change: transform;
}

.stickytable-left thead th {
    background: #f7f7f2;
    width: 180px;
    color: #000;
}

.stickytable-left thead th:first-child {
    width: 160px;
}

.stickytable-left tbody th,
.stickytable-left thead th:first-child {
    position: sticky;
    top: 0;
    left: 0;
    background: #c9aa75;
    z-index: 1;
    color: #fff;
}

.stickytable-left tbody th::before,
.stickytable-left thead th:first-child::before {
    position: absolute;
    top: 0;
    left: -1px;
    content: "";
    display: block;
    height: 100%;
    width: 1px;
    background: #d0d0d0;
}

.stickytable-left tbody th a,
.stickytable-left thead th:first-child a {
    color: #fff;
    font-size: 14px;
}

.stickytable-left .c-btn a {
    padding: 14px 18px;
}

.stickytable-left .c-btn a::after {
    right: 6px;
}

.jump {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    font-size: 18px;
    margin-bottom: 24px;
}

.jump .item {
    text-align: center;
    margin-bottom: 0;
}

.jump a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 18px 16px 36px;
    color: #c9aa75;
    font-weight: bold;
    border: 2px solid #c9aa75;
    background: #fffaf2;
    text-decoration: none;
    position: relative;
    box-sizing: border-box;
}

.jump a:after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #c9aa75;
    border-bottom: 2px solid #c9aa75;
    transform: rotate(45deg);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    transition: .4s;
}

.jump a:hover {
    text-decoration: none;
}

.jump a:hover:after {
    transform: translate(-50%, 4px) rotate(45deg);
}

.numlist {}

.numlist li {
    margin-bottom: 24px;
}

.post_content .numlist-ttl {
    position: relative;
    padding-left: 2em;
    margin-top: 30px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: bold;
}

.numlist-num {
    position: absolute;
    top: .8em;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.6em;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #d8c2a8;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.pickup {
    font-size: 20px;
    padding: 10px 20px;
    margin: 30px 0 10px;
    font-weight: bold;
    color: #c9aa75;
    background: linear-gradient(to right, #fffdf8, #fdf9f2);
    border: 2px solid #e8dbc5;
}

.pickup-mintxt {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
    font-weight: normal;
    color: #000;
}

.post_content .pickup>:last-child {
    margin-bottom: 0;
}

.ranking {
    margin-bottom: 24px;
}

.ranking-head {
    position: relative;
    padding-top: 10px;
    padding-left: 2.6em;
    margin: 30px 0 10px;
    border-top: 6px double #c9aa75;
    font-size: 20px;
    font-weight: bold;
}

.ranking-catch {
    display: block;
    font-size: 14px;
    font-weight: normal;
}

.ranking-icon {
    position: absolute;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    background: url(../img/rank-04.svg) center center / contain no-repeat;
    width: 40px;
    font-size: 14px;
    aspect-ratio: 1 / 1;
}

.ranking-head .ranking-icon_01 {
    background: url(../img/rank-01.svg) center center / contain no-repeat;
}

.ranking-head .ranking-icon_02 {
    background: url(../img/rank-02.svg) center center / contain no-repeat;
}

.ranking-head .ranking-icon_03 {
    background: url(../img/rank-03.svg) center center / contain no-repeat;
}


.flow-wrap {
    margin-bottom: 24px;
}

.flow {
    position: relative;
    margin-bottom: 66px;
}

.flow-wrap .flow:last-of-type {
    margin-bottom: 30px;
}

.flow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%) rotate(90deg);
    clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
    width: 40px;
    aspect-ratio: 1;
    background-color: #c9aa75;
}

.flow-wrap .flow:last-of-type::after {
    display: none;
}

.flow-ttl {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    padding-left: 50px;
    margin-top: 30px;
    margin-bottom: 16px;
}

.flow-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #faf0e6;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.flow-icon::before {
    content: '\1F7C6';
    color: #a0784a;
    font-weight: bold;
    font-size: 1em;
}

.flow-wrap .flow:nth-child(even) .flow-icon::before {
    content: '\2BCE';
}

.post_content .flow-ttl p {
    position: relative;
    padding-bottom: 4px;
    margin-bottom: 0;
    line-height: 1.4;
}

.post_content .flow-ttl p::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #d8c2a8, transparent);
    margin-top: 0.4em;
}


.post_content .flow-inner p {
    margin-bottom: 8px;
}

.flow-inner {
    padding-left: 50px;

}

.post_content .flow-inner>:last-child {
    margin-bottom: 0;
}

.relatedpost {
    margin: 40px 0;
}

.post_content .relatedpost-ttl {
    background: #767676;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.relatedpost-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 14px;
}

.relatedpost-post .image-wrap {
    width: 100%;
    margin-bottom: 8px;
}

.relatedpost-post .image_wrap img {
    display: block;
    width: 100%;
    height: auto;
}

.post_content .relatedpost-post-ttl {
    margin-bottom: 0;
    font-size: 14px;
}

.faq {
    margin-bottom: 24px;
}

.faq:has(+ .faq) {
    margin-bottom: 0;
}

.faqQ {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: bold;
}

.faqQ,
.faqQ p {
    line-height: 1.4;
}

.faqQ-icon {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    aspect-ratio: 1 / 1;
    background: #c9aa75;
}

.faqQ-icon::before {
    content: "Q";
    color: #fff;
    font-size: 26px;
    line-height: 1;
}

.post_content .faqQ>:last-child,
.post_content .faqA>:last-child {
    margin-bottom: 0;
}

.faqA {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faqA-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    width: 40px;
    aspect-ratio: 1 / 1;
    background: #b86b5b;
}

.faqA-icon::before {
    content: "A";
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
}

.search-container table {
    max-width: 100%;
    word-break: break-all;
}

.search-container table thead th:nth-child(2) {
    width: 15%;
}


.right-link {
    width: fit-content;
    font-size: 14px;
    margin: auto 0 auto auto;
    margin-bottom: 20px;
    text-align: right;
}

.right-link-icon {
    width: fit-content;
    font-size: 14px;
    margin: auto 0 auto auto;
    margin-bottom: 20px;
    text-align: right;
}

.right-link-icon a {
    position: relative;
    padding-left: 1.2em;
}

.right-link-icon a::before {
    content: '';
    position: absolute;
    top: .1em;
    left: 0px;
    display: block;
    background: url(../img/icon-link-arrow.svg) center center / contain no-repeat;
    width: 1em;
    aspect-ratio: 1 / 1;
}

.post_content .right-link:has(+.right-link),
.post_content .right-link:has(+.right-link-icon),
.post_content .right-link-icon:has(+.right-link),
.post_content .right-link-icon:has(+.right-link-icon) {
    margin-bottom: 8px;
}

.imgScrollBox {
    width: 100%;
    background: #fafafa;
    padding: 20px 20px 10px 20px;
    box-sizing: border-box;
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 30px;
}

.imgScrollBox-wrap {
    width: fit-content;
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}

.imgScrollBox-list {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.imgScrollBox-list li {
    flex: 0 0 calc(33.33% - 16px);
    max-width: calc(33.33% - 16px);
    box-sizing: border-box;
    margin: 0 8px;
    text-align: center;
    position: relative;
}

.imgScrollBox-list li:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    height: 1px;
    width: 26px;
    background-color: transparent;
}

.imgScrollBox-list img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 8px;
}

.imgScrollBox-list .caption {
    display: block;
    max-width: 100%;
    font-size: 12px;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: break-word;
    text-align: left;
}


@media screen and (max-width: 767px) {
    .imgScrollBox-list li {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }
}

.imgBox-center li {
    width: 33.33%;
}

.imgBox-center {
    overflow-x: hidden;
}

.imgBox-center .imgScrollBox-list {
    justify-content: center;
    gap: 4px;
}

.tabarea {
    margin-bottom: 24px;
}

.tab-list {
    display: flex;
    gap: 4px;
}

.tab-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    gap: 5px;
    border-bottom: 2px solid #c9aa75;
    padding: 0 20px;
    margin: 24px 0 10px;
}

.tab.active {
    background-color: #fff;
    position: relative;
    color: #c9aa75;
}

.tab {
    border-radius: 5px 5px 0 0;
    flex: auto;
    text-align: center;
    border: 2px solid #c9aa75;
    border-bottom: none;
    cursor: pointer;
    width: 100%;
    min-height: 50px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    background: #fafafa;
}

.tab-wrap {
    display: none;
    padding: 12px 14px 14px;
    border: 2px solid #c9aa75;
    border-top: none;
}

.tab-wrap.show {
    display: block;
}

.post_content .tab-wrap>:last-child {
    margin-bottom: 0;
}


.meritdemerit {
    margin-bottom: 24px;
}

.meritdemerit:has(+.meritdemerit) {
    margin-bottom: 10px;
}

.meritdemerit[data-type="merit"] {
    border: 2px solid #c9aa75;
}

.meritdemerit[data-type="merit"] .meritdemerit-ttl {
    background: #fffaf2;
    border-bottom: 2px solid #c9aa75;
}

.meritdemerit[data-type="demerit"] {
    border: 2px solid #bfbbbe;
}

.meritdemerit[data-type="demerit"] .meritdemerit-ttl {
    background: #fafafa;
    border-bottom: 2px solid #bfbbbe;
}

.meritdemerit-ttl {
    padding: 10px 20px;
    font-weight: bold;
    line-height: 1.1;
    font-size: 18px;
}

.meritdemerit-inner {
    padding: 16px 20px;
}

.post_content .meritdemerit-inner>:last-child {
    margin-bottom: 0;
}

.meritdemerit-list {
    position: relative;
    margin: 0;
    margin-bottom: 16px;
}

.meritdemerit-list li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 10px;
}

.meritdemerit-list li:last-child {
    margin-bottom: 0;
}

.meritdemerit-list li:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 100px;
}

.meritdemerit[data-type="merit"] .meritdemerit-list li:before {
    background-color: #c9aa75;
}

.meritdemerit[data-type="demerit"] .meritdemerit-list li:before {
    background-color: #45303e;
}

.review-scroll {
    overflow-x: scroll;
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.review-wrap {
    width: 100%;
    min-width: 86%;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    align-items: center;
    -webkit-align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #fafafa;
    padding: 20px;
    border: 1px solid #e9e2d2;
    white-space: normal;
    overflow: hidden;
    scroll-snap-align: center;
}

.review-top {
    width: 100%;
    margin-bottom: 0;
}

.review-profile {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: start;
    align-items: center;
    margin-bottom: 10px;
}

.review-icon img {
    display: block;
    max-width: 65px;
    height: auto;
    margin: 0;
    margin-right: 10px;
}

.review-icon-w,
.review-icon-m {
    display: block;
    flex-shrink: 0;
    width: 50px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.review-icon-w {
    background: #fff url(../img/review-icon-woman.svg) center center / contain no-repeat;
}

.review-icon-m {
    background: #fff url(../img/review-icon-man.svg) center center / contain no-repeat;
}

.review-name {
    font-weight: 700;
    margin-right: 10px;
}

.review-course {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 16px;
}

.review-course span {
    display: inline-block;
    padding: 4px 6px;
    border-radius: 10px;
    margin-right: 8px;
    background: #c9aa75;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
}

.review-bottom {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.review-bottom img {
    width: 40%;
    height: auto;
}

.map {
    margin-bottom: 24px;
}

.map-ttl {
    width: fit-content;
    font-size: 18px;
    margin: 30px auto 20px;
    padding: 0 14px 8px;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #333;
    position: relative;
}

.map-ttl::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    background-color: #fff;
    rotate: 135deg;
    translate: -50% 0;
}

.map-ttl::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    border: 2px solid;
    border-color: #333 #333 transparent transparent;
    background-color: #ffffff;
    rotate: 135deg;
    translate: -50% 0;
}

.acco {
    margin-bottom: 24px;
}

.acco-ttl {
    position: relative;
    cursor: pointer;
    border: 1px solid #c9aa75;
    margin: 0;
    padding: 15px 45px 11px 20px;
    position: relative;
    background: #fff;
    font-weight: bold;
    font-size: 18px;
}

.acco-ttl.action {
    background: #fffaf2;
}

.acco-info {
    display: none;
    padding: 15px 20px 15px;
}

.post_content .acco-info>:last-child {
    margin-bottom: 0;
}

.acco-cont {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.acco-subttl {
    flex-shrink: 0;
    font-weight: bold;
}

.acco-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: block;
    width: 20px;
    aspect-ratio: 1 / 1;
}

.acco-btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #c9aa75;
}

.acco-btn::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 2px;
    height: 100%;
    background: #c9aa75;
}

.acco-ttl.action .acco-btn::after {
    display: none;
}