@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Acme';
    src: url(../font/Acme/Acme-Regular.ttf);
}

@font-face {
    font-family: 'Roboto_Flex';
    src: url(../font/Roboto_Flex/RobotoFlex-VariableFont_GRAD\,XOPQ\,XTRA\,YOPQ\,YTAS\,YTDE\,YTFI\,YTLC\,YTUC\,opsz\,slnt\,wdth\,wght.ttf);
}

body{
    position: relative;/*top-buttonの固定*/
    color: #000B00;
    font-family: 'Roboto_Flex';
    font-size: 4vw;
}

h2{
    color: #0b4f41;
    font-family: 'Roboto_Flex';
    font-size: 5.5vw;
}

li{
    list-style: none;
    color: #000B00;
}

a{
    text-decoration: none;
    color: #000B00;
}

/*ハンバーガーメニュー*/
header {
    display: none;
}
    /*NavMenu=hambarger************/
    /*ナビメニューのスタイルを指定*/
.NavMenu{
    position: fixed; /*表示位置を固定*/
    z-index: 100; /*重ね順を変更*/
    top: 0; /*表示位置を指定*/
    left: 0; /*表示位置を指定*/
    background: #fff;/*背景を白にする*/
    width: 90vw; /*全幅表示*/
    padding:10vw 0 10vw 10vw;
    transform: translateX(-100%); /*ナビを左に隠す*/
    transition: all 0.6s; /*アニメーションの時間を指定*/
}
.NavMenu::before{
    position: absolute;
    content: "";
    left: 0vw;
    top:23vw;
    border-bottom: 0.1vw solid #000B00; 
    width: 100vw;
}

.NavMenu .NavMenu-rogo + ul{
    margin-left: 5vw;
}

.NavMenu .NavMenu-rogo{
    position: relative;
    width: 50%;
    margin-bottom: 12vw;
}  

.NavMenu .NavMenu-rogo img{
    width: 100%;
}

.NavMenu ul .NavMenu-top{
    font-weight: 800;
}

.NavMenu ul li ul li {
    font-size: 4vw;
    font-weight: 800;
    line-height: 1.8;
    margin-left: 5vw;
}

.NavMenu .NavMenu-li{
    color: gray;
    margin-top: 5%;
    line-height: 1.8;
}

.company-li2 img{
    width: 60%;
    margin: 2% 0;
    box-shadow: 0px 0px 5px 1px #000b0044;
}

.company-li3{
    display: block;
    width: 30%;
    color: #0b4f41;
    font-weight: 800;
    text-align: center;
    border: 0.1vw solid #0b4f41;
    border-radius: 5vw;
    box-shadow: 0px 0px 5px 1px #000b0044;
    padding: 0 3%;
}

.NavMenu .sns-box{
    margin-top: 5vw;
    margin-left: 5vw;
}

.NavMenu .sns-box a img{
    width: 6vw;
}

.NavMenu .sns-box a img:nth-of-type(1){
    padding-left: 10%;
}

/*li装飾********************/
.service-li1{
    position: relative;
}

.service-li1::before{
    position: absolute;
    content: "";
    width: 4vw;
    height: 4vw;
    left: -5.5vw;
    top: 1.5vw;
    background-image: url(../images/icon-climber.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.service-li2{
    position: relative;
}

.service-li2::before{
    position: absolute;
    content: "";
    width: 4vw;
    height: 4vw;
    left: -5.5vw;
    top: 1.5vw;
    background-image: url(../images/icon-tent.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.service-li3{
    position: relative;
}

.service-li3::before{
    position: absolute;
    content: "";
    width: 4vw;
    height: 4vw;
    left: -5.5vw;
    top: 1.5vw;
    background-image: url(../images/icon-golf.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.service-li4{
    position: relative;
}

.service-li4::before{
    position: absolute;
    content: "";
    width: 4vw;
    height: 4vw;
    left: -5.5vw;
    top: 1.5vw;
    background-image: url(../images/icon-train.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.service-li5{
    position: relative;
}

.service-li5::before{
    position: absolute;
    content: "";
    width: 3.8vw;
    height: 3.8vw;
    left: -5.5vw;
    top: 1.5vw;
    background-image: url(../images/icon-private.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.company-li1{
    position: relative;
}

.company-li1::before{
    position: absolute;
    content: "";
    width: 4vw;
    height: 4vw;
    left: -5.5vw;
    top: 1.5vw;
    background-image: url(../images/icon-house.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

    
/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active{
    transform: translateX(0%);/*上から出したい場合は、transform: translateYを使う.*/
}

/*トグルボタンのスタイルを指定*/
.Toggle {
    position: fixed;    /* bodyに対しての絶対位置指定:*/
    left: 0;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;/*divだけどカーソルが変わるようにしている*/
    z-index: 200;/*ボタンを一番上にしている(押せなくなるから)*/
}

.Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 3px #0b4f41;
    transition: .35s ease-in-out;/*変化の速度を指定*/
    left: 6px;
}

.Toggle span:nth-child(1) {
    top: 9px;
}

.Toggle span:nth-child(2) {
    top: 18px;
}

.Toggle span:nth-child(3) {
    top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    transform: rotate(45deg);
}
/*privateﾀﾌﾞ*/
.bn-private{
    width: 70%;
    border-radius: 1vw;
    margin: 16% auto 10% auto;
    transition: 0.4a;
}

.bn-private a img{
    width: 100%;
}

.bn-private:hover{
    opacity: 0.8;
    transition: 0.4s;
}


/*タブ切り替え*/
.featured-wrap{
    margin: 0 5% 15% 5%;
}

.featured-wrap h2{
    margin-left: 5%;
    margin-bottom: 4%;
}

.tab_box {
    width: 95%;
    margin: 0 auto;
 }
 
 .btn_area {
     display: flex;
     margin-bottom: 2vw;
 }
 
 .tab_btn {
    font-size: 3vw;
    width: calc(100%/4);
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.1em;
    border-right: 0.1vw solid gray;
 }

 .tab_btn:nth-of-type(4){
    border: none;
 }

 .tab_btn.active {
     background: #0b4f4127;
 }

 .tab_panel {
     display:none;
 }

 .tab_panel.active {
     display:block;
 }

.tab-panel-child {
    display: flex;
    width: 95%;
    margin: 3vw 0;
    transition: 0.4a;
}

.tab-panel-child:hover{
    opacity: 0.8;
    transition: 0.4s;
}

.tab-panel-child-box1{
    width: 38vw;
    height: 38vw;
    border-radius: 1vw;
    box-shadow: 0px 0px 5px 1px #000b0044;

}
.tab-panel-child-box1 img{
    display: block;
    width: 38vw;
    height: 38vw;
    object-fit: cover;
}

.tab-panel-child-box2{
    width: 60vw;
    margin-left: 2vw;
}

.tab-panel-child-box2 p {
    font-size: 3.8;
    line-height: 1.3;
}

.tab-panel-child-box2 p:nth-of-type(2){
    font-size: 3.2vw;
}
.tab-panel-child-box2 .tab-panel-child-img {
    width: 5vw;
    margin: 3%;
}

.tab-panel-child-box2 .tab-panel-child-img img{
    width: 100%;
    box-shadow: none;
}

/*about/////////////////////////*/
.about-wrap{
    position: relative;
    margin: 0 8vw 40%;
    z-index: 10;
}

.about-wrap::after{
    position: absolute;
    content: "";
    width: 100vw;
    height: 1vw;
    top: -5vw;
    left: -8vw;
    border-top: 0.1vw solid gray;
}

.about-wrap::before{
    position: absolute;
    content: "";
    width: 100vw;
    height: 70vw;
    bottom: -32vw;
    left: -8vw;
    background-image: url(../images/pc-illust-aboutus.png);
    background-size: 200%;
    background-position: top right -30vw;
    background-repeat: no-repeat;
    z-index: -100;
}

.about-wrap h2{
    font-size: 5.5vw;
}

.about-wrap div {
    width: 60%;
}

.about-wrap div img{
    width: 100%;
    margin-left: -5%;
}

.about-wrap p:nth-of-type(1){
    position: relative;
    display: block;
    width: fit-content;
    font-weight: 800;
    margin: 3% 0 2% auto;
    transition: 0.4s;
}

.about-wrap p:nth-of-type(1)::after{
    position: absolute;
    content: "";
    width: 3.5vw;
    height: 3.5vw;
    right: -5.5vw;
    bottom: 0.3vw;
    clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
    transform: rotate(90deg);
    background-color: #0b4f41;
}

.about-wrap p:nth-of-type(1):hover{
    opacity: 0.5;
    transition: 0.4s;
}

.about-wrap p:nth-of-type(2){
    white-space: pre-wrap;
    line-height: 1.5;
}

/*photo-library///////////////////*/
.photo-library{
    width: 85%;
    margin: 50% auto 30%;
}

.photo-library .library{
    width: 100%;
    height: 30vw;
    overflow: hidden;
    border-radius: 1vw;
    margin: 8% auto;
}

.photo-library .library img{
    display: block;
    width: 100%;
    height: 30vw;
    object-fit: cover;
}

.photo-library .library-flex{
    display: flex;
    width: 100%;
    
}

.photo-library .library-flex .library-child{
    width: 80%;
    height: 30vw;
    border-radius: 1vw;
    overflow: hidden;
    object-position: 50% 50%;
}

.photo-library .library-flex .library-child img{
    display: block;
    width: 150%;
    object-fit: cover;
}
.photo-library .library-flex .library-child:nth-of-type(1){
    margin-right: 8%;
}

.photo-library .library-flex .library-child:nth-of-type(3),
.photo-library .library-flex .library-child:nth-of-type(4){
    display: none;
}

.photo-library p{
    position: relative;
    display: block;
    width: fit-content;
    font-weight: 800;
    margin: 5vw auto;
    padding: 2vw 8.5vw 2vw 10.5vw;
    border-radius: 5vw;
    box-shadow: 0px 0px 5px 1px #000b0044;
    transition: 0.4s;
}

.photo-library p:nth-of-type(2){
    margin-bottom: 12vw;
}

.photo-library p::after{
  position: absolute;
  content: "";
  width: 2.2vw;
  height: 2.2vw;
  right: 3.5vw;
  bottom: 2.2vw;
  clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
  background-color: #000B00;
  transform: rotate(90deg);
}

.photo-library p:hover{
    opacity: 0.7;
    transition: 0.4s;
}

.photo-library p:nth-of-type(1)::before{
    position: absolute;
    content: "";
    width: 4vw;
    height: 4vw;
    left: 5vw;
    bottom: 2.3vw;
    background-image: url(../images/icon-ig.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.photo-library p:nth-of-type(2)::before{
    position: absolute;
    content: "";
    width: 4vw;
    height: 4vw;
    left: 5vw;
    bottom: 2.3vw;
    background-image: url(../images/icon-fb.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}



/*ニュース///////////////////*/
.news{
    width: 85%;
    margin: 15vw auto 2vw auto;
}

.news p:nth-of-type(1){
    position: relative;
    display: block;
    width: fit-content;
    font-weight: 800;
    margin: 2% 0 8% auto;
    transition: 0.4s;
}

.news p:nth-of-type(1)::after{
    position: absolute;
    content: "";
    width: 3.5vw;
    height: 3.5vw;
    right: -5.5vw;
    bottom: 0.4vw;
    clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
    transform: rotate(90deg);
    background-color: #0b4f41;
}

.news p:nth-of-type(1):hover{
    opacity: 0.5;
    transition: 0.4s;
}

.news .news-wrap{
    width: 100%;
    border-radius: 2vw;
    box-shadow: 0px 0px 5px 1px #000b0044;
    margin: 0 auto;
    padding: 4vw 0 7vw 0;
}

.news .news-wrap ul{
    width: 90%;
    margin: 8vw auto;
}

.news .news-wrap ul a{
    display: block;
    transition: 0.4s;
}

.news .news-wrap ul a:hover{
    opacity: 0.6;
    transition: 0.4s;
}

.news .news-wrap ul li{
    position: relative;
    line-height: 1.6;
}

.news .news-wrap ul li:nth-of-type(1)::before{
    position: absolute;
    content: "";
    width: 1vw;
    left: 0.5vw;
    bottom: 3vw;
    border: 0.01vw solid #0b4f41;
}

.news .news-wrap ul li:nth-of-type(2)::before{
    position: absolute;
    content: "";
    width: 70vw;
    left: -2vw;
    bottom: -2vw;
    border: 0.001vw solid #000B00;
}

.news .news-wrap ul li:nth-child(1){
    padding-left: 3vw;
    color: #0b4f41;
}

.news .news-wrap ul li:nth-child(2){
    margin-left: 3vw;
}




/*フッター///////////////////////*/
footer {
    font-size: 4vw;
    color: white;
    letter-spacing: 0.1vw;
    background-image: url(../images/bg-footer.jpg);
    background-size: 300%;
    background-repeat: no-repeat;
    background-position: top right -120vw;
    padding: 16% 5% 5% 5%;
}

.footer-flex{
    margin-top: 25vw;
}

.footer-flex p{
    line-height: 1.5;
}
.address-child{
    display: none;
}

/*
.footer-flex a,address{
    font-size: 2vw;
    line-height: 1.5;
    color: white;
}
*/
/*
.footer-flex address{
    font-style: normal;
}
*/


.footer-flex .produced-box{
    display: flex;
    margin: 2% 0 4% 0;
}

.footer-flex .produced-box p{
    font-size: 4vw;
    font-weight: 800;
    margin-right: 4%;
}

.footer-flex .produced-box img{
    width: 50%;
}
/*
.footer-flex .adress-flex{
    width: 60%;
}
*/

.footer-flex .adress-flex .footer-rogo{
    width: 45%;
    margin-left: -2%;
    transition: 0.4s;
}

.footer-flex .adress-flex .footer-rogo:hover{
    opacity: 0.8;
    transition: 0.4s;
}

.footer-flex .adress-flex .footer-rogo img{
    width: 100%;
}

.footer-flex .adress-flex .contact-button{
    display: block;
    width: 20vw;
    text-align: center;
    border: 0.1vw solid white;
    border-radius: 3vw;
    margin: 8% 0 3% 0;
    transition: 0.4s;
}

.footer-flex .adress-flex .contact-button:hover{
    opacity: 0.8;
    transition: 0.4s;
}

.footer-flex .adress-flex .contact-button a{
    display: block;
    font-size: 2.5vw;
}

.footer-flex .sns-box img{
    width: 4vw;
    margin: 2vw;
    transition: 0.4s;
}

.footer-flex .sns-box img:hover{
    opacity: 0.8;
    transition: 0.4s;
}

.footer-flex .footer-flex2 {
    display: flex;
}

.footer-flex2 ul li{
    transition: 0.4s;
}

.footer-flex2 ul li:hover{
    opacity: 0.8;
    transition: 0.4s;
}

.footer-flex .service-box,.other-box{
    width: 50%;
}

.service-box ul li a,.other-box ul li a{
    color: white;
}

.service-box-bn{
    display: none;
}

/*
.footer-flex .service-box .service-box-bn{
    width: 200%;
    margin-top: 10%;
    transition: 0.4s;
}

.footer-flex .service-box .service-box-bn:hover{
    opacity: 0.8;
    transition: 0.4s;
}

.footer-flex .service-box .service-box-bn img{
    width: 100%;
}
*/

footer h3{
    margin-bottom: 2vw;
}

.footer-flex + p{
    text-align: center;
    line-height: 5.0;
}

.footer-flex + p small{
    font-size: 2vw;
}

/*Page topボタン**************/
.top-button{
    position: fixed;
    bottom: 0vw;
    width: 100vw;
    background-color: #0b4f41;
    z-index: 100;
}
.top-button p{
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.8;   
}
.top-button p a{
    display: block;
    color: white;
}

