/* ========================================
   フォント・全体設定
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

body {
    color: var(--txt-color);
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.05em;
}

/* スマホ時のpタグ文字サイズ統一 */
@media only screen and (max-width: 600px) {

    .article p,
    .freeHtml p,
    #sideContents p,
    #mainContents p {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }
}

@media only screen and (max-width: 600px) {

    .article p,
    .freeHtml p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* ========================================
   お問い合わせ
======================================== */
.article.contactBox {
    background: rgba(255, 255, 255, 0.92);
    padding: 20px 24px !important;
    text-align: center;
    border: 3px solid #E5037B;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* 背景装飾 */
.article.contactBox::before,
.article.contactBox::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0.12;
    z-index: 0;
}

.article.contactBox::before {
    background: #E5037B;
    top: -70px;
    left: -70px;
}

.article.contactBox::after {
    background: #8A5FD3;
    bottom: -70px;
    right: -70px;
}

/* 中身を前面 */
.article.contactBox h3,
.article.contactBox p,
.article.contactBox a {
    position: relative;
    z-index: 1;
}

.article.contactBox p.info {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 20px;
}

/* 電話部分 */
.article.contactBox p.tel {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* アイコン */
.article.contactBox p.tel::before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background: url("/materials/177973104275401.png") no-repeat center center;
    background-size: contain;
    margin: 0 !important;
}

/* 電話番号 */
.article.contactBox p.tel a {
    font-size: 56px !important;
    font-weight: bold;
    color: #222 !important;
    text-decoration: none;
    line-height: 1.2;
}

/* sp */
@media screen and (max-width: 600px) {
    .article.contactBox p.tel {
        gap: 12px;
    }

    .article.contactBox p.tel::before {
        width: 56px;
        height: 56px;
    }

    .article.contactBox p.tel a {
        font-size: 38px !important;
    }
}

/* ========================================
   contactBox SP調整
======================================== */
@media screen and (max-width: 600px) {

    .article.contactBox {
        padding: 28px 16px !important;
        border-left: none !important;
        border-right: none !important;
    }

    .article.contactBox>p:first-child {
        line-height: 1.9 !important;
        margin-bottom: 24px !important;
    }

    .article.contactBox p.tel {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
        margin-bottom: 24px !important;
    }

    .article.contactBox p.tel::before {
        width: 42px !important;
        height: 42px !important;
        flex: 0 0 42px !important;
        margin: 0 !important;
    }

    .article.contactBox p.tel a {
        font-size: 32px !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }

    .article.contactBox p.info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
        line-height: 1.8 !important;
        margin-bottom: 28px !important;
    }

    .article.contactBox a.btn {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* ========================================
   h3余白調整
======================================== */
.article h3,
.gallery h3 {
    padding-bottom: 0 !important;
    margin-bottom: -10px !important;
}

/* ========================================
   col2 カード
======================================== */
.article.col2 {
    background: #FCE7EE !important;
    padding: 24px !important;
    box-sizing: border-box;
}

.article.col2 h5,
.article.col2 h6 {
    color: #E5037B !important;
    font-weight: bold;
    margin-bottom: 12px !important;
    text-align: center;
}

.article.col2 p {
    margin-bottom: 0 !important;
}

/* ========================================
   col3 カード
======================================== */
.article.col3 {
    background: #F7F2FA !important;
    padding: 24px !important;
    box-sizing: border-box;
}

.article.col3 h5,
.article.col3 h6 {
    color: #E5037B !important;
    font-weight: bold;
    margin-bottom: 12px !important;
    text-align: center;
}

.article.col3 p {
    margin-bottom: 0 !important;
}

/* ========================================
   gallery画像
======================================== */
.gallery ul.galleryGrids .image img {
    border: 4px solid #EE7E83;
    transition: 0.3s;
}

.gallery ul.galleryGrids .image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.gallery ul.galleryGrids h3 a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* ========================================
   GoogleMap 横幅いっぱい
======================================== */
#mainArticles .article.map {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
}

#mainArticles .article.map .article_body {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#mainArticles .article.map iframe {
    width: 100vw !important;
    max-width: none !important;
    height: 500px !important;
    display: block !important;
    border: 0 !important;
}

@media only screen and (max-width: 600px) {
    #mainArticles .article.map iframe {
        height: 320px !important;
    }
}

/* ========================================
   挨拶
======================================== */
#mainArticles .article.envelope,
.article.envelope {
    background: #F7ECEE !important;
}

#mainArticles .article.envelope2,
.article.envelope2 {
    background: transparent !important;
    border: none !important;
}

#mainArticles .article.envelope .article_body,
#mainArticles .article.envelope p {
    text-align: left !important;
}

/* ========================================
   サイト案内 余白調整
======================================== */
#mainArticles .article.guideTitle {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#mainArticles .article.guideBtn {
    margin-top: -30px !important;
    padding-top: 0 !important;
}

/* ========================================
   SP調整
======================================== */
@media only screen and (max-width: 600px) {

    #mainArticles .article.guideBtn {
        margin-bottom: 10px !important;
        padding-bottom: 10px !important;
    }

    #mainArticles .article.envelope,
    #mainArticles .article.envelope2 {
        padding: 16px !important;
        margin: 0 0 24px !important;
        /*width: auto !important;*/
    }

    #mainArticles .article.envelope .article_body,
    #mainArticles .article.envelope2 .article_body {
        padding: 0 !important;
        margin: 0 !important;
        width: auto !important;
    }

    #mainArticles .article.envelope p,
    #mainArticles .article.envelope2 p {
        line-height: 2.0 !important;
        letter-spacing: 0 !important;
    }

    #mainArticles .article.envelope h4,
    #mainArticles .article.envelope2 h4 {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }
}

/* ========================================
   特徴セクション余白統一
======================================== */
.article.max.comm {
    padding: 56px 64px !important;
    margin-bottom: 48px !important;
}

.article.max.comm h4 {
    margin-bottom: 32px !important;
}

.article.max.comm p {
    margin-bottom: 24px !important;
}

.article.max.comm .image {
    margin-bottom: 0 !important;
}

.article.max.comm img {
    display: block;
}

/* ========================================
   envelope
======================================== */
.envelope {
    background-color: #FCE7E7 !important;
    padding: 56px 72px !important;
    text-align: left;
}

.envelope p,
.envelope li {
    text-align: left !important;
}

.envelope h3 {
    text-align: center !important;
}

.article.envelope2 {
    padding: 56px 72px !important;
    background-color: #F7F2FA !important;
}

.envelope2 {
    padding: 56px 72px !important;
    background-color: #F7F2FA !important;
}

#mainArticles .article.envelope2,
.article.envelope2 {
    background: #F7F2FA !important;
    border: none !important;
}

/* ========================================
   guideBtn
======================================== */
.article.guideBtn {
    padding: 100px 32px !important;
}

/* ========================================
   StyleIconList
======================================== */
ul.StyleIconList {
    background: #F7F2FA;
    padding: 0 1em;
    position: relative;
    list-style: none;
    line-height: 2;
    text-align: left;
}

ul.StyleIconList li {
    position: relative;
    line-height: 1.8;
    padding: 0.8em 0 0.8em 2em;
    border-bottom: 2px solid #fff;
    list-style: none !important;
    text-align: left;
}

ul.StyleIconList li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: 900;
    position: absolute;
    left: 0.2em;
    top: 0.9em;
    color: #E5037B;
}

ul.StyleIconList li:last-of-type {
    border-bottom: none;
}

/* ========================================
   StyleIconList
======================================== */

/* 最後の線削除 */
ul.StyleIconList li:last-of-type {
    border-bottom: none;
}

/* ========================================
   サイドコンテンツ
======================================== */

/* shopLogo / shopInfo */
#sideContents .freeHtml {
    padding: 32px 24px;
    text-align: center;
}

/* ロゴ */
#sideContents .freeHtml .shopLogo {
    width: 80%;
    margin: 0 auto 20px;
    text-align: center;
}

#sideContents .freeHtml .shopLogo img {
    width: 500px !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* 店舗情報 */
#sideContents .freeHtml .shopInfo {
    width: 820px;
    max-width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 auto 32px;
    text-align: left;
}

#sideContents .freeHtml .shopInfo li {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 32px;
    padding: 16px 0;
    border-top: 1px solid #ddd;
    line-height: 1.8;
    font-weight: bold;
}

#sideContents .freeHtml .shopInfo li::before {
    content: none !important;
    display: none !important;
}

/* ボタン */
#sideContents .freeHtml .btn {
    margin: 16px auto 0;
}

/* ========================================
   SP
======================================== */
@media only screen and (width <=600px) {

    #sideContents .freeHtml .shopInfo li {
        display: block;
        padding: 16px 0;
    }

    #sideContents .freeHtml .shopInfo li span {
        display: block;
    }

    #sideContents .freeHtml .shopInfo li span:first-child {
        margin-bottom: 8px;
    }
}

/*  下部固定電話ボタン */
/* bottomLink */
#bottomLink {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
    height: 40px;
    overflow: hidden;
}

#bottomLink a {
    display: block;
    padding: 3px 0;
    color: #fff;
    background: #4D5A69;
    text-decoration: none;
    font-size: 100%;
    line-height: 1.4;
    height: 100%;
}

#bottomLink a span {
    font-size: 85%;
    display: block;
}

/* ボタンサイズ分の画面下部余白 */
@media only screen and (max-width: 600px) {
    #wrap {
        margin-bottom: 40px;
    }
}

/* ========================================
   料金表
======================================== */

/* priceTbl */
.article table.priceTbl {
    width: 100% !important;
    margin: 0 auto 32px !important;
    background: #fff !important;
    border-collapse: collapse !important;
    border: 1px solid #ccc !important;
}

.article table.priceTbl tr,
.article table.priceTbl th,
.article table.priceTbl td {
    border: 1px solid #ccc !important;
}

.article table.priceTbl td {
    padding: 16px !important;
}

.article table.priceTbl td p {
    margin: 0 !important;
}

/* 左側 */
.article table.priceTbl td:first-child,
.article table.priceTbl td:first-child strong {
    background: #E5037B !important;
    color: #fff !important;
    text-align: center !important;
    font-weight: bold !important;
    border: none !important;
}

/* 右側 */
.article table.priceTbl td:last-child {
    background: #fff !important;
    color: #333 !important;
    text-align: center !important;
    border: none !important;
}

/* ========================================
   追加テーブルレスポンシブ(料金表)
======================================== */
/* sp */
@media only screen and (max-width: 600px) {

    .article table.priceTbl,
    .article table.priceTbl tbody,
    .article table.priceTbl tr,
    .article table.priceTbl td {
        display: block !important;
        width: 100% !important;
    }

    .article table.priceTbl tr {
        margin-bottom: 24px !important;
        border: 1px solid #ccc !important;
        overflow: hidden;
        background: #fff !important;
    }

    .article table.priceTbl td {
        padding: 12px !important;
    }

    .article table.priceTbl td {
        border: none !important;
    }


}

/* 上段 */
.article table.priceTbl td:first-child,
.article table.priceTbl td:first-child strong {
    background: #E5037B !important;
    color: #fff !important;
    text-align: center !important;
    font-weight: bold !important;
    border: none !important;
}

/* 下段 */
.article table.priceTbl td:last-child {
    background: #fff !important;
    color: #333 !important;
    text-align: center !important;
    border: none !important;
}

.article table.priceTbl td p {
    margin: 0 !important;

}

@media only screen and (max-width: 600px) {

    .article table.priceTbl tr {
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: none !important;
    }

    .article table.priceTbl td {
        margin: 0 !important;
    }

}

/* ========================================
   priceTbl SP調整
======================================== */
@media only screen and (max-width: 600px) {

    #mainArticles .article:has(table.priceTbl),
    #mainArticles .article:has(table.priceTbl) .article_body {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    #mainArticles .article:has(table.priceTbl) table.priceTbl {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #mainArticles .article:has(table.priceTbl) table.priceTbl td {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* ========================================
   サイト案内ボタン
======================================== */

/* guideBtn */
.article.guideBtn .article_body {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.article.guideBtn a.btn {
    width: 30%;
    margin: 0;
}

/* sp */
@media only screen and (max-width: 600px) {

    .article.guideBtn .article_body {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
    }

    .article.guideBtn a.btn {
        display: block !important;
        width: 100% !important;
        max-width: 220px !important;
        margin: 0 auto !important;
    }
}

/* ========================================
   会社概要テーブル
======================================== */

/* companyTbl */
#mainArticles .article table.companyTbl,
#mainArticles table.companyTbl {
    width: 100% !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}

#mainArticles .article table.companyTbl tr,
#mainArticles table.companyTbl tr {
    border-bottom: 1px solid #E5037B !important;
}

#mainArticles .article table.companyTbl th,
#mainArticles .article table.companyTbl td,
#mainArticles table.companyTbl th,
#mainArticles table.companyTbl td {
    padding: 24px 0 !important;
    border: none !important;
    background: transparent !important;
    text-align: left !important;
    vertical-align: top !important;
}

#mainArticles .article table.companyTbl th,
#mainArticles table.companyTbl th {
    width: 30% !important;
    font-weight: bold !important;
}

#mainArticles table.companyTbl,
#mainArticles table.companyTbl tr,
#mainArticles table.companyTbl th,
#mainArticles table.companyTbl td {
    border: none !important;
}

/* sp */
@media only screen and (max-width: 600px) {

    #mainArticles .article table.companyTbl th,
    #mainArticles .article table.companyTbl td,
    #mainArticles table.companyTbl th,
    #mainArticles table.companyTbl td {
        width: 100% !important;
        display: block !important;
    }

    #mainArticles .article table.companyTbl th,
    #mainArticles table.companyTbl th {
        padding-bottom: 8px !important;
    }

    #mainArticles .article table.companyTbl td,
    #mainArticles table.companyTbl td {
        padding-top: 0 !important;
    }
}

/* ========================================
   ボタン
======================================== */
a.btn {
    width: fit-content;
    padding: 8px 16px;
    margin: 0 auto;
    color: #4D5A69;
}

a.btn.bigBtn {
    width: 100%;
    padding: 1em;
    font-size: 1.25em;
    font-weight: bold;
}

/* ========================================
   マーカー装飾
======================================== */
strong.marker {
    background: linear-gradient(transparent 70%, rgba(229, 3, 123, 0.5) 70%);
}

/* ========================================
   共通装飾・テーブル設定
======================================== */
.article h3 a,
.gallery h3 a,
.article h3 a:hover,
.gallery h3 a:hover {
    font-weight: bold;
    color: var(--txt-color);
}

.article.zero_margin,
.gallery.zero_margin {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.article table.normalTbl,
.article table.bgTbl {
    font-size: 1em;
}

.article table.normalTbl th {
    vertical-align: top;
    background: none;
    font-weight: bold;
}

.article table.normalTbl td.date {
    white-space: nowrap;
    vertical-align: top;
}

.article table.bgTbl tr:last-child th,
.article table.bgTbl tr:last-child td {
    padding: 8px 15px;
}

.article table.bgTbl tr th {
    background: var(--mono-color);
    white-space: nowrap;
}

.article table.bgTbl tr td {
    background: var(--penta-color);
}

#topMenu_outer .topMenu li a {
    font-weight: bold;
    color: var(--white);
}

/* ========================================
   strong装飾
======================================== */
.article strong {
    color: #E5037B;
    font-size: 1.15em;
    line-height: 1.7;
}

/* ========================================
   基本設定
======================================== */
@media only screen and (max-width: 600px) {

    body {
        font-size: 14px;
        font-family: sans-serif;
    }
}

/* ========================================
   gallery
======================================== */
.gallery ul.galleryGrids .comment {
    font-size: 1em;
}

#duct.gallery ul.galleryGrids .comment {
    font-size: 0.85em;
    line-height: 1.25;
    min-height: 3em;
}

/* ========================================
   lead / vision
======================================== */
.article.lead p,
ul.vision {
    font-size: 1.25em;
    font-weight: bold;
    text-align: center;
    background: var(--hexa-color);
    color: var(--di-color);
    border-radius: 1em;
    padding: 1em;
}

ul.vision {
    text-align: left;
    padding-left: 2em;
    line-height: 1.25;
}

ul.vision li {
    list-style: disc;
    margin-bottom: .5em;
}

/* ========================================
   contact
======================================== */
.article.contact {
    padding: 0 !important;
}

.article.contact .image {
    margin-bottom: 0 !important;
}

/* ========================================
   mini
======================================== */
.article.mini .image {
    width: 200px;
}

/* ========================================
   contactTable
======================================== */
#mainArticles table.contactTable tr th {
    font-weight: normal;
}

#mainArticles table.contactTable input.button,
#mainArticles table.contactTable input[type="button"] {
    border-radius: 4px;
}

/* ========================================
   footer
======================================== */
div#footer li a {
    font-weight: normal;
}

/* ========================================
   カラム
======================================== */
.article.col2,
.article.col3,
.article.col4,
.article.col5 {
    margin: 0 0 40px;
}

/* ========================================
   commitment
======================================== */
.mainArticles .article.max.comm .article_right .image,
.mainArticles .article.max.comm .article_left .image {
    width: 64%;
    max-width: 64%;
}

.mainArticles .article.max.comm .article_right .image img,
.mainArticles .article.max.comm .article_left .image img {
    width: 100%;
}

.article.max.comm {
    margin-bottom: 8px;
}

.article.max.comm.comend {
    margin-bottom: 40px;
}

.article.max.comm .article_left {
    padding-right: 40px;
}

.article.max.comm .article_right {
    padding-left: 40px;
}

/* sp */
@media only screen and (max-width: 600px) {

    .article.max.comm .article_left,
    .article.max.comm .article_right {
        padding: 0;
    }

    .mainArticles .article.max.comm .article_right .image,
    .mainArticles .article.max.comm .article_left .image {
        width: 100%;
        max-width: 100%;
    }

    .mainArticles .article.max.comm {
        padding-left: 4%;
        padding-right: 4%;
    }
}

/* ========================================
   lists
======================================== */
ol.pp,
ul.notes,
ul.ps,
ul.maru,
ul.maru02 {
    font-size: 1em;
}

/* ========================================
   ご相談リスト
======================================== */

/* リスト */
ul.check li {
    position: relative;
    padding: 28px 0;
    border-bottom: 1px solid #999;
    list-style: none;
}

/* 最後の線削除 */
ul.check li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* チェック削除 */
ul.check li::before,
ul.check li:before {
    content: none !important;
    display: none !important;
}

/* 見出し */
ul.check li h4 {
    margin-bottom: 12px;
    color: #E5037B;
    font-size: 1.5rem;
    font-weight: bold;
}

/* 本文 */
ul.check li p {
    margin-bottom: 0;
    line-height: 2;
    font-weight: 500;
}

/* sp */
@media only screen and (max-width: 600px) {

    ul.check {
        padding: 28px 20px;
    }

    ul.check li {
        padding: 120px 0 24px;
        text-align: center;
    }

    ul.check li img {
        left: 50%;
        transform: translateX(-50%);
    }

    ul.check li h4 {
        font-size: 1.2rem;
    }

    ul.check li p {
        text-align: left !important;
    }
}

ul.check li::before,
ul.check li:before {
    content: none !important;
    display: none !important;
}

/* ========================================
   check SP
======================================== */
@media only screen and (max-width: 600px) {

    ul.check {
        flex-direction: column;
    }

    ul.check li {
        padding: 0.25em 0 !important;
        flex-basis: 100%;
    }
}

/* ========================================
   merit / subject
======================================== */
ul.merit,
ul.subject {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

ul.merit li,
ul.subject li {
    flex-basis: 100%;
    padding: 1em .5em;
    background: var(--mono-color);
    border-radius: 2em;
    margin: .25em 0;
    color: var(--white);
    font-weight: bold;
    line-height: 1.25;
    text-align: center;
}

ul.subject li {
    background: var(--di-color);
}

/* ========================================
   faq
======================================== */
ul.faq li.qus,
ul.faq li.ans {
    padding-left: 38px;
}

ul.faq li.qus:before,
ul.faq li.ans:before {
    margin: 0 6px 0 -38px;
}

ul.faq li.qus::before {
    background-color: var(--tri-color);
}

ul.faq li.ans::before {
    background-color: var(--mono-color);
}

.article .faqList li {
    margin-bottom: 0 !important;
}

.article .faqList {
    gap: 0 !important;
    padding: 0 !important;
}

/*.article.zero_margin+.article.zero_margin,
.gallery.zero_margin+.gallery.zero_margin {
    margin-top: 24px !important;
}*/

/* ========================================
   items
======================================== */
ul.items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

ul.items li {
    width: fit-content;
    min-width: calc(50% - .5em);
    padding: 0.5em 1em;
    background: var(--hexa-color);
    border-radius: 2em;
    text-align: center;
    margin-right: .25em;
    margin-bottom: .25em;
}

/* sp */
@media only screen and (max-width: 600px) {

    ul.items li {
        width: 100%;
    }
}

/* ========================================
   articleFlow
======================================== */
.articleFlow {
    border: solid 5px var(--mono-color);
    padding: 1.5em;
    position: relative;
}

.articleFlow:after {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-weight: bold;
    font-size: 1.5em;
    position: absolute;
    bottom: -2em;
    left: calc(50% - .5em);
    color: var(--mono-color);
}

.articleFlow .image {
    max-width: 33% !important;
}

/* ========================================
   flowTbl
======================================== */
.article table.flowTbl {
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
    width: auto;
    list-style: none;
    border-left: 2px dotted #CCC;
    padding-left: 0;
    border-top: none !important;
}

/* 左側の幅固定 */
.article table.priceTbl td:first-child {
    width: 45%;
}

.article table.flowTbl tr,
.article table.flowTbl th,
.article table.flowTbl td {
    border-top: none !important;
}

.article table.flowTbl td {
    border: none;
    border-radius: 8px;
    display: block;
    height: auto;
    margin-bottom: 20px;
    padding: 5px;
    padding-left: 26px;
    position: relative;
}

.article table.flowTbl td:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--tri-color);
    position: absolute;
    left: -6px;
    top: .75em;
}

.flowTbl td::after {
    content: "";
    width: .8em;
    height: 1px;
    background: #ccc;
    position: absolute;
    top: 1em;
    left: 4px;
}

.flowTbl tr:last-child td {
    margin-bottom: 0;
}

.flowTbl tr td strong {
    display: inline-block;
    font-size: 1.15em;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: .5em;
}

/* ========================================
   cornerImg
======================================== */
.cornerImg {
    height: 240px;
    overflow: hidden;
}

.cornerImg img {
    width: 100%;
    height: 240px !important;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ========================================
   header
======================================== */
#title h1 {
    background: url(/materials/177971744929901.png) left center no-repeat;
    background-size: contain;
    width: 440px;
}

h1 a {
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    display: block;
    height: inherit;
}

#title h1 a {
    transition: 0.3s;
}

#title h1 a:hover {
    opacity: 0.7;
}

/* PC */
#title #title_outer {
    background: var(--mono-color) url(/materials/177971090578601.png) right center no-repeat;
    background-size: 300px;
}

#slider .slick-slide {
    height: auto !important;
}

/* ========================================
   sp
======================================== */
@media only screen and (max-width: 750px) {
#title h1 {
width: 290px;
}
}
@media only screen and (max-width: 600px) {

    #title h1 {
        background: url(/materials/177971744929901.png) 8px center no-repeat;
        background-size: 200px auto;

        width: 220px;
        height: 56px;

        margin: 0 0 0 20px;
        padding-left: 0;
    }

    #title h1 a {
        height: 56px;
    }

    /* SP */
    #title #title_outer {
        background: var(--mono-color);
        justify-content: flex-start;
    }

    .article table.normalTbl th,
    .article table.bgTbl tr th {
        text-align: center;
        font-weight: bold;
        width: 100%;
    }

    .article table.normalTbl th {
        background: var(--hexa-color);
    }

    .article table.normalTbl td.date {
        padding-bottom: 0;
    }

    .article table.normalTbl td.history {
        border-top: none;
        padding-top: 0;
    }
}

/* ========================================
   headline
======================================== */
#mainArticles h2,
#listTopics h2 {
    font-size: 2.25em;
    font-weight: bold;
    padding: 4vw 0;
    margin-bottom: 1em;
    line-height: 1;
}

#mainTopics h2,
#mainArticles .article h2,
.article h3,
.gallery h3,
.freeHtml h3,
div#contact_box h3,
.article.bg h3,
.article.theme h3,
.article.gray h3,
.gallery.bg h3,
.gallery.theme h3,
.gallery.gray h3,
#mainArticles div[id^="blog"] h2 {
    margin: 0;
    margin-top: 32px;
    font-weight: bold;
    font-size: 2em;
    line-height: 1.5;
    padding-top: 32px;
}

/* ========================================
   h3
======================================== */
.article h3,
.gallery h3 {
    text-align: center;
    position: relative;
    margin-bottom: 16px;
    padding-top: 56px;
    padding-bottom: 28px;
    line-height: 1.3;
}

/* 音符 */
.article h3::before,
.gallery h3::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(/materials/177969933560101.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 下線 */
.article h3::after,
.gallery h3::after {
    content: "";
    display: block;
    width: 96px;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg,
            #fe5196 0%,
            #bc9dc9 50%,
            rgba(142, 82, 203, 0.7) 100%);
    position: static;
    transform: none;
}

/* ========================================
   h4
======================================== */
.article h4 {
    border: none;
    background: none;
    padding-left: 0;
    margin: 1em 0;
    font-weight: bold;
    font-size: 26px;
    line-height: 1.7;
    text-align: center;
    color: #E5037B !important;
}

.article h4::before {
    content: none;
}

.article h4 span.subTtl {
    font-size: .5em;
}

/* ========================================
   h5
======================================== */
.article h5 {
    border: none;
    background: none;
    padding-left: 0;
    margin: 1em 0;
    font-weight: bold;
    font-size: 26px;
    line-height: 1.7;
    color: #E5037B !important;
}

.article h5 span {
    font-size: .85em;
}

.article h6 {
    font-weight: bold;
}

/* ========================================
   SP
======================================== */
@media only screen and (max-width: 600px) {

    #mainArticles h2,
    #listTopics h2 {
        padding: 6vw 0;
    }

    .article h4 {
        padding-bottom: 0;
    }
}

/* ========================================
   freeHTML
======================================== */
.sideContents .freeHtml {
    margin-top: 1em;
}

.side_address {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
    box-sizing: border-box;
}

.side_address .logo {
    padding: 0 2em 1em;
    text-align: center;
}

.side_address .logo img {
    width: 100%;
    max-width: 144px;
}

.side_address .txtblock {
    width: 500px;
}

.side_address .sitename {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    line-height: 1em;
}

.side_address .txt {
    display: block;
    margin: 0 auto 15px;
    line-height: 1.8;
    letter-spacing: 0;
}

/* ========================================
   自由HTML 会社概要 スマホ文字サイズ調整
======================================== */
@media only screen and (max-width: 600px) {

    #sideContents .freeHtml,
    #sideContents .freeHtml p,
    #sideContents .freeHtml li {
        line-height: 1.8 !important;
    }

}

/* sp */
@media only screen and (max-width: 600px) {

    .side_address {
        flex-direction: column;
    }

    .side_address .logo {
        padding: 1em;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .side_address .txtblock {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .side_address .sitename {
        margin: 0 auto 5px;
    }

    .side_address .txt {
        margin: 0 auto 5px;
        line-height: 1.6;
        text-align: center;
        white-space: wrap;
    }
}

/* ========================================
   bottomLink
======================================== */
#bottomLink {
    display: none;
}

/* sp */
@media only screen and (max-width: 600px) {

    #bottomLink {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 48px;
        overflow: hidden;
        text-align: center;
        z-index: 1000;
        display: block;
    }

    #bottomLink a {
        display: block;
        width: 100%;
        height: 100%;
        line-height: 48px;
        font-size: 100%;
        color: var(--white);
        background: var(--tri-color);
        text-decoration: none;
    }

    #bottomLink a span {
        display: block;
    }

    #wrap {
        margin-bottom: 48px;
    }
}

/* ========================================
   area
======================================== */
.article.area {
    width: 100vw;
    min-height: 33vw;
    line-height: 1.5;
    background: url(/materials/174677224472001.png) no-repeat center 50%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article.area p {
    font-size: 1.5em;
    text-shadow: 0 2px 0 var(--white);
}

/* ========================================
   contact us
======================================== */
div#contact_us {
    width: 100vw;
    margin: 0 calc(512px - 50vw) 16px;
    padding: 3vw 0;
    line-height: 1.5;
    text-align: center;
    background: url(/materials/177062545077002.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

div#contact_box {
    width: 100%;
    max-width: 824px;
    display: block;
    margin: auto;
    padding: 32px;
    background: rgb(255 255 255 / .8);
    backdrop-filter: blur(3px);
    border-radius: .5em;
}

div#contact_box h3 {
    margin: 0 auto;
    padding: 0;
}

span.tel {
    font-size: 1.8em;
}

/* ========================================
   contact btn
======================================== */
ul#contact_btn {
    display: flex;
    justify-content: center;
    flex-direction: row;
    font-size: 1em;
}

ul#contact_btn li {
    border: none;
}

#contact_btn a.btn {
    margin: 16px auto;
    padding: 16px 24px;
}

ul#contact_btn li a.btn {
    color: var(--white-color);
    margin: 0 .25em;
}

ul#contact_btn li a.btn::before {
    content: none;
}

/* ========================================
   SP
======================================== */
@media only screen and (max-width: 600px) {

    div#contact_us {
        margin: 0 calc(50% - 50vw) 16px;
        padding: 5vw 0;
        background-position: left center;
    }

    div#contact_box {
        width: 92%;
        max-width: fit-content;
        padding: 32px 16px;
    }

    ul#contact_btn {
        flex-direction: column;
    }

    ul#contact_btn li a.btn {
        margin: .25em auto;
        min-width: 224px;
    }

    ul.topics li h3 a {
        line-height: 1.25;
    }
}

/* ========================================
   blog
======================================== */
#mainArticles div[id^="blog"] h2 {
    width: auto;
    background: none;
}

/* ========================================
   maruFlex
======================================== */
ul.maru.maruFlex {
    display: flex;
    font-size: 1em;
}

ul.maru.maruFlex li {
    margin-right: 2em;
}

/* ========================================
   colors
======================================== */
:root {
    --mono-color: #222;
    --di-color: #111;
    --tri-color: #e5037b;
    --tetra-color: #e5e5e5;
    --penta-color: #f8f8f8;
    --hexa-color: #ffffff;
    --hepta-color: #ff7ac2;
    --gradient: linear-gradient(90deg, var(--tri-color) 0%, var(--hepta-color) 100%);
    --bg-color: #fff;
    --white: #fff;
    --black: #000;
    --gray: #aaa;
    --txt-color: #333;
}

/* ========================================
   heading color
======================================== */
#mainArticles h2,
#mainArticles h2 a,
#listTopics h2,
#listTopics h2 a,
.article h3,
.gallery h3,
.freeHtml h3 {
    color: #3B365C !important;
}

/* ========================================
   base color
======================================== */
#wrap,
#wrap_body #contents {
    background: var(--bg-color);
}

#wrap_body #title,
#wrap_body #topMenu {
    background: var(--mono-color);
}

#wrap_body #contents {
    background-image: url(/materials/176846853837701.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
}

a {
    color: var(--mono-color);
}

a:hover {
    color: var(--di-color);
}

/* ========================================
   button
======================================== */
a.btn {
    background: var(--mono-color);
    font-weight: normal;
    color: var(--white);
}

a.btn:hover {
    background: var(--tri-color);
    color: var(--white);
}

/* ========================================
   article / gallery
======================================== */
.article.gray,
.gallery.gray {
    background: var(--white);
}

.article.theme,
.gallery.theme {
    background: var(--gradient);
}

.article.theme2,
.gallery.theme2 {
    background: var(--di-color);
}

/* ========================================
   features
======================================== */
#features.article {
    z-index: 0;
    background: url(/materials/177062545076901.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    height: 364px;
    margin-bottom: -140px !important;
}

#features.article h3 {
    margin-top: 32px;
    color: var(--white);
}

.article.features {
    z-index: 1;
}

/* sp */
@media only screen and (max-width: 600px) {
    #features.article {
        height: 256px;
        margin-bottom: -80px !important;
    }
}

/* ========================================
   side / topics
======================================== */
.sideContents #sideServices h2::before,
.sideContents #sideBlogCategories h2::before,
.sideContents #sideBlogDates h2::before,
.sideContents #sideMobile h2::before {
    background: var(--tri-color);
}

.sideContents ul li a:hover,
.sideContents dt a:hover {
    background: var(--mono-color);
}

ul.topics li p.date,
ul.topics li p.more a,
#mainTopics .listview a {
    background: var(--mono-color);
    font-weight: normal;
}

ul.topics li p.more a:hover,
#mainTopics .listview a:hover,
#topMenu_outer .topMenu li a:hover {
    background: var(--tri-color);
}

/* ========================================
   form
======================================== */
#mainArticles form,
#mainBlogCommentForm form {
    background: var(--hexa-color);
}

#mainArticles table.contactTable tr th,
#mainBlogCommentForm table.contactTable tr th {
    background-color: var(--hexa-color);
}

#mainArticles table.contactTable tr td,
#mainBlogCommentForm table.contactTable tr td {
    background-color: var(--penta-color);
}


/* ========================================
   footer
======================================== */
#footer,
#footer_body .topMenu li a,
#footer_body .services li a {
    background: var(--mono-color);
}

#footer_body .topMenu li a:hover,
#footer_body .services li a:hover {
    background-color: var(--di-color);
}

#footer_body .copyright {
    background: var(--di-color);
}

/* ========================================
   h2 / heading
======================================== */
#mainArticles h2,
#listTopics h2 {
    background: url(/materials/177969861978401.png) no-repeat left center;
    background-size: cover;
}

#mainArticles h2,
#mainArticles h2 a,
#listTopics h2,
#listTopics h2 a,
.article h3,
.gallery h3,
.freeHtml h3 {
    color: #2f2a4a !important;
}

#mainTopics h2,
#mainArticles .article h2,
div#contact_box h3,
.article.bg h3,
.article.theme h3,
.article.gray h3,
.gallery.bg h3,
.gallery.theme h3,
.gallery.gray h3,
#mainArticles div[id^="blog"] h2 {
    color: var(--txt-color);
}

#mainArticles .article h2::after {
    background: var(--mono-color);
}

#mainTopics {
    background: var(--tetra-color);
}

#mainTopics h2::after,
#mainArticles .article h2::after,
.article h3::after,
.gallery h3::after,
.freeHtml h3::after {
    width: 64px;
    height: 6px;
    border-radius: 4px;
    background: var(--gradient);
}

/* ========================================
   heading
======================================== */
#mainTopics h2 {
    margin-top: 0;
    padding-top: 0;
}

.article h4 {
    color: var(--txt-color);
}

.article h4 span.subTtl {
    color: var(--mono-color);
}

.article h4::before {
    background: var(--mono-color);
    border-radius: 0;
}

.article h5 span {
    font-size: 0.8em;
}

.article h6 {
    color: var(--txt-color);
    background: var(--white);
    border-radius: 4px;
}

.article h6::before {
    color: var(--tri-color);
}

/* ========================================
   topics
======================================== */
ul.topics li h3 a {
    color: var(--tri-color);
    font-size: 1.1em;
}

ul.topics li h3 a:hover {
    color: var(--di-color);
}

/* ========================================
   list / form
======================================== */
ul.maru02 li::before {
    color: var(--mono-color);
}

#mainArticles table.contactTable tr td.th_headline,
#mainArticles table.contactTable input.button {
    background: var(--mono-color);
}

#mainArticles table.contactTable tr.must th {
    padding: 1em 56px 1em 1em;
}

.article .article_body img {
    max-width: 100%;
}

/* ========================================
   SP menu
======================================== */
@media only screen and (max-width: 600px) {

    #toggle,
    .active #toggle {
        background-color: var(--mono-color);
    }

    #topMenu_outer .topMenu li a:hover {
        background: var(--mono-color);
    }
}

/* ========================================
   youtube
======================================== */
.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

/* sp */
@media only screen and (max-width: 600px) {
    .youtube {
        margin-left: 4%;
        margin-right: 4%;
    }
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

/* ========================================
   service
======================================== */
#main_service .gallery_grid li.galleryGrid .image {
    margin-bottom: 0;
}

#main_service.gallery ul.galleryGrids .comment {
    background: linear-gradient(90deg,
            #fe5196 0%,
            #bc9dc9 50%,
            #8e52cb 100%);
    color: #fff;
    padding: 16px;
    border-radius: 999px;
    width: fit-content;
    margin: 16px auto 0;
    font-weight: bold;
}

/* ========================================
   site guide
======================================== */
#siteGuide.gallery.full.theme .comment {
    font-size: 1em;
}

div#siteGuide.gallery {
    background: linear-gradient(0deg,
            var(--di-color) 0%,
            var(--mono-color) 33%,
            transparent 33%,
            transparent 100%);
    padding-bottom: 2em;
}

div#siteGuide.gallery ul.galleryGrids .comment {
    color: var(--white);
}

ul.guide {
    display: flex;
    justify-content: space-between;
}

ul.guide li {
    flex-basis: 33%;
}

ul.guide li a.btn {
    width: 100%;
}

.article.theme ul.guide li a.btn {
    color: var(--black);
    background: var(--white);
}

ul.guide li a.btn:hover,
.article.theme ul.guide li a.btn:hover {
    background: var(--di-color);
    color: var(--white);
}

/* sp */
@media only screen and (max-width: 600px) {

    div#siteGuide.gallery {
        background: linear-gradient(0deg,
                var(--di-color) 0%,
                var(--mono-color) 70%,
                transparent 70%,
                transparent 100%);
    }

    ul.guide {
        flex-wrap: wrap;
    }

    ul.guide li {
        flex-basis: 100%;
        margin-bottom: .5em;
    }

    a.btn {
        width: 100%;
    }

    #siteGuide li.galleryGrid {
        width: 100%;
        float: none;
    }
}

.envelope strong a {
    display: inline-block;

    font-size: clamp(32px, 8vw, 52px);

    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;

    white-space: nowrap;

    color: #222;
}

@media only screen and (max-width: 600px) {

    #mainArticles .envelope,
    #mainBlogCommentForm .envelope {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
        padding: 32px 12px!important;

        background: #FCE7EE;
        text-align: center;
        box-sizing: border-box;

        line-height: 1.9;
    }

    .envelope strong a {
        display: block;
        width: fit-content;
        margin: 8px auto 10px;

        font-size: clamp(30px, 9vw, 42px);
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: 0.02em;

        white-space: nowrap;
        color: #222;
    }
}

/*-------------
バッジ非表示
---------------*/
.recaptcha_policy {
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 11px !important;
    color: #444 !important;
}

.recaptcha_policy a {
    font-size: 11px !important;
    color: #111 !important;
}

.grecaptcha-badge {
    visibility: hidden;
}


@media only screen and (max-width: 1024px) {

    .mainImage img,
    .mainImage #slider li img {
        min-width: 100%;
        object-fit: cover;
        object-position: top center;
        min-height: 200px;
    }
}


.article a[target="_blank"]:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    font-weight: bold;
}

.article .image a[target="_blank"]:after {
    content: none;
}

.article.max.map {
    padding: 0;
}