@charset "utf-8";
/*
Theme Name: AA009
Theme URI: http://www.no-b.co.jp
Description: 株式会社ノーブランド［オリジナルテーマ］
Version: 1.0
Author: nobrand co.,ltd.
Author URI: http://www.no-b.co.jp
Tags: responsive

	nobrand_themes v1.0
	 http://www.no-b.co.jp

	This theme was designed and built by nobrand co.,ltd.,
	whose blog you will find at http://www.no-b.co.jp
*/


/*-------------------------------------------------------------------------------------------*/
/* 　全体
/*-------------------------------------------------------------------------------------------*/

html {
    font-size: 62.5%;
    font-size: 10px;
}
body {
    font-family: -apple-system, BlinkMacSystemFont,
        "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #555;
    -webkit-text-size-adjust: none;
    text-align: justify;
    word-break: break-all;
    text-justify: inter-ideograph;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: linear-gradient(90deg, var(--back1), var(--back2));
}

/*-------- リンク設定 --------*/
a {
    color: var(--link);
    padding: 0;
    margin: 0;
    text-decoration: none;
    background: transparent;
    outline: 0;
    vertical-align: baseline;
    transition: 0.3s;
}
a:hover,
a:active {
    outline: none;
    color: var(--link-h);
}
.hideAnchor {
    display: inline-block;
    height: 0px;
    overflow: hidden;
    text-indent: -9999px;
    margin-top: -65px;
    padding-bottom: 65px;
}

/*-------- ベースレイアウト --------*/
* {
    box-sizing: border-box;
}
article.inner {
    
}
.inner {
    display: block;
    width: 80%;
    min-width: 1024px;
    max-width: 1200px;
    margin: 0 auto;
}
article[id^="page-"],
article[id^="post-"],
.page-content,
.post-archive,
.single-content,
.search-archive,
.notfound {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 auto;
}
.text p {
    font-size: clamp(1.6rem, 1.467rem + 0.18vw, 1.8rem);
    margin-bottom: 20px;
}
.text p:last-of-type {
    margin-bottom: 0;
}
#toppage #content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#content {
    width: 100%;
}
#sidebar {
    width: 270px;
}
#footer {
    display: block;
    width: 100%;
    color: #fff;
    padding: 100px 0 30px;
    margin-top: 200px;
    background-color: var(--main);
}
.wide-box {
    position: relative;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
}
p:empty:before {
    content: initial !important;
}
.align-left {
    text-align: justify;
}
.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}
.btnA {
    display: block;
    width: 100%;
    color: #fff;
    line-height: 2.4;
    text-align: center;
    margin-top: 15px;
    background: var(--link);
}
.btnA:hover {
    color: #fff;
    background: var(--link-h);
}
.text.align-left,
.text.align-right,
.text.align-center {
    display: inline-block;
    width: 100%;
}


/*-------- 画像 --------*/
img,
.wp-caption,
.wp-video {
    max-width: 100%;
    vertical-align: bottom;
}
.wp-video {
    width: 100% !important;
    height: auto;
    vertical-align: bottom;
}
a img {
    transition: 0.3s ease-in-out;
}
a img:hover {
    transition: all 1s;
    filter: blur(3px);
    filter: brightness(80%);
}
.alignnone,
.aligncenter,
.alignleft,
.alignright {
    position: relative;
    display: block;
}
.alignnone,
.aligncenter {
    margin: 0 auto 20px;
}
.alignleft {
    float: left;
    margin: 0 30px 20px 0;
}
.alignright {
    float: right;
    margin: 0 0 20px 30px;
}
.size-full {
    max-width: 100%;
}
.alignnone + br {
    margin: 0 auto 20px;
}
img.position-right,
img.position-left,
img.position-center {
    width: 350px;
    height: auto;
}
img.position-right {
    float: right;
    margin: 0 0 20px 30px;
}
img.position-left {
    float: left;
    margin: 0 30px 20px 0;
}
img.position-center {
    display: block;
    width: auto;
    margin: 0 auto 20px;
}
img.position-full {
    width: 100%;
    margin-bottom: 20px;
    object-fit: cover;
}
a .size-medium,
#content a img.right,
#content .gallery-box div a img,
.page-gallery .box div a img {
    cursor: url(images/zoom.png), auto;
}

/*-------- Google font --------*/
@font-face {
    font-display: swap;
    font-weight: 600;
    font-style: normal;
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-SemiBold.ttf') format('truetype');
}



/*-------------------------------------------------------------------------------------------*/
/* 　ヘッダ
/*-------------------------------------------------------------------------------------------*/

/*-------- ヘッダメニュー --------*/
@media only screen and (min-width: 1025px) {
    #mainNav .pullMain {
        position: relative;
        display: inline-block;
        z-index: 100;
    }
    #mainNav .pullMain li a {
        display: inline-block;
        color: rgba(255,255,255,.8);
        white-space: nowrap;
        padding: 4px 30px 4px 0;
    }
    #mainNav .pullMain li a:hover {
        color: rgba(255,255,255,.3);
        transition: all .8s;
    }
    #mainNav .has-sub {
        position: relative;
    }
    #mainNav .has-sub ul {
        position: absolute;
        top: -19px;
        left: 100%;
        pointer-events: none;
        background: var(--main);
        z-index: 1;
        opacity: 0;
    }
    #mainNav .has-sub > a:after {
        content: "\f107";
        font-family: "icomoon";
        position: absolute;
        right: 0;
        font-size: 1.4rem;
        transition: .5s;
    }
    #mainNav .has-sub:hover a:after {
        color: var(--sub);
        transform: rotate(-90deg);
    }
    #mainNav .has-sub:hover ul {
        transition: all 0.5s;
        transform: translateY(20px);
        opacity: 1;
        pointer-events: auto;
    }
    #mainNav .has-sub ul li a {
        color: rgba(255, 255, 255, .8);
        white-space: nowrap;
        padding: 4px 20px 4px 20px;
        background: var(--main);
    }
    #mainNav .has-sub ul li a:hover {
        color: rgba(255, 255, 255, .3);
    }
    .meanmenu-reveal {
        position: absolute;
        top: 20px;
        left: -100px;
        right: auto;
        display: block;
        width: 46px;
        height: 46px;
        color: #fff;
        text-indent: -9999em;
        line-height: 22px;
        padding: 12px;
        background: var(--main);
        transition: all 0.5s ease-in-out; 
        cursor: pointer;
        z-index: 10;
    }
    .meanmenu-reveal.visible {
        position: fixed;
        left: 20px;
        z-index: 101;
        opacity: 1;
    }
    a.meanmenu-reveal span {
        display: block;
        width: 23px;
        height: 3px;
        margin-top: 3px;
        background: #fff;
        transition: all 0.5s ease-in-out;
    }
    .meanmenu-reveal.on span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .meanmenu-reveal.on span:nth-child(2) {
        opacity: 0;
    }
    .meanmenu-reveal.on span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/*-------- ヘッダ --------*/
#header-box {
    display: flex;
    position: relative;
    top: 0;
    margin: 0 0 150px;
    z-index: 100;
}
#toppage #header-box {
    height: calc(100vh + 200px);
    min-height: 800px;
    border-bottom: 200px solid var(--main);
}
header,
#header {
    position: relative;
    top: 0;
    width: 40%;
    padding: 40px 6%;
    background: var(--main);
}
#header {
    position: fixed;
    left: -40%;
    height: 100vh;
    transition: all .7s ease-in-out;
}
#toppage header {
    height: 100vh;
}
body:not(#toppage) #nav-box {
    margin: -10px 0;
}
#header-box.visible #header {
    left: 0 !important;
}
.header-logo {
    width: auto;
    margin-bottom: 30px;
}
.header-logo-text {
    color: var(--main);
}
#header-box .sns-box {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin: 40px 0 20px;
}
#header-box .sns-box .sns {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}
#header-box .sns li {
    border-radius: 50%;
}
#header-box .sns .twi,
#header-box .sns .fac,
#header-box .sns .ins,
#header-box .sns .lin,
#header-box .sns .not,
#header-box .sns .blo {
    background: rgba(255,255,255,.3) !important;
}
#header-box .sns .twi:hover {
    background: #000 !important;
}
#header-box .sns .fac:hover {
    background: #537bbd !important;
}
#header-box .sns .ins:hover {
    background: #f2117b !important;
}
#header-box .sns .lin:hover {
    background: #06c755 !important;
}
#header-box .sns .not:hover {
    background: #41c9b4 !important;
}
#header-box .sns .blo:hover {
    background: #f90 !important;
}
#header-box .tel {
    width: 100%;
    color: #fff;
    font-size: 2rem;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.3);
    z-index: 2;
}
#toppage #header-box .tel,
#header-box #header .tel {
    position: absolute;
    bottom: 10px;
    width: calc(100% - 30%);
}
#header-box .tel span a {
    float: right;
    width: 30px;
    height: 30px;
    font-size: 1.7rem;
    line-height: 30px;
    text-align: center;
    margin-top: 4px;
    border-radius: 50%;
    background: var(--sub);
}
#header-box .tel span i {
    color: #fff;
}
#header-box .tel span a:hover {
    background: var(--link-h);
}
@media only screen and (max-height: 670px) {
#header-box .tel {
    position: relative;
    margin-top: 30px;
}
}

/*-------- ヘッダホーム画像 --------*/
#header-top-img {
    width: 60%;
    height: 100vh;
}
#header-top-img .slide-media img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
#header-top-img .swiper-wrapper .swiper-slide .box {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 10%;
    left: 10%;
    width: 60%;
    color: #333;
    padding: 50px;
    z-index: 2;
    transform: .5s;
}
#header-top-img .slide-title {
    color: var(--main);
    font-size: clamp(2.4rem, 2.255rem + 0.73vw, 2.8rem);
    line-height: 1.4;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 1px dotted var(--sub);
}

/*-------- ヘッダ画像 --------*/
.head-title {
    position: relative;
    width: 60%;
}
.head-title img {
    object-fit: cover;
    aspect-ratio: 6/4;
}

/*-------- パンくず --------*/
#breadcrumb {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 7px 10px 7px 30px;
    background: rgba(255, 255, 255, .6);
}
#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    color: #999;
    margin: 0 auto;
}
#breadcrumb li,
#breadcrumb li a {
    flex-grow: 0;
    font-size: 1.2rem;
    line-height: 2;
    margin-right: 5px;
}



/*-------------------------------------------------------------------------------------------*/
/* 　ホーム
/*-------------------------------------------------------------------------------------------*/

#content-page {
    width: 100%;
}

/*-------- ホームタイトル --------*/
#toppage h1,
h2.top-title {
    color: var(--main);
    font-size: clamp(2.6rem, 2.508rem + 0.49vw, 3rem);
    text-align: center;
    line-height: 1.5;
    margin: 0 auto 50px;
}
#toppage h1 {
    margin: 100px auto 50px;
}

/*-------- サービス --------*/
#service {
    counter-reset: item;
}
#service .box {
    position: relative;
    padding: 20px calc(350px + 10%) 60px 0;
    margin-bottom: 100px;
    overflow: hidden;
}
#service .box img {
    position: relative;
    height: 500px;
    border-left: 100px solid var(--main);
    object-fit: cover;
    z-index: -1;
}
#service .box h3 {
    position: absolute;
    top: -20px;
    right: -65%;
    height: 8em;
    font-family: "Cinzel", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    color: #000;
    font-size: clamp(2rem, 1.621rem + 1.01vw, 3.2rem);
    writing-mode: vertical-rl;
    z-index: 1;
}
#service .box .number:before {
    content: "";
    position: absolute;
    top: 30px;
    left: 15px;
    color: rgba(255, 255, 255, .5);
    font-size: clamp(3.5rem, 2.6rem + 2.4vw, 5rem);
    counter-increment: item;
    content: counter(item, decimal-leading-zero)'';
    z-index: 1;
}
#service .box div.text {
    position: absolute;
    right: -45%;
    bottom: -560px;
    width: 400px;
    padding: 60px;
    background: #f8f8f8;
    z-index: 1;
}
#service .box:nth-child(even) {
    padding: 20px 0 60px calc(350px + 10%);
}
#service .box:nth-child(even) h3 {
    right: auto;
    left: -65%;
}
#service .box:nth-child(even) .number:before {
    left: auto;
    right: 15px;
}
#service .box:nth-child(even) div.text {
    left: -45%;
}
#service .box:nth-child(even) img {
    border-left: none;
    border-right: 100px solid var(--main);
}

/*-------- ホームコンテンツ --------*/
.wpz-insta-lightbox-wrapper>.swiper .swiper-button-prev,
.wpz-insta-lightbox-wrapper>.swiper .swiper-button-next {
    top: 40%;
}



/*-------------------------------------------------------------------------------------------*/
/* 　コンテンツ
/*-------------------------------------------------------------------------------------------*/
#content .table,
#content .column,
#content .tab,
#content .download,
#content .gallery,
#content .movie {
    width: 100%;
    overflow: hidden;
}
#content .list {
    overflow: hidden;
}
#content h3 {
    margin-top: 50px;
    clear: both;
}
#content h3:first-of-type {
    margin-top: 0;
}
.full-width {
    width: 100vw !important;
    padding: 100px 10% 150px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
/*-------- 文章 --------*/
.text-flex {
    display: flex;
    align-items: flex-start;
    gap: 20px 10%;
    position: relative;
}
.text-flex .text {
    width: 60%;
    padding-top: 100px;
}
.text-flex .text h2.title:after {
    margin: 10px 0 0;
}
.text-flex .vertical-img {
    width: 30%;
    height: 600px;
    border-left: 20px solid var(--main);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.text-flex .vertical-img[style*="order: 3"] {
    border-left: none;
    border-right: 20px solid var(--main);
}

/*-------- 画像 --------*/
#content img.right,
#content img.left,
#content img.center {
    width: 400px;
    height: auto;
}
#content img.right {
    float: right;
    margin-left: 30px;
}
#content img.left {
    float: left;
    margin-right: 30px;
}
#content img.center {
    display: block;
    margin-right: auto;
    margin-left: auto;
}
#content img.full {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    object-fit: cover;
}

/*-------- リスト --------*/
#content .list.typeA {
    color: #333;
}
#content .list.typeA p {
    padding: 7px 0 5px;
    padding-left: calc(1em + 13px);
    text-indent: calc(-1em + -9px);
}
#content .list.typeA p:first-of-type {
    margin-left: 6px;
    padding-left: calc(1em + 8px);
    text-indent: calc(-1em + -3px);
}
#content .list.typeA p + p,
#content .list.typeB p + p {
    border-top: 1px dotted #CCC;
}
#content .list.typeA p:before {
    content: "\ea42";
    font-family: "icomoon";
    color: var(--sub);
    font-size: 1.4rem;
    margin-right: 7px;
}
#content .list.typeA p:first-of-type:before {
    margin-left: -6px;
    margin-right: 10px;
}
#content .list.typeA p.title-english:before,
#content .list.typeB p.title-english:before {
    content: initial;
}
#content .list.typeB {
    counter-reset: p;
    color: #333;
}
#content .list.typeB p {
    padding: 7px 0 5px;
    text-indent: -1.2em;
    padding-left: 1.2em;
}
#content .list.typeB p:before {
    content: counter(p, decimal) ". ";
    counter-increment: p;
    color: var(--sub);
}

/*-------- テーブル --------*/
.table-note {
    display: none;
}
.tableA {
    width: 100%;
    border-collapse: collapse;
    border-top: #ddd 1px solid;
}
#table2.acf-table tr {
    background: #fff;
}
.tableA th {
    color: var(--main);
    text-align: left;
    padding: 10px 0px;
    font-weight: 400;
    border: 1px solid #ddd;
}
.tableA td {
    text-align: left;
    padding: 10px 10px 10px 15px;
    border: 1px solid #ddd;
}
.tableA th.last,
.tableA td.last {
    border-bottom: none;
}
.tableA td ul {
    margin-top: -28px;
}
#page-price .price {
    padding: 30px;
    background: #fff;
}
#page-price .price .tableA tr td:last-child {
    text-align: right;
}
.tableB {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.tableB th {
    width: 20%;
    color: var(--main);
    vertical-align: middle;
    padding: 12px;
    border: 1px solid #ddd;
    background: #f8f8f8;
}
.tableB th:before {
    content: "\ea42";
    font-family: "icomoon";
    color: var(--sub);
    font-size: 1.2rem;
    margin-right: 5px;
}
.tableB td {
    vertical-align: middle;
    padding: 12px;
    border: 1px solid #ddd;
}
.tableC {
    width: 100%;
    border-collapse: collapse;
    border-top: #ddd 1px solid;
}
.tableC th {
    color: var(--main);
    text-align: left;
    padding: 10px 0px;
    font-weight: 400;
    border-bottom: #ddd 1px solid;
}
.tableC td {
    position: relative;
    text-align: left;
    padding: 10px 10px 10px 15px;
    border-bottom: 1px solid #ddd;
}
.tableC td:before {
    content: "";
    position: absolute;
    top: 10px;
    width: 1px;
    height: calc(100% - 20px);
    margin-left: -15px;
    background: var(--link);
}
.tableC th.last,
.tableC td.last {
    border-bottom: none;
}
.tableC td ul {
    margin-top: -28px;
}
.tableC ul.sns {
    border-top: none;
}

/*-------- カラム --------*/
#content [class^="column-box"] {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 30px 3%;
}
#content [class^="column-box"] .box {
    flex: 1 0 0%;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
}
@-moz-document url-prefix() {
#content [class^="column-box"] .box {
    padding-bottom: 50px;
}
}
#content [class^="column-box"] .box:has(a){
    padding-bottom: 50px;
}
#content [class^="column-box"] img {
    margin-bottom: 10px;
    object-fit: cover;
    aspect-ratio: 6/4;
}
#content [class^="column-box"] h3 {
    color: var(--main);
    text-align: center;
    margin-bottom: 5px;
}
#content [class^="column-box"] a {
    position: absolute;
    bottom: 0;
}
#content .columnA [class^="column-box"] .box {
    padding: 30px 30px 85px;
    background: #fff;
}
#content .columnA [class^="column-box"] a {
    width: calc(100% - 60px);
    bottom: 30px;
}

/*-------- タブ --------*/
.tab-box {
    display: flex;
    column-gap: 24px;
}
#toppage [class^="tab"] ul li .light,
.basic-format [class^="tab"] ul li .light {
    position: absolute;
    top: 20px;
    left: 15px;
    width: 10px;
    height: 10px;
    background: var(--sub);
    border-radius: 100%;
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
#toppage [class^="tab"] ul li.active .light,
.basic-format [class^="tab"] ul li.active .light {
    top: 0;
    left: 0;
    display: block;
    width: 3px;
    height: 100%;
    border-radius: 0;
    background: var(--sub);
}
#toppage [class^="tab"] ul li.active:after,
.basic-format [class^="tab"] ul li.active:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    display: block;
    width: 0px;
    height: 0px;
    margin-top: -10px;
    border-style: solid;
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent var(--sub);
    z-index: 100;
}
#toppage ul[class^="tab"],
.basic-format ul[class^="tab"]  {
    width: 33.33333%;
    max-width: 33.33333%;
}
#toppage [class^="tab"] ul li,
.basic-format [class^="tab"] ul li {
    position: relative;
    display: block;
    color: #222;
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: left;
    padding: 12px 20px;
    padding-left: calc(1em + 17px);
    text-indent: calc(-1em + 17px);
    margin-bottom: 3px;
    text-transform: uppercase;
    background: #f8f8f8;
    transition: .5s;
}
#toppage [class^="tab"] ul li a,
.basic-format [class^="tab"] ul li a {
    color: #222;
}
#toppage [class^="tab"] ul li:hover,
.basic-format [class^="tab"] ul li:hover {
    background: #e1e1e1;
}
#toppage [class^="tab"] ul li:hover a,
.basic-format [class^="tab"] ul li:hover a {
    color: var(--sub);
}
#toppage .tab-detail,
.basic-format .tab-detail {
    width: 66.66666%;
    max-width: 66.66666%;
    padding: 30px 3%;
    border: 1px solid #ddd;
    background: #fff;
}
#toppage [class^="tabbox"],
.basic-format [class^="tabbox"] {
    display: none;
}

/*-------- ダウンロード --------*/
#content .download a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 15px;
    width: 100%;
    color: #333;
    padding: 10px 20px 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-left: 2px solid var(--link);
    background: #fff;
    transition: .5s;
}
#content .download a i {
    color: var(--link);
}
#content .download a:hover {
    color: var(--link);
    background: #f8f8f8;
}

/*-------- ギャラリー --------*/
#content .gallery.full-width {
    background: #fff;
}
#content .gallery-box {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 2%;
}
#content .gallery-box div {
    position: relative;
    width: 23.5%;
}
#content .gallery-box div img {
    margin-bottom: 10px;
    object-fit: cover;
    aspect-ratio: 6/4.5;
}
#content .gallery-box div h4 {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    padding: 5px;
    background: var(--main);
    transition: all .5s;
    opacity: 0;
}
#content .gallery-box div h4:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: var(--main) transparent transparent transparent;
}
#content .gallery-box div:hover h4 {
    top: -40px;
    opacity: 1;
}
/*-------- 動画 --------*/
.movie-bace {
    width: 100%;
    overflow: auto;
}
.movie-box {
    position: relative;
    max-width: 100%;
    height: auto;
    padding-top: 56.25%;
    margin-bottom: 20px;
    overflow: hidden;
}
.movie-box iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
.movie-box.position-right,
.movie-box.position-left,
.movie-box.position-center {
    width: 400px;
    height: 225px;
    padding-top: 0;
}
.movie-box.position-right {
    float: right;
    margin-left: 30px;
}
.movie-box.position-left {
    float: left;
    margin-right: 30px;
}
.movie-box.position-center {
    margin-right: auto;
    margin-left: auto;
}

/*-------- ステップ --------*/
.step-box {
    counter-reset: item;
}
.step-box .detail {
	position: relative;
	display: inline-block;
	padding: 25px 25px 17px 100px;
	width: 100%;
	margin-bottom: 30px;
	box-sizing: border-box;
	border: 2px solid #ccc;
	background: #f8f8f8;
}
.step-box .detail:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 34.5px 0 34.5px;
    border-color: #ccc transparent transparent transparent;
    position: absolute;
    left: 15px;
    bottom: -25px;
}
.step-box .detail:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 34.5px 0 34.5px;
    border-color: #F6F6F6 transparent transparent transparent;
    position: absolute;
    left: 15px;
    bottom: -22px;
}
.step-box .detail h4.step-title {
    display: block;
	font-size: 2rem;
	color: var(--main);
	font-weight: normal;
    margin-bottom: 10px;
}
.step-box .detail h4.step-title:before {
    position: absolute;
    top: 20px;
    left: 25px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--sub);
    font-size: 6rem;
    line-height: 1;
    margin-top: -10px;
    counter-increment: item;
    content: counter(item, decimal-leading-zero);
}
.step-box .detail:last-child:before,
.step-box .detail:last-child:after {
    display: none;
}

/*-------- ヒストリー --------*/
.history {
    position: relative;
    counter-reset: item;
    padding-top: 25px;
    overflow: hidden;
}
.history:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    margin-left: -2px;
    background: var(--sub);
}
.history .round {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    margin-top: 15px;
    border-radius: 50%;
    background: var(--sub);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}
.history .content {
    position: relative;
    width: 46.5%;
    padding: 30px;
    margin: 0;
    border: 1px solid #ddd;
    background: #fff;
}
.history .content:after {
    content: "";
    top: 24px;
    left: 100%;
    display: table;
    border-color: transparent;
    border-left-color: var(--sub);
    clear: both;
}
.history .content:before {
    content: '';
    position: absolute;
    top: 24px;
    left: 100%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-left: 15px solid var(--sub);
}
.history .content .day {
    width: 100px;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    padding: 2px 8px;
    margin-bottom: 8px;
    background: var(--main);
}
.history .content h4 {
    color: var(--main);
    padding-bottom: 8px;
    margin-bottom: 7px;
    border-bottom: 1px dotted var(--main);
}
.history .content h4:before {
    position: absolute;
    top: -70px;
    left: 30px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--sub);
    font-size: 7rem;
    counter-increment: item;
    content: counter(item, decimal-leading-zero);
}
.history .block {
    position: relative;
}
.history .block:after {
    content: "";
    display: table;
    clear: both;
}
.history .block:nth-child(even) .content {
    float: right;
}
.history .block:nth-child(even) .content:before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: var(--sub);
}
.history .content img {
    width: 250px !important;
}


/*-------------------------------------------------------------------------------------------*/
/* 　お知らせ（スライダー）
/*-------------------------------------------------------------------------------------------*/
#news-top {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
[id^="news"] {
    width: 100vw;
    margin-top: 200px;
}
#news-box {
    position: relative;
    display: flex;
    border-right: 50px solid var(--main);
}
#news-box div.title {
    width: calc(30% - 32px);
    color: #fff;
    padding: 4% 20px 0;
    background: var(--main);
}
#news-box .title-english {
    line-height: 1.2;
}
.slider-box {
    width: 75%;
    padding: 0 32px;
}
[id^="news"] .title-english {
    color: #fff;
}
[id^="news"] h2.title {
    color: #fff;
    margin-bottom: 0;
}
[id^="news"] h2.title:after {
    display: none;
}
.content-slider {
    width: 100%;
}
.content-slider .slide-media {
    margin-bottom: 20px;
    overflow: hidden;
}
.content-slider .slide-media img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 6/4;
    transition: .8s;
}
.content-slider .swiper-area {
    position: relative;
}
.content-slider .all-btn {
    display: block;
    width: 60px;
    font-size: 1.2rem;
    text-align: center;
    margin: 15px auto 0;
    border: 1px solid var(--link);
}
.content-slider .all-btn:hover {
    color: #fff;
    border: 1px solid #fff;
}
.content-slider .allow-box {
    display: flex;
    position: absolute;
    width: 25%;
    left: 0;
    bottom: 15%;
}
.content-slider .swiper-button-prev,
.content-slider .swiper-button-next {
    position: initial;
    top: 0;
    bottom: 0;
    font-size: 3rem;
    margin: auto;
    z-index: 1;
}
.content-slider .swiper-button-prev {
    margin-right: 25px;
}
.content-slider .swiper-button-next {
    margin-left: 25px;
    right: initial;
}
[id^="news"] .swiper-slide {
    background: #fff;
}
[id^="news"] .swiper-slide .cal {
    position: absolute;
    top: 15px;
    left: 15px;
}
[id^="news"] .swiper-slide h4 {
    color: var(--main);
    font-size: 1.6rem;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
[id^="news"] .swiper-slide .text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 3.2em;
    padding: 0 20px;
}
[id^="news"] .swiper-slide .slide-btn {
    color: #fff;
    line-height: 2.4;
    text-align: center;
    margin-top: 25px;
    background: var(--link);
}
[id^="news"] .swiper-slide a {
    display: block;
    width: 100%;
    color: #666;
    font-size: 1.5rem;
}
[id^="news"] .swiper-slide a:hover img {
    transform: scale(1.4) rotate(8deg);
    opacity: 1;
}
[id^="news"] .swiper-slide a:hover .slide-btn {
    background: var(--link-h);
}
.swiper-button-prev i,
.swiper-button-next i {
    color: var(--link);
}
#news-typeB {
    width: 80%;
    min-width: 1024px;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    transform: translateX(0);
}
#toppage #news-typeB {
    width: 100%;
}
#news-typeB .news {
    margin-top: 30px;
}
#news-typeB .news li {
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 10px 20px;
    margin-bottom: 7px;
    background: #f8f8f8;
}
#news-typeB .news li a {
    display: -webkit-box;
    width: 100%;
    height: 100%;
    color: #333;
    line-height: 45px;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
    padding-left: calc(6em + 10px);
    text-indent: calc(-6em + -2px);
}
#news-typeB .news li a:hover {
    background: #f1f1f1;
}
#news-typeB .news .ymd {
    color: #FFF;
    font-size: 1.3rem;
    padding: 3px 6px 4px;
    margin-right: 12px;
    border-radius: 3px;
    background: var(--sub);
}
#news-typeB .news li i {
    color: var(--main);
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    display: none;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .5 !important;
}


/*-------------------------------------------------------------------------------------------*/
/* 　固定ページ
/*-------------------------------------------------------------------------------------------*/
/*-------- 固定タイトル --------*/
h1.page-title {
    color: #222;
    font-size: clamp(2.8rem, 2.662rem + 0.74vw, 3.4rem);
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 70px;
}
h1.page-title:after {
    content: "";
    display: block;
    width: 2px;
    height: 60px;
    margin: auto;
    background: var(--sub);
}
.title-english {
    font-family: 'Cormorant Garamond', serif;
    color: var(--main);
    font-size: clamp(3rem, 1.909rem + 5.45vw, 6rem) !important;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto !important;
}
.single-content .title-english {
    margin: 0 auto 50px !important;
}
h2.title {
    display: inline-block;
    width: 100%;
    color: var(--main);
    font-size: clamp(2.2rem, 1.982rem + 1.09vw, 2.8rem);
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 40px;
}
h2.title:after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    margin: 10px auto 0;
    background: var(--sub);
}
h3.title {
    display: flex;
    align-items: center;
    color: var(--main);
    font-size: clamp(1.8rem, 1.754rem + 0.25vw, 2rem);
    line-height: 1.4;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--main);
}
h3.title:before {
    content: "";
    width: 20px;
    height: 2px;
    margin-right: 10px;
    background: var(--sub);
}
.notfound p {
    text-align: center;
}

/*-------- テーブル --------*/
.table-time {
    width: 100%;
    border-collapse: collapse;
    border: 1px #ccc solid;
    margin-bottom: 10px;
}
.table-time th {
    color: var(--main);
    font-size: 1.4rem;
    border: 1px #ccc solid;
    background-color: #f4f4f4;
    text-align: center;
    font-weight: normal;
}
.table-time td {
    font-size: 1.2rem;
    border: 1px solid #DADADA;
    border: 1px #ccc solid;
    text-align: center;
}
.table1 {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}
.table1 th {
    color: var(--main);
    text-align: left;
    padding: 10px 0px;
    font-weight: 400;
    border-bottom: #e3e3e3 1px solid;
}
.table1 td {
    text-align: left;
    padding: 10px 0px;
    border-bottom: 1px solid #e3e3e3;
    margin-top: 5px;
}
.table1 th.last,
.table1 td.last {
    border-bottom: none;
}

/*-------- 固定コンテンツ --------*/



/*-------------------------------------------------------------------------------------------*/
/* 　検索結果
/*-------------------------------------------------------------------------------------------*/
.search-archive #no-image {
    display: none;
}
.search-archive .post-list {
    position: relative;
    padding: 20px 160px 20px 30px;
    margin-bottom: 30px;
    background: #fff;
}
.search-archive .post-list span {
    display: inline-block;
    color: var(--sub);
    font-size: 1.4rem;
    margin-bottom: 7px;
    border-radius: 2px;
}
h2.post-list-title {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 5px;
}
h2.post-list-title a {
    color: #222;
}
h2.post-list-title.typeB {
    padding-left: calc(1em + 5px);
    text-indent: calc(-1em + 7px);
}
h2.post-list-title i {
    color: var(--main);
}
h2.post-list-title span {
    float: left;
    display: inline-block;
    min-width: 90px;
    color: var(--main);
    font-size: 1.3rem;
    text-align: center;
    padding: 3px 10px;
    margin-right: 7px;
    border: 1px solid var(--main);
}
.search-archive .blog-button {
    right: 30px;
    bottom: 37px;
}



/*-------------------------------------------------------------------------------------------*/
/* 　スタッフ
/*-------------------------------------------------------------------------------------------*/
.page-staff-big .box {
    display: flex;
    column-gap: 4%;
    padding: 30px;
    margin-bottom: 50px;
    border: 20px solid #f8f8f8;
    background: #fff;
}
.page-staff-big .box picture {
    width: 30%;
}
.page-staff-big .box .staff {
    height: 100%;
    max-height: 400px;
    object-fit: cover;
}
.page-staff-big .box .text-box {
    width: 66%;
}
.page-staff-big .box h3 {
    font: 500 2.4rem/1.2em "Cinzel", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dotted #ccc;
}
.page-staff-big .box div.text {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px dotted #ccc;
}
.page-staff-big .box picture.icon,
.page-staff-small .box picture.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    background: #f1f1f1;
}
.page-staff-small .box picture.icon {
    height: auto;
    margin-bottom: 15px;
    aspect-ratio: 6/5;
}
[class^="page-staff-"] .box h3 span {
    color: #666;
    font-size: 1.2rem;
    margin-left: 10px;
}
[class^="page-staff-"] .box dt {
    color: var(--main);
    padding-left: 3px;
    margin: 20px 0 10px;
    border-left: 2px solid var(--sub);
}
ul.sns {
    display: flex;
    column-gap: 10px;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 1px dotted #ccc;
}
.page-staff-big ul.sns {
    padding-top: 25px;
    margin-top: 20px;
}
ul.sns a {
    position: relative;
    display: block;
    width: 26px;
    height: 26px;
    line-height: 1em;
}
ul.sns li {
    border-radius: 50%;
}
ul.sns li img {
    width: 26px;
    height: 26px;
    padding: 4px;
    object-fit: cover;
}
ul.sns .twi {
    background: #000;
}
ul.sns .fac {
    background: #537bbd;
}
ul.sns .ins {
    background: #f2117b;
}
ul.sns .lin {
    background: #06c755;
}
ul.sns .not {
    background: #41c9b4;
}
.sns .blo {
    background: #f90;
}
ul.sns li span {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 100px;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    padding: 5px;
    background: var(--sub);
    transition: all .5s;
    opacity: 0;
}
ul.sns li span:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: var(--sub) transparent transparent transparent;
}
ul.sns a:hover span {
    opacity: 1;
}
.page-staff-small {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2%;
}
.page-staff-small .box {
    position: relative;
    width: 32%;
    padding: 20px 20px 70px;
    border: 20px solid #f8f8f8;
    background: #fff;
}
.page-staff-small .box .staff {
    margin-bottom: 15px;
    object-fit: cover;
    aspect-ratio: 6/5;
}
.page-staff-small .box h3 {
    font: 500 2.2rem/1.2em "Cinzel", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dotted #ccc;
}
.page-staff-small .box .post {
    font-size: 1.4rem;
    margin-bottom: 5px;
}
[class^="page-staff-"] .box .role {
    font-size: 1.4rem;
    padding: 3px 3px 3px 48px;
    text-indent: -48px;
    line-height: 1.4;
    margin-bottom: 15px;
    background: #f1f1f1;
}
[class^="page-staff-"] .box .role span {
    color: var(--main);
    font-size: 1.4rem;
    padding: 3px;
    background: #f1f1f1;
}
.page-staff-small .box dt {
    color: var(--main);
    margin: 10px 0;
}
.page-staff-small .box dd {
    font-size: 1.4rem;
}
.page-staff-small .box ul {
    justify-content: center;
    position: absolute;
    bottom: 15px;
    width: calc(100% - 40px);
}



/*-------------------------------------------------------------------------------------------*/
/* 　ギャラリー
/*-------------------------------------------------------------------------------------------*/
.page-gallery {
    width: 100%;
    column-count: 3;
    column-width: 7em;
    column-gap: 2%;
    overflow: hidden;
}
.page-gallery .box {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #ddd;
    background: #fff;
    transition: .8s;
}
.page-gallery .box div {
    overflow: hidden;
}
.page-gallery .box img:hover {
    transform: scale(1.2) rotate(5deg);
    opacity: 1;
}
.page-gallery .box h3 {
    color: #fff;
    font-size: 1.4rem;
    padding: 3px 5px;
    margin: 15px 0 15px !important;
    border-left: 2px solid var(--sub);
    background: var(--main);
}
.page-gallery .box .comment {
    font-size: 1.4rem;
}



/*-------------------------------------------------------------------------------------------*/
/* 　カレンダー
/*-------------------------------------------------------------------------------------------*/
.calendar {
    width: 100%;
    padding: 30px 30px 20px;
    border: 20px solid #f8f8f8;
    background: #fff;
}
.calendar iframe {
    width: 100%;
}
.qtip-title,
.qtip-content {
    font-size: 1.4rem;
    line-height: 1.4;
}
.fc-toolbar .fc-left h2 {
    font-size: 1.8rem;
    font-weight: bold;
    padding: 5px 15px;
    border: 1px solid #d3d3d3;
}
.calendar-text {
    color: #f50;
    font-size: 1.4rem;
    margin-bottom: 10px !important;
}



/*-------------------------------------------------------------------------------------------*/
/* 　予約
/*-------------------------------------------------------------------------------------------*/
.reserve {
    width: 100%;
    padding: 30px 30px 20px;
    background: #fff;
}
.reserve ul {
    display: flex;
    column-gap: 20px;
    margin-top: 10px;
}
.reserve ul li {
    color: #000;
    border-bottom: 1px dotted #f30;
}



/*-------------------------------------------------------------------------------------------*/
/* 　Q&A
/*-------------------------------------------------------------------------------------------*/
.faq-box {
    overflow: hidden;
}
.accordion {
    width: 100%;
    margin: 0 auto;
    overflow: auto;
}
.accordion .ac-header {
    position: relative;
    color: #222;
    font-size: 1.8rem;
    padding: 20px 35px 20px 30px;
    border-top: 1px dotted #ccc;
    cursor: pointer;
    transition-duration: 0.2s;
}
.accordion .ac-header:hover {
    background: #f8f8f8;
}
.accordion .ac-header:before {
    content: "\ea0a";
    font-family: "icomoon";
    float: right;
    color: var(--sub);
	font-size: 2rem;
    font-weight: 900;
    margin-right: -30px;
    transition: .5s;
}
.accordion .ac-header.open:before {
    content: "\ea0b";
    font-family: "icomoon";
    transform: rotate(180deg);
}
.accordion .ac-header:after,
.accordion .ac-inner:after {
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 27px;
    font-weight: bold;
    margin: 0 8px -6px 0;
    border-radius: 50%;
}
.accordion .ac-header:after {
    content: "Q";
    top: 20px;
    background: var(--main);
}
.accordion .ac-inner {
    position: relative;
    display: none;
    padding: 0 35px 20px 30px;
    box-sizing: border-box;
}
.accordion .ac-inner:after {
    content: "A";
    top: 0;
    background: var(--sub);
}
.accordion:last-child .ac-header {
    border-bottom: 1px dotted #ccc;
}
.accordion:last-child .ac-header.open {
    border-bottom: none;
}
.accordion:last-child .ac-header:after.open {
    content: "\f068";
}
.accordion:last-child .ac-inner {
    border-bottom: 1px dotted #ccc;
}



/*-------------------------------------------------------------------------------------------*/
/* 　求人情報
/*-------------------------------------------------------------------------------------------*/
.job-box {
    padding: 30px;
    border: 20px solid #f8f8f8;
    background: #fff;
}
.job-box .job {
    overflow: auto;
}
.job-box .job h3 {
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
    background: var(--main);
}
.job-box table li {
    display: block;
}
.job-box table .mail {
    width: 80px;
    color: var(--link);
    text-align: center;
    line-height: 1.2;
    padding: 3px;
    border: 1px solid var(--link);
}
.job-box table .mail:hover {
    color: var(--link-h);
    border: 1px solid var(--link-h);
}
.job-box .btn {
    display: block;
    width: 160px;
    color: #fff;
    text-align: center;
    line-height: 2;
    margin: 5px auto;
    border-radius: 3px;
    background: var(--link);
}
.job-box .btn:hover {
    background: var(--link-h);
}



/*-------------------------------------------------------------------------------------------*/
/* 　会社概要
/*-------------------------------------------------------------------------------------------*/
.campany-format .tableA .sns {
    display: flex;
    column-gap: 10px;
}
.campany-format .tableA .sns a,
.campany-format .tableA .sns li img {
    width: 30px;
    height: 30px;
}
.campany-format .sns-line {
    display: flex;
    column-gap: 15px;
    margin-top: 20px;
}
.campany-format .sns-line img {
    height: 40px;
}
#map-top {
    width: 100%;
}
.acf-map {
    width: 100%;
    height: 400px;
    margin: 0;
    border: 20px solid #f8f8f8;
}
.acf-map img {
    max-width: inherit !important;
}



/*-------------------------------------------------------------------------------------------*/
/* 　投稿ページ
/*-------------------------------------------------------------------------------------------*/
/*-------- 投稿ヘッダ --------*/
.single-content .header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 50px;
    background: none;
}
.cal {
    position: relative;
    width: 80px;
    min-width: 80px;
    height: 80px;
    color: #FFF;
    text-align: center;
    padding: 3px 10px 5px;
    margin: 0 10px 0 0;
    border-radius: 3px;
    background: var(--main);
}
.cal p:nth-child(1) {
    width: 30px;
    font-size: 1.8rem;
    font-weight: bold;
    margin: auto;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.cal p:nth-child(2) {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 0px;
}
.cal p:nth-child(3) {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.2;
    border-radius: 0 0 3px 3px;
    background: var(--link);
}
.blog-info {
    flex-grow: 1;
    color: #666;
    font-size: 1.2rem;
    padding: 0px;
}
.blog-info ul {
    display: flex;
    min-height: 30px;
    padding: 5px 0;
    margin-top: 13px;
    border-top: 1px solid var(--main);
    border-bottom: 1px solid var(--main);
}

/*-------- 投稿タイトル --------*/
.post-title {
    color: #222;
    font-size: clamp(2rem, 1.908rem + 0.49vw, 2.4rem);
    line-height: 1.4;
    margin-bottom: 8px;
}

/*-------- 投稿コンテンツ --------*/
.single-post {
    word-wrap: break-word;
    padding: 30px;
    margin-bottom: 20px;
    border: 20px solid #f8f8f8;
    background: #fff;
    overflow: auto;
}
.single-post p {
    font-size: 1.6rem;
}

/*-------- 投稿ソーシャルボタン --------*/
.social-sharing {
    height: 32px;
    margin-top: 70px;
}
.social-sharing ul {
    display: flex;
    justify-content: center;
}
.social-sharing li {
    margin: 0px 5px;
}
.social-sharing li img:hover {
    transform: scale(1, 1);
}
.social-sharing .line {
    width: 32px;
    height: 32px;
    padding: 1px;
    background: #00b900;
}
.social-sharing a img:hover {
    opacity: 1;
    transform: scale(1);
}

/*-------- 投稿ページナビ --------*/
.pagenav {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}
.pagenav a {
    display: inline-block;
    width: 100px;
    text-align: center;
    padding: 6px 15px;
    border-radius: 3px;
    border: 1px solid var(--link);
    background: #fff;
}
.pagenav a:hover {
    border: 1px solid var(--link-h);
}
.prev a:before {
    content: "\f053";
    font-family: "icomoon";
    color: var(--sub);
    font-size: 1.2rem;
    margin-right: 10px;
}
.next a:after {
    content: "\f054";
    font-family: "icomoon";
    color: var(--sub);
    font-size: 1.2rem;
    margin-left: 10px;
}

/*-------- ツールチップ --------*/
[data-tooltip] {
    position: relative;
    display: inline-block;
    color: #F60;
    border-bottom: 1px dotted #F60;
}
[data-tooltip]:before,
[data-tooltip]:after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: 999999;
}
[data-tooltip]:before {
    content: '';
    position: absolute;
    border-width: 6px;
    border-style: solid;
    border-color: transparent;
}
[data-tooltip]:after {
    height: 22px;
    padding: 11px 11px 0;
    font-size: 1.2rem;
    line-height: 11px;
    content: attr(data-tooltip);
    white-space: nowrap;
    border-radius: 4px;
}
[data-tooltip]:hover,
[data-tooltip]:focus {
    background-color: transparent;
}
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after {
    visibility: visible;
    opacity: 1;
}
.tooltip-top.tooltip-movable:before,
.tooltip-top.tooltip-movable:after {
    transition: all .1s linear;
}
.tooltip-top.tooltip-movable:before {
    margin-bottom: -15px;
}
.tooltip-top.tooltip-movable:after {
    margin-bottom: -3px;
}
.tooltip-top.tooltip-movable:hover:before,
.tooltip-top.tooltip-movable:hover:after {
    transform: translateY(-10px);
}
.tooltip-top:before,
.tooltip-top:after {
    left: 30%;
}
.tooltip-top:after {
    margin-left: -120px;
    height: auto;
    width: 150px;
    padding: 11px;
    line-height: 19px;
    white-space: normal;
    text-align: left;
}
.tooltip-top:after {
    margin-bottom: 7px;
}
[data-tooltip].tooltip-top:after {
    color: #fff;
    background: var(--sub);
}
[data-tooltip].tooltip-top:before {
    border-top-color: var(--sub);
}
.tooltip-top:before,
.tooltip-top:after {
    bottom: 100%;
}
.tooltip-top:before {
    margin-bottom: -5px;
}
[data-tooltip].social {
    border-bottom: none;
}
[data-tooltip].social:after {
    text-align: center;
    width: 120px;
}



/*-------------------------------------------------------------------------------------------*/
/* 　投稿テキストエディタボタン
/*-------------------------------------------------------------------------------------------*/
strong {
    color: var(--main);
    text-decoration: underline dotted #f10;
}
del {
    text-decoration: var(--link) line-through;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
h3.editor {
    position: relative;
    color: var(--main);
    font-size: clamp(2.1rem, 1.867rem + 0.53vw, 2.4rem);
    line-height: 1.6;
    padding-left: 0.5em;
    padding-bottom: 8px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--main);
}
h3.editor:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    display: inline-block;
    width: 4px;
    height: 22px;
    background: var(--main);
}
h4.editor {
    display: inline-block;
    color: var(--main);
    font-size: 1.7rem;
    line-height: 1.7;
    padding-bottom: 3px;
    margin: 10px 0;
    border-bottom: 1px solid var(--main);
}
.btn1,
.btn2 {
    position: relative;
    display: inline-block;
    color: var(--main);
    line-height: 1.6;
    padding: 3px 50px 3px 0px;
    margin: 10px 0;
    border-bottom: 1px solid var(--link);
}
.btn1:hover,
.btn2:hover {
    color: #fff;
    padding: 3px 50px 3px 10px;
    border: 1px solid var(--link);
    background: var(--link);
}
.btn1:after {
    content: "\f178";
    font-family: "icomoon";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.btn2:after {
    content: "\f24d";
    font-family: "icomoon";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.box1 {
    padding: 40px;
    margin: 20px 0;
    background: #fbfbfb;
}
.box2 {
    padding: 40px;
    margin: 20px 0;
    border: 1px solid #ddd;
}
.box3 {
    position: relative;
    padding: 40px;
    margin: 20px 0;
    border: 1px solid #f1d8d4;
    background: #faf3f2;
}
.column1,
.column2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 2%;
    margin-bottom: 20px;
}
.column1 div {
    padding: 30px;
    background: #fbfbfb;
}
.column1 div.two,
.column2 div.two {
    flex: 0 0 49%;
}
.column1 div.three,
.column2 div.three {
    flex: 0 0 32%;
}
.column1 div.four,
.column2 div.four {
    flex: 0 0 23.5%;
}
.column1 div.five,
.column1 div.others,
.column2 div.five,
.column2 div.others {
    flex: 0 0 18.4%;
}
.column1 h4,
.column2 h4 {
    color: var(--main);
    font-size: 1.8rem;
    padding-bottom: 2px;
    margin-bottom: 5px;
    border-bottom: 1px dotted #ccc;
}
.column2 div {
    padding: 30px;
    border: 1px solid #ddd;
}
.column1 div p,
.column2 div p {
    line-height: 1.8;
    margin-bottom: 20px !important;
}
.column1 div p:last-of-type,
.column2 div p:last-of-type {
    margin-bottom: 0 !important;
}
.list1 {
    color: #333;
    margin: 10px 0;
}
.list1 li {
    padding: 8px 0;
    padding-left: calc(1em + 5px);
    text-indent: calc(-1em + -4px);
}
.list1 li + li {
    border-top: 1px dotted #ccc;
}
.list1 li:before {
    content: "\ea42";
    font-family: "icomoon";
    color: var(--main);
    font-size: 1.4rem;
    margin-right: 7px;
}
.list2 {
    counter-reset: li;
    color: #333;
    margin: 10px 0;
}
.list2 li {
    padding: 4px 0;
    text-indent: -1.2em;
    padding-left: 1.2em;
}
.list2 li:before {
    content: counter(li, decimal) ". ";
    counter-increment: li;
    color: var(--main);
}
.line-list1 {
    width: 200px;
    margin: 30px auto;
    border-style: none;
    border-width: 0;
}
.list2 li + li {
    border-top: 1px dotted #ccc;
}
.list3 {
    display: flex;
    column-gap: 4%;
}
.list3 li {
    color: var(--main);
    padding: 5px 15px;
    border: 1px solid var(--sub);
}
.line-list1::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 20px;
    background: radial-gradient(circle farthest-side, #eee, #eee 60%, transparent 60%, transparent);
    background-size: 20px 20px;
}
.space {
    height: 20px;
    border-style: none;
    border-width: 0;
}



/*-------------------------------------------------------------------------------------------*/
/* 　事例詳細
/*-------------------------------------------------------------------------------------------*/
.single-case {
    padding: 80px;
    border: 20px solid #f8f8f8;
    background: #fff;
}
.single-case .image-orver img,
.case-list .image-orver img {
    object-fit: cover;
    aspect-ratio: 6/3;
}
.single-case .case-info,
.case-list .case-info {
    position: relative;
    padding-top: 70px;
}
.single-case .case-info {
    padding-top: 100px;
}
.case-list h3 {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    color: var(--main);
    font-size: clamp(2rem, 1.862rem + 0.74vw, 2.6rem);
    line-height: 1.6;
    text-align: center;
    background: #fff;
}
.single-case h2 {
    width: 80%;
    color: var(--main);
    font-size: clamp(2rem, 1.862rem + 0.74vw, 2.6rem);
    line-height: 1.6;
    text-align: center;
    margin: -50px auto 60px;
    background: #fff;
}
.single-case h3,
.case-list h4 {
    color: var(--main);
    font-size: 1.8rem;
    line-height: 1.6;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px dotted #ccc;
}
.single-case .day,
.case-list .day {
    line-height: 30px;
    margin-bottom: 20px;
}
.single-case .day span,
.case-list .day span {
    position: relative;
    display: inline-block;
    width: 80px;
    color: #fff;
    font-size: 1.4rem;
    line-height: 30px;
    text-align: center;
    padding: 0 15px;
    margin-right: 20px;
    background: var(--main);
    z-index: 0;
}
.single-case .day span:after,
.case-list .day span:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    display: block;
    width: 0px;
    height: 0px;
    margin-top: -10px;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--main);
}
.single-case .comment {
    margin-bottom: 100px;
}
.single-case .free {
    margin-bottom: 50px;
    overflow: auto;
}
.single-case .free:last-child {
    margin-bottom: 0;
}
.single-case .gallery-box img {
    margin-bottom: 10px;
}
.single-case .gallery-box div h5 {
    display: block;
    width: 100%;
    color: var(--main);
    font-size: 1.8rem;
    text-align: center;
    padding: 5px;
}
#content .single-case .gallery-box {
    gap: 30px 4%;
}
#content .single-case .gallery-box div {
    width: 22%;
}



/*-------------------------------------------------------------------------------------------*/
/* 　投稿一覧
/*-------------------------------------------------------------------------------------------*/

/*-------- 投稿一覧リスト --------*/
.post-archive .post-list {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    margin-bottom: 30px;
    padding: 30px;
    border: 20px solid #f8f8f8;
    background: #fff;
}
.post-archive section:last-child {
    margin-bottom: 150px;
}

/*-------- アイキャッチ --------*/
.post-archive .image-orver {
    width: 180px;
    background: var(--main);
    overflow: hidden;
}
.post-archive .image-orver img {
    height: 100%;
    object-fit: cover;
    transition: .8s;
}
.post-archive .image-orver img:hover {
    transform: scale(1.2) rotate(5deg);
    opacity: 1;
}

/*-------- 投稿情報 --------*/
.post-archive .blog-info {
    flex-basis: 100%;
    flex-shrink: 20;
    position: relative;
    padding-bottom: 40px;
}
.post-archive .blog-info ul {
    display: flex;
    flex-wrap: wrap;
    min-height: 35px;
    color: #666;
    padding: 8px 0 4px;
    margin: 10px 0;
    border-top: 1px dotted #ccc;
    border-bottom: 1px dotted #ccc;
}
.post-archive .blog-info .data:before {
    content: "\f073";
    font-family: "icomoon";
}
.post-archive .blog-info li,
.post-archive .blog-info li a {
    font-size: 1.2rem;
}
.blog-comment {
    display: block;
    font-size: 1.4rem;
    overflow: hidden;
}
.blog-button {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    font-size: 1.2rem;
    padding: 5px 20px 3px;
    margin-top: 16px;
    border: 1px solid var(--link);
}
.blog-button:before {
    content: "\f105";
    font-family: "icomoon";
    color: var(--sub);
    font-size: 1.2rem;
    margin-right: 7px;
}
.blog-button:hover {
    color: #FFF;
    border: 1px solid var(--link-h);
    background: var(--link-h);
}
.blog-info li {
    margin: 0 15px 0 5px;
    justify-content: center;
}
.blog-info li {
    font-size: 1.2rem;
}
.blog-info li a {
    color: #666;
}
.blog-info li a:hover,
.blog-info-single li a:hover {
    color: var(--link-h);
}
.blog-info li:before {
    font-family: "icomoon";
    color: var(--sub);
    margin-right: 7px;
}
.blog-info li.cat:before {
    content: "\e930";
}
.blog-info li.date:before {
    content: "\f073";
}
.blog-info li.tag:before {
    content: "\e935";
}

/*-------- ページナビゲーション --------*/
.pagination {
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1.7;
    text-align: center;
    margin: 50px 0 150px;
    border-radius: 25px;
}
.pagination .current {
    margin: 0 2px;
    width: 30px;
    height: 30px;
    color: #fff;
    padding-top: 3px;
    padding-bottom: 5px;
    border-radius: 15px;
    background: var(--link);
}
.pagination a {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 2px;
    padding-top: 3px;
    padding-bottom: 5px;
    border-radius: 25px;
}
.pagination a:hover {
    color: #fff;
    border-radius: 15px;
    background: var(--link-h);
}
.pagination a:before {
    display: inline-block;
    color: var(--link);
    font-size: 2rem;
    margin-top: -5px;
}
.pagination a:hover:before {
    color: #fff;
}
.previous-button a:before {
    font-family: "icomoon";
    content: "\e946";
}
.first-button a:before {
    font-family: "icomoon";
    content: "\e94e";
}
.next-button a:before {
    font-family: "icomoon";
    content: "\e940";
}
.last-button a:before {
    font-family: "icomoon";
    content: "\e94d";
}



/*-------------------------------------------------------------------------------------------*/
/* 　事例一覧
/*-------------------------------------------------------------------------------------------*/
.case-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 4%;
    overflow: hidden;
}
.case-list .case {
    position: relative;
    width: 48%;
    min-width: 48%;
    padding: 30px;
    border: 20px solid #f8f8f8;
    background: #fff;
}
.case-list .case img {
    aspect-ratio: 6/4;
}
.case-list .case h3 {
    top: -35px;
    font-size: 1.8rem;
    padding: 25px 5% 5px;
}
.case-list .case h4 {
    font-size: 1.7rem;
    margin-bottom: 15px;
}
.case-list .day {
    margin-bottom: 15px;
}
.case-list .comment {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-top: -25px;
}
.case-list .comment.detail {
    margin-top: 0;
    margin-bottom: 25px;
}
.case-list a {
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 100px;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8;
    background: var(--link);
}
.case-list a:hover {
    background: var(--link-h);
}
.case-list a:hover i {
    margin-left: 10px;
}



/*-------------------------------------------------------------------------------------------*/
/* 　サイドバー
/*-------------------------------------------------------------------------------------------*/
.post-archive #content .flex,
.single-content #content .flex {
    display: flex;
    justify-content: space-between;
}
.post-archive #content .flex .content,
.single-content #content .flex .content {
    width: 100%;
}
.post-archive #content .flex .content.sidebar,
.single-content #content .flex .content.sidebar {
    width: calc(100% - 320px);
}

/*-------- ブロック --------*/
#sidebar .widget {
    font-size: 1.4rem;
    padding: 20px;
    margin-bottom: 20px;
    border: 20px solid #f8f8f8;
    background: #fff;
}

/*-------- タイトル --------*/
#sidebar .widget h3 {
    color: var(--main);
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding-bottom: 7px;
    border-bottom: 3px solid var(--main);
}

/*-------- 最近の投稿 --------*/
.new-postA .post,
.new-postB .post {
    position: relative;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    transition: .3s;
}
.new-postA a .post .img {
    width: 100%;
    background: var(--main);
    overflow: hidden;
}
.new-postA a .post img {
    transition: .8s;
}
.new-postA a:hover .post img {
    transform: scale(1.2) rotate(5deg);
    opacity: 1;
}
.new-postA a:last-child .post,
.new-postB a:last-child .post {
    margin-bottom: 0;
}
.new-postA h4,
.new-postB h4 {
    color: var(--main);
    line-height: 1.4;
    margin-top: 8px;
}
.new-postA .date,
.new-postB .date {
    font-size: 1.2rem;
}
.new-postA .date:before {
    content: "\f073";
    font-family: "icomoon";
    color: #999;
    font-size: 1.2rem;
    margin-right: 7px;
}
.new-postA img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 6/4;
}
.new-postA .cal {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 3px 5px 5px;
    margin: 0;
}
.new-postA .cal p:nth-child(1),
.new-postB .cal p:nth-child(1) {
    font-size: 1.1rem;
    line-height: 1.5;
}
.new-postA .cal p:nth-child(2),
.new-postB .cal p:nth-child(2) {
    line-height: 1;
}
.new-postA .cal p:nth-child(3),
.new-postB .cal p:nth-child(3) {
    font-size: 1.1rem;
    line-height: 1.2;
}
.new-postB .post {
    display: flex;
    align-items: center;
    column-gap: 7px;
    border: none;
    border-bottom: 1px solid #eee;
}
.new-postB .cal {
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 3px 5px 5px;
    margin: 0;
}
.new-postA h4,
.new-postB h4 {
    margin-top: 0;
}

/*-------- カテゴリー --------*/
.widget_categories li a {
    display: block;
    padding: 5px 0;
    border-bottom: 1px dotted #ccc;
}
.widget_categories li a:before {
    content: "\e930";
    font-family: "icomoon";
    color: var(--sub);
    margin-right: 10px;
}

/*-------- アーカイブ --------*/
label.screen-reader-text {
    display: none;
}
.widget_archive select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    margin: 0;
    padding: 11px 15px 11px 35px;
    line-height: 1.5;
    background-color: #ffffff;
    background-image: -webkit-linear-gradient(top, #ffffff 0%, #dfe0d9 100%);
    background-image: linear-gradient(top, #ffffff 0%, #dfe0d9 100%);
    border: 1px solid #c0c0c0;
}
.widget_archive:after {
    content: "\f078";
    font-family: "icomoon";
    position: absolute;
    color: var(--sub);
    font-size: 1.4rem;
    padding-left: 5px;
    margin-top: -35px;
    margin-left: 10px;
    z-index: 2;
}

/*-------- タグ --------*/
.tag-box .ac-header {
    font-size: 1.4rem;
    padding: 10px 40px 10px 20px;
    border: 1px dotted #ccc;
}
.tag-box .ac-header:before {
    font-size: 1.4rem;
}
.tag-box .ac-header:after,
.tag-box .ac-inner:after {
    display: none;
}
.tag-box .ac-inner {
    padding: 10px;
    border: 1px dotted #ccc;
    border-top: none;
}
.tagcloud {
    display: flex;
    flex-wrap: wrap;
}
.widget_tag_cloud a {
    color: #fff;
    font-size: 1.2rem !important;
    text-align: center;
    line-height: 1.2;
    padding: 4px 10px;
    margin: 5px 3px 0 0;
    border-radius: 3px;
    background: var(--link);
    transition: 0.5s;
}
.widget_tag_cloud a:hover {
    color: #fff;
    background: var(--link-h);
}

/*-------- カレンダー --------*/
#wp-calendar {
    width: 100%;
    font-size: 1.2rem;
    border: none
}
#wp-calendar caption {
    color: var(--main);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
#wp-calendar thead {
    font-size: 1.2rem;
}
#wp-calendar thead th {
    color: #fff;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 26px;
    text-align: center;
    padding: 0;
    border: 1px solid #fff;
    background: var(--main);
}
#wp-calendar tfoot,
#wp-calendar tfoot td {
    background: none;
    border: none;
    font-size: 1.2rem;
    text-align: left;
    padding: 0;
}
#wp-calendar tfoot tr {
    border: none;
}
#wp-calendar td:first-child {
    font-weight: normal;
}
#wp-calendar tbody td {
    color: #555;
    font-size: 1.2rem;
    text-align: center;
    padding: 3px 0 2px;
    border: 1px solid #fff;
    background: #eee;
}
#wp-calendar tbody td a {
    font-size: 1.2rem;
}
#wp-calendar tbody .pad {
    background: none;
}
#wp-calendar tfoot #next {
    text-align: right;
}



/*-------------------------------------------------------------------------------------------*/
/* 　フッダ
/*-------------------------------------------------------------------------------------------*/
/*-------- フッダコンテンツ --------*/
#footer li.name {
    font-size: 1.8rem;
}
#footer li.tel {
    color: var(--link);
    font-size: 2.4rem;
    font-weight: bold;
}
#footer li.mail a {
    color: #fff;
    font-size: 2rem;
    padding: 10px 40px;
    border-radius: 3px;
    background: var(--link);
}
#footer li.mail a:hover {
    color: var(--link);
    background: #fff;
}
#footer .footer-content {
    display: flex;
    justify-content: center;
    gap: 30px 6%;
    margin-top: 40px;
}
#footer .footer-content div {
    width: 100%;
    color: rgba(255,255,255,.7);
}
#footer h3 {
    color: #fff;
    font-size: 1.8rem;
    padding-bottom: 5px;
}
#footer a {
    color: #666;
}
#footer a:hover {
    color: var(--link-h);
}
.footer-logo {
    width: 250px;
    margin-bottom: 10px;
}
.footer-logo-text {
    color: var(--main);
}
.under-btn {
    display: none;
}
.footer-under {
    text-align: center;
    padding: 20px 10px;
    background: var(--main);
}
.copyright {
    font-size: 1.2rem;
    color: #FFF;
    margin-top: -5px;
}
#footer ul.sns {
    justify-content: center;
    padding-top: 30px;
    margin-top: 50px;
}
#footer-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 4%;
    overflow: hidden;
}
#footer-btn a {
    width: 22%;
}

/*-------- ページスクロール --------*/
#page-scroll {
    position: fixed;
    right: 20px;
    bottom: 31px;
    text-align: center;
    z-index: 100;
}
#page-scroll .fa-angle-up {
    width: 40px;
    height: 40px;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background: var(--sub);
    transition: all 0.3s;
}
#page-scroll .fa-angle-up:hover {
    border-radius: 5px;
    background: var(--sub);
}




/*-------------------------------------------------------------------------------------------*/
/* 　フォーム
/*-------------------------------------------------------------------------------------------*/
div.wpcf7 {
    margin: 0;
    padding: 0;
}
form.wpcf7-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.wpcf7 span.wpcf7-not-valid-tip {
    display: none;
}
.wpcf7-not-valid {
    background: #fef0f0;
}
.wpcf7 .wpcf7-response-output {
    margin: 25px auto 0 !important;
    padding: 12px 20px !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid #f33 !important;
    border-radius: 4px;
}
.wpcf7 .wpcf7-validation-errors {
    width: 100%;
    color: #B94A48;
    background-color: #F2DEDE;
    border: 1px solid #EED3D7;
    margin-bottom: 20px;
}
.wpcf7 .wpcf7-mail-sent-ok {
    width: 100%;
    color: #3A87AD;
    background-color: #D9EDF7;
    border: 1px solid #BCE8F1;
    margin-bottom: 20px;
}
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=tel],
.wpcf7 select {
    width: 100%;
    height: 40px;
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 10px;
    margin-top: 5px;
    nowhitespace: afterproperty;
    -webkit-appearance: none;
    border: solid 1px #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}
textarea {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 10px;
    margin-top: 5px;
    nowhitespace: afterproperty;
    -webkit-appearance: none;
    border: solid 1px #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}
form.wpcf7-form input[type=text]:focus,
form.wpcf7-form input[type=password]:focus,
form.wpcf7-form input[type=email]:focus,
form.wpcf7-form input[type=url]:focus,
form.wpcf7-form input[type=tel]:focus,
form.wpcf7-form textarea:focus {
    box-shadow: 0 0 8px rgba(116, 115, 6, 0.28);
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=tel]:focus,
textarea:focus,
input[type=reset]:hover {
    border-color: var(--link);
}
.wpcf7 form {
    display: flex;
    column-gap: 5%;
}
.wpcf7 p {
    color: var(--main);
    margin-bottom: 20px;
}
.wpcf7 label {
    color: #555;
}
.wpcf7 .dual {
    width: 47.5%;
}
.wpcf7 .full {
    width: 100%;
}
.wpcf7 .approval {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    margin-top: 15px;
}
.wpcf7 .approval .wpcf7-form-control-wrap {
    display: block;
    width: 255px;
    font-size: 1.8rem;
    text-align: center;
    padding: 20px 10px;
    border: none;
    border-radius: 3px;
    background: var(--link);
    transition: 0.5s;
}
.wpcf7 .approval .wpcf7-form-control-wrap label {
    color: #fff !important;
}
.wpcf7 .approval input[type="checkbox" i] {
    width: 25px;
    height: 25px;
    vertical-align: top;
}
input[type=submit] {
    display: block;
    width: 33%;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 0.5rem;
    padding: 20px 10px;
    border: none;
    border-radius: 3px;
    background: var(--link);
    transition: 0.5s;
    -webkit-appearance: none;
}
input[type=submit]:hover {
    color: #fff;
    background: var(--link-h);
}
.wpcf7-spinner {
    margin: 0 !important;
}
.wpcf7 .approval .wpcf7-list-item {
    margin: 0;
}
.wpcf7-spinner {
    position: absolute !important;
    bottom: -40px;
    display: block !important;
}
.wpcf7 .star:before {
    content: "必須";
    color: #fff;
    font-size: 1.2rem;
    padding: 3px 5px;
    margin-left: 5px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 3px;
    background: #f33;
}

/*-------- reCAPTCHA --------*/
.grecaptcha-badge {
    visibility: hidden;
}
.recaptcha_policy {
    width: 100%;
    color: #444 !important;
    font-size: 11px !important;
    text-align: center;
    padding: 0;
    margin: 0;
}
.recaptcha_policy a {
    color: #111 !important;
    font-size: 11px !important;
}




/*-------------------------------------------------------------------------------------------*/
/* 　スライダー
/*-------------------------------------------------------------------------------------------*/
/*-------- トップヘッダー --------*/
#header-top-img .slider-fadeIn .swiper-pagination {
    bottom: 50px !important;
}
#header-top-img .swiper-slide .slide-media img {
    transform: scale(1);
}
#header-top-img .swiper-slide[class*="-active"] .slide-media img {
    animation: mv01-fadeIn 6s;
}
@keyframes mv01-fadeIn {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}



/*-------------------------------------------------------------------------------------------*/
/* 　検索
/*-------------------------------------------------------------------------------------------*/
#search-wrap #searchform {
    position: relative;
    width: 100%;
    display: flex;
    height: 46px;
}
#search-wrap #s {
    width: calc(100% - 120px);
    height: 46px;
    font-size: 1.4rem;
    padding: 0px 8px;
    margin-top: 0;
    border: none;
    background: #fff;
    z-index: 10;
    outline: 0;
}
#search-wrap #searchsubmit {
    position: absolute;
    right: 0px;
    height: 46px;
    padding: 0 30px;
    border-radius: 5px;
    background: var(--link);
    z-index: 90;
}
#search-wrap #searchsubmit:hover {
    background: var(--link-h);
}
#search-wrap {
    opacity: 0;
}
#search-wrap.panelactive {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    z-index: 30;
    transition: all 0.6s;
    opacity: 1;
}
#search-wrap #search {
    display: none;
}
#search-wrap.panelactive #search {
    display: block;
    width: 50%;
}
.open-btn {
    width: 35px;
    height: 35px;
    color: #fff;
    font-size: 1.8rem;
    line-height: 35px;
    text-align: center;
    margin-left: 3px;
    border-radius: 50%;
    background: var(--link);
    cursor: pointer;
    z-index: 31;
}
.open-btn:hover {
    color: var(--link);
    background: #fff;
}
.close-btn {
    display: none;
}
#search-wrap.panelactive .close-btn {
    position: relative;
    top: -50px;
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 2rem;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--link);
    cursor: pointer;
    z-index: 2;
}
.close-btn:hover {
    background: var(--link-h);
    animation: spin 3s linear infinite;
    animation-iteration-count: 1;
}





/*-------------------------------------------------------------------------------------------*/
/* 　コンテンツフェードイン
/*-------------------------------------------------------------------------------------------*/
.fadein,
.fadein [class^="column-box"] .box,
.fadein .gallery-box div,
.faq-box .accordion,
.page-gallery .box,
.download.fadein div a,
#footer-btn a,
#service .box img,
#service .box div.text,
.step-box .detail,
.case-list .case,
.page-staff-big .box,
.page-staff-small .box,
.history .block .content,
.tab [class^="tab"],
.tab .tab-detail {
    opacity: 0;
    transition-duration: .8s;
    transition-property: opacity, transform;
}
.fadein-up {
    transform: translate(0, 200px);
}
.fadein-down {
    transform: translate(0, -200px);
}
.fadein-left {
    transform: translate(-200px, 0);
}
.fadein-right {
    transform: translate(200px, 0);
}
/*-------- カラム --------*/
.fadein [class^="column-box"] .box {
    transform: translate(0, 500px);
}
.fadein [class^="column-box"] .box:first-child {
    transform: translate(-500px, 0);
}
.fadein [class^="column-box"] .box:last-child {
    transform: translate(500px, 0);
}
/*-------- 画像ギャラリー --------*/
.fadein .gallery-box div {
    transform: translate(0, 500px);
}
.fadein .gallery-box div:nth-child(1),
.fadein .gallery-box div:nth-child(5),
.fadein .gallery-box div:nth-child(9) {
    transform: translate(-500px, 0);
}
.fadein .gallery-box div:nth-child(4n) {
    transform: translate(500px, 0);
}
/*-------- Q&A --------*/
.faq-box .accordion:nth-child(odd) {
    transform: translate(-500px, 0);
}
.faq-box .accordion:nth-child(even) {
    transform: translate(500px, 0);
    transition-delay: .6s;
}
/*-------- ギャラリーページ --------*/
.page-gallery .box:nth-child(odd) {
    transform: translate(-500px, 0);
}
.page-gallery .box:nth-child(even) {
    transform: translate(500px, 0);
    transition-delay: .6s;
}
/*-------- ダウンロード --------*/
.download a:nth-child(odd) {
    transform: translate(-500px, 0);
}
.download a:nth-child(even) {
    transform: translate(500px, 0);
    transition-delay: .6s;
}
/*-------- ステップ --------*/
.step-box .detail {
    transform: translate(0, 200px);
}
/*-------- 事例 --------*/
.case-list .case:nth-child(odd) {
    transform: translate(-500px, 0);
}
.case-list .case:nth-child(even) {
    transform: translate(500px, 0);
}
/*-------- スタッフ --------*/
.page-staff-big .box,
.page-staff-small .box {
    transform: translate(0, 200px);
}
/*-------- ヒストリー --------*/
.history .block:nth-child(odd) .content {
    transform: translate(-200px, 0);
}
.history .block:nth-child(even) .content {
    transform: translate(200px, 0);
}
/*-------- タブ --------*/
.tab ul[class^="tab"] {
    transform: translate(-200px, 0);
}
.tab .tab-detail {
    transform: translate(200px, 0);
}
/*-------- フッダーボタン --------*/
#footer-btn a {
    transform: translate(0, 200px);
}
#footer-btn a:first-child {
    transform: translate(-200px, 0);
}
#footer-btn a:last-child {
    transform: translate(200px, 0);
}
/*-------- サービス --------*/
#service .box:nth-child(odd) img {
    transform: translate(-500px, 0);
}
#service .box:nth-child(even) img {
    transform: translate(500px, 0);
}
#service .box:nth-child(odd) div {
    transform: translate(500px, 0);
}
#service .box:nth-child(even) div {
    transform: translate(-500px, 0);
}

.scroll-in,
.fadein.scroll-in [class^="column-box"] .box,
.fadein.scroll-in .gallery-box div,
.faq-box.scroll-in .accordion,
.page-gallery.scroll-in .box,
.download.fadein.scroll-in div a,
#footer-btn.scroll-in a,
#service .box.scroll-in img,
#service .box.scroll-in div,
.step-box .detail.scroll-in,
.case-list .case.scroll-in,
.page-staff-big .box.scroll-in,
.page-staff-small .box.scroll-in,
.history  .block.scroll-in .content,
.tab.scroll-in [class^="tab"],
.tab.scroll-in .tab-detail {
    opacity: 1;
    transform: translate(0, 0);
}



/*-------------------------------------------------------------------------------------------*/
/* 　サイドコンテンツ
/*-------------------------------------------------------------------------------------------*/
#sidenbtn-box {
    position: fixed;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    z-index: 9999;
}
[id^="side-content"] {
    position: fixed;
    top: 0;
    right: -120%;
    width: 450px;
    height: 100vh;
    color: #fff;
    background: var(--main);
    z-index: 999;
    transition: all 0.6s;
}
[id^="side-content"].panelactive {
    right: 0;
}
#side-contentA .zoom-instagram {
    margin-bottom: 50px;
}
/*高さ超えた場合縦スクロール*/
[id^="side-content"].panelactive #side-contentA-list,
[id^="side-content"].panelactive #side-contentB-list {
    right: 0;
    width: 450px;
    height: 100vh;
    padding: 70px;
    z-index: 999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
[class^="sidenbtn"] {
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    line-height: 50px;
    margin: 5px 0;
    background: var(--sub);
}
[class^="sidenbtn"] span {
    position: absolute;
    top: 0;
    right: 50px;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 1.4rem;
    line-height: 50px;
    text-align: center;
    background: var(--main);
    opacity: 0;
    transition: all 0.6s;
}
[class^="sidenbtn"]:hover span {
    opacity: 1;
}
[class^="sidenbtn"]:hover.active span {
    opacity: 0;
}
[class^="sidenbtn"]:before {
    font-family: "icomoon";
    content: "\f004";
}
.sidenbtnB:before {
    content: "\e970";
}
[class^="sidenbtn"].active:before {
    font-family: "icomoon";
    content: "\f00d";
}
#side-contentB #sidebar {
    width: 100%;
}
.twitter-timeline {
    background: #fff;
}
.instagram-media  {
    width: 100% !important;
    min-width: 100% !important;
}