@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  background-color: #fff8ec; /* 好きな色 */
}

img{
    vertical-align: bottom;
    width: 100%;
}
header{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url(../img/index_.titlewebp.webp) no-repeat center/cover;
}
h1{
    text-align: center;
    font-size: 60px;
    color: #c5b385;
    text-shadow: 0 0 10px #c5b385;
    background-color: #fff;
    padding: 12px 24px 18px;
}

.description{
    text-align: center;
    font-size: 25px;
    font-weight: 400;    
}
h2{
    text-align: center;
    font-size: 25px;
    margin-bottom: 60px;
    vertical-align: bottom;

}
.flex_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1080px;
    margin: 0 auto 60px;
    gap: 30px;
}
.flex_container>div,
.flex_container > img{
    width: 520px;
}
/* 見出しと文章余白 */
.flex_container h3 {
  margin-top: 0;
}
.flex_item03 { order: 4; }
.flex_item06 { order: 1; } /* ドーナツ画像1 → 左 */
.flex_item07 { order: 2; } /* ドーナツ文章1 → 右 */
.flex_item09 { order: 3; } /* ドーナツ文章2 → 左 */
.flex_item08 { order: 4; } /* ドーナツ画像2 → 右 */

h3{
    font-size: 28px;
    font-weight: 400;
    margin: 12px 0 24px;
    color: brown;
}
.flex_container p{
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 24px;
}
.flex_item10 { order: 1; }
.flex_item11 { order: 2; }
.flex_item13 { order: 3; }
.flex_item12 { order: 4; }

footer{
    text-align: center; 
}
