@charset "utf-8";

/** ***************************************************************************
 * 全体
 * ************************************************************************* */

body {
  min-width: 1020px;
  color: #fff;
  font: 14px/1.5 Montserrat, sans-serif;
  font-weight: 400;
  background-color: #000;
}

div.body {
  width: 1020px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

a {
  color: #555;
}

a[href] {
  transition: color 0.3s ease-in-out 0.0s;
  color: #bbb;
}

a[href]:hover {
  color: #fff;
}

@media screen and (max-width:736px) {

  body {
    min-width: 0;
  }

  div.body {
    width: auto;
    max-width: 100%;
  }

}

/** ***************************************************************************
 * ヘッダー
 * ************************************************************************* */

#header {
  width: 100%;
  padding: 10px 0;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
}

#header div.body {
  width: auto;
  max-width: 1600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header a {
  text-decoration: none;
  transition: color 0.3s ease-in-out 0.0s;
  color: #fff;
}

#header a:hover {
  color: #bbb;
}

@media screen and (max-width:736px) {

  #header {
    padding: unset;
    position: relative;
  }

  #header div.body {
    padding-left: 15px;
    padding-right: 15px;
    justify-content: center;
  }

}

/** ***************************************************************************
 * ロゴ
 */

#header div.logo {
  text-align: center;
}

#header div.logo a {
  text-decoration: none;
  display: inline-block;
}

@media screen and (max-width:736px) {

  #header div.logo {
    width: 180px;
  }

}

/** ***************************************************************************
 * ヘッダー
 */

#header div.contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width:736px) {

  #header div.contents {
    display: none;
  }

}

/**
 * 左ヘッダー
 */

#header div.contents-1 {
  order: -1;
}

/**
 * 右ヘッダー
 */

#header div.contents-2 {
}

/**
 * ハンバーガー
 */

#header div.hamburger {
  display: none;
}

#header div.hamburger#header div.hamburger {
  cursor: pointer;
  overflow: hidden;
  display: none;
}

#header div.hamburger i.icon {
  width: 20px;
  vertical-align: middle;
  display: inline-block;
}

#header div.hamburger i.icon span {
  width: 100%;
  height: 0;
  margin: 5px 0;
  display: block;
  border-bottom: 2px solid #fff;
  transition: all 0.3s ease-out 0.0s;
}

#header div.hamburger.active i.icon span:nth-of-type(1) {
  transform: rotate(45deg);
  transform-origin: top left;
}

#header div.hamburger.active i.icon span:nth-of-type(2) {
  margin-left: 100%;
}

#header div.hamburger.active i.icon span:nth-of-type(3) {
  transform: rotate(-45deg);
  transform-origin: bottom left;
}

@media screen and (max-width:736px) {

  #header div.hamburger {
    display: block;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    top: 18px;
    left: 15px;
  }

}

/** ***************************************************************************
 * ナビ
 */

#header nav.nav ul.list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header nav.nav ul.list li {
  margin: 0 10px;
  position: relative;
  z-index: 0;
}

#header nav.nav ul.list a {
  padding: 0.5em;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

#header nav.nav ul.sub {
  min-width: 100%;
  max-width: none;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  white-space: nowrap;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
}

#header nav.nav ul.sub li {
  margin: unset;
}

#header nav.nav ul.sub li ~ li {
  border-top: 1px dotted rgba(255, 255, 255, 0.6);
}

#header nav.nav ul.sub a {
  padding: 0.75em;
}

/** ***************************************************************************
 * 言語ナビ
 */

#header div.language ul.list {
  position: relative;
  z-index: 0;
}

#header div.language ul.list a {
  padding: 0.5em;
  cursor: pointer;
  text-align: center;
  display: block;
}

/**
 * JP
 */

#header div.language ul.list li:first-child a {
  display: flex;
  align-items: center;
  justify-content: center;
}

#header div.language ul.list li:first-child a::after {
  content: '';
  width: 0.75em;
  height: 0.5em;
  margin-left: 0.5em;
  background: url("../../_images/_common/icon-arrow-1-down.png") 0 0 / 100% 100% no-repeat;
  transition: transform 0.3s ease-in-out 0.0s;
}

#header div.language ul.list:hover li:first-child a::after {
  transform: scaleY(-1);
}

/**
 * EN
 */

#header div.language ul.list li ~ li {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  overflow: hidden;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  transition:
    max-height 0.3s ease-in-out 0.0s,
    visibility 0.3s ease-in-out 0.0s;
  max-height: 0;
  visibility: hidden;
}

#header div.language ul.list:hover li ~ li {
  max-height: 5em;
  visibility: visible;
}

/** ***************************************************************************
 * ドロワーメニュー
 * ************************************************************************* */

.drawermenu {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
  display: none;
}

@media screen and (max-width:736px) {

  .drawermenu {
    display: block;
  }

}

/** ***************************************************************************
 * リスト
 */

.drawermenu ul.list {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  transition:
    max-height 0.6s ease-in-out 0.0s,
    visibility 0.6s ease-in-out 0.0s,
    opacity 0.3s ease-in-out 0.3s;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
}

.drawermenu.active ul.list {
  transition:
    max-height 1.0s ease-in-out 0.0s,
    visibility 1.0s ease-in-out 0.0s,
    opacity 1.0s ease-in-out 0.0s;
  max-height: 200vh;
  visibility: visible;
  opacity: 1;
}

.drawermenu ul.list li {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
}

.drawermenu ul.list a {
  padding: 0.75em 70px 0.75em 1em;
  color: #fff;
  display: block;
  text-decoration: none;
}

.drawermenu ul.list li.current a {
  background-color: rgba(255, 255, 255, 0.15);
}

/** ***************************************************************************
 * 閉じるボタン
 */

.drawermenu div.button {
  padding: 15px;
  line-height: 1;
  font-size: 1.5em;
  position: absolute;
  z-index: 2;
  top: -5px;
  right: 0;
}

/** ***************************************************************************
 * ビジュアル
 * ************************************************************************* */

body.layout-lower
#visual {
  margin-top: -70px;
  padding-top: 70px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.layout-lower
#visual div.body {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

body.layout-lower #visual div.body > img {
  visibility: hidden;
}

body.layout-lower #visual .content {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

/** ***************************************************************************
 * パンくず
 * ************************************************************************* */

#breadcrumb {
  padding: 2em 0;
}

#breadcrumb ol,
#breadcrumb ol li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#breadcrumb ol {
  margin-bottom: -10px;
  letter-spacing: -0.4em;
}

#breadcrumb ol li {
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: normal;
  vertical-align: middle;
  display: inline-block;
}

#breadcrumb ol li:after {
  content: '>';
  margin: 0 10px 0 5px;
}

#breadcrumb ol li:last-child:after {
  content: none;
}

@media screen and (max-width:736px) {

  #breadcrumb {
    padding: 1em 0;
  }

}

/** ***************************************************************************
 * メイン
 * ************************************************************************* */

#main {
  line-height: 1.5;
  font-size: 15px;
  min-height: 800px;
  background-color: #fff;
}

@media screen and (max-width:736px) {

  #main {
    font-size: inherit;
  }

}

/**
 * セクショニング
 */

#main .section ~ .section {
  margin-top: 50px;
}

#main .column ~ .column {
  margin-top: 50px;
}

@media screen and (max-width:736px) {

  #main .section ~ .section {
    margin-top: 40px;
  }

  #main .column ~ .column {
    margin-top: 40px;
  }

}

/** ***************************************************************************
 * フッター
 * ************************************************************************* */

#footer {
  padding-top: 50px;
}

#footer div.body {
  width: auto;
  max-width: 1120px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width:736px) {

  #footer {
    padding-top: 20px;
  }

  #footer div.body {
    display: block;
  }

}

/** ***************************************************************************
 * フッター
 */

#footer div.contents {
  flex-grow: 2;
}

/**
 * ロゴ / アドレス
 */

#footer div.contents .address .logo {
  text-align: center;
}

#footer div.contents .address .logo a {
  text-decoration: none;
  display: inline-block;
}

#footer div.contents .address div.text {
  margin-top: 0.25em;
  text-align: center;
}

@media screen and (max-width:736px) {

  #footer div.contents .address .logo {
    width: 74.5%;
    margin-left: auto;
    margin-right: auto;
  }

  #footer div.contents .address div.text {
    margin-top: 0.25em;
  }

}

/**
 * SNS
 */

#footer div.contents div.sns ul.list {
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer div.contents div.sns ul.list li {
  margin: 5px;
}

#footer div.contents div.sns ul.list a {
  text-decoration: none;
  display: block;
}

@media screen and (max-width:736px) {

  #footer div.contents div.sns {
    display: none;
  }

}

/** ***************************************************************************
 * ナビ
 */

#footer nav.nav {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-grow: 1;
}

#footer nav.nav ul.list {
  margin: 0 5%;
}

#footer nav.nav ul.list a {
  padding: 0.5em;
  text-decoration: none;
  display: inline-block;
}

#footer nav.nav ul.sub {
  margin-top: 0.5em;
  margin-left: 0.25em;
}

#footer nav.nav ul.sub li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#footer nav.nav ul.sub li::before {
  content: '-';
  margin-right: 0.125em;
}

#footer nav.nav ul.sub li:has(:not([href]))::before {
  color: #555;
}

@media screen and (max-width:736px) {

  #footer nav.nav {
    display: none;
  }

}

/**
 * 左ナビ
 */

#footer nav.nav-1 {
  width: calc(100% / 7 * 2);
  order: -1;
}

/**
 * 右ナビ
 */

#footer nav.nav-2 {
  width: calc(100% / 7 * 2);
}

/** ***************************************************************************
 * サイトマップ
 */

#footer nav.sitemap {
  display: none;
}

@media screen and (max-width:736px) {

  #footer nav.sitemap {
    max-width: none;
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 20px;
    display: block;
  }

  #footer nav.sitemap div.body {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  #footer nav.sitemap div.item {
    display: block;
  }

  /**
   * タイトル
   */

  #footer nav.sitemap .nav-title {
    line-height: 1;
    text-align: center;
    background-color: #191919;
    position: relative;
    display: block;
  }

  #footer nav.sitemap .nav-title a {
    padding: 1em;
    color: #fff;
    text-decoration: none;
    display: block;
    background: url(../../_images/_common/icon-arrow-1-down.png) 97.283% center no-repeat;
    background-size: 12px auto;
  }

  #footer nav.sitemap .nav-title a.slide-button.active {
    background: url(../../_images/_common/icon-arrow-1-up.png) 97.283% center no-repeat;
    background-size: 12px auto;
  }

  /**
   * リスト
   */

  #footer nav.sitemap ul,
  #footer nav.sitemap ul li {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #footer nav.sitemap ul.list {
    letter-spacing: -0.4em;
    background-color: rgba( 0, 0, 0, 0.8 );
  }

  #footer nav.sitemap ul.list li {
    letter-spacing: normal;
  }

  #footer nav.sitemap ul.list a {
    padding: 0.75em 70px 0.75em 1em;
    color: #fff;
    text-decoration: none;
    display: block;
  }

  #footer nav.sitemap ul li a[href]:hover {
    color: #fff;
  }

  /* 現在表示中のページ */

  #footer nav.sitemap ul.list li.current > a {
    background-color: rgba( 255, 255, 255, 0.15 );
  }

  /* スライドボタン */

  #footer nav.sitemap ul.list li a.slide-button {
    background-image: url(../../_images/_common/icon-arrow-1-down.png);
    background-position: 95.924% center;
    background-repeat: no-repeat;
    background-size: 11px auto;
  }

  #footer nav.sitemap ul.list li a.active {
    background-image: url(../../_images/_common/icon-arrow-1-up.png);
  }

  /**
   * 1階層
   */

  #footer nav.sitemap ul.list > li {
    border-bottom: 1px solid rgba( 232, 232, 232, 0.35 );
  }

  /**
   * 2階層～
   */

  #footer nav.sitemap ul.list ul {
    margin-left: 0;
    padding-left: 2em;
  }

  #footer nav.sitemap ul.list ul li {
    list-style: none;
    border-top: 1px dotted rgba( 232, 232, 232, 0.35 );
  }

}

/** ***************************************************************************
 * 言語ナビ
 */

#footer nav.language {
  width: 100%;
  margin: 10px 0;
}

#footer nav.language ul.list {
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer nav.language ul.list li {
  margin: 10px;
}

#footer nav.language ul.list a {
  padding: 0.5em;
  text-decoration: none;
  display: inline-block;
}

@media screen and (max-width:736px) {

  #footer nav.language {
    display: none;
  }

}

/** ***************************************************************************
 * ページトップ
 */

#footer div.pagetop {
  background-color: #191919;
}

#footer div.pagetop .content {
  width: 80px;
  margin: 0 auto;
}

#footer div.pagetop .content img {
  margin-top: -30px;
}

/** ***************************************************************************
 * コピーライト
 */

#footer div.copyright {
  width: 100%;
  padding: 30px 0;
  line-height: 1.2;
  font-size: 12px;
  text-align: center;
  border-top: 1px solid #555;
}

@media screen and (max-width:736px) {

  #footer div.copyright {
    padding: 15px 0;
    border: unset;
  }

}
