@charset "UTF-8";

/* コカイキカクの改装可能賃貸 WEB Design 仕様
    <ゴシックフォント （デフォルトで設定）>
    font-family: Noto Sans Japanese, sans-serif
    <明朝フォント　（必要箇所のみ使用）＞
    .noto-serif-jp-<uniquifier> {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    }

    ＜ブレークポイント＞
    デスクトップ ：900px〜1280px
    タブレット　：　670px〜899px
    スマホ以上タブレット未満　：　429px〜669px
    スマホ　：　375px〜428px
------------------------------- */

/* BASE */
html{
    font-size: 100%;
}
body{
    line-height: 1.8;
    color: black;/* テキストカラー*/
    font-family: 'Noto Sans JP', sans-serif;/* テキストのフォントはデフォルトでゴシックを使用*/
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    margin-bottom: 1%;
}
/* Layout */
.l-mo-text{
    max-width: 90%;
    margin: 0 auto;
    /* モバイル版のテキスト部分、幅90％で中央配置ー*/
}


/* Module */

/* ヘッダーここから */
header{
    height: 50px;
    position: fixed;
    z-index: 10;
    width: 100%;
    background: rgba(255,255,255,.9);
}
.header-left{
    float: left;
    margin-top: 10px;
    margin-left: 30px;
}
.header-left a{
    display: block;
    transition: all 0.5s;
}
.header-left a:hover {
    /*1.25倍に拡大*/
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.logo {
    width: 40px;
}

/*=========ヘッダーのナビゲーション右から左へ出現するここから ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:white;
    opacity: .95;
    /*動き*/
	transition: all 0.6s;
    /* 明朝フォント*/
    font-family: "Noto Serif JP", serif;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:40%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:20px 0;
	display: block;
	letter-spacing: 0.1em;
	font-weight: bold;
}

.nav-line{
    display: block;
    border-bottom: 1px solid #333;
    width: 100%;
    margin: 50px 0;
}
.nav-kokai-logo{
    width: 30px;
    margin-right: 10px;
    padding-bottom: 5px;
}
.nav-mail-logo{
    width: 25px;
    margin-right: 15px;
}
.nav-atelier-logo{
    width: 30px;
    margin-right: 10px;
}
.nav-caption{
    margin-bottom: 30px;
}

/*========= ナビゲーションページ内リンクのためのCSS ===============*/
#aboutkaisoukanouchinntai{
    padding-top: 120px;
    margin-top: -120px;
}


/*========= ハンバーガーメニューのボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:1px;
	right: 10px;
	cursor: pointer;
    width: 40px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 1px;
	background-color: #333;
  	width: 45%;
  }

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

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

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

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

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

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

/*　---- TOP Main Wrapper ここから　----*/
/* トップ画像 */
.top-main-wrapper-index{
    background-image: url(../imgs/kaisoutop.JPG);/* TOP背景画像ー*/
    background-size: cover;
    background-position: 50%;
    height: 300px;
    position: relative;
}
/* トップ画像に重なる白抜きのタイトル */
.index-top-tittle{
    font-family: "Noto Serif JP", serif;
    color: white;
    font-size: 1.4rem;
    position: absolute;
    top: 80px;
    left: 40px;
    opacity: 0.8;
}
abbr{
    font-family: Noto Sans Japanese, sans-serif;
    letter-spacing: 1px;
}
/* メインコンテンツここから */
main{
    margin: 0 auto;
}
.toptext{
    max-width: 90%;
    margin: 0 auto;
}
.index-sub-tittle{
    text-align: center;
    line-height: 3rem;
    margin: 40px auto 20px auto;
    font-size: 1.1rem;
}
.index-sub-tittle-text{
    text-align: center;
    margin: 0 auto;
    padding-bottom: 50px;
    line-height: 2rem;
    font-size: 0.9rem;
    font-family: "Noto Serif JP", serif;/* 明朝フォントを使用する部分*/
}
.maincontentstitle{
    text-align: center;
    margin: 0 auto;
    padding-bottom: 10px;
    font-size: 1.2rem;
}

/*　---- 改装可能賃貸説明箇所　背景色　----*/
.haikei{
    height: 2800px;
    background-color: rgb(229, 227, 227);
    border-radius: 7px;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    padding: 50px 20px 20px 20px;
}
.kaisouchintaitoha{
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
}
.kaisouchintaitoha::after{
    /* のテキスト下線の、短い黒のアンダーライン */
    display: block;
    margin: 0 auto;
    width: 300px;
    height: 0.6px;
    margin-top: 15px;
    margin-bottom: 5px;
    background: rgb(0, 0, 0);
    content: "";
}
.akiyakatuyou{
    text-align: center;
}
.kaiketushimasu{
    font-size: 0.9rem;
    text-align: center;
    margin-top: 50px;
}
.fukidashihaikei-bk-1{
    font-size: 0.8rem;
    margin-top: 25px;
    margin-bottom: 90px;
    padding: 10px;
    color: white;
    height: 150px;
    background-color: rgb(130, 129, 129);
    border-radius: 7px;
}
.fukidashihaikei-wh-1{
    font-size: 0.8rem;
    margin: 60px 0;
    padding: 30px 10px 10px 10px;
    height: 190px;
    background-color: white;
    border-radius: 7px;
}
.fukidashihaikei-bk-2{
    font-size: 0.8rem;
    margin: 20px 0 100px 0;
    padding: 10px;
    color: white;
    height: 150px;
    background-color: rgb(130, 129, 129);
    border-radius: 7px;
}
.fukidashihaikei-wh-2{
    font-size: 0.8rem;
    margin: 20px 0;
    padding: 30px 10px 10px 10px;
    height: 230px;
    background-color: white;
    border-radius: 7px;
}
.fukidashihaikei-bk-3{
    font-size: 0.8rem;
    margin: 20px 0 70px 0;
    padding: 10px;
    color: white;
    height: 150px;
    background-color: rgb(130, 129, 129);
    border-radius: 7px;
}
.fukidashihaikei-wh-3{
    font-size: 0.8rem;
    margin: 20px 0;
    padding: 30px 10px 10px 10px;
    height: 200px;
    background-color: white;
    border-radius: 7px;
}
/*　---- 改装可能賃貸説明箇所　イラストの調整　----*/
.owner-illustration-design-box1{
    position: relative;
}
.owner-illustration1{
    width: 25%;
    position: absolute;
    top: 100px;
}

.kokaihouse-illustration-design-box1{
    position: relative;
}
.kokaihouse-illustration1{
    width: 18%;
    position: absolute;
    top: -24px;
    right: 40px;
}

.owner-illustration-design-box2{
    position: relative;
}
.owner-illustration2{
    width: 25%;
    position: absolute;
    top: 120px;
}

.kokaihouse-illustration-design-box2{
    position: relative;
}
.kokaihouse-illustration2{
    width: 18%;
    position: absolute;
    top: -24px;
    right: 40px;
}

.tenanto-illustration-design-box{
    position: relative;
}
.tenanto-illustration{
    width: 25%;
    position: absolute;
    top: 120px;  
}

.kokaihouse-illustration-design-box3{
    position: relative;
}
.kokaihouse-illustration3{
    width: 18%;
    position: absolute;
    top: -24px;
    right: 40px;
}

/*　---- 事業スキーム図解　----*/
.kaisou-scheme{
    font-size: 1.1rem;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}
.kaisou-scheme::after{
    /* のテキスト下線の、短い黒のアンダーライン */
    display: block;
    margin: 0 auto;
    width: 110px;
    height: 0.8px;
    margin-top: 5px;
    margin-bottom: 5px;
    background: rgb(0, 0, 0);
    content: "";
}

.scheme-deco{
    margin-bottom: -70px;
}

.haikeiwhite{
    height: 630px;
    background-color: white;
    border-radius: 7px;
    margin: 20px auto;
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 20px;
}
.kokaikikakupoji{
    font-size: 0.8rem;
    padding-bottom: 20px;
}
.aboutservice{
    font-size: 0.8rem;
    line-height: 1.6rem;
    padding-left: 10px;
}
.tentno{
    margin-top: 30px;
}
.indent{
    text-indent: 1rem;
}
.service{
    font-weight: bold;
}

/* ---- メリットとポイント紹介　ここから　----*/
.tokuchouarticle{
    width: 90%;
    max-width: 400px;
    margin: 60px auto;
}
.pointtitle{
    text-align: center;
    margin: 0 auto;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 10px;
    margin-top: 10px;
}
.pointbox{
    background-color:  rgb(229, 227, 227);
    border-radius: 7px;
    margin-bottom: 20px;
    padding: 30px;
}
.pointboxtitle{
    font-weight: bold;
    font-size: 0.9rem;
}
.pointboxsentence{
    font-size: 0.8rem;
    margin-top: 5px;
}
.pointboxarea{
    font-size: 0.9rem;
    text-align: center;
}
/* ---- 改装事例　ここから　----*/
.kaisoujirei::after{
    /* のテキスト下線の、短い黒のアンダーライン */
    display: block;
    margin: 0 auto;
    width: 80px;
    height: 0.8px;
    background: rgb(0, 0, 0);
    content: "";
}
.jireititle{
    text-align: center;
    margin: 0 auto;
    line-height: 2rem;
    font-size: 0.9rem;
    font-family: "Noto Serif JP", serif;/* 明朝フォントを使用する部分*/
}
.jireisubtitle{
    margin: 0 auto;
    line-height: 2rem;
    padding-bottom: 30px;
    font-size: 0.95rem;
}
.jireitopimg{
    background-image: url(../imgs/kaisoutop.JPG);
    height: 200px;
    background-size: cover;
    background-position: 50%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.withsizestyling{
    max-width: 90%;
    margin: 0 auto;
}
.mensekihiyou{
    font-size: 0.8rem;
    padding-bottom: 5px;
}
.jireisentence{
    font-size: 0.8rem;
    padding-top: 20px;
}
.jireihaikei{
    height: 100%;
    background-color:  rgb(229, 227, 227);
    border-radius: 7px;
    margin-bottom: 50px;
    max-width: 80%;
    margin: 20px auto;
    padding: 20px;
}
.jirei-naiyou{
    font-size: 0.9rem;
    font-weight: bold;
}
.jireilist{
    font-size: 0.8rem;
    padding-top: 10px;
    line-height: 1.4rem;
}
.befor-after{
    font-size: 1.6rem;
    color: #ecda36;
    text-align: center;
}
.befor-box{
    max-width: 65%;
    margin: 0 auto;
    font-size: 0.8rem;
}
.before-text{
    line-height: 1.2rem;
    margin: 3px 0 25px 0;
}

/* ---- 　改装事例 After ここから　----*/
.after-box{
    font-size: 0.8rem;
}
.after-text{
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
}
.after-img{
    max-width: 65%;
    margin: 0 auto;
}
.jirei-after-1{
    background-image: url(../imgs/after/af1.JPG);
    height: 250px;
    background-size: cover;
    margin-top: 10px;
    margin-bottom: 10px;
}
.jirei-after-2{
    background-image: url(../imgs/after/af2.JPG);
    height: 250px;
    background-size: cover;
    margin-top: 10px;
    margin-bottom: 10px;
}
.jirei-after-3{
    background-image: url(../imgs/after/af4.JPG);
    height:150px;
    background-size: cover;
    margin-top: 10px;
    margin-bottom: 10px;
}
.jirei-after-4{
    background-image: url(../imgs/after/af5.JPG);
    height: 250px;
    background-size: cover;
    margin-top: 10px;
    margin-bottom: 10px;
}



/* ---- ご利用の流れ　ここから　----*/
.goriyounonagare::after{
    /* のテキスト下線の、短い黒のアンダーライン */
    display: block;
    margin: 0 auto;
    width: 120px;
    height: 0.8px;
    background: rgb(0, 0, 0);
    content: "";
}
.flowarticle{
    max-width: 80%;
    margin: 0 auto;
    padding-top: 50px;
} 
.flowcontent{
    display: flex;
    padding-top: 20px;
    border-bottom: 1.2px solid #f0e68c;
    margin-bottom: 20px;
}
.flowno{
    font-size: 4rem;
    color: #f0e68c;
    padding-right: 20px;
    position: relative;
    top: 30px;
    font-family: 'Noto Sans JP', sans-serif;
}
.flowtitle{
    font-weight: bold;
    margin-bottom: 5px;
}
.flowsentence{
    font-size: 0.9rem;
    font-family: "Noto Serif JP", serif;/* 明朝フォントを使用する部分*/
}
.flowtext-01{
    position: relative;
    top: 26px;
}
.flowtext-02{
    position: relative;
    top: 26px;
}
.flowtext-03{
    position: relative;
    top: 26px;
}
.flowtext-04{
    position: relative;
    top: 26px;
}
.flowtext-05{
    position: relative;
    top: 50px;
}

/*　---- 問い合わせボタン ここから　----*/
.button{
    background-color: #e3c800;
    color: white;
    border-radius: 20px;
    padding: 7px 20px;
    width: 240px;
    display: block;
    letter-spacing: 0.05rem;
    text-align: center;
    margin: 50px auto;
}
.button:hover{
    background-color: #e4d455;
    color: white;
    transition: 0.3s;
}

/*　---- footer ここから　----*/
footer{
    margin-top: 80px;
    padding-left: 5px;
}
.kokaikikaku-logo{
    display: block;
    padding-top: 30px; 
    width: 70px;
}
.kokaikikaku-logo-moji{
    display: block;
    padding-top: 20px; 
    padding-bottom: 20px;
    width: 150px;
}
.address,.mail{
    line-height: 3rem;
    font-size: 0.9rem;
    color: #555;
}
.mail{
    display: block;
    padding-bottom: 40px;
    border-bottom: 1px solid gray;
    margin-bottom: 50px;
}
.insta{
    width: 20px;
    display: block;
    margin-bottom: 50px;
    margin-left: 20px;
}
.insta-copy-flex{
    display: flex;
    justify-content: space-between;
}
.insta-follow{
    color: #555;
}
.copy{
    margin-left: 0;
    color: #555;
}
footer{
    background-color: #f0e68c;
}



/* ここからは、レスポンシブデザイン
    ＜ブレークポイント＞
    デスクトップ ：900px〜1280px
    タブレット　：　670px〜899px
    スマホ以上タブレット未満　：　429px〜669px
    スマホ　：　375px〜428px
------------------------------- */
@media (min-width:429px) { 
/* スマホ以上のサイズ以上：429〜pxで適用する部分
------------------------------- */
    /*　---- 改装事例メイン画像と、AFTERの横幅いっぱいの画像を消す----*/  
    .img-hide{
        display: none;
    }
    .img-show{
        max-width: 80%;
        margin: 0 auto;
    }
    .withsizestyling{
        max-width: 80%;
        margin: 0 auto;
}
}
@media (max-width:429px) {
        /* スマホサイズ以下：〜429pxで適用する部分
    ------------------------------- */
    .img-show{
        display: none;

    }
}

@media (min-width:670px) { 
/* タブレットサイズ以上：670〜pxで適用する部分
------------------------------- */
    .top-main-wrapper-index{
        height: 400px;
    }
    /* トップ画像に重なる白抜きのタイトル */
    .index-top-tittle{
        font-size: 2rem;
        top: 120px;
        left: 80px;
    }
        .haikei{
        height: 3000px;
        max-width: 700px;
        padding: 50px;
    }
    /*　---- 改装可能賃貸説明箇所　イラストの調整　----*/
    .owner-illustration1{
        width: 15%;
    }
    .kokaihouse-illustration1{
        width: 12%;
    }
    .owner-illustration2{
        width: 15%;
        top: 100px;
    }
    .kokaihouse-illustration2{
        width: 12%;
    }
    .tenanto-illustration{
        width: 16%;
        top: 100px;  
    }
    .kokaihouse-illustration3{
        width: 12%;
    }
    /*　---- 改装可能賃貸説明箇所　吹き出し背景の調整　----*/
    .fukidashihaikei-bk-1{
        font-size: 0.9rem;
        margin-bottom: 100px;
        padding: 20px;
        height: 150px;
        border-radius: 12px;
        max-width: 500px;
    }
    .fukidashihaikei-wh-1{
        font-size: 0.9rem;
        margin: 60px 0 60px 100px;
        padding: 30px 20px 10px 20px;
        height: 170px;
        border-radius: 12px;
        max-width: 500px;
    }
    .fukidashihaikei-bk-2{
        font-size: 0.9rem;
        margin: 20px 0 100px 0;
        padding: 20px;
        max-width: 500px;
        height: 150px;
        border-radius: 12px;
    }
    .fukidashihaikei-wh-2{
        font-size: 0.9rem;
        padding: 30px 20px 10px 20px;
        height: 230px;
        max-width: 500px;
        border-radius: 12px;
        margin-left: 100px;
    }
    .fukidashihaikei-bk-3{
        font-size: 0.9rem;
        margin: 20px 0 70px 0;
        padding: 20px;
        height: 130px;
        border-radius: 12px;
        max-width: 500px;
    }
    .fukidashihaikei-wh-3{
        font-size: 0.9rem;
        margin: 100px 0;
        padding: 30px 20px 10px 20px;
        height: 200px;
        border-radius: 12px;
        margin-left: 100px;
    }

    /*　---- 改装可能賃貸説明箇所　吹き出し背景の調整　----*/
    .scheme-deco{
        width: 85%;
        margin: 0 auto;
        margin-bottom: -100px;
    }

    .haikeiwhite{
        height: 660px;
        border-radius: 12px;
        padding-top: 100px;
        padding-left: 60px;
        padding-right: 60px;
    }
    .kokaikikakupoji{
        font-size: 1rem;
    }

     /*　---- 改装事例　タイトルの調整　----*/
    .jireititle{
        font-size: 1.1rem;
    }
    .img-show{
        max-width: 80%;
        margin: 0 auto;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .jireisentence{
        font-size: 0.9rem;
    }
    .jirei-naiyou{
        font-size: 1rem;
    }

     /*　---- 改装事例　リストの調整　----*/
    .jireilist{
        font-size: 0.9rem;
        padding-top: 10px;
        line-height: 1.8rem;
        display: flex;
    }
    .list-right{
        padding-left: 60px;
    }

     /*　---- BEFORとAFTERのタイトル調整　----*/
    .befor-after{
        font-size: 1.8rem;
        margin-top: 60px;
    }

     /*　---- BEFORの調整　----*/
    .befor-box{
        max-width: 80%;
        margin: 0 auto;
        font-size: 0.8rem;
    }
    .kitchen-washitu{
        display: flex;
    }
    .kitchen{
        max-width: 50%;
        padding-right: 6px;
    }
    .washitu{
        max-width: 50%;
        padding-left: 6px;
    }
    .tatami-door-shoumei{
        display: flex;
    }
    .tatami{
        max-width: 33%;
        padding-right: 12px;
    }
    .door{
        max-width: 33%; 
    }
    .shoumei{
        max-width: 33%;
        padding-left: 12px;
    }
}

@media (min-width:900px) {
    /* デスクトップサイズ以上：900px〜で適用する部分
------------------------------- */
    .haikei{
        height: 2800px;
    }
    .kaiketushimasu{
        font-size: 1.1rem;
        text-align: left;
    }
    .fukidashihaikei-bk-1{
        margin-top: 15px;
        margin-bottom: 0px;
        height: 140px;
    }
    .fukidashihaikei-bk-2{
        margin: 80px 0 60px 0;
        height: 140px;
    }
    .aboutservice{
        margin-top: 20px;
        font-size: 0.8rem;
        display: flex;
    }
    .tentno{
        margin-top: 0px;
        margin-left: 60px;
    }
    .haikeiwhite{
        height: 500px;
        border-radius: 12px;
    }
     /*　---- メリットと特徴を２段組にする　----*/
     .tokuchouarticle{
        max-width: 710px;
    }
    .pointbox-beside{
        display: flex;
    }
    .pointbox{
        margin-bottom: 20px;
        padding: 30px;
        margin: 5px;
        width: 50%;
    }
    .pointtitle-design{
        margin-top: 40px;
    }

     /*　---- 改装事例　----*/
    .jireiarticle{
        width: 900px;
        margin: 0 auto;
    }
    .jireisubtitle{
        font-size: 1.2rem;
    }

     /*　---- 改装事例 AFTER　----*/
     .after-text{
        max-width: 90%;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .mainroom-text{
        padding-left: 45px;
    }
    .lighting-text{
        padding-left: 45px;
        padding-right: 45px;
    }
    .door-text{
        padding-left: 45px;
        padding-right: 45px;
    }
    .after-img{
        max-width: 90%;
        margin: 0 auto;
    }
    .washitu-kitchen{
        display: flex;
    }
    .kitchen-img{
        width: 238px;
        position: relative;
        top: 10px;
        right: 20px;
    }
    .washitu-img{
        width: 600px;
        position: relative;
        top: -20px;
        left: 30px;
    }
    .washitu-text{
        padding-right: 30px;
        padding-left: 30px;
    }
    .kitchen-text{
        margin: 10px 0px 0px 10px;
    }
    .floor-entrance{
        display: flex;
        margin-bottom: 50px;
    }
    .floor-img{
       width: 380px;
       margin-left: 70px;
    }
    .entrance-ing{
        width: 380px;
    }
    .floor-text{
        margin: 10px 0 0 20px;
    }
     .entrance-text{
        margin: 10px 0 0 20px;
    }

     /*　---- fLOW　----*/
    .flowarticle{
        max-width: 600px;
        margin: 0 auto;
        padding-top: 50px;
} 

}