@charset "UTF-8";

/*全体*/
*{
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
:lang(en) {
  font-family: "Roboto", serif;
}
body{
    font-family: "Yu Gothic","YuGothic","游ゴシック","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo",
    "ＭＳ Ｐゴシック", "MS PGothic", serif;
    font-weight:bold;
    margin:0;
    padding:0;
    color:#1a1a1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a{
    text-decoration: none;
    color:#1a1a1a;
}
ul{
    list-style: none;
    padding:0;
    margin:0;
}
img{
    max-width:100%;
    height:auto;
    vertical-align: bottom;
}
section{
    display:block;
}
dl,dt,dd{
    margin:0;
}

/*テキストフェードイン*/
.fade-in{
    opacity:0;
    transform:translateY(40px);
}
.fade-in.js-on {
  animation-name: fadeout;
  animation-duration: 1s;
  animation-delay: .4s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@keyframes fadeout {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*ロゴアニメーション*/
#loading{
    position:fixed;
    width:100%;
    height:100%;
    z-index:10000;
    background:#2c4b3a;
    text-align: center;
}
#loadingLogo{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    opacity:0;
    visibility: hidden;
}
#loadingLogo svg{
    width:400px;
}
 /*svgアニメーション*/
 #mask path{
    fill-opacity: 0;
    transition:all .5s;
    fill:none;
    stroke:#fff;
 }

 /*画面遷移(背景)*/
 .loadingBg{
    display:none;
 }
 .appear .loadingBg{
    display:block;
    content:"";
    position:fixed;
    z-index:10000;
    width:100%;
    height:100vh;
    top:0;
    left:0;
    background:#2c4b3a;
    animation:slideAnime 1s ease-in-out forwards;
 }
 @keyframes slideAnime{
    0%{
        transform-origin:bottom;
        transform:scaleY(0);
    }
    50%{
        transform-origin:bottom;
        transform:scaleY(1);
    }
    50.001%{
        transform-origin:top;
        transform:scaleY(1);
    }
    100%{
        transform-origin:top;
        transform:scaleY(0);
    }
 }
.wrapper{
    opacity:0;
}
body.appear .wrapper{
    animation:appearAnime 1s .8s forwards;
}
@keyframes appearAnime{
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}

/*ハンバーガーリストを開いている際はbodyのスクロールをロック*/
/*.menu-open {
    width: 100%;
    overflow: hidden;
}*/

/*ヘッダー*/
.header{
    position:fixed;
    z-index:9999;
    top:20px;
    right:90px;
}
.header_list{
    display:flex;
    align-items: center;
    column-gap: 12px;
}
.rickshawinn_btn{
    background:#fff;
    height:50px;
    line-height: 50px;
    padding:0 25px;
    border:1px solid #1a1a1a;
    border-radius: 50px;
    transition:all .3s;
}
.rickshawinn_btn:hover{
    background:#702F36;
    color:#fff;
    border:1px solid #702F36;
}
.insta_btn, .line_btn{
    background:#fff;
    height:50px;
    aspect-ratio: 1/1;
    display:flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border:1px solid #1a1a1a;
    transition:all .3s;
}
.insta_btn{
    background-image:url(../images/instagram.svg);
    background-repeat:no-repeat;
    background-position:center center;
}
.line_btn{
    background-image:url(../images/line.svg);
    background-repeat:no-repeat;
    background-position:center center;
}
.insta_btn:hover{
    background:#1a1a1a;
    background-image:url(../images/instagram_hover.svg);
    background-repeat:no-repeat;
    background-position:center center;
}
.line_btn:hover{
    background:#1a1a1a;
    background-image:url(../images/line_hover.svg);
    background-repeat:no-repeat;
    background-position:center center;
}
body.menu-open .header_list {
  display: none;
}

/*ハンバーガーメニュー*/
    #header-hamburger{
        display:block;
        background:#fff;
        border:1px solid #1a1a1a;
        border-radius: 50%;
        cursor:pointer;
        width:50px;
        aspect-ratio: 1/1;
        margin-left:auto;
        position:fixed;
        z-index: 9999;
        right:28px;
        top:20px;
    }
    #header-hamburger span{
        display:inline-block;
        background:#1a1a1a;
        width:50%;
        height:2px;
        transition:all .5s ease;
        position:absolute;
        left:50%;
        transform:translateX(-50%);
    }
    #header-hamburger span:nth-of-type(1){
        top:35%;
    }
    #header-hamburger span:nth-of-type(2){
        top:50%;
    }
    #header-hamburger span:nth-of-type(3){
        top:64%;
    }
    #header-hamburger.active span:nth-of-type(1){
        top:50%;
        left:25%;
        transform:rotate(-45deg);
        width:50%;
    }
    #header-hamburger.active span:nth-of-type(2){
        opacity: 0;
    }
    #header-hamburger.active span:nth-of-type(3){
        top:50%;
        left:25%;
        transform:rotate(45deg);
        width:50%;
    }

    #hamburger-window{
        transition:all .5s ease;
        text-align: center;
        position:fixed;
        top:0;
        right:0;
        z-index:9998;
        width:100%;
        height:100vh;
        height:100dvh;
        overflow-y: auto;
        background:#2C4B3A;
        opacity:0;
        visibility: hidden;
    }
    #hamburger-window.open{
        visibility: visible;
        opacity: 1;
    }
    /*全体*/
    .hamburger-window-wrapper{
        display:flex;
        justify-content: center;
        column-gap: 70px;
        position:relative;
        top:20%;
        padding-bottom:60px;
    }
    .hamburger-logo a img{
        width:150px;
    }

    /*下から出現*/
    #hamburger-window.open .hamburger-window_nav_item,
    #hamburger-window.open .hamburger-logo,
    #hamburger-window.open .hamburger-window_other_left_item,
    #hamburger-window.open .hamburger-window_other_right_item,
    #hamburger-window.open .hamburger-window_btn_item {
        opacity: 1;
        transform: translateY(0);
    }
    .hamburger-logo,
    .hamburger-window_nav_item,
    .hamburger-window_other_left_item,
    .hamburger-window_other_right_item,
    .hamburger-window_btn_item{
        opacity:0;
        transform:translateY(20px);
        transition:all .6s;
    }
    #hamburger-window.open .hamburger-logo{
        transition-delay: 0.1s;
    }
    #hamburger-window.open .hamburger-window_nav_item:nth-child(1) {
        transition-delay: 0.1s;
    }
    #hamburger-window.open .hamburger-window_nav_item:nth-child(2) {
        transition-delay: 0.2s;
    }
    #hamburger-window.open .hamburger-window_nav_item:nth-child(3) {
        transition-delay: 0.3s;
    }
    #hamburger-window.open .hamburger-window_nav_item:nth-child(4) {
        transition-delay: 0.4s;
    }
    #hamburger-window.open .hamburger-window_nav_item:nth-child(5) {
        transition-delay: 0.5s;
    }
    #hamburger-window.open .hamburger-window_other_left_item:nth-child(1){
        transition-delay: 0.6s;
    }
    #hamburger-window.open .hamburger-window_other_left_item:nth-child(2){
        transition-delay: 0.7s;
    }
    #hamburger-window.open .hamburger-window_other_right_item{
        transition-delay: 0.8s;
    }
    #hamburger-window.open .hamburger-window_btn_item{
        transition-delay: 0.9s;
    }


    /*ナビリスト*/
    .hamburger-window_nav_list_wrapper{
        width:40%;
        display:block;
    }
    .hamburger-window_nav_list a{
        color:#fff;
        text-align: left;
        position:relative;
    }
    .hamburger-window_nav_item{
        border-top:1px solid #fff;
        padding:15px 0 15px 1em;
        position:relative;
    }
    .hamburger-window_nav_item:nth-child(5){
        border-bottom:1px solid #fff;
    }
    .hamburger-window_nav_item h3,
    .drawer_nav_sub-link h4{
        margin:0;
    }
    .hamburger-window_nav_item h3{
        font-size:1.9em;
    }
    .drawer_nav_sub-link{
        display:flex;
    }
    .drawer_nav_sub-link h4{
        font-size:1.3em;
    }
    .hamburger-window_nav_item span,
    .drawer_nav_sub-link span{
        font-size:.7em;
    }
    /*ビジネスパートナー様へ*/
    .drawer_nav_link{
        position: relative;
        display:block;
    }
    .accordion-toggle {
        position: relative;
        top:50%;
        border: none;
        cursor: pointer;
        z-index: 2;
        color:#fff;
        width:100%;
        padding:0;
        background:transparent;
    }
    .accordion-toggle div{
        text-align: left;
    }
    .accordion-toggle::before,
    .accordion-toggle::after {
        content: "";
        background:#fff;
        position:absolute;
        top:50%;
        right:1rem;
        display:block;
    }
    .accordion-toggle::before{
        width:20px;
        height:2px;
        transform: translateY(-50%);
    }
    .accordion-toggle::after{
        width:2px;
        height:20px;
        right:26px;
        transform: translate(50%, -50%);
    }
    .drawer_nav_panel {
        display: none;
        padding-left: 1rem;
        margin-top:20px;
    }
    .drawer_nav_sub-item{
        padding:10px 0;
        position:relative;
    }
    .hamburger-window_nav_item.active .accordion-toggle::after {
        transform:scaleY(0);
    }
    .drawer_nav_sub-link::after{
        content:"→";
        position:absolute;
        top:50%;
        transform:translateY(-50%);
        font-family: "calendas";
        font-size:1.2em;
        right:.5em;
        transition:all .3s;
    }
    .drawer_nav_sub-item:hover .drawer_nav_sub-link::after{
        transform:translate(8px , -50%);
    }

    /*採用情報 会社概要 sns*/
    .hamburger-window_other{
        display:flex;
        justify-content: space-between;
        align-items: center;
        margin-top:40px;
    }
    .hamburger-window_other_left{
        display:flex;
        column-gap: 20px;
    }
    .hamburger-window_other_left_item a{
        color:#fff;
        transition:all .3s;
    }
    .hamburger-window_other_left_item a:hover{
        opacity:.6;
    }
    .hamburger-window_other_right{
        display:flex;
        column-gap: 20px;
    }
    .hamburger-window_other_right_item a{
        transition:all .3s;
    }
    .hamburger-window_other_right_item a:hover{
        opacity:.6;
    }
    /*力車イン・お問い合わせボタン*/
    .hamburger-window_btn_list{
        display:flex;
        flex-direction: column;
        gap:40px;
    }
    .hamburger-window_btn{
        margin-top:auto;
    }
    .hamburger-window_rickshawinn{
        background:#fff;
        padding:15px 35px;
        border-radius: 50px;
        border:1px solid #1a1a1a;
        transition:all .3s;
    }
    .hamburger-window_rickshawinn:hover{
        background:#702F36;
        border:1px solid #702F36;
        color:#fff;
    }
    .hamburger-window_contact{
        color:#fff;
        background:#1a1a1a;
        padding:15px 0;
        transition:all .3s;
    }
    .hamburger-window_contact:hover{
        background:#fff;
        color:#1a1a1a;
    }

/*メインビジュアル*/
.mv{
    width:100%;
    height:100svh;
    position:relative;
}
.mv_inner{
    position:relative;
}
.slide-size img{
    width: 100%;
    height:100svh;
    object-fit: cover;
    object-position: center;
    filter: brightness(70%);
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 12s linear 0s normal both;
}

.mv_txtArea{
    position:absolute;
    z-index:1;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align: center;
}
.mv_logo{
    margin-bottom:50px;
}
.mv_logo img{
    width:150px;
}
.mv_txt{
    color:#fff;
    line-height: 1.8;
}
.mv_txt01, .mv_txt02{
    margin:0;
}
.mv_txt01{
    font-size:2em;
    white-space: nowrap;
}
.mv_txt02{
    font-size:1.2em;
}

/*scroll down*/
.scroll_down{
    position:absolute;
    bottom:30px;
    right:50%;
    animation:arrowmove 1s ease-in-out infinite;
    z-index:2;
}
.scroll_down_wrapper{
    position:absolute;
    left:50%;
    bottom:30px;
    transform:translateX(-100%);
    color:#fff;
    font-size:.9em;
    text-align: center;
    text-transform: uppercase;
    width:24px;
    height:24px;
}
.scroll_text{
    display:block;
    font-size:.9em;
    white-space: nowrap;
}
.arrow{
    position:absolute;
    left:50%;
    width:24px;
    height:3px;
    opacity:0;
    transform:scale3d(0.5, 0.5, 0.5);
    animation:move 3s ease-out infinite;
}
.arrow:nth-child(2) {
  animation-delay: 1s;
}
.arrow:nth-child(3) {
  animation-delay: 2s;
}
.arrow:nth-child(1) {
  animation-delay: 3s;
}
.arrow::before,
.arrow::after{
    content:"";
    position:absolute;
    top:0;
    height:100%;
    width:51%;
    background: #fff;
}
.arrow::before{
    left:0;
    transform:skew(0deg , 30deg);
}
.arrow::after{
    right:0;
    width:50%;
    transform:skew(0deg , -30deg);
}
@keyframes move{
    25%{
        opacity:1;
    }
    33%{
        opacity:1;
        transform:translateY(15px);
    }
    100%{
        opacity:0;
        transform:translateY(35px) scale3d(0.5, 0.5, 0.5);
    }
}

/*ページ内リンク*/
.page-link{
    max-width:1200px;
    margin:0 auto;
    padding:100px 40px;
}
.page-link_btn{
    display:flex;
    align-items: center;
    justify-content: center;
    gap:5vw;
}
.link_btn_item{
    border:2px solid #1a1a1a;
    border-radius:20px;
    box-shadow: 0px 0px 8px #1a1a1a;
    width:100%;
    max-width:300px;
    transition:all .5s;
}
.link_btn_item a{
    display:flex;
    flex-direction: column;
    align-items: center;
    padding:3vw;
    width:100%;
    height:100%;
}
.link_btn_item:hover{
    box-shadow: none;
}
.link_btn_item a span{
    font-size:2em;
}
.link_btn_item a small{
    font-size:1em;
}

/*追加ボタン*/
.gaiyou_btn{
    max-width:1200px;
    margin:0 auto;
    padding-top:50px;
}
.gaiyou_btn_list{
    display:flex;
    align-items: center;
    gap:20px;
}
.gaiyou_btn_item{
    background:#702F36;
    width:100%;
    max-width:180px;
    border-radius:50px;
}
.gaiyou_btn_item a{
    display:flex;
    flex-direction: column;
    align-items: center;
    color:#fff;
    padding:10px;
    position:relative;
}
.gaiyou_btn_item a span{
    font-size:1.1em;
}
.gaiyou_btn_item a small{
    font-size:.7em;
}
.gaiyou_btn_item a::after{
    content:"";
    position:absolute;
    top:50%;
    right:10%;
    width:20px;
    height:1px;
    background:#fff;
    transform:scaleX(1);
    transform-origin:right;
    transition:all .5s;
}
.gaiyou_btn_item a:hover::after{
    transform:scaleX(0);
    opacity:0;
}

.company_btnArea{
    max-width:1200px;
    margin:0 auto;
    padding-top:80px;
    display:flex;
    justify-content: flex-end;
}
.company_btn{
    background:#702F36;
    width:100%;
    max-width:230px;
    border-radius:50px;
}
.company_btn a{
    display:flex;
    align-items: center;
    flex-direction: column;
    color:#fff;
    padding:15px;
    position:relative;
}
.company_btn a::after{
    content:"";
    position:absolute;
    top:50%;
    right:10%;
    width:30px;
    height:1px;
    background:#fff;
    transform:scaleX(1);
    transform-origin:right;
    transition:all .5s;
}
.company_btn a:hover::after{
    transform:scaleX(0);
    opacity:0;
}


/*私たちについて*/
.about{
    padding:180px 40px;
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
.about_inner{
    display:flex;
    gap:90px
}
.about_left{
    width:40%;
}
.about_right{
    width:60%;
}
.about_ttl{
    margin-bottom:180px;
}
 /*ScrollTrigger*/
.title__en{
    font-size:4em;
    margin:0;
}
.js-text-effect span{
    display:inline-block;
    opacity:0;
    visibility: visible;
    transform:rotateY(90deg);
}

.about_ttl span{
    font-size:.8em;
}
.about_img1{
    width:100%;
    max-width:420px;
    aspect-ratio: 4 / 5;
}
.about_img1 img{
    object-fit: cover;
    width:100%;
    height:100%;
    object-position: center center;
}
.about_img2{
    width:100%;
    max-width:700px;
    aspect-ratio: 6 / 4;
}
.about_img2 img{
    object-fit: cover;
    width:100%;
    height:100%;
    object-position: center center;
}
.about_txt{
    margin:80px 0;
}
.about_btn{
    text-align: right;
}
.about_btn a{
    color:#fff;
    background:#702F36;
    padding:25px 90px;
    border-radius: 50px;
    position:relative;
    transition:all .3s;
}
.about_btn a::after{
    content:"";
    position:absolute;
    top:50%;
    right:10%;
    width:40px;
    height:1px;
    background:#fff;
    transform:scaleX(1);
    transform-origin:right;
    transition:all .5s;
}
.about_btn a:hover{
    background:#2C4B3A;
}
.about_btn a:hover::after{
    transform:scaleX(0);
    opacity:0;
}

/*力車イン*/
.rickshawinn{
    /*background:#f5f5f5;*/
    padding:180px 40px;
}
.rickshawinn_inner{
    display:flex;
    gap:90px;
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
.rickshawinn_left{
    width:60%;
}
.rickshawinn_right{
    width:40%;
}
.rickshawinn_ttl{
    margin-bottom:180px;
}
.rickshawinn_ttl span{
    font-size:.8em;
}
.rickshawinn_img2{
    width:100%;
    max-width:420px;
    aspect-ratio: 4 / 5;
}
.rickshawinn_img2 img{
    object-fit: cover;
    width:100%;
    height:100%;
    object-position: center center;
}
.rickshawinn_img1{
    width:100%;
    max-width:700px;
    aspect-ratio: 6 / 4;
}
.rickshawinn_img1 img{
    object-fit: cover;
    width:100%;
    height:100%;
    object-position: center center;
}
.rickshawinn_txt{
    margin:80px 0;
}
.rickshawinn_btn2 a{
    background:#fff;
    border:1px solid #1a1a1a;
    padding:25px 90px;
    border-radius: 50px;
    position:relative;
    transition:all .3s;
}
.rickshawinn_btn2 a::after{
    content:"";
    position:absolute;
    top:50%;
    right:10%;
    transform:translateY(-50%);
    background-image:url(../images/rickshaw_link.svg);
    background-repeat:no-repeat;
    background-size:cover;
    width:16px;
    height:16px;
    transition:all .3s;
}
.rickshawinn_btn2 a:hover{
    color:#fff;
    background:#702F36;
    border:1px solid #702F36;
}
.rickshawinn_btn2 a:hover::after{
    background-image:url(../images/rickshaw_link_hover.svg);
}

/*体験・魅力*/
.experience{
    background:#2C4B3A;
    padding:180px 40px;
    color:#fff;
}
.experience_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
.experience_content{
    padding:100px 0 80px 0;
    display:flex;
    align-items: flex-start;
    gap:40px;
}
.experience_txt{
    margin:0;
}
.experience_ttl span{
    font-size:.8em;
}
.experience_img2{
    width:100%;
    max-width:500px;
    aspect-ratio: 6 / 4;
}
.experience_img2 img{
    object-fit: cover;
    width:100%;
    height:100%;
    object-position: center center;
}
/*.experience_img_wrapper{
    display:flex;
    margin:100px 0 200px 0;
}
.experience_img1{
    width:100%;
    max-width:400px;
    aspect-ratio: 4 / 5;
    z-index:2;
}
.experience_img1 img,
.experience_img2 img{
    object-fit: cover;
    width:100%;
    height:100%;
    object-position: center center;
}
.experience_img2{
    width:100%;
    max-width:900px;
    aspect-ratio: 6 / 4;
}
.experience_img_area1{
    position:relative;
    z-index:2;
    bottom:-180px;
    left:25px;
}
.experience_img_area1 p{
    position:absolute;
    top:-20px;
    left:40px;
    writing-mode: vertical-lr;
    color:#1a1a1a;
    background:#fff;
    padding:40px 5px;
    font-size:2em;
    margin:0;
    letter-spacing: .2em;
}
.experience_img_area2{
    position:relative;
    right:25px;
    z-index:1;
}
.experience_img_area2 p{
    position:absolute;
    top:-20px;
    right:40px;
    writing-mode: vertical-lr;
    color:#1a1a1a;
    background:#fff;
    padding:40px 5px;
    font-size:2em;
    margin:0;
    letter-spacing: .2em;
}*/
.experience_btn{
    text-align: right;
}
.experience_btn a{
    color:#fff;
    background:#702F36;
    padding:25px 90px;
    border-radius: 50px;
    position:relative;
    transition:all .3s;
}
.experience_btn a::after{
    content:"";
    position:absolute;
    top:50%;
    right:10%;
    width:40px;
    height:1px;
    background:#fff;
    transform:scaleX(1);
    transform-origin:right;
    transition:all .5s;
}
.experience_btn a:hover::after{
    transform:scaleX(0);
    opacity:0;
}

/*事業内容*/
.business{
    background:#f5f5f5;
    padding:180px 40px;
}
.business_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
.business_content{
    display:flex;
    gap: 80px;
    align-items: center;
    justify-content: center;
}
.business_content_sp{
    display:none;
}
.business_ttl{
    margin-bottom:80px;
}
.business_ttl span{
    font-size:.8em;
}
.sidebar{
    width:100%;
    max-width:40%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.sidebar a{
    padding:30px 20px;
    background:#fff;
    border:1px solid #1a1a1a;
    border-radius: 100px;
    transition:all .3s;
    position:relative;
    display:flex;
    flex-direction: column;
    align-items: center;
    width:100%;
    max-width:450px;
}
.sidebar a span{
    font-size:1.7em;
    letter-spacing: 0.05em;
}
.sidebar a small{
    font-size:.8em;
}
.sidebar a::after{
    content:"";
    position:absolute;
    top:50%;
    right:10%;
    width:90px;
    height:1px;
    background:#1a1a1a;
    transform:scaleX(1);
    transform-origin: right;
    transition:all .8s;
}
.sidebar a:hover{
    background:#1a1a1a;
    color:#fff;
}
.sidebar a:hover::after{
    transform:scaleX(0);
    opacity:0;
    background:#fff;
}

.image-area{
    flex:1;
    position:relative;
    min-height:670px;
    width:100%;
    max-width:60%;
}
.image-group{
    position:absolute;
    opacity:0;
    gap:50px;
    transform:translateY(20px);
    transition:all .8s;
    display: flex;
    flex-direction: column;
    width:100%;
}
.image-group.active {
    opacity: 1;
    transform:translateY(0);
}

.image-sub-group{
    display:flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap:50px;
}
.img_item1{
    width:100%;
    max-width:570px;
    aspect-ratio: 6 / 4;
    position:relative;
    left:50%;
    top:0;
    transform:translateX(-50%);
}
.img_item1 img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center center;
}
.img_item2{
    width:100%;
    max-width:280px;
    height:180px;
}
.img_item2 img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center center;
}
.img_item3{
    width:100%;
    max-width:280px;
    height:180px;
    position:relative;
    bottom:-50px;
}
.img_item3 img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center center;
}

/*お知らせ*/
.news{
    padding:150px 40px;
}
.news_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
.news_ttl{
    text-align: center;
    margin-bottom:80px;
}
.news_ttl span{
    font-size:.8em;
}
.news_list{
    display:flex;
    align-items: flex-start;
    justify-content: center;
    gap:50px;
    margin-bottom:80px;
    width:100%;
}
.news_item{
    width:33.33%;
}
.news_item a{
    display:flex;
    flex-direction: column;
    gap:10px;
}
.news_item a:hover img{
    transform:scale(1.1);
    transition:all .5s;
}
.news_img{
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.news_img img{
    object-fit: cover;
    width:100%;
    height:100%;
    object-position: center center;
    transition:all .5s;
}
.news_cate_date{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.news_cate{
    color:#fff;
    background: #2c4b3a;
    border-radius:20px;
    font-size:.8em;
    padding:2px 8px;
    width:100%;
    max-width:7em;
    text-align: center;
}
.news_date{
    font-size:.8em;
}
.news_txt{
    margin-bottom:0;
    display:-webkit-box;/*行数制限*/
    -webkit-line-clamp: 2;
    -webkit-box-orient:vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news_btn{
    text-align:right;
    padding-top:4em;
}
.news_btn a{
    color:#fff;
    background:#702F36;
    padding:25px 90px;
    border-radius: 50px;
    position:relative;
    transition:all .3s;
}
.news_btn a::after{
    content:"";
    position:absolute;
    top:50%;
    right:10%;
    width:40px;
    height:1px;
    background:#fff;
    transform:scaleX(1);
    transform-origin:right;
    transition:all .5s;
}
.news_btn a:hover::after{
    transform:scaleX(0);
    opacity:0;
}
.news_btn a:hover{
    background: #2C4B3A;
}

/*もりあげ隊バナー*/
.moriagetai,
.yattorusa{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:80px 40px 120px 40px;
    text-align: center;
    position:relative;
}
.banner_txt{
    color:#fff;
    background:#2c4b3a;
    font-size:1.2em;
    display:inline-block;
    margin:0 auto;
    padding:15px 35px;
    position:relative;
    margin-bottom:45px;
}
.banner_txt::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-25px;
    width:0;
    height:0;
    border-left:15px solid transparent;
    border-right:15px solid transparent;
    border-top:25px solid #2c4b3a;
}
.banner a img,
.banner img{
    width:100%;
    max-width:1000px;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.25);
}
.banner a:hover{
    opacity:.8;
    transition:all .5s;
}

/*
力車動画
*/
.movie{
    padding:70px 40px;
}
.movie_inner{
    max-width:1200px;
    margin:0 auto;
}
.movie_list{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:60px;
}
.movie_item a{
    transition:all .5s;
}
.movie_ttl{
    border:1px solid #1a1a1a;
    border-radius:100px;
    text-align: center;
    padding:10px;
}
/*youtubeボタン風*/
.movie_thumb {
    position: relative;
    overflow: hidden;
    line-height: 0;
    aspect-ratio: 16 / 9;
}
.movie_thumb .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 1;
    border: 2px solid #fff;
}
.movie_thumb .play::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 5px;
}
.movie_item:hover .play {
    background: rgba(255, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: transparent;
}
.movie_item img{
    transition:all .5s;
    width:100%;
    height:100%;
    object-fit: cover;
}
.movie_item:hover img {
    transform: scale(1.05);
}
/*youtubeボタン風*/

/*フッター*/
.footer{
    background:#2c4b3a;
    color:#fff;
    padding:100px 40px 30px 40px;
}
.footer a{
    color:#fff;
}
.footer_inner{
    width:100%;
    max-width:1200px;
    margin: 0 auto;
    display:flex;
    flex-direction: column;
    gap:30px;
}
.footer_block1_wrapper{
    display:flex;
    justify-content: space-between;
}
.footer_addarea{
    font-size:.9em;
    line-height: 1.8;
}
.f_gmap{
    background:#000;
    padding:3px 10px;
}
.f_gmap:hover{
    background:#fff;
    color:#1a1a1a;
    transition:all .3s;
}
.f_sysad{
    position:relative;
    display:inline-flex;
    align-items: center;
    gap:8px;
}
.f_sysad span{
    display:inline-block;
    width:16px;
    height:16px;
    background-image:url(../images/f_sysad_link.svg);
    background-repeat:no-repeat;
    background-size:cover;
}
.f_sysad:hover{
    opacity:.6;
    transition:all .3s;
}
.footer_nav{
    display:flex;
    flex-direction: column;
    gap:20px;
}
.footer_nav_list{
    display:flex;
    align-items: center;
    justify-content: flex-end;
    gap:20px;
}
.footer_nav_item a{
    position:relative;
    display:inline-flex;
    align-items: center;
    gap:8px;
}
.footer_nav_item a::before{
    content:"";
    display:inline-block;
    width:6px;
    height:2px;
    background:#fff;
}
.footer_nav_item a:hover{
    opacity:.6;
    transition:all .3s;
}
.footer_block2{
    display:flex;
    align-items: flex-end;
    justify-content: space-between;
}
.footer_other_link{
    display:flex;
    flex-direction: column;
    gap:20px;
}
.footer_sns_list{
    display:flex;
    align-items: center;
    gap:15px;
}
.footer_sns_item a{
    display:block;
    width:24px;
    height:24px;
}
.footer_sns_item a:hover{
    opacity:.6;
    transition:all .3s;
}
.footer_contact{
    width:250px;
    height:70px;
    background:#000;
    transition:all .3s;
}
.footer_contact a{
    display:block;
    width:100%;
    height:100%;
    text-align: center;
    line-height: 70px;
}
.footer_contact:hover{
    background:#fff;
}
.footer_contact a:hover{
    color:#1a1a1a;
}
.privacy{
    margin:0;
    font-size:.9em;
}
.privacy a:hover{
    opacity:.6;
    transition:all .3s;
}
.footer small{
    text-align: center;
    font-size:.75em;
    font-weight:normal;
}


/*
下層ページ共通部分
*/
.header_logo{
    position:sticky;
    top:20px;
    padding-left:2em;
    margin-bottom:100px;
    z-index:9998;
}
.pc_logo img{
    width:210px;
}
.sp_logo{
    display:none;
}
.titleArea{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 40px 80px 40px;
}
.titleArea_inner{
    position:relative;
    height:200px;
    padding:50px 50px 50px 80px;
    display:flex;
    align-items: center;
}
/*borderアニメーション*/
.titleArea_inner::before,
.titleArea_inner::after{
    content:"";
    position:absolute;
    background:#000;
}
.titleArea_inner::before{
    top:0;
    left:0;
    height:1px;
    width:0;
    transform-origin:left center;
    animation:borderTop 1.2s ease forwards; 
}
.titleArea_inner::after{
    top:0;
    left:0;
    width:1px;
    height:0;
    transform-origin:top center;
    animation:borderLeft 1.2s ease forwards;
}
@keyframes borderTop {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes borderLeft {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
.titleArea_inner span{
    position:absolute;
    top:0;
    left:0;
    writing-mode: sideways-rl;
    border-right:1px solid #1a1a1a;
    border-bottom:1px solid #1a1a1a;
    padding:5px 3px;
    font-size:.8em;
    font-weight:500;
    letter-spacing: 0.1em;
}
.titleArea_inner h2{
    font-size:4em;
    margin:0;
}
/*ページトップ*/
.pagetop_link{
    position:fixed;
    display:flex;
    align-items: center;
    justify-content: center;
    right:40px;
    bottom:20px;
    cursor: pointer;
    opacity:0;
    visibility: hidden;
    transition:all .3s;
    z-index:1;
    mix-blend-mode: difference;
    isolation: isolate;
}
.pagetop{
    writing-mode: vertical-rl;
    text-transform: uppercase;
    height:65px;
    margin:0;
    letter-spacing: 0.1em;
    text-align: right;
    position:relative;
    color:#fff;
}
.pagetop::before{
    content:"";
    position:absolute;
    top:2px;
    right:-5px;
    width:2px;
    height:18px;
    background:#fff;
    transform:skewX(-150deg);
}
.pagetop::after{
    content:"";
    position:absolute;
    bottom:0;
    right:0;
    width:2px;
    height:63px;
    background:#fff;
}
.pagetop_link.is-active{
    opacity:1;
    visibility: visible;
}


/*
私たちについて
*/
.about_point{
    padding:0 40px 180px 40px;
    width:100%;
    background:#fff;
}
.about_point_inner{
    display:flex;
    flex-direction: column;
    gap:100px;
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
.point_content{
    position:relative;
    display:flex;
}
.point_txt{
    position:absolute;
    bottom:0;
    right:120px;
    width:45%;
    background:#fff;
    padding:30px;
    margin:0;
}
.point_ttl{
    margin-bottom:30px;
}
.point_ttl h4{
    margin:0;
    font-size:2em;
}
.point_img{
    width:100%;
    max-width:600px;
    aspect-ratio: 6 / 4;
}
.point_img img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.point_content2{
    position:relative;
    display:flex;
    flex-direction: row-reverse;
}
.point_txt2{
    position:absolute;
    bottom:0;
    left:120px;
    width:45%;
    background:#fff;
    padding:30px;
    margin:0;
}
.point_ttl2{
    margin-bottom:30px;
    text-align: right;
}
.point_ttl2 h4{
    margin:0;
    font-size:2em;
}

.about_message{
    background:#f5f5f5;
}
.about_message_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:180px 40px;
}
.message_ttl{
    margin-bottom:60px;
}
.message_ttl h4{
    margin: 0;
    font-size:2em;
}
.message_block{
    line-height: 1.8;
    margin-top:30px;
    margin-bottom:0;
}
.message_history li{
    position:relative;
    margin-left:1em;
}
.message_history li::before{
    content:"・";
    position:absolute;
    left:0;
    top:0;
    transform:translateX(-100%);
}
.catchcopy{
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-top:50px;
}
.catchcopy h2{
    color:#702F36;
    font-size:2.5em;
    letter-spacing: 0.05em;
}
.president p{
    text-align: right;
    line-height: 1.5;
    margin:5px 0;
}

.philosophy{
    padding:100px 40px;
    background:#fff;
}
.philosophy_inner{
    padding:120px 0;
    background-image:url(../images/about/bg_logo.png);
    background-repeat:no-repeat;
    background-position: right 200px;
    width:100%;
    max-width:600px;
    margin:0 auto;
}
.philosophy_ttl{
    margin-bottom:60px;
    text-align:center;
}
.philosophy_ttl h4{
    margin: 0;
    font-size:2em;
}
.philosophy_txt{
    line-height: 1.8;
    font-size:1.15em;
}

/**
体験・魅力
**/
.exp_highlights{
    background:#2c4b3a;
}
.exp_highlights_inner{
    width:100%;
    max-width:1300px;
    margin:0 auto;
    padding:180px 40px;
}
.exp_highlights_imgArea1{
    position:relative;
    display:flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom:100px;
    gap:50px;
}
.exp_highlights_img1{
    width:100%;
    max-width:700px;
    aspect-ratio: 6 / 4;
}
.exp_highlights_img1 img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.exp_highlights_img2{
    width:100%;
    max-width:450px;
    aspect-ratio: 6 / 4;
    margin-bottom:-65px;
}
.exp_highlights_img2 img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.exp_highlights_imgArea2{
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
    margin:180px 0;
    gap:50px;
    position:relative;
}
.exp_highlights_img3{
    width:100%;
    max-width:340px;
    aspect-ratio: 3 / 4;
    margin-left:85px;
    margin-top:-60px;
}
.exp_highlights_img3 img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.exp_highlights_img4{
    width:100%;
    max-width:700px;
    aspect-ratio: 6 / 4;
}
.exp_highlights_img4 img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.exp_highlights_txtArea{
    color:#fff;
}
.exp_highlights_ttl{
    margin-bottom:50px;
}
.exp_highlights_ttl h4{
    margin:0;
    font-size:2em;
}
.en,.jp{
    line-height: 1.8;
}
.en{
    margin-bottom: 50px;
    margin-top:0;
}
.jp{
    margin:0;
}
/*画像ループ*/
.img_loop{
    overflow: hidden;
}
.wrapper_loop{
    transition-timing-function:linear !important;
}
.swiper-slide1{
    aspect-ratio: 3 / 2;
}
.swiper-slide1 img{
    width:100%;
    height:100%;
    object-fit: cover;
}

.spend_time{
    background:#f5f5f5;
}
.spend_time_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:180px 40px;
}
.spend_time_ttl{
    margin-bottom:50px;
}
.spend_time_ttl h4{
    margin:0;
    font-size:2em;
}
/*スポット*/
.spots_ttl{
    position:relative;
    text-align: center;
    margin-bottom:50px;
}
.spots_ttl::after{
    content:"";
    position:absolute;
    top:70px;
    left: 50%;
    width:1px;
    height:40px;
    background:#1a1a1a;
}
.spots_ttl h4{
    margin:0;
    font-size:1.8em;
}
.spots_slide{
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin:80px 0;
}
.swiper-slide2{
    position:relative;
    width:100%;
}
.spot_slide_img{
    width:100%;
    aspect-ratio: 7 / 4;
}
.spot_slide_img img{
    width:100%;
    height:100%;
    object-fit: cover;
    filter:brightness(80%);
}
.spot_txt{
    color:#fff;
}
.spot_jp,
.spot_en{
    margin:0;
}
.spot_txt01{
    position:absolute;
    display:flex;
    align-items: center;
    justify-content: space-between;
    top:0;
    left:0;
    width:100%;
    padding:40px 60px;
    font-size:1.2em;
}
.spot_txt02{
    position:absolute;
    bottom:0;
    left:0;
    padding:25px 60px;
}
.spot_en2,
.spot_jp2{
    letter-spacing: 0.05em;
}
/*ページネーション*/
.swiper-button-prev::after,
.swiper-button-next::after {
    color:#fff;
    font-size:2em !important;
    font-weight:normal;
}
.swiper-button-prev{
    left:60px !important;
}
.swiper-button-next{
    right:60px !important;
}

/*グルメ*/
.food_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:120px 40px;
}
.food_ttl{
    position:relative;
    text-align: center;
    margin-bottom:100px;
}
.food_ttl::after{
    content:"";
    position:absolute;
    top:70px;
    left: 50%;
    width:1px;
    height:40px;
    background:#1a1a1a;
}
.food_ttl h4{
    margin:0;
    font-size:1.8em;
}
.food_slide{
    position:relative;
    overflow: hidden;
    width:100%;
    max-width:800px;
    margin:100px auto 0 auto;
    cursor: pointer;
}
.swiper-slide3{
    position:relative;
}
.food_slide_img{
    width:100%;
    aspect-ratio: 6 / 4;
}
.food_slide_img img{
    width:100%;
    height:100%;
    object-fit: cover;
    filter:brightness(80%);
}
.food_jp{
    position:absolute;
    top:25px;
    left:20px;
    writing-mode: tb;
    color:#fff;
    margin:0;
    font-size:1.2em;
    letter-spacing: 0.05em;
}
.food_en{
    position:absolute;
    bottom:25px;
    right:30px;
    color:#fff;
    margin: 0;
    letter-spacing: 0.05em;
}

/*モデルコース*/
.model_ttl{
    width:100%;
    max-width:1200px;
    margin:80px auto 0 auto;
    text-align:center;
    position:relative;
}
.model_ttl::after{
    content:"";
    position:absolute;
    top:70px;
    left:50%;
    width:1px;
    height:40px;
    background:#1a1a1a;
}
.model_ttl h4{
    margin:0;
    font-size:1.8em;
}

.scroll_wrap{
    overflow: hidden;
}
.scroll_contents{
    display:flex;
    height:100vh;
    padding-left:100px;
    /*margin-inline: auto;
    position:relative;*/
    gap:50px;
}
.js-scroll-wrapper{
    height:100vh;
    /*padding-left:100px;*/
}
/*.scroll_spacer {
    width: 100px;
    flex: 0 0 auto;
}*/
.scroll_item{
    position:relative;
    width:80vw;/*100%*/
    max-width: 1000px;
    flex:0 0 auto;
    /*margin-right:50px;*/
    /*overflow: hidden;*/
    margin-top:auto;
    margin-bottom:auto;
}
.scroll_img{
    width:100%;
    aspect-ratio: 16 / 9;
}
.scroll_img img{
    width:100%;
    height:100%;
    object-fit: cover;
    filter:brightness(80%);
}
.scroll_ttlArea{
    position:absolute;
    top:20px;
    left:30px;
    color:#fff;
    display:flex;
    align-items: center;
    gap:20px;
}
.scroll_num{
    font-size:3em;
}
.scroll_ttl{
    line-height: 1.2;
}
.scroll_ttl1{
    font-size:1.8em;
}
.scroll_ttl2{
    font-size:1.2em;
}
.scroll_comment{
    position:absolute;
    bottom:15px;
    right:30px;
    color:#fff;
    line-height: 1.5;
}
.scroll_en,
.scroll_jp{
    margin:0;
    letter-spacing: 0.05em;
}

/**
ビジネス
**/
.b_subttl{
    padding-right:3em;
    font-size:2em;
    text-align:right;
    margin-bottom:30px;
    /*text-shadow: 2px 2px #ccc;*/
    opacity:0;
    animation:fadeInOnly 2s ease-out forwards;
    animation-delay:.5s;
}
@keyframes fadeInOnly{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

.it{
    background:#f5f5f5;
}
.it_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:180px 40px;
}
.it_ttl{
    text-align: center;
    margin-bottom:50px;
    position:relative;
}
.it_ttl::after{
    content:"";
    position:absolute;
    bottom:-3px;
    left:50%;
    transform:translateX(-50%);
    width:24px;
    height:4px;
    background:#1a1a1a;
}
.it_ttl h4{
    margin:0;
    font-size:2em;
}
.it_ttl2{
    text-align: center;
    margin:0 0 80px 0;
    font-size:1.2em;
}
.it_work_list{
    display:grid;
    grid-template-columns: repeat(2,auto);
    column-gap:50px;
    row-gap:100px;
}
.it_work_item{
    display:flex;
    align-items: flex-start;
    gap:25px;
}
.it_work_img{
    width:100%;
    max-width:300px;
    aspect-ratio: 1 / 1;
}
.it_work_img img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1;
}
.it_work_txt{
    width:100%;
    max-width:300px;
}
.it_work_txt01{
    margin:0 0 15px 0;
    font-size:1.2em;
}
.it_work_txt01 span{
    background:#1a1a1a;
    color:#fff;
    display:inline-flex;
    align-items: center;
    justify-content: center;
    width:2em;
    height:2em;
    border-radius: 50%;
    margin-right:.5em;
}
.it_work_txt02{
    font-weight:500;
}
.it_work_menu li{
    position:relative;
    padding-left:1em;
}
.it_work_menu li::before{
    content:"・";
    position:absolute;
    left:0;
}


.local{
    background:#fff;
}
.local_inner{
    padding:180px 40px;
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
.local_ttl{
    text-align: center;
    margin-bottom:50px;
    position:relative;
}
.local_ttl::after{
    content:"";
    position:absolute;
    bottom:-3px;
    left:50%;
    transform:translateX(-50%);
    width:24px;
    height:4px;
    background:#1a1a1a;
}
.local_ttl h4{
    margin:0;
    font-size:2em;
}
.local_ttl2{
    text-align: center;
    margin:0 0 80px 0;
    font-size:1.2em;
}
.local_list{
    display:flex;
    gap:35px;
    margin-top:100px;
}
.local_item{
    width:100%;
    max-width:400px;
}
.local_item a:hover{
    opacity:.8;
    transition:all .3s;
}
.local_img{
    width:100%;
    aspect-ratio: 4 / 2;
}
.local_img img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center;
}
.local_item_ttl{
    position:relative;
    padding-left:1.6em;
}
.local_item_ttl::after{
    content:"";
    position:absolute;
    top:2px;
    left:0;
    width:18px;
    height:18px;
    background-image:url(../images/business/link.svg);
    background-size:cover;
    background-repeat:no-repeat;
}

.local_sns{
    padding-top:100px;
}
.local_sns_ttl{
    text-align:center;
    font-size:1.6em;
    margin-bottom:60px;
}
.local_sns_list{
    display:grid;
    grid-template-columns: repeat(2,auto);
    gap:60px;
    justify-content: center;
}
.local_sns_item a:hover{
    opacity:.8;
    transition:all .3s;
}

.moriagetai2{
    padding:80px 0 0 0;
    text-align: center;
    position:relative;
}

.hotel{
    background:#f5f5f5;
}
.hotel_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:180px 40px;
}
.hotel_ttl{
    text-align: center;
    margin-bottom:50px;
    position:relative;
}
.hotel_ttl h4{
    margin:0;
    font-size:2em;
}
.hotel_ttl::after{
    content:"";
    position:absolute;
    bottom:-3px;
    left:50%;
    transform:translateX(-50%);
    width:24px;
    height:4px;
    background:#1a1a1a;
}
.hotel_ttl2{
    text-align: center;
    margin:0 0 80px 0;
    font-size:1.2em;
}
.rickshawinn_inner2{
    display:flex;
    gap:90px;
    align-items: anchor-center;
    margin-bottom:80px;
}
.hotel_overview{
    margin-bottom:100px;
}
.hotel_overview_ttl{
    text-align: center;
    margin-bottom:70px;
    margin-top:0;
    font-size:1.2em;
}
.hotel_overview_table{
    width:100%;
    max-width:700px;
    margin:0 auto;
}
.overview_table_box{
    display:flex;
    align-items: center;
    border-top:2px solid #1a1a1a;
    border-bottom:2px solid #1a1a1a;
    margin-bottom:-2px;
    padding:40px;
    width:100%;
}
.overview_table_ttl{
    width:30%;
}
.overview_table_txt{
    font-weight:500;
}

.hotel_btn_wrapper{
    display:flex;
    gap:20px;
    justify-content: flex-end;
}
.rickshawinn_btn3{
    text-align: right;
}
.rickshawinn_btn3 a{
    background:#fff;
    border:1px solid #1a1a1a;
    padding:25px 90px;
    border-radius:50px;
    position:relative;
    transition:all .3s;
}
.rickshawinn_btn3 a:hover{
    color:#fff;
    background:#702F36;
}
.rickshawinn_btn3 a::after{
    content:"";
    position:absolute;
    top:50%;
    right:10%;
    transform:translateY(-50%);
    background-image:url(../images/rickshaw_link.svg);
    background-repeat:no-repeat;
    background-size:cover;
    width:16px;
    height:16px;
    transition:all .3s;
}
.rickshawinn_btn3 a:hover::after{
    background-image:url(../images/rickshaw_link_hover.svg);
}

/**
会社概要
**/
.company_profile{
    background:#fff;
}
.company_profile_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 40px 180px 40px;
}
.company_ttl{
    margin-bottom:60px;
}
.company_ttl h4{
    margin:0;
    font-size:2em;
}

.profile_table_box{
    display:flex;
    align-items: center;
    border-bottom:3px solid #f1f1f1;
    padding:30px;
}
.profile_table_ttl{
    width:30%;
}
.profile_table_txt{
    display:flex;
    flex-direction: column;
    gap:15px;
    font-weight:500;
    width:70%;
}

.history{
    background:#fff;
    padding-bottom:100px;
}
.history_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
.history_ttl{
    margin-bottom:60px;
    padding:0 40px;
}
.history_ttl h4{
    margin:0;
    font-size:2em;
}
.history_list{
    background:#f5f5f5;
    padding:90px 120px 0 120px;
}
.history_item{
    position:relative;
    margin-left:1em;
    padding-bottom:6em;
    padding-left:2em;
    display:flex;
    gap:80px;
}
.history_item::before{
    content:"";
    position:absolute;
    top:5px;
    left:-10px;
    width:2px;
    height:100%;
    background:#2c4b3a;
    display:block;
}
.history_item:last-child::before {
    display: none;
}
.history_item::after{
    content:"";
    position:absolute;
    top:5px;
    left:-18px;
    display:block;
    box-sizing: initial;
    width:12px;
    height:12px;
    background:#702F36;
    border-radius:50%;
    border:3px solid #f5f5f5;
}
.history_item dt{
    font-size:1.2em;
    white-space: nowrap;
}
.history_item > div{
    line-height: 2;
}
.access{
    background:#fff;
}
.access_inner{
    padding:180px 0 0 0;
}
.access_ttl{
    width:100%;
    max-width:1200px;
    margin:0 auto 60px auto;
    padding:0 40px;
}
.access_ttl h4{
    margin:0;
    font-size:2em;
}
.map_ttl{
    color:#fff;
    background:#2c4b3a;
    padding:3px 5px;
    width:max-content;
    margin:0 auto;
}

/**
採用情報
**/
.rec_imgArea{
    position:relative;
    display:flex;
    justify-content: space-between;
    margin-top:100px;
    gap:100px;
    background:#fff;
}
.rec_img1{
    width:450px;
    aspect-ratio: 4 / 5;
    margin-bottom:-30px;
}
.rec_img1 img{
    width:100%;
    height:100%;
    object-fit: cover;
    opacity:0;
    animation:fadeInOnly 1.5s ease-out forwards;
    animation-delay: .5s;
}
.rec_img2{
    width:850px;
    aspect-ratio: 6 / 4;
}
.rec_img2 img{
    width:100%;
    height:100%;
    object-fit: cover;
    margin-top:-200px;
    opacity:0;
    animation:fadeInOnly 1.5s ease-out forwards;
    animation-delay: .3s;
}
@keyframes fadeInOnly{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

.rec_message{
    background:#f5f5f5;
    padding:180px 40px;
}
.rec_message_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
.rec_message_inner > div{
    margin:60px auto 0 auto;
    width:100%;
    max-width:1000px;
}
.rec_ttl{
    text-align: center;
    position:relative;
    margin-top:80px;
    margin-bottom:0;
    font-size:1.2em;
}
.rec_ttl::after{
    content:"";
    position:absolute;
    bottom:-5px;
    left:50%;
    width:24px;
    height:4px;
    background:#1a1a1a;
    transform:translateX(-50%);
}
.rec_en_message{
    color:#702F36;
    font-size:2.5em;
    line-height: 1.7;
    margin-bottom:60px;
}
.rec_txt{
    line-height: 1.8;
    margin:40px 0;
}
.rec_person_list{
    display:flex;
    gap:50px;
    justify-content: center;
    align-items: stretch;
}
.rec_person_item{
    width:100%;
    max-width:350px;
    padding:20px;
    border:4px solid #2c4b3a;
    display:flex;
    flex-direction: column;
    gap:25px;
}
.rec_person_item span{
    color:#702F36;
    font-size:1.8em;
}
.rec_person_img{
    width:100%;
    max-width:100px;
    aspect-ratio: 1 / 1;
    margin:0 auto;
}
.rec_person_img img{
    width:auto;
    height:100%;
    object-fit: cover;
}
.rec_person_item p{
    font-size:1.2em;
}

.rec_staff_list{
    display:flex;
    gap:60px;
}
.rec_staff_item{
    position:relative;
    padding:50px 20px;
    border:3px solid #2c4b3a;
    width:100%;
}
.rec_staff_item span{
    position:absolute;
    left:0;
    top:0;
    background: #2c4b3a;
    color:#fff;
    padding:2px 35px;
    font-size:.9em;
}
.rec_staff_txt01{
    color:#2c4b3a;
    font-size:1.2em;
    margin-top:0;
    margin-bottom:30px;
}
.rec_staff_txt02{
    margin:0;
}
 /*募集要項*/
.guidelines_tabcontainer{
    margin-top:80px;
}
.guidelines_tablist{
    display:flex;
    overflow-x: scroll;
    -ms-overflow-style:none;
    scrollbar-width:none;
}
.guidelines_tablist::-webkit-scrollbar{
    display:none;
}
.guidelines_tablist li{
    min-width:calc(100% / 5);
    flex:0 0 auto;
    border:1px solid #2c4b3a;
    border-bottom:none;
    border-right:none;
}
.guidelines_tablist li:last-of-type{
    border-right:1px solid #2c4b3a;
}
.guidelines_tablist li a{
    display:flex;
    justify-content: center;
    align-items: center;
    background:#fff;
    padding:20px 40px;
    transition:all .3s;
}
.guidelines_tablist li a.tabactive{
    background:#2c4b3a;
    color:#fff;
    cursor: text;
}
.guidelines_tabcontent > div{
    background:#fff;
    border:3px solid #2c4b3a;
    padding:80px;
    display:none;
}
.guidelines_tabcontent > div.contentactive{
    display:block;
}
.guidelines{
    background:#fff;
}
.guidelines_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:180px 40px;
}
.guidelines_inner p{
    font-size:1.5em;
    text-align: center;
    margin:0;
}
.content dl{
    display:flex;
    width:100%;
}
.content dt{
    width:18%;
    background:#2c4b3a;
    color:#fff;
    border-bottom:1px solid #fff;
    padding:25px;
}
.content dt:nth-last-of-type{
    border-bottom:1px solid #2c4b3a;
}
.content dd{
    border-bottom:1px solid #2c4b3a;
    width:82%;
    padding:25px;
    background:#fff;
    line-height:1.5;
}
.content dd ul li{
    position:relative;
    padding-left:1em;
}
.content dd ul li::before{
    content:"・";
    position:absolute;
    left:0;
    top:0;
    transform:translateX(-50%);
}
    /*entry*/
    .entry_btn{
        text-align:center;
        margin-top: 100px;
    }
    .entry_btn a{
        background:#fff;
        padding:30px 180px;
        border-radius:100px;
        border:1px solid #1a1a1a;
        font-size:1.8em;
        position:relative;
        transition:all .3s;
    }
    .entry_btn a:hover{
        background:#1a1a1a;
        color:#fff;
    }
    .entry_btn a::after{
        content:"";
        position:absolute;
        top:50%;
        right:10%;
        width:60px;
        height:1px;
        background:#1a1a1a;
        transform:scaleX(1);
        transform-origin:right;
        transition:all .8s;
    }
    .entry_btn a:hover::after{
        transform:scaleX(0);
        opacity:0;
        background:#fff;
    }

/**
お知らせ
**/
.sub_news{
    padding:50px 40px 150px;
}
.sub_news_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
.news-panel {
    display: none;
}
.news-panel.news-active {
    display: block;
}
.news_tablist .tab-link.news-active{
    color:#702F36;
}
.news_tablist{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}

.panel_list{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    row-gap:80px;
    column-gap:40px;
}

.sub_news_img{
    aspect-ratio: 360 / 260;
    overflow: hidden;
}
.sub_news_img img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition:all .5s;
    transform:scale(1);
}
.panel_item:hover .sub_news_img img{
    transform:scale(1.1);
}

.sub_news_txt01{
    display:flex;
    justify-content: space-between;
    margin-top:20px;
}
.category{
    background:#2c4b3a;
    color:#fff;
    font-size:.9em;
    border-radius:20px;
    width:6em;
    padding:2px 4px;
    display:inline-block;
    text-align: center;
}
.date{
    font-size:.8em;
}
.sub_news_txtArea > p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom:0;
}

.news_pagenation{
    text-align: center;
    margin-top:150px;
}
.wp-pagenavi span.current{
    background:#1a1a1a;
    color:#fff;
    width:40px;
    height:40px;
    display:inline-flex;
    justify-content: center;
    align-items: center;
    border-radius:50px;
    font-size:1.1em;
}
.wp-pagenavi a, .wp-pagenavi span{
    border:none !important;
    font-size:1.1em;
    display:inline-flex;
    justify-content: center;
    align-items: center;
    width:40px;
    height:40px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    font-size: 0;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
}
.wp-pagenavi .previouspostslink::before {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 12px solid #1a1a1a;
}
.wp-pagenavi .nextpostslink::before {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #1a1a1a;
}

/**
お知らせ詳細
**/
.news-single{
    padding:0 40px 180px;
}
.news-single_inner{
    max-width:900px;
    margin:0 auto;
}
.news-single_img{
    max-width:900px;
    aspect-ratio: 4 / 3;
}
.news-single_img img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.news-single_txt01{
    margin:45px 0;
    display:flex;
    align-items: center;
    gap:15px;
}
.news-single_ttl{
    margin-bottom:70px;
    font-size:1.2em;
}
.news-single_txt02{
    font-weight:500;
    line-height: 1.8;
}
.news-single_txt02 a{
    color:#702F36;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition:all .6s;
}
.news-single_txt02 a:hover{
    opacity:0.6;
}
.news_view{
    padding-top:100px;
}
.news_view_inner{
    display:flex;
    justify-content: space-between;
}

.news_pre a,
.news_next a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #1a1a1a;
}
.news_pre a {
    padding-left: 1em;
}
.news_pre a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid #1a1a1a;
    border-right: 2px solid #1a1a1a;
}
.news_next a {
    padding-right: 1em;
}
.news_next a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid #1a1a1a;
    border-right: 2px solid #1a1a1a;
}

/**
お問い合わせ
**/
.contact{
    padding:0 40px 180px;
    background:#fff;
}
.contact_inner{
    max-width:1200px;
    margin:0 auto;
}
.contact_tel_box{
    text-align: center;
    margin-bottom:150px;
}
.contact_tel_box > h2{
    position:relative;
    margin-bottom:80px;
}
.contact_tel_box > h2::after{
    content:"";
    position:absolute;
    bottom:-55px;
    left:50%;
    width:1px;
    height:50px;
    background:#1a1a1a;
}
.tel_ttl{
    line-height: 1;
    width:max-content;
    margin:0 auto;
    background:#2c4b3a;
    color:#fff;
    padding:5px 10px;
}
.tel_num{
    margin:0;
    font-size:3em;
    letter-spacing: 0.05em;
}
.tel_txt{
    margin-top:0;
    margin-bottom:80px;
    font-weight:500;
    font-size:.9em;
}


.form_box{
    max-width:900px;
    margin:0 auto;
}
.form_box > h2{
    position:relative;
    margin-bottom:100px;
    text-align: center;
}
.form_box > h2::after{
    content:"";
    position:absolute;
    bottom:-55px;
    left:50%;
    width:1px;
    height:50px;
    background:#1a1a1a;
}
.mail_form_list{
    display:flex;
    flex-direction: column;
}
.mail_form_item{
    display:flex;
    align-items: center;
    padding:30px 0;
}
.mail_form_item > dt{
    width:35%;
}
.mail_form_item > dd{
    width:65%;
}
.form_text{
    padding:15px 10px;
    width:100%;
    border:1px solid #1a1a1a;
    font-size:.9em;
}
.form_text2{
    padding:15px 10px;
    width:50%;
    border:1px solid #1a1a1a;
    font-size:.9em;
}
.add_box{
    display:flex;
    flex-direction: column;
    gap:10px;
    flex:1;
}
.form_required{
    color:#702F36;
}
.grid{
    display:flex;
    gap:.5em;
    flex-wrap:wrap;
}

.recruit_fields .school{
    display:flex;
    gap:10px;
}
.recruit_fields > dd .school_txt{
    padding:15px 10px;
    width:100%;
    border:1px solid #1a1a1a;
    font-size:.9em;
}
.recruit_fields > dd select{
    padding:15px 20px;
    border:1px solid #1a1a1a;
    font-size:.9em;
}
.form_textarea{
    width:100%;
    padding:10px;
    border:1px solid #1a1a1a;
    font-family: "Noto sans JP", sans-serif;
    font-size:.9em;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: 2px solid #2c4b3a;
}

/*ラジオボタン*/
.label {
    display: flex;
    gap: 3px;
    cursor: pointer;
}
.label input[type="radio"] {
    appearance: none;          /* デフォルト非表示 */
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #2c4b3a;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all .2s ease;
}
.label input[type="radio"]:checked {
    background-color: #fff;
    border-color: #2c4b3a;
}
/*中の丸*/
.label input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #2c4b3a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
/*ラジオボタン*/

.mail_form_item2{
    text-align: center;
}
.mail_form_item2 a{
    color:#702F36;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.mail_form_item2 dd{
    display:flex;
    align-items: center;
    justify-content: center;
    margin-top:5px;
}
.agree_btn{
    display:flex;
    align-items: center;
    cursor: pointer;
}
/*チェックボックス*/
.checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #2c4b3a;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}
.checkbox:checked {
    background: #2c4b3a;
}
.checkbox:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 3px;
    height: 7px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/*チェックボックス*/

.btn_wrapper{
    display:flex;
    align-items: center;
    justify-content: center;
    gap:2em;
    margin-top:50px;
}
.reset_btn{
    border:none;
    border-radius:50px;
    background:#1a1a1a;
    color:#fff;
    padding:25px 40px;
    cursor:pointer;
    font-size:.9em;
    border:1px solid #1a1a1a;
    transition:all .3s;
}
.reset_btn:hover{
    color:#1a1a1a;
    background:#fff;
}
.submit_btn{
    border:none;
    border-radius:50px;
    background:#2c4b3a;
    color:#fff;
    padding:25px 60px;
    cursor: pointer;
    font-size:.9em;
    border:1px solid #2c4b3a;
    transition:all .3s;
}
.submit_btn:hover{
    color:#2c4b3a;
    background:#fff;
}

/*プライバシーポリシー*/
.privacy2{
    padding:0 40px 100px;
    background:#fff;
}
.privacy_inner{
    max-width:1200px;
    margin:0 auto;
}
.privacy_ttl01{
    color:#702F36;
    font-size:1.6em;
    margin-bottom:10px;
}
.privacy_ttl02{
    color:#2c4b3a;
    font-size:1.6em;
    margin-bottom:10px;
}
.privacy_item > p{
    font-weight:500;
    margin:0;
}
.privacy_item > ul li{
    font-weight:500;
    position:relative;
    padding-left:1em;
}
.privacy_item > ul li::before{
    content:"・";
    position:absolute;
    top:0;
    left:0;
}
.privacy_item a{
    color:#702F36;
    font-weight:bold;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition:all .3s;
}
.privacy_item a:hover{
    opacity:.6;
    text-decoration: none;
}

/*
やっとるさ飛騨高山
*/
.yattorusa_wrapper{
    background:#fff;
    padding:0 40px 150px;
}
.yattorusa_inner{
    max-width:1200px;
    margin:0 auto;
}
.titleArea2{
    height:100px;
    display:flex;
    align-items: center;
    justify-content: center;
    margin-bottom:100px;
}
.titleArea_inner2{
    text-align: center;
    line-height: 1;
}
.titleArea_inner2 > span{
    font-size:2em;
}
.yattorusa_gaiyou{
    display:flex;
    gap:4vw;
}
.y_illust{
    max-width:250px;
}
.yattorusa_btnArea{
    margin:50px 0;
}
.yattorusa_btn{
    max-width:max-content;
    margin:0 auto;
    background:#702F36;
    border-radius:50px;
}
.yattorusa_btn a{
    position:relative;
    display:flex;
    flex-direction: column;
    align-items: center;
    color:#fff;
    line-height: 1.5;
    padding:15px 70px;
    border-radius:50px;
    transition:all .3s;
    border:1px solid #702F36;
}
.yattorusa_btn a::after{
    content:"";
    position:absolute;
    top:50%;
    right:10%;
    transform:translateY(-50%);
    background-image:url(../images/rickshaw_link_hover.svg);
    background-repeat:no-repeat;
    background-size:cover;
    width:16px;
    height:16px;
    transition:all .3s;
}
.yattorusa_btn a:hover{
    color:#702F36;
    background:#fff;
    border:1px solid #702F36;
}
.yattorusa_btn a:hover::after{
    background-image:url(../images/rickshaw_link.svg);
}

.yattorusa_01{
    padding:50px 0;
}
.yattorusa_01_inner > h2{
    text-align: center;
}
.yattoruyo_01_list{
    display:flex;
    gap:3vw;
    justify-content: center;
}
.yattoruyo_01_item{
    flex:1;
    border:2px solid #2c4b3a;
    border-radius:20px;
    padding:20px;
}
.yattoruyo_01_item > h3{
    text-align: center;
    background:#2c4b3a;
    color:#fff;
    max-width:max-content;
    margin:0 auto;
    padding:10px 20px;
    border-radius:50px;
}
.yattoruyo_01_item > ul li{
    position:relative;
    padding-left:1em;
}
.yattoruyo_01_item > ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:7px;
    width:0;
    height:0;
    border-style:solid;
    border-width:6px 0 6px 10px;
    border-color:transparent transparent transparent #2c4b3a;
}

.yattorusa_02{
    padding:50px 0 0;
}
.yattorusa_02_inner > h2{
    text-align: center;
}
.y_access{
    max-width:800px;
    margin:0 auto;
}
.y_access img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.yattorusa_02_inner > ul{
    border:1px solid #2c4b3a;
    padding:25px;
    border-radius:20px;
    margin:20px 0;
}
.yattorusa_02_ttl{
    display:flex;
    align-items: center;
    gap:10px;
}
.yattorusa_02_ttl > span{
    background:#1a1a1a;
    color:#fff;
    display:inline-flex;
    align-items: center;
    justify-content: center;
    width:30px;
    height:30px;
    aspect-ratio: 1 / 1;
    border-radius:50px;
}

.yattoru_bn{
    padding:70px 0 0;
}
.yattoru_bn_inner > h2{
    text-align: center;
}
.yattoru_bn_list{
    display:flex;
    justify-content: center;
    gap:2vw;
}
.yattoru_bn_list li a{
    transition:all .3s;
}
.yattoru_bn_list li a:hover{
    opacity:.6;
}
.yattoru_bn_list li a img{
    max-width:300px;
    width:100%;
    border-radius:20px;
}