【ソースコード】初級編:ストアサイト(和菓子)/縦書きレイアウト
目次
※コーディングの解説はCSSのコメントを参照
ディレクトリ構成
store3
├─img
│ ├─favicon.ico
│ ├─logo.svg
│ ├─mainvisual-pc.jpg
│ ├─mainvisual-sp.jpg
│ ├─products1.jpg
│ └─products2.jpg
│
├─css
│ └─style.css
│
└─index.html
HTML(index.html)
別タブで開く
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>創作</title>
<meta name="description" content="テキストテキストテキストテキストテキストテキストテキストテキスト">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="img/favicon.ico">
<link rel="stylesheet" href="https://unpkg.com/ress/dist/ress.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header id="header">
<h1 class="site-title">
<a href="#"><img src="img/logo.svg" alt="創作"></a>
</h1>
<nav id="nav">
<ul>
<li><a href="#news">お知らせ</a></li>
<li><a href="#products1">商品のご紹介</a></li>
<li><a href="#shop">店舗のご案内</a></li>
</ul>
</nav>
<div class="onlinestore">
<a href="#" target="_blank">オンラインストアを見る</a>
</div>
</header>
<main>
<section id="news" class="wrapper">
<h2 class="section-title">
<span class="en">News</span>
<span class="ja">お知らせ</span>
</h2>
<dl class="list">
<dt>2021.01.01</dt>
<dd>タイトルタイトルタイトルタイトル</dd>
<dt>2021.01.01</dt>
<dd>タイトルタイトルタイトルタイトル</dd>
<dt>2021.01.01</dt>
<dd>タイトルタイトルタイトルタイトル</dd>
<dt>2021.01.01</dt>
<dd>タイトルタイトルタイトルタイトル</dd>
<dt>2021.01.01</dt>
<dd>タイトルタイトルタイトルタイトル</dd>
</dl>
</section>
<section id="products1" class="products wrapper">
<h2 class="section-title">
<span class="ja">新しい価値の創造</span>
<span class="en">Create New Values</span>
</h2>
<div class="img">
<img src="img/products1.jpg" alt="">
<p class="text">テキストテキスト<br>テキストテキスト</p>
</div>
</section>
<section id="products2" class="products wrapper">
<h2 class="section-title">
<span class="ja">科学と技術の調和</span>
<span class="en">Science & Technology</span>
</h2>
<div class="img">
<img src="img/products2.jpg" alt="">
<p class="text">テキストテキスト<br>テキストテキスト</p>
</div>
</section>
<div id="shop">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3241.6831613967106!2d139.73286700102722!3d35.66017708010212!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x60188b9c2ef8e6c3%3A0xff8de5eeddcd1e17!2z44CSMTA2LTAwMzIg5p2x5Lqs6YO95riv5Yy65YWt5pys5pyo77yV5LiB55uu!5e0!3m2!1sja!2sjp!4v1622980739129!5m2!1sja!2sjp" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</main>
<footer id="footer">
<div class="inner">
<div class="left">
<p><a href="#" target="_blank">オンラインストアを見る</a>|<a href="mailto:xxxxx@xxx.xxx">お問い合わせ</a></p>
</div>
<div class="right">
<div class="logo"><img src="img/logo.svg" alt="創作"></div>
<p class="info">
〒106-0032 東京都港区六本木5丁目×××××<br>
電話:<a href="tel:03-xxxx-xxxx">03-XXXX-XXXX</a>
</p>
<ul class="menu">
<li><a href="#news">お知らせ</a></li>
<li><a href="#products1">商品のご紹介</a></li>
<li><a href="#shop">店舗のご案内</a></li>
</ul>
</div>
</div>
<p class="copyright">© SOUSAKU</p>
</footer>
</body>
</html>
CSS(style.css)
別タブで開く
style.css
@charset "UTF-8";
html {
font-size: 100%;
}
body {
background-color: #e6e2d7;
color: #000;
font-family: 'Noto Serif JP', serif;
}
a {
color: #fff;
text-decoration: none;
}
img {
max-width: 100%;
vertical-align: bottom;
}
li {
list-style: none;
}
.site-title {
line-height: 1px;
margin-left: 60px;
}
.site-title a {
display: block;
}
.site-title img {
width: 40px;
}
.wrapper {
width: 100%;
max-width: 1024px;
margin: 0 auto;
padding: 0 20px;
}
/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
width: 100%;
/* 背景を画面下まで設定 */
height: 100vh;
background-image: url(../img/mainvisual-pc.jpg);
background-size: cover;
background-position: center top;
background-repeat: no-repeat;
padding: 60px 80px;
margin-bottom: 180px;
/* 「オンラインストアを見る」ボタンを配置するためのposition */
position: relative;
writing-mode: vertical-rl;
}
/*
「オンラインストアを見る」ボタン
positionで左下に配置
backgroundのrgbaで透過設定
*/
#header .onlinestore {
background: rgba(255,255,255,0.2);
padding: 8px;
position: absolute;
left: 40px;
bottom: 30px;
}
#header .onlinestore a {
display: block;
border: solid 1px #ccc;
padding: 30px 18px;
}
#header .onlinestore a:hover {
opacity: 0.7;
}
#nav li {
margin-left: 25px;
}
/*-------------------------------------------
News
-------------------------------------------*/
/*
「display: flex」で横並びに配置
そのままではタイトルが左にくるため、「row-reverse」で順序を入れ替える。
*/
#news {
margin-bottom: 180px;
display: flex;
flex-direction: row-reverse;
}
#news .section-title {
font-weight: normal;
line-height: 1;
writing-mode: vertical-rl;
}
#news .section-title .en {
display: block;
font-size: 0.875rem;
margin-left: 15px;
}
#news .section-title .ja {
display: block;
font-size: 2.25rem;
letter-spacing: 0.1em;
}
#news .list {
padding: 80px 100px 0 0;
writing-mode: vertical-rl;
}
#news .list dt {
border-right: solid 1px #000;
font-size: 0.75rem;
padding: 15px 30px 15px 5px;
}
#news .list dd {
padding: 15px 0 15px 30px;
}
/*
最後だけ左側に罫線を引く
*/
#news .list dd:last-child {
border-left: solid 1px #000;
}
/*-------------------------------------------
Products(共通)
-------------------------------------------*/
.products {
display: flex;
margin-bottom: 180px;
}
.products .section-title {
font-weight: normal;
line-height: 1;
}
.products .section-title .ja {
font-size: 2rem;
letter-spacing: 0.1em;
margin-bottom: 18px;
}
.products .section-title .en {
font-size: 0.875rem;
}
/*
画像の上にテキストを重ねるためのpositionを設定
*/
.products .img {
width: 65%;
margin-top: 100px;
position: relative;
}
/*
「position: absolute;」でテキストを画像の上に配置
左右の配置位置は「#products1」と「#products2」で個別に指定
*/
.products .text {
width: 56%;
color: #fff;
padding: 50px 0;
text-align: center;
position: absolute;
bottom: -20px;
}
/*
productsの共通定義以外は、idを指定(#products1、#products2)して個別に設定
*/
/*-------------------------------------------
Products1
-------------------------------------------*/
/*
そのままではタイトルが左にくるため、「row-reverse」で順序を入れ替える。
*/
#products1 {
flex-direction: row-reverse;
}
#products1 .section-title {
margin-left: 20px;
writing-mode: vertical-lr;
}
#products1 .text {
background: rgba(249, 233, 6, 0.6);
left: -20px;
}
/*-------------------------------------------
Products2
-------------------------------------------*/
#products2 .section-title {
margin-right: 20px;
writing-mode: vertical-rl;
}
#products2 .text {
background: rgba(149, 42, 38, 0.6);
right: -20px;
}
/*-------------------------------------------
Shop
-------------------------------------------*/
/*
iframeのwidthに100%を指定して全幅で表示する
「vertical-align: bottom;」を指定することで、Google Mapの下にできる隙間を消す
*/
#shop iframe {
width: 100%;
vertical-align: bottom;
}
/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
background-color: #000;
color: #fff;
padding: 80px 80px 30px 30px;
}
#footer .inner {
width: 100%;
display: flex;
justify-content: space-between;
font-size: 0.875rem;
margin-bottom: 10px;
}
#footer .inner .left,
#footer .inner .right {
writing-mode: vertical-rl;
}
#footer .inner .logo {
width: 40px;
margin-left: 60px;
}
#footer .inner .info {
line-height: 2;
}
#footer .menu {
font-size: 1rem;
margin-right: 60px;
}
#footer .menu li {
margin-left: 25px;
}
#footer .copyright {
font-size: 0.625rem;
text-align: center;
}
/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 768px) {
.wrapper {
max-width: 100%;
}
/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
/* スマホの場合は背景画像を切り替える */
background-image: url(../img/mainvisual-sp.jpg);
padding: 20px;
margin-bottom: 80px;
}
#header .onlinestore {
left: 20px;
bottom: 20px;
}
/*-------------------------------------------
News
-------------------------------------------*/
#news {
margin-bottom: 80px;
}
#news .section-title .ja {
font-size: 1.75rem;
}
#news .list {
padding: 20px 30px 0 0;
}
#news .list dt {
padding: 15px 12px 15px 5px;
}
/*
スマホの場合は4つ目以降を非表示にする
*/
#news .list dt:nth-of-type(n + 4) {
display: none;
}
#news .list dd {
padding: 15px 0 15px 12px;
}
/*
3つ目の左側に罫線を引く
*/
#news .list dd:nth-of-type(3) {
border-left: solid 1px #000;
}
/*
スマホの場合は4つ目以降を非表示にする
*/
#news .list dd:nth-of-type(n + 4) {
display: none;
}
/*-------------------------------------------
Products
-------------------------------------------*/
.products {
margin-bottom: 100px;
}
.products .section-title .ja {
font-size: 1.5rem;
}
/*
スマホの場合は英語タイトルを非表示
*/
.products .section-title .en {
display: none;
}
.products .img {
width: 90%;
margin-top: 70px;
}
.products .text {
width: 64%;
font-size: 0.875rem;
padding: 30px 0;
}
/*-------------------------------------------
Products1
-------------------------------------------*/
#products1 .section-title {
margin-left: 10px;
}
/*-------------------------------------------
Products2
-------------------------------------------*/
#products2 .section-title {
margin-right: 10px;
}
/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
padding: 40px 20px 30px 20px;
}
#footer .inner .logo {
margin-left: 25px;
}
#footer .menu li {
margin-left: 10px;
}
#footer .menu {
font-size: 0.875rem;
margin-right: 25px;
}
}