@charset "utf-8";
/* =========================================共通========================================= */
*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	        box-sizing: inherit;
}
html {
	-webkit-box-sizing:border-box;
	box-sizing: border-box;
	font-size: 62.5%;
    scroll-behavior: smooth;
}
body{
	margin:0;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	text-size-adjust: none;
    background-color: #fff;
}
img{
	width: 100%;
}
h1,h2,h3,h4,h5{
    line-height: 1.8em;
    letter-spacing: 0.1em;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}
p,a,div,ul,ol,dl{
    font-size: 1.6rem;
    line-height: 1.4em;
    letter-spacing: 0.1em;
	color:#333333;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
}
section{
    padding: 100px 0;
    overflow-x: hidden;
}
.container{
    width: 85%;
    max-width: 1080px;
    margin: 0 auto;
}
.pc-only{
    display: block;
}
.sp-only{
    display: none;
}
@media screen and (max-width:768px){
    section{
        padding: 50px 0;
    }
    .pc-only{
        display: none;
    }
    .sp-only{
        display: block;
    }
    .container{
        width: 90%;
    }
}
/* =========================================Loading背景画面設定=========================================　*/
#splash {
    /*fixedで全面に固定*/
      position: fixed;
      width: 100%;
      height: 100%;
      z-index: 9999;
      background:#fff;
      text-align:center;
    }
    /* Loading画像中央配置　*/
    #splash_logo {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }    
    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
        width:50%;
        max-width: 200px;
    }
    /* fadeUpをするアイコンの動き */
    .fadeUp{
        -webkit-animation-name: fadeUpAnime;
                animation-name: fadeUpAnime;
        -webkit-animation-duration:1.5s;
                animation-duration:1.5s;
        -webkit-animation-fill-mode:forwards;
                animation-fill-mode:forwards;
        opacity: 0;
    }    
    @-webkit-keyframes fadeUpAnime{
        from {
        opacity: 0;
        }

        to {
        opacity: 1;
        }
    }    
    @keyframes fadeUpAnime{
        from {
        opacity: 0;
        }

        to {
        opacity: 1;
        }
    }
/* =========================================セクションタイトル========================================= */
.sectiontitle-left h2.ani.active{
    position: relative;
    z-index:2;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 50px;
    color: #333333;
    opacity: 0;
    font-size:3.5rem;
    font-weight: 700;
    -webkit-animation-name: LeftTitle;
            animation-name: LeftTitle;
    -webkit-animation-fill-mode:forwards;
            animation-fill-mode:forwards;
    -webkit-animation-duration:1s;
            animation-duration:1s;/*3で解説*/
    -webkit-animation-timing-function:ease;
            animation-timing-function:ease;/*5で解説*/
}
.sectiontitle-left h2.ani.active::before{
    font-family: "Oswald", sans-serif;
    position: absolute;
    z-index: 1;
    top:50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color:#F2F2F2;
    font-size:60px;
    font-weight: 900;
}
@-webkit-keyframes LeftTitle{
    0% {
      opacity: 0;
      -webkit-transform: translateX(-30%);
              transform: translateX(-30%);
    }
    100% {
      opacity: 1;
      -webkit-transform: transformX(0);
              transform: transformX(0);
    }
  }
@media screen and (max-width:768px){
.sectiontitle-left::before{
    left: 0%;
}
.sectiontitle-left h2.ani.active{
    font-size:2.5rem;
    font-weight: 700;
    -webkit-animation-name: LeftTitle;
            animation-name: LeftTitle;
    -webkit-animation-fill-mode:forwards;
            animation-fill-mode:forwards;
    -webkit-animation-duration:1s;
            animation-duration:1s;/*3で解説*/
    -webkit-animation-timing-function:ease;
            animation-timing-function:ease;/*5で解説*/
}
.sectiontitle-left h2.ani.active::before{
    font-size:30px;
}
}
/* =========================================button========================================= */
.button{
    position: relative;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-top: 50px;
    padding:20px 35px;
    background-color: #fff;
    border: 1px solid #af0000;
    transition: all .3s;
}
.button:hover{    
    background-color:#af0000;
    color: #fff;
}
.button p{
    color: #af0000;
    font-size: 2rem;
}
.button:hover p{
    color:#fff;
}
.button .arrow{
    position: absolute;
    width: 70px;
    height: 1px;
    background-color: #af0000;
    bottom: 10px;
    right: 30px;
    /*アニメーションの指定*/
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
            transform: scale(1, 1);/*X方向0、Y方向1*/
    -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
            transform-origin: left top;/*左上基点*/
}
.button .arrow::before{
    background-color: #af0000;
    position: absolute;
    content: '';
    width: 5px;
    height: 1px;
    -webkit-transform:rotate(45deg);
        -ms-transform:rotate(45deg);
            transform:rotate(45deg);
    top: -2px;
    right: 0;
}
.button .arrow::after{
    background-color: #af0000;
    position: absolute;
    content: '';
    width: 5px;
    height: 1px;
    -webkit-transform:rotate(-45deg);
        -ms-transform:rotate(-45deg);
            transform:rotate(-45deg);
    top: 2px;
    right: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.button:hover .arrow{
    -webkit-transform: scale(1.2, 1);
        -ms-transform: scale(1.2, 1);
            transform: scale(1.2, 1);
    background-color: #fff; 
}
.button:hover .arrow::before,
.button:hover .arrow::after{
    background-color: #fff;
}
@-webkit-keyframes ButtonArrow{
    0% {
        width: 70px;
        right: 30px;
    }  
    100% {
            width: 90px;
            right: 10px;
    }
  }
@keyframes ButtonArrow{
    0% {
        width: 70px;
        right: 30px;
    }  
    100% {
            width: 90px;
            right: 10px;
    }
  }
/* =========================================header========================================= */
header{
    width: 100%;
}
header .nav-logo-wrap{
    position: fixed;
    width: 100%;
    padding:15px 0;
    z-index: 5;
}
header .nav-logo-wrap.change-color{
    background-color: #333333;
    -webkit-transition:0.5s;
    -o-transition:0.5s;
    transition:0.5s;
}
header .nav-logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 1080px;
    margin: 0 auto;
    padding:0 10px;
}
header .nav-logo h1{
    width: 150px;
}
header .nav-logo .pc-only ul{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap:2vw;
}
header .nav-logo .pc-only ul li.parent{
    color:#fff;
}
header .nav-logo .pc-only ul li.parent ul.child li a{
    display: block;
    padding:15px 0;
    color:#333333;
    transition: 0.5s;
}
header .nav-logo .pc-only ul li.parent ul.child li a:hover{
    color:#afafaf;
}
header .nav-logo .pc-only>ul>li>a{
    padding-bottom: 5px;
    color:#fff;
    background: 
      -webkit-gradient(linear, left top, left bottom, color-stop(0, currentColor)) 
      bottom /var(--d, 20%) 1px 
      no-repeat;
    background: 
      -o-linear-gradient(currentColor 0 0) 
      bottom /var(--d, 20%) 1px 
      no-repeat;
    background: 
      linear-gradient(currentColor 0 0) 
      bottom /var(--d, 20%) 1px 
      no-repeat;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
}
header .nav-logo .pc-only>ul>li>a:hover{
    --d: 80%;
}
header .nav-logo .pc-only ul .parent{
    position: relative;
}
header .nav-logo .pc-only ul .parent .child{
    background-color: #fffffff0;
    opacity: 0;
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    top:45px;
    padding:0 15px;
    border-radius: 10px;
    left: -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
header .nav-logo .pc-only ul .parent:hover .child{
    opacity: 1;
}
header .nav-logo .pc-only ul .parent::before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f0d7';
    position: absolute;
    left: -15px;
    top:50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
@media screen and (max-width:1080px){
    header .nav-logo{
        width: auto;
        margin: 0 auto;
    }
}
    @media screen and (max-width:768px){    
    header .nav-logo-wrap{
        padding: 5px 0;
    }
    header .nav-logo ul.pc-only{
        display: none;
    }
    header .nav-logo{
        width: auto;
        -webkit-box-pack: left;
            -ms-flex-pack: left;
                justify-content: left;
    }
}
/* =========================================SPハンバーガーメニュー========================================= */
/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    top: 0;
    width:100%;
    height: 100vh;
}
/*丸の拡大*/
.circle-bg{
    position: fixed;
    z-index:5;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    /*丸のスタート位置と形状*/
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);/*scaleをはじめは0に*/
    right:-50px;
    top:-50px;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}
.circle-bg.circleactive{
  -webkit-transform: scale(50);
      -ms-transform: scale(50);
          transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}
/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}
/*ナビゲーション*/
#g-nav .sp-nav {
    opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    width: 80%;
    margin:50px auto 0 auto;
}
#g-nav .sp-nav>li>a{
    display: block;
    margin-bottom: 15px;
    padding:8px 5px;
    border-left: 3px solid #af0000;
    border-top: 1px solid #aaaaaa;
    border-right: 1px solid #aaaaaa;
    border-bottom: 1px solid #aaaaaa;
}
#g-nav .sp-nav .parent{
    padding-left: 10px;
    border-left: 1px solid #af0000;
}
#g-nav .sp-nav .parent ul.child li a{
    display: block;
    margin-top: 15px;
    margin-left: 25px;
    padding:8px 5px;
    border-left: 3px solid #af0000;
    border-top: 1px solid #aaaaaa;
    border-right: 1px solid #aaaaaa;
    border-bottom: 1px solid #aaaaaa;
}
#g-nav .sp-nav .parent ul.child li:nth-child(3) a{
    margin-bottom: 15px;
}
#g-nav.panelactive #g-nav-list .logo{
    width: 50%;
    position: absolute;
    bottom: 5%;
    right: 5%;
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul{
    opacity:1;
}
/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
-webkit-animation-name:gnaviAnime;
        animation-name:gnaviAnime;
-webkit-animation-duration:1s;
        animation-duration:1s;
-webkit-animation-delay:.2s;
        animation-delay:.2s;/*0.2 秒遅らせて出現*/
-webkit-animation-fill-mode:forwards;
        animation-fill-mode:forwards;
opacity:0;
}
@-webkit-keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
  top:10px;
  right: 10px;
  z-index: 9998;/*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height:50px;
  background-color: #333333;
  border-radius: 5px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 1px;
    background-color: #fff;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
        -ms-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
        -ms-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/* =========================================MV========================================= */
.mv{
    z-index: -1;
    background: url(../image/front-page/mv.webp) center bottom;
    background-size: cover;
    height: 100vh;
    position: relative;
}
.mv p{
    text-align: center;
}
.mv div.logo-martialarts{
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 170px;
    width: 150px;
}
.mv p.mv-text1{
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 80px;
    width: 100%;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 35px;
}
.mv p.mv-text2{
    text-align: center; 
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 40px;
}
@media screen and (max-width:768px){
.mv{
    height: 60vh;
    background: url(../image/front-page/mv-sp.webp) center center;
    background-size: cover;
}
.mv div.logo-martialarts{
    bottom: 160px;
    width: 120px;
}
.mv p.mv-text1{
    font-size: 20px;
    bottom:80px
}
.mv p.mv-text2{
    width: 100%;
    text-align: center; 
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 40px;
}
}
/* =========================================ニュース========================================= */
#section-news .sectiontitle-left h2::before{
    content:'NEWS';
    left:-170px;
}
.news-wrap a{
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap:3px;
    padding: 30px 10px;
    border-radius: 10px;
    background-color: #F2F2F2;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.news-wrap a .date{
    line-height: 1;
    background-color: #BE8900;
    padding:5px 10px;
    border-radius: 15px;
    color:#fff;
}
.news-wrap a .news{
    line-height: 1;
    font-weight: 700;
    font-size: 1.4rem;
    color: #BE8900;
}
.news-wrap a .title{
    width: 100%;
}
@media screen and (max-width:768px){
    #section-news .sectiontitle-left h2::before{
        left:50%;
        transform: translateX(-50%);
        top:35px;
    }
    .news-wrap a{
        padding: 20px 10px;
    }
}
/*==================================================
スライダーのためのcss
===================================*/
/*矢印の設定*/

/*戻る、次へ矢印の位置*/
#slider1 .slick-prev, 
#slider1 .slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 45%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    height: 25px;
    width: 25px;
    background-color: #af0000;
    border-radius: 50%;
}
#slider1 .slick-prev {/*戻る矢印の位置と形状*/
    right:10%;
}
#slider1 .slick-prev::before {
    color:#fff;
    content: '\f053';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    left:7px;
}
#slider1 .slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
}
#slider1 .slick-next::before {
    color:#fff;
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    left:7px;
}
@media screen and (max-width:768px){
.news-wrap li a{
    width: 90%;
}
#slider1 .slick-prev {/*戻る矢印の位置と形状*/
    top:95%;
    right:30%;
    height: 35px;
    width: 35px;
}
#slider1 .slick-prev::before {
    top: 4.5px;
    left:13px;
}
#slider1 .slick-next {/*次へ矢印の位置と形状*/
    top:95%;
    right:2.5%;
    height: 35px;
    width: 35px;
}
#slider1 .slick-next::before {
    top: 4.5px;
    left:13px;
}
}
/* ========================================事業内容========================================= */
#section-business .sectiontitle-left h2::before{
    content:'BUSINESS';
    left:-290px;
}
.business-wrap ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.business-wrap ul li{
    -webkit-box-flex:1;
        -ms-flex:1;
            flex:1;
    position: relative;
    z-index: 1;
    height: 400px;
}
.business-wrap ul li::before{
    content: '';
    position: absolute;
    z-index: 2;
}
.business-wrap ul li:first-child{
    background: url(../image/front-page/baibai-back.webp) center center;
    background-size: cover;
}
.business-wrap ul li:nth-child(2){
    background: url(../image/front-page/kentiku-back.webp) center center;
    background-size: cover;
}
.business-wrap ul li:nth-child(3){
    background: url(../image/front-page/service-back.webp) center center;
    background-size: cover;
}
.business-wrap ul li a{
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 400px;
    width: 100%;
    top:0;
    left:0;
    background-color: #083e648a;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap:10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.business-wrap ul li a:hover{
    background-color: transparent;
}
.business-wrap ul li a h3{
    color:#fff;
    font-size: 2.5rem;
}
.business-wrap ul li a p{
    color:#fff;
    font-size: 1.2rem;
    font-weight: 200;
}
@media screen and (max-width:768px){
#section-business .sectiontitle-left h2::before{
    left:50%;
    transform: translateX(-50%);
    top:35px;
}
.business-wrap ul{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.business-wrap ul li:first-child{
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
}
.business-wrap ul li:nth-child(2){
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
}
.business-wrap ul li:nth-child(3){
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
}

.business-wrap ul li{
    height: 300px;
}
.business-wrap ul li a{
    height: 300px;
}
}
/* ========================================オススメ物件========================================= */
#section-recommend .sectiontitle-left h2::before{
    content:'RECOMMEND';
    left:-350px;
}
.recommend-wrap ul li a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap:10px;
}
.recommend-wrap ul li  .img{
    width: 350px;
    height: 250px;
    overflow: hidden;
}
.recommend-wrap ul li .img img{
    -o-object-fit: cover;
       object-fit: cover;
       height: 100%;
       width: auto;
}
.recommend-wrap ul li .detail-content{
    width: 300px;
}
.recommend-wrap ul li .detail-content>div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 10px 0;
    gap:10px;
}
.recommend-wrap ul li .detail-content .category{
    background-color: #333333;
    color:#fff;
    padding:2px 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.4rem;
}
.recommend-wrap ul li .detail-content .price{
    font-weight: 900;
    color: #af0000;
    font-size: 1.8rem;
    padding:2px 5px;
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.5);
            box-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}
.recommend-wrap ul li .detail-content .place{
    font-size: 1.4rem;
}
.recommend-wrap ul li .detail-content .price span{
    font-size: 1.2rem;
}
/*戻る、次へ矢印の位置*/
#slider2 .slick-prev, 
#slider2 .slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 45%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    height: 40px;
    width: 40px;
    background-color: #af0000;
}
#slider2 .slick-prev {/*戻る矢印の位置と形状*/
    left:5%;
}
#slider2 .slick-prev::before {
    color:#fff;
    content: '\f053';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    left:15px;
    top:8px;
}
#slider2 .slick-next {/*次へ矢印の位置と形状*/
    right:5%;
}
#slider2 .slick-next::before {
    color:#fff;
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    left:15px;
    top:8px;
}
@media screen and (max-width:768px){
    #section-recommend .sectiontitle-left h2::before{
        left:50%;
        transform: translateX(-50%);
        top:35px;
    }
    .recommend-wrap ul li a{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .recommend-wrap ul li .img{
        width: 100%;
    }
    #slider2 .slick-prev {/*戻る矢印の位置と形状*/
        left:0%;
    }
    #slider2 .slick-next {/*次へ矢印の位置と形状*/
        right:0%;
    }
}
/* =========================================マーシャルアーツ３つの事業========================================= */
#three-service{
    background-image: url(../image/company/three-service-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#three-service h3{
    font-size: 3.5rem;
    text-align: center;
}
#three-service .three-service-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
    margin-top: 50px;
}
#three-service .three-service-wrap .three-service-img{
    width: 50%;
}
#three-service .three-service-wrap p{
    width: 40%;
}
@media screen and (max-width:768px){
#three-service h3{
    font-size: 2rem;
    text-align: center;
}
#three-service .three-service-wrap{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
#three-service .three-service-wrap .three-service-img,#three-service .three-service-wrap p{
    width: 100%;
}
}
/* =========================================施工事例========================================= */
#section-works .sectiontitle-left h2::before{
    content:'WORKS';
    left:-220px;
}
#section-works .sectiontitle-right p{
    right:10%;
}
#section-works ul{
    width: 100%;
    max-width: 1980px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 15px;
}
#section-works ul li{
    position: relative;
    width: 24%;
    height: calc((100vw - 50px) * 1 / 4);
    background-color: #ccc;
    overflow: hidden;
 }
#section-works ul li .img{
    z-index: 1;
    position: absolute;
    height: 100%;
}
#section-works ul li .img img{
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
  #section-works ul li a{
    z-index: 4;
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    background-color: #ffffff90;
    transition: .5s;
  }
  #section-works ul li a:hover .date,
  #section-works ul li a:hover h4{
    color: #747474;
  }
  #section-works ul li a .date{
    font-size: 1.4rem;
    font-weight: 700;
    padding-left: 5px;
  }
  #section-works ul li a h4{
    padding: 5px;
    position: static;
    line-height: 1.8rem;
  }
  @media screen and (max-width:768px){
    #section-works .sectiontitle-left h2::before{
        left:50%;
        transform: translateX(-50%);
        top:35px;
    }
    #section-works ul{
        row-gap:10px;
    }
    #section-works ul li{
        width: 49%;
        height: calc((100vw - 50px) * 1 / 2);
     }
  }
  /* =========================================不動産売却・住宅ローン========================================= */
#section-baikyaku{
    background-color: #FFFDED;
}
#section-baikyaku .sec-1 h2,#section-juutakurone .sec-1 h2{
    font-size: 3.5rem;
    font-weight: 700;
    padding: 10px 50px;
    background-color: #af0000;
    color: #fff;
    border-radius: 35px;
    text-align: center;
    margin-bottom: 50px;
}
#section-baikyaku .sec-1 p,#section-baikyaku .sec-2 .text-1,
#section-juutakurone .sec-1 p,#section-juutakurone .sec-2 .text-1{
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}
#section-baikyaku .sec-1 .img,#section-juutakurone .sec-1 .img{
    width: 60%;
    margin: 30px auto;
}
#section-baikyaku .sec-1 ul,#section-juutakurone .sec-1 ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap:15px;
    font-weight: 700;
}
#section-baikyaku .sec-1 ul li,#section-juutakurone .sec-1 ul li{
    width: 40%;
    position: relative;
    padding-left: 25px;
}
#section-baikyaku .sec-1 ul li:last-child{
    width: 50%;
}
#section-baikyaku .sec-1 ul li::before,
#section-juutakurone .sec-1 ul li::before{
    content: '';
    width: 15px;
    height: 12px;
    display: inline-block;
    background-image: url(../image/checkbox.webp);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top:50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
}
#section-baikyaku .sec-2 .triangle,
#section-juutakurone .sec-2 .triangle{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px 100px 0 100px;
    border-color: #af0000 transparent transparent transparent;
    margin: 50px auto 30px auto;
}
#section-baikyaku .sec-2 .text-1,
#section-juutakurone .sec-2 .text-1{
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(30%, #ffbbbb));
    background: -o-linear-gradient(transparent 60%, #ffbbbb 30%);
    background: linear-gradient(transparent 60%, #ffbbbb 30%);
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 50px auto;
    font-weight: 700;
}
#section-baikyaku .sec-2 dl{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
#section-baikyaku .sec-2 dl div{
    width: 22%;
}
#section-baikyaku .sec-2 dl div dd{
    margin-top: 10px;
    text-align: center;
    font-weight: 700;
}
#section-baikyaku .sec-2 dl div dd span{
    font-size: 1.8rem;
    font-weight: 700;
    color: #af0000;
}
#section-baikyaku .sec-2 .text-2{
    width: 70%;
    margin: 30px auto 0;
}
#section-juutakurone .sec-2 .text-2{
    text-align: center;
}
@media screen and (max-width:1080px){
#section-baikyaku .sec-1 ul,
#section-juutakurone .sec-1 ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap:10px;
}
#section-baikyaku .sec-1 ul li,
#section-juutakurone .sec-1 ul li{
    width: 100%;
    position: relative;
    padding-left: 20px;
    font-size: 1.4rem;
}
#section-baikyaku .sec-1 ul li:last-child{
    width: 100%;
}
}
@media screen and (max-width:768px){
    #section-baikyaku .sec-1 h2,#section-juutakurone .sec-1 h2{
        font-size: 2.3rem;
        font-weight: 700;
        padding: 10px;
        border-radius: 35px;
        text-align: center;
        margin-bottom: 50px;
    }
    #section-baikyaku .sec-1 p,#section-baikyaku .sec-2 .text-1,
    #section-juutakurone .sec-1 p,#section-juutakurone .sec-2 .text-1{
        font-size: 1.8rem;
    }
    #section-baikyaku .sec-2 dl div{
        width: 45%;
    }
    #section-baikyaku .sec-2 .text-2{
        width: 100%;
        margin: 30px auto 0;
    }

    #section-baikyaku .sec-1 .img,#section-juutakurone .sec-1 .img{
        width: 80%;
    }
    #section-baikyaku .sec-2 .triangle,
    #section-juutakurone .sec-2 .triangle{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 80px 0 80px;
    margin: 50px auto 30px auto;
    }
    #section-juutakurone .sec-2 .text-1 {
        margin: 0 auto 10px auto;
    }
}
/* =========================================お役立ち情報========================================= */
#section-columun .sectiontitle-left h2::before{
    content:'COLUMN';
    color: #fff;
    left: -250px;
}
#section-columun{
    background-color: #F2F2F2;
}
.column-wrap ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.column-wrap ul li{
    width: 32%;
}
.column-wrap ul li .img{
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.column-wrap ul li .img img{
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
}
.column-wrap ul li .detail .date{
    color: #333333;
    font-size: 1.4rem;
    font-weight: 500;
}
.column-wrap ul li .detail .title{
    color: #333333;
    font-weight: 700;
}
@media screen and (max-width:768px){
    #section-columun .sectiontitle-left h2::before{
        left:50%;
        transform: translateX(-50%);
        top:35px;
        color: #fff;
    }
    .column-wrap ul li{
        width: 100%;
    }
    .column-wrap ul{
        gap:30px;
    }
}
/* =========================================バナー2種========================================= */
.banner-2 ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.banner-2 ul li{
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.banner-2 ul li a{
    display: block;
    height: 100%;
    line-height:0%;
    transition: 0.5s;
}
.banner-2 ul li a:hover{
    opacity: 0.7;
}
@media screen and (max-width:768px){
    .banner-2 ul{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap:15px;
    }
}
/* =========================================お問合せフォーム========================================= */
#section-contact .sectiontitle-left h2::before{
    content:'CONTACT';
    left:-270px;
}
#section-contact .text{
    text-align: center;
    margin-bottom: 30px;
}
#section-contact .form-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap:15px;
}
#section-contact .form-wrap div{
    width: 48%;
}
#section-contact .form-wrap div.syousai{
    width: 100%;
}
#section-contact .form-wrap div h4{
    padding-bottom: 5px;
}
#section-contact .form-wrap div h4.hissu::after{
    position: relative;
    left: 5px;
    font-size: 1rem;
    content:'必須';
    padding: 2px 5px;
    color: #fff;
    background-color: #af0000;
    border-radius: 10px;
}
#section-contact .form-wrap div input,
#section-contact .form-wrap div textarea{
    width: 100%;
    padding: 10px;
    font-size: 1.6rem;
    background-color: #F2F2F2;
    border: none;
}
#section-contact .form-wrap .syubetu input,
#section-contact .form-wrap .genjou input{
    width: auto;
}
input.button{
    color: #af0000;
    font-size: 2rem;
}
@media screen and (max-width:768px){
    #section-contact .sectiontitle-left h2::before{
        content:'CONTACT';
        left:50%;
        transform: translateX(-50%);
        top:35px;
    }
    #section-contact .form-wrap div{
        width: 100%;
    }
}
  /* =========================================フッター========================================= */
footer{
    background-color: #333333;
    padding: 100px 0;
}
footer div,footer a,footer li,footer p{
    color:#fff;
}
.footer-wrap{
    padding:0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; 
}
.footer-wrap .footer1{
    width: 20%;
}
.footer-wrap .footer1 p{
    font-size: 1.4rem;
    padding-top: 15px;
}
.footer-wrap .footer2{
    width:40%;
}
.footer-wrap .footer2 ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap:30px;
}
.footer-wrap .footer2 .tennpo{
    font-weight: 700;
    padding-bottom: 5px;
}
.footer-wrap .footer2 ul a{
    font-size: 2rem;
    font-weight: 700;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding-left: 5px;
}
.footer-wrap .footer2 ul li a:hover{
    opacity: 0.6;
}
.footer-wrap .footer3{
    width:30%;
}
.footer-wrap .footer3 ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap:15px;
}
.footer-wrap .footer3 ul li a{
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.footer-wrap .footer3 ul li a:hover{
    opacity: 0.6;
}
.footer-wrap .footer3 ul li ul{
    padding-top: 15px;
    padding-left: 30px;
}
footer>p{
    margin-top: 50px;
    text-align: center;
}
@media screen and (max-width:768px){
    .footer-wrap{
        gap:30px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .footer-wrap .footer1{
        width: 60%;
    }
    .footer-wrap .footer2,.footer-wrap .footer3{
        width: 100%;
    }
}