@charset "utf-8";
@import url("//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.css");

/* --------------------
reset
-------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
body {
  line-height:1;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  display:block;
}

nav ul {
  list-style:none;
}

blockquote, q {
  quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}

a {
  margin:0;
  padding:0;
  border:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

mark {
  background-color:#ff9;
  color:#000;
  font-style:italic;
  font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted #000;
  cursor:help;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

hr {
  display:block;
  height:1px;
  border:0;
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* --------------------
common
-------------------- */
@media screen and (max-width: 767px) {
  html {
    font-size: .9rem;
  }
}
body {
  background-image: linear-gradient(-90deg, #F6B6DE, #EFF665);
  margin: 0;
  position: relative;
  font-family: ヒラギノ角ゴ pron w3,Hiragino Sans,ヒラギノ角ゴ pron w3,Hiragino Kaku Gothic ProN,メイリオ,Meiryo,sans-serif;
}

h2 {
  font-size: 180%;
}

a {
  text-decoration: none;
  color: #111;
}
a:hover {
  color: #edb61a;
}
.hide {
  display: none;
}

/* --------------------
header
-------------------- */
.header-wrap {
  padding: 20px 0;
  border-bottom: 1px solid #e1e1e1;
  line-height: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFF;
  z-index: 99;
}
.header-logo-area {
  float: left;
  width: 121px;
}
.header-logo-area img {
  width: 100%;
  margin-left: 15px;
}
.header-menu-area {
  float: right;
}
.header-menu-area .header-menu {
  margin-right: 42px;
}
.header-menu-area .header-menu li {
  display: inline-block;
  padding: 10px 15px;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .header-menu-area #header-ham-menu-check ~ nav {
    display: none;
  }
  .header-menu-area #header-ham-menu-check:checked ~ nav {
    display: block;
  }
  .header-menu-area nav {
    position: fixed;
    width: 100%;
    left: 0;
    background: #fff;
    padding-bottom: 8px;
    animation-name: fade-header-menu;
    animation-duration: .5s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fade-header-menu {
    0% {
      opacity: 0;
      transform: translate3d(0, -20px, 0);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .header-menu-area .header-menu li {
    margin-bottom: 6px;
  }
}
.header-ham-menu-wrap {
  display: none;
  position: relative;
  width: 20px;
  height: 15px;
  margin-right: 21px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .header-ham-menu-wrap {
    display: block;
  }
}
.header-ham-menu {
  position: absolute;
  left: 0;
  background-color: #dba60f;
  height: 2px;
  width: 100%;
}
.header-ham-menu.top {
  top: 0;
  -webkit-transition: top .3s ease, -webkit-transform .3s ease;
  transition: top .3s ease, -webkit-transform .3s ease;
  transition: top .3s ease, transform .3s ease;
  transition: top .3s ease, transform .3s ease, -webkit-transform .3s ease;
}
.header-menu-area #header-ham-menu-check:checked ~ .header-ham-menu-wrap .header-ham-menu.top {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.header-ham-menu.middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
.header-menu-area #header-ham-menu-check:checked ~ .header-ham-menu-wrap .header-ham-menu.middle {
  opacity: 0;
}
.header-ham-menu.bottom {
  bottom: 0;
  -webkit-transition: bottom .2s ease, -webkit-transform .2s ease;
  transition: bottom .2s ease, -webkit-transform .2s ease;
  transition: bottom .2s ease, transform .2s ease;
  transition: bottom .2s ease, transform .2s ease, -webkit-transform .3s ease;
}
.header-menu-area #header-ham-menu-check:checked ~ .header-ham-menu-wrap .header-ham-menu.bottom {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
  transform: translateY(50%) rotate(-45deg);
}

/* --------------------
contens
-------------------- */
.contents-wrap {
  margin-top: 79px;
}
@media screen and (max-width: 767px) {
  .contents-wrap {
    margin-top: 74px;
  }
}

/* --------------------
section
-------------------- */
.section-wrap {
  padding: 10% 6.5% 6.5%;
}
.section-link {
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}
.section-link a {
  padding: 15px 70px;
  background: #edb61a;
  border-radius: 2px;
  color: #fff;
  letter-spacing: .2em;
  position: relative;
}
.section-link a:hover {
  background: #d8a106;
}
.section-link a:after {
  content: "";
  font-family: FontAwesome;
  position: absolute;
  top: 18px;
  right: 24px;
}

/* --------------------
footer
-------------------- */
.footer-wrap {
  padding: 40px 0;
  margin-top: 1px;
  border-top: 1px solid #e1e1e1;
  line-height: 1;
  width: 100%;
  background: #FFF;
  font-size: .85rem;
}
.footer-menu-area {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-menu-area .footer-menu {
  list-style: none;
  margin: 12px;
}
.footer-menu-area .footer-menu li {
  padding: 10px 15px;
  letter-spacing: 0.06em;
}
.footer-copy-area {
  margin: 26px;
  border-top: 1px solid #e1e1e1;
  padding-top: 28px;
}
