@charset "utf-8";

html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    background: linear-gradient(rgba(253, 252, 251, 0.2), rgba(226, 209, 195, 0.25)), url(../img/back-image.png);
    background-size: cover;
    background-repeat: repeat;
    background-position: center 0;
    background-attachment: fixed;
    color: #42332c;
}
body.noscroll{
    overflow: hidden;
}
a{
    display: inline-block;
    text-decoration: none;
    color: #42332c;
}
section{
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 200px;
}
.sec-head{
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 100px;
    border-bottom: solid 1px #42332c;
}
h1{font-size: 48px;}
h2{font-size: 40px;}
h3{font-size: 32px;}
h4{font-size: 24px;}
h5{font-size: 18px;}

.anchor_link{
    position: relative;
    z-index: 5;
    top: 0;
    right: 0;
}
.top-anchor_link > .inner{
    opacity: 0;
    animation: slideDown 1s ease-in forwards;
    animation-delay: 4s;
}
.anchor_link .inner{
    position: absolute;
    top: 120px;
    right: calc(5% + 50px);
    text-align: center;
    width: auto;
    z-index: 10;
}
.anchor_link .inner a{
    margin-left: 50px;
    transition: 0.4s;
    padding-bottom: 3px; 
    background-image: linear-gradient(#32440d, #32440d);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 2px;
    transition: background-size 0.3s;
}
.anchor_link .inner a:first-child{
    margin: 0;
}
.anchor_link .inner a:hover{
    font-weight: bold;
    color: #32440d;
    background-position: bottom left;
    background-size: 100% 1px;
    position: relative;
}
:target {
    scroll-margin-top: calc(100vw * 5.00 / 100);
}
.pagetop-pad{
    padding-top: 220px;
}

.slidein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 2s;

    &.slidein-left{
        transform: translate(-100%,0);
    }
    &.slidein-right{
        transform: translate(100%,0);
    }
    &.slidein-up{
        transform: translate(0,-100%);
    }
    &.slidein-bottom{
        transform: translate(0,100%);
    }
    &.scrollin{
        transform: translate(0, 0)!important;
        opacity: 1!important;
    }
}

/* ---------------------------------------- */
/* button */
.btn_container{
    display: flex;
}
.btn_op{
    border-radius: 100vh;
}
.btn_op a{
    padding: 25px 50px;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    transition: 0.4s;
}
.blue_btn{
    background-color: #007efc;
}
.blue_btn a:hover{
    background-color: #ffffff;
    outline: solid 1px #007efc;
    border-radius: 100vh;
    color: #007efc;
}
.white-blue_btn{
    background-color: transparent;
    outline: solid 1px #007efc;
}
.white-blue_btn a{
    color: #007efc;
}
.white-blue_btn a:hover{
    background-color: #007efc;
    /* border: solid 1px #007efc; */
    border-radius: 100vh;
    color: #ffffff;
}
.white_btn{
    background-color: #ffffff;
}
.footer_container .white_btn a{
    color: #1aaa4b;
}
.white_btn a:hover{
    background-color: #1aaa4b;
    border: solid 1px #1aaa4b;
    border-radius: 100vh 100vh 100vh 0;
    color: #ffffff;
}
.green_btn{
    background-color: #1aaa4b;
}
.green_btn a:hover{
    background-color: #ffffff;
    border-radius: 100vh 100vh 100vh 0;
    color: #1aaa4b;
}
.lightgreen_btn{
    background-color: #96cb8d;
}
.lightgreen_btn a:hover{
    background-color: #ffffff;
    border-radius: 100vh;
    color: #96cb8d;
}
.service_page .btn_op
.office-text .btn_op a{
    padding: 25px 80px;
}
.office-text .black_btn{
    background-color: transparent;
}
.office-text .black_btn a{
    border: solid 1px #42332c;
    border-radius: 100vh;
    color: #42332c;
    display: flex;
    align-items: center;
}
.office-text .black_btn a span{
    display: block;
    margin-left: 10px;
}
.office-text .black_btn a:hover{
    background-color: #42332c;
    border: solid 1px #42332c;
    border-radius: 100vh;
    color: #ffffff;
}

.footer_container_box .Phonenum{
    border-radius: 100vh !important;
}
/*------------------------------------------------------------------------------------------------------------*/
/* Header */
.header{
    /* max-width: 1700px; */
    width: 90%;
    height: calc(100vw* 5.00 / 100);
    min-height: 60px;
    margin: 0 auto;
    background-color: rgba(250, 250, 250, 0.95);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.top-header{
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
    animation: slideDown-head 1s ease-in-out 0.5s forwards;
}
.header a{
    margin-left: 50px;
    width: 15vw;
    transition: 0.4s;
}
.header a:hover{
    scale: 1.05;
}
.header a img{
    width: 100%;
    height: auto;
    min-height: 20px;
}

/*------------------------------------------------------------------------------------------------------------*/
/* pagetop-link */
#page-top {
    position: fixed;
    right: -100px;
    bottom: 50px;
    background: #4c423b;
    border: solid 1px #ffffff;
    color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 0;
}
#page-top.show {
    right: 6%;  /* スクロール後に表示される位置 */
}
.icon_arrowUp{
    display: block;
    color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font-size: 45px;
    text-decoration: none;
}
#page-top .icon_arrowUp:hover {
    opacity: 0.7;
}

/*------------------------------------------------------------------------------------------------------------*/
/* Footer */
footer{
    background: url(../img/footer_back.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    padding: 10px;
    width: 90%;
    margin: 0 auto;
}
footer > a{
    margin-top: 70px;
    margin-left: 70px;
    margin-bottom: 50px;
    width: 360px;
}
.footer_container{
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto 50px;
}
.footer_container:last-child{
    margin-bottom: 10px;
}
.footer_container a{
    font-size: 16px;
    color: #ffffff;
    transition: 0.4s;
}
.footer_container a:hover{
    opacity: 0.7;
}
.footer_container .btn_op a:hover{
    opacity: 1;
}
.footer_container_box{
    width: 100%;
    max-width: 300px;
    padding: 0 10px;
}
.footer_container_box .btn_op{
    border-radius: 100vh 100vh 100vh 0;
    text-align: center;
}
.footer_container_box p{
    font-size: 24px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px #ffffff;
}
.footer_container_box li{
    margin-bottom: 10px;
}
.footer_container_box .btn_container{
    flex-direction: column;
}
.footer_container_box .btn_container a,
.Phonenum div{
    display: flex;
    width: 100%;
    height: 80px;
    padding: 0;
    justify-content: center;
    align-items: center;
}
.Phonenum div{
    height: auto;
    flex-direction: column;
    width: fit-content;
    text-align: left;
    align-items: flex-start;
}
.footer_container_box .btn_container a span{
    margin-right: 10px;
}
.footer_container_box .btn_container .btn_op:nth-child(2n){
    margin-top: 30px;
    margin-bottom: 30px;
}
.footer_container_box .btn_container a .tel-sub{
    margin: 0;
    font-size: 12px;
}
.left-padd{
    padding-left: 20px;
}
small{
    font-size: 12px !important;
}
/*------------------------------------------------------------------------------------------------------------*/
/* Nav-right */
.nav_fix{
    transform: translateX(0%);
    transition: transform 1s ease 0.75s;
    display: flex;
    flex-direction: column;
    width: 5%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
    height: 100vh;
}
.top-nav_fix{
    transform: translateX(100%);
    opacity: 0;
    animation: slideIn-R 1.5s ease-out forwards;
    animation-delay: 3s;
}
/* humberger */
.btn_humberger_box{
    display: block;
    width: 100%;
    height: calc(100vw* 5.00 / 100);
    min-height: 60px;
    cursor: pointer;
    background: #2d2623;
    position: relative;
    z-index: 10000;
}
.btn_humberger_box:after {
    content: "";
    display: block;
    width: calc((11vw* 5.00 / 100) + 1px);
    height: calc((11vw* 5.00 / 100) + 1px);
    background: url(../img/bg_nav_btn.svg) no-repeat center / cover;
    position: absolute;
    bottom: 1px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

/*============== ナビゲーション ===============*/
/*==============================
  アクティブエリア (ナビゲーション)
==============================*/
#g-nav.panelactive {
    position: fixed;
    top: 0;
    left: -95vw;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    display: block; /* active時に表示 */
}
#g-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
}
/*==============================
  ナビゲーションリスト設定
==============================*/
#g-nav ul {
    list-style: none;
    padding: 0;
    opacity: 0; /* 初期状態で非表示 */
    z-index: 999;
}
#g-nav.panelactive ul {
    opacity: 1; /* active時に表示 */
}
/* ナビゲーションリストアイテムのアニメーション */
#g-nav > .div-header ,
#g-nav > .nav_container,
#g-nav.panelactive ul li {
    animation: gnaviAnime 1s forwards;
    animation-delay: 0.2s;
    opacity: 0;
}
@keyframes gnaviAnime {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
#g-nav > .div-header {
    position: absolute;
    background-color: transparent;
    box-shadow: none;
}
#g-nav > .div-header > a:hover{
    scale: 1.05;
}
#g-nav li {
    margin: 15px 0;
    list-style: none;
}
.nav_container p,
#g-nav li a {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
}
.nav_container p{
    font-size: 2em;
}
.nav_container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.nav_container > .footer_container_box:last-child{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* body.noscroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
} */
/*==============================
  ハンバーガーボタン
==============================*/
.openbtn {
    z-index: 9999;
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: relative;
}

.openbtn span {
    display: inline-block;
    position: absolute;
    left: 50%;
    height: 3px;
    border-radius: 2px;
    background-color: #ffffff;
    transition: all 0.4s ease-in-out;
    transform-origin: center;
}
.new-circle:hover .openbtn span{
    width: 50%;
}
.openbtn span:nth-of-type(1) {
    top: 45%;
    width: 35%;
    transform: translateX(-50%);
}

.openbtn span:nth-of-type(2) {
    top: 55%;
    width: 35%;
    transform: translateX(-50%);
}

.openbtn.active span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 40%;
    background-color: #2d2623;
}

.openbtn.active span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 40%;
    background-color: #2d2623;
}

/* 円形背景 */
.openbtn .new-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0; /* 初期状態では非表示 */
    z-index: -1; /* ボタンの背後に配置 */
    transition: all 0.4s ease-in-out;
    pointer-events: none;
}

.openbtn.active .new-circle {
    opacity: 1; /* active時に表示 */
}

/*==============================
  丸の拡大アニメーション
==============================*/
.circle-bg {
    position: fixed;
    z-index: 998;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #2d2623;
    transform: scale(0); /* 初期は縮小状態 */
    right: -50px;
    top: -50px;
    transition: all 0.6s; /* スムーズなアニメーション */
}
.circle-bg.circleactive {
    transform: scale(50); /* active時に拡大 */
}
/*============== ナビゲーション END ===============*/

.header_btn_company {
    text-align: center;
    height: 30%;
    letter-spacing: 0;
    position: relative;
    display: block;
}
.header_btn_company a {
    width: 100%;
    height: calc(100% - 1rem);
    display: flex;
    border-top: 1px solid #42332c;
    border-left: 1px solid #42332c;
    border-radius: calc(10vw* 5.00 / 100) 0 0 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-weight: 500;
    font-feature-settings: normal;
    font-size: 1.2em;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    /* padding-bottom: 1rem; */
}
.header_btn_contact {
    text-align: center;
    height: 30%;
    letter-spacing: 0;
    position: relative;
    display: block;
}
.header_btn_contact a {
    width: 100%;
    height: calc(100% - 1rem);
    display: flex;
    border-top: 1px solid #42332c;
    border-left: 1px solid #42332c;
    border-radius: calc(10vw* 5.00 / 100) 0 0 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-weight: 500;
    font-feature-settings: normal;
    font-size: 1.2em;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    /* padding-bottom: 1rem; */
}
.header_btn_download {
    text-align: center;
    height: 30%;
    letter-spacing: 0;
    position: relative;
    display: block;
}
.header_btn_download a {
    width: 100%;
    height: calc(100% - 1rem);
    display: flex;
    border-top: 1px solid #42332c;
    border-left: 1px solid #42332c;
    border-radius: calc( 10vw * 5.00 / 100 ) 0 0 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-weight: 500;
    font-feature-settings: normal;
    font-size: 1.2em;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    /* padding-bottom: 1rem; */
}
.header_btn_download span,
.header_btn_contact span,
.header_btn_company span{
    transition: 0.4s;
}
@media screen and (min-width: 900px) {
	.header_btn_download,
    .header_btn_contact,
	.header_btn_company{
        background: rgba(255,255,255,0.3);
        transition: 0.3s;
        border-radius: calc( 10vw * 5.00 / 100 ) 0 0 calc( 10vw * 5.00 / 100 );
    }
	.header_btn_download:hover,
    .header_btn_contact:hover,
	.header_btn_company:hover{
        background: rgba(76, 66, 59, 0.7);
    }
    .header_btn_download:hover a,
    .header_btn_contact:hover a,
	.header_btn_company:hover a{
        border-color: #ffffff;
        border-bottom: 1px solid #ffffff;
        border-radius: calc( 10vw * 5.00 / 100 ) 0 0 calc( 10vw * 5.00 / 100 );
        height: 100%;
    }
    .header_btn_download a:hover span,
    .header_btn_contact a:hover span,
	.header_btn_company a:hover span{
        font-size: 18px;
        letter-spacing: 0.3em;
        color: #ffffff;
    }
}
/*------------------------------------------------------------------------------------------------------------*/
/* fix-left */
.fix_contact {
    width: 5%;
    height: 100vh;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
    min-width: 40px;
}
.top-fix_contact {
    transform: translateX(-100%);
    opacity: 0;
    animation: slideIn-L 1.5s ease-out forwards;
    animation-delay: 3s;
}
.fix_contact::after {
    content: "";
    display: block;
    background: url(../img/bg_body.png) repeat-y left top;
    animation: scrollcontact 15s linear infinite;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    min-width: 40px;
    background-size: 65%;
    width: 100%;
    height: 100%;
}
.fix_contact::before {
    content: "";
    display: block;
    background: url(../img/bg_body-hov.png) repeat-y left top;
    animation: scrollcontact 15s linear infinite;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 11;
    min-width: 40px;
    background-size: 65%;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: 0.4s;
}
.fix_contact:hover::before {
    opacity: 1;
}
@keyframes scrollcontact {
    0%{background-position:50% calc(100% - 100vh);}
    100%{background-position:50% 0%; }
}
/*------------------------------------------------------------------------------------------------------------*/
/* ■■■■TOP-page■■■■ */

/* トップページ アニメーション */

@keyframes slideDown-head {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideIn-R {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideIn-L {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* メインイメージスライド */
.custom-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 200px;
    z-index: -1;
}
.custom-slider img,
.custom-slider video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease-in-out, transform 7s linear;
}

.custom-slider img.active {
    opacity: 1;
    transform: scale(1.05); /* 画像のみズーム */
    transition: opacity 1.8s ease-in-out, transform 7s linear;
}

.custom-slider video.active {
    opacity: 1; /* 動画はズームしない */
    transform: scale(1); /* ズームを無効化 */
    transition: opacity 1.8s ease-in-out; /* transformのtransitionを除外 */
}




@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}


/* ---------------------------------------- */
/* TA_tsuyama */
#TA_tsuyama h1{
    margin-bottom: 100px;
}
#TA_tsuyama{
    text-align: center;
}
#TA_tsuyama p{
    line-height: 2.4em;
}
#TA_tsuyama span{
    font-weight: bold;
    font-size: 21px;
    display: inline-block;
    margin-bottom: 20px;
}

/* ---------------------------------------- */
/* Business */
.Business-block a {
    position: relative;
    display: flex;
    justify-content: space-between;
    transition: 0.4s;
}

.Business-block a::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    z-index: -1;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    transition: 0.4s;
    opacity: 0;
    background-color: rgba(250, 250, 250, 0.95);
}

.Business-block a:hover::before {
    opacity: 1;
}

.Business-block:nth-child(2n+1) a{
    flex-direction: row-reverse;
    margin-top: 100px;
    margin-bottom: 100px;
}
.Business-block:nth-child(2n+1) a:hover{
    border-radius: 10px 0 0 10px;
}
.Business-block .spanflex{
    position: absolute;
    bottom: 20px;
    left: 30px;
    transition: 0.4s;
}
.Business-block .spanflex span{
    vertical-align: middle;
}
.Business-block a:hover .imageframe img{
    transform: scale(1.1);
}
.Business-block a:hover .block-Content .spanflex{
    animation: fastslide .7s forwards;
}
@keyframes fastslide{
    0%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(200%);
        opacity: 0;
    }
    70%{
        transform: translateX(0);
        opacity: 0;
    }
    100%{
        transform: translateX(+10px);
        opacity: 1;
    }
}
.imageframe{
    width: 100%;
    max-width: 600px;
    height: auto;
    border: solid 1px #42332c;
    overflow: hidden;
}
.imageframe img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.block-Content{
    position: relative;
    padding: 20px 30px;
    width: 100%;
    max-width: 600px;
    height: auto;
}
.head-flex{
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}
/* ---------------------------------------- */
/* Solution */
.LP-link{
    width: 100%;
    max-width: 1200px;
    height: 400px;
    margin-left: auto;
    margin-right: auto;
}
.LP-link a,
.LP-link a .image-container{
    width: 100%;
    height: 100%;
}
.LP-link a .image-container{
    overflow: hidden;
    position: relative;
}
.LP-link .link-text .note{
    font-size: 10px;
    margin-top: 10px;
}
.image-container img.background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-container:hover img.background{
    transform: scale(1.1);
}

.image-container .foreground img{
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    object-fit: contain;
    z-index: 2;
}
.image-container .link-text{
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 600px;
    color: #ffffff;
}
.image-container .link-text h1{
    margin-bottom: 40px;
}
.image-container .link-text p{
    font-size: 18px;
    line-height: 1.7em;
}

/*------------------------------------------------------------------------------------------------------------*/
/* ■■■■事業内容■■■■ */

/* ホバー時のtransformを打ち消し */
.transform-none:hover { transform: none !important; }
.Business-block a.transform-none:hover .imageframe img { transform: none !important; }

.Business-block a.content-none::before {
    content: none;
}

/* サービス内容 */
.luxy-area {
    position: relative;
    margin-bottom: 400px;
    width: 100%;

    .figure_frame {
        max-width: 1170px;
    }

    .box {
        width: 710px;
        height: 390px;
        padding: 50px 35px;
        position: absolute;
        background: #fff;
        padding: 30px;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    }

    /* 1番目のboxに対してbottomを設定 */
    &:nth-child(1) .box {
        bottom: -9%;
        right: 0%;
    }

    /* 2番目のboxに対してbottomを設定 */
    &:nth-child(2) .box {
        bottom: -18%;
        left: inherit;
        left: 0%;
    }

    /* 3番目のboxに対してbottomを設定 */
    &:nth-child(3) .box {
        bottom: -27%;
        right: 0%;
    }
}

.noto-serif-jp-regular {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.noto-serif-jp-black {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

/* ご相談はこちらから */
.service_btn_container {
    justify-content: center;
    margin-top: 30px;

    .service_btn {
        
        a {
            padding: 35px 80px !important;
            transition: 0.4s;
            position: relative;
        }
    }
}
.service_btn a::after{
    content: "";
    width: 14px;
    height: 14px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    display: block;
    position: absolute;
    right: 40px;
    top: calc(50% - 6px);
    transform: rotate(45deg);   
    -webkit-transform: rotate(45deg);
    transition: 0.4s;
}
.service_btn a:hover{
    outline: solid 1px #96cb8d;
}
.service_btn a:hover::after{
    border-color: #96cb8d;
    right: 30px;
}


/*------------------------------------------------------------------------------------------------------------*/
/* ■■■■企業情報■■■■ */

.company_page table {
    border-collapse: collapse;
    max-width: 1000px;
    margin: 0 auto;
    border-left: none;
    border-right: none;

    td {
        border-top: 1px solid #000;
        vertical-align: middle;
        background-color: transparent !important;
        cursor: auto !important;
    }
    
    td:first-child {
        width: 300px;
        background-color: #e2d1c3 !important;
        text-align: center;
        padding: 10px;
    }
    
    td:last-child {
        width: 700px;
        background-color: transparent;
        text-align: left;
        padding: 5px 20px;
    }

    @media (max-width: 480px){
     td:first-child{
        background: #e2d1c3 !important;
        color: #000000;
        font-weight: 400;
     }
    }
}

/* 企業理念 */
.vision-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0;
    background-color: #e2d1c3;
    text-align: center;
}

/* 事業拠点 */
#office {

    .office-text {
        position: absolute;
        margin-top: 150px;
        z-index: 1;
    }

    .btn_container {
        margin-top: 45px;
    }
    
    /* .transparent_btn {
        background-color: transparent;
        border: solid 1px #42332c;
        border-radius: 100vh;
        
        a {
            padding: 25px 80px;
            color: #42332c;
            font-size: 24px;
            font-weight: bold;
            transition: 0.4s;
        }
        span {
            transition: 0.4s;
        }
    
        .material-symbols-outlined {
            margin-left: 10px;
        }
    
        &:hover {
            background-color: #42332c;
            border-color: #42332c;
            color: #ffffff;
        }
        &:hover a {
            color: #ffffff;
        }
    } */
}

/* 代表挨拶 */
.message-box {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: space-between;

    .message-box-left {
        
        img {
            max-width: 350px;
        }
    }

    .message-box-right {
        max-width: 590px;
    }
}

/* 沿革 */
#history {

    table {
    
        td {
            height: 100px;
        }
    }
}

/*------------------------------------------------------------------------------------------------------------*/
/* ■■■■個人情報保護方針■■■■ */

.privacy-box {
    max-width: 1300px;
    margin: 0 auto;
}
.privacy-box ul {
    width: fit-content;
    margin: 0 auto;
}
.privacy-box p{
    text-align: center;
}

/*------------------------------------------------------------------------------------------------------------*/
/* Layout */

.border-bottom-none { border-bottom: none; }
.flex-direction-column { flex-direction: column; }
.font-21{ font-size: 21px; }
.font-42{ font-size: 42px; }
.font-48{ font-size: 48px; }
.font-58{ font-size: 58px; }
.height-260 { height: 260px; }
.left-500 { left: 500px !important; }
.letter-spacing--1 { letter-spacing: -1px; }
.line-height-1point75 { line-height: 1.75; }
.marginBottom-0 { margin-bottom: 0px; }
.marginBottom-20{ margin-bottom: 20px !important; }
.marginBottom-30{ margin-bottom: 30px !important; }
.marginBottom-300 { margin-bottom: 300px; }
.marginBottom-60 { margin-bottom: 60px !important; }
.marginLeft-25 { margin-left: 25px; }
.marginLeft-auto { margin-left: auto; }
.marginTop-200{ margin-top: 200px !important; }
.max-width-90pct { max-width: 90%; }
.w860 { max-width: 860px !important; }

/*------------------------------------------------------------------------------------------------------------*/

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:90%;
    margin:0 auto;
}
.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}
.slider .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
    display: inline-block;
    width: 1120px;
}
.slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 50%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 3px solid #666666;
    border-right: 3px solid #666666;
    height: 20px;
    width: 20px;
    transition: 0.4s;
}
.slick-prev:hover, 
.slick-next:hover{
    border-top: 3px solid #42332c;
    border-right: 3px solid #42332c;
}
.slick-prev:hover{
    left: -2%;
}
.slick-next:hover{
    right: -2%;
}
.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}
.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
    bottom: auto;
}
.slick-dots li {
    display:inline-block;
	margin:0 22px;
}
.slick-dots button {
    color: transparent;
    outline: none;
    width:20px;/*ドットボタンのサイズ*/
    height:20px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#8c7770;/*ドットボタンの色*/
}
.slick-dots li button:before{
    color: #8c7770;
    font-size: 20px;
}
.slick-dots .slick-active button{
    background:#2d2623;/*ドットボタンの現在地表示の色*/
}
.slick-dots li.slick-active button:before{
    color: #2d2623;
}
.slick-prev:before, .slick-next:before {
    color: transparent;
}
/* ---------------------------------------- */
/* News */
.newslist li:first-child{
    padding-top: 10px;
}
.newslist{
    border: solid 1px #42332c;
    border-bottom: none;
}
.newslist li{
    border-bottom: solid 1px #42332c;
    padding-left: 50px;
    gap: 50px;
}
.newslist li time{
    font-size: 16px;
}
/* ---------------------------------------- */
/* Access */
.Access_Container{
    display: flex;
    justify-content: space-between;
}
.map{
    width: 600px;
    height: 600px;
}
.map iframe{
    width: 100%;
    height: 100%;
}
.Access_txt{
    width: 100%;
    max-width: 600px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.Access_txt dl dt{
    margin-bottom: 10px;
    font-weight: 500;
    color: #8c7770;
}
.Access_txt dl dd{
    margin-bottom: 20px;
    font-weight: 500;
}
/* ---------------------------------------- */
/* banner */
.banner {
    position: fixed;
    top: 75%;
    right: calc(100vw* 5.00 / 100 + 20px);
    width: 250px;
    /* background-color: #ffffff; */
    border: 1px solid #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
    visibility: hidden;
    pointer-events: none;
}
.banner a,
.banner img {
    width: 100%;
    display: block;
}
/* バナーが表示される状態 */
.banner.active {
    opacity: 1;
}
/* ×ボタン */
.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: #42332c;
    border-radius: 50%;
    border: none;
    font-size: 21px;
    color: #ffffff;
    cursor: pointer;
    z-index: 1500;
    transition: 0.4s;
}
.banner a:hover{
    opacity: 0.7;
}
.close-btn:hover{
    background-color: #ffffff;
    color: #42332c;
    border: solid 1px #42332c;
}


/*------------------------------------------------------------------------------------------------------------*/
/* ■■■■CONTACT-page■■■■ */
.contact_page .btn_humberger_box{
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.contact_page .btn_humberger_box:after,
.contact_page .fix_contact{
    display: none;
}
.contact_page .header{
    width: 95%;
    left: 0;
    transform: none;
}
.contact_page .sec-head{
    border: transparent;
    padding: 0;
    margin-bottom: 50px;
}
.contact_txt{
    text-align: center;
}
.contact_txt p,
.contact_txt span{
    font-size: 21px;
    line-height: 56px;
}
.contact_txt span{
    font-weight: bold;
    text-decoration: underline;
}
#Contact{
    margin-bottom: 50px;
}

/*==============================
  お問い合わせステップ
==============================*/
.cp_stepflow02 {
	font-size: 80%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 50px 0 1em;
	padding: 0;
}
.cp_stepflow02 > li {
	position: relative;
	display: block;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	text-overflow: ellipsis;
	color: #828282;

	-ms-flex: 1;
	-moz-flex: 1;
	-webkit-box-flex: 1;
	flex: 1;
}
.cp_stepflow02 > li .bubble {
	display: block;
	width: 20px;
	height: 20px;
	margin: 0 auto 0.5em;
	border-radius: 1000px;
	background-color: #828282;
}
.cp_stepflow02 > li .bubble::after,
.cp_stepflow02 > li .bubble::before {
	position: absolute;
	top: 9px;
	display: block;
	width: 100%;
	height: 3px;
	content: '';
	background-color: #828282;
}
.cp_stepflow02 > li.completed,
.cp_stepflow02 > li.completed .bubble {
	font-weight: bold;
    color: #004f84;
}
.cp_stepflow02 > li.completed .bubble,
.cp_stepflow02 > li.completed .bubble::after,
.cp_stepflow02 > li.completed .bubble::before {
	background-color: #004f84;
}
.cp_stepflow02 > li.completed > .bubble + span::before {
	font-family: 'Material Symbols Outlined';
    content: '\e5ca';
    font-size: 21px;
    font-weight: bold;
    vertical-align: middle;
    line-height: 1;
}
.cp_stepflow02 > li:last-child .bubble::after,
.cp_stepflow02 > li:last-child .bubble::before {
	width: 0%;
	margin-right: 50%;
}
.cp_stepflow02 > li.active,
.cp_stepflow02 > li.active .bubble {
	font-weight: bold;
	color: #007efc;
}
.cp_stepflow02 > li.active .bubble,
.cp_stepflow02 > li.active .bubble::after,
.cp_stepflow02 > li.active .bubble::before {
	background-color: #007efc;
}

/* .form_container{ */
    /* border: solid 0.25px #42332c; */
    /* background-color: #ffffff; */
    /* background-color: rgba(250, 250, 250, 0.95);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
    padding: 100px;
    margin-bottom: 50px; */
/* } */
/*==============================
  入力フォーム
==============================*/
.any,
.required{
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    color: #ffffff;
    background-color: #FD5254;
    border-radius: 5px;
}
.any{
    background-color: #828282;
}
label{
    font-size: 18px;
}
select option{
    font-size: 18px;
}
form select,
form input,
form textarea{
    width: 100%;
    margin-left: 0.5%;
}
select, input[type="text"], input[type="email"], input[type="tel"], textarea{
    background: #ffffff;
    border-radius: 4px;
    border: solid 1px #666666;
    font-size: 14px;
    padding: 10px;
}
/* select:focus,  */
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="date"]:focus, textarea:focus{
    background-color: #ffffff;
    outline: solid 1.5px #007efc;
    box-shadow: inset 0px 0px 3px rgba(0, 126, 252, 0.5);
}

.contact_btn_container .btn_container{
    justify-content: center;
}
.privacy_box{
    max-width: 1300px;
    width: 100%;
    margin: 0 auto 100px;
}
.privacy_box > p{
    text-align: center;
    margin-bottom: 10px;
}
.privacy_box > p a{
    font-weight: bold;
    text-decoration: underline;
    margin-right: 5px;
    font-size: 18px;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
            /* ListFinder用 */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.contact_page .message{
    color: #FD5254;
}
.contact_page　table{
    width: 100%;
    border: none;
}
.contact_page td{
    border: none;
    background-color: transparent;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
            /* ListFinder用　END */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*==============================
  お問い合わせ　フッター
==============================*/
.contact_page footer{
    width: 100%;
    margin: 0;
    background: url(../img/footer_back_full.png);
}

/*------------------------------------------------------------------------------------------------------------*/
/* ■■■■CONTACT-page thanks ■■■■ */
.thanks .cp_stepflow02{
    margin-bottom: 50px;
}
.thanks .contact_txt span{
    display: inline-block;
    text-decoration: none;
    font-size: 26px;
    margin-bottom: 20px;
}
.thanks .contact_txt p{
    line-height: 35px;
}
.thanks #Contact{
    margin-bottom: 100px;
}
.thanks .contact_btn_container a{
    padding: 25px 100px;
}

/*------------------------------------------------------------------------------------------------------------*/
/* ■■■■DOWNLOAD-page■■■■ */
.download_page section{
    text-align: center;
    height: 100vh;
    align-content: center;
}
.download_page .pagetop-pad{
    padding-bottom: 220px;
}
.download_page .pagetop-pad p{
    font-size: 21px;
    font-weight: bold;
}
/* hourglass */
.wrapper {
font-size: 1.6rem;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {
zoom: 1;
}
.hourglass {
display: block;
background: #ffffff;
margin: 3em auto;
width: 2em;
height: 4em;
-webkit-animation: hourglass 3s linear infinite;
animation: hourglass 3s linear infinite;
}
.outer {
fill: #00b7c6;
}
.middle {
fill: #ffffff;
}
@-webkit-keyframes hourglass {
    0% {
        transform: rotate(0deg);
        box-shadow: inset #00b7c6 0 0em 0 0, inset #ffffff 0 -2em 0 0, inset #00b7c6 0 -4em 0 0;
    }
    80% {
        transform: rotate(0deg);
        box-shadow: inset #00b7c6 0 -2em 0 0, inset #ffffff 0 -2em 0 0, inset #00b7c6 0 -2em 0 0;
    }
    100% {
        transform: rotate(180deg);
        box-shadow: inset #00b7c6 0 -2em 0 0, inset #ffffff 0 -2em 0 0, inset #00b7c6 0 -2em 0 0;
    }
}
@keyframes hourglass {
    0% {
        transform: rotate(0deg);
        box-shadow: inset #00b7c6 0 0em 0 0, inset #ffffff 0 -2em 0 0, inset #00b7c6 0 -4em 0 0;
    }
    80% {
        transform: rotate(0deg);
        box-shadow: inset #00b7c6 0 -2em 0 0, inset #ffffff 0 -2em 0 0, inset #00b7c6 0 -2em 0 0;
    }
    100% {
        transform: rotate(180deg);
        box-shadow: inset #00b7c6 0 -2em 0 0, inset #ffffff 0 -2em 0 0, inset #00b7c6 0 -2em 0 0;
    }
}
/* hourglass END */

.download_page .contact_btn_container{
    margin-top: 50px;
}
.download_page .contact_btn_container .btn_op{
    background-color: #00b7c6;
}
.download_page .contact_btn_container a:hover{
    border-color: #00b7c6;
    color: #00b7c6;
}