@charset "utf-8";
.title {
    height: 310px;

background-image: url(../images/concept/bg-main.jpg);
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
/* 上下左右中央に設定 */
color: #fff;
/* 文字色を設定 */
text-shadow: 1px 1px 10px #4b2c14;
/* 影をつける（ボケ具合）、影の色を指定 */
/* （text-shadow左からの距離，上からの距離、ボケ具合、色） */
}
.title h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: bold;

}
.title p{
    font-size: 14px;
    margin-top: 15px;
}
.feature {
    display: flex;
    justify-content: space-between;
    width: 930px;
    max-width: 90%;
    margin: 75px auto 0;
    align-items: flex-start;
}
.feature img {
    width: 360px;
    /* 画像の大きさを揃える */
}
.feature-text {
    max-width: 500px;
    margin-right: 40px;
    /* 余白の調整 */
}
.reverse {
    flex-direction: row-reverse;
}
.reverse .feature-text {
    margin-left: 40px;
    margin-right: 0;
}
.feature-text h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
}
.feature-text h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000;
    margin-top: 20px;
}
.feature-text p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 25px;
}
.movie {
    width: 930px;
    max-width: 90%;
    /* 動画掲載エリアの幅を調整 */
    background-color: #f8f8f8;
    padding: 50px 60px;
    margin: 55px auto 0;
}
.movie h2 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.movie h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000;
    margin: 20px auto 0;
}
.movie iframe {
    display: block;
    width: 100%;
    /* height: 456px; */
    /* 動画の高さと幅を指定 */
    aspect-ratio: 16/9;
    margin-top: 30px;
/*  aspect-ratioはアスペクト比を保持するプロパティ。
ブラウザのサイズが変わっても縦横比はそのままなのでレイアウトは崩れない */
/*  aspect-ratio:　横　/　縦　*/
}
.movie p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 20px;
}
.footer {
    margin-top: 100px;
}