@charset "utf-8";

/** ***************************************************************************
 * 全体
 * ************************************************************************* */

body {
  color: #fff;
  font: 14px/1.5 'Noto Sans SC', sans-serif;
  font-weight: 400;
  background-color: #000;
  overflow-x: hidden;
  position: relative;
}

div.body {
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

a {
  color: #555;
}

a[href] {
  color: #bbb;
  transition: color 0.3s ease-in-out 0.0s;
}

a[href]:hover {
  color: #fff;
}

/** ***************************************************************************
 * ヘッダー
 * ************************************************************************* */

#header {
  width: 100%;
  position: fixed;
  z-index: 100;
  left: 0;
  transition:
    top 0.6s ease-in-out 0.0s,
    background-color 0.3s ease-in-out 0.4s;
  top: 0;
  background-color: rgba(0, 0, 0, 0.0);
}

body.scroll-active
#header {
  top: -50vh;
}

body.scroll-up
#header {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  top: 0;
}

body.drawermenu-header-active
#header {
  transition: background-color 0.3s ease-in-out 0.0s;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  top: 0;
}

#header div.body {
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out 0.0s;
}

#header a:hover {
  color: #bbb;
}

@media screen and (min-width:768px) {

  #header {
    padding: 10px 0;
  }

  #header div.body {
    max-width: 1600px;
    justify-content: space-between;
  }

}

/** ***************************************************************************
 * ロゴ
 */

#header div.logo {
  width: 180px;
}

#header div.logo a {
  display: inline-block;
}

@media screen and (min-width:768px) {

  #header div.logo {
    width: auto;
  }

}

/** ***************************************************************************
 * ヘッダー
 */

#header div.contents {
  display: none;
}

@media screen and (min-width:768px) {

  #header div.contents {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

}

/**
 * 左ヘッダー
 */

#header div.contents-1 {
  order: -1;
}

@media screen and (min-width:768px) {

  #header div.contents-1 {
    min-width: calc(100% / 8 * 3);
    justify-content: flex-start;
  }

}

/**
 * 右ヘッダー
 */

@media screen and (min-width:768px) {

  #header div.contents-2 {
    min-width: calc(100% / 8 * 3);
    justify-content: flex-end;
  }

}

/**
 * ハンバーガー
 */

#header div.hamburger {
  overflow: hidden;
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 15px;
}

#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;
}

body.drawermenu-header-active
#header div.hamburger i.icon span:nth-of-type(1) {
  transform-origin: top left;
  transform: rotate(45deg);
}

body.drawermenu-header-active
#header div.hamburger i.icon span:nth-of-type(2) {
  margin-left: 100%;
}

body.drawermenu-header-active
#header div.hamburger i.icon span:nth-of-type(3) {
  transform-origin: bottom left;
  transform: rotate(-45deg);
}

@media screen and (min-width:768px) {

  #header div.hamburger {
    display: none;
  }

}

/** ***************************************************************************
 * ナビ
 */

#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;
}

#header nav.nav ul.list a {
  padding: 0.5em;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

/**
 * 第1階層
 */

#header nav.nav ul.list > li:has(ul) > a {
  display: flex;
  align-items: center;
  justify-content: center;
}

#header nav.nav ul.list > li:has(ul) > a::after {
  content: '';
  width: 0.75em;
  height: 0.5em;
  margin-left: 0.5em;
  background: url("../../_image/_common/icon-arrow-1-down.png") 0 0 / 100% 100% no-repeat;
  transition: transform 0.3s ease-in-out 0.0s;
}

#header nav.nav ul.list > li:has(ul):hover > a::after {
  transform: scaleY(-1);
}

/**
 * 第2階層
 */

#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;
  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 nav.nav li:hover ul.sub {
  max-height: 10em;
  visibility: visible;
}

#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;
  display: flex;
  align-items: center;
  justify-content: center;
}

/** ***************************************************************************
 * 言語ナビ
 */

#header div.language ul.list {
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header div.language ul.list li {
  position: relative;
}

#header div.language ul.list a {
  padding: 0.5em;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/**
 * 第1階層
 */

#header div.language ul.list > li > a::after {
  content: '';
  width: 0.75em;
  height: 0.5em;
  margin-left: 0.5em;
  background: url("../../_image/_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 > a::after {
  transform: scaleY(-1);
}

/**
 * 第2階層
 */

#header div.language 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;
  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 li:hover ul.sub {
  max-height: 10em;
  visibility: visible;
}

#header div.language ul.sub li {
  margin: unset;
}

#header div.language ul.sub li ~ li {
  border-top: 1px dotted rgba(255, 255, 255, 0.6);
}

#header div.language ul.sub a {
  padding: 0.75em;
}

/** ***************************************************************************
 * ドロワーメニュー
 * ************************************************************************* */

.drawermenu {
  overflow: hidden;
  position: relative;
}

@media screen and (min-width:768px) {

  .drawermenu {
    display: none;
  }

}

/** ***************************************************************************
 * リスト
 */

.drawermenu ul.list {
  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;
}

body.drawermenu-header-active
.drawermenu 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 a {
  color: #fff;
  display: block;
  text-decoration: none;
}

/**
 * 第1階層
 */

.drawermenu ul.list > li {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
}

.drawermenu ul.list > li > a {
  padding: 0.75em 70px 0.75em 1em;
}

.drawermenu ul.list > li.current > a {
  background-color: rgba(255, 255, 255, 0.15);
}

.drawermenu ul.list > li.layer-list > a {
  background-image: url(../../_image/_common/icon-arrow-1-down.png);
  background-position: center right 20px;
  background-repeat: no-repeat;
}

.drawermenu ul.list > li.submenu-active > a {
  background-image: url(../../_image/_common/icon-arrow-1-up.png);
}

/**
 * 第2階層
 */

.drawermenu ul.sub {
  overflow: hidden;
  transition:
    max-height 0.6s ease 0.0s,
    padding 0.6s ease 0.0s,
    visibility 0.0s ease 0.6s,
    opacity 0.0s ease 0.6s;
  max-height: 0;
  padding: 0;
  visibility: hidden;
  opacity: 0;
}

.drawermenu li.submenu-active ul.sub {
  transition:
    max-height 0.8s ease-in 0.3s,
    padding 0.8s ease-in 0.0s,
    visibility 0.4s ease-in 0.3s,
    opacity 0.4s ease-in 0.3s;
  max-height: 100vh;
  padding: 0.75em 0;
  visibility: visible;
  opacity: 1;
}

.drawermenu ul.sub li a {
  padding: 0.5em 1em 0.5em 2.5em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.drawermenu ul.sub li a::before {
  content: '';
  width: 0.625em;
  height: 0.625em;
  margin-right: 0.5em;
  border-radius: 2px;
  background-color: #fff;
}

/** ***************************************************************************
 * 閉じるボタン
 */

.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 {
  height: 300px;
  padding-top: 60px;
  padding-bottom: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media screen and (min-width:768px) {

  body.layout-lower
  #visual {
    height: 500px;
    padding-top: 90px;
    padding-bottom: 80px;
  }

}

/**
 * タイトル
 */

body.layout-lower
#visual .title {
  letter-spacing: 1px;
  line-height: 1;
  font-size: 2.125em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body.layout-lower
#visual .title::after {
  content: '';
  margin-top: 15px;
  line-height: 1;
  font-family: Montserrat, sans-serif;
  font-size: 0.5em;
  font-weight: 300;
}

@media screen and (min-width:768px) {

  body.layout-lower
  #visual .title {
    font-size: 3.5em;
  }

  body.layout-lower
  #visual .title::after {
    margin-top: 30px;
    font-size: 0.375em;
  }

}

/** ***************************************************************************
 * メイン
 * ************************************************************************* */

#main {
  padding-bottom: 60px;
  color: #412c17;
  line-height: 1.5;
  background-color: #fffdfb;
}

#main a {
  color: inherit;
}

#main a[href] {
  transition: color 0.3s ease-in-out 0.0s;
}

#main a[href]:hover {
  color: #bbb;
}

@media screen and (min-width:768px) {

  #main {
    padding-bottom: 120px;
    font-size: 15px;
  }

}

/**
 * セクショニング
 */

#main .section ~ .section {
  margin-top: 40px;
}

#main .column ~ .column {
  margin-top: 40px;
}

@media screen and (min-width:768px) {

  #main .section ~ .section {
    margin-top: 50px;
  }

  #main .column ~ .column {
    margin-top: 50px;
  }

}

/** ***************************************************************************
 * フッター
 * ************************************************************************* */

#footer {
  padding-top: 20px;
}

@media screen and (min-width:768px) {

  #footer {
    padding-top: 40px;
  }

  #footer div.body {
    max-width: 1360px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }

}

/** ***************************************************************************
 * フッター
 */

@media screen and (min-width:768px) {

  #footer div.contents {
    width: 100%;
  }

}

@media screen and (min-width:1001px) {

  #footer div.contents {
    width: auto;
    flex-grow: 2;
  }

}

/**
 * ロゴ / アドレス
 */

#footer div.contents .address .logo {
  width: 74.5%;
  margin-left: auto;
  margin-right: auto;
  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;
  font-size: 0.875em;
  text-align: center;
}

@media screen and (min-width:1001px) {

  #footer div.contents .address div.text {
    font-size: 1em;
  }

}

/**
 * SNS
 */

#footer div.contents div.sns {
  display: none;
}

@media screen and (min-width:768px) {

  #footer div.contents div.sns {
    display: block;
  }

  #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;
  }

}

/** ***************************************************************************
 * ナビ
 */

#footer nav.nav {
  display: none;
}

@media screen and (min-width:768px) {

  #footer nav.nav {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    flex-grow: 1;
  }

  #footer nav.nav ul.list {
    margin: 0 5%;
  }

  #footer nav.nav ul.list a {
    padding: 0.5em;
    color: #555;
    text-decoration: none;
    display: inline-block;
  }

  #footer nav.nav ul.list a[href] {
    color: #bbb;
  }

  #footer nav.nav ul.list a[href]:hover {
    color: inherit;
  }

  #footer nav.nav ul.sub {
    margin-left: 0.75em;
  }

  #footer nav.nav ul.sub li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  #footer nav.nav ul.sub li::before {
    content: '-';
  }

  #footer nav.nav ul.sub li:has(:not([href]))::before {
    color: #555;
  }

}

@media screen and (min-width:1001px) {

  #footer nav.nav {
    margin-top: 30px;
    justify-content: center;
  }

}

/**
 * 左ナビ
 */

@media screen and (min-width:1001px) {

  #footer nav.nav-1 {
    width: calc(100% / 7 * 2);
    justify-content: space-around;
    order: -1;
  }

}

/**
 * 右ナビ
 */

@media screen and (min-width:1001px) {

  #footer nav.nav-2 {
    width: calc(100% / 7 * 2);
    justify-content: center;
  }

}

/** ***************************************************************************
 * サイトマップ
 */

/**
 * SP表示
 */

@media screen and (max-width:767px) {

  #sitemap {
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 20px;
  }

  #sitemap a {
    color: #fff;
    text-decoration: none;
    display: block;
  }

  #sitemap div.nav {
    overflow: hidden;
    transition:
      max-height 0.3s ease-in-out 0.0s,
      visibility 0.3s ease-in-out 0.0s;
    max-height: 0;
    visibility: hidden;
  }

  #sitemap div.nav.active {
    max-height: 500vh;
    visibility: visible;
  }

  #sitemap div.item {
    display: block;
  }

  /**
   * タイトル
   */

  #sitemap .title {
    line-height: 1;
    text-align: center;
    background-color: #191919;
    position: relative;
    display: block;
  }

  #sitemap .title a {
    padding: 1em;
    color: #fff;
    text-decoration: none;
    display: block;
    background: url(../../_image/_common/icon-arrow-1-down.png) 95% center no-repeat;
    background-size: 12px auto;
  }

  #sitemap .title a.slide-button.active {
    background: url(../../_image/_common/icon-arrow-1-up.png) 95% center no-repeat;
    background-size: 12px auto;
  }

  /**
   * リスト
   */

  #sitemap ul.list a {
    padding: 0.75em 70px 0.75em 1em;
  }

  /* スライドボタン */

  #sitemap ul.list li:has(ul) > a {
    background-image: url(../../_image/_common/icon-arrow-1-down.png);
    background-position: 95% center;
    background-size: 11px auto;
    background-repeat: no-repeat;
  }

  #sitemap ul.list li.active > a {
    background-image: url(../../_image/_common/icon-arrow-1-up.png);
  }

  /**
   * 1階層
   */

  #sitemap ul.list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  #sitemap ul.list > li.current > a {
    background-color: rgba(255, 255, 255, 0.15);
  }

  /**
   * 2階層～
   */

  #sitemap ul.sub {
    padding-left: 2em;
    overflow: hidden;
    transition:
      max-height 0.6s ease-in-out 0.0s,
      padding-bottom 0.6s ease-in-out 0.0s,
      visibility 0.6s ease-in-out 0.0s;
    max-height: 0;
    padding-bottom: 0;
    visibility: hidden;
  }

  #sitemap li.current ul.sub {
    max-height: 20em;
    visibility: visible;
  }

  #sitemap li.active ul.sub {
    max-height: 20em;
    visibility: visible;
  }

  #sitemap ul.sub li {
    border-top: 1px dotted rgba(255, 255, 255, 0.25);
  }

  #sitemap ul.sub li.current a {
    background-image: url("../../_image/_common/icon-arrow-1-right.png");
    background-position: center left;
    background-size: auto 11px;
    background-repeat: no-repeat;
  }

}

/**
 * PC表示
 */

@media screen and (min-width:768px) {

  #sitemap {
    display: none;
  }

}

/** ***************************************************************************
 * 言語ナビ
 */

#footer nav.language {
  display: none;
}

@media screen and (min-width:768px) {

  #footer nav.language {
    width: 100%;
    margin: 10px 0;
    display: block;
  }

  #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;
    color: #555;
    text-decoration: none;
    display: inline-block;
  }

  #footer nav.language ul.list a[href] {
    color: #bbb;
  }

  #footer nav.language ul.list a[href]:hover {
    color: inherit;
  }

}

/** ***************************************************************************
 * コピーライト
 */

#footer div.copyright {
  padding: 15px 0;
  color: #bbb;
  line-height: 1.2;
  font-size: 12px;
  text-align: center;
}

@media screen and (min-width:768px) {

  #footer div.copyright {
    width: 100%;
    padding: 30px 0;
    border-top: 1px solid #555;
  }

}
