@charset "UTF-8";
/* ==============================
リセットcss
============================== */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  text-align: left;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  background-color: #B5B5B4;
  font-family: "Helvetica Neue",     Arial,     "Hiragino Kaku Gothic ProN",     "Hiragino Sans",     "BIZ UDPGothic",     Meiryo,     sans-serif;
}

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

ul, ol, dl {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

table {
  text-align: left;
  border-collapse: separate;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  line-height: 1.8;
  word-wrap: break-word;
  font-weight: 500;
}

#wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

body > #wrapper {
  height: auto;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  content: " ";
  clear: both;
  height: 0;
}

@media print {
  html {
    overflow: visible !important;
  }
  html body {
    overflow: visible !important;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  vertical-align: bottom;
  box-shadow: #000 0 0 0;
  /* ロールオーバー対応 */
  box-shadow: #000 0 0 0;
}

/* レスポンシブ対応 */
x:-moz-any-link, x:default {
  box-shadow: #000 0 0 0;
  /* IE7対応 */
}

/* リンク */
a:link, a:visited {
  color: #0066FF;
  text-decoration: none;
}

a:hover, a:active {
  color: #0066FF;
  text-decoration: underline;
}

.mincho {
  font-family: 游明朝, "Yu Mincho", YuMincho, Georgia, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  position: relative;
  font-weight: normal;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.flex {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/*----------------------------------------------------
	レスポンシブ
----------------------------------------------------*/
/*------------------------------------------
  Responsive Grid Media Queries - 1280, 1024, 768, 480
   1280-1024   - デスクトップ（デフォルトのグリッド）
   1024-768    - タブレット横長
   768-480     - タブレット縦長
   480-less    - スマホ
   
   .pc　　　 PCのみ
   .pc-tab　PCとタブレット
   .tab　　　タブレット
   .sp-tab　スマホとタブレット
   .sp      スマホ
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1980px) {
  .pc {
    display: block;
  }
  .pc-tab {
    display: block;
  }
  .tab {
    display: none;
  }
  .sp-tab {
    display: none;
  }
  .sp {
    display: none;
  }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: none;
  }
  .pc-tab {
    display: block;
  }
  .tab {
    display: block;
  }
  .sp-tab {
    display: block;
  }
  .sp {
    display: none;
  }
}

@media all and (min-width: 480px) and (max-width: 768px) {
  .pc {
    display: none;
  }
  .pc-tab {
    display: block;
  }
  .tab {
    display: block;
  }
  .sp-tab {
    display: block;
  }
  .sp {
    display: none;
  }
}

@media all and (max-width: 480px) {
  .pc {
    display: none;
  }
  .pc-tab {
    display: none;
  }
  .tab {
    display: none;
  }
  .sp-tab {
    display: block;
  }
  .sp {
    display: block;
  }
}

/* ▼▼▼ ヘッダー
=====================================*/
header {
  width: 100%;
  max-width: 1600px;
  position: relative;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#site_title {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

/* --------------------  
	ハンバーガーメニュー 
-------------------- */
.hamburger_menu_wrap {
  position: fixed;
  right: 0;
  top: 0;
  width: 122px;
  height: 115px;
  z-index: 50;
}

.hamburger_menu {
  display: flex;
  align-items: center;
  width: 62px;
  height: 54px;
  cursor: pointer;
  z-index: 10;
  padding: 30px 0;
  border: none;
  background-color: transparent;
  margin: 30px;
}

.hamburger_menu .hamburger-menu__line {
  display: block;
  width: 100%;
  height: 9px;
  background-color: #717071;
  position: relative;
  transition: all 0.5s;
}

.hamburger_menu .hamburger-menu__line::before, .hamburger_menu .hamburger-menu__line::after {
  content: '';
  display: block;
  width: 100%;
  height: 9px;
  background-color: #717071;
  position: absolute;
  transition: all 0.5s;
}

.hamburger_menu .hamburger-menu__line::before {
  transform: translateY(-23px);
}

.hamburger_menu .hamburger-menu__line::after {
  transform: translateY(23px);
}

.hamburger_menu.is_nav_open {
  background-color: transparent;
}

.hamburger_menu.is_nav_open .hamburger-menu__line {
  background-color: transparent;
}

.hamburger_menu.is_nav_open .hamburger-menu__line::before {
  transform: rotate(45deg);
}

.hamburger_menu.is_nav_open .hamburger-menu__line::after {
  transform: rotate(-45deg);
}

.header-drawer {
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

.is_nav_open .header-drawer {
  pointer-events: auto;
  z-index: 1;
  opacity: 1;
}

/* グローバルナビゲーション */
#gnav {
  pointer-events: auto;
  right: -350px;
  top: 0;
  width: 85%;
  max-width: 350px;
  position: fixed;
  z-index: 10;
  transition: all 0.2s linear;
  visibility: visible;
  opacity: 0;
  left: auto;
  overflow: auto;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 220px 40px 180px;
}

#gnav.is_nav_open {
  z-index: 20;
  opacity: 1;
  right: 0;
}

#gnav .gnav_list {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 16px;
  margin: 40px auto 0;
  padding: 0;
}

#gnav .gnav_list li {
  width: 100%;
  position: relative;
  position: relative;
}

#gnav .gnav_list li:not(:last-child) {
  margin: 0 0 40px;
}

#gnav .gnav_list li:nth-child(2) a {
  height: 24px;
}

#gnav .gnav_list li:nth-child(2) a img {
  height: 24px;
}

#gnav .gnav_list li a {
  display: block;
  padding: 0;
  color: #fff;
  height: 20px;
}

#gnav .gnav_list li a img {
  height: 20px;
  vertical-align: top;
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
=====================================*/
#main {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  clear: both;
}

#main .copyright {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 10px;
  line-height: 30px;
  text-align: center;
}

/* =====================================
	
	▼▼▼ min-width: 1024px 〜　max-width: 1300px
	
===================================== */
/* =====================================
	
	▼▼▼ min-width: 768px 〜　max-width: 1024px
	
===================================== */
/* =====================================
	
	▼▼▼ max-width: 767px
	
===================================== */
@media screen and (max-width: 767px) {
  #wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
  }
  header {
    width: 100%;
    max-width: 100%;
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    height: auto;
  }
  /* --------------------  
	ハンバーガーメニュー 
-------------------- */
  .hamburger_menu_wrap {
    width: 72px;
    height: 72px;
  }
  .hamburger_menu {
    width: 32px;
    height: 32px;
    z-index: 10;
    padding: 0;
    margin: 20px;
  }
  .hamburger_menu .hamburger-menu__line {
    height: 4px;
  }
  .hamburger_menu .hamburger-menu__line::before, .hamburger_menu .hamburger-menu__line::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
  }
  .hamburger_menu .hamburger-menu__line::before {
    transform: translateY(-12px);
  }
  .hamburger_menu .hamburger-menu__line::after {
    transform: translateY(12px);
  }
  .header-drawer {
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    -webkit-transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
    transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .is_nav_open .header-drawer {
    pointer-events: auto;
    z-index: 1;
    opacity: 1;
  }
  /* グローバルナビゲーション */
  #gnav {
    pointer-events: auto;
    right: -220px;
    top: 0;
    width: 90%;
    max-width: 220px;
    position: fixed;
    z-index: 10;
    transition: all 0.2s linear;
    visibility: visible;
    opacity: 1;
    left: auto;
    overflow: auto;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 100px 40px;
  }
  #gnav.is_nav_open {
    z-index: 20;
    opacity: 1;
    right: 0;
  }
  #gnav .gnav_list {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    margin: 40px auto 0;
    padding: 0;
  }
  #gnav .gnav_list li {
    width: 100%;
    position: relative;
    position: relative;
  }
  #gnav .gnav_list li:not(:last-child) {
    margin: 0 0 30px;
  }
  #gnav .gnav_list li:nth-child(2) a {
    height: 20px;
  }
  #gnav .gnav_list li:nth-child(2) a img {
    height: 20px;
  }
  #gnav .gnav_list li a {
    height: 16px;
  }
  #gnav .gnav_list li a img {
    height: 16px;
  }
  .list picture {
    width: 100%;
  }
  .list picture img {
    width: 100%;
  }
}

/* =====================================
	
	▼▼▼ max-width: 480px
	
===================================== */
