@charset "utf-8";
/*------------------------------------------------------------
共通
------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: Verdana, Roboto, 'Droid Sans', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #333;
  overflow-x: hidden;
}
body:before {
  display: block;
  content: '';
  width: 100%;
  height: 100px;
  background: #ebf6f5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

img {
  vertical-align: bottom;
  border: none;
}

a {
  -webkit-transition: all .25s;
  transition: all .25s;
}

li {
  list-style: none;
}

h2 {
  font-size: 2.4rem;
  color: #66c3c3;
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
}
h2 small {
  font-size: 1.6rem;
}

input[type='text'], input[type='email'] {
  line-height: 30px;
  height: 32px;
}

input[type='button'], input[type='submit'], button[type='button'] {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}
input[type='button']:hover, input[type='submit']:hover, button[type='button']:hover {
  opacity: 0.75;
}

select {
  padding: 5px;
}

@media screen and (max-width: 736px) {
  body {
    font-size: 1.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }
  h2 small {
    font-size: 1.2rem;
  }

  input[type='text'] {
    line-height: 20px;
  }

  input[type='button'], input[type='submit'], button[type='button'] {
    font-size: 1.4rem;
  }
}
/*------------------------------------------------------------
共通クラス
------------------------------------------------------------*/
.sp {
  display: none;
}

.message {
  color: #c00;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 736px) {
  .sp {
    display: block;
  }
}
/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  margin: 0 auto;
  width: 720px;
}

@media screen and (max-width: 736px) {
  #wrapper {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 20px;
  }
}
/*------------------------------------------------------------
ヘッダー
------------------------------------------------------------*/
#header {
  height: 100px;
  padding-top: 15px;
  margin-bottom: 40px;
  box-sizing: border-box;
  position: relative;
}
#header > h1 {
  position: absolute;
  top: 8px;
  left: 0;
}
#header > p.catch {
  position: absolute;
  top: 15px;
  left: 155px;
  font-weight: bold;
  line-height: 30px;
}
#header > ul {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  overflow: hidden;
}
#header > ul li {
  float: left;
  width: 25%;
  color: #66c3c3;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  background: #fff;
  border-radius: 10px 10px 0 0;
  border-top: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  box-sizing: border-box;
}
#header > ul li.on {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}
#header > ul li a {
  display: block;
  color: #333;
  text-decoration: none;
  background: #f6f6f6;
  border-radius: 10px 10px 0 0;
}
#header > ul li a:hover {
  color: #66c3c3;
  background: #fff;
}
#header aside p {
  position: absolute;
  top: 15px;
  right: 0;
  cursor: pointer;
}
#header aside p:hover {
  opacity: 0.75;
}
#header aside dl {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 480px;
  z-index: 999;
  background: #66c3c3;
  color: #fff;
  padding: 20px;
  border: 5px solid #fff;
  box-sizing: border-box;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#header aside dt {
  color: #333;
  font-weight: bold;
  line-height: 1;
  background: #fff;
  text-align: center;
  padding: 5px;
  margin-bottom: 20px;
}
#header aside dd {
  margin-top: 10px;
}
#header aside dd:nth-last-of-type(1) {
  text-align: center;
  line-height: 30px;
  width: 120px;
  margin: 20px auto 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  -webkit-transition: all .25s;
  transition: all .25s;
}
#header aside dd:nth-last-of-type(1):hover {
  background: #fff;
  color: #66c3c3;
}

@media screen and (max-width: 736px) {
  #header {
    padding: 10px 0 0;
    margin-bottom: 20px;
  }
  #header > h1 {
    position: static;
    margin-bottom: 5px;
  }
  #header > h1 img {
    width: 130px;
    height: auto;
  }
  #header > p.catch {
    position: static;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  #header > p.sp {
    position: absolute;
    top: 60px;
    right: 0;
    background: #66c3c3;
    color: #fff;
    width: 80px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px 5px 0 0;
  }
  #header > ul {
    display: none;
    bottom: auto;
    top: 100px;
  }
  #header > ul li {
    float: none;
    width: auto;
    font-size: 1.4rem;
    color: #fff;
    background: #8bd1d1;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #fff;
  }
  #header > ul li.on {
    border: none;
    border-bottom: 1px solid #fff;
  }
  #header > ul li:last-child {
    border-radius: 0 0 5px 5px;
  }
  #header > ul li:last-child a {
    border-radius: 0 0 5px 5px;
  }
  #header > ul li a {
    display: block;
    color: #fff;
    background: #66c3c3;
    border-radius: 0;
  }
  #header > ul li a:hover {
    color: #fff;
    background: #66c3c3;
    border: none;
  }
  #header aside dl {
    width: 92%;
    padding: 10px;
  }
  #header aside dt {
    line-height: 1.2;
    margin-bottom: 10px;
  }
  #header aside dd {
    margin-top: 5px;
  }
  #header aside dd:nth-last-of-type(1) {
    margin: 10px auto 0;
  }
}
/*------------------------------------------------------------
footer
------------------------------------------------------------*/
#footer {
  background: #ebf6f5;
}
#footer .inner {
  width: 720px;
  margin: 0 auto;
  padding: 12px 0;
  overflow: hidden;
}
#footer p {
  font-size: 1.2rem;
  line-height: 17px;
}
#footer p:nth-of-type(1) {
  float: left;
  width: auto;
}
#footer p:nth-last-of-type(1) {
  float: right;
  width: auto;
}
#footer a {
  color: #333;
  text-decoration: none;
}
#footer a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 736px) {
  #footer {
    background-size: 28px auto;
    text-align: center;
  }
  #footer .inner {
    width: auto;
  }
  #footer p:nth-of-type(1) {
    float: none;
    margin-bottom: 10px;
  }
  #footer p:nth-last-of-type(1) {
    float: none;
  }
}

/*# sourceMappingURL=base.css.map */
