【特別編】コーポレートサイト/ソースコード

目次

ディレクトリ構成

    
corporate
 ├─img
 │  ├─favicon.ico
 │  ├─logo.svg
 │  ├─mainvisual.jpg
 │  ├─service-design.jpg
 │  ├─service-development.jpg
 │  ├─service-direction.jpg
 │  ├─work-apparel.jpg
 │  ├─work-cafe.jpg
 │  └─work-furniture.jpg
 │
 ├─css
 │  └─style.css
 │
 ├─js
 │  └─main.js
 │
 └─index.html
    
  

HTML(index.html)

別タブで開く
index.html

<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="utf-8">
    <title>something, Inc.</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="stylesheet" href="css/style.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="js/main.js"></script>
  </head>

  <body>
    <div class="wrapper">
      <header id="header">

        <h1 class="site-title">
          <a href="index.html"><img src="img/logo.svg" alt="something"></a>
        </h1>

        <nav id="navi">
          <ul class="nav-menu">
            <li><a href="#news">News</a></li>
            <li><a href="#service">Service</a></li>
            <li><a href="#company">Company</a></li>
            <li><a href="#work">Work</a></li>
            <li><a href="#contact">Contact</a></li>
          </ul>
          <ul class="nav-sns">
            <li><a href="https://twitter.com/" target="_blank">Twitter</a></li>
            <li><a href="https://www.facebook.com/" target="_blank">facebook</a></li>
            <li><a href="https://www.instagram.com/" target="_blank">instagram</a></li>
          </ul>
        </nav>

        <div class="toggle_btn">
          <span></span>
          <span></span>
          <span></span>
        </div>

        <div id="mask"></div>
      </header>

      <div class="container">
        <div class="section-wrapper">
          <img src="img/mainvisual.jpg" alt="テキストテキストテキスト">
        </div>

        <section id="news" class="section-wrapper">
          <h2 class="sec-title">News</h2>
          <dl>
            <dt>2020.XX.XX</dt>
            <dd>テキストテキストテキストテキストテキストテキストテキスト</dd>
            <dt>2020.XX.XX</dt>
            <dd>テキストテキストテキストテキストテキストテキストテキスト</dd>
            <dt>2020.XX.XX</dt>
            <dd>テキストテキストテキストテキストテキストテキストテキスト</dd>
            <dt>2020.XX.XX</dt>
            <dd>テキストテキストテキストテキストテキストテキストテキスト</dd>
            <dt>2020.XX.XX</dt>
            <dd>テキストテキストテキストテキストテキストテキストテキスト</dd>
            <dt>2020.XX.XX</dt>
            <dd>テキストテキストテキストテキストテキストテキストテキスト</dd>
            <dt>2020.XX.XX</dt>
            <dd>テキストテキストテキストテキストテキストテキストテキスト</dd>
          </dl>
        </section>

        <section id="service" class="section-wrapper">
          <h2 class="sec-title">Service</h2>
          <ul>
            <li>
              <img src="img/service-direction.jpg" alt="テキストテキスト">
              <p class="list-title">Direction</p>
              <p>テキストテキストテキストテキストテキストテキストテキストテキストテキスト</p>
            </li>
            <li>
              <img src="img/service-design.jpg" alt="テキストテキスト">
              <p class="list-title">Design</p>
              <p>テキストテキストテキストテキストテキストテキストテキストテキストテキスト</p>
            </li>
            <li>
              <img src="img/service-development.jpg" alt="テキストテキスト">
              <p class="list-title">Development</p>
              <p>テキストテキストテキストテキストテキストテキストテキストテキストテキスト</p>
            </li>
          </ul>
        </section>

        <section id="company" class="section-wrapper">
          <h2 class="sec-title">Company</h2>
          <dl>
            <dt>会社名</dt>
            <dd>something, Inc.</dd>
            <dt>設立</dt>
            <dd>XXXX年X月</dd>
            <dt>資本金</dt>
            <dd>9,999,999円</dd>
            <dt>所在地</dt>
            <dd>150-0001 東京都渋谷区神宮前 X-XX-X XXXXX A01</dd>
            <dt>社員数</dt>
            <dd>99名</dd>
            <dt>事業内容</dt>
            <dd>
              webサイト制作<br>
              Webアプリケーション開発<br>
              インターネットメディア事業
            </dd>
          </dl>
        </section>

        <section id="work" class="section-wrapper">
          <h2 class="sec-title">Work</h2>
          <ul>
            <li>
              <div class="work-img">
                <img src="img/work-furniture.jpg" alt="テキストテキスト">
              </div>
              <div class="work-content">
                <p class="work-title">Furniture</p>
                <p class="work-url"><a href="#">www.xxxxxxxx.com</a></p>
                <p>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト</p>
              </div>
            </li>
            <li>
              <div class="work-img">
                <img src="img/work-cafe.jpg" alt="テキストテキスト">
              </div>
              <div class="work-content">
                <p class="work-title">Cafe</p>
                <p class="work-url"><a href="#">www.xxxxxxxx.com</a></p>
                <p>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト</p>
              </div>
            </li>
            <li>
              <div class="work-img">
                <img src="img/work-apparel.jpg" alt="テキストテキスト">
              </div>
              <div class="work-content">
                <p class="work-title">Apparel</p>
                <p class="work-url"><a href="#">www.xxxxxxxx.com</a></p>
                <p>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト</p>
              </div>
            </li>
          </ul>
        </section>

        <section id="contact" class="section-wrapper">
          <h2 class="sec-title">Contact</h2>
          <form action="#">
            <dl>
              <dt><label for="your-name">お名前</label></dt>
              <dd><input type="text" id="your-name" name="your-name" placeholder="XXXX XXXX"></dd>
              <dt><label for="your-company">会社名</label></dt>
              <dd><input type="text" id="your-company" name="your-company" placeholder="株式会社XXXXX"></dd>
              <dt><label for="your-email">メールアドレス</label></dt>
              <dd><input type="email" id="your-email" name="your-email" placeholder="xxx@xxxxxx.jp"></dd>
              <dt><label for="your-tel">電話番号</label></dt>
              <dd><input type="tel" id="your-tel" name="your-tel" placeholder="090-XXXX-XXXX"></dd>
              <dt><label for="your-message">お問い合わせ内容</label></dt>
              <dd><textarea id="your-message" name="your-message"></textarea></dd>
            </dl>
            <div class="button"><input type="submit" value="入力内容を確認する"></div>
          </form>
        </section>

        <footer id="footer">
          <div class="footer-content">
            <div class="footer-text">
              <p class="concept">Do Something Great</p>
              <p>
                テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト<br>
                テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト
              </p>
            </div>

            <div class="footer-menu">
              <ul>
                <li><a href="https://twitter.com/" target="_blank">Twitter</a></li>
                <li><a href="https://instagram.com/" target="_blank">Instagram</a></li>
                <li><a href="https://facebook.com/" target="_blank">Facebook</a></li>
              </ul>
            </div>

            <div class="footer-menu">
              <ul>
                <li><a href="https://pinterest.jp/" target="_blank">Pinterest</a></li>
                <li><a href="https://line.me/" target="_blank">LINE</a></li>
              </ul>
            </div>
          </div>
          <p class="copyright">&copy; something, Inc.</p>
        </footer>

      </div>
    </div>

  </body>

</html>


CSS(style.css)

別タブで開く
style.css

@charset "UTF-8";

html {
  font-size: 100%;
  font-family:helveticaneue,Helvetica,Arial,lucinda grande,hiragino kaku gothic pro,sans-serif;
}
body {
  color: #333;
}
a {
  color: #777;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}

.wrapper {
  display: flex;
  justify-content:space-between;
  font-size: 0.9rem;
}
.container {
  margin: 40px 0 0 300px;
}
.section-wrapper {
  margin: 0 50px 100px 0;
}
.site-title {
  line-height: 1px;
  margin-bottom: 30px;
}
.site-title a {
  display: block;
}
.sec-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
  width: 250px;
  padding: 40px 0 30px 45px;
  position: fixed;
}
#header .nav-menu {
  margin-bottom: 60px;
}
#header li {
  font-size: 0.9rem;
  padding: 8px 0;
}

/*-------------------------------------------
News
-------------------------------------------*/
#news dt {
  margin-bottom: 2px;
}
#news dd {
  margin-bottom: 20px;
}

/*-------------------------------------------
Service
-------------------------------------------*/
#service ul {
  display: flex;
  justify-content:space-between;
}
#service li {
  width: 31%;
}
#service li img {
  margin-bottom: 30px;
}
#service li .list-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}


/*-------------------------------------------
Company
-------------------------------------------*/
#company dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#company dt {
  width: 15%;
  padding: 15px 0;
}
#company dd {
  width: 85%;
  padding: 15px 0;
}

/*-------------------------------------------
Work
-------------------------------------------*/
#work li {
  display: flex;
  margin-bottom: 20px;
}
#work li .work-img {
  width: 47%;
  margin-right: 3%;
}
#work li .work-content {
  width: 50%;
}
#work li .work-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
#work li .work-url {
  margin-bottom: 10px;
}

/*-------------------------------------------
Contact
-------------------------------------------*/
#contact dl {
  margin-bottom: 20px;
}
#contact dt {
  margin-bottom: 2px;
}
#contact dd {
  margin-bottom: 20px;
}
#contact dd input,
#contact dd textarea {
  width: 100%;
  border: solid 1px #c8c8c8;
  padding: 10px;
}
#contact dd textarea {
  height: 10rem;
}
.button {
  text-align: left;
}
.button input {
  width: 200px;
  background-color: #333;
  color: #fff;
  padding: 15px 0;
}
.button input:hover {
  opacity: 0.7;
}

/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
  background-color: #eff2f5;
  padding: 100px 10% 0;
}
#footer .footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
#footer .footer-text {
  width: 50%;
}
#footer .footer-text .concept {
  margin-bottom: 50px;
}
#footer .footer-menu {
  width: 10%;
}
#footer .footer-menu li {
  margin-bottom: 15px;
}
#footer .footer-menu li a {
  text-decoration: underline;
}
#footer .copyright {
  font-size: 0.5rem;
  text-align: center;
  padding: 10px;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 960px) {
  .wrapper {
    flex-direction: column;
  }
  .container {
    width: 100%;
    margin: 70px 0 0 0;
    padding: 0 16px;
  }
  .section-wrapper {
    margin: -72px 0 60px 0;
    padding-top: 72px;
  }

  /*-------------------------------------------
  ヘッダー
  -------------------------------------------*/
  #header {
    width: 100%;
    padding: 16px;
    background-color: #fff;
  }
  #header .site-title {
    margin-bottom: 0;
  }
  #navi {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    padding: 25px;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
  }
  .open #navi {
    left: 0;
    opacity: 1;
  }
  #navi ul {
    margin: 0;
    padding: 0;
  }
  #navi ul.nav-menu {
    margin-bottom: 30px;
  }
  #navi ul li {
    position: relative;
    margin: 0;
    padding: 14px 0;
  }
  .toggle_btn {
    display: block;
    position: fixed;
    top: 22px;
    right: 18px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    transition: all .5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background-color: #fff;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }
  #mask {
    display: none;
    transition: all .5s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
  }

  /*-------------------------------------------
  Service
  -------------------------------------------*/
  #service ul {
    flex-direction: column;
  }
  #service li {
    width: 100%;
    margin-bottom: 30px;
  }
  #service li img {
    margin-bottom: 10px;
  }

  /*-------------------------------------------
  Company
  -------------------------------------------*/
  #company dl {
    flex-direction: column;
  }
  #company dt {
    width: 100%;
    padding: 0;
    margin-bottom: 2px;
  }
  #company dd {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  /*-------------------------------------------
  Work
  -------------------------------------------*/
  #work li {
    flex-direction: column;
    margin-bottom: 30px;
  }
  #work li .work-img {
    width: 100%;
    margin: 0 0 10px 0;
  }
  #work li .work-content {
    width: 100%;
  }

  /*-------------------------------------------
  フッター
  -------------------------------------------*/
  #footer {
    flex-direction: column;
    padding: 50px 25px 0;
  }
  #footer .footer-content {
    flex-direction: column;
  }
  #footer .footer-text {
    width: 100%;
    margin-bottom: 50px;
  }
  #footer .footer-text .concept {
    margin-bottom: 30px;
  }
  #footer .footer-menu {
    width: 100%;
  }
}


JavaScript(main.js)

別タブで開く
main.js

$(function(){
  /*=================================================
  スマホメニュー
  ===================================================*/
  $('.toggle_btn').on('click', function() {
    if (!$('#header').hasClass('open')) {
      $('#header').addClass('open');
    } else {
      $('#header').removeClass('open');
    }
  });

  $('#mask').on('click', function() {
    $('#header').removeClass('open');
  });

  /*=================================================
  スムーススクロール
  ===================================================*/
  $('a[href^="#"]').click(function(){
    var href= $(this).attr("href");
    var target = $(href == "#" || href == "" ? 'html' : href);
    var position = target.offset().top;
    $("html, body").animate({scrollTop:position}, 600, "swing");
    return false;
  });
});