@charset "utf-8";
/*
Theme Name:CANON
Theme URI:https://tcd-theme.com/tcd109/
Description:WordPress theme “CANON” is a template developed for hotel, wedding, and bridal websites. It is designed to take advantage of a luxurious and dynamic design, and includes custom post types for introducing guest rooms and services.
Author:TCD
Author URI:https://tcd-theme.com/
Version:1.6
Text Domain:tcd-canon
*/


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

/*@font-face {*/
/*    font-family: 'sns_icon';*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*    font-display: swap;*/
/*    src: url('/wp-content/themes/canon_tcd109/fonts/sns_icon.woff') format('woff');*/
/*}*/


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

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;
    width: 100%;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ddd;
    margin: 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 */
}

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

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

select, option {
    color: #000;
    -webkit-text-fill-color: #000; /* iOSでの文字色を黒に設定 */
    -webkit-appearance: none; /* デフォルトのスタイルを無効にする */
}

button {
    appearance: none;
    -webkit-appearance: none;
}

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: "";
}

/* chromeで画像を縮小した際にぼやけるのを防止 */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}


/* ----------------------------------------------------------------------
 基本設定
---------------------------------------------------------------------- */
html {
    height: 100%;
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    min-height: 100%;
    line-height: 1;
    width: 100%;
    position: relative;
    overscroll-behavior-y: none;
    -webkit-font-smoothing: antialiased;
}

body.admin-bar { /*! padding-top:32px; */
}

a {
    color: #000;
    text-decoration: none;
}

.post_content a, .widget_block a, .textwidget a {
    color: var(--content_link_color);
}

@media (hover: hover) {
    a:where(:hover) {
        color: rgba(0, 0, 0, 0.6);
    }
}

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

.clear {
    clear: both;
}

.hide {
    display: none;
}

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

a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none !important;
}

.mobile_device a[href^="tel:"] {
    pointer-events: auto;
}

/* sup / sub */
sup {
    vertical-align: super;
    font-size: smaller;
}

sub {
    vertical-align: sub;
    font-size: smaller;
}

/* レイアウト */
#container {
    position: relative;
    z-index: 1;
    overscroll-behavior-y: none;
    overflow: clip;
}

body.single-post #container {
    background: #f5f5f5;
}

body:not(.single):not(.page):not(.search):not(.error404) #container:not(:has(#page_header)) {
    border-top: 1px solid #ddd;
}

#main_content {
    width: 1000px;
    margin: 0 auto;
    padding: 0 0 150px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

body.show_sidebar_left #main_content {
    flex-direction: row-reverse;
}

#main_col {
    width: calc(100% - 290px);
}

body.hide_sidebar #main_col {
    margin: 0 auto;
}

body.single-post #main_col {
    width: 100%;
}

body.single-post.show_sidebar #main_col {
    width: calc(100% - 290px);
}

#side_col {
    width: 250px;
    position: relative;
}


/* 文字サイズとフォントタイプ */
body, input, textarea {
    font-size: var(--content_font_size);
    font-family: var(--content_font_type);
}

.rich_font, .p-vertical {
    font-size: var(--catch_font_size);
    font-family: var(--catch_font_type);
}

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

.rich_font_2 {
    font-family: var(--tcd-font-type2);
    font-weight: 600;
}

.rich_font_3 {
    font-family: var(--tcd-font-type3);
    font-weight: 600;
}

.rich_font_logo {
    font-family: var(--tcd-font-type-logo);
    font-weight: var(--tcd-logo-font-weight) !important;
}

@media screen and (max-width: 1200px) {
    .rich_font, .p-vertical {
        font-size: calc(var(--catch_font_size) + var(--catch_font_size_sp) / 2);
    }
}

@media screen and (max-width: 800px) {
    body {
        font-size: var(--content_font_size_sp);
    }

    .rich_font, .p-vertical {
        font-size: var(--catch_font_size_sp);
    }
}


/* ----------------------------------------------------------------------
 共通パーツ
---------------------------------------------------------------------- */
/* メインカラーを文字に適用 */
.main_color {
    color: var(--main_color) !important;
}


/* デザインボタン */
a.design_button {
    min-width: 280px;
    height: 70px;
    line-height: 1.5;
    padding: 0 1.5em;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    z-index: 1;
    color: #fff !important;
    border: 1px solid var(--main_color);
    background: var(--main_color);
    text-decoration: none;
    transition: border-color 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s, opacity 1.4s ease 0s, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0s !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

@media (hover: hover) {
    a.design_button:hover {
        border-color: var(--main_color_light);
        background: var(--main_color_light);
        color: #fff !important;
        text-decoration: none !important;
    }
}


/* スクロールアニメーション */
.inview {
    position: relative;
    transform: translate3d(0, 50px, 0);
    opacity: 0;
    transition: opacity 1.4s ease 0s, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0s;
}

.inview.animate, body.no_page_animation .inview {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}


/* swiperの矢印ナビ */
.swiper-nav-button {
    width: 50px;
    height: 50px;
    border: none;
    z-index: 200;
    transition: opacity 0.75s ease;
}

.swiper-button-prev {
    left: -25px;
    right: auto;
}

.swiper-button-next {
    left: auto;
    right: -25px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}

.swiper-button-next:before, .swiper-button-prev:before {
    font-family: 'normal_icon';
    font-size: 22px;
    top: 2px;
    position: relative;
    color: #000;
    -webkit-font-smoothing: antialiased;
    transition: color 0.25s ease !important;
}

.swiper-button-prev:before {
    content: '\e90f';
    left: 0px;
}

.swiper-button-next:before {
    content: '\e910';
    right: 0px;
}

.swiper-button-disabled {
    opacity: 0 !important;
    pointer-events: auto !important;
}

@media (hover: hover) {
    .swiper-nav-button:hover:before {
        color: #aaa;
    }
}


/* swiperのドットナビ */
.swiper-pagination {
    z-index: 10;
    position: absolute;
    top: auto;
    bottom: 0px;
    left: auto;
}

.swiper-pagination span {
    background: #ddd;
    border: none;
    width: 10px;
    height: 10px;
    opacity: 1;
    margin: 0 8px !important;
    transition: background 0.25s ease;
}

.swiper-pagination span.swiper-pagination-bullet-active {
    background: #000;
    pointer-events: none;
}

@media (hover: hover) {
    .swiper-pagination span:hover {
        background: #000;
    }
}

/* サムネイルver */
.sc_image_carousel_nav {
    text-align: center;
    margin-top: 50px;
}

.sc_image_carousel_nav .swiper-wrapper {
    display: inline-flex;
    -webkit-user-select: none;
    user-select: none;
    width: auto;
    position: relative;
}

.sc_image_carousel_nav .swiper-slide {
    background: #ddd;
    border: none;
    width: 10px !important;
    height: 10px;
    opacity: 1;
    margin: 0 8px !important;
    border-radius: 100%;
    cursor: pointer;
    transition: background 0.25s ease;
}

.sc_image_carousel_nav .swiper-slide.swiper-slide-thumb-active {
    transform: scale(1.4);
    background: #000;
}

@media (hover: hover) {
    .sc_image_carousel_nav .swiper-slide:hover {
        background-color: #000;
    }
}


/* ----------------------------------------------------------------------
 トップページ ヘッダースライダー
---------------------------------------------------------------------- */
#header_slider_container {
    width: 100%;
    height: calc(100vh - 130px);
    position: relative;
    overflow: hidden;
}

#header_slider_container:has(img) {
    background: #222;
}

#header_slider_container.height_type2 {
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: calc(100vh - 130px);
}


/* スライダーエリア */
#header_slider {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#header_slider .swiper-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
}

#header_slider .item {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

#header_slider .item_inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    will-change: transform;
}

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

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

#header_slider .bg_image .mobile {
    display: none;
}


/* コンテンツ */
#header_slider_fixed_content {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.header_slider_content {
    color: #fff;
    position: absolute;
    z-index: 100;
    text-align: center;
    width: 100%;
    padding: 0 80px;
}

.header_slider_content .catch {
    line-height: 1.4;
    position: relative;
}

.header_slider_content .desc {
    line-height: 2.4;
    font-weight: 500;
    font-size: 16px;
}

.header_slider_content .catch + .desc {
    margin: 30px 0 0 0;
}

.header_slider_content .button {
    font-size: 16px;
    width: 280px;
    height: 70px;
    line-height: 70px;
    background: none;
    background: var(--main_color);
    color: #fff;
    display: block;
    cursor: pointer;
    text-align: center;
    margin: 0 auto;
    pointer-events: auto;
}

.header_slider_content * + .button {
    margin-top: 50px;
}

.header_slider_content .logo {
    text-align: center;
}

.header_slider_content .logo img {
    display: block;
    margin: 0 auto;
    max-width: calc(100% - 100px);
    height: auto;
}

.header_slider_content .logo img.mobile {
    display: none;
}

@media (hover: hover) {
    .header_slider_content .button:hover {
        background: var(--main_color_light);
        color: #fff;
    }
}

body.use_page_animation .header_slider_content > * {
    opacity: 0;
    transition: opacity 0.5s ease 1.0s;
}

body.use_page_animation .header_slider_content .logo {
    filter: blur(30px);
}

body.use_page_animation.start_first_animation .header_slider_content > *:nth-child(1) {
    opacity: 1;
    animation: content_animation 1s ease forwards 0.5s;
    transition: opacity 1s ease 0.5s, border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

body.use_page_animation.start_first_animation .header_slider_content > *:nth-child(2) {
    opacity: 1;
    animation: content_animation 1s ease forwards 0.7s;
    transition: opacity 1s ease 0.7s, border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

body.use_page_animation.start_first_animation .header_slider_content > *:nth-child(3) {
    opacity: 1;
    animation: content_animation 1s ease forwards 0.9s;
    transition: opacity 1s ease 0.9s, border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

body.use_page_animation.start_first_animation .header_slider_content > .logo {
    filter: blur(0px);
    animation: none !important;
    transition: opacity 0.5s ease 0.5s, filter 1.4s ease 0.5s !important;
}

@keyframes content_animation {
    0% {
        transform: translate3d(0, 30px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}


/* ズームアウトアニメーション --------------------------------------------------------- */
#header_slider.animation_type_zoom_out .item.p-effect-slidein .bg_image,
#header_slider.animation_type_zoom_out .item.p-effect-slidein.p-effect-reverse .bg_image {
    transform: translate3d(0, 0, 0);
    transition-property: transform;
}

#header_slider.animation_type_zoom_out .item.p-effect-slideout .bg_image {
    transform: translate3d(0, 0, 0);
    transition-property: transform;
}

#header_slider.animation_type_zoom_out .item.p-effect-reverse .bg_image {
    transform: translate3d(0, 0, 0);
}

#header_slider.animation_type_zoom_out .item.p-effect-slideout.p-effect-reverse .bg_image {
    transform: translate3d(0, 0, 0);
    transition-property: transform;
}

#header_slider.animation_type_zoom_out .bg_image img {
    transform: scale(1.4);
}

#header_slider.animation_type_zoom_out .item.p-effect-slidein .bg_image img {
    transform: scale(1);
    transition: transform 10.0s linear 0s;
}

#header_slider.animation_type_zoom_out .item.p-effect-slideout .bg_image img {
    transform: scale(1);
    transition: transform 10.0s linear 0s;
}


/* ズームインアニメーション ----------------------------------------------------------- */
#header_slider.animation_type_zoom_in .item.p-effect-slidein .bg_image,
#header_slider.animation_type_zoom_in .item.p-effect-slidein.p-effect-reverse .bg_image {
    transform: translate3d(0, 0, 0);
    transition-property: transform;
}

#header_slider.animation_type_zoom_in .item.p-effect-slideout .bg_image {
    transform: translate3d(0, 0, 0);
    transition-property: transform;
}

#header_slider.animation_type_zoom_in .item.p-effect-reverse .bg_image {
    transform: translate3d(0, 0, 0);
}

#header_slider.animation_type_zoom_in .item.p-effect-slideout.p-effect-reverse .bg_image {
    transform: translate3d(0, 0, 0);
    transition-property: transform;
}

#header_slider.animation_type_zoom_in .bg_image img {
    transform: scale(1);
}

#header_slider.animation_type_zoom_in .item.p-effect-slidein .bg_image img {
    transform: scale(1.2);
    transition: transform 10.0s linear 0s;
}

#header_slider.animation_type_zoom_in .item.p-effect-slideout .bg_image img {
    transform: scale(1.2);
    transition: transform 10.0s linear 0s;
}


/* 動画 */
#header_slider .bg_video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    pointer-events: none;
}

#header_slider .bg_youtube {
    width: 100%;
    height: 100%;
    max-width: none;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

#header_slider .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}


/* ナビゲーション */
#header_slider .swiper-pagination {
    top: auto;
    bottom: 30px;
    z-index: 3;
}

#header_slider_container:has(#news_ticker) .swiper-pagination {
    bottom: 100px;
}

#header_slider .swiper-pagination span {
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.25s ease;
}

#header_slider .swiper-pagination-bullet-active {
    background: #fff !important;
    transform: scale(1.4);
}

@media (hover: hover) {
    #header_slider .swiper-pagination span:hover {
        background: #fff;
    }
}


/* ニュースティッカー */
#news_ticker {
    position: absolute;
    overflow: hidden;
    left: 0;
    bottom: 0;
    z-index: 5;
    width: 100%;
    height: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

#news_ticker_inner {
    width: 800px;
    height: 70px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

body.use_page_animation #news_ticker_inner {
    opacity: 0;
    transition: opacity 1.0s ease 0.5s;
}

body.use_page_animation.start_first_animation #news_ticker_inner {
    opacity: 1;
}

#news_ticker_carousel {
    width: 800px;
    height: 70px;
    margin: 0;
}

#news_ticker .item {
    opacity: 0;
    height: 70px;
    position: relative;
    line-height: 70px;
    color: #fff;
}

#news_ticker .item:first-child {
    opacity: 1;
}

#news_ticker .item .content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

#news_ticker .date {
    font-family: 'Arial';
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease;
    display: block;
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 20px 0 0;
}

#news_ticker .date:before {
    font-family: 'normal_icon';
    content: '\e903';
    font-size: 18px;
    position: absolute;
    left: 0;
    top: calc(50%);
    transform: translateY(-50%);
    -webkit-font-smoothing: antialiased;
}

#news_ticker .title {
    font-size: 16px;
    transition: color 0.25s ease;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    visibility: visible;
}

#news_ticker .item.no_date .title {
    width: 100%;
}

@media (hover: hover) {
    #news_ticker a:hover {
        color: rgba(255, 255, 255, 0.6);
    }
}


/* ----------------------------------------------------------------------
 コンテンツビルダー
---------------------------------------------------------------------- */
#content_builder {
    background: #fff;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

#content_builder .link_button {
    margin-top: 80px;
    text-align: center;
}

.cb_white_bg + .cb_white_bg {
    padding-top: 0;
    scroll-margin-top: 70px;
}

#content_builder section:last-child {
    padding-bottom: 150px;
}


/* ヘッダー */
.cb_header {
    width: 1000px;
    margin: 0 auto 110px;
    text-align: center;
}

.cb_header .catch {
    margin-top: -10px;
    font-size: var(--catch_font_size);
    font-family: var(--catch_font_type);
    line-height: 1.4;
    font-weight: 500;
}

.cb_header .headline {
    margin-top: -10px;
    font-size: var(--catch_font_size);
    font-family: var(--catch_font_type);
    line-height: 1.4;
    font-weight: 500;
}

.cb_header .headline.no_japanese {
    font-size: calc(var(--catch_font_size) + 10px);
}

.cb_header .sub_title {
    line-height: 1.5;
    margin-top: 15px;
    font-size: 18px;
}

.cb_header .desc {
    line-height: 2.4;
    font-size: 16px;
}

.cb_header .desc .mobile {
    display: none;
}

.cb_header * + .desc {
    margin-top: 40px;
}

.cb_header a {
    color: var(--content_link_color);
}

@media (hover: hover) {
    .cb_header a:hover {
        text-decoration: underline;
    }
}


/* 画像スライダー */
.cb_image_slider {
    padding: 120px 0;
    scroll-margin-top: -50px;
}

.cb_image_slider .sc_image_carousel_container {
    margin: 0 auto 80px;
}


/* デザインコンテンツ */
.cb_design_content {
    padding: 120px 0;
    scroll-margin-top: -50px;
}

.cb_design_content .main_content {
    max-width: 1440px;
    padding: 0 80px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.cb_design_content .main_content.layout_type2 {
    flex-direction: row-reverse;
}

.dc_image_carousel_container {
    width: 50%;
}

.dc_image_carousel .item {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.dc_image_carousel .item img {
    width: 100%;
    height: auto;
}

.dc_image_carousel_pagination {
    position: relative;
    bottom: auto !important;
    margin-top: 50px;
    left: -40px !important;
}

.cb_design_content .main_content.layout_type2 .dc_image_carousel_pagination {
    left: 40px !important;
}

.dc_image_carousel_pagination .swiper-pagination-bullet-active {
    transform: scale(1.4);
}

.cb_design_content .content {
    width: calc(50% + 80px);
    aspect-ratio: 725 / 600;
    margin: 120px 0 0 -80px;
    padding: 80px 80px 80px 160px;
    position: relative;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cb_design_content .main_content.layout_type2 .content {
    margin: 120px -80px 0 0;
    padding: 80px 160px 80px 80px;
}

.cb_design_content .content .catch {
    font-size: 28px;
    font-family: var(--catch_font_type);
    line-height: 1.4;
    font-weight: 500;
}

.cb_design_content .content .desc {
    line-height: 2.4;
    font-size: 16px;
    margin-bottom: -10px;
}

.cb_design_content .content .catch + .desc {
    margin-top: 40px;
}


/* コンテンツカルーセル */
.cb_content_carousel {
    padding: 120px 0;
    position: relative;
    scroll-margin-top: -50px;
}

.cb_white_bg:not(:has(.link_button)) + .cb_content_carousel:not(:has(.cb_header)) {
    margin-top: -40px;
}

.cb_content_carousel_container {
    width: 1000px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.cb_content_carousel_main {
    display: inline-flex !important;
    width: auto;
}

.cb_content_carousel_main .animate_background {
    display: flex;
    flex-wrap: wrap;
}

.cb_content_carousel_main .image_wrap {
    width: 50%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.cb_content_carousel_main .image_wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.cb_content_carousel_main .no_link {
    pointer-events: none;
}

.cb_content_carousel_main .content {
    width: 50%;
    height: 200px;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
}

.cb_content_carousel_main .swiper-slide-active .content {
    border-right: none;
}

.cb_content_carousel_main .swiper-slide-active:only-child .content {
    border-right: 1px solid #ddd;
}

.cb_content_carousel_main .sub_title {
    font-size: 16px;
    margin: 0 0 10px 0;
    line-height: 1.4;
    max-height: 2.8em;
    font-weight: 500;
    overflow: hidden;
    visibility: visible;
}

.cb_content_carousel_main .sub_title span {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.cb_content_carousel_main .title {
    margin-bottom: -10px;
    font-size: 24px;
    font-family: var(--catch_font_type);
    line-height: 1.4;
    max-height: 2.8em;
    font-weight: 500;
    overflow: hidden;
    visibility: visible;
}

.cb_content_carousel_main .title span {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.cb_content_carousel .swiper-button-prev {
    left: -65px;
    top: 74px;
    margin: 0;
}

.cb_content_carousel .swiper-button-next {
    right: -65px;
    top: 74px;
    margin: 0;
}


/* 2カラム */
.cb_two_column {
    padding: 120px 0;
    scroll-margin-top: -50px;
}

.cb_two_column .item_list {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}

.cb_two_column .item {
    display: flex;
    flex-wrap: wrap;
    background: #f5f5f5;
}

.cb_two_column .item.no_link {
    pointer-events: none;
}

.cb_two_column .item:nth-child(2n) {
    flex-direction: row-reverse;
}

.cb_two_column .image_wrap {
    width: 50%;
    height: auto;
    aspect-ratio: 500 / 350;
    position: relative;
    overflow: hidden;
}

.cb_two_column .image_wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.cb_two_column .content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}

.cb_two_column .content .headline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1.4;
}

.cb_two_column .content .title {
    font-size: 34px;
    font-family: var(--catch_font_type);
    font-weight: 500;
    text-align: center;
    margin: 0 20px 0 0;
}

.cb_two_column .content .sub_title {
    font-weight: 500;
    font-size: 16px;
}

.cb_two_column .content .desc {
    line-height: 2.4;
    font-size: 16px;
}

.cb_two_column .content .headline + .desc {
    margin-top: 20px;
}


/* 3カラム */
.cb_three_column {
    padding: 120px 0;
    position: relative;
    scroll-margin-top: -50px;
}

.cb_white_bg:not(:has(.link_button)) + .cb_three_column:not(:has(.cb_header)) {
    margin-top: -40px;
}

.three_column_carousel_container {
    width: 1000px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.three_column_carousel {
    display: inline-flex !important;
    width: auto;
}

.three_column_carousel .item {
    display: block !important;
}

.three_column_carousel .item:last-of-type {
    margin-right: 0 !important;
}

.three_column_carousel .image_wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 330 / 520;
    position: relative;
    overflow: hidden;
}

.three_column_carousel .image_wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.three_column_carousel .no_link {
    pointer-events: none;
}

.three_column_carousel .title {
    font-size: 32px;
    font-family: var(--catch_font_type);
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
    margin: 30px 0 -10px;
    padding: 0 30px;
}

.cb_three_column .swiper-button-prev {
    left: -60px;
    margin-top: -50px;
}

.cb_three_column .swiper-button-next {
    right: -60px;
    margin-top: -50px;
}


/* ブログ一覧 */
.cb_blog_list {
    background: #f5f5f5;
    padding: 120px 0;
    scroll-margin-top: -50px;
}

.cb_blog_list .cb_header {
    margin-bottom: 75px;
}

.index_post_list_wrap {
    position: relative;
    width: 1000px;
    margin: 0 auto;
}

.index_post_list {
    display: none;
    pointer-events: none;
}

.index_post_list.active {
    display: block;
    pointer-events: auto;
}

.cb_blog_list .swiper-button-prev {
    left: -65px;
    top: 100px;
}

.cb_blog_list .swiper-button-next {
    right: -65px;
    top: 100px;
}

.cb_blog_list .category_sort_button_wrap {
    margin-bottom: 35px;
}

.index_post_carousel_wrap {
    opacity: 0;
    position: relative;
}

.index_post_carousel {
    text-align: center;
}

.index_post_carousel .blog_list {
    display: inline-flex;
    width: auto;
}

.index_post_carousel .item {
    text-align: left;
}

.index_post_carousel .item:last-of-type {
    margin-right: 0 !important;
}

.index_post_list.active .index_post_carousel_wrap {
    animation: index_post_list_animate 1.0s ease forwards 0s;
}

@keyframes index_post_list_animate {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* お知らせ */
.cb_news_list {
    padding: 120px 0;
    scroll-margin-top: -50px;
}

.cb_news_list .cb_header {
    margin-bottom: 75px;
}

.cb_news_carousel_wrap {
    width: 1000px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.cb_news_list .news_list {
    flex-wrap: nowrap;
    display: inline-flex !important;
    width: auto;
}

.cb_news_list .news_list .item {
    margin: 1px 0 !important;
    height: auto;
    text-align: left;
    flex-direction: unset;
}

.cb_news_list .news_list .item.swiper-slide-active {
    border-right: none;
}

.cb_news_list .news_list .item.swiper-slide-active:only-child {
    border-right: 1px solid #ddd;
}

.cb_news_list .swiper-button-prev {
    left: -65px;
}

.cb_news_list .swiper-button-next {
    right: -65px;
}


/* フリースペース */
.cb_free_space {
    position: relative;
    padding: 120px 0;
    width: 1000px;
    margin: 0 auto;
    scroll-margin-top: -50px;
}

.cb_free_space.wide_content {
    width: auto;
}


/* 固定ページを表示する場合 */
#front_page_contents {
    padding: 120px 0;
}

#front_page_contents .post_content {
    margin: 0 auto;
}


/* ----------------------------------------------------------------------
 固定ページ
---------------------------------------------------------------------- */
#page_contents {
    padding: 120px 0 150px;
}

body.page #page_contents .post_content {
    width: 1000px;
    margin: 0 auto;
}

body.hide_sidebar #bread_crumb + #page_contents {
    padding-top: 70px;
}


/* ボタン */
.q_button_wrap {
    margin-top: 60px;
}

p + .q_button_wrap {
    margin-top: 55px;
}


/* デザイン見出し1 */
:is(.post_content, .post_content .tcdce-body) .design_headline1 {
    text-align: center;
    font-size: 36px !important;
    margin: 73px 0 40px 0;
    margin-bottom: 40px !important;
    font-family: var(--catch_font_type);
    font-weight: 500;
}

:is(.post_content, .post_content .tcdce-body) .design_headline1 + p:not(:has(img)) {
    margin-top: -7px;
}

:is(.post_content, .post_content .tcdce-body) .design_headline1 + p:has(img) {
    margin-top: 110px;
}

:is(.post_content, .post_content .tcdce-body) .post_row + .design_headline1 {
    margin-top: 110px;
}

:is(.post_content, .post_content .tcdce-body) .design_headline1:first-child {
    margin-top: -5px !important;
}


/* デザイン見出し2 */
:is(.post_content, .post_content .tcdce-body) .design_headline2, .design_headline2 {
    width: auto;
    font-size: 26px !important;
    display: table;
    padding: 0 0 35px 0;
    font-family: var(--catch_font_type);
    position: relative;
}

.design_headline2:after {
    content: '';
    display: block;
    height: 5px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #000;
}

.design_headline2 {
    margin: 0 auto 80px;
}

:is(.post_content, .post_content .tcdce-body) .design_headline2 {
    margin: 115px auto 80px;
}

.design_headline2.inview {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    transition: none;
}

.design_headline2.inview:after {
    width: 0px;
    transition: width 0.5s ease 0.2s;
}

.design_headline2.inview.animate:after {
    width: 100%;
}


/* デザイン見出し3 */
.design_headline3 {
    font-size: 34px !important;
    margin: 45px 0 35px 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
}

p:has(img) + .design_headline3 {
    margin-top: -20px !important;
}

.post_col p:has(img) + .design_headline3 {
    margin-top: 45px !important;
}

.design_headline3 .title {
    font-family: var(--catch_font_type);
}

.design_headline3 .sub_title {
    flex: 0 0 auto;
    font-size: 16px;
    margin: 0 0 0 20px;
    font-family: var(--content_font_type);
}


/* ショートコード用　画像スライダー */
.sc_image_carousel_container {
    max-width: 1000px;
    position: relative;
    margin: 110px auto 70px;
}

.sc_image_carousel_wrap {
    width: 100%;
}

.sc_image_carousel_container.layout_type1 .sc_image_carousel_wrap {
    height: 550px;
}

.sc_image_carousel .item {
    position: relative;
    transform-origin: center;
}

.sc_image_carousel .item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.sc_image_carousel_pagination {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    margin: 50px auto 0;
    height: 16px;
}

.sc_image_carousel_pagination .swiper-pagination-bullet {
    transition: background 0.25s ease;
}

.sc_image_carousel_pagination .swiper-pagination-bullet-active {
    transform: scale(1.4);
}

@media (hover: hover) {
    .sc_image_carousel_pagination .swiper-pagination-bullet:hover {
        background: #000;
    }
}

.sc_image_carousel_container + .post_content > h1:first-child, .sc_image_carousel_container + .post_content > h2:first-child, .sc_image_carousel_container + .post_content > h3:first-child {
    margin-top: 120px !important;
}

/* レイアウトタイプB */
.sc_image_carousel_container.layout_type2 .sc_image_carousel_wrap {
    overflow: visible;
}

.sc_image_carousel_container.layout_type2 .sc_image_carousel .item {
    max-width: 1000px;
    height: auto;
    aspect-ratio: 1000 / 550;
    position: relative;
    overflow: hidden;
    transform: scale(0.7);
    transition: transform 0.25s ease;
    margin: 0 -57px !important;
}

.sc_image_carousel_container.layout_type2 .sc_image_carousel .item.swiper-slide-active {
    transform: scale(1);
}


/* ショートコード用　2カラムレイアウト */
.sc_two_column {
    width: 100%;
    position: relative;
    margin: 70px 0 20px;
    display: flex;
    flex-wrap: wrap;
}

.sc_two_column .item {
    width: calc(50% - 25px);
    margin: 0 50px 50px 0 !important;
}

.sc_two_column .item:nth-child(2n) {
    margin-right: 0 !important;
}

.sc_two_column .desc {
    margin-top: 20px;
}


/* 2カラムレイアウト */
.post_content .post_col p:has(img) {
    margin-bottom: 20px;
}

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

.post_content .design_headline1 + .post_row:not(:has(img)) {
    margin-top: -10px;
}

.post_content .design_headline2 + .post_row {
    margin-top: 0;
}


/* アクセスページ */
.access_page_table td:first-child {
    width: 250px;
    vertical-align: middle;
    text-align: center;
}

.access_page_map_headline {
    margin: 0 0 10px 0 !important;
}

.access_page_gray_bg {
    margin-top: 110px !important;
}

.access_page_gray_bg .q_button_wrap {
    margin-bottom: 20px;
}


/* ウェルネス */
.wellness_page_top_content {
    margin-top: 110px !important;
}

.wellness_page_top_content h3:has(img) {
    margin: -30px 0 -5px 0 !important;
}

.wellness_page_top_content p:has(img) {
    margin: 0 -80px 70px !important;
}

.wellness_page_table td:nth-child(1) {
    width: 210px;
}

.wellness_page_table td:nth-child(2) {
    width: 230px;
}

.wellness_page_table td:nth-child(3) {
    width: 230px;
}

.wellness_page_table td:nth-child(5) {
    width: 230px;
}

.s_table:has(.wellness_page_table) + p {
    margin-top: -30px !important;
}


/* LP */
body.page-template-page-tcd-lp #page_contents {
    padding-left: 80px;
    padding-right: 80px;
}

@media screen and (min-width: 1101px) {
    #lp_style1_content {
        border: 1px solid #ddd;
        max-width: 1000px;
        margin: 120px auto;
        box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
    }

    body:not(:has(#header)) #lp_style1_content {
        margin-top: 0;
    }

    #header_message + #container #lp_style1_content {
        margin-top: 70px;
    }

    #lp_style1_content #page_header {
        margin: -1px -1px 0;
        width: calc(100% + 2px);
    }

    #lp_style1_content #page_contents {
        padding: 110px 50px 120px;
    }
}

.lp_bottom_content {
    margin-top: 110px !important;
}

.lp_bottom_content h3 {
    margin-bottom: 20px !important;
}

.lp_bottom_content .q_button_wrap {
    margin-top: 0px !important;
}


/* FAQ */
.faq_list {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 35px;
}

.faq_list .headline {
    font-size: 24px;
    color: #7ea0c8;
    margin-bottom: 45px;
    padding: 0;
    text-align: center;
}

.faq_list .item {
    border: 1px solid #ddd;
    margin: 0 0 -1px 0;
    position: relative;
    background: #fff;
}

.faq_list .title {
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    font-size: 16px !important;
    line-height: 1.8;
    padding: 27px 40px 25px 30px;
    margin-bottom: 0;
    position: relative;
    transition: color 0.4s ease;
}

.faq_list .title span {
    display: block;
    margin: -0.4em 0;
}

.faq_list .title:before {
    content: '';
    display: block;
    position: absolute;
    top: 35px;
    right: 25px;
    height: 1px;
    width: 11px;
    background: #000;
}

.faq_list .title:after {
    content: '';
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    height: 11px;
    width: 1px;
    background: #000;
}

.faq_list .title.active:after {
    display: none;
}

.faq_list .desc_area {
    height: 0;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.54, 0.07, 0.38, 0.9);
}

.faq_list .desc {
    font-size: 16px;
    line-height: 2.6;
    padding: 20px 30px;
    border-top: 1px solid #ddd;
    background: #f8f8f8;
    transition: opacity 0.7s ease;
    opacity: 0;
}

.faq_list .desc span {
    display: block;
}

.faq_list .title.active {
    color: var(--main_color);
}

@media (hover: hover) {
    .faq_list .title:hover {
        color: var(--main_color);
    }
}

.faq_list .title.active + .desc_area > .desc {
    opacity: 1;
    transition: opacity 1s ease;
}

@media (max-width: 800px) {
    .faq_list .title {
        font-size: 14px !important;
        padding: 20px 50px 18px 20px;
    }

    .faq_list .desc {
        padding: 20px;
        font-size: 14px;
        line-height: 2;
    }

    .faq_list .title:before {
        top: 27px;
        right: 15px;
    }

    .faq_list .title:after {
        top: 22px;
        right: 20px;
    }
}


/* ----------------------------------------------------------------------
 ページヘッダー
---------------------------------------------------------------------- */
#page_header {
    width: 100%;
    height: auto;
    aspect-ratio: 1450 / 560;
    position: relative;
    overflow: hidden;
}

#page_header:not(:has(.image)) {
    border-top: 1px solid #ddd;
    height: auto;
}

body.blog #page_header, body.search #page_header {
    background: #f5f5f5;
}

#page_header .headline {
    background: var(--main_color);
    color: #fff;
    width: 180px;
    height: 180px;
    text-align: center;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 30px;
    line-height: 1.5;
    font-size: var(--headline_font_size);
    font-family: var(--headline_font_type);
    font-weight: 500;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#page_header .headline span {
    opacity: 0;
    transition: opacity 1.5s ease 0s;
}

#page_header:not(:has(.image)) .headline {
    margin-top: 120px;
}

#page_header:not(:has(.image)) .headline span {
    opacity: 1 !important;
}

#page_header .image {
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease 0s;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

#page_header .overlay {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: opacity 1.5s ease 0s;
}

#page_header .image.mobile {
    display: none;
}

body.start_first_animation #page_header .image, body.no_page_animation #page_header .image {
    opacity: 1;
}

body.start_first_animation #page_header .overlay, body.no_page_animation #page_header .overlay {
    opacity: 1;
}

body.start_first_animation #page_header .headline span, body.no_page_animation #page_header .headline span {
    opacity: 1;
}

body.page #page_header + #main_content {
    margin-top: 120px;
}


/* LP用 */
body.page-template-page-tcd-lp #page_header {
    height: 600px;
    aspect-ratio: unset;
}

body.page-template-page-tcd-lp.large_header_height #page_header {
    height: auto;
    aspect-ratio: unset;
}

body.page-template-page-tcd-lp.large_header_height #page_header .image {
    position: relative;
    max-height: 100vh;
}

body.page-template-page-tcd-lp #page_header.layout_type3 {
    height: 100vh !important;
    height: 100dvh !important;
}

body.page-template-page-tcd-lp #page_header.layout_type3 .image {
    position: absolute;
}

#page_header .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#page_header .content.layout_type3, #page_header .content.layout_type4 {
    align-items: center;
    text-align: center;
}

#page_header .content.layout_type5, #page_header .content.layout_type6 {
    align-items: flex-end;
    text-align: right;
}

body.page-template-page-tcd-lp #page_header.layout_type1 .content {
    width: 100%;
    padding: 0 50px;
}

body:has(#header) #container:has(#page_header.layout_type1) {
    border-top: 1px solid #ddd;
}

#page_header .catch {
    color: #fff;
    line-height: 1.6;
    font-weight: 500;
}

#page_header .catch .mobile {
    display: none;
}

#page_header .sub_catch {
    color: #fff;
    line-height: 1.6;
    font-weight: 500;
}

#page_header .sub_catch .mobile {
    display: none;
}

#page_header .catch + .sub_catch {
    margin-top: 5px;
}

#page_header .sub_catch + .catch {
    margin-top: 5px;
}

#page_header .catch + .link_button {
    margin-top: 35px;
}

#page_header .sub_catch + .link_button {
    margin-top: 45px;
}

#page_header .content * {
    opacity: 0;
}

body.start_first_animation #page_header .content *:nth-child(1) {
    opacity: 1;
    transition: opacity 1.5s ease 0.4s;
}

body.start_first_animation #page_header .content *:nth-child(2) {
    opacity: 1;
    transition: opacity 1.5s ease 0.8s;
}

body.start_first_animation #page_header .content *:nth-child(3) {
    opacity: 1;
    transition: opacity 1.5s ease 1.2s;
}

body.no_page_animation #page_header .content * {
    opacity: 1 !important;
}


/* 画像が無い場合 */
#page_headline {
    margin: 0px auto 120px;
    background: var(--main_color);
    color: #fff;
    width: 180px;
    height: 180px;
    text-align: center;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 30px;
    line-height: 1.5;
    font-size: var(--headline_font_size);
    font-family: var(--headline_font_type);
    font-weight: 500;
    transition: opacity 1.5s ease 0s;
}

body.page #page_headline {
    margin-top: 120px;
}

#bread_crumb + #page_headline {
    margin-top: 99px;
}

body.page:not(.home):not(:has(#page_header)):not(:has(#bread_crumb)) #container {
    border-top: 1px solid #ddd;
}


/* 見出し・説明文 */
#page_header_desc {
    width: 1000px;
    margin: 0 auto;
    text-align: center;
}

#page_header_desc .catch {
    margin-top: -8px;
    font-size: var(--catch_font_size);
    font-family: var(--catch_font_type);
    line-height: 1.4;
    font-weight: 500;
}

#page_header_desc .catch + .desc, #page_header_desc .catch + .desc + .desc {
    margin-top: 40px;
}

#page_header_desc .desc {
    line-height: 2.4;
    font-size: 16px;
}

#page_header_desc .desc.mobile {
    display: none;
}

@media (hover: hover) {
    #page_header_desc .desc a:hover {
        text-decoration: underline;
    }
}


/* パンくずリンク */
#bread_crumb {
    position: relative;
    z-index: 3;
    border-top: 1px solid #ddd;
}

#bread_crumb ul {
    width: 1000px;
    height: 70px;
    line-height: 70px;
    margin: 20px auto;
    display: flex;
    flex-wrap: nowrap;
}

body.blog #bread_crumb, body.archive #bread_crumb {
    background: #f6f6f6;
    border-top: none;
    padding: 20px 0 0;
    scroll-margin-top: -40px;
}

body.post-type-archive-news #bread_crumb, body.tax-news_category #bread_crumb {
    background: #fff;
}

body.tax-gallery_category #bread_crumb {
    background: #fff;
    border-top: 1px solid #ddd;;
    padding: 0;
}

body.blog #bread_crumb ul, body.archive #bread_crumb ul {
    margin: 0 auto -30px;
}

body.tax-gallery_category #bread_crumb ul {
    margin: 20px auto;
}

body.single-news.hide_sidebar #bread_crumb ul {
    width: 710px;
}

body.single-gallery #bread_crumb ul {
    width: auto;
    margin: 20px 80px;
}

body.author #bread_crumb {
    background: #f5f5f5;
}

body.author #bread_crumb ul {
    margin-bottom: 0;
}

#bread_crumb li {
    flex: 0 0 auto;
    font-size: 14px;
    padding: 0 22px 0 10px;
    position: relative;
}

#bread_crumb li:after {
    font-family: 'normal_icon';
    content: '\e910';
    font-size: 11px;
    color: #000;
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    -webkit-font-smoothing: antialiased;
}

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

#bread_crumb li:last-of-type {
    flex: 0 1 auto;
    padding-right: 0;
    color: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    visibility: visible;
}

#bread_crumb li a {
    color: #000;
    display: inline;
}

@media (hover: hover) {
    #bread_crumb li a:hover {
        color: rgba(0, 0, 0, 0.6);
    }
}

#bread_crumb li.category {
    flex: 0 1 auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    visibility: visible;
}

#bread_crumb li.category a:after {
    content: ' ,';
}

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

#bread_crumb li.home {
    flex: 0 0 35px !important;
    padding: 0;
}

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

#bread_crumb li.home a span {
    display: none;
}

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

@media (hover: hover) {
    #bread_crumb li.home a:hover:before {
        color: rgba(0, 0, 0, 0.6);
    }
}


/* ----------------------------------------------------------------------
 ギャラリーアーカイブ
---------------------------------------------------------------------- */
#archive_gallery {
    padding: 120px 0 150px;
}

#container:not(:has(#page_header)) #archive_gallery {
    border-top: 1px solid #ddd;
}

#gallery_category_list .content {
    border-bottom: 1px solid #ddd;
    padding: 120px 0;
}

#gallery_category_list .content:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

#gallery_category_list .header {
    margin: 0 80px;
    width: calc(100% - 160px);
    position: relative;
    overflow: hidden;
}

#gallery_category_list .image {
    width: 100%;
    height: auto;
    z-index: 1;
}

#gallery_category_list .headline_area {
    background: #fff;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 400px;
    padding: 60px 70px;
    text-align: center;
}

#gallery_category_list .headline {
    font-size: 40px;
    font-family: var(--gallery_title_font_type);
    line-height: 1;
    font-weight: 500;
}

#gallery_category_list .sub_title {
    font-size: 18px;
    margin-top: 25px;
    line-height: 1;
    font-family: var(--gallery_title_font_type);
}

#gallery_category_list .desc {
    line-height: 2.4;
    text-align: center;
    width: 1000px;
    margin: 70px auto 0;
}

#gallery_category_list .desc .mobile {
    display: none;
}

#gallery_category_list .link_button {
    text-align: center;
    margin-top: 65px;
}


/* ----------------------------------------------------------------------
 ギャラリーカテゴリー
---------------------------------------------------------------------- */
#gallery_category_header {
    width: 100%;
    height: 560px;
    position: relative;
    overflow: hidden;
}

#gallery_category_header img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
}

#gallery_category {
    padding: 120px 0 110px;
}

#gallery_category .header {
    text-align: center;
    width: 1000px;
    margin: 0 auto 110px;
}

#gallery_category .headline {
    font-size: 50px;
    font-family: var(--gallery_title_font_type);
    line-height: 1;
    font-weight: 500;
}

#gallery_category .sub_title {
    font-size: 18px;
    margin-top: 25px;
    line-height: 1;
    font-family: var(--gallery_title_font_type);
}

#gallery_category .desc {
    line-height: 2.4;
    margin: 45px 0 0;
}

#gallery_category .desc .mobile {
    display: none;
}

#gallery_category .post_content {
    width: 1000px;
    margin: 0 auto;
}

#gallery_category .post_content.mobile {
    display: none;
}


/* カルーセル */
#gallery_category .sc_image_carousel_container {
    margin-bottom: 135px;
}


/* ギャラリー一覧 */
#category_gallery_list {
    padding: 120px 0 135px;
}

#single_gallery_post_list #category_gallery_list:first-child {
    padding: 0 0 110px;
}

#single_gallery_post_list #category_gallery_list:only-child {
    padding: 0 0 135px;
}

#category_gallery_list .design_headline1 {
    margin-top: 0;
}

.gallery_list {
    display: flex;
    flex-wrap: wrap;
    width: 1000px;
    margin: 0 auto -70px;
    position: relative;
}

#archive_gallery #page_header_desc + .gallery_list {
    margin-top: 110px;
}

.gallery_list .item:not(.swiper-slide) {
    width: calc(50% - 25px);
    margin: 0 50px 70px 0;
}

.gallery_list .item:nth-child(2n):not(.swiper-slide) {
    margin-right: 0;
}

.gallery_list .animate_background {
    display: block;
}

.gallery_list .image_wrap {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
    aspect-ratio: 474 / 235;
}

.gallery_list .image_wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.gallery_list .title {
    font-size: 20px;
    line-height: 1.8;
    margin: 20px 0 0 0;
}

.gallery_list .desc {
    line-height: 2.4;
    margin: 10px 0 0 0;
}

@media (hover: hover) {
    .gallery_list a:hover {
        color: rgba(0, 0, 0, 0.6);
    }
}


/* ----------------------------------------------------------------------
 ギャラリー詳細ページ
---------------------------------------------------------------------- */
#gallery_header {
    margin: 0 80px 110px;
}

#gallery_header .top {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    height: 100px;
    border: 1px solid #ddd;
}

#gallery_header .category {
    margin: -1px 0 0 -1px;
    flex: 0 0 auto;
    font-size: 22px;
    font-family: var(--headline_font_type);
    font-weight: 500;
    display: block;
    padding: 0 50px;
    height: 100px;
    line-height: 100px;
    background: var(--main_color);
    color: #fff;
    min-width: 240px;
    text-align: center;
}

#gallery_header .title {
    padding: 0 0 0 30px;
    line-height: 1.5;
    flex: 0 0 auto;
    font-family: var(--gallery_title_font_type);
}

#gallery_header .catch {
    padding: 0 30px;
    line-height: 1.5;
    flex: 0 1 auto;
    margin-left: auto;
    font-family: var(--catch_font_type);
}

#gallery_header .catch_mobile {
    display: none;
}

#gallery_header .image {
    width: 100%;
    height: auto;
    margin-top: -1px;
}

#gallery_header .image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

#gallery_header .bottom {
    display: flex;
    flex-wrap: nowrap;
    height: 70px;
    border: 1px solid #ddd;
    border-top: none;
    position: relative;
}

#gallery_header .bottom:not(:has(.spec_list)) {
    display: inline-block;
    border: none;
    position: absolute;
    right: 1px;
    bottom: 0;
}

#gallery_header .spec_list {
    display: flex;
    flex-wrap: nowrap;
    flex: 1 1 auto;
}

#gallery_header .spec_list p {
    flex: 1 1 0%;
    border-right: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.5;
    padding: 1px 30px 0;
}

#gallery_header .spec_list p:last-of-type {
    border-right: none;
}

#gallery_header .button {
    margin: 0 -1px -1px 0;
    flex: 0 0 auto;
    display: block;
    padding: 0 50px;
    height: 70px;
    line-height: 70px;
    background: var(--main_color);
    color: #fff;
    min-width: 240px;
    text-align: center;
}

#gallery_header .bottom.layout_type2 .button {
    position: absolute;
    right: 0;
    top: -70px;
}

#gallery_header_button {
    display: none;
}

@media (hover: hover) {
    #gallery_header .category:hover, #gallery_header .button:hover {
        background: var(--main_color_light);
    }
}

#single_gallery {
    padding-bottom: 120px;
}

#single_gallery .post_content {
    width: 1000px;
    margin: 0 auto;
}


/* プラン一覧 */
#gallery_category_plan_list {
    background: #f5f5f5;
    padding: 120px 0;
}

#single_gallery_post_list #gallery_category_plan_list:last-child {
    padding-bottom: 150px;
}

#single_gallery_post_list #gallery_category_plan_list:only-child {
    padding-bottom: 150px;
}

#gallery_category_plan_list #single_related_post {
    margin-top: 0;
}

#gallery_category_plan_list #related_post_carousel_wrap {
    width: 1000px;
    margin: 0 auto;
}


/* ギャラリー一覧 */
#single_gallery_post_list {
}

#recent_gallery_list {
    padding: 120px 0 140px;
}

#single_gallery_post_list #recent_gallery_list:first-child {
    padding: 0 0 110px;
}

#single_gallery_post_list #recent_gallery_list:only-child {
    padding-top: 0;
    padding-bottom: 140px;
}

#recent_gallery_carousel_wrap {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}

#recent_gallery_list .post_list .animate_background {
    display: block;
}

#recent_gallery_list .post_list .image_wrap {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
    aspect-ratio: 474 / 235;
}

#recent_gallery_list .post_list .image_wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

#recent_gallery_list .post_list .title {
    font-size: 20px;
    line-height: 1.8;
    margin: 20px 0 0 0;
}

#recent_gallery_list .post_list .desc {
    line-height: 2.4;
    margin: 10px 0 0 0;
}

#recent_gallery_list .swiper-button-prev {
    left: -65px;
    top: 115px;
}

#recent_gallery_list .swiper-button-next {
    right: -65px;
    top: 115px;
}

@media (hover: hover) {
    #recent_gallery_list .post_list a:hover {
        color: rgba(0, 0, 0, 0.6);
    }
}


/* ----------------------------------------------------------------------
 サービスアーカイブ
---------------------------------------------------------------------- */
#archive_service {
    padding: 120px 0 150px;
}

#container:not(:has(#page_header)) #archive_service {
    border-top: 1px solid #ddd;
}

#archive_service #page_header_desc {
    margin-bottom: 110px;
}

.service_list {
    width: 1000px;
    margin: 0 auto;
}

.service_list .item {
    margin: 0 0 -1px 0;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ddd;
    padding: 50px;
}

.service_list .image_wrap {
    width: 475px;
    height: 235px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service_list .image_wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.service_list .content {
    width: calc(100% - 475px);
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.service_list .title {
    font-size: 34px;
    font-family: var(--gallery_title_font_type);
    font-weight: 500;
    line-height: 1.6;
}

.service_list .sub_title {
    font-size: 16px;
    line-height: 1;
    margin: 0 0 10px 0;
    font-family: var(--gallery_title_font_type);
}

@media (hover: hover) {
    .service_list .item a:hover {
        color: rgba(0, 0, 0, 0.6);
    }
}


/* ----------------------------------------------------------------------
 サービス詳細ページ
---------------------------------------------------------------------- */
#service_header {
    text-align: center;
    padding: 120px 0 60px;
}

#service_header .title {
    margin-top: -8px;
    font-size: 52px;
    font-family: var(--gallery_title_font_type);
    line-height: 1.4;
    font-weight: 500;
}

#service_header .sub_title {
    font-size: 16px;
    line-height: 1;
    margin: 0 0 18px 0;
    font-family: var(--gallery_title_font_type);
}

#single_service {
    padding-bottom: 120px;
}

#single_service .post_content {
    width: 1000px;
    margin: 0 auto;
}

#service_logo {
    margin: 0 0 70px 0;
}


/* シェフプロフィール */
.chef_profile {
    display: flex;
    flex-wrap: wrap;
    margin: 120px 0 !important;
}

.chef_profile .left {
    width: 270px;
    text-align: center;
}

.chef_profile .left p:has(img) {
    margin-bottom: 22px !important;
}

.chef_profile .left p:not(:has(img)) {
    line-height: 2;
}

.chef_profile .right {
    width: calc(100% - 270px);
    padding: 0 0 0 60px;
}


/* おすすめコース */
.featured_course {
    margin: 120px 0 !important;
    padding: 55px !important;
    display: flex;
    flex-wrap: wrap;
}

.featured_course:last-of-type {
    margin-bottom: 0 !important;
}

.featured_course h2 {
    width: 100%;
    margin: 0 0 60px 0 !important;
    font-family: var(--catch_font_type) !important;
}

.featured_course .left {
    width: 400px;
}

.featured_course .right {
    width: calc(100% - 400px);
    padding-left: 50px;
}

.featured_course .q_button_wrap {
    text-align: left;
}


/* サービス一覧 */
#service_post_list .post_list {
    width: 1000px;
    margin: 0 auto 120px;
    display: flex;
    flex-wrap: wrap;
}

#service_post_list .post_list .item {
    height: auto;
    border: 1px solid #ddd;
    margin: 0 -1px -1px 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 40px;
    aspect-ratio: 1 / 1;
}

#service_post_list .post_list.layout_type1 .item {
    width: calc(100% / 3);
}

#service_post_list .post_list.layout_type2 .item {
    width: 25%;
}

#service_post_list .post_list.layout_type3 .item {
    width: 20%;
}

#service_post_list .post_list .title {
    font-size: 24px;
    font-family: var(--gallery_title_font_type);
    font-weight: 500;
    width: 100%;
}

#service_post_list .post_list .sub_title {
    font-size: 16px;
    line-height: 1;
    margin: 0 0 15px 0;
    width: 100%;
    font-family: var(--gallery_title_font_type);
}

#service_post_list .post_list .item.active {
    pointer-events: none;
    z-index: 2;
}

#service_post_list .post_list .item.active:after {
    content: '';
    width: calc(100% + 2px);
    height: 5px;
    background: #000;
    position: absolute;
    left: -1px;
    bottom: -1px;
}


/* ----------------------------------------------------------------------
 お知らせアーカイブ
---------------------------------------------------------------------- */

/* 記事一覧 */
#archive_news {
    padding: 120px 0 150px;
}

#container:not(:has(#page_header)) #archive_news {
    border-top: 1px solid #ddd;
}

#archive_news .news_list {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

#page_header_desc + .news_list {
    margin-top: 110px;
}

.news_list .item {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ddd;
    padding: 30px;
}

.news_list .item:not(.swiper-slide) {
    width: 50%;
    margin: 0 -1px -1px 0;
}

.news_list .item:nth-child(2n):not(.swiper-slide) {
    margin-right: 0;
}

.news_list .animate_background {
    width: 180px;
    height: 180px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.news_list .image_wrap {
    width: 100%;
    height: 100%;
}

.news_list .image_wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.news_list .content {
    width: calc(100% - 180px);
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news_list .item:not(:has(img)) .content {
    width: auto;
    padding-left: 0;
}

.news_list .category {
    margin-top: 25px;
}

.news_list .category a {
    font-size: 14px;
    display: inline;
    color: #999;
}

.news_list .category a:after {
    content: ' ,';
    margin: 0 5px 0 0;
}

.news_list .category a:last-of-type:after {
    display: none;
}

.news_list .date_list {
    margin-bottom: 15px;
}

.news_list .title {
    font-size: 16px;
    line-height: 1.6;
    max-height: 3.2em;
    overflow: hidden;
    visibility: visible;
}

.news_list .title a {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (hover: hover) {
    .news_list .item a:hover {
        color: rgba(0, 0, 0, 0.6);
    }
}


/* ----------------------------------------------------------------------
 お知らせ詳細
---------------------------------------------------------------------- */
#single_news_header {
    margin-bottom: 50px;
    position: relative;
}

#single_news_header .title {
    font-size: var(--single_title_font_size);
    font-family: var(--single_title_font_type);
    font-weight: 600;
    line-height: 1.5;
}

#single_news_header .image {
    margin-top: 30px;
    position: relative;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 900 / 580;
}

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

#single_news_header .date_list {
    margin-bottom: 15px;
}

#single_news_header .category {
    margin-top: 20px;
}

#single_news_header .category a {
    font-size: 14px;
    display: inline;
    color: #999;
}

#single_news_header .category a:after {
    content: ' ,';
    margin: 0 5px 0 0;
}

#single_news_header .category a:last-of-type:after {
    display: none;
}

@media (hover: hover) {
    #single_news_header .category a:hover {
        color: rgba(0, 0, 0, 0.6);
    }
}

/* ナビゲーション */
#next_prev_post2 {
    margin: 50px 0 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

#next_prev_post2 .item {
    border: 1px solid #ddd;
    height: 130px;
    width: 50%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#next_prev_post2 .item:nth-of-type(2) {
    margin-left: -1px;
    justify-content: flex-end;
}

#next_prev_post2 .item:before {
    font-family: 'normal_icon';
    font-size: 16px;
    position: absolute;
    top: calc(50% + 2px);
    transform: translateY(-50%);
    color: #000;
    -webkit-font-smoothing: antialiased;
    transition: color 0.25s ease !important;
}

#next_prev_post2 .prev_post:before {
    content: '\e90f';
    left: 37px;
}

#next_prev_post2 .next_post:before {
    content: '\e910';
    right: 37px;
}

#next_prev_post2 .item.next_post:nth-of-type(1) {
    margin-left: 50%;
    justify-content: flex-end;
}

#next_prev_post2 .title {
    position: relative;
    font-weight: 500;
    margin-top: 2px;
    font-size: 16px;
    line-height: 1.6;
    max-height: 3.2em;
    overflow: hidden;
    visibility: visible;
    word-wrap: break-word;
    word-break: break-all;
}

#next_prev_post2 .prev_post .title {
    padding: 0 40px 0 84px;
}

#next_prev_post2 .next_post .title {
    padding: 0 84px 0 40px;
}

#next_prev_post2 .title span {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

#next_prev_post2 .nav {
    display: none;
}

@media (hover: hover) {
    #next_prev_post2 a:hover {
        color: rgba(0, 0, 0, 0.6) !important;
    }

    #next_prev_post2 a:hover:before {
        color: rgba(0, 0, 0, 0.6) !important;
    }
}


/* 関連記事 */
#related_news {
    margin-top: 50px;
}

#related_news .headline {
    font-size: 24px;
    text-align: center;
    margin-bottom: 50px;
    font-family: var(--headline_font_type);
}

#related_news .post_list .item {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ddd;
    padding: 30px;
    margin: 0 0 -1px 0;
    position: relative;
}

#related_news .post_list .animate_background {
    width: 280px;
    height: 180px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#related_news .post_list .image_wrap {
    width: 100%;
    height: 100%;
}

#related_news .post_list .image_wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

#related_news .post_list .content {
    width: calc(100% - 280px);
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#related_news .post_list .item:not(:has(img)) .content {
    width: auto;
    padding-left: 0;
}

#related_news .post_list .date_list {
    margin-bottom: 15px;
}

#related_news .post_list .title {
    font-size: 16px;
    line-height: 1.6;
    max-height: 3.2em;
    overflow: hidden;
    visibility: visible;
}

#related_news .post_list .title a {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

#related_news .post_list .category {
    margin-top: 25px;
}

#related_news .post_list .category a {
    font-size: 14px;
    display: inline;
    color: #999;
}

#related_news .post_list .category a:after {
    content: ' ,';
    margin: 0 5px 0 0;
}

#related_news .post_list .category a:last-of-type:after {
    display: none;
}

@media (hover: hover) {
    #related_news .post_list .item a:hover {
        color: rgba(0, 0, 0, 0.6);
    }
}


/* ----------------------------------------------------------------------
 ブログアーカイブページ
---------------------------------------------------------------------- */
#archive_blog {
    background: #f5f5f5;
    padding: 120px 0 150px;
}

body.author #archive_blog {
    padding-top: 20px;
    border-top: none !important;
}


/* カテゴリーソートボタン */
.category_sort_button_wrap {
    width: 1000px;
    margin: 0 auto 35px;
    position: relative;
    z-index: 1;
}

#page_header_desc + .category_sort_button_wrap {
    margin-top: 110px;
}

.category_sort_button_slider {
    position: relative;
    width: auto;
    text-align: center;
}

.category_sort_button {
    -webkit-user-select: none;
    user-select: none;
    width: auto;
    position: relative;
    z-index: 2;
}

.category_sort_button .item {
    flex: 0 0 auto !important;
    height: 70px;
    order: 2;
    margin-bottom: 1px;
}

@media screen and (min-width: 1101px) {
    body.category .category_sort_button_wrap.small_size .category_sort_button {
        display: inline-flex !important;
    }

    body.tax-news_category .category_sort_button_wrap.small_size .category_sort_button {
        display: inline-flex !important;
    }

    body:not(.category):not(.tax-news_category) .category_sort_button_wrap.small_size .category_sort_button .item {
        flex: 1 1 0% !important;
        width: auto !important;
    }
}

.category_sort_button .item.active_menu a {
    pointer-events: none;
    background: var(--main_color);
    border-color: var(--main_color);
    color: #fff;
}

.category_sort_button a {
    display: block;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
    padding: 5px 15px 0;
    background: #fff;
    border: 1px solid #ddd;
    border-left-color: transparent;
}

.category_sort_button .swiper-slide-active a {
    border-left-color: #ddd;
    transition: border-color 0 ease 1s;
}

@media (hover: hover) {
    .category_sort_button a:hover {
        color: rgba(0, 0, 0, 0.6);
    }
}

.category_sort_button_wrap .swiper-button-next:before, .category_sort_button_wrap .swiper-button-prev:before {
    color: #000;
    font-size: 18px;
}

.category_sort_button_wrap .swiper-button-prev {
    left: -65px;
    right: auto;
    top: 32px;
}

.category_sort_button_wrap .swiper-button-next {
    left: auto;
    right: -65px;
    top: 32px;
}

@media (hover: hover) {
    .category_sort_button_wrap .swiper-button-next:hover:before, .category_sort_button_wrap .swiper-button-prev:hover:before {
        color: #aaa;
    }
}


/* 記事一覧 */
#archive_blog .blog_list {
    width: 1000px;
    margin: 0 auto -35px;
}

#page_header_desc + .blog_list {
    margin-top: 110px;
}

.blog_list:not(.swiper-wrapper) {
    display: flex;
    flex-wrap: wrap;
}

.blog_list .item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
}

.blog_list .item:not(.swiper-slide) {
    width: calc(100% / 3 - 24px);
    margin: 0 35px 35px 0;
}

.blog_list .item:nth-child(3n):not(.swiper-slide) {
    margin-right: 0;
}

.blog_list .animate_background {
    display: block;
}

.blog_list .image_wrap {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
    aspect-ratio: 310 / 200;
}

.blog_list .image_wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.blog_list .content {
    padding: 23px 30px 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.blog_list .content_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.blog_list .title {
    font-size: 18px;
    line-height: 1.8;
    max-height: 3.6em;
    overflow: hidden;
    visibility: visible;
}

.blog_list .title span {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog_list .date_list {
    margin: 22px 0 0;
}

.blog_list .category_list {
    line-height: 1.5;
    max-height: 3em;
    overflow: hidden;
    visibility: visible;
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #999;
}

.blog_list .item:not(:has(.date_list)) .category_list {
    margin-top: 15px;
}

.blog_list .category {
    font-size: 14px;
    color: #999;
    display: inline;
}

.blog_list .category:after {
    content: ' ,';
    margin: 0 5px 0 0;
}

.blog_list .category:last-of-type:after {
    display: none;
}

@media (hover: hover) {
    .blog_list a:hover {
        color: rgba(0, 0, 0, 0.6);
    }

    .blog_list .category a:hover {
        color: rgba(var(--main_color_hex), 0.6);
    }
}


/* 日付（他のページでも使用） */
.date_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -10px;
    position: relative;
}

.date_list .date {
    font-family: 'Arial';
    color: #999;
    position: relative;
    font-size: 14px;
    padding-left: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.date_list .date:before {
    font-family: 'normal_icon';
    content: '\e903';
    font-size: 18px;
    position: absolute;
    top: calc(50%);
    transform: translateY(-50%);
    left: 0;
    -webkit-font-smoothing: antialiased;
}

.date_list .update {
    font-family: 'Arial';
    color: #999;
    position: relative;
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 10px;
}

.date_list .update:before {
    font-family: 'normal_icon';
    content: '\e91f';
    font-size: 18px;
    position: absolute;
    top: calc(50%);
    transform: translateY(-50%);
    left: 0;
    -webkit-font-smoothing: antialiased;
}

body.mobile_device .date_list .date:before {
    margin-top: 1px;
}

body.mobile_device .date_list .update:before {
    margin-top: 1px;
}


/* ページナビ */
.page_navi {
    margin: 80px 0 0 0;
    z-index: 10;
    position: relative;
}

.page_navi ul {
    margin: 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page_navi li {
    margin: 0 -1px 0 0;
}

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

.page_navi a, .page_navi .current, .page_navi .dots {
    font-family: "Arial";
    background: #fff;
    border: 1px solid #ddd;
    color: #000;
    font-size: 14px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
}

@media (hover: hover) {
    .page_navi a:hover {
        background: var(--main_color);
        border-color: var(--main_color);
        color: #fff;
    }
}

.page_navi .dots {
    display: block;
    text-indent: -100px;
    overflow: hidden;
    position: relative;
    line-height: 1;
}

.page_navi .dots:before {
    text-indent: 0;
    display: block;
    color: #000;
    content: '\e942';
    font-family: 'normal_icon';
    font-size: 30px;
    right: 9px;
    top: 12px;
    position: absolute;
}

.page_navi .current {
    color: #fff !important;
    background: var(--main_color);
    border-color: var(--main_color);
}

.page_navi .next, .page_navi .prev {
    position: relative;
}

.page_navi .next span, .page_navi .prev span {
    display: none;
}

.page_navi .next:before, .page_navi .prev:before {
    font-family: 'normal_icon';
    font-size: 12px;
    top: 0;
    position: relative;
    -webkit-font-smoothing: antialiased;
    transition: none !important;
}

.page_navi .prev:before {
    content: '\e90f';
    left: 0px;
}

.page_navi .next:before {
    content: '\e910';
    right: 0px;
}


/* 検索結果 */
body.search #page_header_desc {
    margin-bottom: 110px;
}

body.search #page_header_desc .catch {
    font-size: 30px;
}


/* 投稿者アーカイブ */
body.author #container {
    border-top: 1px solid #ddd;
}

#author_archive_header {
    padding: 60px;
    margin: 0 auto 80px;
    width: 1000px;
    background: #fff;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

#author_archive_header .name_area {
    text-align: center;
    flex: 0 0 auto;
}

#author_archive_header .name_area img {
    width: 130px;
    height: 130px;
    border-radius: 100%;
    margin: 0 0 20px 0;
}

#author_archive_header .name {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
}

#author_archive_header .sns_button_list {
    margin-top: 22px;
    justify-content: center;
}

#author_archive_header .sns_button_list li {
    margin: 0 7px 5px;
}

#author_archive_header .desc {
    padding-left: 60px;
}

#author_archive_header .desc p {
    line-height: 2.4;
}

#author_archive_header .desc a {
    color: var(--content_link_color);
}

@media (hover: hover) {
    #author_archive_header .desc a:hover {
        text-decoration: underline;
    }
}


/* ----------------------------------------------------------------------
 ブログ詳細ページ
---------------------------------------------------------------------- */
body.single-post #article {
    background: #fff;
    padding: 50px;
}


/* タイトルエリア */
#single_post_header {
    margin-bottom: 50px;
    position: relative;
}

#single_post_header .category {
    display: inline-block;
    max-width: 100%;
    color: #fff;
    position: absolute;
    top: -50px;
    left: 0px;
    background: var(--main_color);
    height: 40px;
    line-height: 40px;
    min-width: 100px;
    padding: 0 20px;
    margin: 0;
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: thin;
    text-align: center;
}

#single_post_header .category ul {
    display: inline-flex;
    flex-wrap: nowrap;
    margin: 0;
    text-align: center;
    overflow: visible;
    position: relative;
}

#single_post_header .category ul:after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    height: 1px;
    width: 20px;
}

#single_post_header .category li {
    position: relative;
    white-space: nowrap;
    margin: 0 5px 0 0;
}

#single_post_header .category li:last-of-type {
    margin-right: 0;
}

#single_post_header .category a {
    font-size: 14px;
    display: block;
    color: #fff;
}

#single_post_header .category a:after {
    content: ',';
    margin: 0 0 0 5px;
}

#single_post_header .category li:last-of-type a:after {
    display: none;
}

#single_post_header .title {
    font-size: var(--single_title_font_size);
    font-family: var(--single_title_font_type);
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

#single_post_header:has(.category) .title {
    padding-top: 20px;
}

#single_post_header .image {
    margin-top: 30px;
    position: relative;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 900 / 580;
}

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

@media (hover: hover) {
    #single_post_header .category a:hover {
        color: rgba(255, 255, 255, 0.5);
    }
}


/* 本文 */
@media (hover: hover) {
    .post_content a:hover {
        text-decoration: underline;
    }
}


/* SNSボタン */
#single_share_top {
    margin: 50px 0 50px;
    padding: 0;
}

#single_share_bottom {
    margin: 50px 0 0;
}


/* コピーボタン */
.single_copy_title_url {
    text-align: center;
}

.single_copy_title_url_btn {
    font-family: var(--content_font_type);
    font-size: 14px;
    color: #000;
    background: #fff;
    border: 3px solid #ccc;
    cursor: pointer;
    line-height: 54px;
    min-width: 300px;
    padding: 0 15px;
    transition-property: background-color, color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

@media (hover: hover) {
    .single_copy_title_url_btn:hover {
        color: rgba(0, 0, 0, 0.6) !important;
    }
}

.single_copy_title_url_btn.copied {
    background: #ccc;
    color: #fff;
    pointer-events: none;
}

#single_copy_title_url_top {
    margin: 0 0 40px 0;
}

#single_copy_title_url_btm {
    margin: 40px 0 0;
}


/* ページ分割 */
#post_pagination {
    margin: 40px 0 50px;
    padding: 0;
    clear: both;
    font-size: 0;
    text-align: center;
}

#post_pagination a, #post_pagination p {
    margin: 0 -1px -1px 0;
    font-family: "Arial";
    background: #fff;
    border: 1px solid #ddd;
    color: #000 !important;
    font-size: 14px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

#post_pagination p {
    color: #fff !important;
    background: var(--main_color);
    border-color: var(--main_color);
}

@media (hover: hover) {
    #post_pagination a:hover {
        background: var(--main_color_light);
        border-color: var(--main_color_light);
        color: #fff !important;
    }
}


/* メタ情報 */
#post_tag_list {
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0 -5px;
}

#post_tag_list a {
    background: #f6f6f6;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
    margin: 0 5px 5px 0;
    border-radius: 4px;
    font-size: 14px;
}

@media (hover: hover) {
    #post_tag_list a:hover {
        background: var(--main_color);
        color: #fff !important;
    }
}


/* バナー */
#blog_free_space {
    margin-top: 50px;
}

#featured_plan {
    padding: 60px;
}

#featured_plan h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
}


/* プロフィール */
.author_profile {
    background: #f5f5f5;
    margin: 50px 0 0;
    position: relative;
    padding: 35px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.author_profile .avatar_area {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    position: relative;
}

.author_profile .image_wrap {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.author_profile .image_wrap img {
    display: block;
    width: 100%;
    height: 100% !important;
    z-index: 2;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.author_profile .info {
    height: 100%;
    width: calc(100% - 120px);
    position: relative;
}

.author_profile .info_inner {
    padding: 0 0 0 40px;
}

.author_profile .name {
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: 600;
    line-height: 1.4;
}

.author_profile .desc {
    line-height: 2;
    margin: 0;
    font-size: 14px;
    max-height: 4em;
    overflow: hidden;
    visibility: visible;
}

.author_profile .desc span {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.author_profile .desc a {
    color: var(--content_link_color);
}

@media (hover: hover) {
    .author_profile .name a:hover {
        color: rgba(0, 0, 0, 0.5);
    }

    .author_profile .desc a:hover {
        text-decoration: underline;
    }
}

.author_profile .sns_button_list {
    text-align: left;
    margin-top: 10px;
}


/* ナビゲーション */
#next_prev_post {
    margin: 80px 0 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#next_prev_post .item {
    background: #fff;
    height: 140px;
    width: calc(50% - 15px);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#next_prev_post .item.next_post:nth-of-type(1) {
    margin-left: 50%;
    flex-direction: row-reverse;
}

#next_prev_post .image_wrap {
    width: 140px;
    height: 140px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

#next_prev_post .item:nth-of-type(2) {
    flex-direction: row-reverse;
}

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

#next_prev_post .content {
    width: calc(100% - 140px);
}

#next_prev_post .no_image .content {
    width: 100%;
    padding: 0 15px;
}

#next_prev_post .title {
    position: relative;
    padding: 0 40px;
    font-weight: 500;
    margin-top: 2px;
    font-size: 16px;
    line-height: 1.6;
    max-height: 3.2em;
    overflow: hidden;
    visibility: visible;
    word-wrap: break-word;
    word-break: break-all;
    transition: color 0.2s ease;
}

#next_prev_post .title span {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

#next_prev_post .nav {
    display: none;
}

@media (hover: hover) {
    #next_prev_post a:hover .title {
        color: rgba(0, 0, 0, 0.5);
    }
}


/* 関連記事 */
#single_related_post {
    margin: 80px 0 0 0;
    position: relative;
}

#single_related_post .headline {
    text-align: center;
    line-height: 1;
    font-size: 50px;
    font-family: var(--headline_font_type);
    font-weight: 500;
    margin-top: -5px;
}

#single_related_post.type2 .headline {
    font-size: 40px;
}

#single_related_post:not(:has(.sub_title)) .headline {
    margin-bottom: 75px;
}

#single_related_post .sub_title {
    font-size: 18px;
    text-align: center;
    line-height: 1;
    margin: 25px 0 75px;
}

#related_post_carousel_wrap {
    position: relative;
}

#related_post_carousel {
    text-align: center;
}

#related_post_carousel .blog_list {
    width: auto;
    display: inline-flex;
}

#related_post_carousel .blog_list .item {
    text-align: left;
}

#related_post_carousel .blog_list .item:last-of-type {
    margin-right: 0 !important;
}

#single_related_post .swiper-button-prev {
    left: -65px;
    top: 96px;
}

#single_related_post .swiper-button-next {
    right: -65px;
    top: 96px;
}

#single_related_post .link_button {
    text-align: center;
    margin-top: 80px;
}


/* 広告 */
#single_banner_top {
    margin: 0 auto 50px;
}

#single_banner_bottom {
    margin: 50px auto 0px;
}

#single_banner_shortcode {
    margin: 15px auto 45px;
}

#single_free_space {
    margin: 80px auto 0;
    line-height: 2.4;
}

body.single-news #single_free_space {
    margin-top: 50px;
}

img.single_banner_image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.single_banner {
    line-height: 2.4;
}

.single_banner img {
    max-width: 100%;
    height: auto;
}

.single_banner a img {
    -webkit-transition: filter 0.3s ease;
    transition: filter 0.3s ease;
}

@media (hover: hover) {
    .single_banner a:hover img {
        filter: brightness(80%);
    }
}


/* 添付画像 */
body.attachment #page_contents {
    padding-top: 120px;
}

@media screen and (max-width: 800px) {
    body.attachment #page_contents {
        padding-top: 40px;
    }
}


/* ----------------------------------------------------------------------
　ページ上部　ヘッダー
---------------------------------------------------------------------- */
#header {
    z-index: 100;
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 130px;
    background: #ffffff;
    display: flex;
    flex-wrap: nowrap;
}

body.page-template-page-tcd-lp.hide_global_menu #header {
    display: block;
}

body.header_fix {
    padding-top: 130px;
}

body.header_fix #header {
    height: 70px;
    position: fixed;
    background: var(--main_color);
    animation: header_animation 0.3s ease forwards;
}

body.header_fix.active_scroll #header {
    animation: none !important;
    transform: translate3d(0, 0, 0);
}

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

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

body.admin-bar #header {
    margin-top: 32px;
}

@media screen and (max-width: 1300px) {
    body.admin-bar #header {
        margin-top: 0;
        top: 32px;
    }
}

@media screen and (max-width: 782px) {
    body.admin-bar #header {
        top: 46px;
    }
}

#header .menu_area {
    height: 100%;
    flex: 1 1 auto;
    position: relative;
}

body.header_fix #header .menu_area {
    height: 70px;
}

#header .menu_area .top {
    height: 70px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

body.header_fix #header .menu_area .top {
    display: none;
}

#header .menu_area .bottom {
    height: 60px;
    position: relative;
    border-top: 1px solid #ddd;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
}

body.header_fix #header .menu_area .bottom {
    height: 70px;
    border-top: none;
}


/* ロゴ */
#header_logo {
    height: 100%;
    background: #fff;
    border-right: 1px solid #ddd;
    padding: 0 40px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 10;
    flex: 0 1 auto;
    position: relative;
}

body.header_fix #header_logo {
    border-right: none;
    background: var(--main_color);
}

body.page-template-page-tcd-lp.hide_global_menu #header_logo {
    border: none;
    width: 100%;
}

#header_logo img {
    display: block;
    max-height: calc(100% - 20px);
    width: auto;
}

#header_logo img.mobile {
    display: none;
}

#header_logo img.scroll {
    display: none;
}

body.header_fix #header_logo img {
    display: none;
}

body.header_fix #header_logo img.scroll {
    display: block;
}

#header_logo a {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: all 0.25s ease;
}

@media (hover: hover) {
    #header_logo a:hover {
        opacity: 0.5;
    }
}

#header_logo a .logo_text {
    font-weight: 500;
    line-height: 1.2;
    width: 100%;
    text-align: center;
}

body.header_fix #header_logo a .logo_text {
    color: #fff;
}

#header_logo img.mobile {
    display: none;
}

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


/* 検索フォーム */
#header_search {
    overflow: hidden;
    height: 70px;
    width: 440px;
    z-index: 10;
    position: relative;
}

#header_search form {
    position: relative;
    width: 100%;
    height: 100%;
}

#header_search .input_area {
    position: absolute;
    top: 0;
    right: 70px;
    width: 370px;
    height: 100%;
    padding: 0 0 0 15px;
    z-index: 1;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#header_search.active .input_area, #header_search:hover .input_area {
    opacity: 1;
    pointer-events: auto;
}

#header_search .input_area input {
    border: none;
    height: 40px;
    width: 100%;
    margin: 15px 0 0 0;
    padding: 0 25px;
    background: #f3f3f3;
    border-radius: 40px;
}

#header_search .search_button {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 100;
}

#header_search .search_button input {
    display: block;
    width: 70px;
    height: 70px;
    cursor: pointer;
    background: none;
    border: none;
}

#header_search .search_button:before {
    display: block;
    font-family: 'normal_icon';
    color: #000;
    font-size: 16px;
    content: '\e94c';
    pointer-events: none;
    font-weight: 500;
    left: 50%;
    top: calc(50% + 2px);
    transform: translate(-50%, -50%);
    position: absolute;
    transition: color 0.2s ease;
}

#header_search .search_button:hover:before {
    color: rgba(0, 0, 0, 0.6) !important;
}


/* ボタン */
#header_button {
    display: flex;
    flex-wrap: wrap;
}

#header_button a {
    color: #fff;
    height: 70px;
    line-height: 70px;
    padding: 0 30px;
    min-width: 180px;
    text-align: center;
}

@media (hover: hover) {
    #header_button a:hover {
        color: rgba(255, 255, 255, 0.5);
    }
}


/* グローバルメニュー */
#global_menu {
    height: 59px;
    z-index: 2;
    position: relative;
    flex: 1 1 auto;
    width: 1000px;
    text-align: center;
}

#global_menu:hover {
}

#global_menu > ul {
    position: relative;
    display: inline-flex;
    flex-wrap: nowrap;
}

#global_menu > ul > li {
    white-space: nowrap;
    position: relative;
    line-height: 1;
    text-align: center;
    font-size: 16px;
}

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

body.header_fix #global_menu > ul > li > a {
    height: 70px;
    line-height: 70px;
    color: #fff;
}

#global_menu > ul > li > a:after {
    content: '';
    height: 5px;
    width: 0;
    background: var(--main_color);
    position: absolute;
    left: 40px;
    bottom: 0;
    transition: width 0.25s ease;
}

body.header_fix #global_menu > ul > li.current-menu-item > a:after {
    display: none;
}

body.header_fix #global_menu > ul > li.current-menu-item > a {
    color: rgba(255, 255, 255, 0.5);
}

body.header_fix #global_menu:has(.active_megamenu_button) li.current-menu-item > a, body.header_fix #global_menu:has(.active) li.current-menu-item > a {
    color: #fff;
}

body.header_fix #global_menu > ul > li.active > a, body.header_fix #global_menu:has(.active_megamenu_button) li.active_megamenu_button > a {
    color: rgba(255, 255, 255, 0.5);
}

#global_menu ul ul {
    background: #f5f5f5;
    display: none;
    width: 240px;
    position: absolute;
    top: 59px;
    left: 10px;
    margin: 0;
    padding: 0;
    z-index: 100;
}

body.megamenu_dark_color #global_menu ul ul {
    background: var(--main_color);
}

body.header_fix #global_menu ul ul {
    top: 70px;
}

#global_menu ul ul ul {
    display: block;
    position: relative;
    left: auto;
    top: auto !important;
}

#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: 17px 30px 15px;
    height: auto;
    line-height: 1.6;
    margin: 0;
}

#global_menu ul ul ul a {
    padding-left: calc(1em + 30px);
}

#global_menu ul ul ul ul a {
    padding-left: calc(2em + 30px);
}

#global_menu ul ul ul ul ul a {
    padding-left: calc(3em + 30px);
}

body.megamenu_dark_color #global_menu ul ul a {
    color: #fff;
}

#global_menu > ul > li.current-menu-item > a:after, #global_menu > ul > li.active > a:after, #global_menu > ul > li.active_megamenu_button > a:after {
    width: calc(100% - 80px);
}

#global_menu:has(.active_megamenu_button) li.current-menu-item > a:after, #global_menu:has(.active) li.current-menu-item > a:after {
    width: 0;
}

#global_menu:has(.active_megamenu_button) li.current-menu-item.active_megamenu_button > a:after {
    width: calc(100% - 80px);
}

@media (hover: hover) {
    #global_menu > ul > li > a:hover:after {
        width: calc(100% - 80px) !important;
    }

    body.header_fix #global_menu > ul > li > a:hover {
        color: rgba(255, 255, 255, 0.5) !important;
    }

    body.megamenu_light_color #global_menu ul ul a:hover {
        text-decoration: none;
        background: var(--main_color);
        color: #fff;
    }

    body.megamenu_dark_color #global_menu ul ul a:hover {
        text-decoration: none;
        background: rgba(255, 255, 255, 0.2);
    }
}


/* グローバルメニュー用スクロールバー */
#scroll_container {
    opacity: 0;
    pointer-events: none;
    width: calc(100% - 60px);
    height: 12px;
    position: absolute;
    top: -2px;
    left: 0;
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: thin;
    z-index: 100;
}

#scroll_container.non_active {
    display: none;
}

#scroll_container_inner {
    height: 100%;
    width: 200px;
}

#header .menu_area .bottom:hover #scroll_container {
    opacity: 0.9;
    pointer-events: auto;
}

#scroll_container::-webkit-scrollbar {
    width: 10px;
}

#scroll_container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

#scroll_container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

#scroll_container {
    scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
    scrollbar-width: thin;
}

body.header_fix #scroll_container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
}

body.header_fix #scroll_container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
}

body.header_fix #scroll_container {
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.2);
}


/* 言語ボタン */
#lang_button {
    width: auto;
    position: relative;
    background: #fff;
    z-index: 100;
}

#lang_button .active_menu {
    display: block;
    padding: 0 10px;
    min-width: 60px;
    height: 59px;
    line-height: 1.4;
    text-align: center;
    border-left: 1px solid #ddd;
    z-index: 2;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    font-size: 14px;
    white-space: nowrap;
}

body.header_fix #lang_button {
    background: var(--main_color);
}

body.header_fix #lang_button .active_menu {
    height: 70px;
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

#lang_button .sub_menu {
    width: auto;
    min-width: 100%;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
    display: none;
}

#lang_button .sub_menu a {
    display: block;
    min-width: 60px;
    height: 60px;
    line-height: 1.4;
    text-align: center;
    background: #f5f5f5;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    font-size: 14px;
    padding: 0 10px;
    white-space: nowrap;
    width: auto;
}

body.header_fix #lang_button .sub_menu a {
    height: 70px;
    background: var(--main_color);
    color: #fff;
}

@media (hover: hover) {
    body.header_fix #lang_button a:hover {
        color: rgba(255, 255, 255, 0.5);
    }

    body.header_fix #lang_button .sub_menu a:hover {
        background: var(--main_color_light);
        color: #fff;
    }
}


/* ドロワーメニュー */
#drawer_menu {
    display: none;
    position: fixed;
    top: 0px;
    right: 0;
    width: 400px;
    height: 100vh;
    height: 100dvh;
    overflow: auto;
    z-index: 99999;
    background: #fff;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
}

#drawer_menu.color_type2 {
    background: var(--main_color);
}

#drawer_menu_button {
    display: none;
}

#drawer_menu_overlay {
    opacity: 0;
    pointer-events: none;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: opacity 0.5s ease;
}


/* ヘッダーメッセージ */
#header_message {
    position: relative;
    z-index: 20;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 20px;
}

body.hide_page_header_bar #header_message {
    width: 100%;
    margin-left: 0;
}

#header_message .label {
    display: block;
    color: inherit;
    line-height: 1.4;
    padding: 0 20px;
}

@media (hover: hover) {
    #header_message a.label:hover {
        text-decoration: underline;
    }
}


/* サイドボタン */
#side_icon_button {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transform: translate3d(calc(100% + 10px), 0, 0);
}

body.start_scroll #side_icon_button {
    transform: translate3d(0, 0, 0);
}

body.start_scroll.hide_side_icon_button #side_icon_button {
    transform: translate3d(calc(100% + 10px), 0, 0);
}

#side_icon_button.position_fix {
    transform: translate3d(0, 0, 0) !important;
}

body.hide_side_icon_button #side_icon_button {
    transform: translate3d(calc(100% + 10px), 0, 0) !important;
}

body.hide_side_icon_button #side_icon_button.position_fix {
    transform: translate3d(0, 0, 0) !important;
}

#side_icon_button a {
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

#side_icon_button a:last-of-type {
    border-bottom: none;
}

#side_icon_button .label {
    font-size: 12px;
    line-height: 1.4;
    padding: 0 15px;
}

#side_icon_button .icon {
    font-family: 'normal_icon';
    font-size: 22px;
    margin: 0 0 5px 0;
    font-weight: 100;
}

#side_icon_button .icon.icon_type_sns {
    font-family: "sns_icon";
    font-size: 18px;
    font-weight: 400;
}

#side_icon_button .icon.Bed {
    font-size: 25px;
}

#side_icon_button .icon.Bar {
    font-size: 25px;
}

#side_icon_button .icon.HotSpring {
    font-size: 23px;
}

#side_icon_button .icon.User {
    font-size: 24px;
}

#side_icon_button .icon.Bookmark {
    font-size: 22px;
}

#side_icon_button .icon.Twitter {
    font-size: 16px;
}

#side_icon_button .icon.Facebook {
    font-size: 21px;
}

#side_icon_button .icon.LINE {
    font-size: 20px;
}

#side_icon_button .icon.no_icon {
    display: none;
}

@media (hover: hover) {
    #side_icon_button a:hover {
        color: #999;
    }
}


/* ----------------------------------------------------------------------
 メガメニュー
---------------------------------------------------------------------- */
.pc .megamenu_button + ul {
    display: none !important;
}


/* 共通項目 */
.megamenu {
    background: #f5f5f5;
    display: none;
    pointer-events: none;
    width: 100%;
    position: absolute;
    top: 130px;
    left: 0;
    overflow: hidden;
    z-index: 2;
    border-top: 1px solid #ddd;
}

.megamenu.active_mega_menu {
    display: block;
    pointer-events: auto;
    z-index: 3;
}

body.header_fix .megamenu {
    top: 70px;
    border-top: none;
}

.megamenu .header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

body.header_fix .megamenu .header {
    box-shadow: inset 0px 10px 10px -5px rgba(0, 0, 0, 0.2) !important;
}

.megamenu .header_inner {
    width: 1000px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.megamenu .header .headline {
    font-size: 32px;
    font-family: var(--headline_font_type);
    font-weight: 500;
    margin: 0 30px 0 0;
}

.megamenu .header .catch {
    font-size: 16px;
    font-family: var(--catch_font_type);
}

body.megamenu_dark_color .megamenu {
    background: var(--main_color);
}

body.megamenu_dark_color .megamenu .header {
    border-bottom: none;
    background: #f5f5f5;
    box-shadow: inset 0px 10px 10px -5px rgba(100, 100, 100, 0.1);
}

body.megamenu_dark_color .megamenu .swiper-nav-button:before {
    color: #fff;
}

@media (hover: hover) {
    body.megamenu_dark_color .megamenu .swiper-nav-button:hover:before {
        color: rgba(255, 255, 255, 0.5);
    }
}


/* メガメニューA　ブログカルーセル */
.megamenu_a {
}

.megamenu_post_carousel_wrap {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}

.megamenu_post_carousel {
    padding-top: 50px;
}

.megamenu_post_carousel .animate_background {
    display: block;
    background: #fff;
}

.megamenu_post_carousel .image_wrap {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
    aspect-ratio: 310 / 200;
}

.megamenu_post_carousel .image_wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.megamenu_post_carousel .content {
    padding: 0 20px;
    height: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.megamenu_post_carousel .title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    display: block;
    max-height: 3.6em;
    overflow: hidden;
    visibility: visible;
}

.megamenu_post_carousel .title span {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.megamenu_post_carousel .category {
    height: 70px;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.megamenu_post_prev {
    left: -65px;
    top: 145px;
}

.megamenu_post_next {
    right: -65px;
    top: 145px;
}

body.megamenu_dark_color .megamenu_post_carousel .category {
    color: #fff;
}

@media (hover: hover) {
    body.megamenu_dark_color .megamenu_post_carousel .category:hover {
        color: rgba(255, 255, 255, 0.5);
    }
}


/* メガメニューB　お知らせカルーセル */
.megamenu_b {
}

.megamenu_news_carousel_wrap {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}

.megamenu_news_carousel {
    padding-top: 50px;
    margin-bottom: 50px;
}

.megamenu_news_carousel .item {
    background: #fff;
    padding: 20px 20px 15px;
    height: auto !important;
}

.megamenu_news_carousel .image_wrap {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
    aspect-ratio: 1 / 1;
}

.megamenu_news_carousel .image_wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.megamenu_news_carousel .date_list {
    margin-bottom: 5px;
}

.megamenu_news_carousel .date_list .date {
    transition: all 0.25s ease;
}

.megamenu_news_carousel .title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    display: block;
    max-height: 3.6em;
    overflow: hidden;
    visibility: visible;
    transition: all 0.25s ease;
}

.megamenu_news_carousel .title span {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.megamenu_news_prev {
    left: -65px;
    top: 205px;
}

.megamenu_news_next {
    right: -65px;
    top: 205px;
}

.megamenu_b:not(:has(.image_wrap)) .megamenu_news_prev {
    top: 105px;
}

.megamenu_b:not(:has(.image_wrap)) .megamenu_news_next {
    top: 105px;
}

body.megamenu_dark_color .megamenu_news_carousel .item {
    background: rgba(255, 255, 255, 0.1);
}

body.megamenu_dark_color .megamenu_news_carousel .title {
    color: #fff;
}

body.megamenu_dark_color .megamenu_news_carousel .date_list .date {
    color: #fff;
}

@media (hover: hover) {
    body.megamenu_dark_color .megamenu_news_carousel a:hover .title {
        color: rgba(255, 255, 255, 0.5);
    }

    body.megamenu_dark_color .megamenu_news_carousel a:hover .date_list .date {
        color: rgba(255, 255, 255, 0.5);
    }
}


/* メガメニューC ルームカテゴリー */
.megamenu_c {
}

.megamenu_gallery_carousel_wrap {
    width: 1000px;
    padding: 50px 0 40px;
    margin: 0 auto;
    position: relative;
}

.megamenu_gallery_carousel .animate_background {
    display: block;
}

.megamenu_gallery_carousel .image_wrap {
    margin: 0 0 20px 0;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
    aspect-ratio: 310 / 130;
}

.megamenu_gallery_carousel .image_wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.megamenu_gallery_carousel .title {
    font-size: 30px;
    font-family: var(--catch_font_type);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.megamenu_gallery_carousel .desc {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 2.4;
    display: block;
    max-height: 7.2em;
    overflow: hidden;
    visibility: visible;
}

.megamenu_gallery_carousel .desc span {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.megamenu_gallery_carousel .desc:not(.mega_desc) br {
    display: none;
}

.megamenu_gallery_prev {
    left: -65px;
    top: 110px;
}

.megamenu_gallery_next {
    right: -65px;
    top: 110px;
}

body.megamenu_dark_color .megamenu_c a {
    color: #fff;
}

@media (hover: hover) {
    body.megamenu_dark_color .megamenu_c a:hover {
        color: rgba(255, 255, 255, 0.5);
    }
}


/* メガメニューD サービス */
.megamenu_d {
}

.megamenu_service_carousel_wrap {
    width: 1000px;
    padding: 50px 0 40px;
    margin: 0 auto;
    position: relative;
}

.megamenu_service_carousel .animate_background {
    display: block;
}

.megamenu_service_carousel .image_wrap {
    margin: 0 0 30px 0;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
    aspect-ratio: 210 / 170;
}

.megamenu_service_carousel .image_wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.megamenu_service_carousel .title {
    font-size: 20px;
    font-family: var(--catch_font_type);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    transition: all 0.25s ease;
}

.megamenu_service_carousel .sub_title {
    font-size: 14px;
    text-align: center;
    margin: 0 0 10px 0;
    transition: all 0.25s ease;
}

.megamenu_service_carousel .desc {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 2.4;
    display: block;
    max-height: 7.2em;
    overflow: hidden;
    visibility: visible;
    transition: all 0.25s ease;
}

.megamenu_service_carousel .desc span {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.megamenu_service_prev {
    left: -65px;
    top: 135px;
}

.megamenu_service_next {
    right: -65px;
    top: 135px;
}

body.megamenu_dark_color .megamenu_d a {
    color: #fff;
}

@media (hover: hover) {
    body.megamenu_dark_color .megamenu_d a:hover {
        color: rgba(255, 255, 255, 0.5);
    }
}


/* ----------------------------------------------------------------------
 フッター
---------------------------------------------------------------------- */
#footer {
    background: var(--main_color);
    color: #fff;
    padding: 70px 0 0;
}

#footer a {
    color: #fff;
    display: inline-block;
    padding: 12px 16px;
    border: 1px solid #fff;
    border-radius: 70px;
}

@media (hover: hover) {
    #footer a:hover {
        color: rgba(255, 255, 255, 0.5);
    }
}


/* フッターバナー */
#footer_banner_wrap {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
}

#footer_banner_wrap .footer_banner {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

#footer_banner_wrap .item {
    flex: 1 1 0%;
}

@media screen and (min-width: 1301px) {
    #footer_banner_wrap:not(.use_animation) {
        width: 100% !important;
    }

    #footer_banner_wrap:not(.use_animation) .footer_banner {
        width: 100% !important;
    }

    #footer_banner_wrap:not(.use_animation) .footer_banner:nth-child(2) {
        display: none;
    }

    #footer_banner_wrap:not(.use_animation) .footer_banner:nth-child(3) {
        display: none;
    }
}

#footer_banner_wrap .image_wrap {
    width: calc(100% + 1px);
    height: auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
    aspect-ratio: 362 / 180;
}

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

#footer_banner_wrap .title {
    font-family: var(--single_title_font_type);
    font-size: 16px;
    padding: 0 20px;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 70px;
}

/* アニメーション */
#footer_banner_wrap.use_animation .footer_banner {
    transform: translate3d(0, 0, 0);
}

#footer_banner_wrap.use_animation .footer_banner:first-child {
    animation: footer_banner_animation 90s linear infinite;
}

#footer_banner_wrap.use_animation .footer_banner:nth-child(2) {
    animation: footer_banner_animation2 90s -60s linear infinite;
}

#footer_banner_wrap.use_animation .footer_banner:nth-child(3) {
    animation: footer_banner_animation3 90s -30s linear infinite;
}

body:not(.hide_side_icon_button) #footer_banner_wrap.use_animation .footer_banner {
    animation-play-state: paused !important;
}

@media (hover: hover) {
    #footer_banner_wrap.use_animation:hover .footer_banner {
        animation-play-state: paused !important;
    }
}

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

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

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


/* ロゴ */
#footer_logo {
    text-align: center;
    position: relative;
    margin-bottom: 70px;
}

#footer_logo img {
    display: block;
    margin: 0 auto;
    transition: all 0.25s ease;
}

#footer_logo img.mobile {
    display: none;
}

@media (hover: hover) {
    #footer_logo a:hover img {
        opacity: 0.5;
    }
}

#footer_logo a .logo_text {
    font-weight: 500;
    line-height: 1.2;
    word-wrap: break-word;
}

#footer_logo img.mobile {
    display: none;
}

#footer_logo a {
    color: #fff;
}

@media (hover: hover) {
    #footer_logo a:hover {
        color: rgba(255, 255, 255, 0.5);
    }
}


/* メニュー */
#footer_menu {
    width: 1000px;
    margin: 0 auto 70px;
    display: flex;
    flex-wrap: wrap;
}

#footer_menu nav {
    flex: 1 1 0%;
}

#footer_menu li {
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 14px;
}

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

#footer_menu li a {
    display: block;
}

@media (hover: hover) {
    #footer_nav li a:hover {
        color: rgba(255, 255, 255, 0.5);
    }
}


/* 住所 */
#footer_info {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
}

#footer_info p {
    line-height: 2;
    font-size: 14px;
    width: 1000px;
    margin: 0 auto;
}


/* SNS */
#footer_bottom {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    height: 70px;
}

#footer_sns {
    position: absolute;
    left: 25px;
    top: calc(50% + 5px);
    transform: translateY(-50%);
}

#footer_sns.color_type1 a:before {
    color: #fff;
}


/* コピーライト */
#copyright {
    line-height: 1.5;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    font-size: 14px;
    text-align: center;
}

body.page-template-page-tcd-lp #copyright.lp_copyright {
    line-height: 1;
    height: 70px;
    line-height: 70px;
    top: auto;
    transform: none;
    border-top: 1px solid #ddd;
}


/* 上部へ戻る*/
#return_top {
    display: block;
    height: 70px;
    line-height: 70px;
    width: 100%;
    text-decoration: none;
    position: relative;
    border-top: 1px solid #ddd;
    background: #fff;
}

#return_top:before {
    font-family: 'Material Symbols';
    content: "\e316";
    font-size: 24px;
    display: block;
    position: absolute;
    left: 50%;
    right: 50%;
}

@media (hover: hover) {
    #return_top:hover:before {
        color: #aaa;
    }
}


/* フッターバー */
.p-footer-bar {
    display: none;
}


/* SNSボタン（全箇所共通） */
.sns_button_list {
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -5px;
}

.sns_button_list li {
    font-size: 12px;
    margin: 0 15px 5px 0;
    position: relative;
}

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

.sns_button_list li a {
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 18px;
    height: 18px;
}

.sns_button_list li a span {
    display: none;
}

.sns_button_list li a:before {
    font-family: 'sns_icon', 'normal_icon';
    font-size: 16px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    -webkit-font-smoothing: antialiased;
}

.sns_button_list.color_type1 li a:before {
    color: #000;
}

@media (hover: hover) {
    .sns_button_list li a:hover:before {
        opacity: 0.5;
    }
}

.sns_button_list li.line a:before {
    content: '\e909';
    font-size: 18px;
}

.sns_button_list li.twitter a:before {
    content: '\e950';
    font-size: 15px;
}

.sns_button_list li.facebook a:before {
    content: '\e944';
    font-size: 18px;
}

.sns_button_list li.insta a:before {
    content: '\ea92';
    font-size: 15px;
}

.sns_button_list li.pinterest a:before {
    content: '\e905';
    font-size: 18px;
}

.sns_button_list li.youtube a {
    width: 19px;
}

.sns_button_list li.youtube a:before {
    content: '\ea9d';
    font-size: 18px;
}

.sns_button_list li.tiktok a:before {
    content: '\e94d';
}

.sns_button_list li.contact a:before {
    content: '\e900';
    font-size: 20px;
}

.sns_button_list li.rss a:before {
    content: '\e90b';
    font-size: 14px;
    margin-left: 1px;
}

.sns_button_list li.user_url a:before {
    content: '\e942';
    margin-left: 0.7px;
}

.sns_button_list.color_type2 li {
    margin: 0 15px 5px 0;
}

.sns_button_list.color_type2 li a {
    width: 25px;
    height: 25px;
}

.sns_button_list.color_type2 li a:before {
    font-size: 24px;
}

.sns_button_list.color_type2 li.line a:before {
    color: #00B900;
}

.sns_button_list.color_type2 li.twitter a:before {
    color: #000;
    font-size: 19px;
}

.sns_button_list.color_type2 li.facebook a:before {
    color: #1877f2;
    font-size: 26px;
}

.sns_button_list.color_type2 li.insta a:before {
    color: #e4405f;
    font-size: 23px;
}

.sns_button_list.color_type2 li.pinterest a:before {
    color: #bd081c;
    font-size: 24px;
}

.sns_button_list.color_type2 li.youtube a:before {
    color: #f00;
}

.sns_button_list.color_type2 li.tiktok a:before {
    color: #000;
    font-size: 20px;
}

.sns_button_list.color_type2 li.contact a:before {
    color: #00729f;
}

.sns_button_list.color_type2 li.rss a:before {
    color: orange;
    font-size: 19px;
}

.sns_button_list.color_type2 li.user_url a:before {
    color: #00729f;
}


/* フッターバー */
#dp-footer-bar {
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 999;
    width: 100%;
}

.open_menu #dp-footer-bar {
    display: none;
}

.dp-footer-bar-type1 #dp-footer-bar {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.dp-footer-bar-type1 #dp-footer-bar.active {
    opacity: 1;
}

.dp-footer-bar-type2 #dp-footer-bar {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

.dp-footer-bar-type2 #dp-footer-bar.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


/* フッターバー　アイコン無しタイプ */
#dp-footer-bar {
    height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

#dp-footer-bar a {
    height: 50px;
    line-height: 50px;
    display: block;
    text-align: center;
    font-size: 12px;
    padding: 0 20px;
    text-decoration: none !important;
    -webkit-flex: 1 1 0%;
    flex: 1 1 0%;
}


/* ----------------------------------------------------------------------
 ウィジェット
---------------------------------------------------------------------- */
/* 基本設定 */
.widget_content {
    margin: 0 0 40px 0;
    position: relative;
    font-size: 14px;
}

.widget_content:last-of-type {
    margin-bottom: 0;
}

.widget_content ul {
    margin: 0;
}

.widget_content li {
    line-height: 2;
    padding: 2px 0;
    margin: 0 0 10px 0;
}

.widget_content a {
    text-decoration: none;
}

.widget_content img {
    height: auto;
    max-width: 100%;
}

.widget_headline {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 15px 0;
    position: relative;
}


/* タブ記事 */
.tab_post_list_widget {
    position: relative;
    background: #fff;
}

.widget_tab_post_list_button {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
}

.widget_tab_post_list_button div {
    font-size: 14px;
    height: 60px;
    line-height: 60px;
    flex: 1 1 0%;
    text-align: center;
    cursor: pointer;
    border: 1px solid #ddd;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    visibility: visible;
    display: block;
    position: relative;
    transition: all 0.25s ease;
}

.widget_tab_post_list_button div.active {
    pointer-events: none;
    border-bottom: 1px solid #fff;
}

@media (hover: hover) {
    .widget_tab_post_list_button div:hover {
        color: #aaa;
    }
}

.widget_tab_post_list_button div:last-of-type {
    border-left: none;
}

.widget_tab_post_list {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    border: 1px solid #ddd;
    border-top: none;
}

.widget_tab_post_list.active {
    opacity: 1;
    pointer-events: initial;
    position: relative;
    top: 0;
    left: 0px;
    width: auto;
    z-index: 10;
}

.widget_tab_post_list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ddd;
    line-height: 1;
}

.widget_tab_post_list li:last-of-type {
    border-bottom: none;
}

.widget_tab_post_list a {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    height: 100px;
}

.widget_tab_post_list .image_wrap {
    display: block;
    width: 101px;
    height: 101px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.widget_tab_post_list .image_wrap .image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.widget_tab_post_list .title_area {
    width: calc(100% - 101px);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.widget_tab_post_list .title {
    font-size: 14px;
    line-height: 1.6;
    max-height: 4.8em;
    word-break: break-all;
    overflow: hidden;
}

.widget_tab_post_list .title span {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.widget_tab_post_list .date {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 10px 0;
    display: block;
    color: #999;
    position: relative;
}

.widget_tab_post_list .date:before {
    font-family: 'normal_icon';
    content: '\e903';
    font-size: 17px;
    margin: 0 5px 0 0;
    position: relative;
    top: 1.5px;
    -webkit-font-smoothing: antialiased;
}

.widget_tab_post_list li.no_post {
    padding: 20px !important;
    font-size: 14px;
    line-height: 2;
}

.widget_tab_post_list.no_image a {
    display: block;
}

.widget_tab_post_list.no_image .title_area {
    width: auto;
    display: block;
    height: auto;
    padding: 0;
}

.no_tab + .widget_tab_post_list {
    border: none !important;
}

.no_tab + .widget_tab_post_list li {
    padding: 0;
    border: none;
}

.no_tab + .widget_tab_post_list .title_area {
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 0 20px;
}

.no_tab + .widget_tab_post_list li:first-of-type .title_area {
    border-top: 1px solid #ddd;
}

@media (hover: hover) {
    .widget_tab_post_list a:hover {
        color: rgba(0, 0, 0, 0.6) !important;
    }
}


/* お知らせスライダー */
.news_slider_widget {
    position: relative;
}

.widget_news_carousel {
    position: relative;
    background: var(--main_color)
}

.news_slider_widget a {
    display: block;
}

.news_slider_widget .image_wrap {
    margin: 0;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    aspect-ratio: 250 / 160;
}

.news_slider_widget .image {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
    display: block;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.news_slider_widget .content {
    padding: 20px;
}

.news_slider_widget .title {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    max-height: 3.2em;
    overflow: hidden;
    visibility: visible;
    font-weight: 500;
}

.news_slider_widget .title span {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news_slider_widget .swiper-pagination {
    position: relative;
    top: 0;
    margin: 20px 0 0 0;
}

.news_slider_widget .swiper-pagination span {
    margin: 0 4px !important;
}


/* 客室スライダー */
.gallery_slider_widget, .service_slider_widget {
    position: relative;
}

.widget_gallery_carousel {
    position: relative;
}

.widget_gallery_carousel a {
    display: block;
}

.widget_gallery_carousel .image_wrap {
    margin: 0;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    aspect-ratio: 250 / 160;
}

.widget_gallery_carousel .image {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
    display: block;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.widget_gallery_carousel .content {
    padding: 20px;
    border: 1px solid #ddd;
    color: #000;
    transition: color 0.25s ease;
}

.gallery_slider_widget .widget_gallery_carousel .content {
    border-bottom: none;
}

.service_slider_widget .widget_gallery_carousel .content {
    border-top: none;
    padding: 12px 20px;
}

.widget_gallery_carousel .sub_title {
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
    margin: 2px 0 7px 0;
}

.widget_gallery_carousel .title {
    font-size: 14px;
    line-height: 1.6;
    max-height: 3.2em;
    overflow: hidden;
    visibility: visible;
    font-weight: 500;
    text-align: center;
}

.widget_gallery_carousel .title span {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.widget_gallery_carousel_pagination {
    position: relative;
    top: 0;
    margin: 25px 0 0 0;
}

.widget_gallery_carousel_pagination span {
    margin: 0 4px !important;
}

@media (hover: hover) {
    .widget_gallery_carousel .item:hover .content {
        color: #999 !important;
    }
}


/* バナー */
.widget_banner a {
    display: block;
    color: #000 !important;
    text-decoration: none !important;
    background: #fff;
}

.widget_banner .image_wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 250 / 160;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.widget_banner .image_wrap img {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
    display: block;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.widget_banner .title {
    height: 60px;
    line-height: 60px;
    border: 1px solid #ddd;
    border-top: none;
    display: block;
    text-align: center;
}

@media (hover: hover) {
    .widget_banner a:hover {
        color: #999 !important;
    }
}


/* 検索 */
.widget_search label {
    display: none;
}

#searchform {
    background: #fff;
    height: 60px;
    border: 1px solid #ddd;
}

#searchform #s {
    border: none;
    background: none;
    padding: 0 20px;
    margin: 0;
    width: calc(100% - 50px);
    height: 60px;
}

#searchform #searchsubmit {
    border: none;
    background: none;
    width: 50px;
    height: 60px;
    z-index: 200;
    position: relative;
    cursor: pointer;
    display: block;
    text-indent: -300px;
    overflow: hidden;
}

#searchform .submit_button {
    position: relative;
    width: 50px;
    height: 60px;
    float: right;
    top: 0px;
}

#searchform .submit_button:before {
    text-indent: 0;
    display: block;
    width: 50px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    position: absolute;
    font-family: 'normal_icon';
    color: #333;
    font-size: 16px;
    content: '\e94c';
    right: 2px;
    top: 1px;
    font-weight: 600;
    transition: color 0.2s ease;
    -webkit-font-smoothing: antialiased;
}

@media (hover: hover) {
    #searchform .submit_button:hover:before {
        color: rgba(0, 0, 0, 0.5) !important;
    }
}


/* デフォルトのタグ一覧 */
.widget_tag_cloud .tagcloud {
    margin: 0 0 -6px 0;
    padding: 0;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.widget_tag_cloud .tagcloud a {
    margin: 0 6px 6px 0;
    font-size: 14px !important;
    display: block;
    background: #f6f6f6;
    padding: 0px 20px;
    border-radius: 4px;
    height: 36px;
    line-height: 36px;
}

@media (hover: hover) {
    .widget_tag_cloud .tagcloud a:hover {
        background: var(--main_color) !important;
        color: #fff !important;
    }
}


/* デフォルトの最近の記事 */
.widget_recent_entries li {
    padding: 15px 20px;
    margin: 0;
    border: 1px solid #ddd;
    border-bottom: none;
    display: flex;
    flex-direction: column;
}

.widget_recent_entries li:last-of-type {
    border-bottom: 1px solid #ddd;
}

.widget_recent_entries li a {
    display: block;
    font-size: 14px;
    line-height: 1.8;
    width: 100%;
    order: 2;
}

.widget_recent_entries li a br {
    display: none;
}

.widget_recent_entries .post-date {
    position: relative;
    color: #999;
    font-size: 14px;
    margin: -5px 0 5px 0;
    display: block;
    width: 100%;
    order: 1;
    padding-left: 20px;
}

.widget_recent_entries .post-date:before {
    font-family: 'normal_icon';
    content: '\e903';
    font-size: 18px;
    position: absolute;
    top: calc(50%);
    transform: translateY(-50%);
    left: 0;
    -webkit-font-smoothing: antialiased;
}

body.mobile_device .widget_recent_entries .post-date:before {
    margin-top: 1px;
}


/* デフォルトのカテゴリー */
.widget_categories ul:first-of-type {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.widget_categories ul:first-of-type ul {
    border: none;
}

.widget_categories li {
    margin: 0;
    padding: 0;
    position: relative;
}

.widget_categories li a {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 0 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 60px;
}

.widget_categories li li a {
    padding-left: calc(20px + 1em);
}

.widget_categories li li li a {
    padding-left: calc(20px + 2em);
}

.widget_categories li .title {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    visibility: visible;
}

.widget_categories li .post-count {
    background: #f2f2f2;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    font-size: 12px;
    position: absolute;
    right: 10px;
    top: 11px;
    pointer-events: none;
}

@media (hover: hover) {
    .widget_categories li a:hover {
        color: rgba(0, 0, 0, 0.6) !important;
    }
}


/* デフォルトのアーカイブ */
.widget_archive ul:first-of-type {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.widget_archive ul:first-of-type ul {
    border: none;
}

.widget_archive li {
    margin: 0;
    padding: 0;
    position: relative;
}

.widget_archive li a {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 0 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 60px;
}

.widget_archive li li a {
    padding-left: calc(20px + 1em);
}

.widget_archive li li li a {
    padding-left: calc(20px + 2em);
}

.widget_archive li .post-count {
    background: #f2f2f2;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    font-size: 12px;
    position: absolute;
    right: 10px;
    top: 11px;
}

@media (hover: hover) {
    .widget_archive li a:hover {
        color: rgba(0, 0, 0, 0.6) !important;
    }
}


/* デフォルトの固定ページ */
.widget_pages ul:first-of-type {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.widget_pages ul:first-of-type ul {
    border: none;
}

.widget_pages li {
    margin: 0;
    padding: 0;
    position: relative;
}

.widget_pages li a {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 0 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 60px;
}

.widget_pages li li a {
    padding-left: calc(30px + 1em);
}

.widget_pages li li li a {
    padding-left: calc(30px + 2em);
}

@media (hover: hover) {
    .widget_pages li a:hover {
        color: rgba(0, 0, 0, 0.6) !important;
    }
}


/* デフォルトのナビ　*/
.widget_nav_menu ul:first-of-type {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.widget_nav_menu ul:first-of-type ul {
    border: none;
}

.widget_nav_menu li {
    margin: 0;
    padding: 0;
    position: relative;
}

.widget_nav_menu li a {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 0 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 60px;
}

.widget_nav_menu li li a {
    padding-left: calc(20px + 1em);
}

.widget_nav_menu li li li a {
    padding-left: calc(20px + 2em);
}

@media (hover: hover) {
    .widget_nav_menu li a:hover {
        color: rgba(0, 0, 0, 0.6) !important;
    }
}


/* デフォルトのメタウィジェット */
.widget_meta ul:first-of-type {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.widget_meta ul:first-of-type ul {
    border: none;
}

.widget_meta li {
    margin: 0;
    padding: 0;
    position: relative;
}

.widget_meta li a {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 0 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 60px;
}

.widget_meta li li a {
    padding-left: calc(30px + 1em);
}

.widget_meta li li li a {
    padding-left: calc(30px + 2em);
}

@media (hover: hover) {
    .widget_meta li a:hover {
        color: rgba(0, 0, 0, 0.6) !important;
    }
}


/* デフォルトのコメントウィジェット */
.widget_recent_comments li {
    font-size: 14px;
    line-height: 1.8;
    border: 1px solid #ddd;
    border-bottom: none;
    margin: 0;
    padding: 15px 20px;
}

.widget_recent_comments li:last-of-type {
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
}

.widget_recent_comments li > a {
    display: block;
}

.widget_recent_comments .comment-author-link a {
    color: #999;
}

.widget_recent_comments .comment-author-link a:hover {
    color: #ccc;
}

.widget_recent_comments li br {
    display: none;
}


/* デフォルトのブロック */
.widget_block {
    font-size: 16px;
    line-height: 2.4;
}

.widget_block .wp-block-archives-list li a, .widget_block .wp-block-categories-list li a {
    color: #000 !important;
}

#footer .widget_block a {
    text-decoration: underline;
}

@media (hover: hover) {
    .widget_block a:hover {
        text-decoration: underline;
    }

    .widget_block .wp-block-archives-list li a:hover, .widget_block .wp-block-categories-list li a:hover {
        color: rgba(0, 0, 0, 0.6) !important;
        text-decoration: none;
    }
}


/* デフォルトのテキストウィジェット */
.widget_text .textwidget {
    font-size: 14px;
    line-height: 2.4;
}

#footer .widget_text .textwidget a {
    text-decoration: underline;
}

@media (hover: hover) {
    .widget_text .textwidget a:hover {
        text-decoration: underline;
    }
}


/* デフォルトのアーカイブとカテゴリー　ドロップダウンメニュー */
.widget_archive form, .widget_categories form {
    position: relative;
}

.widget_archive select, .widget_categories select {
    border: 1px solid #ddd;
    background: #fff;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    font-size: 14px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.widget_archive .screen-reader-text, .widget_categories .screen-reader-text {
    display: block;
    clip: auto;
    clip-path: none;
    pointer-events: none;
    height: 60px;
    width: 50px;
    margin: 0;
    position: absolute;
    right: 5px;
    text-indent: -300px;
}

.widget_archive .screen-reader-text:before, .widget_categories .screen-reader-text:before {
    font-family: 'normal_icon';
    content: '\e90e';
    text-align: center;
    text-indent: 0;
    display: block;
    font-size: 14px;
    width: 14px;
    height: 14px;
    line-height: 14px;
    z-index: 10;
    position: absolute;
    right: 20px;
    top: 25px;
    -webkit-font-smoothing: antialiased;
}


/* カレンダー */
#calendar_wrap {
    padding: 0;
    margin: -6px 0 -20px;
}

#wp-calendar {
    margin: 0 auto;
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
    table-layout: fixed;
}

#wp-calendar caption {
    padding: 7px 0;
    font-size: 16px;
    font-weight: 600;
}

#wp-calendar thead th, #wp-calendar tfoot td {
    padding: 12px 10px;
    line-height: 2;
}

#wp-calendar thead th {
    font-weight: 500;
}

#wp-calendar tbody th, #wp-calendar tbody td {
    padding: 0;
    margin: 0;
    line-height: 1;
    text-align: center;
}

#wp-calendar tbody span, #wp-calendar tbody a {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 /1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#wp-calendar tbody a {
    border-radius: 100%;
    background: #f6f6f6;
    color: #000;
    width: calc(100% - 6px);
    margin-left: 3px;
}

@media (hover: hover) {
    #wp-calendar tbody a:hover {
        color: #fff;
        background: var(--main_color) !important;
    }

    #footer #wp-calendar tbody a:hover {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.4) !important;
    }
}

#wp-calendar tbody td[colspan] span {
    aspect-ratio: unset;
}

.wp-calendar-nav {
    font-size: 14px;
    padding: 20px 0;
    width: 100%;
}

.wp-calendar-nav .wp-calendar-nav-prev {
    width: 40%;
    float: left;
}

.wp-calendar-nav .wp-calendar-nav-next {
    width: 40%;
    float: right;
    text-align: right;
}


/* デフォルトのギャラリー */
.widget_media_gallery .gallery-item {
    margin-top: 0 !important;
}


/* RSS */
.widget_rss .widget_headline a {
}

.widget_rss .rss-widget-feed {
    display: none;
}

.widget_rss ul li {
    font-size: 14px;
    margin: 0;
    padding: 20px 20px 15px;
    border: 1px solid #ddd;
    border-bottom: none;
    display: flex;
    flex-wrap: wrap;
}

.widget_rss ul li:last-of-type {
    border-bottom: 1px solid #ddd;
}

.widget_rss ul li .rss-date {
    -ms-flex-order: 1;
    order: 1;
    color: #999;
    font-size: 13px;
    line-height: 1;
    margin-right: 10px;
}

.widget_rss ul li cite {
    -ms-flex-order: 2;
    order: 2;
    color: #999;
    font-size: 13px;
    line-height: 1;
}

.widget_rss ul li .rsswidget {
    -ms-flex-order: 3;
    order: 3;
    display: block;
    width: 100%;
    margin: 0;
    line-height: 1.6;
}

.widget_rss ul li .rssSummary {
    -ms-flex-order: 4;
    order: 4;
    color: #999;
    font-size: 13px;
    margin: -0.35em 0;
    line-height: 1.6;
}

.widget_rss .rss-date {
    position: relative;
    font-family: Arial;
}

.widget_rss .rsswidget ~ .rss-date, .widget_rss .rsswidget ~ cite {
    margin-bottom: 10px;
}

.widget_rss .rsswidget ~ .rssSummary {
    margin-top: calc(10px - 0.35em);
}


/* ----------------------------------------------------------------------
 404ページ
---------------------------------------------------------------------- */
body.search-no-results.header_fix, body.error404.header_fix {
    padding-top: 70px;
}

body.search-no-results.header_fix #header, body.error404.header_fix #header {
    animation: none !important;
}

body.error404 #footer, body.error404 #footer_banner_wrap, body.error404 #return_top, body.error404 #side_icon_button,
body.search-no-results #footer, body.search-no-results #footer_banner_wrap, body.search-no-results #return_top, body.search-no-results #side_icon_button {
    display: none;
}

body.error404 #copyright, body.search-no-results #copyright {
    display: none;
}

#no_search_result {
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

#no_search_result .content {
    z-index: 100;
    width: 100%;
    margin-top: 0px;
}

#no_search_result.has_image .content {
    color: #fff;
}

#no_search_result.has_image .content p a {
    color: #fff !important;
    text-decoration: underline;
}

#no_search_result .headline {
    text-align: center;
    margin: 0 0 40px 0;
    font-size: 42px;
    font-family: var(--headline_font_type);
}

#no_search_result .desc {
    text-align: center;
    margin: 0 auto 50px;
    width: 800px;
}

#no_search_result .desc:last-child {
    margin-bottom: 0;
}

#no_search_result .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
}

#no_search_result .bg_image {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

#no_search_result form {
    height: 50px;
    width: 400px;
    position: relative;
    margin: 0 auto;
}

#no_search_result .input_area input {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 50px;
    border: none;
    background: #f3f3f3;
    z-index: 1;
    padding: 0 60px 0 25px;
    border-radius: 50px;
    z-index: 1;
}

#no_search_result .search_button input {
    position: absolute;
    right: 0px;
    top: 0px;
    border: none;
    background: none;
    width: 50px;
    height: 50px;
    z-index: 2;
    cursor: pointer;
}

#no_search_result .search_button label {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: block;
    pointer-events: none;
}

#no_search_result .search_button label:before {
    display: block;
    font-family: 'normal_icon';
    color: #000;
    font-size: 14px;
    content: '\e94c';
    top: 19px;
    right: 20px;
    position: absolute;
    transition: color 0.2s ease;
    -webkit-font-smoothing: antialiased;
}

@media (hover: hover) {
    #no_search_result.has_image .content p a:hover {
        color: rgba(255, 255, 255, 0.5) !important;
    }

    #no_search_result .search_button:hover label:before {
        color: rgba(0, 0, 0, 0.6);
    }
}

#no_search_result.has_bg_image .content {
    color: #fff;
}

#no_search_result.has_bg_image .input_area input {
    background: #fff;
}

#no_search_result .tag_list {
    text-align: center;
    width: 730px;
    margin: 60px auto;
}

#no_search_result .desc + .tag_list {
    margin-top: 50px;
}

#no_search_result .wp-tag-cloud {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 0 0 -5px;
}

#no_search_result .wp-tag-cloud li {
    margin: 0 2px 4px;
    display: block;
}

#no_search_result .wp-tag-cloud a {
    background: #f3f3f3;
    height: 35px;
    line-height: 35px;
    display: block;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 14px !important;
}

#no_search_result.has_image .wp-tag-cloud a {
    background: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (hover: hover) {
    #no_search_result .wp-tag-cloud a:hover {
        background: #000;
        border-color: #000;
        color: #fff;
    }

    #no_search_result.has_image .wp-tag-cloud a:hover {
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.5);
        color: rgba(255, 255, 255, 0.5);
    }
}

#no_search_result .copyright {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    line-height: 1.5;
    border-top: 1px solid #ddd;
    text-align: center;
    padding: 19px 20px;
    font-size: 14px;
}

#no_search_result.has_image .copyright {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

#no_search_result.has_image .copyright a {
    color: #fff;
    text-decoration: underline;
}

@media (hover: hover) {
    #no_search_result.has_image .copyright a:hover {
        color: rgba(255, 255, 255, 0.5);
    }
}


/* ----------------------------------------------------------------------
 コメント
---------------------------------------------------------------------- */
/* 基本設定 */
#comments {
    margin: 80px 0 0 0;
    position: relative;
}

#comments .headline {
    text-align: center;
    font-size: 26px;
    line-height: 1;
    margin: 0 auto 80px;
    font-family: var(--headline_font_type);
}


/* コメント・トラックバックのタブ */
#comment_header {
    position: relative;
    margin: 0 0 20px;
}

#comment_tab {
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    overflow: hidden;
}

#comment_tab li {
    text-align: center;
    margin: 0;
    -webkit-flex: 1 1 0%;
    flex: 1 1 0%;
}

#comment_tab li a, #comment_tab li p {
    font-size: 12px;
    padding: 15px 15px;
    line-height: 1.6;
    display: block;
    text-decoration: none;
    background: #fff;
    color: #000;
}

@media (hover: hover) {
    #comment_tab li a:hover {
        color: #fff !important;
        background: var(--main_color_light);
    }
}

#comment_tab li.active a {
    background: var(--main_color);
}

#comment_tab li.active a, #comment_header #comment_closed p {
    color: #fff;
    position: relative;
}

#comment_tab li.active a {
    pointer-events: none;
}


/*  コメントの基本部分 */
.commentlist {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin: 0 0 20px;
    padding: 20px 20px 0;
    background: #fff;
    border: 1px solid #ddd;
}

#comments .post_content {
    margin: 0;
    padding: 5px 0 0 0;
    background: none;
}


/* コメントの情報部分 */
.comment-meta {
    position: relative;
    margin: 0 0 10px 0;
}

.comment-meta-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#comments .avatar {
    margin: 0 15px 0 0;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.comment-name-date {
}

a.admin-url {
    text-decoration: underline;
}

a.guest-url {
    text-decoration: underline;
}

.comment-name-date {
    margin: 0;
    font-size: 14px;
}

.comment-date {
    color: #888;
    margin: 10px 0 0 0;
}

.comment-act {
    font-size: 14px;
    position: absolute;
    top: 5px;
    right: 0px;
    padding: 0;
    margin: 0;
}

.comment-act li {
    display: inline;
    margin: 0;
}

.comment-reply a, .comment-reply a:visited {
    border-right: 1px solid #aaa;
    padding: 0 10px 0 0;
    margin: 0 6px 0 0;
}

.comment-edit a, .comment-edit a:visited {
    border-left: 1px solid #aaa;
    padding: 0 0 0 10px;
    margin: 0 0 0 6px;
}


/* コメント本文 */
#comments .post_content p {
    margin: 0 0 15px 0;
    line-height: 1.8;
}

#comments .post_content blockquote span {
    margin: 0 0 -1em 0;
    display: block;
}


/* メッセージ、警告文 */
.comment-note {
    display: block;
    font-size: 11px;
    margin: 0 0 1em 0;
    color: #33a8e5;
    border: 1px solid #94ddd4;
    padding: 10px 15px;
    background: #d6f4f0;
}

.comment_closed {
    border: 1px solid #ccc;
    text-align: center;
    margin: 0 35px 15px 0;
    padding: 15px;
    background: #fefefe;
}

.no_comment {
    padding-bottom: 15px;
}

.comment_message {
    margin: 0 0 25px 0;
}


/* トラックバック */
.commentlist .ping-link {
    margin: 0 0 25px 0;
}

.commentlist .ping-meta {
    margin: 0 0 15px 0;
}

#trackback_url_area {
    margin: 0 0 25px 0;
}

#trackback_url_area label {
    font-size: 11px;
    display: block;
    margin: 0 0 5px 0;
}

#trackback_url_area input {
    border: 1px solid #ddd;
    padding: 5px 10px;
    width: 100%;
}


/* ページナビ */
#comment_pager {
    margin: 0 0 10px;
    height: 24px;
}

#comment_pager a, #comment_pager span {
    display: inline;
    float: left;
    margin: 0 10px 0 0;
}

#comment_pager .current {
    text-decoration: underline;
}


/* コメントフォーム */
.comment_form_wrapper {
    margin: 0 0 0px;
    padding: 20px;
    border: 1px solid #ddd;
    background: #fff;
}

.comment .comment_form_wrapper {
    margin: 0 0 20px;
}

#cancel_comment_reply a {
    background: #eee;
    margin: 0 0 1em 0;
    padding: 15px;
    border-radius: 50px;
    text-align: center;
    display: block;
}

@media (hover: hover) {
    #cancel_comment_reply a:hover {
        background: var(--main_color);
        color: #fff !important;
    }
}

#comment_user_login p {
    padding: 10px 0;
    margin: 0;
    line-height: 1;
    font-size: 14px;
}

#comment_user_login span {
    margin: 0 0 0 40px;
}

#comment_login {
    margin: 0;
    padding: 3px 30px 10px 30px;
}

#comment_login p {
    margin: 0;
    padding: 12px 0 11px 36px;
    line-height: 1;
}

#comment_login a {
    margin: 0 0 0 20px;
    padding: 0;
}

#guest_info {
    padding: 0;
    width: 100%;
}

#guest_info div {
    margin: 0 0 12px 0;
    text-align: left;
}

#guest_info input {
    margin: 0;
    padding: 5px 10px;
    border: 1px solid #ccc;
    width: 100%;
    background: #fff;
}

#guest_info input:focus {
    border: 1px solid var(--main_color);
}

#guest_info label {
    display: block;
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 12px;
}

#guest_info span {
    margin: 0 10px 0 0;
}

#comment_textarea textarea {
    margin: 15px 0 0;
    width: 100%;
    height: 150px;
    font-size: 16px;
    line-height: 1.8;
    overflow: auto;
    padding: 10px;
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
}

#comment_textarea textarea:focus {
    border: 1px solid var(--main_color);
}

#submit_comment_wrapper {
    text-align: center;
}

#submit_comment {
    color: #fff;
    background: var(--main_color);
    border: none;
    cursor: pointer;
    font-size: 14px;
    width: 200px;
    height: 50px;
    margin: 20px auto 0;
    display: block;
    border-radius: 50px;
    transition: all 0.2s ease;
}

@media (hover: hover) {
    #submit_comment:hover {
        background: var(--main_color_light);
        color: #fff;
    }
}

#input_hidden_field {
    display: none;
}


/* パスワード保護 */
.password_protected {
    text-align: center;
    margin: 0 38px 30px;
    padding: 10px 20px;
    color: #fff;
    background: #3db4b2;
    border-radius: 5px;
}

.password_protected p {
    font-size: 12px;
    margin: 0;
    line-height: 1.6;
}


/* ----------------------------------------------------------------------
　アニメーションの設定
---------------------------------------------------------------------- */
/* 下から上へスライド */
@keyframes tcd_slide_up {
    0% {
        opacity: 0;
        bottom: -30px;
    }
    100% {
        opacity: 1;
        bottom: 0;
    }
}


/* ズームアウト */
@keyframes tcd_zoom_out {
    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.3);
    }
}


/* ズームイン */
@keyframes tcd_zoom_in {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1.0);
    }
}


/* フェードイン */
@keyframes tcd_fade_in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* フェードアウト */
@keyframes tcd_fade_out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/* 右に移動 */
@keyframes tcd_move_right {
    0% {
        opacity: 0;
        right: 30px;
    }
    100% {
        opacity: 1;
        right: 0;
    }
}


/* 左に移動 */
@keyframes tcd_move_left {
    0% {
        opacity: 0;
        left: 30px;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}


/* 下に移動 */
@keyframes tcd_move_down {
    0% {
        opacity: 0;
        top: -30px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}


/* 上に移動 */
@keyframes tcd_move_up {
    0% {
        opacity: 0;
        bottom: -30px;
    }
    100% {
        opacity: 1;
        bottom: 0;
    }
}


/* ポップアップ */
@keyframes tcd_pop_up {
    0% {
        transform: scale(.1);
        opacity: 0;
    }
    100% {
        transform: none;
        opacity: 1;
    }
}


/* ----------------------------------------------------------------------
 WordPress プリセットスタイル
---------------------------------------------------------------------- */

/* パスワード保護 */
.c-pw {
    margin-top: 50px;
}

.c-pw__box {
    font-size: 16px;
    padding: 40px;
    border: 1px solid #ddd;
    background: #fff;
}

.c-pw__box-inner {
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-pw__box-desc {
    line-height: 1.8 !important;
    margin: -0.4em 0 2em !important;
}

.c-pw__box-input {
    display: block;
    flex: 1;
    border: none;
    background: #eee;
    height: 100%;
    padding: 0 20px;
}

.c-pw__btn--submit {
    display: block;
    min-width: 150px;
    height: 100%;
    padding: 0 1em;
    background: #111;
    color: #fff !important;
    border: 0;
    cursor: pointer;
}

.c-pw__btn--submit:hover {
    background: #333;
}

.c-pw__box-error {
    color: red;
    font-size: 12px;
}

@media (max-width: 800px) {
    .c-pw {
        margin-top: 40px;
    }

    .c-pw__box {
        font-size: 14px;
        padding: 20px;
    }

    .c-pw__box-inner {
        height: 40px;
    }

    .c-pw__box-desc {
        margin-bottom: 1em !important;
    }

    .c-pw__box-input {
        width: calc(100% - 100px);
        padding: 0 10px;
    }

    .c-pw__btn--submit {
        min-width: auto;
        width: 100px;
    }
}


/* Cardlink style - カードリンクのスタイル */
.cardlink {
    margin: 2em 0 !important;
}


/* Google Mapの設定 */
.p-btn {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    min-width: 180px;
    height: 50px;
    padding: 0 15px;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .p-btn {
        height: 45px;
        font-size: 12px;
        line-height: 45px;
    }
}


/* ブロックエディタ */
.wp-block-social-links a {
    color: #fff !important;
}

.has-small-font-size {
    font-size: .8125em !important;
}

.has-normal-font-size,
.has-regular-font-size {
    font-size: 1em !important;
}

.has-medium-font-size {
    font-size: 1.25em !important;
}

.has-large-font-size {
    font-size: 2.25em !important;
}

.has-huge-font-size, .has-larger-font-size {
    font-size: 2.625em !important;
}

.has-text-align-left {
    text-align: left !important;
}

.has-text-align-right {
    text-align: right !important;
}

.wp-block-embed {
    margin-bottom: 50px;
}

.wp-block-image {
    margin-bottom: 50px;
}

.wp-block-columns {
    margin-bottom: 50px;
}

@media (max-width: 800px) {
    .wp-block-embed {
        margin-bottom: 35px;
    }

    .wp-block-image {
        margin-bottom: 35px;
    }

    .wp-block-columns {
        margin-bottom: 35px;
    }
}


/* ブロックエディターのテーブルブロックの調整 */
.wp-block-table {
    overflow: visible !important;
    margin-bottom: 50px;
}

.wp-block-table table {
    margin-bottom: 0;
}

.wp-block-table .wp-element-caption {
    padding: 30px 0 0;
    text-align: center;
}

.wp-block-table.is-style-stripes {
    border-bottom: none !important;
}

.wp-block-table.is-style-stripes td, .wp-block-table.is-style-stripes th,
.wp-block-table .has-background td, .wp-block-table .has-background th {
    background-color: transparent;
    border: none !important;
}


/* レスポンシブ説明文 */
.responsive_desc {
    margin-bottom: 2em;
}

.responsive_desc .mobile {
    display: none;
}

@media (max-width: 800px) {
    .responsive_desc .pc {
        display: none;
    }

    .responsive_desc .mobile {
        display: block;
    }
}


/* グレー背景のボックス */
.gray_bg {
    background: #f5f5f5;
    padding: 80px;
    margin: 70px 0;
}

.gray_bg + .post_row {
    margin-top: 80px;
}

.gray_bg .speech_balloon:last-child {
    margin-bottom: 0 !important;
}

.gray_bg .sc .speech_balloon {
    margin-bottom: 2.5em !important;
}

.gray_bg .sc:last-child .speech_balloon {
    margin-bottom: 0 !important;
}

.gray_bg .qt_google_map:last-child {
    margin-bottom: 0 !important;
}

.gray_bg .sc .qt_google_map {
    margin-bottom: 35px !important;
}

.gray_bg .sc:last-child .qt_google_map {
    margin-bottom: 0 !important;
}

@media screen and (max-width: 1300px) {
    .gray_bg {
        padding: 50px;
    }
}

@media screen and (max-width: 800px) {
    .gray_bg {
        margin-bottom: 35px;
        margin-top: 35px;
        padding: 30px;
    }

    .gray_bg + .post_row {
        margin-top: 40px;
    }
}


/* 縦書き */
.vertical_text {
    writing-mode: vertical-rl;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 50px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    line-height: 1.5 !important;
}

@media (max-width: 800px) {
    .vertical_text {
        margin: 40px 0 !important;
    }
}


/* タブコンテンツ */
.qt_tab_content_wrap {
    position: relative;
    margin-bottom: 2em;
}

.qt_tab_content_header {
    display: flex;
    flex-wrap: wrap;
}

.qt_tab_content_header .item {
    cursor: pointer;
    flex: 1 1 0%;
    text-align: center;
    height: 70px;
    line-height: 70px;
    font-size: 16px;
    border-bottom: 3px solid #ddd;
    color: #999;
    transition: color 0.25s ease, border-color 0.25s ease;
    font-weight: 600;
}

.qt_tab_content_header .item.active {
    pointer-events: none;
    border-color: #000;
    color: #000;
}

@media (hover: hover) {
    .qt_tab_content_header .item:hover {
        color: #000;
    }
}

.qt_tab_content_main {
    position: relative;
    background: #fafafa;
}

.qt_tab_content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    padding: 3em;
}

.qt_tab_content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transition: opacity 0.3s linear 0s;
}

.qt_tab_content img {
    display: block;
    margin: 0 auto;
}

.qt_tab_content .desc {
    text-align: center;
    margin: 10px 0 -10px;
}

@media (max-width: 800px) {
    p + .qt_tab_content_wrap {
        margin-top: -20px;
    }

    .qt_tab_content {
        padding: 2em;
    }

    .qt_tab_content .desc {
        margin: 10px 0 -5px;
    }
}


/* デザインテーブル */
.post_content .design_table {
    border: none !important;
}

.post_content .design_table th, .post_content .design_table td {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.post_content .design_table tr:first-child td {
    background: #238c00;
    color: #fff;
    font-weight: 600 !important;
}

.post_content .design_table.red_color tr:first-child td {
    background: #d93600;
}

.post_content .design_table.blue_color tr:first-child td {
    background: #008c8c;
}

.post_content .design_table tr:nth-child(even) td {
    background: #f6f6f6 !important;
}

@media screen and (max-width: 1000px) {
    .post_content .design_table td {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media screen and (max-width: 800px) {
    .post_content .design_table {
        width: 580px !important;
        margin: 0 auto;
    }
}


/* ----------------------------------------------------------------------
 シェアボタン
---------------------------------------------------------------------- */
.share_button_list.top {
}

.share_button_list ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -3px -3px 0;
}

.share_button_list.large_size ul {
    margin: 0 -5px -5px 0;
}

.share_button_list li {
    flex: 1 1 0%;
    margin: 0 3px 3px 0;
    max-width: 100px;
}

.share_button_list.large_size li {
    flex: 0 0 auto;
    width: calc(25% - 5px);
    margin: 0 5px 5px 0;
    max-width: inherit;
}

.share_button_list a {
    display: block;
    text-align: center;
    position: relative;
    height: 30px;
    background: #000;
    color: #fff;
    border-radius: 3px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 32px;
}

.share_button_list.mono a {
    line-height: 30px;
    background: #f2f2f2;
    color: #000;
    border: 1px solid #ddd;
}

.share_button_list.large_size a {
    height: 40px;
    line-height: 42px;
}

.share_button_list.large_size.mono a {
    line-height: 40px;
}

.share_button_list .label {
    font-size: 12px;
    position: relative;
    font-family: Arial;
}

.share_button_list a:before {
    font-family: 'sns_icon';
    display: block;
    color: #fff;
    margin-right: 5px;
    position: relative;
    transition: color 0.25s ease;
    -webkit-font-smoothing: antialiased;
}

.share_button_list.mono a:before {
    color: #000;
}

.share_button_list .twitter_button a:before {
    content: '\e950';
    font-size: 12px;
    top: -1px;
}

.share_button_list .facebook_button a:before {
    content: '\e944';
    font-size: 18px;
    top: -1px;
}

.share_button_list .hatena_button a:before {
    content: '\e908';
    font-size: 14px;
    top: 0px;
}

.share_button_list .pocket_button a:before {
    content: '\e90a';
    font-size: 16px;
    top: 0px;
}

.share_button_list .rss_button a:before {
    content: '\e90b';
    font-size: 12px;
    top: 0px;
}

.share_button_list .feedly_button a:before {
    content: '\e907';
    font-size: 15px;
    top: 0px;
}

.share_button_list .pinterest_button a:before {
    content: '\e905';
    font-size: 16px;
    top: 0px;
}

.share_button_list .line_button a:before {
    content: '\e909';
    font-size: 16px;
    top: 0px;
}

.share_button_list.color .twitter_button a {
    background: #000;
    border-color: #000;
}

.share_button_list.color .facebook_button a {
    background: #35629a;
    border-color: #35629a;
}

.share_button_list.color .hatena_button a {
    background: #3c7dd1;
    border-color: #3c7dd1;
}

.share_button_list.color .pocket_button a {
    background: #ee4056;
    border-color: #ee4056;
}

.share_button_list.color .rss_button a {
    background: #ffb53c;
    border-color: #ffb53c;
}

.share_button_list.color .feedly_button a {
    background: #6cc655;
    border-color: #6cc655;
}

.share_button_list.color .pinterest_button a {
    background: #d4121c;
    border-color: #d4121c;
}

.share_button_list.color .line_button a {
    background: #00B900;
    border-color: #00B900;
}

@media (hover: hover) {
    .share_button_list.color .twitter_button a:hover {
        background: #666;
    }

    .share_button_list.color .facebook_button a:hover {
        background: #1f3669;
    }

    .share_button_list.color .hatena_button a:hover {
        background: #0270ac;
    }

    .share_button_list.color .pocket_button a:hover {
        background: #c53648;
    }

    .share_button_list.color .rss_button a:hover {
        background: #e09900;
    }

    .share_button_list.color .feedly_button a:hover {
        background: #5ca449;
    }

    .share_button_list.color .pinterest_button a:hover {
        background: #a42f35;
    }

    .share_button_list.color .line_button a:hover {
        background: #009100;
        border-color: #009100;
    }

    .share_button_list.mono .twitter_button a:hover {
        background: #000;
        border-color: #000;
    }

    .share_button_list.mono .facebook_button a:hover {
        background: #35629a;
        border-color: #35629a;
    }

    .share_button_list.mono .hatena_button a:hover {
        background: #3c7dd1;
        border-color: #3c7dd1;
    }

    .share_button_list.mono .pocket_button a:hover {
        background: #ee4056;
        border-color: #ee4056;
    }

    .share_button_list.mono .rss_button a:hover {
        background: #ffb53c;
        border-color: #ffb53c;
    }

    .share_button_list.mono .feedly_button a:hover {
        background: #6cc655;
        border-color: #6cc655;
    }

    .share_button_list.mono .pinterest_button a:hover {
        background: #d4121c;
        border-color: #d4121c;
    }

    .share_button_list.mono .line_button a:hover {
        background: #00B900;
        border-color: #00B900;
    }

    .share_button_list.mono a:hover {
        color: #fff;
    }

    .share_button_list.mono a:hover:before {
        color: #fff;
    }
}

@media screen and (max-width: 800px) {
    .share_button_list .label {
        display: none;
    }

    .share_button_list.large_size .label {
        display: inline;
    }

    .share_button_list.large_size a {
        height: 35px;
        line-height: 37px;
    }

    .share_button_list.large_size.mono a {
        line-height: 35px;
    }

    .share_button_list a:before {
        margin: 0;
    }

    .share_button_list.large_size a:before {
        margin-right: 5px;
    }

    .share_button_list .twitter_button a:before {
        top: 0px;
    }

    .share_button_list .facebook_button a:before {
        top: -1px;
    }

    .share_button_list.large_size .facebook_button a:before {
        top: -1px;
    }

    .share_button_list .hatena_button a:before {
        top: 0px;
    }

    .share_button_list .pocket_button a:before {
        top: 0px;
    }

    .share_button_list .feedly_button a:before {
        top: -1.5px;
    }

    .share_button_list .rss_button a:before {
        top: -1px;
    }
}

@media screen and (max-width: 500px) {
    .share_button_list li {
        max-width: inherit;
    }

    .share_button_list.large_size li {
        width: calc(50% - 5px);
        max-width: inherit;
    }
}

.share_button_list_default ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -3px -10px 0;
}

.share_button_list_default li {
    margin: 0 3px 3px 0;
}

.share_button_list_default li.pocket_button {
    width: 90px !important;
}


/* ----------------------------------------------------------------------
 Contact form 7
---------------------------------------------------------------------- */
.wpcf7 .wpcf7-submit, .wpcf7 .wpcf7-previous {
    -webkit-transition: all .3s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: relative;
    width: 225px;
    height: 48px;
    margin: 30px auto 0;
    border: none !important;
    outline: none;
    background-color: #333333;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s;
}

.wpcf7 .wpcf7-previous + br {
    display: none;
}

@media (hover: hover) {
    .wpcf7 .wpcf7-submit:hover, .wpcf7 .wpcf7-previous:hover {
        background-color: #666666;
    }
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 2em;
    padding: 0;
    border: none;
    text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    color: #dc3232;
    font-size: 1em;
}


/* CANON theme */

/* TCDCE対応のため、以下移設 */

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

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

.post_content p {
    line-height: 2.4;
    margin: 0 0 2em 0;
}

.post_content h1,
.post_content h2,
.post_content h3,
.post_content h4,
.post_content h5,
.post_content h6 {
    font-weight: 500;
}


/* FAQ */
.faq_list {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 35px;
}

.faq_list .headline {
    font-size: 24px;
    color: #7ea0c8;
    margin-bottom: 45px;
    padding: 0;
    text-align: center;
}

.faq_list .item {
    border: 1px solid #ddd;
    margin: 0 0 -1px 0;
    position: relative;
    background: #fff;
}

.faq_list .title {
    cursor: pointer;
    margin: 0 !important;
    font-weight: 500;
    font-size: 16px !important;
    line-height: 1.8;
    padding: 27px 40px 25px 30px;
    margin-bottom: 0;
    position: relative;
    transition: color 0.4s ease;
}

.faq_list .title span {
    display: block;
    margin: -0.4em 0;
}

.faq_list .title:before {
    content: '';
    display: block;
    position: absolute;
    top: 35px;
    right: 25px;
    height: 1px;
    width: 11px;
    background: #000;
    inset-inline-start: auto;
}

.faq_list .title:after {
    content: '';
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    height: 11px;
    width: 1px;
    background: #000;
}

.faq_list .title.active:after {
    display: none;
}

.faq_list .desc_area {
    height: 0;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.54, 0.07, 0.38, 0.9);
}

.faq_list .desc {
    font-size: 16px;
    line-height: 2.6;
    padding: 20px 30px;
    border-top: 1px solid #ddd;
    background: #f8f8f8;
    transition: opacity 0.7s ease;
    opacity: 0;
}

.faq_list .desc span {
    display: block;
}

.faq_list .title.active {
    color: var(--main_color);
}

@media (hover: hover) {
    .faq_list .title:hover {
        color: var(--main_color);
    }
}

.faq_list .title.active + .desc_area > .desc {
    opacity: 1;
    transition: opacity 1s ease;
    margin-bottom: 0;
}

@media (max-width: 800px) {
    .faq_list .title {
        font-size: 14px !important;
        padding: 20px 50px 18px 20px;
    }

    .faq_list .desc {
        padding: 20px;
        font-size: 14px;
        line-height: 2;
    }

    .faq_list .title:before {
        top: 27px;
        right: 15px;
    }

    .faq_list .title:after {
        top: 22px;
        right: 20px;
    }
}


/* ----------------------------------------------------------------------
 Google Map
---------------------------------------------------------------------- */
.qt_google_map {
    width: 100%;
    height: 500px;
    background: #ddd;
    margin: 0 0 35px 0 !important;
}

.qt_google_map:last-child {
    margin-bottom: 0 !important;
}

.qt_google_map .qt_googlemap_embed {
    width: 100%;
    height: 500px;
}

.qt_google_map .pb_googlemap_custom-overlay-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: -80px;
    left: -50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    font-size: 16px;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
    font-weight: 600;
}

.qt_google_map .pb_googlemap_custom-overlay-inner::after {
    display: block;
    position: absolute;
    right: 0;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 0;
    margin: auto;
    border-width: 16px 5px 0 5px;
    border-style: solid;
    content: "";
}

@media screen and (max-width: 800px) {
    .qt_google_map {
        height: 320px;
    }

    .qt_google_map .qt_googlemap_embed {
        height: 320px;
    }

    .qt_google_map .pb_googlemap_custom-overlay-inner {
        transform: scale(0.8);
        left: -60px;
        top: -80px;
    }
}


/* table */
:is(.post_content, .post_content .tcdce-body) table {
    margin: 0 0 50px 0;
    width: 100% !important;
    border-collapse: collapse !important;
    table-layout: auto;
    word-break: break-all;
    word-wrap: break-all;
}

:is(.post_content, .post_content .tcdce-body) .s_table table {
    margin-bottom: 50px;
}

:is(.post_content, .post_content .tcdce-body) td, :is(.post_content, .post_content .tcdce-body) th {
    border: 1px solid #ddd !important;
    padding: 18px 25px 16px !important;
    line-height: 2.2;
    background: #fff;
}

:is(.post_content, .post_content .tcdce-body) th {
    background: #f7f7f7;
    font-weight: normal;
}

@media screen and (max-width: 800px) {
    :is(.post_content, .post_content .tcdce-body) table {
        margin: 0 0 35px 0;
    }
}

/* table style */
:is(.post_content, .post_content .tcdce-body) table.table_no_border th, :is(.post_content, .post_content .tcdce-body) table.table_no_border td {
    border: none;
    padding-left: 0;
}

:is(.post_content, .post_content .tcdce-body) table.table_border_serumtal th, :is(.post_content, .post_content .tcdce-body) table.table_border_serumtal td {
    border-left: none;
    border-right: none;
    padding-left: 0;
}


/* widget */
.single-post .p-toc--sidebar {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
}


/* alignment */
:is(.post_content, .post_content .tcdce-body) .alignright {
    float: right;
}

:is(.post_content, .post_content .tcdce-body) .alignleft {
    float: left;
}

:is(.post_content, .post_content .tcdce-body) .aligncenter {
    display: block;
    margin: 0 auto 2em;
    text-align: center;
}

:is(.post_content, .post_content .tcdce-body) blockquote.alignleft, :is(.post_content, .post_content .tcdce-body) img.alignleft {
    margin: 0 2em 2em 0;
}

:is(.post_content, .post_content .tcdce-body) .wp-caption.alignleft {
    margin: 0 2em 2em 0;
}

:is(.post_content, .post_content .tcdce-body) blockquote.alignright, :is(.post_content, .post_content .tcdce-body) img.alignright {
    margin: 0 0 2em 2em;
}

:is(.post_content, .post_content .tcdce-body) .wp-caption.alignright {
    margin: 0 0 2em 2em;
}

:is(.post_content, .post_content .tcdce-body) blockquote.aligncenter, :is(.post_content, .post_content .tcdce-body) img.aligncenter, :is(.post_content, .post_content .tcdce-body) .wp-caption.aligncenter {
    margin-bottom: 2em;
}

/*add*/
#header {
    display: none !important;
}

.contact-block p {
    width: fit-content;
    text-align: left;
    margin: auto !important;
}

.contact-block .phone {
    pointer-events: auto;
    font-size: 48px;
}

footer {
    padding: 0 !important;
}

footer #footer_logo {
    display: none;
}

#footer_info p {
    width: fit-content;
    text-align: left;
}

@media screen and (max-width: 768px) {
    table td {
        width: 100%;
    }

    .content-block .phone {
        font-size: 32px;
    }
}