@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");

/*===================================
  基本設定
===================================*/
:root {
    --c-01: #002e5d;
    --c-02: #eff3f7;
    --c-03: #eee;
    --c-04: #384076;
    --c-05: #7097bf;
    --c-06: #fdefcd;
    --c-07: rgba(255,249,201,0.8);
    --c-08: rgba(253,239,205,0.8);
    --c-10: rgba(255, 255, 255, 0.8);
    --f-01: "Noto Sans JP", sans-serif;
    --f-02: "Noto Serif JP", serif;
}
.c-01 {
    color: var(--c-01);
}
.c-02 {
    color: var(--c-02);
}
.c-03 {
    color: var(--c-03);
}
.c-04 {
    color: var(--c-04);
}
.c-05 {
    color: var(--c-05);
}
.c-06 {
    color: var(--c-06);
}
.bgc-01 {
    background: var(--c-01);
}
.bgc-02 {
    background: var(--c-02);
}
.bgc-03 {
    background: var(--c-03);
}
.bgc-04 {
    background: var(--c-04);
}
.bgc-05 {
    background: var(--c-05);
}
.bgc-06 {
    background: var(--c-06);
}
.bgc-07 {
    background: var(--c-07);
}
.bgc-08 {
    background: var(--c-08);
}
.bgc-10 {
    position: relative;
}
.bgc-10::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--c-10);
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: -2;
}

html {
    font-family: var(--f-01);
    color: #333;
}

/* 共通コンテンツ間隔 */
.area {
    padding-top: 100px;
    padding-bottom: 100px;
}
@media (max-width: 599px) {
    .area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* 共通要素読み込みコメント（取り込み後削除） */
[class*="load-"] {
    min-height: 50px;
    border: 3px solid #00bcd4;
    position: relative;
}
[class*="load-"]:before {
    content: "共通要素";
    display: block;
    font-weight: bold;
    color: #ff0;
    text-align: center;
    background: #00bcd4;
    position: absolute;
    z-index: 100;
}
/*===================================
  共通ブロック　block-cmn
==================================*/
/* 共通ブロック１ */
/*===================================
  共通タイトル　ttl-cmn
===================================*/
/* 共通タイトル１ */
.ttl-cmn01 {
    font-size: 28px;
    text-align: center;
}
@media (max-width: 599px) {
    .ttl-cmn01 {
        font-size: 24px;
    }
}
/*===================================
  共通リスト　list-cmn
==================================*/
/* 共通リスト１ */
/*===================================
  共通ボタン btn-cmn
===================================*/
/* 共通ボタン１ */
.btn-cmn01 {
    max-width: 180px;
    margin-top: 50px;
}
.btn-cmn01 a {
    display: block;
    padding: 5px 20px;
    color: #fff;
    text-align: center;
    background: #000;
    position: relative;
}
.btn-cmn01 a:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 5px;
}
.btn-cmn01.btn-back a:after {
    content: "\f053";
    left: 5px;
    right: inherit;
}
/*===================================
  他共通エレメント -cmn
===================================*/
/*===================================
  共通要素
===================================*/
/**
ヘッダー
header
*/
.header {
    padding: 10px 0 0;
    background: #fff;
}
.header .contents {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.header .logo img {
    max-height: 50px;
}
.header .right {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
}
.header .right .txt {
    margin-right: 10px;
    line-height: 120%;
}
.header .right .txtin {
    display: block;
}
.header .right .tel a {
    font-weight: bold;
    font-size: 30px;
}
.header .right .tel a:before {
    content: "\f879";
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 24px;
}
@media (max-width: 1024px) {
    .header {
        padding: 5px 0;
    }
    .header .logo img {
        max-height: 60px;
    }
    .header .right {
        display: none;
    }
}
/* 下部固定コンテンツ */
.fix-bottom {
    display: none;
}
@media (max-width: 1024px) {
    .fix-bottom {
        width: 100%;
        display: -webkit-box;
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 250;
    }
    .fix-bottom .item {
        width: 50%;
        text-align: center;
    }
    .fix-bottom a {
        height: 100%;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        padding: 10px 5px;
    }
    .fix-bottom .tel {
        font-size: 14px;
        color: #fff;
        background: #000;
    }
    .fix-bottom .tel a:before {
        content: "\f879";
        margin-right: 5px;
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
    }
    .fix-bottom .contact {
        color: #000;
        background: #eee;
    }
    .fix-bottom .contact a:before {
        content: "\f0e0";
        margin-right: 5px;
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
    }
}
/**
グローバルナビ
gnav
*/
.gnav {
    flex-grow: 1;
    margin-left: 5%;
    padding: 15px 0px;
    position: relative;
    z-index: 100;
}
.header.fixed {
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: 0 0 5px 0 #999;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
}
.gnav .wrap {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}
.gnav .navlogo {
    display: none;
}
.gnav .navlogo img {
    max-height: 64px;
}
.gnav .list01 {
    width: 100%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.gnav .item01 {
    margin: 0 20px;
    font-weight: 500;
    text-align: center;
}
.gnav .item01>a,
.gnav .item01 .itemin {
    display: block;
    font-weight: 500;
    cursor: pointer;
}
.gnav .item01.-parent {
    position: relative;
}
.gnav .item01.-parent:hover .list02 {
    visibility: visible;
    opacity: 1;
}
.gnav .list02 {
    width: 300px;
    visibility: hidden;
    padding-top: 10px;
    background: rgba(255,255,255,0.8) content-box;
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: 100%;
    left: 50%;
}
.gnav .item02 a {
    display: block;
    padding: 5px;
}

.gnav .item02 a:hover {
    color: #fff;
    background: var(--c-01);
    opacity: 1;
}
@media (max-width: 1024px) {
    .gnav {
        width: 100%;
        max-width: 300px;
        height: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(255,255,255,0.9);
        -webkit-transition: -webkit-transform ease 0.5s;
        transition: -webkit-transform ease 0.5s;
        transition: transform ease 0.5s;
        transition: transform ease 0.5s, -webkit-transform ease 0.5s;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        position: fixed;
        top: 0;
        right: 0;
    }
    .gnav.action {
        -webkit-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
        z-index: 250;
    }
    .gnav .wrap {
        margin: 50px 0 50px 30px;
    }
    .gnav .navlogo {
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-weight: bold;
        font-size: 20px;
    }
    .gnav .item01 {
        width: 100%;
        min-height: 40px;
        margin: 0 0 10px 0;
        text-align: left;
    }
    .gnav .list02 {
        visibility: visible;
        padding-top: 0;
        padding-left: 20px;
        background: none;
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }
    .gnav .list02 a {
        padding: 10px 0 10px 1em;
        position: relative;
    }
    .gnav .list02 a:before {
        content: "∟";
        display: block;
        position: absolute;
        top: 10px;
        left: -5px;
    }
    .gnav .sns {
        display: flex;
    }
    .gnav .sns .btn {
        margin-right: 10px;
    }
}
[data-element-id] .gnav.fixed {
    position: relative;
}
/* ハンバーガーメニュー  */
.toggle {
    width: 42px;
    height: 42px;
    display: none;
    background: var(--c-01);
    opacity: 0.8;
    cursor: pointer;
    position: fixed !important;
    top: 0px;
    right: 0px;
    z-index: 251;
}
.toggle .bar {
    width: 28px;
    height: 2px;
    display: block;
    margin-top: -1px;
    padding: 0;
    text-indent: 9999px;
    background: #fff;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    position: absolute;
    top: 50%;
    left: 7px;
}
.toggle .bar:before,
.toggle .bar:after {
    content: "";
    width: 28px;
    height: 2px;
    display: block;
    background: #fff;
    position: absolute;
    left: 0;
}
.toggle .bar:before {
    top: -10px;
}
.toggle .bar:after {
    top: 10px;
}
.toggle.active .bar {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.toggle.active .bar:after,
.toggle.active .bar:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
    left: 0;
}
@media (max-width: 1024px) {
    .toggle {
        display: block !important;
    }
}
.overlay:after {
    content: "";
    width: 100%;
    height: 100vh;
    background: #000;
    opacity: 0.3;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 249;
}
/*トップへ戻る*/
.totop {
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--c-01);
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
}
.totop:before {
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}
@media (max-width: 1024px) {
    .totop {
        bottom: 65px;
        right: 10px;
    }
}
/**
フッター
footer
*/
.footer .copy {
    font-weight: bold;
    font-size: 12px;
    text-align: center;
}
@media (max-width: 599px) {
    .footer .copy {
        padding-bottom: 80px;
    }
}
/**
フッターナビ
fnav
*/
.fnav .item {
    margin: 0 0 15px 0;
}

.fnav .l-area {
    width: 35%;
}

.fnav .l-area .list01 {
    margin-left: 1em;
}

.fnav .l-area .item a {
    display: block;
    padding-left: 20px;
    position: relative;
}
.fnav .l-area .item a:before {
    content: "∟";
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
}
.fnav .list02 {
    width: 50%;
}
.fnav .datawrap {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}
.fnav .datattl {
    margin-bottom: 10px;
    padding-left: 12px;
    position: relative;
}
.fnav .datattl:before {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    border-radius: 50%;
    background: #000;
    position: absolute;
    top: 10px;
    left: 0;
}
.fnav .data {
    margin-bottom: 5px;
    padding-right: 10px;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}
.fnav .data a {
    padding-left: 12px;
    position: relative;
}
.fnav .data a:before {
    content: "";
    width: 5px;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    top: 7px;
    left: 0;
}
@media (max-width: 1024px) {
    .fnav .wrap {
        flex-wrap: wrap;
    }
    .fnav .list01 {
        width: 100%;
    }
    .fnav .list02 {
        width: 100%;
    }
}
@media (max-width: 599px) {
    .fnav .list01 {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
    .fnav .datawrap {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}
/**
2カラムページ
*/
.column2 .inner {
    display: -webkit-box;
    display: flex;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.column2 .side {
    width: 200px;
}
.column2 .mainwrap {
    width: calc(100% - 250px);
}
@media (max-width: 1024px) {
    .column2 .inner {
        flex-wrap: wrap;
    }
    .column2 .side {
        width: 100%;
        -webkit-box-ordinal-group: 4;
        order: 3;
        margin-bottom: 50px;
    }
    .column2 .mainwrap {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        order: 2;
        margin-bottom: 50px;
    }
}
/* サイドメニュー */
.side .list {
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .side {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .side .list {
        width: 48%;
    }
}
@media (max-width: 599px) {
    .side .list {
        width: 100%;
    }
}
.list-side .datattl {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    border-radius: 2em;
    background: #000;
    position: relative;
}
.list-side .data {
    margin-bottom: 10px;
    padding-left: 10px;
}
.list-side a {
    display: inline-block;
    padding-left: 20px;
    position: relative;
}
.list-side a:before {
    content: ">";
    color: #000;
    position: absolute;
    left: 0;
}
@media (max-width: 1024px) {
    .list-side.type-archive .datawrap {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .list-side.type-archive .datawrap .datattl {
        width: 100%;
    }
    .list-side.type-archive .datawrap .data {
        width: 48%;
    }
}
/*===================================
  各個別コンテンツ
===================================*/
/**
トップ
*/
/*ホームビジュアル（トップ）*/
.homevisual {
    height: calc(100vh - 100px);
    position: relative;
}
.homevisual .img {
    min-height: 300px;
    position: relative;
}
.homevisual .img:before {
    content: "";
    display: block;
    padding-top: 40%;
    position: relative;
    z-index: -1;
}
.homevisual .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    /*IE対策*/
    font-family: "object-fit: cover; object-position: 50% 50%;";
    position: absolute;
    top: 0;
    left: 0;
}

.top-movie {
    width: 100%;
    height: 100vh;
    margin: auto;
    position: fixed;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    z-index: -100;
}

.movie-box {
    width: 100%;
    height: 100%;
    background: #000;
}

.movie-box > div{
      width: 100%;
    height: 100%;
}

.movie-box video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.6;
}
/*IE対策*/
.homevisual .head {
    font-family: var(--f-02);
    font-weight: 500;
    font-size: 60px;
    color: #fff;
    text-align: right;
    text-shadow: 0 0 6px #595959;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute !important;
    top: 30%;
    left: 50%;
}
@media (max-width: 599px) {
  .homevisual{
        height: calc(100vh - 100px);
  }
    .homevisual .head {
        font-size: 28px;
    }
}
/* A-BiSUスライダー */
.main-visual .uk-slidenav-position {
    height: 100%;
}

.main-visual .uk-slideshow {
    height: 100% !important;
    max-height: 770px;
    overflow: hidden;
    position: relative;
}

.main-visual .uk-slideshow::after {
    content: "";
    display: block;
    padding-top: 55%;
}

.main-visual .uk-slideshow li {
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0;
}

.main-visual .uk-slideshow li>div {
    height: 100% !important;
}

.main-visual .uk-slideshow img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    font-family: "object-fit: cover; object-position: center center;";
}
/*IE対策*/
/* スリックスライダー（トップ） */
.slick01.slick-dotted {
    margin-bottom: 50px;
}
.slick01 .btn-slick {
    width: 20px;
    height: 20px;
    display: flex!important;
    align-items: center;
    justify-content: center;
    padding: 0.1em;
    font-size: 16px;
    color: #fff;
    background: var(--c-01);
    cursor: pointer;
    z-index: 1;
}
.slick01 .btn-slick.btn-back {
    order: -1;
    left: 0;
}
.slick01 .btn-slick.btn-next {
    right: 0;
}
.slick01 .slick-dots {
    bottom: -40px;
    left: 0;
}
@media (max-width: 599px) {
    .slick01 {
        padding: 0 10px;
    }
    .slick01 .btn-slick {
        font-size: 20px;
    }
}
/**
下層共通
*/
/* トップビジュアル（下層共通） */
.topvisual {
    position: relative;
}
.topvisual .img {
    min-height: 200px;
    opacity: 0.4;
    position: relative;
}
.topvisual .img:before {
    content: "";
    display: block;
    padding-top: 35%;
    position: relative;
    z-index: -1;
}
.topvisual .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    font-family: "object-fit: cover; object-position: 50% 50%;";
    position: absolute;
    top: 0;
    left: 0;
}
.topvisual .head {
    width: 96%;
    max-width: 1000px;
    font-weight: bold;
    font-size: 34px;
    text-align: center;
    text-shadow: 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 4px white;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute !important;
    top: 50%;
    left: 50%;
}
@media (max-width: 599px) {
    .topvisual .head {
        font-size: 24px;
    }
    .topvisual .img:before {
        padding-top: 100%;
    }
}
/* パンくずリスト */
.breadcrumbs {
    padding: 30px 0;
}

.breadcrumbs-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.breadcrumbs-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.breadcrumbs-list li {
    display: inline;
    font-size: 14px;
    letter-spacing: 1px;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage a {
    font-weight: bold;
    color: var(--c-01);
}

.breadcrumbs-list li+li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    margin: 0 10px 0 0px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .breadcrumbs {
        padding: 20px 0;
        font-size: 14px;
    }

    .breadcrumbs-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .breadcrumbs-list {
        width: 90%;
    }

    .breadcrumbs li {
        font-size: 12px;
    }

    .breadcrumbs li+li::before {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 599px) {
    .breadcrumbs {
        padding: 15px 0;
        font-size: 12px;
    }

    .breadcrumbs li+li::before {
        width: 6px;
        height: 6px;
    }
}
/* ページネーション */
.pagenation {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}
.pagenation .item {
    margin: 0 10px;
}
.pagenation .prev {
    position: relative;
}
.pagenation .prev a:before {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}
.pagenation .next {
    position: relative;
}
.pagenation .next a:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}
.pagenation a,
.pagenation .now {
    font-weight: bold;
}
.pagenation .number a,
.pagenation .now,
.pagenation .next a,
.pagenation .prev a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    font-size: 20px;
    color: #000;
    text-align: center;
    border-radius: 50%;
}
.pagenation .number a:hover,
.pagenation .next a:hover,
.pagenation .prev a:hover,
.pagenation .now {
    color: #fff;
    background: var(--c-01);
    opacity: 1;
}
@media (max-width: 599px) {
    .pagenation .item {
        margin: 0 5px;
    }
    .pagenation .prev {
        margin-right: 10px;
    }
    .pagenation .next {
        margin-left: 10px;
    }
}
/**
各下層ページ
*/
/* 記事一覧ページ */
.list-article .cate span {
    display: inline-block;
    margin: 0 5px 2px 0px;
    padding: 0 5px;
    color: #fff;
    background: #000;
}
.list-article .cate .cate1 {
    background: #00f;
}
/* 記事詳細ページ */
.articledtl01 .cate span {
    display: inline-block;
    margin: 0 5px 2px 0px;
    padding: 0 5px;
    color: #fff;
    background: #000;
}
.articledtl01 .cate .cate1 {
    background: #00f;
}
.aside-container .wrap {
    height: 100%;
    background-color: #fff;
}

.aside-container .wrap ul {
    border: 3px solid var(--c-01);
}

.aside-container .wrap .title {
    padding: 1.5em;
    color: #fff;
    text-align: center;
    background-color: var(--c-01);
}

.aside-container .wrap li a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 20px 5px;
    text-align: center;
}

.aside-container .wrap li:nth-of-type(even) a {
    background-color: #f5f5f5;
}

.aside-container+.aside-container {
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .aside-container {
        width: 48%;
    }
    .aside-container+.aside-container {
        margin-top: 0;
    }
}

@media (max-width: 599px) {
    .aside-container {
        width: 100%;
    }
    .aside-container+.aside-container {
        margin-top: 50px;
    }
}

/* ギャラリー */
.list-gallery01 a {
    display: block;
    position: relative;
}
.list-gallery01 .img {
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.list-gallery01 .block-txt {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    visibility: hidden;
    overflow: hidden;
    padding: 10px;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
    top: 0;
    left: 0;
}
.list-gallery01 .cate {
    margin-bottom: 5px;
    font-size: 14px;
}
.list-gallery01 .head {
    font-size: 18px;
}
.list-gallery01 a:hover {
    opacity: 1;
}
.list-gallery01 a:hover .img {
    opacity: 0.5;
}
.list-gallery01 a:hover .block-txt {
    visibility: visible;
    opacity: 1;
}
@media (max-width: 599px) {
    .list-gallery01 .block-txt {
        display: none;
    }
    .list-gallery01 .head {
        font-size: 14px;
    }
}
/* ギャラリー詳細 */
.gallerydtl01 .thumbnail {
    cursor: pointer;
}
/* フォーム */
.form .box {
    display: -webkit-box;
    display: flex;
    flex-wrap: nowrap;
    padding: 20px 0;
    border-bottom: 2px solid #999;
}
.form .datattl {
    width: 200px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-shrink: 0;
    font-weight: bold;
    color: #000;
}
.form .require {
    display: inline-block;
    margin-left: 10px;
    padding: 0 4px;
    font-size: 14px;
    color: #fff;
    line-height: 1.6em;
    background: #000;
}
.form .data {
    width: 100%;
    padding-left: 50px;
}
.form .data input {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #999;
}
.form .data input[type="radio"] {
    display: none;
}
.form .data input[type="radio"]+label {
    margin-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
    line-height: 200%;
    position: relative;
}
.form .data input[type="radio"]+label::before {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border: 1px solid #303841;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 1px 1px 0 1px #999;
    position: absolute;
    top: 4px;
    left: 0;
}
.form .data input[type="radio"]:checked+label::after {
    content: "";
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: #303841;
    position: absolute;
    top: 7px;
    left: 3px;
}
.form .data input[type="radio"]:checked+label {
    -webkit-transition: 0.6s;
    transition: 0.6s;
}
.form .data input[type="number"] {
    width: 70px;
    margin-right: 10px;
}
.form .data select {
    padding: 5px;
    box-sizing: border-box;
    color: inherit;
    border: 1px solid #999;
}
.form .data textarea {
    width: 100%;
    height: 170px;
    padding: 5px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: 1px solid #999;
}
.form .data01 div {
    display: inline-block;
}
.form .btn {
    margin-top: 30px;
}
.form .btn button {
    width: 200px;
    margin: 10px 20px;
    padding: 0.2em;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 2em;
    background: #000;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.form .btn button:hover {
    opacity: 0.6;
    cursor: pointer;
}
@media (max-width: 1024px) {
    .form .item {
        flex-wrap: wrap;
    }
    .form .datattl {
        display: block;
        margin-bottom: 10px;
    }
    .form .data {
        padding-left: 0;
    }
}

/*# sourceMappingURL=style.css.map */

.formitem dd input[type="radio"] {
    padding-left: 50px;
}

.formitem dd input[type="radio"]+label::before {
    content: "";
    width: 25px;
    height: 25px;
    border: 2px solid #ff8052;
    border-radius: 5px;
    background: #fff;
    position: absolute;
    top: 5px;
    left: 0;
}

.formitem dd input[type="radio"] label:hover {
    cursor: pointer;
}

.formitem dd input[type="radio"] {
    display: none;
}

.formitem dd input[type="radio"]:checked+label::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color: #ff8052;
    position: absolute;
    top: 5px;
    left: 4px;
    z-index: 1;
}

.formitem dd input[type="radio"]+label {
    display: inline-block;
    margin-left: 10px;
    padding: 5px 10px 5px 35px;
    position: relative;
}

.detail-content-text h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 0.5em;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 2px;
    border-bottom: 3px solid  var(--c-01);
}

.detail-content-text h3 {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 0.5em 1em;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    letter-spacing: 2px;
    background: var(--c-01);
}

.detail-content-text h4 {
    margin-top: 50px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
    color: var(--c-01);
    letter-spacing: 2px;
}
.detail-content-text ol {
    counter-reset: count 0;
}
.detail-content-text ol li {
    margin: 10px 0;
    padding-left: 20px;
    font-size: 16px;
    color: #000;
    position: relative;
}
.detail-content-text ol li::before {
    content: counter(count) ". ";
    display: inline-block;
    counter-increment: count 1;
    color: var(--c-01);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}

.detail-content-text ul li {
    margin: 10px 0;
    padding-left: 20px;
    font-size: 16px;
    color: #000;
    position: relative;
}

.detail-content-text ul li::before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    background: var(--c-01);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}

.detail-content-text ol li marker {
    display: none;
}

.detail-content-text iframe[src*="youtube"] {
    aspect-ratio: 16 / 9;
}

.d-none-tb,
.d-none-sp {
    display: block;
}
.d-b-tb,
.d-b-sp {
    display: none;
}
@media (max-width: 1024px) {
    .d-b-tb {
        display: block;
    }
    .d-none-tb {
        display: none;
    }
}
@media (max-width: 599px) {
    .d-none-sp {
        display: none;
    }
    .d-b-sp {
        display: block;
    }
}

.l-text2 {
    letter-spacing: 2px;
}
.l-text3 {
    letter-spacing: 3px;
}

.logo-area {
    flex-grow: 1;
    padding-left: 15.5%;
    text-align: center;
}

.logo-area .pagettl {
    margin: 0 auto 15px;
}

.nav-area {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.nav-area .top-con2 {
    flex-shrink: 0;
}

.nav-area .top-con2 a {
    display: inline-block;
    padding: 0.5em 1.5em;
    color: #fff;
    border-top: solid 1px var(--c-01);
    border-left: solid 1px var(--c-01);
    background: var(--c-01);
}

.nav-area .top-con2 a:hover {
    color: var(--c-01);
    background: #fff;
    opacity: 1;
}

.nav-area .top-con2 .ab a {
background: #e51284;
    border-top: solid 1px #e51284;
    border-left: solid 1px #e51284;
}

.nav-area .top-con2 .ab a:hover {
    color: #e51284;
    background: #fff;
    opacity: 1;
}

.top-con {
    flex-shrink: 0;
    margin-right: 20px;
}

.top-con .address {
    margin-top: 5px;
    padding-top: 5px;
    padding-left: 15px;
    border-top: solid 1px #000;
}
.top-con .tel a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 30px;
}
.top-con .tel i {
    margin-right: 15px;
    font-size: 16px;
}
.box-ss {
    -webkit-box-shadow: 0px 0px 7px #8b8b8b;
    box-shadow: 0px 0px 7px #8b8b8b;
}

.up-left-1000 {
    margin-left: calc(50% - 500px);
}
.up-right-1000 {
    margin-right: calc(50% - 500px);
}
[class*=up-fxd-even]>.up-left-1000:nth-child(even),
[class*=up-fxd-odd]>.up-left-1000:nth-child(odd) {
    margin-left: 0;
    margin-right: calc(50% - 500px);
}
[class*=up-fxd-even]>.up-right-1000:nth-child(even),
[class*=up-fxd-odd]>.up-right-1000:nth-child(odd) {
    margin-left: calc(50% - 500px);
    margin-right: 0;
}

@media (max-width: 1024px) {
    .up-left-1000 {
        margin-left: 2%;
    }
    .up-right-1000 {
        margin-right: 2%;
    }
    [class*=up-fxd-even]>.up-left-1000:nth-child(even),
    [class*=up-fxd-odd]>.up-left-1000:nth-child(odd) {
        margin-left: 0;
        margin-right: 2%;
    }
    [class*=up-fxd-even]>.up-right-1000:nth-child(even),
    [class*=up-fxd-odd]>.up-right-1000:nth-child(odd) {
        margin-left: 2%;
        margin-right: 0;
    }
}
@media (max-width: 599px) {
    .up-left-1000 {
        margin-right: 2%;
    }
    .up-right-1000 {
        margin-left: 2%;
    }
    [class*=up-fxd-even]>.up-left-1000:nth-child(even),
    [class*=up-fxd-odd]>.up-left-1000:nth-child(odd) {
        margin-left: 2%;
        margin-right: 2%;
    }
    [class*=up-fxd-even]>.up-right-1000:nth-child(even),
    [class*=up-fxd-odd]>.up-right-1000:nth-child(odd) {
        margin-left: 2%;
        margin-right: 2%;
    }
}

.zoom-in-img .img {
    overflow: hidden;
}

.zoom-in-img img {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.zoom-in-img a:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.cats-btn {
    position: fixed;
    bottom: 100px;
    right: 10px;
    z-index: 10;
}

.cats-btn a {
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    background: var(--c-03);
    -webkit-box-shadow: 0px 0px 7px #8b8b8b;
    box-shadow: 0px 0px 7px #8b8b8b;
    transition: 0.3s;
    position: relative;
}

.cats-btn a .img {
    max-width: 150px;
}

.cats-btn a .text {
    width: 100%;
    padding: 0.5em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background: var(--c-01);
    position: absolute;
    bottom: 0px;
    left: 0;
}

.m-ttl {
    font-weight: 500;
    font-size: 30px;
}

.text-c-l {
    display: inline-block;
    text-align: left;
}
.area-01 {
    position: relative;
}

.area-01 .box-area {
    display: flex;
    position: relative;
}
.area-01::after {
    content: "";
    width: 30%;
    height: 150%;
    background: var(--c-02);
    position: absolute;
    top: 0%;
    right: 0;
    z-index: -1;
}

.area-01 .img01 {
    width: 35%;
}

.area-01 .img01 img {
    -webkit-box-shadow: 0px 0px 7px #8b8b8b;
    box-shadow: 0px 0px 7px #8b8b8b;
}

.area-01 .img02 {
    width: 35%;
    display: flex;
    align-items: flex-end;
}

.area-01 .img02 img {
    -webkit-box-shadow: 0px 0px 7px #8b8b8b;
    box-shadow: 0px 0px 7px #8b8b8b;
}

.area-01 .box {
    padding: 0 50px 100px;
}

.m-btn a,
.m-btn button {
    width: 100%;
    max-width: 270px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1em 1.5em;
    font-weight: 500;
    border: solid 1px;
    border-radius: 9999px;
    background: #fff;
}
.m-btn.big a {
    max-width: 300px;
}

.m-btn a:hover,
.m-btn button:hover {
    color: #fff;
    background: var(--c-01);
    opacity: 1;
}

.area-02 {
    display: flex;
    position: relative;
}

.area-02::before {
    content: "";
    width: 80%;
    height: 110%;
    background: var(--c-02);
    position: absolute;
    top: -10%;
    left: 0;
    z-index: -1;
}

.slick-num {
    margin: 0 10px;
    font-size: 24px;
    text-align: center;
}

.slick01 .img {
    margin-top: 50px;
    -webkit-box-shadow: 0px 0px 7px #8b8b8b;
    box-shadow: 0px 0px 7px #8b8b8b;
}

.slick01.slick-initialized .slick-slide {
    margin: 0 10px;
}

.custom-nav {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    position: absolute;
    top: 0;
    right: 0;
}

.m-sb-ttl {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 24px;
}

.area-03 .box {
    -webkit-box-shadow: 0px 0px 7px #8b8b8b;
    box-shadow: 0px 0px 7px #8b8b8b;
    position: relative;
}

.area-03 .box .ttl {
    width: 98%;
    font-size: 24px;
    color: #fff;
    text-align: center;
    transform: translate(-50%,-50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.area-03 .box .click-text {
    color: #fff;
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.area-03 .box .img {
    background: var(--c-01);
}

.area-03 .box .img img {
    opacity: 0.5;
}

.area-04 {
    position: relative;
}

.area-04 .img {
    background: #fff;
}

.area-img .img img,
.area-04 .img img {
    opacity: 0.3;
}

.area-04::after {
    content: "";
    width: 60%;
    height: 150%;
    background: var(--c-02);
    position: absolute;
    top: 0%;
    right: 0;
    z-index: -1;
}
.area-04.new::after {
    height: 100%;
}
.area-04.not::after {
    content: none;
}

.area-05 {
    position: relative;
}

.area-05::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--c-02);
    position: absolute;
    bottom: 0%;
    left: 0;
    z-index: -1;
}

.area-06 .bg-ff {
    position: relative;
    z-index: 1;
}
.area-06 .bg-ff::after {
    content: "";
    width: 115%;
    height: 115%;
    background: #fff;
    transform: translate(-50%,-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}

.area-07 {
    position: relative;
}

.area-07::after {
    content: "";
    width: 80%;
    height: 60%;
    background: var(--c-02);
    position: absolute;
    bottom: 0%;
    right: 0;
    z-index: -1;
}

.area-07 .box {
    padding: 15px 15px 60px 15px;
    background: var(--c-03);
    -webkit-box-shadow: 0px 0px 7px #8b8b8b;
    box-shadow: 0px 0px 7px #8b8b8b;
    position: relative;
}

.area-07 .box .text {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: inherit;

    -webkit-line-clamp: 4;
}

.area-07 .box .img {
    width: 100px;
    height: 100px;
    border: solid 1px #fff;
    border-radius: 50%;
    position: absolute;
    bottom: -50px;
    left: -50px;
}

.area-07 .name {
    width: 70%;
    margin: 25px auto 0;
    text-align: center;
}

.list-news li {
    margin-bottom: 30px;
    padding: 0 10px 17px;
    border-bottom: solid 1px #000;
}

.list-news li a {
    display: flex;
    justify-content: space-between;
}

.list-news li .date {
    flex-shrink: 0;
    margin-right: 30px;
}

.list-news li .text {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: inherit;

    -webkit-line-clamp: 1;
}

.list-blog li {
    margin-bottom: 20px;
}

.list-blog li .text {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 30px;
    white-space: inherit;

    -webkit-line-clamp: 2;
}

.list-blog li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: space-between;
}

.list-blog .date {
    flex-shrink: 0;
    margin-bottom: 10px;
    font-weight: 500;
}
.list-blog.new .date {
    margin-bottom: 0px;
}
.list-blog .cat {
    display: inline-block;
    padding: 0.5em 1.5em;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    border-radius: 5px;
    background: var(--c-01);
}

.t-line {
    position: relative;
}

.t-line::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #000;
    transform: translate(-50% , 0);
    position: absolute;
    top: 0%;
    left: 50%;
}

.area-09>* {
    color: #fff;
}

.area-09 .box {
    background: #000;
}
.area-09 .box .img {
    opacity: 0.5;
}

.area-10 {
    position: relative;
}

.area-10 .box {
    background: var(--c-10);
}

.area-10 .img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.area-10 .tel a {
    width: 100%;
    max-width: 270px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.5em;
    font-size: 30px;
    border-bottom: solid 1px;
}

.area-10 a i {
    margin-right: 15px;
    font-size: 16px;
}

.footer .map {
    padding-top: 30%;
}

.footer .add {
    margin-bottom: 50px;
}

.footer .add .tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.footer .add  .tel i {
    margin-right: 15px;
    font-size: 16px;
}

.footer .btn-area {
    margin-bottom: 50px;
    text-align: right;
    border-bottom: solid 1px #000;
}

.footer .btn-area .btn {
    display: inline-block;
    margin-right: 10px;
}

.footer .btn-area .btn a {
    display: block;
    padding: 0.5em 1em;
    color: #fff;
    border: solid 1px #000;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    background: var(--c-01);
}

.footer .btn-area .btn a:hover {
    color: var(--c-01);
    background: #fff;
    opacity: 1;
}

.footer .sns .btn {
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .m-sb-ttl {
        font-size: 20px;
    }
    .homevisual .head {
        font-size: 50px;
    }
    .m-ttl {
        font-size: 28px;
    }
    .up-d-con {
        display: contents;
    }
    .nav-area {
        justify-content: flex-end;
        flex-shrink: 0;
    }

    .header .contents {
        display: contents;
    }
    .pagettl {
        padding-right: 50px;
        font-size: 12px;
    }
    .area-03 .box .ttl {
        font-size: 18px;
    }
    .area-07 .box .img {
        transform: translateX(-50%);
        left: 50%;
    }
    .area-07 .name {
        margin: 70px auto 0;
    }
    .cats-btn a {
        width: 150px;
        height: 150px;
    }
    .cats-btn a .img {
        max-width: 85px;
    }
}

@media (max-width: 599px) {
    .m-sb-ttl {
        margin-bottom: 15px;
        font-size: 18px;
    }
    .footer .map {
        padding-top: 60%;
    }
    .homevisual .head {
        font-size: 40px;
    }
    .m-ttl {
        font-size: 26px;
    }
    .logo-area {
        width: 96%;
        max-width: 768px;
        margin: 0 auto;
        padding-left: 0;
        text-align: left;
    }
    .logo-area .logo {
        text-align: center;
    }
    .header .contents .top-con {
        width: 100%;
        height: 51px;
        padding: 0 5px;
        padding-right: 150px;
        background: #f6f3ee;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 10;
    }
    .top-con2 {
        position: fixed;
        bottom: 5px;
        right: 5px;
        z-index: 11;
    }
    .nav-area .top-con2 a {
        padding: 0.5em 1em;
    }
    .top-con .address {
        display: none;
    }
    .top-con .tel a {
        justify-content: center;
    }
    .area-01 .box-area {
        width: 96%;
        max-width: 768px;
        display: flex;
        flex-wrap: wrap;
        margin-left: auto;
        margin-right: auto;
    }
    .area-01 .box {
        display: contents;
        padding: 0;
    }
    .area-01 .img01,
    .area-01 .img02 {
        width: 100%;
    }
    .area-02::before {
        height: 100%;
        top: 0%;
    }
    .slick01 .img {
        margin-top: 0;
    }
    .slick01.slick-initialized .slick-slide {
        margin-top: 50px;
    }
    .t-line::after {
        content: none;
    }
    .t-line li:first-child {
        margin-bottom: 80px;
    padding-bottom: 80px;
        border-bottom: solid 1px #000;
    }
    .t-line .list-news li{
          margin-bottom: 30px;
    padding: 0 10px 17px;
    border-bottom: solid 1px #000;
    }
    .fnav .card {
        width: 100%;
        margin-bottom: 15px;
    }
    .fnav .card.l-area {
        margin-bottom: 0;
    }
    .fnav .sns {
        width: 100%;
        display: flex;
    }
    .fnav .sns .btn {
        margin-right: 10px;
    }
    .cats-btn {
        bottom: 70px;
    }
    .cats-btn a .img {
        max-width: 40px;
        margin-bottom: 5px;
    }
    .cats-btn a {
        width: 110px;
        height: 110px;
        padding: 10px;
        color: #fff;
        outline: 5px solid var(--c-10);
        outline-offset: 0px;
        background: var(--c-01);
    }
    .cats-btn a .txt {
        font-size: 12px;
    }
}

.list-table-wrap+.list-table-wrap {
    margin-top: 50px;
}

.list-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.list-table dt {
    width: 25%;
    display: block;
    padding: 1em;
    font-weight: 400;
    color: #000;
    text-align: center;
    border-bottom: 1px solid var(--c-01);
}

.list-table dd {
    width: 70%;
    display: block;
    padding: 1em 0.5em;
    color: #000;
    border-bottom: 1px solid #ddd;
}

.list-table.ver02 dt {
    width: 40%;
    display: block;
    padding: 1em;
    font-weight: 400;
    color: #000;
    text-align: initial;
    border-bottom: 1px solid var(--c-01);
}

.list-table.ver02 dd {
    width: 55%;
    display: block;
    padding: 1em;
    color: #000;
    border-bottom: 1px solid #ddd;
}

@media(max-width:1024px) {
    .list-table.ver02 dt {
        width: 45%;
    }

    .list-table.ver02 dd {
        width: 50%;
    }
}



@media(max-width:599px) {
    .list-table dd {
        width: 60%;
    }
}

.history table {
    width: 100%;
    border: none;
    border-collapse: collapse;
}

.history td,
.history th {
    border: none;
    border-top: 1px solid #fff;
}

.history td:first-child,
.history th:first-child {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-left: none;
}

.history tr:first-child td,
.history tr:first-child th {
    border-top: none;
}

.list-table-wrap.another .list-table dt,
.list-table-wrap.another .list-table dd {
    border: 1px solid;
}

.pattern02 tr:first-child td,
.pattern02 tr:first-child th {
    border-top: 1px solid #fff;
}

.pattern02 tr:last-child td {
    border-bottom: 1px solid #fff;
}

.pattern02 tr th:first-child,
.pattern02 tr td:first-child {
    text-align: left;
}

@media (max-width: 599px) {
    .list-table dt {
        width: 35%;
    }
}

.feature-block {
    position: relative;
}

.feature-block .box {
    padding: 90px 0;
    position: relative;
    z-index: 3;
}

.feature-block .feature-bg {
    width: 100%;
    height: 100%;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.feature-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center right;
    object-position: center right;
}

.feature-block.mk2 .feature-bg {
    -o-object-position: center left;
    object-position: center left;
}

.feature-block::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, right top, left top, color-stop(0, transparent), color-stop(50%, #fff));
    background-image: linear-gradient(-90deg, transparent 0 30%, #fff 50% 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.feature-block.mk2::after {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(50%, #fff));
    background-image: linear-gradient(90deg, transparent 0 30%, #fff 50% 100%);
}


.feature-title {
    width: 400px;
    height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #005ea2;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .boss.feature-block .box {
        padding: 0 0;
    }

    .boss .feature-txt {
        width: 100%;
        margin-top: 0px;
        padding: 0px;
        background-color: transparent;
    }

    .boss.feature-block .feature-bg {
        width: 100%;
        height: calc(100% + 60px);
        opacity: 0.3;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
    }

    .boss.feature-block::after {
        width: 100%;
        height: calc(100% + 61px);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
    }
}

.m-sb-ttl .num {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
    border: 4px double #fff;
    border-radius: 50%;
    background: var(--c-01);
}

.area-ori {
    position: relative;
}

.area-ori::after {
    content: "";
    width: 80%;
    height: 30%;
    background: var(--c-02);
    position: absolute;
    top: 0%;
    left: 0;
    z-index: -1;
}

.area-ori .box {
    padding: 50px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 7px #8b8b8b;
    box-shadow: 0px 0px 7px #8b8b8b;
}


.campany-overview table {
    width: 100%;
}

.campany-overview table tr:nth-of-type(even) {
    background: #fff;
}

.campany-overview table tr:nth-of-type(odd) {
    background: var(--c-02);
}

.campany-overview table th {
    width: 18%;
    padding-left: 30px;
    font-weight: 700;
    text-align: left;
    position: relative;
}

.campany-overview table th:after {
    content: "";
    width: 30px;
    height: 2px;
    display: block;
    background-color: #333;
    position: absolute;
    top: calc(50% - 1px);
    right: 0px;
}

.campany-overview table td {
    width: 85%;
    padding: 20px 0 20px 30px;
    text-align: left;
}

@media (max-width: 1024px) {
    .campany-overview table th:after {
        width: 15px;
        right: -20px;
    }
    .m-sb-ttl .num {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 599px) {
    .area-ori .box {
        padding: 30px;
    }
    .campany-overview table td {
        padding: 20px 10px 20px 20px;
    }

    .campany-overview table th {
        width: 30%;
        padding-left: 10px;
    }

    .campany-overview table th:after {
        width: 10px;
        right: -10px;
    }
}

.up-gapy-100>*:last-child {
    padding-bottom: 0;
}

.kinds .ttl {
    font-weight: 500;
    font-size: 20px;
}

.kinds .num {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 0.5em;
    padding: 0.5em;
    font-size: 18px;
    color: #fff;
    text-align: center;
    border: 4px double #fff;
    border-radius: 100%;
    background: var(--c-01);
}

.kinds .box {
    padding: 15px;
    border: solid 2px var(--c-01);
    border-radius: 10px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 7px #8b8b8b;
    box-shadow: 0px 0px 7px #8b8b8b;
}

.title-left-deco {
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-weight: 500;
    font-size: 20px;
    border-bottom: solid 3px var(--c-05);
    position: relative;
}

.title-left-deco::before {
    content: "";
    width: 50px;
    height: 3px;
    display: block;
    background-color: var(--c-01);
    position: absolute;
    bottom: -3px;
    left: 0;
}
.title-left-deco.c50::before {
    width: 50%;
}

.br-10 {
    border-radius: 10px;
}

.s-headline {
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-weight: 500;
    font-size: 20px;
    border-bottom: solid 2px var(--c-01);
}

.s-headline2 {
    display: inline-block;
    margin-bottom: 10px;
    padding: 0.1rem 1rem;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    letter-spacing: 5px;
    white-space: nowrap;
    border-radius: 10px;
    background: var(--c-01);
}
.s-headline2:after {
    content: " ";
    margin-left: -5px;
}
.s-headline3 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    font-size: 20px;
    border-bottom: solid 2px var(--c-01);
    position: relative;
}
.s-headline3::before {
    content: "";
    width: 15px;
    height: 15px;
    background: var(--c-01);
    position: absolute;
    top: 8px;
    left: 0;
}

.s-headline4 {
    display: inline-block;
    margin-bottom: 5px;
    padding-bottom: 5px;
    font-weight: 500;
    border-bottom: solid 2px var(--c-01);
}

.check li {
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 18px;
    line-height: 2;
    position: relative;
}

.check li:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--c-01);
    position: absolute;
    top: 8px;
    left: 0;
}

.check li:after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 8px;
    left: 5px;
}

.check2-box .ttl{
  font-size: 20px;
  font-weight: bold;
  color: var(--c-01)
}

.check2 li {
    margin-bottom: 10px;
    margin-left: 1em;
    padding-left: 15px;
    font-size: 18px;
    line-height: 2;
    position: relative;
}

.check2 li:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-01);
    position: absolute;
    top: 15px;
    left: 0;
}

@media(max-width:1024px) {
    .s-headline {
        display: block;
    }
}

@media(max-width:599px) {
    .s-headline2 {
        font-size: 16px;
    }
    .s-headline3 {
        font-size: 18px;
    }
}

.line-text {
    padding-left: 12px;
}
.line-text:before {
    content: "";
    width: 3px;
    height: 1.5em;
    display: block;
    background: var(--c-01);
    position: absolute;
    top: 0;
    left: 0;
}

.dot-list {
    padding: 30px;
    background: #f2f2f2;
}

.dot-list li {
    padding-left: 22px;
    font-weight: bold;
    line-height: 2;
    position: relative;
}

.dot-list li::after {
    content: "●";
    display: inline-block;
    font-size: 20px;
    color: var(--c-01);
    line-height: 1;
    position: absolute;
    top: 7px;
    left: 0;
}

.dot-list02 {
    padding: 10px;
    background: #f2f2f2;
}

.dot-list02 li {
    padding-left: 1em;
    line-height: 2;
    position: relative;
}

.dot-list02 li::after {
    content: "●";
    display: inline-block;
    font-size: 10px;
    color: var(--c-01);
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 0;
}

.bg-img {
    width: 100%;
    height: 100%;
    background-image: url('/import/tenant_1/160.16.207.95/html/images/bg-img.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.sim {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    overflow: hidden;
}

.sim:after {
    content: "";
    height: 0;
    display: block;
    clear: both;
    visibility: hidden;
}

.sim__mainImg {
        width: 50%;
    margin-right: 5%;
    text-align: center;
    position: relative;
}

.sim__mainImg-modal {
    display: block;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    position: relative;
}

.sim__mainImg-inner {
    width: 100%;
    height: 740px;
    display: table;
    ;
}

.sim #sim__image {
    max-width: 100%;
    opacity: 1;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

.sim #sim__image.sim__image-hidden {
    opacity: 0.7;
}

.sim__detail {
    width: 45%;
}

.sim__detail .block {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: solid 1px #ccc;
}

.sim__detail-title span {
    display: inline-block;
    vertical-align: middle;
}

.sim__detail-title .result {
    margin: 5px;
    padding: 2px 8px;
    font-size: 1.4rem;
    color: #fff;
    background: var(--c-01);
}

.sim__detail-listItem,
.sim__detail-listItem-btn,
.sim__detail-listItem-btn img {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.sim__detail-listItem {
    font-weight: bold;
    color: #666;
    line-height: 1.6;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.sim__detail-listItem-btn {
    margin: 0 0 8px;
}

.sim__detail-listItem-caption-hide {
    min-width: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    position: absolute;
    top: -36px;
    left: 0;
}

.sim__detail-listItem-caption-hide span {
    display: block;
    padding: 4px 8px;
    color: white;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.5);
}

.check--stone:last-child .sim__detail-listItem-caption-hide,
.check--grade:last-child .sim__detail-listItem-caption-hide{
        right: 0;
    left: initial;
}

.sim__detail-listItem[data-stone="sweden"] .sim__detail-listItem-caption-hide {
    /*   width: 120px; */
    margin-left: -80px;
}

.sim__detail-listItem:hover,
.sim__detail-listItem.current {
    color: #004098;
}

.sim__detail-listItem:hover .sim__detail-listItem-btn,
.sim__detail-listItem.current .sim__detail-listItem-btn {
    color: #004098;
    border-color: #004098;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.sim__detail-listItem:hover .sim__detail-listItem-btn img,
.sim__detail-listItem.current .sim__detail-listItem-btn img {
    opacity: 1;
}

.sim__detail-listItem:hover .sim__detail-listItem-caption-hide {
    visibility: visible;
    opacity: 1;
    top: -40px;
}

.sim__result {
    width: 100%;
}

.sim__result p {
    padding: 10px 0;
    font-weight: bold;
    font-size: 16px;
    color: #222;
    line-height: 2em;
    background: #80a0cf;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.sim__result .result {
    font-size: 20px;
}
.sim__modalImg .mfp-content {
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.sim__modalImg .mfp-figure:after {
    display: none;
}

.sim__modalImg .mfp-bottom-bar {
    margin-top: -44px;
}

.sim__modalImg .mfp-bottom-bar .mfp-title {
    padding: 5px 0;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #3e3e3e;
    color: #80a0cf;
    text-align: center;
}

.sim__mainImg-modal:before {
    content: none;
    width: 32px;
    height: 32px;
    display: inline-block;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
    color: rgb(0, 128, 0);
    position: absolute;
    top: 24px;
    right: 32px;
}

.btn--img-content,
.btn--text-content {
    display: table-cell;
    vertical-align: middle;
}

.btn--img,
.btn--text {
    width: 100%;
    display: table;
    overflow: hidden;
    padding: 2px;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.07);
    cursor: pointer;
}

@media (max-width: 599px) {
    .up-d-con2 {
        display: contents;
    }
    .sim__detail,
    .sim__mainImg {
        width: 100%;
    }
    
    .sim__mainImg{
      margin-right: 0;
    }

    .sim__detail .block {
        width: 100%;
    }

    .sim__mainImg-inner {
        height: auto;
    }
}

.odometer-inside {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(0 0 0 / 0)), color-stop(70%, #f1eb49));
    background-image: linear-gradient(rgba(0 0 0 / 0) 70%, #f1eb49 70%);
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
}

.comparison td {
    width: 25%;
    padding: 8px;
    font-weight: bold;
    font-size: 26px;
    text-align: center;
    border: 1px solid #ddd;
}
.comparison td:nth-child(1) {
    font-weight: 500;
    font-size: 16px;
}
.comparison table tr:nth-child(1) td {
    font-size: 16px;
    color: #fff;
    background: #4a4a4a;
}
.comparison table tr:nth-child(1) td:nth-child(2) {
    color: #fff;
    background-color: #cc5151;
}
.comparison table tr td:nth-child(2) {
    color: #cc5151;
}
.comparison table tr:nth-child(1) {
    font-weight: bold;
}

@media (max-width: 599px) {
    .comparison td {
        width: auto;
    }
}

.list-cmp09 .item {
    margin-bottom: 20px;
}
.list-cmp09 .datattl {
    padding: 15px 40px 15px 80px;
    font-weight: 500;
    font-size: 20px;
    background: #fff;
    cursor: pointer;
    position: relative;
}
.list-cmp09 .datattl:before {
    content: "Q";
    width: 60px;
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 15px 1rem;
    font-weight: bold;
    font-size: 26px;
    color: #fff;
    line-height: 1;
    background: var(--c-01);
    position: absolute;
    top: 0;
    left: 0;
}
.list-cmp09 .data {
    display: none;
    margin-top: 10px;
    padding: 15px 10px 15px 80px;
    font-size: 20px;
    background: #fff;
    position: relative;
}
.list-cmp09 .data:before {
    content: "A";
    width: 60px;
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 15px 1rem;
    font-weight: bold;
    font-size: 26px;
    color: #fff;
    line-height: 1;
    background: var(--c-05);
    position: absolute;
    top: 0;
    left: 0;
}

.plmi span::before,
.plmi span::after {
    content: "";
    width: 15px;
    height: 3px;
    display: block;
    border-radius: 5px;
    background: var(--c-01);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 15px;
}

.plmi span::after {
    background: var(--c-01);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.is-parent .plmi span::after {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

@media (max-width: 599px) {
    .list-cmp09 .item {
        margin-bottom: 20px;
    }
    .list-cmp09 .datattl {
        padding-left: 25px;
        padding-right: 40px;
    }
    .list-cmp09 .datattl:after {
        width: 20px;
        height: 20px;
        font-size: 16px;
        line-height: 18px;
    }
    .list-cmp09 .data {
        padding-left: 25px;
    }
    .list-cmp09 .datattl:before,
    .list-cmp09 .data:before {
        width: 35px;
        padding: 15px 0.5rem;
        font-size: 20px;
    }
    .list-cmp09 .data,
    .list-cmp09 .datattl {
        padding-left: 40px;
        font-size: 16px;
    }
}

.gaiyou-main {
    margin-top: 40px;
}

.price-box {
    padding: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 7px #8b8b8b;
    box-shadow: 0px 0px 7px #8b8b8b;
}

.price tr {
    display: block;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #bbb;
}

.price tr th {
    width: 55%;
    font-weight: 500;
    text-align: left;
}

.price tr td {
    width: 40%;
    font-weight: bold;
    font-size: 140%;
    text-align: right;
}

.price-table {
    width: 100%;
}

@media (max-width: 599px) {
    .price tr th,
    .price tr td {
        width: 100%;
    }
    .price tr th {
        margin-bottom: 10px;
    }
    .price-box {
        padding: 15px;
    }
}

.introduction .card-b {
    position: relative;
}
.introduction .card-b-title {
    min-width: 50px;
    max-width: 270px;
    max-height: 205px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 10px 5px;
    font-size: 18px;
    color: white;
    text-align: right;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    background-image: linear-gradient(to top, #000 8%, var(--c-01) 23%);
    position: absolute;
    top: -10px;
    left: 10px;
    z-index: 1;
}

.introduction .card-b-title::before {
    content: "";
    border: none;
    border-bottom: solid 10px #004098;
    border-right: solid 10px transparent;
    position: absolute;
    top: 0;
    right: -10px;
}

.introduction .card-b-title span {
    display: inline-block;
    line-height: 1;
    position: relative;
}

.introduction .card-b-title::after {
    content: "";
    width: 100%;
    height: 30px;
    display: block;
    background: #000;
    background-size: contain;
    transform: translate(-50%, 50%);
    position: absolute;
    bottom: -10px;
    left: 50%;
    z-index: -1;

    clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 50% 65%, 0 100%);
}

.introduction .corner {
    border-bottom: 60px solid var(--c-05);
    border-left: 60px solid transparent;
    opacity: 0.5;
    position: absolute;
    bottom: 0;
    right: 0;
}

.introduction .corner-img {
    width: 15px;
    height: 15px;
    display: inline-block;
    font-size: 24px;
    color: #fff;
    position: absolute;
    bottom: 15px;
    right: 10px;
}

.introduction .corner-img i {
    display: block;
}

.introduction a {
    display: block;
    border: 1px solid var(--c-05);
    -webkit-box-shadow: 0px 0px 7px #8b8b8b;
    box-shadow: 0px 0px 7px #8b8b8b;
}

.introduction .corner-txt {
    padding: 30px;
    background: #fff;
}

.feature-cont {
    padding: 40px 20px 40px 180px;
    border: 4px solid var(--c-01);
    border-radius: 20px;
    background: #fff;
    position: relative;
}
.feature-label {
    width: 120px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    font-size: 28px;
    color: #fff;
    line-height: 1.2;
    border-radius: 50%;
    background: var(--c-01);
    position: absolute;
    top: -30px;
    left: 30px;
}

.second-boss {
    max-width: 500px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    border-radius: 200px;
}

.feature-txt {
    font-weight: 500;
    margin-top: 30px;
    line-height: 2;
    text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff;
    background-color: rgba(255, 255, 255, 0.5);
}
.area-list2 li::before {
    content: "\f058";
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    color: #b0c6e5;
}
.area-list2 li {
    padding: 20px 0;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.ohaka-btn a{
  position: relative;
}

.ohaka-btn a i{
position: absolute;
    top: 50%;
        right: 15px;
    transform: translateY(-50%);
}

.mainimg-box{
  width: 55%;
}

.thumb-box{
  width: 36%;
}

@media (max-width: 599px) {
  .mainimg-box{
  width: 100%;
}

.thumb-box{
  width: 100%;
}
    .feature-cont {
        padding: 70px 20px 40px;
    }
    .feature-label {
        width: 100px;
        height: 100px;
        font-size: 24px;
    }
}

.gaiyou {
    width: auto;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-spacing: 0;
    position: relative;
    z-index: 2;
}

.gaiyou th {
    width: 30%;
    padding: 8px 15px;
    font-weight: bold;
    color: #fff;
    line-height: 120%;
    text-align: center;
    border-top: 1px solid var(--c-03);
    border-bottom: 1px solid var(--c-03);
    border-left: 1px solid var(--c-03);
    background: var(--c-01);
}

.gaiyou th:last-child {
    border-right: 1px solid var(--c-01);
    border-radius: 0 5px 0 0;
    -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1), 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1), 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
}

.gaiyou tr td {
    padding: 8px 15px;
    text-align: center;
    border-top: 1px solid var(--c-03);
    border-bottom: 1px solid var(--c-03);
    border-left: 1px solid var(--c-03);
}

.gaiyou tr td:last-child {
    border-right: 1px solid var(--c-03);
    -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
}

.gaiyou tr {
    background: #fff;
}

.gaiyou tr:nth-child(2n+1) {
    background: #f1f6fc;
}

.gaiyou tr:last-child td {
    -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
}

.gaiyou tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}

.gaiyou tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}

.gaiyou-link a {
    width: 100%;
    display: block;
    text-decoration: underline;

    text-decoration-color: var(--c-01);
}
.introduction-detail .ttl {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 24px;
    position: relative;
}
.introduction-detail .ttl::before {
    content: "";
    width: 50%;
    height: 3px;
    display: inline-block;
    background-color: var(--c-01);
    position: absolute;
    bottom: -3px;
    right: 50%;
}
.introduction-detail .ttl::after {
    content: "";
    width: 50%;
    height: 3px;
    display: inline-block;
    background-color: var(--c-03);
    position: absolute;
    bottom: -3px;
    left: 50%;
}
@media (max-width: 599px) {
    .gaiyou tr {
        display: flex;
        flex-wrap: wrap;
    }
    .gaiyou th {
        width: 100%;
    }
    .gaiyou tr td {
        width: 100%;
    }
}

.works-box .category {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #fff;
    border-radius: 50%;
    background: var(--c-01);
    position: absolute;
    top: 0px;
    left: 0px;
}

.works-detail-area.works-box .category {
  top: -60px;
  left: -60px;
}

.works-box .card a {
    display: block;
    margin: 15px 0 0 15px;
}

.works-box .s-headline {
    font-size: 18px;
}

.border-long .s-headline{
  display: block;
}

.list-works {
    border: solid 2px var(--c-01);
    position: relative;
}

.voice-detail .title-sub {
    margin: 0 auto 10px;
    padding: 0 10px 10px;
    font-weight: bold;
    font-size: 18px;
    border-bottom: 3px solid var(--c-01);
    position: relative;
}

.uk-lb {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}
.uk-lb:hover {
    opacity: 0.6;
    cursor: pointer;
}

.lightbox-img {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.lightbox-img::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.lightbox-img:hover::before {
    background: none;
}

.lightbox-img .search-icon {
    width: 20%;
    margin: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1;
}

.contact-box .box {
    padding: 2em 3em;
    border-radius: 2em;
    background: #fff;
}

.contact-box dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}

.contact-box dt {
    width: 200px;
}

.contact-box dt .tit {
    width: 100%;
}

.contact-box dd {
    width: calc(100% - 200px);
}

.contact-box .form dt .label {
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 2px 10px;
    font-size: 12px;
    color: #fff;
    border-radius: 5px;
    background: var(--c-01);
}

.contact-box .form .form_shape li {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 20px;
}

.contact-box .form .form_shape input {
    display: none;
}

.contact-box .form .form_shape label {
    padding-left: 25px;
    line-height: 28px;
    position: relative;
    z-index: 0;
}

.contact-box .form .form_shape label:before {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    border: 2px solid;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-box .form .form_shape label:after {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    display: none;
    border-radius: 50%;
    background: var(--back-color-03);
    position: absolute;
    top: 3px;
    left: 3px;
}

.contact-box .form .form_shape input:checked+label:after {
    display: block;
}

.contact-box .form dd input,
.contact-box .form dd textarea {
    width: 100%;
    height: 100%;
    padding: 10px 10px;
    border: none;
    border: solid 1px #ccc;
    border-radius: 5px;
}

.contact-box .form .address-code dd input {
    width: 50%;
}

.contact-box .form .address {
    margin-bottom: 20px;
}

.contact-box .form .address .txt {
    display: inline-block;
    padding-left: 30px;
    position: relative;
}

.contact-box .form .address .txt input {
    width: 100px;
    position: relative;
    z-index: 0;
}

.contact-box .form dd.radiobtn {
    padding: 0.5em;
}

.contact-box .form dd.radiobtn label {
    display: inline-block;
    margin: 0.5em 0;
    padding: 0 10px 0 30px;
    position: relative;
}

.contact-box .form dd.radiobtn label::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #dcdcdc;
    border-radius: 3px;
    background-color: white;
    position: absolute;
    top: 0.2em;
    left: 0;
}

.contact-box .form dd.radiobtn label:hover {
    text-decoration: underline;
    cursor: pointer;
}

.contact-box .form dd.radiobtn input {
    display: none;
}

.contact-box .form dd.radiobtn input:checked+label {
    text-decoration: underline;
}

.contact-box .form dd.radiobtn input:checked+label::after {
    content: "\f00c";
    width: 0;
    height: 0;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: var(--txt-color-03);
    line-height: 1;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 2px;
}

.m-btn.d-fl {
    width: 45%;
    text-align: center;
}

.thought .ttl{
      display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .contact-box .box {
        padding: 2em;
    }
    .works-detail-area.works-box .category{
      top: -60px;
    left: -5px;
    }
}

@media (max-width: 599px) {
  .contact-box .form dd.radiobtn label{
    display: block;
  }
    .contact-box .box {
        padding: 2em 1em;
    }

    .contact-box dt {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
    }

    .contact-box dt .tit {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .contact-box .form dt .label {
        margin-left: 1em;
    }

    .contact-box dt,
    .contact-box dd {
        width: 100%;
    }

    .contact-box dd {
        margin-top: 0.5em;
    }

    .contact-box .form dd.radiobtn {
        padding: 0.5em 0;
    }
    
    .thought .ttl{
      font-size: 30px;
    }
    
    .thought .ttl .img{
      width: 80px;
    }
}

#img-confirm img,
#img-confirm2 img,
#img-confirm3 img{
    display: none;
}
.simmer{
  display: none;
}


[data-element-id] .simmer {
   display: block;
    position: relative;
    padding: 10px;
    border: 2px solid green;
}
[data-element-id] .simmer::before {
    content: "シミュレーション用の画像はこちらで設定してください";
    width: 100%;
    display: block;
    padding: 5px;
    font-weight: bold;
    font-size: 12px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: green;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id] .sim-img-list ul {
    margin: 50px 0;
}

[data-element-id] .sim-img-list ul li {
    width: calc(25% - 10px);
    margin: 5px;
    padding: 2em 1em 1em;
    border: 2px solid #000;
    position: relative;
}

[data-element-id] .sim-img-list ul li[id*="yougata"] {
    border: 2px solid #000;
}

[data-element-id] .sim-img-list ul li::before {
    content: "";
    content: "シミュレーション用の画像です";
    width: 100%;
    display: block;
    display: block;
    padding: 0.5em;
    font-size: 10px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

[data-element-id] .sim-img-list ul li[id*="yougata"]::before {
    background-color: #000;
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku1-sekizai1::before {
    content: "和型　石の種類1　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku1-sekizai2::before {
    content: "和型　石の種類2　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku1-sekizai3::before {
    content: "和型　石の種類3　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku1-sekizai4::before {
    content: "和型　石の種類4　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku1-sekizai5::before {
    content: "和型　石の種類5　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku2-sekizai1::before {
    content: "和型　石の種類1　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku2-sekizai2::before {
    content: "和型　石の種類2　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku2-sekizai3::before {
    content: "和型　石の種類3　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku2-sekizai4::before {
    content: "和型　石の種類4　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku2-sekizai5::before {
    content: "和型　石の種類5　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku3-sekizai1::before {
    content: "和型　石の種類1　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku3-sekizai2::before {
    content: "和型　石の種類2　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku3-sekizai3::before {
    content: "和型　石の種類3　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku3-sekizai4::before {
    content: "和型　石の種類4　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-wagata-gaisaku3-sekizai5::before {
    content: "和型　石の種類5　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku1-sekizai1::before {
    content: "洋型　石の種類1　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku1-sekizai2::before {
    content: "洋型　石の種類2　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku1-sekizai3::before {
    content: "洋型　石の種類3　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku1-sekizai4::before {
    content: "洋型　石の種類4　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku1-sekizai5::before {
    content: "洋型　石の種類5　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku2-sekizai1::before {
    content: "洋型　石の種類1　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku2-sekizai2::before {
    content: "洋型　石の種類2　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku2-sekizai3::before {
    content: "洋型　石の種類3　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku2-sekizai4::before {
    content: "洋型　石の種類4　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku2-sekizai5::before {
    content: "洋型　石の種類5　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku3-sekizai1::before {
    content: "洋型　石の種類1　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku3-sekizai2::before {
    content: "洋型　石の種類2　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku3-sekizai3::before {
    content: "洋型　石の種類3　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku3-sekizai4::before {
    content: "洋型　石の種類4　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-yougata-gaisaku3-sekizai5::before {
    content: "洋型　石の種類5　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku1-sekizai1::before {
    content: "和洋型　石の種類1　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku1-sekizai2::before {
    content: "和洋型　石の種類2　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku1-sekizai3::before {
    content: "和洋型　石の種類3　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku1-sekizai4::before {
    content: "和洋型　石の種類4　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku1-sekizai5::before {
    content: "和洋型　石の種類5　外柵1";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku2-sekizai1::before {
    content: "和洋型　石の種類1　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku2-sekizai2::before {
    content: "和洋型　石の種類2　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku2-sekizai3::before {
    content: "和洋型　石の種類3　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku2-sekizai4::before {
    content: "和洋型　石の種類4　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku2-sekizai5::before {
    content: "和洋型　石の種類5　外柵2";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku2-sekizai1::before {
    content: "和洋型　石の種類1　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku3-sekizai2::before {
    content: "和洋型　石の種類2　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku3-sekizai3::before {
    content: "和洋型　石の種類3　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku3-sekizai4::before {
    content: "和洋型　石の種類4　外柵3";
}

[data-element-id] .sim-img-list ul li#sim-wayo-gaisaku3-sekizai5::before {
    content: "和洋型　石の種類5　外柵3";
}


[data-element-id] .sim-img-list {
    display: block;
}

[data-element-id] .sim__detail-listItem-caption-hide {
    visibility: visible;
    opacity: 1;
    position: relative;
    top: -197px;
    font-size: 10px;
}
[data-element-id] .sim__detail-listItem:hover .sim__detail-listItem-caption-hide{
  top: -197px;
}

[data-element-id] .sim .grade--list {
    display: block !important;
}

.price-form-unit {
    display: none;
}

[data-element-id] .price-form-unit {
    display: block;
    position: relative;
    padding: 10px;
    border: 2px solid green;
}

[data-element-id] .price-form-unit::before {
    content: "シミュレーションの計算を行うときの単価はこちらで設定してください";
    width: 100%;
    display: block;
    padding: 5px;
    font-weight: bold;
    font-size: 12px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: green;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id] .price-form-unit .box01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 50px 0;
    padding: 70px 50px 50px;
    border: 2px solid darkred;
    position: relative;
}

[data-element-id] .price-form-unit .box01::before {
    content: "石碑の形+石材の種類";
    width: 100%;
    display: block;
    padding: 5px;
    font-weight: bold;
    font-size: 12px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: darkred;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id] .price-form-unit .box02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 50px 0;
    padding: 70px 50px 50px;
    border: 2px solid green;
    position: relative;
}

[data-element-id] .price-form-unit .box02::before {
    content: "石材の種類";
    width: 100%;
    display: block;
    padding: 5px;
    font-weight: bold;
    font-size: 12px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: darkblue;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id] .price-form-unit .box03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 50px 0;
    padding: 70px 50px 50px;
    border: 2px solid #cdbb00;
    position: relative;
}

[data-element-id] .price-form-unit .box03::before {
    content: "巻石(外柵)のイメージ";
    width: 100%;
    display: block;
    padding: 5px;
    font-weight: bold;
    font-size: 12px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: #cdbb00;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id] .unit1_1,
[data-element-id] .unit1_2,
[data-element-id] .unit1_3,
[data-element-id] .unit2_1,
[data-element-id] .unit2_2,
[data-element-id] .unit2_3,
[data-element-id] .unit2_4,
[data-element-id] .unit2_5,
[data-element-id] .unit3_1,
[data-element-id] .unit3_2,
[data-element-id] .unit3_3,
[data-element-id] .unitwagata-unitsekizai1,
[data-element-id] .unitwagata-unitsekizai2,
[data-element-id] .unitwagata-unitsekizai3,
[data-element-id] .unitwagata-unitsekizai4,
[data-element-id] .unitwagata-unitsekizai5,
[data-element-id] .unityougata-unitsekizai1,
[data-element-id] .unityougata-unitsekizai2,
[data-element-id] .unityougata-unitsekizai3,
[data-element-id] .unityougata-unitsekizai4,
[data-element-id] .unityougata-unitsekizai5,
[data-element-id] .unitwayo-unitsekizai1,
[data-element-id] .unitwayo-unitsekizai2,
[data-element-id] .unitwayo-unitsekizai3,
[data-element-id] .unitwayo-unitsekizai4,
[data-element-id] .unitwayo-unitsekizai5{
    min-width: 120px;
    display: inline-block;
    margin: 5px;
    padding-top: 35px;
    text-align: center;
    border: 2px solid #000;
    position: relative;
}

[data-element-id] .unit1_1::before,
[data-element-id] .unit1_2::before,
[data-element-id] .unit1_3::before,
[data-element-id] .unit2_1::before,
[data-element-id] .unit2_2::before,
[data-element-id] .unit2_3::before,
[data-element-id] .unit2_4::before,
[data-element-id] .unit2_5::before,
[data-element-id] .unit3_1::before,
[data-element-id] .unit3_2::before,
[data-element-id] .unit3_3::before,
[data-element-id] .unitwagata-unitsekizai1::before,
[data-element-id] .unitwagata-unitsekizai2::before,
[data-element-id] .unitwagata-unitsekizai3::before,
[data-element-id] .unitwagata-unitsekizai4::before,
[data-element-id] .unitwagata-unitsekizai5::before,
[data-element-id] .unityougata-unitsekizai1::before,
[data-element-id] .unityougata-unitsekizai2::before,
[data-element-id] .unityougata-unitsekizai3::before,
[data-element-id] .unityougata-unitsekizai4::before,
[data-element-id] .unityougata-unitsekizai5::before,
[data-element-id] .unitwayo-unitsekizai1::before,
[data-element-id] .unitwayo-unitsekizai2::before,
[data-element-id] .unitwayo-unitsekizai3::before,
[data-element-id] .unitwayo-unitsekizai4::before,
[data-element-id] .unitwayo-unitsekizai5::before{
    width: 100%;
    display: block;
    padding: 5px;
    font-weight: bold;
        font-size: 8px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id] .ads-w30 li{
width: 50%;  
}

[data-element-id] .unit1_1::before {
    content: "和型";
}
[data-element-id] .unit1_2::before {
    content: "洋型";
}
[data-element-id] .unit1_3::before {
    content: "和洋型";
}
[data-element-id] .unit2_1::before {
    content: "G688(青御影石)";
}
[data-element-id] .unit2_2::before {
    content: "G654";
}
[data-element-id] .unit2_3::before {
    content: "アーバングレー";
}
[data-element-id] .unit2_4::before {
    content: "M-10";
}
[data-element-id] .unit2_5::before {
    content: "ニューインペリアル";
}
[data-element-id] .unit3_1::before {
    content: "G688(青御影石)";
}
[data-element-id] .unit3_2::before {
    content: "アーバングレー";
}
[data-element-id] .unit3_3::before {
    content: "M-10";
}

[data-element-id] .unitwagata-unitsekizai1::before{     
  content: "和型+G688(青御影石)"; 
}
[data-element-id] .unitwagata-unitsekizai2::before{     
  content: "和型+G654";
  }
[data-element-id] .unitwagata-unitsekizai3::before{     
  content: "和型+アーバングレー";
  }
[data-element-id] .unitwagata-unitsekizai4::before{     
  content: "和型+M-10";
  }
[data-element-id] .unitwagata-unitsekizai5::before{     
  content: "和型+ニューインペリアル";
  }
[data-element-id] .unityougata-unitsekizai1::before{     
  content: "洋型+G688(青御影石)";
  }
[data-element-id] .unityougata-unitsekizai2::before{     
  content: "洋型+G654";
  }
[data-element-id] .unityougata-unitsekizai3::before{     
  content: "洋型+アーバングレー";
  }
[data-element-id] .unityougata-unitsekizai4::before{     
  content: "洋型+M-10";
  }
[data-element-id] .unityougata-unitsekizai5::before{     
  content: "洋型+ニューインペリアル";
  }
[data-element-id] .unitwayo-unitsekizai1::before{     
  content: "和洋型+G688(青御影石)";
  }
[data-element-id] .unitwayo-unitsekizai2::before{     
  content: "和洋型+G654";
  }
[data-element-id] .unitwayo-unitsekizai3::before{     
  content: "和洋型+アーバングレー";
  }
[data-element-id] .unitwayo-unitsekizai4::before{     
  content: "和洋型+M-10";
  }
[data-element-id] .unitwayo-unitsekizai5::before{     
  content: "和洋型+ニューインペリアル";
  }

[data-element-id] .up-d-none {
    display: block;
    border: solid 4px black;
    position: relative;
}
[data-element-id] .up-d-none:after {
    content: "モバイル用";
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: black;
}

[data-element-id] .topvisual .head .up-d-none:after {
  text-shadow:none;
}

[data-element-id].fead-order>* {
    opacity: 1;
    -webkit-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

[data-element-id] .gnav{
  z-index: 9;
}

[data-element-id] .gnav .list01{
  align-items: flex-start;
}

[data-element-id] .gnav .list02 {
    visibility: visible;
    padding: 0;
    border: solid 2px #f48100;
    opacity: 1;
    position: relative;
    top: 0;
}

[data-element-id] .gnav .list02:after {
    content: "サービス一覧";
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 black;
    background: #f48100;
}

[data-element-id] .attached-altlist {
    display: block;
    border: solid 4px #009fff;
    position: relative;
}

[data-element-id] .attached-altlist:after {
    content: "altlistとalt有！";
    width: 100%;
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: #009fff;
}

[data-element-id] .not-altlist.not-alt {
    display: block;
    border: solid 4px #f00;
    position: relative;
}

[data-element-id] .not-altlist.not-alt:after {
    content: "altlistとalt無し！";
    width: 100%;
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: #f00;
}

[data-element-id] .not-altlist {
    display: block;
    border: solid 4px #ffed00;
    position: relative;
}

[data-element-id] .not-altlist:after {
    content: "altlist無し！";
    width: 100%;
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #000;
    text-align: center;
    background: #ffed00;
}

[data-element-id] .not-alt {
    display: block;
    border: solid 4px #b600ff;
    position: relative;
}

[data-element-id] .not-alt:after {
    content: "altlist有、alt無し！";
    width: 100%;
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: #b600ff;
}

[data-ab-test-block] [data-ab-test-contents]+[data-ab-test-contents] {
    display: none;
}

[data-element-id] [data-ab-test-conversion-button]:before {
    content: "コンバージョン用";
    display: block;
    padding: 0.1em 0.5em;
    font-weight: 700;
    font-size: 8px;
    color: #fff;
    text-align: center;
    background: #0093ff;
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
}

[data-element-id] [data-ab-test-contents] {
    width: 100%;
    padding-bottom: 20px;
    border: 3px solid #2ca09a;
    position: relative;
}

[data-element-id] [data-ab-test-contents] li {
    padding-top: 20px;
}

[data-element-id] [data-ab-test-contents]::before {
    content: "Aパターン";
    width: 100%;
    display: block;
    padding: 0.5em 0.2em;
    font-size: 10px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: #2ca09a;
    position: absolute;
    bottom: 0;
    left: 0;
}

[data-element-id] [data-ab-test-contents]+[data-ab-test-contents] {
    border: 3px solid #24ac50;
}

[data-element-id] [data-ab-test-contents]+[data-ab-test-contents]::before {
    content: "Bパターン";
    background-color: #24ac50;
    z-index: 1;
}

[data-element-id] .h1-box {
    display: block;
    margin-bottom: 50px;
    border: solid 4px #00ff50;
    position: relative;
}
[data-element-id] .h1-box:after {
    content: "h1の変更はこちらでお願いいたします。";
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: #00ff50;
}

[data-element-id] .up-sp-txt {
    max-width: 375px;
    width: 100%;
    margin: auto;
}

[data-element-id] .homevisual .head .up-sp-txt {
  font-size: 40px;
  border: solid 4px white;
}

[data-element-id] .homevisual .head .up-sp-txt:after{
  background: #fff;
  color: #000;
  text-shadow: none;
}

[data-element-id] .topvisual .head .up-sp-txt{
      font-size: 24px;
}

[data-element-id] .up-sp-txt .m-ttl {
    font-size: 26px;
}

[data-element-id] .up-sp-txt .m-sb-ttl {
    margin-bottom: 15px;
    font-size: 18px;
}

[data-element-id] .top-movie{
width: 100%;
    height: 100%;
    margin: 60px auto 0;
}

[data-element-id] .cats-btn{
      position: absolute;
    top: 50%;
}

[data-element-id] .cats-btn .up-d-none a{
  background: var(--c-01);
      width: 110px;
    height: 110px;
    padding: 10px;
    color: #fff;
    outline: 5px solid var(--c-10);
    outline-offset: 0px;
    margin: auto;
}

[data-element-id] .cats-btn .up-d-none a .img{
    max-width: 40px;
    margin-bottom: 5px;  
}

[data-element-id] .cats-btn .up-d-none a .txt {
    font-size: 12px;
}

[data-element-id] .list-cmp09 .data{
  display: block;
}

[data-element-id] .slick01{
      display: flex;
      width: 1000px;
    max-width: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 1.5em 3em;
    border: 2px solid orange;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    position: relative;
}
[data-element-id] .slick01:after{
     content: "横にスクロールできます";
    width: 100%;
    display: block;
    padding: 0.5em;
    font-size: 14px;
    color: white;
    line-height: 1.2;
    text-align: center;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    background-color: orange;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
}

[data-element-id] .slick01 li{
      width: 80%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 10px;
    border: 1px solid orange;
}

[data-element-id] .list-blog .date{
  flex-shrink: 1;
}

.shikaku-box {
    margin: 130px auto 20px;
    display: flex;
    position: relative;
}

.shikaku01{
  display: flex;
  justify-content: space-between;
  width: 70%;
    float: right;
}

.shikaku01 div{
 width: 45%;
    text-align: center;
    display: block;
    border: 1px solid #426b95;
    padding: 19px 15px;
    background: #426b95;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
}

.shikaku-box::before {
    content: "";
    width: 80%;
    height: 110%;
    background: var(--c-02);
    position: absolute;
    top: -10%;
    left: 20%;
    right: 0;
    z-index: -1;
}

.shikaku-p{
  font-size: 20px;
    margin-bottom: 5px;
    font-weight: bold;
}

@media (max-width: 1024px) {
  .shikaku01 {
    width: 90%;
    float: right;
}

.shikaku01 div {
    padding: 19px 0px;
}
}

@media (max-width: 599px) {
  .shikaku01 {
    width: 100%;
        margin: auto;
        float: none;
    }
    
.shikaku-p {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

.shikaku01 div {
        width: 49%;
        text-align: center;
        display: block;
        border: 1px solid #426b95;
        padding: 15px 5px;
        background: #426b95;
        color: #fff;
        font-size: 14px;
        border-radius: 10px;
    }

.shikaku-div02{
  margin-top: 8px !important;
}
}


.daiko01, .daiko02{
  width: 80%;
    margin: 2rem auto 0;
}

.daiko01{
 margin-bottom: 6rem;
}

.daiko01 img, .daiko02 img{
  width: 100%;
}

.to-c{
  display: flex;
  justify-content: space-between;
}

.to-c-img{
  width: 52%;
}

.to-c .kinds{
  width: 46%;
}

.to-c-p{
  margin-top: 2rem;
  line-height: 2;
}

.to-c .kinds .up-lh-2{
  text-align: center;
    font-size: 18px;
}

.x-page{
  color: #1c2eba;
}

.daiko-toha{
  width: 80%;
  margin: auto;
}

.x-note-box {
    width: 80%;
    display: flex;
    margin: 4rem auto 0;
    justify-content: space-between;
}

.prace-flex{
  display: flex;
  justify-content: space-between;
}

.agency-prace{
  width: 60%;
}

.option-prace{
  width: 38%;
}


.pra-p01{
  font-weight: bold;
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
}

.pra-p01 span{
color: #0d13c0;
    font-size: 16px;
}

.pra-p02{
padding: 0 87px;
}

.pra-p0202{
padding: 0px 20px;
}

.x-img{
  width: 50%;
}

.note-img{
  width: 40%;
  display: flex;
    align-items: center;
    margin: auto;
}

.con-atag{
  color: #0c47bc;
    font-weight: bold;
}

.up-lh-2 span{
  font-size: 18px;
}

@media (max-width: 1024px) {
  .daiko-toha {
    width: 96%;
    margin: auto;
}

.daiko01, .daiko02 {
    width: 96%;
}

.pra-p02 {
    padding: 0 0px;
}

.pra-p0202 {
    padding: 0px 0px;
}
}

@media (max-width: 599px) {
  prace-flex {
    display: block;
  }

.agency-prace {
    width: 96%;
    margin: auto;
    padding: 20px;
}

.pra-p01 {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: left;
}

.pra-p01 span {
    font-size: 12px;
}

.option-prace {
    width: 96%;
    margin: 2rem auto 0;
    padding: 20px;
}

.to-c, .prace-flex{
    display: block;
}

.to-c .kinds {
    width: 90%;
    margin: auto;
}

.to-c-img {
    width: 90%;
    margin: 1rem auto 0;
}

.to-c-p {
    margin: 2rem auto;
    width: 90%;
    line-height: 2;
}

.x-note-box {
    width: 90%;
    display: flex;
    margin: 2rem auto 0;
}

.sp-none{
  display: none;
}
}
