@charset "UTF-8";
/* =================================
reset
================================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 100%;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  box-sizing: border-box; }

/* =================================
common
================================= */
html {
  height: 100%; }

body {
  height: 100%;
  color: #464646;
  letter-spacing: .05em;
  line-height: 1.8;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  text-size-adjust: none; }

.container {
  text-align: center;
  padding-top: 80px; }

img {
  width: 100%;
  height: auto;
  display: block; }

span, strong {
  display: block;
  font-weight: normal; }

a {
  display: block;
  text-decoration: none;
  margin: 0 auto; }

a:hover {
  text-decoration: none;
  opacity: .5;
  transition: all .2s ease-in; }

.sp {
  display: none; }

.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto; }

@media screen and (max-width: 768px) {
  body {
    font-size: 15px; }

  .container {
    padding-top: 65px; }

  .pc {
    display: none; }

  .sp {
    display: inherit; }

  .inner {
    width: 90%; } }
/* =================================
header
================================= */
.shadow {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999; }

.header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .5s; }
  .header.hide {
    z-index: -1;
    transform: translateY(-160%); }
  .header h1 {
    width: 100%;
    max-width: 235px;
    padding-left: 30px; }
  .header .right_area {
    width: 100%;
    max-width: 330px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header .sp-menu {
    cursor: pointer; }
    .header .sp-menu i {
      width: 32px;
      height: 20px;
      display: block;
      position: relative;
      margin: 0 auto; }
    .header .sp-menu span {
      transition: all 0.3s;
      width: 20px;
      height: 1px;
      background: #767676;
      position: absolute;
      left: 0;
      right: 0;
      margin: auto; }
      .header .sp-menu span.top {
        top: 0; }
      .header .sp-menu span.middle {
        top: 0;
        bottom: 0; }
      .header .sp-menu span.bottom {
        bottom: 0; }
    .header .sp-menu.open .top {
      transform: rotate(-45deg);
      bottom: 0; }
    .header .sp-menu.open .middle {
      background: rgba(255, 255, 255, 0); }
    .header .sp-menu.open .bottom {
      transform: rotate(45deg);
      top: 0; }
    .header .sp-menu strong {
      display: block;
      color: #767676;
      font-size: 13px;
      font-family: "futura-pt", sans-serif;
      line-height: 1;
      margin-top: 10px; }
  .header .btn_r {
    color: #fff;
    background: #E67E8F;
    line-height: 1.2;
    font-size: 1.1em;
    font-weight: bold;
    margin: 0;
    width: 100%;
    max-width: 270px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
  .header .header-sitemap {
    background: #fff;
    position: fixed;
    right: 0;
    z-index: -1;
    padding: 40px 0 0;
    box-sizing: border-box;
    transition: all 0.3s;
    animation: hs-fadeIn 0.5s ease;
    transform: translateX(100%);
    top: 80px;
    width: 100%;
    max-width: 270px;
    height: 100vh; }
    .header .header-sitemap.open {
      transform: translateX(0); }
  .header .list-wrap {
    display: flex;
    justify-content: center; }
    .header .list-wrap li {
      margin-bottom: 1.5em; }
      .header .list-wrap li:last-of-type {
        margin-bottom: 0; }
    .header .list-wrap a {
      display: flex;
      align-items: center;
      color: #59c3e1; }
    .header .list-wrap img {
      max-width: 50px;
      margin-right: 1em; }
    .header .list-wrap span {
      font-weight: bold; }
  .header .close {
    display: block;
    width: 100%;
    max-width: 200px;
    box-sizing: border-box;
    cursor: pointer;
    padding: 15px 0;
    background: #59c3e1;
    color: #fff;
    margin: 40px auto 0;
    text-align: center;
    font-weight: bold; }
    .header .close:hover {
      opacity: .5;
      transition: all .2s ease-in; }

@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    height: 65px; }
    .header h1 {
      max-width: 135px;
      padding-left: 15px; }
    .header .right_area {
      max-width: 160px; }
    .header .sp-menu i {
      height: 15px; }
    .header .sp-menu strong {
      font-size: 12px;
      margin-top: 5px; }
    .header .btn_r {
      max-width: 110px; }
    .header .header-sitemap {
      top: 65px;
      padding-top: 20px;
      overflow-y: scroll;
      padding-bottom: 100px; }
    .header .scroll-wrap {
      overflow-y: scroll;
      box-sizing: border-box;
      padding-bottom: 30px; }
    .header .list-wrap li {
      margin-bottom: 2em; }
    .header .list-wrap img {
      max-width: 40px; }
    .header .close {
      max-width: 180px;
      padding: 12px 0;
      margin-top: 30px; } }
/* =================================
footer
================================= */
footer {
  position: sticky;
  top: 100vh;
  background: #7dcce3;
  color: #fff;
  padding: 3.5em 0 2em; }
  footer .logo_f {
    margin-bottom: 1.2em;
    max-width: 300px; }
  footer .add {
    margin-bottom: 2em; }
  footer .copy {
    font-size: .65em; }

@media print, screen and (max-width: 768px) {
  footer .logo_f {
    max-width: 250px; } }
