@charset "UTF-8";
/*$color-sub01: mix($color-main01, $color-main02, 3%);
$color-sub02: mix($color-main02, #eee, 35%);*/
/*
@mixin left-top-shadow {
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

@mixin top-shadow {
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

@mixin bottom-shadow {
	box-shadow: 0 -1px 3px rgba(0,0,0,0.2);
}

@mixin hoge($color: #fff, $fSize: 16px) {
	color: $color;
	font-size: $fSize;
}
	//.text {
		//@include hoge(black, 20px);
	//}

@mixin sp-width {
	width: $sp-width;
	margin: auto;
}

@mixin pc-width {
	width: $pc-width;
	margin: auto;
}
*/
/*--------------------------------------------
		layout
---------------------------------------------*/
body {
  font-family: "YuGothic", "Yu Gothic", "游ゴシック", "游ゴシック体", "San Francisco", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  font-size: 13px;
  font-size: 1.3rem;
  /* font-size 1.0rem = 10px */
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #333;
  overflow-x: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

body.window-fix {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 330px) {
  body {
    font-size: 1.4rem;
  }
}

small {
  font-size: 10px;
  font-size: 1rem;
}

/*-------------- .main-menu ----------------*/
.main-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 10em;
  min-width: 100px;
  z-index: 100000;
}

.main-menu__btn {
  display: block;
  width: 48px;
  height: 42px;
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px 0;
  cursor: pointer;
  z-index: 200000;
  /* ナビゲーションアイコン */
}

.main-menu__btn span {
  display: block;
  height: 4px;
  width: 28px;
  background: #343434;
  border-radius: 1px;
  margin: auto;
  -webkit-transition: 0.28s ease-in-out;
  transition: 0.28s ease-in-out;
}

.main-menu__btn span:nth-of-type(2),
.main-menu__btn span:nth-of-type(3) {
  margin-top: 5px;
}

.main-menu__btn--active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
  transform: translateY(9px) translateX(0) rotate(45deg);
}

.main-menu__btn--active span:nth-of-type(2) {
  opacity: 0;
  width: 0;
}

.main-menu__btn--active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
  transform: translateY(-9px) translateX(0) rotate(-45deg);
}

.main-menu__content {
  position: fixed;
  opacity: 0;
  height: 100vh;
  width: 100%;
  background: #343434;
  padding: 46px 2vw 0;
}

.main-menu__item {
  font-size: 1.3rem;
  border-bottom: 1px solid #444;
}

.main-menu__item a {
  display: block;
  color: #fff;
  padding: 1em;
}

.main-menu__item__english {
  display: inline-block;
  font-family: canto, serif;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 1.4rem;
  color: #bbb;
  margin-right: 1em;
}

.main-menu__item--current {
  display: none;
}

.main-menu__mobilenone {
  display: none;
}

#menu-wrap {
  display: none;
  background: #000;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: 90000;
}

.sp-header {
  width: 100%;
  height: 42px;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.06);
  text-align: center;
  z-index: 150000;
}

.sp-header__logo {
  display: inline-block;
  padding: 7px;
  margin-top: 0;
}

.sp-header__logo img {
  width: auto;
  height: 28px;
}

/*-------------- main ----------------*/
/*-------------- footer ----------------*/
#footer {
  background: #404040;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  padding: 4em 6vw;
  margin-top: 80px;
  position: relative;
}

#footer a {
  color: #fff;
}

#footer a:hover {
  color: #ebd9b2;
}

#footer-logo {
  display: inline-block;
  height: auto;
  margin-bottom: 3.6em;
}

.footer-address {
  display: block;
  vertical-align: top;
  margin-bottom: 4em;
}

.footer-address a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-address a:hover {
  border-bottom-color: #ebd9b2;
}

.footer-address__ttl {
  font-weight: bold;
}

#footer-copy {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #343434;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  padding: 1.5em;
}
