@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*===================================
  基本設定
===================================*/
:root {
    --c-00: #f1f1f1;
    --c-01: #44a629;
    --c-02: #e96300;
    --c-03: #f3e9dd;
    --c-04: #cee8bb;
    --c-05: #ebf7e1;
}
.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);
}
.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);
}

.c-w {
    color: #fff;
}

.bgc-w {
    background: #fff;
}

.bgc-03 > div,
.bgc-w > div{
  z-index: 1;
      position: relative;
}

html {
    font-family: "Noto Sans JP", sans-serif;
    color: #3e3a39;
    background: var(--c-00);
}

/* 共通コンテンツ間隔 */
.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
===================================*/
/*===================================
  共通要素
===================================*/
/*h1ページタイトル */
.pagettl {
    padding-right: 15px;
    font-size: 12px;
}
/**
ヘッダー
header
*/
.header {
    padding: 10px 0;
}
.header .contents {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.logo {
    max-width: 250px;
    display: inline-block;
}
.header .logo a {
    display: block;
}
.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;
}

.h1-area {
    display: flex;
}

.h1-area .address{
  width: 260px;
  text-align: center;
}
@media (max-width: 1024px) {
    .header {
        padding: 5px 0;
    }
    .header .logo img {
        max-height: 70px;
    }
    .header .right {
        display: none;
    }
    .h1-area {
        flex-wrap: wrap;
        padding-right: 60px;
    }
    .pagettl {
        padding-right: 0;
    }
    .h1-area .address{
      width: auto;
    }
}

@media (max-width: 599px) {
  .header .logo{
        margin-left: 10px;
  }
}
/* 下部固定コンテンツ */
.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: 0 50px;
    font-weight: bold;
    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;
}

.header.fixed.fixed-no{
  z-index:initial;
   position: relative;
}
.gnav .wrap {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}
.navlogo{
  max-width: 180px;
}
.navlogo a{
  display: block;
}
.gnav .list01 {
    width: 100%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.gnav .item01 {
    font-size: 16px;
    text-align: center;
}
.gnav .item01>a,
.gnav .item01 .itemin {
    display: block;
    padding: 5px;
    cursor: pointer;
}
.gnav .item01.-parent {
    position: relative;
}
.gnav .item01.-parent:hover .list02 {
    visibility: visible;
    opacity: 1;
}
.gnav .list02 {
    width: 200px;
    visibility: hidden;
    padding-top: 10px;
    background: rgba(255,255,255,0.8) content-box;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -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;
}

.gnav .en {
    font-size: 80%;
    color: var(--c-01);
}
@media (max-width: 1024px) {
    .gnav {
        width: 100%;
        max-width: 300px;
        height: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        margin: auto;
        padding: 50px 15px;
        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 {
        padding-bottom: 100px;
    }
    .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;
    }
    .gnav .list02 a {
        padding: 2px 0 2px 20px;
        position: relative;
    }
    .gnav .list02 a:before {
        content: "";
        width: 10px;
        height: 1px;
        display: block;
        background: #000;
        position: absolute;
        top: 13px;
        left: 0;
    }
    .c-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 1px;
        left: 0;
        z-index: 10;
    }
    .c-btn .btn {
        width: 100%;
    }
     .c-btn>div{
          width: 100%;
          padding: 0 1px;
     }
    .c-btn .btn.ab{
      width: 100%;
    }
    .gnav .item02 a:hover {
        color: #3e3a39;
        background: none;
        opacity: 0.6;
    }
    .gnav .en {
        display: none;
    }
}
[data-element-id] .gnav.fixed {
    position: relative;
}
/* ハンバーガーメニュー  */
.toggle {
    width: 65px;
    height: 65px;
    display: none;
    background: var(--c-01);
    opacity: 0.8;
    cursor: pointer;
    position: fixed !important;
    top: 0px;
    right: 0px;
    z-index: 251;
}
.toggle .bar {
    width: 45px;
    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: 10px;
}
.toggle .bar:before,
.toggle .bar:after {
    content: "";
    width: 45px;
    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 {
    overflow: hidden;
}

.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-02);
    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: 50px;
        right: 10px;
    }
}
@media (max-width: 599px) {
  .totop{
        bottom: 65px;
  }
}
/**
フッター
footer
*/
.footer .copy {
    padding: 50px 0 0;
    color: #fff;
    text-align: center;
}
@media (max-width: 1024px) {
    .footer .copy {
        padding-bottom: 50px;
    }
}
/**
フッターナビ
fnav
*/
.fnav {
    padding: 50px 0;
    background: var(--c-01);
}

.fnav .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #fff;
}

.fnav .wrap .box {
    width: 48%;
    margin-bottom: 30px;
}

.fnav .wrap .ttl {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
}

.fnav .wrap ul {
    padding-left: 1rem;
}

.fnav .wrap .list01 li+li {
    margin-top: 8px;
}

.fnav .wrap ul .btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3px 20px;
    border: solid 1px;
    border-radius: 9999px;
    position: relative;
}

.fnav .wrap ul .btn a .icon {
 /*    transform: translateY(-50%);
 position: absolute;
 top: 50%;
 right: 20px; */
     margin-left: 10px;
}

.company {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
}

.company .logo {
     margin-bottom: 10px;
    max-width: 180px;
}

.company .logo a{
  display: block;
}

.company .map {
    padding-top: 60%;
}

@media (max-width: 1024px) {
    .fnav .wrap {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .fnav .wrap .box {
        width: 25%;
        margin: 0px;
    }
}

/**
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 {
    position: relative;
}
.homevisual .img {
    min-height: 300px;
    max-height: 700px;
    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;
}
/*IE対策*/
.homevisual .head {
    font-weight: bold;
    font-size: 40px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute !important;
    top: 50%;
    left: 50%;
}
@media (max-width: 599px) {
    .homevisual .head {
        font-size: 28px;
    }
}
/* A-BiSUスライダー */
.main-visual {
    position: relative;
}

.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: 60%;
}

.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;

    -webkit-mask-image: url('/import/tenant_2/162.43.28.120/html/images/hc_6.webp');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url('/import/tenant_2/162.43.28.120/html/images/hc_6.webp');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
}

.main-visual .head {
    position: absolute;
    top: 15%;
    left: 0%;
    color: var(--c-01);
    font-weight: bold;
    font-size: 48px;
    text-shadow: 0 0 4px white;
}

.main-visual .head02 {
    position: absolute;
    bottom: -10%;
    right: 0%;
}

.main-visual .head02 a{
  display: block;
}

.main-visual .head02 img{
  max-width: 500px;
}

.main-visual .head02 .text-box {
    width: max-content;
    color: #fff;
    transform: translate(-50%, -50%);
    position: absolute;
  top: 51%;
    left: 57%;
}

.main-visual .head02 .text-box .add,
.main-visual .head02 .text-box .line {
    display: flex;
}

.main-visual .head02 .text-box .line {
    font-weight: bold;
    font-size: 20px;
}
.main-visual .head02 .text-box .add {
    margin-bottom: 10px;
}

.main-visual .head02 .text-box .add .icon,
.main-visual .head02 .text-box .line .icon {
    width: 20px;
    margin-right: 10px;
    text-align: center;
}

.main-visual .head02 .text-box .ttl {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    position: relative;
}

/* .main-visual .head02 .text-box .ttl::after {
    content: "";
    width: 50%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
} */

.main-visual .head02 .text-box .btn{
  width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 30px auto 0;
    color: #fff;
    border: solid 1px #fff;
    border-radius: 50%;
    position: relative;
}

.main-visual .head02 .text-box .btn::after {
    content: "";
    width: 200%;
    height: 110%;
    background: #fff;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
}

.main-visual .head02 a:hover .btn::after {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.main-visual .head02 a:hover .text-box .btn{
  color: var(--c-01);
}

.main-visual .head02 a:hover{
  opacity: 1;
}

.main-visual .head02 .text-box .btn i{
z-index: 1;  
}

.main-visual .head02 .text-box .item{
  text-align: center;
  position: relative;
}

.main-visual .head02 .text-box .item:after{
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%)
}

.main-visual .head02 .text-box .item img{
max-width: 50px;
    z-index: 1;
    position: relative;
}

/*IE対策*/
/* スリックスライダー（トップ） */

.slick01{
      display: flex;
    justify-content: center;
        flex-wrap: wrap;
}

.slick01 .item{
  width: 30%;
}

.slick01.slick-slider{
      display: block;
}

.slick01.slick-dotted {
    margin-bottom: 50px;
}
.slick01 .btn-slick {
    font-size: 30px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    z-index: 1;
}
.slick01 .btn-slick.btn-back {
    left: 0;
}
.slick01 .btn-slick.btn-next {
    right: 0;
}
.slick01 .slick-dots {
    bottom: -40px;
    left: 0;
}
@media (max-width: 599px) {
    .slick01 .btn-slick {
        font-size: 20px;
    }
    .main-visual .head02 img {
    max-width: 400px;
}
.main-visual .head02 .text-box{
left: 60px;
        top: 70px;
        transform: none;
}
.slick01 .item{
  width: 100%;
}
}
/**
下層共通
*/
/* トップビジュアル（下層共通） */
.topvisual {
    position: relative;
}
.topvisual .img {
    width: 90%;
    min-height: 300px;
    margin: auto;
    border-radius: 15px;
    position: relative;
}
.topvisual img {
    border-radius: 15px;
}
.topvisual .img:before {
    content: "";
    display: block;
    padding-top: 30%;
    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%;";
    filter: brightness(0.8);
    position: absolute;
    top: 0;
    left: 0;
}
.topvisual .head {
    width: 96%;
    max-width: 1000px;
    font-weight: bold;
    font-size: 44px;
    color: var(--c-01);
    text-align: center;
    text-shadow: 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute !important;
    top: 50%;
    left: 50%;
}
@media (max-width: 599px) {
    .topvisual .head {
        width: 96%;
        font-size: 30px;
    }
}
/* パンくずリスト */
.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 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        align-items: flex-start;
        -ms-flex-align: 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: -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;
}
.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: -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;
    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;
    }
}
/**
各下層ページ
*/
/* 記事詳細ページ */
.articledtl01 .cate span {
    display: inline-block;
    margin: 0 5px 2px 0px;
    padding: 0 5px;
    color: #fff;
    background: #000;
}
.articledtl01 .cate .cate1 {
    background: #00f;
}
/* ギャラリー */
.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;
}

.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;
}
[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;
    z-index: 1;
    position: relative;
    text-shadow: none;
}

[data-element-id] .link-none-js {
    display: block !important;
    border: solid 4px black;
    position: relative;
}
[data-element-id] .link-none-js:after {
    content: "リンクが空の場合は非表示になります。";
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: black;
    z-index: 1;
    position: relative;
    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 .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] .gnav .list02.new:after{
 content: "初めての方へ";
}

.detail-content-text iframe[src*="youtube"] {
    height: 100%;
    margin-top: 30px;

    aspect-ratio: 16 / 9;
}

.header .btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px 15px;
    font-weight: bold;
    border: solid 1px;
    border-radius: 9999px;
    background: #fff;
    position: relative;
}

.header .btn.item02 {
    margin-left: 10px;
}

.header .btn.item01 a {
    color: var(--c-02);
}

.header .btn.item02 a {
    color: #fff;
    border: solid 1px var(--c-02);
    background: var(--c-02);
}

.header .btn.item03 a {
    color: var(--c-05);
    border: solid 1px var(--c-02);
    background: var(--c-02);
}

.header .btn.item04 a {
    color: #fff;
    border: solid 1px #0091e9;
    background: #0091e9;
}

.header .btn a {
    opacity: 1;
}

.header .btn a:after {
    content: "";
    width: 200%;
    height: 110%;
    background: var(--c-02);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    position: absolute;
    top: 0;
    left: -2px;
}

.header .btn.item02 a:after {
    background: #fff;
}

.header .btn.item03 a:after {
    background: var(--c-00);
}

.header .btn.item04 a:after {
    background: var(--c-00);
}

.header .btn a:hover:after {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.header .btn a span {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    position: relative;
    z-index: 1;
}

.header .btn a:hover span {
    color: #fff;
}

.header .btn.item02 a:hover span {
    color: var(--c-02);
}

.header .btn.item03 a:hover span {
    color: var(--c-02);
}

.header .btn.item04 a:hover span {
    color: #0091e9;
}

.header .c-btn{
  display: flex;
      justify-content: flex-end;
}

@media (max-width: 1024px) {
    .header .btn a {
        border-radius: 10px;
    }
    .header .btn.item02 {
        margin-left: 0;
    }

    .nav-btn {
        width: 100%;
    }
    .header .nav-btn .btn.item01 {
        margin-bottom: 10px;
    }
}

@media (max-width: 599px) {
    .header .btn a {
        padding: 20px 3px;
        font-size: 12px;
    }
    .header .nav-btn .btn a {
        font-size: 16px;
    }
}
.m-ttl {
    color: var(--c-01);
    text-align: center;
    position: relative;
    z-index: 1;
}

.m-ttl .ja {
    font-weight: bold;
    font-size: 40px;
}

.m-ttl .en {
    font-size: 20px;
    letter-spacing: 3px;
    position: relative;
}

.m-ttl .en::after {
    content: "";
    width: 70px;
    height: 60px;
    border-radius: 48% 52% 41% 59% / 35% 43% 56% 65% ;
    background: var(--c-04);
    transform: translate(-50%,-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}

.m-ttl .en.bw::after {
    background: #fff;
}

.t-card .box {
    padding: 50px 30px;
    border-radius: 61% 43% 55% 45% / 49% 64% 36% 51% ;
    background: #fff;
    position: relative;
}

.t-card a{
  display: block;
  opacity: 1;
}

.t-card .num {
    font-weight: bold;
    font-size: 54px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    -webkit-text-stroke: 1px var(--c-01);
    -webkit-text-fill-color: transparent;
}

.t-card .img {
    max-width: 50px;
    margin: auto;
    margin-bottom: 20px;
}

.t-card .img img {
    object-fit: contain;
}

.t-card .ttl {
    font-size: 18px;
    text-align: center;
}

.t-card .btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 30px auto 0;
    color: var(--c-01);
    border: solid 1px var(--c-01);
    border-radius: 50%;
    position: relative;
}

.t-card .btn i {
    z-index: 1;
}

.t-card a:hover .btn {
    color: #fff;
}

.t-card .btn::after {
    content: "";
    width: 200%;
    height: 110%;
    background: var(--c-01);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
}

.t-card a:hover .btn::after {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.cap-area .item {
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 15px;
    background: #fff;
    -webkit-box-shadow: 0 0 5px 0 #999;
    box-shadow: 0 0 5px 0 #999;
}

/* .cap-area .img img{
object-fit: contain;  
} */

.cap-area .btn {
    max-width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 30px auto 0;
    padding: 5px;
    font-weight: bold;
    color: var(--c-01);
    border: solid 1px var(--c-01);
    border-radius: 9999px;
    background: var(--c-05);
    position: relative;
    z-index: 1;
}

.cap-area .btn::after {
    content: "";
    width: 200%;
    height: 110%;
    background: var(--c-01);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.cap-area a:hover .btn {
    color: #fff;
}

.cap-area a:hover .btn::after {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.cap-area .text-box {
    padding: 15px;
    text-align: center;
}

.cap-area .btn .icon {
 /*    transform: translateY(-50%);
 position: absolute;
 top: 50%;
 right: 10px; */
     margin-left: 10px;
}

.slick-dots li button:before {
    font-size: 15px;
    color: var(--c-01);
}

.slick-dots li.slick-active button:before {
    color: var(--c-01);
}

.nami-img,
.nami-img02,
.nami-img03 {
    position: relative;
}

.nami-img {
    margin: 50px 0 0;
    padding-bottom: 50px;
}

.nami-img02 {
    margin-bottom: 50px;
}

.nami-img::before {
    content: "";
    width: 100%;
    height: 75px;
    display: block;
    background-image: url('/import/tenant_2/162.43.28.120/html/images/hc_5.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: -74px;
    left: 0;
}

.nami-img::after {
    content: "";
    width: 100%;
    height: 76px;
    display: block;
    background-image: url('/import/tenant_2/162.43.28.120/html/images/hc_4.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    bottom: -76px;
    left: 0;
    z-index: 1;
}

.nami-img02::after {
    content: "";
    width: 100%;
    height: 95px;
    display: block;
    background-image: url('/import/tenant_2/162.43.28.120/html/images/hc_2.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    bottom: -94px;
    left: 0;
}

.nami-img03::before {
    content: "";
    width: 100%;
    height: 75px;
    display: block;
    background-image: url('/import/tenant_2/162.43.28.120/html/images/hc_3.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: -74px;
    left: 0;
}

.m-btn a,
.m-btn button {
    max-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 10px auto 0;
    padding: 5px;
    font-weight: bold;
    color: var(--c-01);
    border: solid 1px var(--c-01);
    border-radius: 9999px;
    background: var(--c-05);
    position: relative;
    z-index: 1;
}

.m-btn.back button {
    color: #fff;
    border: solid 1px var(--c-02);
    background: var(--c-02);
}

.m-btn.ri a {
    margin-bottom: 30px;
    margin-right: 0px;
}


.m-btn a::after,
.m-btn button::after {
    content: "";
    width: 200%;
    height: 110%;
    background: var(--c-01);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.m-btn.back button:after {
    background: var(--c-00);
}

.m-btn a:hover,
.m-btn button:hover {
    color: #fff;
    opacity: 1;
}

.m-btn.back button:hover {
    color: var(--c-02);
}

.m-btn a:hover::after,
.m-btn button:hover::after {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.m-btn a .icon,
.m-btn button .icon {
      margin-left: 10px;
/*     transform: translateY(-50%);
position: absolute;
top: 50%;
right: 10px; */
}

.m-btn.back a .icon,
.m-btn.back button .icon {
    left: 10px;
    right: initial;
}

.m-btn a .text,
.m-btn button .text {
    z-index: 1;
}

.f-text {
    margin-bottom: 30px;
    font-size: 20px;
    color: var(--c-02);
    letter-spacing: 3px;
    text-align: center;
}

.f-text .text {
    padding: 0px 30px;
    position: relative;
}

.f-text .text::before,
.f-text .text::after {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--c-02);
    transform: translateY(-50%) rotate(60deg);
    position: absolute;
    top: 50%;
    left: 0;
}

.f-text .text::after {
    transform: translateY(-50%) rotate(-60deg);
    left: initial;
    right: 0;
}

.menu-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 100px;
}

.menu-area a{
  display: block;
}

.menu-area li:nth-child(1) .ttl-area .img {
    max-width: 71px;
}
.menu-area li:nth-child(2) .ttl-area .img {
    max-width: 119px;
}
.menu-area li:nth-child(3) .ttl-area .img {
    max-width: 80px;
}

.menu-area .ttl-area .img img {
    object-fit: contain;
}

.menu-area .ttl-area .img {
    margin-right: 10px;
}

.menu-area li:nth-child(1) {
    margin-bottom: 100px;
}

.menu-area li:nth-child(even) {
    margin-top: 100px;
    margin-left: auto;
}

.menu-area .ttl-area {
    display: flex;
    align-items: center;
    position: relative;
}

.menu-area .ttl-area .ttl {
    font-weight: bold;
    font-size: 24px;
    color: var(--c-02);
}

.menu-area .ttl-area::after {
    content: "";
    width: 233px;
    height: 195px;
    border-radius: 48% 52% 41% 59% / 35% 43% 56% 65%;
    background: var(--c-03);
    position: absolute;
    top: -10%;
    left: 0;
    z-index: -1;
}

.menu-area .m-img {
    width: 85%;
    margin-top: -20px;
    margin-bottom: 30px;
    margin-left: auto;
}

.menu-area .m-img img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;

    -webkit-mask-image: url('/import/tenant_2/162.43.28.120/html/images/hc_1.webp');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url('/import/tenant_2/162.43.28.120/html/images/hc_1.webp');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
}

.menu-area .text-area {
    width: 85%;
    margin-left: auto;
    padding-right: 80px;
    position: relative;
}

.menu-area .text-area .ar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--c-01);
    border: solid 1px var(--c-01);
    border-radius: 50%;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 0;
}

.menu-area .text-area .ar::after {
    content: "";
    width: 200%;
    height: 110%;
    background: var(--c-01);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
}

.menu-area a:hover .text-area .ar::after {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.menu-area .ar i {
    z-index: 1;
}

.menu-area a:hover .ar {
    color: #fff;
}

.skyw {
    transform: skewY(15deg);
}
.skyw ul li {
    transform: skewY(-15deg);
}

.bnr-area .ttl {
    font-weight: bold;
    font-size: 24px;
    color: var(--c-02);
    text-align: center;
}

.bnr-area .btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--c-02);
    border: solid 1px var(--c-02);
    border-radius: 50%;
    position: relative;
    margin-left: 30px;
}

.bnr-area li:nth-child(2) .btn {
    color: var(--c-01);
    border: solid 1px var(--c-01);
}

.bnr-area li:nth-child(2) .btn::after {
    background: var(--c-01);
}

.bnr-area .btn i {
    z-index: 1;
}

.bnr-area a:hover .btn {
    color: #fff;
}

.bnr-area .btn::after {
    content: "";
    width: 200%;
    height: 110%;
    background: var(--c-02);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
}

.bnr-area a:hover .btn::after {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.bnr-area .box {
    padding: 30px;
    border-radius: 15px;
    background: var(--c-03);
}
.bnr-area .f-text {
    margin-bottom: 10px;
    font-weight: bold;
}

.bnr-area li:nth-child(2) .box {
    background: var(--c-05);
}

.bnr-area li:nth-child(2) .ttl,
.bnr-area li:nth-child(2) .f-text {
    color: var(--c-01);
}

.bnr-area li:nth-child(2) .f-text .text::before,
.bnr-area li:nth-child(2) .f-text .text::after {
    background: var(--c-01);
}

.cap-area.new .item a {
    padding: 30px;
}

.cap-area.new .item .up-col-2{
  margin: auto;
}

.cap-area.new .text-box {
    margin-top: 10px;
}

.cap-area.new .ttl {
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
    color: var(--c-01);
    text-align: center;
    border-bottom: 3px dotted var(--c-01);
}

.cap-area.new .img {
    position: relative;
}

.cap-area.new .img .text {
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.cap-area.new .img .text::after {
    content: "";
    width: 70px;
    height: 60px;
    border-radius: 38% 62% 44% 56% / 57% 52% 48% 43% ;
    background: #3f3939;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}

.cap-area.new .img.new .text::after {
    background: var(--c-02);
}

.js-split-tag span {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 3px 5px;
    font-size: 14px;
    color: white;
    background-color: var(--c-02);
}

.column-area .box {
    height: 100%;
    display: flex;
    overflow: hidden;
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    position: relative;
}

.column-area.det-sp a{
  display: block;
}

.column-area.det-sp li{
  width: 100%;
}

.column-area li+li {
    margin-top: 30px;
}

.column-area .box .img-area {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 30px;
    padding-right: 30px;
    border-right: 3px dotted var(--c-01);
}

.column-area .box .img-area .img {
    width: 48%;
    overflow: hidden;
    margin-right: 10px;
    border-radius: 50%;
}

.column-area .box .img-area .data {
    flex-shrink: 0;
    font-weight: bold;
}

.column-area .box .ttl {
    margin-top: 15px;
    font-weight: bold;
    font-size: 20px;
}

.column-area .box .text-area {
    width: 70%;
    padding-right: 60px;
}

.column-area .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--c-01);
    border: solid 1px var(--c-01);
    border-radius: 50%;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 30px;
}

.column-area .icon::after {
    content: "";
    width: 200%;
    height: 110%;
    background: var(--c-01);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
}

.column-area a:hover .icon::after {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.column-area .icon i {
    z-index: 1;
}

.column-area a:hover .icon {
    color: #fff;
}


.text-02 {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: inherit;

    -webkit-line-clamp: 2;
}

.news-area {
    overflow: hidden;
    padding: 30px;
    border-radius: 15px;
    background: #fff;
}

.news-area li+li {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 3px dotted var(--c-01);
}

.news-area .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
        position: relative;
}

.news-area .box .data {
    width: 15%;
    flex-shrink: 0;
    font-weight: bold;
    text-align: center;
}

.news-area .box .text-area {
    width: 85%;
    padding-right: 60px;
}

.news-area .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--c-01);
    border: solid 1px var(--c-01);
    border-radius: 50%;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 0px;
}

.news-area .icon::after {
    content: "";
    width: 200%;
    height: 110%;
    background: var(--c-01);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
}

.news-area a:hover .icon::after {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.news-area .icon i {
    z-index: 1;
}

.news-area a:hover .icon {
    color: #fff;
}

.footer .btn-area .m-btn{
  position: relative;
  padding-top: 60px;
}

.footer .btn-area .m-btn .g-img01, 
.footer .btn-area .m-btn .g-img02{
      max-width: 60px;
    position: absolute;
    top: 0;
}

.footer .btn-area .m-btn .g-img01{
      left: 30px;
}

.footer .btn-area .m-btn .g-img02{
      right: 30px;
}

.footer .btn-area .m-btn a {
    max-width: 100%;
    padding: 20px;
    font-size: 18px;
    letter-spacing: 2px;
}

.footer .btn-area .m-btn a .icon {
    right: 20px;
}

.footer .btn-area .m-btn.item01 a {
    color: #fff;
    border: solid 1px var(--c-02);
    background: var(--c-02);
}

.footer .btn-area .m-btn.item01 a::after {
    background: var(--c-05);
}

.footer .btn-area .m-btn.item01 a:hover {
    color: var(--c-02);
}

.footer .btn-area .m-btn.item03 a {
    color: #fff;
    border: solid 1px #00b900;
    background: #00b900;
}

.footer .btn-area .m-btn.item03 a::after {
    background: var(--c-05);
}

.footer .btn-area .m-btn.item03 a:hover {
    color: #00b900;
}

.footer .btn-area .m-btn.item04 a {
    color: #fff;
    border: solid 1px var(--c-04);
    background: linear-gradient(60deg, rgba(86,85,205,1) 0%, rgba(157,59,196,1) 35%, rgba(220,46,116,1) 65%, rgba(253,179,79,1) 100%);
}

.footer .btn-area .m-btn.item04 a::after {
    background: var(--c-05);
}

.footer .btn-area .m-btn.item04 a:hover {
    color: #5655cd;
     border: solid 1px #5655cd;
}

@media (max-width: 1024px) {
    .main-visual .head {
      font-size: 30px;
        left: 0;
    }
    .main-visual .head02 {
        bottom: -40%;
        right: 0;
    }
    .t-card .box {
        padding: 30px 10px;
    }
    .m-ttl .ja {
        font-size: 34px;
    }
    .m-ttl .en {
        font-size: 18px;
    }
    .menu-area .ttl-area .ttl {
        font-size: 20px;
    }
    .menu-area .text-area {
        padding-right: 60px;
    }
    .column-area .box .img-area {
        margin-right: 20px;
        padding-right: 20px;
    }
    .column-area .box .ttl {
        font-size: 18px;
    }
    .news-area .box .text-area {
        width: 80%;
    }
    .company .map {
        padding-top: 50%;
    }
}

@media (max-width: 599px) {
  .main-visual{
    margin-top: 50px;
  }
    .main-visual .uk-slideshow::after {
        padding-top: 100%;
    }
    .main-visual .head02 {
    scale: 0.8;
            bottom: -40%;
        right: -10%;
    }
    .main-visual .head02 .text-box .ttl {
        font-size: 20px;
    }
    .main-visual .head02 .text-box .add {
        font-size: 14px;
    }
    .main-visual .head02 .text-box .line {
        font-size: 18px;
    }
    .main-visual .head {
      font-size: 20px;
        top: 5%;
    }
    .nami-img::after,
    .nami-img02::after {
        height: 50px;
        bottom: -49px;
    }
    .nami-img::before {
        height: 50px;
        top: -49px;
    }
    .nami-img03::before {
        height: 50px;
        top: -49px;
    }
    [class*="up-gapy-"]>*:last-child {
        padding-bottom: 0;
    }
    .skyw {
        transform: skewY(0deg);
    }
    .skyw ul li {
        transform: skewY(0deg);
    }
    .menu-area li:nth-child(1) {
        margin-bottom: 50px;
    }
    .menu-area li:nth-child(even) {
        margin-top: 0px;
    }
    .menu-area li {
        margin-bottom: 50px;
    }
    .menu-area .m-img,
    .menu-area .text-area {
        width: 100%;
        margin-top: 0;
    }
    .column-area .box{
          align-items: flex-start;
    }
    .column-area .box .img-area,
    .column-area .box .text-area {
        width: 100%;
        padding-right: 0;
    }
    .column-area .box .img-area {
        flex-direction: column-reverse;
        align-items: center;
        margin-bottom: 20px;
        margin-right: 0px;
        padding-bottom: 20px;
        padding-right: 0px;
        border-bottom: 3px dotted var(--c-01);
        border-right: none;
    }
    .column-area .box {
        flex-wrap: wrap;
    }
    .column-area .box .img-area .data {
        width: 100%;
    }
    .column-area .box .img-area .img {
        width: 80%;
        margin: 10px auto;
    }
    .column-area .icon,
    .news-area .icon {
        width: 30px;
        height: 30px;
        transform: none;
        top: inherit;
        bottom: 30px;
    }
    .news-area .icon {
        right: 30px;
    }
    .column-area .box .ttl {
        padding-right: 35px;
    }
    .news-area {
        overflow: initial;
        padding: 0;
        border-radius: 0;
        background: none;
    }
    .news-area .box .data {
        width: 100%;
        margin-bottom: 10px;
        text-align: left;
    }
    .news-area .box {
        flex-wrap: wrap;
        align-items: flex-start;
        align-content: flex-start;
        overflow: hidden;
        padding: 30px;
        border-radius: 15px;
        background: #fff;
        height: 100%;
    }
    .news-area .box .text-area {
        width: 100%;
        padding-right: 0;
    }
    .news-area .box .text-area .ttl {
        padding-right: 35px;
    }
    .news-area li+li {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
    .fnav .wrap .box {
        width: 50%;
        margin: 0 0 30px;
    }

    .column-area .slick-list li,
    .news-area .slick-list li {
        overflow: hidden;
        margin-top: 10px;
        margin-bottom: 10px;
        border-radius: 15px;
        background: #fff;
        -webkit-box-shadow: 0 0 5px 0 #999;
        box-shadow: 0 0 5px 0 #999;
    }
    .m-ttl .ja {
        font-size: 28px;
    }
    .cap-area .text-box {
        text-align: left;
    }
    .cap-area.new .img{
      margin-top: 50px;
    }
    .bnr-area .box{
      padding: 15px;
    }
    .bnr-area .ttl{
      font-size: 20px;
    }
    .bnr-area .btn{
      margin-left: 0;
      margin-top: 10px;
    }
    .column-area.det-sp li+li{
      margin-top: 0;
    }
    .column-area.det-sp li{
      margin-bottom: 30px;
    }
    .column-area.det-sp .box{
          padding: 10px;
    }
    .column-area.det-sp .icon{
      bottom: 10px;
    right: 10px;
    }
}

.slick-track {
    display: flex;
}
.slick-slide {
    height: auto !important;
}

.fead-text .str {
    display: inline-block;
    opacity: 0;
    transform: translate(0px, 50px) rotate(80deg);
    position: relative;
}
.fead-text .str.textin {
    opacity: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    transform: translate(0px, 0px);
}

.border15 {
    overflow: hidden;
    border-radius: 15px;
}

.company-area .box {
    overflow: hidden;
    border: 1px solid var(--c-01);
    border-radius: 15px;
    background: #fff;
}

.company-area .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.company-area .item>* {
    padding: 20px;
}

.company-area .item .tit {
    width: 200px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 3px;
    background: var(--c-01);
}

.company-area .item+.item .tit {
    border-top: 1px solid #fff;
}

.company-area .item .txt {
    width: calc(100% - 200px);
}

.company-area .item+.item .txt {
    border-top: 1px solid var(--c-01);
}

@media (max-width: 599px) {
    .company-area .item>* {
        padding: 10px;
    }

    .company-area .item .tit {
        width: 130px;
        font-size: 14px;
    }

    .company-area .item .txt {
        width: calc(100% - 130px);
        font-size: 14px;
    }
}

.pt-01 .ttl {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 24px;
    color: var(--c-02);
}

.pt-01 .img {
    position: relative;
}

.pt-01 .img::after {
    content: "";
    width: 233px;
    height: 195px;
    border-radius: 48% 52% 41% 59% / 35% 43% 56% 65%;
    background: var(--c-03);
    position: absolute;
    top: -10%;
    left: 0;
    z-index: -1;
}

.pt-01 li:nth-of-type(1) .img:after{
  background: var(--c-03);
}

.pt-01 li:nth-of-type(2) .img:after{
  background: var(--c-04);
}

.pt-01 li:nth-of-type(3) .img:after{
  background: #fff;
}

.pt-01 li:nth-of-type(4) .img:after{
  background: var(--c-03);
}

.bgc-03 .pt-01 .img::after {
    background: #fff;
}

.bgc-03 .pt-01 li:nth-of-type(1) .img:after{
  background: var(--c-05);
}


.pt-01 .img img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;

    -webkit-mask-image: url('/import/tenant_2/162.43.28.120/html/images/hc_1.webp');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url('/import/tenant_2/162.43.28.120/html/images/hc_1.webp');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
}

.pt-01 .num {
    font-weight: bold;
    font-size: 54px;
    text-shadow: 0 0 white;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    -webkit-text-stroke: 1px var(--c-01);
    -webkit-text-fill-color: transparent;
}

@media (max-width: 599px) {
    .pt-01 .ttl {
        margin-bottom: 10px;
        font-size: 20px;
    }
}

.qa-container {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
}
.qa-container:last-of-type {
    padding-bottom: 0;
}

.qa-container .m3 {
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-size: 24px;
    border-bottom: solid 3px #dfede3;
    position: relative;
}
.qa-container .m3::before {
    content: "";
    width: 20%;
    height: 3px;
    display: block;
    background-color: var(--c-01);
    position: absolute;
    bottom: -3px;
    left: 0;
}

.qa-list:not(:first-child) {
    margin-top: 20px;
}

.question-title {
    padding: 30px 65px;
    font-size: 16px;
    background: #dfede3;
    cursor: pointer;
    position: relative;
}

.question-title:before {
    content: "Q";
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
    background-color: var(--c-01);
    position: absolute;
    top: 20px;
    left: 12px;
}


.answer-text {
    display: none;
    padding: 30px 65px;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    position: relative;
    background: #fff;
}

.answer-text:before {
    content: "A";
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
    background-color: var(--c-02);
    position: absolute;
    top: 20px;
    left: 12px;
}

.plmi span::before,
.plmi span::after {
    content: "";
    width: 15px;
    height: 3px;
    display: block;
    border-radius: 5px;
    background: var(--c-01);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 30px;
}

.plmi span::after {
    background: var(--c-01);
    transition: 0.5s;
    transform: translateY(-50%) rotate(90deg);
}

.open .plmi span::after {
    transition: 0.5s;
    transform: translateY(-50%) rotate(0);
}

.faq-a a {
    position: relative;
}

.faq-a a::before {
    content: "";
    width: 20px;
    height: 2px;
    border-radius: 4px;
    background-color: var(--c-01);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    transform: translate(-50%, 5px);
    position: absolute;
    bottom: 0;
    left: 50%;
}

.faq-a a:hover::before {
    width: 100%;
}

.flow09 {
    padding-left: 0;
    border-bottom: solid 1px #e1e8ed;
}

.flow09 .box-area {
    display: flex;
    list-style-type: none;
    padding: 20px 0;
    border-top: solid 1px #e1e8ed;
}

.flow09 .ttl {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 2px;
}

.flow09 .icon09 {
    width: 70px;
    margin-top: 0;
    font-weight: bold;
    font-size: 2em;
    color: var(--c-01);
    line-height: 1;
    text-align: center;
    position: relative;
}

.flow09 .icon09 .sb {
    display: block;
    margin-bottom: 3px;
    font-size: 0.3em;
    letter-spacing: 1px;
}

.flow09 .icon09::after {
    content: "";
    width: 1px;
    height: calc(100% - 60px);
    display: block;
    margin: auto;
    background-color: var(--c-03);
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
}

.flow09 .box {
    width: calc(100% - 70px);
    margin-top: 0.8em;
}

.check4 li {
    margin-bottom: 5px;
    padding-left: 1.5em;
    line-height: 2;
    position: relative;
}

.check4 li:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--c-01);
    position: absolute;
    top: 10px;
    left: 0;
}

.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: 14px;
    color: #fff;
    position: absolute;
    top: 4px;
    left: 5px;
}

.s-headline3 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    font-weight: bold;
    font-size: 20px;
    border-bottom: solid 2px var(--c-01);
    position: relative;
}

.s-headline3::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--c-01);
    position: absolute;
    top: 8px;
    left: 0;
}

.table-01 {
    width: 100%;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 15px;
}

.table-01 tr {
    display: flex;
    flex-wrap: wrap;
}

.table-01 tr th,
.table-01 tr td {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 15px 40px;
    font-size: 18px;
    line-height: 2;
    text-align: center;
    text-align: left;
}
.table-01 tr th.new,
.table-01 tr td.new {
    width: 33.33%;
}

.table-01 tr .table-title {
    font-weight: bold;
    background: var(--c-04);
}

.table-01 tr:nth-of-type(n+2) {
    border-top: 1px solid #fff;
}

.table-01 tr th {
    border-left: 1px solid white;
}

.table-01 tr td {
  font-weight: bold;
    border-left: 1px solid #fff;
    background: var(--c-05);
    justify-content: center;
    font-size: 20px;
}

@media (max-width: 1024px) {
    .table-01 tr th,
    .table-01 tr td {
        font-size: 16px;
    }
    .table-01 tr th,
    .table-01 tr td {
        padding: 15px 18px;
        font-size: 15px;
    }
}

@media (max-width: 599px) {
    .table-01 tr th,
    .table-01 tr td {
        width: 100%;
    }
    .table-01 tr td+td {
        border-top: 1px solid #fff;
        border-left: none;
    }
}

.box-ss {
    -webkit-box-shadow: 0px 0px 10px #b1b1b1;
    box-shadow: 0px 0px 10px #b1b1b1;
}

.pa-100 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.check-box {
    max-width: 800px;
    margin: auto;
    padding: 30px;
    border: solid 1px var(--c-01);
    border-radius: 15px;
    background: #fff;
}

.opa-20 {
    opacity: 0.2;
}

.title-left-deco {
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-weight: bold;
    font-size: 20px;
    border-bottom: solid 3px #dfede3;
    position: relative;
}

.title-left-deco::before {
    content: "";
    width: 50px;
    height: 3px;
    display: block;
    background-color: var(--c-01);
    position: absolute;
    bottom: -3px;
    left: 0;
}

/*カテゴリー*/

.list-cate-01 .box {
    padding: 20px;
    border-radius: 15px;
}

.list-cate-01 .tit {
    margin-bottom: 1em;
    font-weight: bold;
    font-size: clamp(1.25rem, 1.193rem + 0.24vw, 1.375rem);
    color: var(--c-01);
    letter-spacing: 0.1em;
}
.blog-box .list-cate-01 .tit {
    color: var(--c-01);
}

.list-cate-01 li+li {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #dad7d2;;
}

.list-cate-01 li>* {
    display: block;
    padding-right: 20px;
    position: relative;
    z-index: 0;
}

.list-cate-01 li>*:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #dad7d2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 5px;;
}

.menu-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.menu-select-main {
    width: 10%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.menu-select-sub {
    width: 15%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    margin-left: 2.5%;
}

.menu-select-sub.ver02 {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    margin-left: 2.5%;
}


.contact-form dl input {
    width: 100%;
    height: 56px;
    margin-top: 8px;
    margin-bottom: 0;
    padding: 8px 12px;
    font-weight: 500;
    font-size: 16px;
    border: 3px solid #f1f1f1;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.contact-form dl input:focus {
    outline: none;
    border: 3px solid var(--c-01);
}

.contact-form dl select {
    width: 100%;
    height: 56px;
    margin-top: 8px;
    padding: 8px 12px;
    font-weight: 700;
    border: 3px solid #f1f1f1;
    border-radius: 8px;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.contact-form dl select:focus {
    outline: none;
    border: 3px solid var(--c-01);
}

.contact-form dl textarea {
    width: 100%;
    margin-top: 8px;
    padding: 8px 12px;
    font-size: 16px;
    border: 3px solid #f1f1f1;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.contact-form dl.area textarea {
    max-height: 260px;
    padding: 8px 12px;
}

.contact-form dl textarea:focus {
    outline: none;
    border: 3px solid var(--c-01);
}

.contact-btn .btn {
    width: 100%;
    max-width: 400px;
    height: 64px;
}

@media (max-width: 599px) {
    .contact-form {
        width: 100%;
    }

    .contact-form dt {
        font-size: 14px;
    }
}

.contact-item.radiobtn dd {
    padding: 0.5em;
}

.contact-item.radiobtn.new dd {
    padding: 0.5em 0;
}

.contact-item.radiobtn dd label {
    display: inline-block;
    margin: 0.5em 0;
    padding: 0 10px 0 30px;
    position: relative;
}

.contact-item.radiobtn dd label::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #dcdcdc;
    border-radius: 3px;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-item.radiobtn dd label:hover {
    text-decoration: underline;
    cursor: pointer;
}

.contact-item.radiobtn dd input {
    display: none;
}

.contact-item.radiobtn dd input:checked+label {
    text-decoration: underline;
}

.contact-item.radiobtn dd input:checked+label::after {
    content: "\f00c";
    width: 0;
    height: 0;
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: var(--c-01);
    line-height: 1;
    background-color: transparent;
    position: absolute;
    top: 0px;
    left: 2px;
}

.contact-item.radiobtn dd input+label {
    margin-right: 15px;
}

.contact-item.radiobtn dd option {
    background-color: var(--c-03);
}

.select-container .select-box {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: var(--c-03);
}

.contact-form dl+dl {
    margin-top: 24px;
}

.contact-form dt {
    font-weight: 700;
    font-size: 18px;
}

.require-icon {
    display: inline-block;
    margin-left: 8px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
    color: #f44;
    line-height: 150%;
    border: 3px solid #f44;
    border-radius: 4px;
}

.require-icon.optional {
    color: var(--c-01);
    border-color: var(--c-01);
}

@media (max-width: 599px) {
    .menu-select-sub {
        width: 20%;
    }
}

.column-area.new .box .img-area {
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.column-area.new .box .img-area .img {
    width: 100%;
    margin-right: 0;
}

.column-area.new .box .img-area .data {
    margin-bottom: 10px;
}

.column-area.rec li {
    width: 100%;
}

@media (max-width: 599px) {
    .column-area.rec li+li {
        margin-top: 0px;
    }
    .column-area.rec .box,
    .column-area.rec .box .img-area {
        align-content: flex-start;
        align-items: flex-start;
        justify-content: flex-end;
    }
    .column-area.rec .box {
        padding: 10px;
        position: relative;
    }
    .column-area.rec .icon {
        bottom: 10px;
        right: 10px;
    }
    .column-area.rec li {
        width: 50%;
    }
}

.news-area.new li+li {
    margin-top: 30px;
}

.cap-area.detail .item {
    padding: 30px;
}

.cap-area.new.detail .text-box {
    margin-bottom: 30px;
}

.cap-area.new .text-box {
    padding: 0;
    text-align: left;
}

.campaign-list {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
        -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.campaign-list .m-t{
      background: var(--c-01);
    border-radius: 5px;
    padding: 10px;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.campaign-list .t-text{
background: linear-gradient(transparent 70%, #f9ff00 70%);
font-size: 24px;
display: inline;
font-weight: bold;
}

.campaign-list .num{
font-size: 200%;
line-height: 1;
}

.campaign-list .pl{
font-size: 200%;
line-height: 1;
color: #ff4242;
}

.cp-area .table-01 tr td{
      font-size: 200%;
    color: #ff4242;
    line-height: 1;
}


.campaign-item {
    padding: 1em 0;
    border-bottom: 2px solid #bfbfbf;
}

.campaign-item dt {
    width: 9em;
    font-weight: bold;
}

.campaign-item dt+dd {
    width: calc(100% - 10em);
}

.cate-li>div {
    display: block;
}
@media(max-width:1024px) {
    .cate-li>div {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
    }
    .cp-area .table-01 tr td{
      font-size: 140%;
    color: #ff4242;
    line-height: 1;
}
}

@media(max-width:599px) {
  .campaign-list .num,
  .campaign-list .pl{
        font-size: 140%;
  }
    .campaign-item dt {
        width: 100%;
        margin-bottom: 0.5em;
    }

    .campaign-item dt+dd {
        width: 100%;
    }
}

.t-c2 {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.t-c2 .ttl {
    width: 98%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: var(--c-01);
    line-height: 1;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 0 0 4px white;
    transform: translate(-50%,-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
}
.t-c2 img {
    opacity: 0.4;
}

.ttl-deta{
  margin: 20px 0;
    padding-left: 12px;
    font-size: 26px;
    letter-spacing: 2px;
   position: relative
}
.ttl-deta:before {
    content: "";
    background: var(--c-01);
    width: 3px;
    height: 1.5em;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.c-m{
      font-weight: bold;
    border-bottom: solid 2px;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

@media(max-width:599px) {
  .t-c2 .ttl{
    font-size: 18px;
  }
  .ttl-deta {
    font-size: 24px;
}
}

.fead-ani {
    /* アニメーションが適用される前の初期位置 */
    transform: translateY(0%); /* 画面下から隠れるように設定 */
    opacity: 0; /* 透明にして見えないように */
}

.fead-ani.mv {
    /* mvクラスが追加されたときのアニメーション */
    animation: slideUpAndDown 0.5s ease-in-out forwards; /* アニメーションの適用 */
    animation-delay: 1s;
    opacity: 0;
    transform: none;
}

@keyframes slideUpAndDown {
    0% {
        opacity: 0;
    }
    50% {
        transform: translateY(5%);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


.g-img01,
.g-img02{
  max-width: 130px;
  position: absolute;  
}

.g-img01.abo,
.g-img02.abo{
  top: 50%;
transform: translateY(-50%)
}

.g-img01.abo{
  left: -160px;
}

.g-img02.abo{
  right: -160px;
}

.g-img01.p-01,
.g-img02.p-02{
  top: 0;
  position: absolute;
}

.g-img01.p-01{
  right: 0;
}

@media (max-width: 1024px) {
    .g-img01, 
    .g-img02 {
    max-width: 100px;
}
.g-img01.abo,
.g-img02.abo{
    top: -75%;
}
}

@media (max-width: 599px) {
   .g-img01,
   .g-img02 {
      max-width: 60px;
   }
   .g-img01.abo,
.g-img02.abo{
      top: -80%;
}
.g-img01.p-01,
.g-img02.p-02{
        max-width: 80px;
}
.g-img01.p-01{
      right: -10px;
}
.g-img02.p-02{
        left: -10px;
}
}

[class*="g-img"] img{
      -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-name: swing03;
    animation-name: swing03;
    -webkit-animation-duration: 4000ms;
    animation-duration: 4000ms;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    -webkit-animation-timing-function: steps(2, end);
    animation-timing-function: steps(2, end);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;

    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes swing03 {
    0%,
    100% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
}

@keyframes swing03 {
    0%,
    100% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
}

.article__toc {
    margin-top: 24px;
    margin-bottom: 10px;
    padding: 24px 16px;
    border-radius: 8px;
    background-color: var(--c-05);
}

.article__toc-title-block {
    padding-bottom: 16px;
    border-bottom: 1px solid #dbdbdb;
}

.article__toc-title {
    font-weight: 700;
    font-size: 16px;
}

.article__toc-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 16px;
    padding-left: 16px;
    padding-right: 16px;

    grid-row-gap: 15px;
}

.new-blog .sb-ttl{
  color: var(--c-01);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 20px;
}

.area-cat .ttl{
  background: var(--c-01);
    display: inline-block;
    padding: 5px 10px;
    margin-right: 20px;
    color: #fff;
    border-radius: 9999px;
}

.area-cat i{
      color: var(--c-01);
    margin-right: 5px;
}

[data-element-id] .gnav .list01{
  align-items: flex-start;
}

[data-element-id] .wrap-a{
  flex-wrap: wrap;
}

[data-element-id] .c-btn{
  width: 55%
}

[data-element-id] .menu-area .ttl-area{
  flex-wrap: wrap;
}

[data-element-id] .up-sp-text{
  max-width: 375px;
  width: 100%;
  margin: auto;
}

[data-element-id] .up-sp-text .m-ttl .ja {
    font-size: 28px;
}

[data-element-id] .up-sp-text .m-ttl .en {
    font-size: 18px;
}

[data-element-id] .menu-area .ttl-area .up-sp-text .ttl {
    font-size: 20px;
}

[data-element-id] .topvisual .head .up-sp-text{
  font-size: 30px
}

[data-element-id] .pt-01 .up-sp-text .ttl{
      font-size: 20px;
}

[data-element-id] .t-c2 .ttl .up-sp-text{
    font-size: 18px;
}
  
[data-element-id] .slick01,
[data-element-id] .slick02{
  display: flex;    
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

[data-element-id] .slick01>div,
[data-element-id] .slick02>div{
  display: contents;
}

[data-element-id] .column-area .box .img-area .data{
      flex-shrink: 1;
}

.aircon-selected .menu-select-sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
[data-element-id] .menu-select-sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

[data-ab-test-block] [data-ab-test-contents]+[data-ab-test-contents] {
    display: none;
}
