@charset "UTF-8";

/*
Theme Name: PitaHex blog
Author: Eita Kobayashi
Version:  1.0.1
License: GPLv2 GNU General Public License
Tested up to:  6.5.3
*/

/*
============== 
変数
==============
*/

:root {
    /* フォントの種類 */
    --normal-font-family: "Noto Sans JP", "Yu Gothic Medium", "YuGothic", "ヒラギノ角ゴシック", "system-ui";

    --m-plus-2-font-family: "M PLUS 2", "Noto Sans JP", "Yu Gothic Medium", "YuGothic", "ヒラギノ角ゴシック", "system-ui";

    --image-color: #87cc5c;
    --gray-color: #fafbfc;
    --thick-gray-color: #ECEFF1;
    --pitahex-black-color: #202121;
    --thin-black-color: #222222;

    /*大きさ(上から小さい順)*/
    --small-font-size-15px: 15px;
    --small-font-size: clamp(15px, 1.95vw, 17px);
    --standard-font-size: clamp(16px, 2.08vw, 18px);
    --small-medium-font-size: clamp(20px, 2.604vw, 25px);
    --medium-font-size: clamp(23px, 2.99vw, 30px);
    --large-font-size: clamp(26px, 3.3vw, 40px);

    --soft-shadow: 0px 4px 5px -3px rgba(0, 0, 0, 0.3), -1px -3px 5px -3px rgba(0, 0, 0, 0.25);
    --standard-shadow: 0px 2px 10px -3px rgba(0, 0, 0, 0.3);
}

/* 
//////////////
end 
//////////////
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: var(--normal-font-family);
    /* text-wrap: wrap; */
    word-break: break-word;
}

input,
select,
button,
textarea {
    font-family: var(--m-plus-2-font-family);
    line-height: 1.5;
    max-width: 100%;
}

html p {
    line-height: 2.2;
}

html h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: var(--large-font-size);
    font-weight: bold;
    line-height: 1.5;
}

html a {
    color: #1570d4;
    text-decoration: none;
}

html a:active {
    color: var(--image-color);
}

html a:visited {
    color: #A15CCC;
}

html a:hover {
    text-decoration: underline;
}

html summary:hover {
    cursor: pointer;
    /* カーソルを指マーク */
    text-decoration: underline;
}

body {
    margin: 0 0 0 0;
    background-color: #FFFFFF;
    color: var(--thin-black-color);
    overflow-x: hidden;
}

header {
    text-align: center;
    position: relative;
    z-index: 2000;
}

.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    z-index: 2000;
    animation: fadeIn 0.5s ease-in-out;
}

img {
    max-width: 100%;
    object-fit: contain;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

mark {
    background: linear-gradient(transparent 70%, var(--image-color) 50%);
    color: inherit;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background-color: #FFF;
}

::-webkit-scrollbar-thumb {
    background-color: var(--image-color);
}

/* ::selection {
    background-color: var(--image-color);
    color: #FFFFFF;
} */

/* ::-moz-selection {
    background-color: var(--image-color);
    color: #FFFFFF;
} */

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

@media screen and (max-width:425px) {
    body {
        overflow-x: hidden;
    }
}

/* ================================== */

/*
============== 
header-style
==============
*/

.header-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 13px 70px;
    box-shadow: var(--standard-shadow);
    align-items: center;
    gap: 0px 15px;
    background-color: #FFF;

    .menu-button {
        position: relative;
        z-index: 14;
        display: none;
        padding: 10px;
        /* min-width: 120px; */
        gap: 4px;
        background: #4d4d4d;
        border-radius: 10px;
        color: #fff;
        opacity: 1;
        align-items: center;
        align-content: flex-start;
        flex-wrap: nowrap;
        flex-direction: row;
        box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);

        &:active {
            opacity: 1;
            transition: all 0.5s ease;
            background-color: #7d7d7d96;
            box-shadow: 0px 10px 10px -3px rgba(0, 0, 0, 0.3);
            animation: pulse 0.7s;
        }

        &:hover {
            opacity: 1;
            transition: all 0.5s ease;
            animation: pulse 0.7s;
        }

        &:focus-visible {
            background-color: rgba(229, 229, 229, 0.588);
            color: #000;
        }
    }
}

.nav-list {
    display: flex;
    list-style-type: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px 50px;
    padding: 0;
    margin: 0;
    font-size: var(--small-font-size);
    color: var(--pitahex-black-color);
    justify-content: flex-end;
}

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

    .header-box {
        padding: 10px 20px;
    }

    .menu-button {
        display: flex !important;
    }

    .menu-background {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: #87cc5cee;
        box-sizing: border-box;
        z-index: 1;
        padding-top: 50px;
        transition: .3s;
        overflow-y: scroll;
    }

    .open {
        right: 0;
    }

    .nav-list {
        margin-top: 40px;
        padding: 0;
        display: flex;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/

        font-size: var(--small-medium-font-size);
    }

    .nav-list-li {
        width: 86%;
        padding: 15px;
        border-bottom: var(--pitahex-black-color) 1px solid;
    }

}

.cm_top-noscript-box {
    background-color: #F2E700;
    padding: 20px;
    color: var(--thin-black-color);

    p {
        font-size: var(--small-font-size);
    }
}

.cm_top-news-box {
    background-color: #242424;
    padding: 20px;
    color: #FFF;
    position: relative;
    text-align: center;

    p {
        font-size: var(--small-font-size);
        padding-top: 10px;
    }
}

#top-news-none-btn {
    cursor: pointer;
}

.cm_logo-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 15px;
}

.cm_logo-img {
    width: auto;

    min-height: auto;
    height: auto;
    max-height: 50px;

    object-fit: contain;

    &:hover {
        transition: all 0.5s ease;
        animation: pulse 0.5s;
    }
}

.cm_nav-menu-box {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px 10px;
}

/* .cm_tel-box {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;

    .cm_tel-box-item {
        font-size: var(--medium-font-size);
    }

    .cm_tel-box-aside {
        font-size: var(--small-font-size);
        padding-top: 15px;
    }
} */

.cm_nest-box {
    position: relative;
}

.cm_nest-box-list {
    position: absolute;
    top: 120%;
    display: flex;
    list-style-type: none;
    padding: 20px;
    gap: 20px 20px;
    background-color: #202121cc;
    color: #FFF;
    border-radius: 10px;
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    font-size: var(--small-font-size);
    width: max-content;
}

@media screen and (max-width:1250px) {
    .cm_nest-box-list {
        width: 100%;
        font-size: var(--small-medium-font-size);
    }
}

.cm_breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 0px;
    list-style-type: none;
    padding: 0;
    justify-content: center;
    font-size: var(--standard-font-size);
}

.cm_breadcrumb-item::after {
    padding: 0 20px;
    content: ">";
}

/* 
//////////////
series end 
//////////////
*/


/*
============== 
footer-style
==============
*/

.page-btn-container {
    display: flex;
    position: fixed;
    bottom: 15px;
    right: 20px;
    gap: 20px;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    z-index: 1;
    align-items: center;
}

.cm_page-bottom-fixed-btn {
    color: #333;
    background-color: var(--image-color);

    border-radius: calc(infinity * 1px);
    padding: 15px;

    display: flex;
    gap: 10px;
    line-height: 1;

    align-items: baseline;

}

@media screen and (max-width:1250px) {
    .cm_page-bottom-fixed-btn {
        padding: 12px;
    }
}

.cm_contact-footer {
    /* background-color: #4d4d4d; */
    background-image: linear-gradient(135deg, #242424 5%, #4d4d4d 80%);
    padding: 40px 20px;
    color: #FFF;

    h2 {
        filter: drop-shadow(1px 1px 1px #000000);
    }

    p {
        filter: drop-shadow(1px 1px 1px #000000);
    }
}

.cm_contact-item {
    display: flex;
    font-size: var(--standard-font-size);
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 50px;

}

.cm_main-footer {
    background-color: #242424;
    padding: 50px 20px;
    color: #FFF;
    text-align: center;

    .cm_logo-img-footer {
        width: fit-content;

        min-height: auto;
        height: auto;
        max-height: 80px;

        object-fit: contain;

        &:hover {
            animation: pulse 0.4s;
        }
    }
}

.cm_copyright-footer {
    background-image: linear-gradient(315deg, #242424 5%, #4d4d4d 80%);
    padding: 10px 20px;
    color: #FFF;
    text-align: center;
}

@media screen and (max-width:1250px) {
    .cm_copyright-footer {
        padding: 70px 20px;
    }
}

.cm_site-map-footer {
    padding: 50px 20px;
    background-color: #191818;
    color: #fff;
}

.cm_site-map-container {
    max-width: 1300px;
    width: 100%;
    margin: auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px 40px;

    .cm_site-map-item {
        width: fit-content;
        max-width: 100%;

        .cm_site-map-heading {
            position: relative;
            width: fit-content;
            max-width: 100%;
            margin: 0 auto 5px auto;
            padding: 10px 20px 10px 20px;
            font-family: var(--m-plus-2-font-family);
            font-size: var(--small-medium-font-size);
            font-weight: bold;
        }
    }
}

@media screen and (max-width:768px) {
    .cm_site-map-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px 40px;
        flex-direction: column;
    }
}

.cm_footer-logo-background {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px 50px;
    flex-wrap: wrap;
    flex-direction: column;
}

.cm_site-seal-background {
    background-color: #FFF;
    margin: 20px auto;
    padding: 15px 15px 10px 15px;
    box-shadow: var(--soft-shadow);
}

/* 
//////////////
series end 
//////////////
*/

/*
============== 
sidevar-style
==============
*/

.cm_single-section {
    max-width: 1700px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 32px 25px;
    grid-template-columns: 8fr 2fr;

    margin: 0 auto 40px auto;
}

@media screen and (max-width:1200px) {
    .cm_single-section {
        display: block;
    }
}

.cm_sideber {
    background-color: #fafbfc;
    border: 1px solid var(--thin-black-color);
    border-radius: 10px;
    padding: 20px 15px;
    position: sticky;
    top: 120px;
    max-height: 80vh;
    overflow-y: scroll;
}

@media screen and (max-width:1200px) {
    .cm_sideber {
        position: static;
    }
}

.cm_sideber-section {
    padding: 20px 0;
}

.cm_2column-main-content {
    flex: 4;
    background-color: #fafbfc;
    border: 1px solid var(--thin-black-color);
    border-radius: 10px;
    padding: 20px 15px;
}

.cm_normal-list-no-padding {
    text-align: initial;
    width: fit-content;
    max-width: 100%;
    margin: auto;
    line-height: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;

    li {
        max-width: 100%;
    }
}

/* 
//////////////
series end 
//////////////
*/

/*
============== 
search-style
==============
*/

.search_container {
    position: relative;
    box-sizing: border-box;
    border: 3px solid var(--image-color);
    display: block;
    padding: 3px 10px;
    border-radius: 3px;
    height: 2.3em;
    width: 230px;
    overflow: hidden;
    margin: auto;
    background-color: #fff;
}

.search_container input[type="text"] {
    border: none;
    height: 2.0em;
    position: absolute;
    left: 10px;
}

.search_container input[type="text"]:focus {
    outline: 0;
}

.search_container input[type="submit"] {
    cursor: pointer;
    border: none;
    background: var(--image-color);
    color: #fff;
    position: absolute;
    width: 3.5em;
    height: 3.0em;
    right: 0px;
    top: -5px;
    outline: none;
}

/* 
//////////////
series end 
//////////////
*/

/*
============== 
link(a)-style
==============
*/

.cm_all-inherit-link {
    color: inherit;
    text-decoration: none;

    &:active {
        color: inherit;
        text-decoration: underline;
    }

    &:visited {
        color: inherit;
    }

    &:hover {
        text-decoration: underline;
    }
}

.cm_no-underline-link {

    text-decoration: none !important;

    &:active {
        text-decoration: none !important;
    }

    &:visited {
        text-decoration: none !important;
    }

    &:hover {
        text-decoration: none !important;
    }
}

.cm_all-black-link {
    color: #000000;
    text-decoration: none;

    &:active {
        color: #000000;
        text-decoration: underline;
    }

    &:visited {
        color: #000000;
    }

    &:hover {
        text-decoration: underline;
    }
}

.cm_all-black-link {
    color: #000000;
    text-decoration: none;

    &:active {
        color: #000000;
        text-decoration: underline;
    }

    &:visited {
        color: #000000;
    }

    &:hover {
        text-decoration: underline;
    }
}

.cm_all-white-link {
    color: #ffffff;
    text-decoration: none;

    &:active {
        color: #ffffff;
        text-decoration: underline;
    }

    &:visited {
        color: #ffffff;
    }

    &:hover {
        text-decoration: underline;
    }
}


/* 
//////////////
series end 
//////////////
*/

/*
============== 
リスト
==============
*/

.cm_normal-list {
    text-align: initial;
    width: fit-content;
    max-width: 100%;
    margin: auto;
    line-height: 2;
    padding-left: 20px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;

    li {
        max-width: 100%;
    }
}

.cm_normal-list-nest {
    padding-left: 20px;
    padding-top: 8px;
}

.cm_dec_normal-list-style-none {
    list-style: none;
}


/* 
//////////////
series end 
//////////////
*/

/*
============== 
BOX(ボックス)シリーズ 
==============
*/

/*
-----
BOX1
-----
*/

.cm_normal-border-box {
    padding: 20px 40px 20px 40px;
}

@media screen and (max-width:768px) {
    .cm_normal-border-box {
        padding: 20px 25px 20px 25px;
    }
}

.cm_dec_normal-border-box {
    background-color: #fafbfc;
    border: var(--thin-black-color) 2px solid;
}

/* 1px-var */
.cm_dec_1px-border-box {
    color: #000000;
    border: var(--thin-black-color) 1px solid;
}

/*
////
end
////
*/

/* 
//////////////
series end 
//////////////
*/


/*
============== 
accordion (アコーディオン)
==============
*/

.cm_ac {
    width: 100%;
    max-width: 600px;
    margin: auto;
    box-shadow: var(--standard-shadow);
}

/* クリック領域 */
.cm_ac-parent {
    /* max-width: 600px; */
    /* min-width: 100%; */
    background-color: #FFF;
    text-align: left;
    cursor: pointer;
    padding: 20px 40px 20px 20px;
    border: var(--thin-black-color) 1px solid;
    position: relative;
}

/* クリックしたら表示される領域 */
.cm_ac-child {
    display: none;
    padding: 20px;
    background-color: #FFF;
    border-left: var(--thin-black-color) 1px solid;
    border-right: var(--thin-black-color) 1px solid;
    border-bottom: var(--thin-black-color) 1px solid;
    text-align: left;
    line-height: 2.3;
}

.cm_ac-parent::before {
    /* 閉じている時 */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    position: absolute;
    right: 20px;
}

.cm_ac-active::before {
    /* 開いている時 */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f077";
    position: absolute;
    right: 20px;
}


/* 
//////////////
series end 
//////////////
*/

/* 
==============
teble(テーブル)
==============
*/

.cm_table-container {
    overflow-x: scroll;
    overflow-y: hidden;
    width: fit-content;
    max-width: 100%;
    margin: auto;

    table {
        min-width: 550px;
    }
}

.cm_normal-table-border {
    margin: 0 auto 0 auto;
    table-layout: fixed;
    word-break: break-all;
    border-collapse: collapse;
}

.cm_dec_normal-table-border {
    background-color: #ffffff;
    border: var(--thin-black-color) 1px solid;
    font-size: clamp(16px, 2.08vw, 17px);
    font-family: var(--normal-font-family);
}

.cm_normal-table-border td {
    padding: 12px;
    border: var(--thin-black-color) 1px solid;
    text-align: left;
}

.cm_normal-table-border th {
    padding: 10px;
}

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

    .cm_normal-table-border td {
        padding: 5px;
    }

    .cm_normal-table-border th {
        padding: 5px;
    }

}

/* 
//////////////
series end 
//////////////
*/


/*
============== 
ボックスモデル(box model)
==============
*/

/*
-----
margin
-----
*/

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

.cm_medium-top-margin {
    margin-top: 20px !important;
}

.cm_bottom-margin {
    margin-bottom: 40px !important;
}

.cm_top-margin {
    margin-top: 40px !important;
}

.cm_auto-margin {
    margin-left: auto !important;
    margin-right: auto !important;
}

/*
////
nest end
////
*/

/*
-----
padding
-----
*/

.cm_medium-bottom-padding {
    padding-bottom: 20px !important;
}

.cm_medium-top-padding {
    padding-top: 20px !important;
}

.cm_bottom-padding {
    padding-bottom: 40px !important;
}

.cm_top-padding {
    padding-top: 40px !important;
}

.cm_auto-padding {
    padding-left: auto !important;
    padding-right: auto !important;
}

/*
////
nest end
////
*/

/* 
//////////////
series end 
//////////////
*/


/*
==============
sectionに使う空白
==============
*/

.cm_generic-section {
    padding: 40px 20px 40px 20px;

    &:nth-child(even) {
        background-color: #ECEFF1;
    }
}

.cm_generic-section-no-color {
    padding: 40px 20px 40px 20px;
}

.cm_generic-section-border-none {
    padding: 40px 20px 40px 20px;

    &:nth-child(even) {
        background-color: #ECEFF1;
    }
}

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

    .cm_generic-section {
        padding: 30px 20px 30px 20px;
    }

    .cm_generic-section-border-none {
        padding: 30px 20px 30px 20px;
    }

    .cm_generic-section-no-color {
        padding: 40px 20px 40px 20px;
    }
}

/* 
//////////////
series end 
//////////////
*/

/*
==============
単体(single)
==============
*/

.cm_fit-content {
    width: fit-content;
    max-width: 100%;
}

.cm_display-none {
    display: none !important;
}

.cm_text-align-left {
    text-align: left;
}

.cm_text-align-center {
    text-align: center;
}

.cm_overflow-y-hidden {
    overflow-y: hidden;
}

.cm_color-333 {
    color: #333333;
}

.cm_color-222 {
    color: var(--thin-black-color);
}

.cm_color-fff {
    color: #FFF;
}

.cm_user-select-all {
    -webkit-user-select: all;
    user-select: all;
}

.cm_position-relative {
    position: relative;
}

.cm_max-width-1200px {
    max-width: 1200px;
}

.cm_max-width-768px {
    max-width: 768px;
}

/* 
//////////////
series end 
//////////////
*/

/*
==============
button(ボタン)
==============
*/

.cm_normal-botton {
    background-color: var(--image-color);
    display: inline-block;
    transition: all 0.5s ease;
    padding: 10px 20px;
    border-radius: calc(infinity* 1px);
    color: #fff;
}

.cm_normal-botton:hover {
    box-shadow: var(--standard-shadow);
}

.cm_normal-botton:active {
    box-shadow: var(--standard-shadow);
    filter: opacity(0.5);
    color: #fff;
    transition: all 0.2s ease;
}

.cm_push-btn {
    display: inline-block;
    transition: all 0.5s ease;
    padding: 10px 20px;
    box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.3);

    &:hover {
        transition: all 0.5s ease;
        box-shadow: 0px 10px 10px -3px rgba(0, 0, 0, 0.3);
    }
}

.dec_push-btn-footer {
    border: 2px solid #FFF;
    border-radius: calc(infinity * 1px);
}

.cm_pulse-btn {
    display: inline-block;
    opacity: 1;
    transition: all 0.5s ease;
    padding: 10px 20px;
    box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.3);

    &:hover {
        transition: all 0.5s ease;
        opacity: 1;
        animation: pulse 0.5s;
    }
}

.cm_dec_pulse-btn-header {
    background-color: var(--pitahex-black-color);
    color: #FFF;
    border-radius: calc(infinity * 1px);
}

/* 
//////////////
series end 
//////////////
*/


/*
==============
アニメーション(animation)
==============
*/

.cm_hover-motion-pulse {
    transition: all 0.5s ease;

    &:hover {
        animation: pulse 0.5s;
        transition: all 0.5s ease;
    }
}


.cm_img-hover-motion {
    transition: all 0.5s ease;

    &:hover {
        filter: opacity(0.5);
        transition: all 0.5s ease;
        animation: pulse 0.5s;
    }

}

.cm_btn-hover-click-motion:hover {
    transform: translateY(3px);
    filter: opacity(0.4);
    transition: all 0.5s ease;
}

.cm_btn-hover-click-motion:active {
    transform: translateY(3px);
    filter: opacity(0.4);
    transition: all 0.5s ease;
}

.transition-all-05s-ease {
    transition: all 0.5s ease;
}

/* 
//////////////
series end 
//////////////
*/

/* 
==============
見出し 
==============
*/

.cm_heading {
    position: relative;
    width: fit-content;
    max-width: 100%;
    font-size: var(--medium-font-size);
    margin: 0 auto 10px auto;
    padding: 10px 20px 10px 20px;
    font-family: var(--m-plus-2-font-family);
    font-weight: bold;
}

.cm_heading-no-bottom-margin {
    position: relative;
    width: fit-content;
    max-width: 100%;
    font-size: var(--medium-font-size);
    margin: 0 auto;
    padding: 10px 20px 10px 20px;
    font-family: var(--m-plus-2-font-family);
    font-weight: bold;
}

.cm_medium-heading {
    position: relative;
    font-size: var(--small-medium-font-size);
    font-family: var(--m-plus-2-font-family);
    padding: 10px 20px 10px 20px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 40px auto;
    font-weight: bold;
}

.cm_medium-heading-no-bottom-margin {
    position: relative;
    font-size: var(--small-medium-font-size);
    font-family: var(--m-plus-2-font-family);
    padding: 10px 20px 10px 20px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    font-weight: bold;
}

/*
-----
見出し装飾
-----
*/

.cm_dec_heading-1 {
    border-top: solid 4px;
    border-bottom: solid 4px;
    border-color: inherit;
}

.cm_dec_heading-2 {
    border-bottom: solid 5px;
    border-color: inherit;
}

.cm_dec_heading-3 {
    border-left: solid 5px;
    border-color: inherit;
}

.cm_dec_heading-4 {
    border-right: solid 5px;
    border-color: inherit;
}

.cm_dec_heading-5 {
    border-left: solid 5px;
    border-bottom: solid 5px;
    border-color: inherit;
}

.cm_dec_heading-6:before,
.cm_dec_heading-6:after {
    content: '';
    position: absolute;
    top: 50%;

    width: 45px;
    height: 4px;
    background-color: var(--thin-black-color);
}

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

    .cm_dec_heading-6:before,
    .cm_dec_heading-6:after {
        content: '';
        position: absolute;
        top: 50%;

        width: 20px;
        height: 4px;
        background-color: var(--thin-black-color);
    }
}

.cm_dec_heading-6:before {
    right: 100%;
}

.cm_dec_heading-6:after {
    left: 100%;
}

.cm_pop-bottom-left {
    position: relative;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: left;

    &::before {
        content: "";
        position: absolute;

        top: 99%;
        left: 30px;

        background-color: inherit;
        height: calc(tan(60deg)* 25px / 2);
        width: 50px;
    }
}

.cm_pop-bottom-right {
    position: relative;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: left;

    &::before {
        content: "";
        position: absolute;

        top: 99%;
        right: 30px;

        background-color: inherit;
        height: calc(tan(60deg)* 25px / 2);
        width: 50px;
    }
}


.cm_dec_pop {
    color: #fff;
    background-color: var(--pitahex-black-color);
}

.cm_pop-up::before {
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.cm_pop-right::before {
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.cm_pop-down::before {
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.cm_pop-left {
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

/*
-----
Color
-----
*/

.cm_dec_border-color-white {
    border-color: #FFF;
}

.cm_dec_border-color-black {
    border-color: var(--thin-black-color);
}

.cm_dec_border-color-inherit {
    border-color: inherit;
}

/* 削除予定 */
.border-radius-10px {
    border-radius: 10px;
}

.cm_border-radius-10px {
    border-radius: 10px;
}

.cm_border-radius-infinity {
    border-radius: calc(infinity * 1px);
}

/*
////
nest end
////
*/

/* 
//////////////
series end
//////////////
*/

/*
============== 
font-size(フォントサイズ)
==============
*/

.cm_small-font-size {
    font-size: var(--small-font-size);
}

.cm_standard-font-size {
    font-size: var(--standard-font-size);
}

.cm_small-medium-font-size {
    font-size: var(--small-medium-font-size);
}

.cm_medium-font-size {
    font-size: var(--medium-font-size);
}

.cm_large-font-size {
    font-size: var(--large-font-size);
}

/* 
//////////////
series end
//////////////
*/

/*
============== 
font-family(フォントファミリー)
==============
*/

.cm_normal-font-family {
    font-family: var(--normal-font-family);
}

.cm_m-plus-2-font-family {
    font-family: var(--m-plus-2-font-family);
}

/* 
//////////////
series end
//////////////
*/


/*
============== 
メディアテキスト(media text)
==============
*/

.cm_flex-card-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px 20px;
}

.cm_flex-card-box:nth-child(odd) {
    flex-direction: row-reverse;
}

.cm_flex-card-img-box {
    width: 40%;

    img {
        width: 100%;

        min-height: auto;
        height: auto;
        max-height: 350px;

        object-fit: contain;
        transition: all 0.5s ease;
    }
}

.cm_flex-card-txt {
    width: 60%;
}

@media screen and (max-width: 768px) {
    .cm_flex-card-box {
        flex-direction: column-reverse;
        align-items: center;
    }

    .cm_flex-card-box:nth-child(odd) {
        flex-direction: column-reverse;
    }

    .cm_flex-card-img-box {
        width: 100%;
    }

    .cm_flex-card-txt {
        width: 100%;
    }

}

/* 
//////////////
series end
//////////////
*/

/*
============== 
汎用性の高いレスポンシブ対応の横並びのBOX
==============
*/

.cm_general-purpose-horizontal-container {
    margin: auto;

    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;

    flex-direction: row;
    align-content: center;
}

.cm_general-purpose-horizontal-item {
    background-color: #fafbfc;

    max-width: 500px;
    width: 500px;
    min-width: auto;

    padding: 20px;
    border-radius: 10px 10px 10px 10px;
    border: var(--thin-black-color) 2px solid;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;

    .cm_general-purpose-horizontal-item-point {
        position: absolute;
        width: fit-content;
        max-width: 100%;
        border: var(--thin-black-color) 2px solid;
        background-color: #fafbfc;
        top: -15px;
        left: 5%;
        padding: 5px;
        line-height: 1;
        font-size: var(--small-font-size);
        border-radius: 5px;
    }

    .cm_general-purpose-horizontal-item-heading {
        font-size: var(--small-medium-font-size);
        padding: 10px 20px;
        line-height: 1.3;

        width: fit-content;
        max-width: 100%;

        margin: 0 auto 20px auto;
        border: 2px solid;
        border-radius: 10px;
    }
}

.cm_general-purpose-horizontal-item-vertical {
    max-width: 768px;
    width: auto;
    min-width: auto;
}

/* 
//////////////
series end
//////////////
*/

/*
============== 
汎用性の高いレスポンシブ対応の縦並びのBOX
==============
*/

.cm_vertical-box-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin: auto;
    flex-direction: column;
    align-content: center;
}

/* 
//////////////
series end
//////////////
*/

/*
============== 
画像サイズ
==============
*/

.cm_img-basic-size {
    width: fit-content;
    max-width: 100%;

    margin: auto;

    min-height: auto;
    height: auto;
    max-height: 300px;
}

/* 
//////////////
series end
//////////////
*/

/*
============== 
影(shadow)
==============
*/

.cm_soft-shadow {
    box-shadow: var(--soft-shadow);
}

.cm_soft-drop-shadow {
    filter: drop-shadow(5px 0px 10px rgba(0, 0, 0, 0.4));
}

.cm_standard-shadow {
    box-shadow: var(--standard-shadow);
}

/* 
//////////////
series end
//////////////
*/

/*
============== 
中央寄せ
==============
*/

.cm_center {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.cm_left {
    width: fit-content;
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
}

/* 
//////////////
series end
//////////////
*/


/*
============== 
メディアクエリで非表示
==============
*/


@media screen and (max-width: 768px) {
    .cm_display-none-768px {
        display: none;
    }
}

@media screen and (max-width: 1250px) {
    .display-none-1250px {
        display: none;
    }
}

/* 
//////////////
series end
//////////////
*/

/*
============== 
メディアクエリで表示
==============
*/

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

@media screen and (min-width: 1250px) {
    .min-display-none-1250px {
        display: none;
    }
}

/* 
//////////////
series end
//////////////
*/

.warning-card {
    background-color: #e6ada8;
    color: #ca0808;
    max-width: 1000px;
    margin: auto;
    padding: 10px;
    border-style: dashed;
    border-color: #ca0808;
    border-width: 2px 3px;

    .warning-icon {
        display: block;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .warning-content {
        max-width: 768px;
        margin: auto;
    }
}