@charset "UTF-8";
/* CSS Document */
/* ----------------------------------------
   リセット
---------------------------------------- */
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, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  outline: 0;
  background: transparent;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  padding: 0;
  margin: 0;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

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

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

main {
  display: block;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

* {
  box-sizing: border-box;
}

/* ----------------------------------------
   カラー統一
---------------------------------------- */
/* ----------------------------------------
   基本設定
---------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  word-wrap: break-word;
  background-color: #111;
  color: #FFF;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  font-feature-settings: "palt";
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    letter-spacing: 0;
  }
}

a {
  transition: 0.2s;
  display: block;
  color: #FFF;
  text-decoration: none;
}

img {
  display: inline-block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

span {
  display: inline-block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 160%;
}

@media screen and (min-width: 768px) {
  .pc-non {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-non {
    display: none;
  }
}
.header {
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
  animation: fadeIn 1s ease 0s 1 normal;
}

.container {
  opacity: 0;
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(30px);
}

.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ----------------------------------------
   ヘッダー
---------------------------------------- */
@media screen and (min-width: 768px) {
  .header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .header_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
  }
  .header_title {
    width: 20%;
    max-width: 140px;
    padding: 0 16px;
  }
  .header_title a:hover {
    opacity: 0.7;
  }
  .nav_wrap {
    width: 80%;
  }
  .nav_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }
  .nav_list li {
    width: auto;
  }
  .nav_list a {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    padding: 18px 24px;
  }
  .nav_list a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .nav_list a span {
    display: none;
  }
  #hamburger {
    display: none;
  }
  #header {
    transition: 0.8s;
  }
  #header.scrollfixed {
    background-color: rgb(255, 255, 255) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
  }
  .header_title {
    max-width: 100px;
  }
  #nav {
    transition: 0.4s;
    position: absolute;
    top: -100vh;
    right: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    padding: 0;
  }
  .nav_list {
    width: 100%;
    margin: 0 auto;
  }
  .nav_list li {
    background-color: #111;
  }
  .nav_list li a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF;
    font-size: 1.6rem;
    padding: 16px;
  }
  .nav_list li a img {
    display: none;
  }
  li.nav_list_title {
    width: 100%;
  }
  li.nav_list_title a {
    border-bottom: none;
  }
  li.nav_list_title a img {
    display: block;
    max-width: 100px;
    margin: 0 auto;
  }
  #hamburger {
    transition: 0.4s;
    cursor: pointer;
    display: block;
    position: absolute;
    top: 16px;
    right: 8px;
    width: 40px;
    height: 40px;
  }
  #hamburger::after {
    content: "MENU";
    display: block;
    position: absolute;
    top: 8px;
    right: 0;
    width: 46px;
    color: #FFF;
    font-size: 0.7rem;
    text-align: center;
  }
  .inner_line {
    transition: 0.4s;
    display: block;
    position: absolute;
    left: 0;
    width: 34px;
    height: 2px;
    background-color: #FFF;
  }
  #line1 {
    top: -8px;
  }
  #line2 {
    top: 0;
  }
  #line3 {
    top: 8px;
  }
  .in {
    transform: translateY(100%);
  }
  .line_1, .line_2, .line_3 {
    background-color: #FFF;
  }
  .line_1 {
    transform: translateY(8px) rotate(-45deg);
    top: 0;
  }
  .line_2 {
    opacity: 0;
  }
  .line_3 {
    transform: translateY(-8px) rotate(45deg);
    bottom: 0;
  }
}
/* ----------------------------------------
   コンテンツ部分
---------------------------------------- */
@media screen and (min-width: 768px) {
  .container {
    padding-top: 58px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding-top: 42px;
  }
}

/* ----------------------------------------
   全ページ共通　下部アクセス方法
---------------------------------------- */
.caccess {
  display: block;
  background-color: #CCC;
  padding: 40px;
}

.caccess_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 960px;
  color: #111;
  margin: 0 auto;
}

.caccess_title {
  width: 100%;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.caccess_item {
  width: 48%;
  font-size: 1.6rem;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .caccess_item {
    width: 100%;
    margin-bottom: 40px;
  }
  .caccess_item:last-child {
    margin-bottom: 0;
  }
}

.caccess_image {
  margin-bottom: 12px;
}

.caccess_text {
  font-size: 1.4rem;
  line-height: 180%;
}
.caccess_text span {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
}
.caccess_text a {
  color: #111;
  text-decoration: underline;
}

/* ----------------------------------------
   フッター
---------------------------------------- */
.footer {
  background-color: #EFEFEF;
  padding: 24px 40px 8px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 24px 24px 8px;
  }
}

.footer_wrap {
  max-width: 1600px;
  color: #111;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.footer_title {
  width: 20%;
  max-width: 88px;
}
@media screen and (max-width: 767px) {
  .footer_title {
    max-width: 96px;
    margin-bottom: 20px;
  }
}

.footer_navi {
  width: 80%;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .footer_navi {
    margin-bottom: 40px;
  }
}
.footer_navi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .footer_navi ul {
    justify-content: flex-start;
  }
}
.footer_navi li {
  width: auto;
}
.footer_navi a {
  color: #111;
  font-size: 1.4rem;
  text-decoration: underline;
  padding: 0 12px;
}
@media screen and (max-width: 767px) {
  .footer_navi a {
    padding: 4px 0;
    margin-right: 24px;
  }
}

.copyright {
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
}

.footer_bottom_bnr {
  max-width: 240px;
  margin: 40px auto 16px;
}
.footer_bottom_bnr a {
  background-color: #FFF;
  border: 1px solid #DDD;
  padding: 12px;
}
.footer_bottom_bnr a:hover {
  opacity: 0.7;
}

/* ----------------------------------------
   右下下部固定
---------------------------------------- */
#page_top {
  position: fixed;
  z-index: 200;
  right: 16px;
  bottom: 16px;
}
@media screen and (max-width: 767px) {
  #page_top {
    right: 8px;
    bottom: 8px;
  }
}
#page_top a {
  display: block;
  width: 64px;
  height: 64px;
  background-color: #333;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  color: #FFF;
  font-size: 1.2rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-align: center;
  padding-top: 20px;
}
#page_top a:hover {
  background-color: #069;
}

/* ----------------------------------------
   スタイルシート終わり
---------------------------------------- *//*# sourceMappingURL=common.css.map */