@charset "utf-8";

/* スマホ対応処理 */
/* @media screen and (min-width:300px) and (max-width: 768px){} */ /*画面幅を細かく指定したい場合*/
/*@media screen and (max-width: 768px){*/


/*
Base Style
全体に反映させる設定値を記入
*/
body {
    /*google fonts からコピペし、フォントファミリーお勧め設定を連結した*/
    font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}


/* 
Header
*/
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: fixed; /*他の要素と関係なく常に固定させる*/
    z-index: 10;    /*一番上のレイヤーに表示するため大きい数字を指定*/
    top: 0;
    left: 0;
}
.header-logo {
    margin: 0;
}
.header-logo > a {
    display: block;
}
.header-img {
    width: 150px;
    height: auto;
}

/* .header-nav {} */
.header-navlist {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* .header-navitem {} */
.header-navitem > a {
    display: block;
    padding: 10px;
    color: #aaa;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;   /*ゆっくりと表示させるために透明にしておく*/
    transition: border-color .25s;          /*ゆっくりと表示させる指定*/
}

.header-navitem > a:hover {
    border-bottom: 2px solid #aaa;
}

@media screen and (max-width: 768px){
    .header {
        font-size: 12px;
    }

    .header-img {
        width: 120px;
        height: auto;
    }
}


/* 
Hero
*/
.hero {
    width: 100vw; /*vw=view with windowサイズの横幅*/
    height: 100vh; /*vh=view hight windowサイズの縦幅*/
    position: relative;
    overflow: hidden; /*はみ出した部分はカットする*/
}

.hero-img768 {
    display: none;
}

.hero > strong {
    position: absolute; /*relativeの中で表示できるようにする*/
    z-index: 2; /*重なりの優先度　数字が多き程上にくる*/

    /*上下左右の中央に置く方法*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 120px;
    color: #eee;
    font-weight: bold;

    display: block;
    width: 100%;
    text-align: center;
}

.hero > img {
    position: absolute;
    z-index: 1; /*重なりの優先度　数字が多き程上にくる*/
    width: 100%;
    height: auto;
}


@media screen and (max-width: 1400px){
    .hero {
        height: 70vh; /*vh=view hight windowサイズの縦幅*/
    }
}

@media screen and (max-width: 1200px){
    .hero {
        height: 60vh; /*vh=view hight windowサイズの縦幅*/
    }
}

@media screen and (max-width: 1000px){
    .hero {
        height: 50vh; /*vh=view hight windowサイズの縦幅*/
    }
}

@media screen and (max-width: 768px){
    .hero {
        /*height: 40vh;*/ /*vh=view hight windowサイズの縦幅*/
        height: 70vh;
    }

    .hero-img-main {
        display: none;
    }

    .hero-img768 {
        display: block;
    }
}


.main-title{
    /*上下左右の中央に置く方法*/
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */

    font-size: 60px;
    color: #333;
    font-weight: bold;

    display: block;
    /* width: 100%; */
    text-align: center;
    margin-bottom: 30px;
}


/*
section
*/
.section {
    padding: 30px 15px;
}
.section.section-secounday {
    background: #efefef;
}
.section.section-black {
    padding: 0;
    background: #333;
    /* position: relative; */
    overflow: hidden; /*はみ出した部分はカットする*/
}
.section.model-list-up {
    padding: 30px 15px 5px;
}
.section.model-list-down {
    padding: 5px 22% 30px;
}

.section-introduction {
    text-align: center;
    margin-bottom: 50px;
}

.section-figure {
    /* margin: 0; */
    margin: 0, 100px;
    display: flex;  /*横並びにする*/
}

.section-caption {
    padding-left: 15px;
}

.section-headline {
    text-align: center; /*中央寄せ*/
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 40px; /*top right/left bottomのmargin*/
}

.section-subtitle {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px; /*top right/left bottomのmargin*/
}
.section-subtitle.white {
    color: #eee;
}

.section-description {
    padding-right: 20%;
}
.section-description.white {
    color: #eee;
}

.section-image {
    /* padding-left: 100px; */
    padding-left: 10%;
}
.section-image.about {
    width: 600px;
    height: auto;
}

.section-image.model {
    width: 600px;
    height: auto;
}

.section-image.sanotake {
    width: 400px;
    height: auto;
}

.section-image.motion {
    width: 500px;
    height: auto;
}

.section-image.electric {
    width: 500px;
    height: auto;
}

.section-image.propo {
    width: 600px;
    height: auto;
}

.section a {
    text-decoration: none;
    color: #333;
}

.mark-style {
    list-style: "・";
    padding-left: 10px;
}

.li-margin {
    margin-bottom: 10px;
}

.li-bold {
    font-size: 15px;
    font-weight: bold;
}


@media screen and (max-width: 1200px){
    .list-style {
        padding-left: 0px;
    }
}


@media screen and (max-width: 1600px){
    .section-image {
        padding-left: 5%;
    }
    
    .section-description {
        padding-right: 5%;
    }
}


@media screen and (max-width: 1200px){
    .section-figure {
        display: block;
    }

    .section-image {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        padding-left: 0;
        height: auto;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .section-subtitle {
        padding-right: 5%;
        padding-left: 5%;
    }

    .section-description {
        padding-right: 5%;
        padding-left: 5%;
    }

    .section.model-list-up {
        padding-right: 0%;
        padding-left: 0%;
    }
    .section.model-list-down {
        padding-right: 0%;
        padding-left: 0%;
    }
    
}




@media screen and (max-width: 768px){
    .section {
        padding: 20px 10px;
    }

    .section-figure {
        display: block;
    }

    .section-headline {
        font-size: 20px;
        text-align: center;
        margin: 0 0 20px;
    }

    .section-description {
        padding-right: 0;
    }

    .section-image {
        /* padding-left: 30px; */
        height: auto;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .section-subtitle {
        padding-right: 0%;
        padding-left: 0%;
    }

    .section-description {
        padding-right: 0%;
        padding-left: 0%;
    }
}


/*
About
*/

.product-name {
    font-weight: bold;
    padding-bottom: 0;
    line-height: 3px;
}

.model-list {
    list-style-type: none
}

/* リストの先頭にあるインデントを消す */
.section.model-list-down ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.model-list li {
    margin: 10px 0;
}


@media screen and (max-width: 1200px){
    .product-name {
        padding-right: 5%;
        padding-left: 5%;
    }

    .model-list li{
        padding-right: 5%;
        padding-left: 5%;
    }
}

@media screen and (max-width: 768px){
    .product-name {
        padding-right: 0%;
        padding-left: 0%;
    }

    .model-list li{
        padding-right: 0%;
        padding-left: 0%;
    }
}


.youtube {
    display: block;
    margin: 0 auto;
    width: 800px;
    height: 500px;
    max-width: 100%;
}


@media screen and (max-width: 768px){
    .youtube {
        height: 300px;
        max-width: 100%;
        margin-bottom: 20px;
    }
}


/*
帯状に表示させて画像の上に説明が入る部分
*/
.belt-shaped-figure {
    margin: 0;
    position: relative;/*相対配置*/
}

.belt-shaped-image {
    padding: 0;
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.belt-shaped-caption {

    position: absolute; /*relativeの中で表示できるようにする*/
    z-index: 10; /*重なりの優先度　数字が多き程上にくる*/

    /*上下左右の中央に置く方法*/
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.belt-shaped-description {
    color: #eee;
}



@media screen and (max-width: 768px){

    .belt-shaped-image {
        max-width: 100%;
        margin-bottom: 5px;
    }

    .belt-shaped-caption {
        left: 50%;
    }


    .belt-shaped-caption {

        position: absolute; /*relativeの中で表示できるようにする*/
        z-index: 10; /*重なりの優先度　数字が多き程上にくる*/
    
        /*上下左右の中央に置く方法*/
        top: 70%;
        left: 20%;
        transform: translate(-10%, -50%);
    }

}


/*
button
*/
.button {
    display: inline-block;  /*インライン要素でありブロックレベル要素でもある　横並びにできてpadding/margin設定ができる*/
    color: #fff;
    font-weight: bold;
    background-color: #48b4a6;
    text-align: center;
    padding: 15px 60px;
    text-decoration: none;
    border-radius: 5px;
    /* margin-top: 40px; */
    margin: 0px 100px 40px;
}

.button:hover { /*カーソルが置かれたときの処理*/
    box-shadow: 0 0 0 #bbb; /*ボックスの影をなくす*/
    box-shadow: 5px 5px 0 #bbb; /*ボックスに影を付ける　右　下　ぼかし　色*/
    transition: box-shadow .25s;    /*box-shadowの色が変化する時間を指定できる*/
}

.button.button-submission {
    background: #92d3ca;
}

button{
    cursor: pointer;    /*カーソル他当たると指マークに変化する*/
    border: 0;
}

@media screen and (max-width: 1200px){
    /* 画像を中央寄せするための処理 */
    .button-center img {
        display: block;
        margin: 0 auto;
    }

    /* 画像のリンクを画像上のみに限定するための処理 */
    .button-center a {
        width: 300px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}


/* 
横並びの設定
*/
.grid {
    margin: 0;  /*初期値クリア*/
    padding: 0; /*初期値クリア*/
    display: flex;
    align-items: flex-start; /*中央揃え*/
    justify-content: center;
}
.grid-item {
    list-style: none;
}

.grid-col-2 > .grid-item {
    width: 50%;
}

.grid-col-3 > .grid-item {
    width: 33.3%;
}

.grid-col-4 > .grid-item {
    width: 25%;
}

@media screen and (max-width: 768px){
    .grid {
        display: block;
    }
    .grid-col-2 > .grid-item,    
    .grid-col-3 > .grid-item,    
    .grid-col-4 > .grid-item {
        width: 100%;
        margin: 20px 0;
    }
}

.options {
    text-align: center;
    padding: 0 15px;
}
.options-headline {
    font-weight: bold;
    margin: 0 0 20px;
}
.options-image {
    margin: 0 0 20px;
    /*box-shadow: 0 0 0 #fff;*/ /*ボックスの影をなくす*/
    /*transition: box-shadow .25s;*    /*box-shadowの色が変化する時間を指定できる*/
}

/*.options-image:hover {*/ /*カーソルが置かれたときの処理*/
    /*box-shadow: 5px 5px 0 #3cf;*/ /*ボックスに影を付ける　右　下　ぼかし　色*/
/*}*/

.options-description {
    margin: 0;  /*初期値クリア*/
    text-align: left;
}



/* 
関連商品
*/
.related {
    margin: 40px 0;
}

.related-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.related-items {
    margin: 20px 20px;
}

.related-img {
    height: 200px;
    width: 200px;
    box-shadow: 5px 5px 0 #3cf; /*ボックスに影を付ける　右　下　ぼかし　色*/
    transition: box-shadow .25s;    /*box-shadowの色が変化する時間を指定できる*/
}

.related-img:hover { /*カーソルが置かれたときの処理*/
    box-shadow: 0 0 0 #fff; /*ボックスの影をなくす*/
}


@media screen and (max-width: 768px){
    .related {
        /* display: block; */
        text-align: center;
        margin: 20px 0;
        padding: 10px;
    }

    .related-container {
        /* flex-direction: column; */
    }

    .related-items {
        margin: 10px 10px;
    }

    .related > img {
        width: 100px;
        margin: 30px 0;
    }
}



/* 
footer
*/
.footer {
    background-color: #333;
    color: #fff;
    /* margin-bottom: 30px; */
}

.footer-line {
    border-color: #444;
}


/* 画像のリンクを画像上のみに限定するための処理 */
/* .footer-center a {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
} */

.footer-img {
    /* display: flex;
    justify-content: center;
    flex-wrap: wrap; */
    margin: 0 10px;
    padding: 10px;
    /* width: 150px; */
    /* height: auto; */
}

.footer-img2 {
    /* display: flex;
    justify-content: center;
    flex-wrap: wrap; */
    margin: 0 30px;
    padding: 10px;
    /* width: 150px; */
    /* height: auto; */
}

.footer-img-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* align-items: center; */
    /* margin: 0 auto; */
    /* padding: 10px 0; */
}

.footer-name {
    display: block;
    text-align: center;
}

.footer-copy {
    display: block;
    text-align: center;
    padding: 20px;
}



/*
未使用
 */

.card {
    padding: 0 10px;
}
.card-link {
    display: block;
    color: #333;
    text-decoration: none;  /*リンクのアンダーバーを削除*/
    position: relative;     /*要素を含めることができる*/
    transition: background-color .25s;  /*background-colorの色が変わる時間を遅らせる*/
}

.card-link:hover {  /*カーソルが乗ったときの処理*/
    background-color: #eee;
}

.card-label {
    position: absolute;     /*relativeに含まれる要素*/
    left: 0;
    top: 0;
    background-color: #999;
    color: #fff;
    display: block;
    padding: 5px 10px;
    font-size: 12px;
}
.card-image {
    width: 100%;
    height: auto;
}
.card-info {
    padding: 5px 10px;
}
/*.card-time {}*/
.card-headline {
    margin: 0;
}
.card-description {
    margin: 0;
}


.avator {
    display: flex;
    flex-direction: row-reverse; /*左右の並びを反転する*/
    align-items: center;        /*上下の中央*/
    justify-content: start;
    padding: 10px;
}
.avator-name {
    font-weight: bold;
    padding-left: 15px;
}
.avator-image {
    margin: 0;
    border-radius: 50%; /*角を丸くする 50%で画像が丸くなる*/
    overflow: hidden;   /*border-radiusを画像に対して適用させるための処理　枠からはみ出た部分をカットする*/
}


/*
form
*/

/*.form {}*/

.form-table {
    /*ブロック要素に対してmargin 上下0　左右autoとすることで中央寄せになる*/
    margin: 0 auto;
}

.form-table th{
    padding: 10px;
    text-align: left;
}

.form-table td {
    padding: 10px;
}

.form-button {
    margin-top: 20px;
    text-align: center;
}

@media screen and (max-width: 768px){
    .form-table,
    .form-table tbody,
    .form-table tr,
    .form-table th,
    .form-table td {
        display: block;
    }
}


label, input, textarea, select, button{
    cursor: pointer;    /*カーソル他当たると指マークに変化する*/
}


.select {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    min-width: 500px;
}

.input {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    min-width: 500px;
}

.radio {
    margin: 0 10px;
}

/* .detail {} */

.textarea {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    min-width: 500px;
    min-height: 100px;
}

@media screen and (max-width: 768px){
    .select,
    .input,
    .textarea {
        min-width: auto;
        width: 100%;
    }

}