@charset "UTF-8";
audio:not([controls]) {
  display: none; }

button {
  overflow: visible;
  -webkit-appearance: button; }

details {
  display: block; }

html {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%; }

input {
  -webkit-border-radius: 0; }
  input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button; }
  input[type="number"] {
    width: auto; }
  input[type="search"] {
    -webkit-appearance: textfield; }
    input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
      -webkit-appearance: none; }

main {
  display: block; }

pre {
  overflow: auto; }

progress {
  display: inline-block; }

small {
  font-size: 75%; }

summary {
  display: block; }

svg:not(:root) {
  overflow: hidden; }

template {
  display: none; }

textarea {
  overflow: auto; }

[hidden] {
  display: none; }

*,
::before,
::after {
  box-sizing: inherit; }

* {
  font-size: inherit;
  line-height: inherit; }
  *:before, *:after {
    box-sizing: border-box; }

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit; }

*,
::before,
::after {
  border-style: solid;
  border-width: 0; }

* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0; }

:root {
  background-color: #FFFFFF;
  box-sizing: border-box;
  color: #000000;
  cursor: default;
  font: 100%/1.5 sans-serif;
  text-rendering: optimizeLegibility; }

a {
  text-decoration: none; }

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

button,
input,
select,
textarea {
  background-color: transparent; }

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit; }

button,
[type="button"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="reset"],
[type="search"],
[type="submit"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
select,
textarea {
  min-height: 1.5em; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; }

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

select {
  -moz-appearance: none;
  -webkit-appearance: none; }
  select::-ms-expand {
    display: none; }
  select::-ms-value {
    color: currentColor; }

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

textarea {
  resize: vertical; }

[aria-busy="true"] {
  cursor: progress; }

[aria-controls] {
  cursor: pointer; }

[aria-disabled] {
  cursor: default; }

[hidden][aria-hidden="false"] {
  clip: rect(0 0 0 0);
  display: inherit;
  position: absolute; }
  [hidden][aria-hidden="false"]:focus {
    clip: auto; }

body {
  -webkit-font-smoothing: antialiased; }

ul li {
  list-style-type: none; }

figure {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0; }

button {
  cursor: pointer; }

.full-layer, #gnavi {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto; }

/**
 * ホバーエフェクトの mixin<br>
 * 効果：中央からラインが伸びる（下）<br>
 * 参考：http://www.nxworld.net/tips/15-text-link-hover-effect-and-design.html
 *
 * @param {String} color ラインのカラー　デフォルトは #888
 * @param {String} border_height ラインの高さ　デフォルトは 1px
 * @param {String} transition トランジション　デフォルトは 0.3s
 */
/**
 * ホバーエフェクトの mixin で「中央からラインが伸びる（下）」のホバーじと同じ効果を上書きする<br>
 * 効果：中央からラインが伸びる（下）：ホバー<br>
 */
/**
 * ボックス型のボタン
 * ボタンのテキストにはクラスを設定したタグに data-button-text プロパティを設定して before と after にボタン名として入れられる
 * テキストは before に設定される。
 * ホバー時にはテキストがせり上がるようにしながら after が表示される。
 */
/**
 * ボタンクラスの基本を作る mixin<br>
 *
 * @param {String} element ボタンにするエレメント　デフォルトは .btn
 * @param {Boolean} responsive レスポンシブにする場合に true　デフォルトは false
 */
/**
 * スライドスイッチのクラスを構築 mixin<br>
 * 参考：https://proto.io/freebies/onoff/
 *
 * @param {String} cl クラス名
 * @param {String} h 高さ
 * @param {String} w 幅
 * @param {String} b ボーダーの幅
 * @param {String} offBgClr OFF の時のボタン背景色
 * @param {String} onBgClr ON の時のボタン背景色
 * @param {String} offBdClr OFF の時のボーダー色
 * @param {String} onBdClr ON の時のボーダー色
 * @param {String} swClr スライドするボタンの色
*/
/**
 * スライドスイッチのクラスを構築 mixin<br>
 * 参考：https://proto.io/freebies/onoff/
 * こちらは ON, OFF のテキストがスイッチの右側に表示される
 *
 * @param {String} cl クラス名
 * @param {String} h 高さ
 * @param {String} w 幅
 * @param {String} b ボーダーの幅
 * @param {String} offBgClr OFF の時のボタン背景色
 * @param {String} onBgClr ON の時のボタン背景色
 * @param {String} offBdClr OFF の時のボーダー色
 * @param {String} onBdClr ON の時のボーダー色
 * @param {String} swClr スライドするボタンの色
*/
/* IEハック用mixin */
/* IEハック用mixin 使用例 */
/**
 * 指定されたプロパティに決められた基準のスペースを入れる mixin。
 *
 * @param {String} property name
 * @param {Number} 係数
 */
/**
 * フォントサイズ rem 設定用 mixin。
 *
 * @param {String} 配列での設定か、Extra small の指定
 * @param {String} Small の指定
 * @param {String} Midium の指定
 * @param {String} Large の指定
*/
/**
 * コンテンツのプロパティ設定用 mixin。
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {String} 配列での設定か、Large の指定
 * @param {String} Midium の指定
 * @param {String} Small の指定
 * @param {String} Extra small の指定
*/
/**
 * コンテンツスペース設定用 mixin。contents-space-XX にしたがって指定する。各サイズ設定に notset を入れるとそのサイズは設定されない。
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {String} position top, bottom などの場所の指定。空の場合は全体の指定　デフォルトは空。例外的に vertical か side で左右、horizonal で上下の指定ができる。
 * @param {String} Large の指定
 * @param {String} Midium の指定
 * @param {String} Small の指定
 * @param {String} Extra small の指定
*/
/**
 * wrapper 用のサイドスペース設定 mixin。contents-space-XX にしたがって指定する
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {String} position top, bottom などの場所の指定。空の場合は全体の指定　デフォルトは空。例外的に vertical か side で左右、horizonal で上下の指定ができる。
 * @param {String} Large の指定
 * @param {String} Midium の指定
 * @param {String} Small の指定
 * @param {String} Extra small の指定
*/
/**
 * コンテンツの指定したプロパティを設定されている contents-space-XX にしたがって指定する
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {Array} position top, bottom などの場所の指定。空の場合は全体の指定　デフォルトは空
*/
/**
 * コンテンツの指定したプロパティを設定されている contents-subspace-XX にしたがって指定する
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {Array} position top, bottom などの場所の指定。空の場合は全体の指定　デフォルトは空
*/
/**
 * コンテンツの指定したプロパティを設定されている contents-space-XX にしたがって指定する
 *
 * @param {Map} サイズを指定　デフォルトは空
 */
html {
  -webkit-overflow-scrolling: touch; }

body a:focus, body button:focus {
  outline: none; }

a:focus, button:focus {
  outline: none; }

small {
  font-size: 1em; }

span.ib-text span {
  display: inline-block; }

img {
  max-width: 100%; }

address {
  font-style: normal; }

.wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1214px;
  min-width: 320px; }

.img-circle {
  border-radius: 50%;
  overflow: hidden; }

.img-cover, .img-contain {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center; }
  .img-cover.img-center-top, .img-contain.img-center-top {
    background-position: center top; }
  .img-cover.img-center-bottom, .img-contain.img-center-bottom {
    background-position: center bottom; }

.img-cover {
  background-size: cover; }

.img-contain {
  background-size: contain; }

.txt {
  display: inline-block; }
  .txt span {
    display: inline-block; }

.ib-text span {
  display: inline-block; }

.hidden {
  display: none !important; }

.eng {
  font-family: "Roboto", sans-serif; }

.youtube, .googlemap, .if-resp {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden; }
  .youtube iframe, .googlemap iframe, .if-resp iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

@media (max-width: 567px) {
  .hidden-sp {
    display: none !important; } }

@media (min-width: 568px) and (max-width: 723px) {
  .hidden-tb {
    display: none !important; } }

@media (max-width: 723px) {
  .hidden-mb {
    display: none !important; } }

@media (min-width: 568px) {
  .hidden-no-sp {
    display: none !important; } }

@media (min-width: 724px) and (max-width: 1213px) {
  .hidden-spc {
    display: none !important; } }

@media (min-width: 1214px) {
  .hidden-lpc {
    display: none !important; } }

@media (min-width: 724px) {
  .hidden-pc {
    display: none !important; } }

@font-face {
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal; }

:root {
  font-family: ten-mincho, sans-serif;
  background: #f2f2f2;
  font-size: 16px; }
  @media (max-width: 723px) {
    :root {
      font-size: 16px; } }

::-moz-selection {
  background: #aeb2b5;
  color: white; }

::selection {
  background: #aeb2b5;
  color: white; }

::-moz-selection {
  background: #aeb2b5;
  color: white; }

body {
  font-family: ten-mincho, sans-serif;
  background: #f2f2f2;
  color: #000000; }

button {
  min-height: 0; }

article {
  position: relative; }

a[href^="tel:"] {
  cursor: default; }

img[src*='.svg'] {
  width: 100%;
  height: auto; }

h1 {
  font-size: 3rem;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.1rem; }
  @media (max-width: 723px) {
    h1 {
      font-size: 1.5rem; } }

h4 {
  font-size: 1.375rem;
  font-weight: normal;
  letter-spacing: 0.001;
  line-height: 2.318rem; }
  @media (max-width: 723px) {
    h4 {
      font-size: 0.875rem; } }

#loader {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7); }
  #loader figure {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    height: 100vh; }
    #loader figure img {
      max-width: 19.4375rem; }

#fade {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99; }

.gnavi-control {
  position: absolute;
  height: 48px;
  right: 2.25rem;
  top: 3.75rem; }
  .gnavi-control .btn-gnavi-open {
    display: -webkit-box;
    display: flex;
    position: relative;
    padding: 0;
    height: 16px;
    border: 0;
    background: transparent; }
    .gnavi-control .btn-gnavi-open .text {
      display: inline-block;
      position: relative;
      margin-right: .8em;
      color: black;
      line-height: 1.3;
      font-size: 0.777em; }
    .gnavi-control .btn-gnavi-open .menu-icon {
      width: 100%; }
      .gnavi-control .btn-gnavi-open .menu-icon span {
        position: relative;
        display: block;
        margin-bottom: 7px;
        width: 29px;
        height: 2px;
        background-color: white;
        -webkit-transition: ease 0.5s;
        transition: ease 0.5s;
        margin-left: auto;
        margin-right: auto; }
      .gnavi-control .btn-gnavi-open .menu-icon p {
        font-size: 0.8125rem; }

#gnavi-mobile {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  z-index: 20;
  background: rgba(0, 0, 0, 0.75);
  display: block; }
  #gnavi-mobile .menu-control {
    position: relative; }
    #gnavi-mobile .menu-control .btn-close {
      display: block;
      position: absolute;
      right: 2.25rem;
      top: 3.75rem;
      padding: 0;
      width: 31px;
      height: 29px;
      border: 0;
      background: transparent;
      z-index: 23; }
      #gnavi-mobile .menu-control .btn-close .menu-icon {
        width: 100%; }
  #gnavi-mobile.open-menu {
    -webkit-transition: all 1s;
    transition: all 1s; }
  #gnavi-mobile.close-menu {
    -webkit-transition: all 1s;
    transition: all 1s; }

body.gnavi-close #gnavi-mobile {
  z-index: -1;
  display: none; }

/* モーダルウィンドウのスタイル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none; }

/* オーバーレイのスタイル */
.overLay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10; }

/* モーダルウィンドウの中身のスタイル */
.modal .inner {
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60%;
  min-width: 280px; }
  .modal .inner .control {
    position: relative;
    margin-top: -.5rem;
    margin-right: -.5rem;
    height: 1.5rem; }
    .modal .inner .control .modalClose {
      position: absolute;
      right: 0;
      width: 1.5rem;
      height: 1.5rem;
      display: block; }
      .modal .inner .control .modalClose:before {
        content: "";
        position: absolute;
        top: 8px;
        left: 2px;
        width: 1.25rem;
        height: 2px;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
        background: white; }
      .modal .inner .control .modalClose:after {
        content: "";
        position: absolute;
        width: 1.25rem;
        height: 2px;
        -webkit-transform: rotate(135deg);
                transform: rotate(135deg);
        background: white;
        bottom: 14px;
        right: 2px; }

.frame-wrapper__video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-bottom: 50px; }

.frame-wrapper__video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; }

.wrapper {
  max-width: 1214px;
  padding-left: 30px;
  padding-right: 30px; }
  @media (min-width: 1214px) {
    .wrapper {
      padding-left: 0;
      padding-right: 0; } }
  @media (max-width: 723px) {
    .wrapper {
      padding-left: 37.5px;
      padding-right: 37.5px; } }

.eng {
  font-family: ten-mincho, sans-serif; }

.icon {
  display: inline-block; }
  .icon svg {
    max-width: 100%;
    max-height: 100%; }

.icon-arrow-right {
  position: relative; }
  .icon-arrow-right:before {
    content: '';
    display: inline-block;
    position: relative;
    height: .45em;
    width: .45em;
    border-style: solid;
    border-color: #000000;
    border-width: 1px 1px 0 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    vertical-align: middle; }

.btn-bottom-line {
  display: block;
  position: relative;
  padding: .25em .2em;
  color: #000000;
  font-weight: 500; }
  .btn-bottom-line:after {
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #000000; }
  .btn-bottom-line .icon-arrow-right {
    margin-left: .48em;
    margin-right: .1em; }
    .btn-bottom-line .icon-arrow-right:before {
      position: relative;
      top: -0.15em;
      height: .4em;
      width: .4em; }
  .btn-bottom-line:hover:after {
    left: -0.678em;
    right: -0.678em; }

.anime-slideup {
  position: relative; }
  .anime-slideup.anime-ready {
    -webkit-transform: translateY(3em);
            transform: translateY(3em);
    opacity: 0; }
  .anime-slideup.anime-end {
    -webkit-transition: all ease 0.75s;
    transition: all ease 0.75s;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; }

.anime-slideleft {
  position: relative; }
  .anime-slideleft.anime-ready {
    -webkit-transform: translateX(-3em);
            transform: translateX(-3em);
    opacity: 0; }
  .anime-slideleft.anime-end {
    -webkit-transition: all ease 0.75s;
    transition: all ease 0.75s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1; }

.anime-slideright {
  position: relative; }
  .anime-slideright.anime-ready {
    -webkit-transform: translateX(3em);
            transform: translateX(3em);
    opacity: 0; }
  .anime-slideright.anime-end {
    -webkit-transition: all ease 0.75s;
    transition: all ease 0.75s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1; }

.anime-fadein {
  -webkit-transition-property: opacity;
  transition-property: opacity; }
  .anime-fadein.anime-ready {
    opacity: 0; }
  .anime-fadein.anime-end {
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    opacity: 1; }

#gnavi {
  display: block;
  position: fixed;
  bottom: auto;
  z-index: 22; }
  #gnavi .menu-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
    #gnavi .menu-inner a {
      color: white;
      text-align: center;
      display: block;
      padding: 0.625rem;
      margin-bottom: 1.25rem; }

audio:not([controls]) {
  display: none; }

button {
  overflow: visible;
  -webkit-appearance: button; }

details {
  display: block; }

html {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%; }

input {
  -webkit-border-radius: 0; }
  input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button; }
  input[type="number"] {
    width: auto; }
  input[type="search"] {
    -webkit-appearance: textfield; }
    input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
      -webkit-appearance: none; }

main {
  display: block; }

pre {
  overflow: auto; }

progress {
  display: inline-block; }

small {
  font-size: 75%; }

summary {
  display: block; }

svg:not(:root) {
  overflow: hidden; }

template {
  display: none; }

textarea {
  overflow: auto; }

[hidden] {
  display: none; }

*,
::before,
::after {
  box-sizing: inherit; }

* {
  font-size: inherit;
  line-height: inherit; }
  *:before, *:after {
    box-sizing: border-box; }

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit; }

*,
::before,
::after {
  border-style: solid;
  border-width: 0; }

* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0; }

:root {
  background-color: #FFFFFF;
  box-sizing: border-box;
  color: #000000;
  cursor: default;
  font: 100%/1.5 sans-serif;
  text-rendering: optimizeLegibility; }

a {
  text-decoration: none; }

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

button,
input,
select,
textarea {
  background-color: transparent; }

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit; }

button,
[type="button"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="reset"],
[type="search"],
[type="submit"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
select,
textarea {
  min-height: 1.5em; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; }

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

select {
  -moz-appearance: none;
  -webkit-appearance: none; }
  select::-ms-expand {
    display: none; }
  select::-ms-value {
    color: currentColor; }

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

textarea {
  resize: vertical; }

[aria-busy="true"] {
  cursor: progress; }

[aria-controls] {
  cursor: pointer; }

[aria-disabled] {
  cursor: default; }

[hidden][aria-hidden="false"] {
  clip: rect(0 0 0 0);
  display: inherit;
  position: absolute; }
  [hidden][aria-hidden="false"]:focus {
    clip: auto; }

body {
  -webkit-font-smoothing: antialiased; }

ul li {
  list-style-type: none; }

figure {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0; }

button {
  cursor: pointer; }

.full-layer, #gnavi {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto; }

/**
 * ホバーエフェクトの mixin<br>
 * 効果：中央からラインが伸びる（下）<br>
 * 参考：http://www.nxworld.net/tips/15-text-link-hover-effect-and-design.html
 *
 * @param {String} color ラインのカラー　デフォルトは #888
 * @param {String} border_height ラインの高さ　デフォルトは 1px
 * @param {String} transition トランジション　デフォルトは 0.3s
 */
/**
 * ホバーエフェクトの mixin で「中央からラインが伸びる（下）」のホバーじと同じ効果を上書きする<br>
 * 効果：中央からラインが伸びる（下）：ホバー<br>
 */
/**
 * ボックス型のボタン
 * ボタンのテキストにはクラスを設定したタグに data-button-text プロパティを設定して before と after にボタン名として入れられる
 * テキストは before に設定される。
 * ホバー時にはテキストがせり上がるようにしながら after が表示される。
 */
/**
 * ボタンクラスの基本を作る mixin<br>
 *
 * @param {String} element ボタンにするエレメント　デフォルトは .btn
 * @param {Boolean} responsive レスポンシブにする場合に true　デフォルトは false
 */
/**
 * スライドスイッチのクラスを構築 mixin<br>
 * 参考：https://proto.io/freebies/onoff/
 *
 * @param {String} cl クラス名
 * @param {String} h 高さ
 * @param {String} w 幅
 * @param {String} b ボーダーの幅
 * @param {String} offBgClr OFF の時のボタン背景色
 * @param {String} onBgClr ON の時のボタン背景色
 * @param {String} offBdClr OFF の時のボーダー色
 * @param {String} onBdClr ON の時のボーダー色
 * @param {String} swClr スライドするボタンの色
*/
/**
 * スライドスイッチのクラスを構築 mixin<br>
 * 参考：https://proto.io/freebies/onoff/
 * こちらは ON, OFF のテキストがスイッチの右側に表示される
 *
 * @param {String} cl クラス名
 * @param {String} h 高さ
 * @param {String} w 幅
 * @param {String} b ボーダーの幅
 * @param {String} offBgClr OFF の時のボタン背景色
 * @param {String} onBgClr ON の時のボタン背景色
 * @param {String} offBdClr OFF の時のボーダー色
 * @param {String} onBdClr ON の時のボーダー色
 * @param {String} swClr スライドするボタンの色
*/
/* IEハック用mixin */
/* IEハック用mixin 使用例 */
/**
 * 指定されたプロパティに決められた基準のスペースを入れる mixin。
 *
 * @param {String} property name
 * @param {Number} 係数
 */
/**
 * フォントサイズ rem 設定用 mixin。
 *
 * @param {String} 配列での設定か、Extra small の指定
 * @param {String} Small の指定
 * @param {String} Midium の指定
 * @param {String} Large の指定
*/
/**
 * コンテンツのプロパティ設定用 mixin。
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {String} 配列での設定か、Large の指定
 * @param {String} Midium の指定
 * @param {String} Small の指定
 * @param {String} Extra small の指定
*/
/**
 * コンテンツスペース設定用 mixin。contents-space-XX にしたがって指定する。各サイズ設定に notset を入れるとそのサイズは設定されない。
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {String} position top, bottom などの場所の指定。空の場合は全体の指定　デフォルトは空。例外的に vertical か side で左右、horizonal で上下の指定ができる。
 * @param {String} Large の指定
 * @param {String} Midium の指定
 * @param {String} Small の指定
 * @param {String} Extra small の指定
*/
/**
 * wrapper 用のサイドスペース設定 mixin。contents-space-XX にしたがって指定する
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {String} position top, bottom などの場所の指定。空の場合は全体の指定　デフォルトは空。例外的に vertical か side で左右、horizonal で上下の指定ができる。
 * @param {String} Large の指定
 * @param {String} Midium の指定
 * @param {String} Small の指定
 * @param {String} Extra small の指定
*/
/**
 * コンテンツの指定したプロパティを設定されている contents-space-XX にしたがって指定する
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {Array} position top, bottom などの場所の指定。空の場合は全体の指定　デフォルトは空
*/
/**
 * コンテンツの指定したプロパティを設定されている contents-subspace-XX にしたがって指定する
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {Array} position top, bottom などの場所の指定。空の場合は全体の指定　デフォルトは空
*/
/**
 * コンテンツの指定したプロパティを設定されている contents-space-XX にしたがって指定する
 *
 * @param {Map} サイズを指定　デフォルトは空
 */
html {
  -webkit-overflow-scrolling: touch; }

body a:focus, body button:focus {
  outline: none; }

a:focus, button:focus {
  outline: none; }

small {
  font-size: 1em; }

span.ib-text span {
  display: inline-block; }

img {
  max-width: 100%; }

address {
  font-style: normal; }

.wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1214px;
  min-width: 320px; }

.img-circle {
  border-radius: 50%;
  overflow: hidden; }

.img-cover, .img-contain {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center; }
  .img-cover.img-center-top, .img-contain.img-center-top {
    background-position: center top; }
  .img-cover.img-center-bottom, .img-contain.img-center-bottom {
    background-position: center bottom; }

.img-cover {
  background-size: cover; }

.img-contain {
  background-size: contain; }

.txt {
  display: inline-block; }
  .txt span {
    display: inline-block; }

.ib-text span {
  display: inline-block; }

.hidden {
  display: none !important; }

.eng {
  font-family: "Roboto", sans-serif; }

.youtube, .googlemap, .if-resp {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden; }
  .youtube iframe, .googlemap iframe, .if-resp iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

#about {
  padding-top: 9.5625rem; }
  @media (max-width: 723px) {
    #about {
      padding-top: 4.375rem;
      padding-bottom: 2.3125rem; } }
  #about h1 {
    margin-bottom: 6.1875rem; }
    @media (max-width: 723px) {
      #about h1 {
        margin-bottom: 3rem; } }
  #about h4 {
    width: 55.28%;
    margin-left: auto;
    margin-right: auto;
    line-height: 2.3181;
    margin-bottom: 7.375rem; }
    @media (max-width: 723px) {
      #about h4 {
        width: 100%;
        margin-bottom: 3.75rem;
        line-height: 1.8214; } }
  #about figure {
    width: 79.01%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 7.6875rem; }
    @media (max-width: 723px) {
      #about figure {
        margin-bottom: 4.375rem;
        width: 100%; } }
  #about .items {
    margin-top: 6.8125rem;
    margin-bottom: 7.6875rem; }
    #about .items .youtube-frame {
      position: relative;
      max-width: 960px;
      margin-left: auto;
      margin-right: auto; }
      @media (max-width: 723px) {
        #about .items .youtube-frame {
          margin-bottom: 3.375rem; } }
      #about .items .youtube-frame:before {
        content: "";
        display: block;
        padding-top: 56.25%; }
      #about .items .youtube-frame #modal-youtube-movie {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
    @media (max-width: 723px) {
      #about .items {
        margin-top: 3.375rem;
        margin-bottom: 4.375rem; } }

#products .products_area {
  background-color: #000000;
  max-width: inherit;
  padding-top: 9.5625rem;
  padding-bottom: 14.5rem; }
  @media (max-width: 723px) {
    #products .products_area {
      padding-top: 4.063rem;
      padding-bottom: 9.5313rem; } }
  #products .products_area .logo {
    width: 19.789rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12.9375rem; }
    @media (max-width: 723px) {
      #products .products_area .logo {
        width: 8.179rem;
        margin-bottom: 4.906rem; } }
  #products .products_area .products {
    overflow: hidden; }
    @media (max-width: 723px) {
      #products .products_area .products img {
        height: 8.9rem;
        width: auto;
        max-width: inherit; } }
  #products .products_area h1 {
    color: white;
    margin-top: 12.9375rem;
    margin-bottom: 6.1875rem; }
    @media (max-width: 723px) {
      #products .products_area h1 {
        margin-top: 4.906rem;
        margin-bottom: 3.0625rem; } }
  #products .products_area h4 {
    width: 54.28%;
    margin-left: auto;
    margin-right: auto;
    line-height: 2.3181;
    color: white; }
    @media (max-width: 723px) {
      #products .products_area h4 {
        width: 100%;
        line-height: 2.1786; } }
  #products .products_area .btn {
    width: 17.875rem;
    height: 3.25rem;
    border: 1px solid white;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7.3333rem;
    position: relative; }
    @media (max-width: 723px) {
      #products .products_area .btn {
        margin-top: 3.75rem;
        width: 13.7188rem;
        height: 2.4688rem; } }
    #products .products_area .btn span {
      font-size: 1.125rem;
      letter-spacing: 0.2em;
      color: white;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 100%;
      text-align: center; }
      @media (max-width: 723px) {
        #products .products_area .btn span {
          font-size: 0.875rem; } }
    #products .products_area .btn:hover {
      background: white; }
      #products .products_area .btn:hover span {
        color: #000000; }

#service {
  padding-top: 8.624rem;
  padding-bottom: 8.5rem; }
  @media (max-width: 723px) {
    #service {
      padding-top: 4.375rem;
      padding-bottom: 4.6875rem; } }
  #service h1 {
    margin-bottom: 6.1875rem; }
    @media (max-width: 723px) {
      #service h1 {
        margin-bottom: 3.75rem; } }
  #service h4 {
    width: 54.28%;
    margin-left: auto;
    margin-right: auto;
    line-height: 2.3181;
    margin-bottom: 7.375rem; }
    @media (max-width: 723px) {
      #service h4 {
        width: 100%;
        line-height: 2.1786;
        margin-bottom: 5.2188rem; } }
  #service .tools {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    margin-top: 7.125rem; }
    @media (max-width: 723px) {
      #service .tools {
        display: block;
        margin-top: 5.5625rem; } }
    #service .tools .text {
      width: 17.3831rem;
      margin-right: 3.5rem; }
      @media (max-width: 723px) {
        #service .tools .text {
          width: 100%;
          margin-right: inherit; } }
      #service .tools .text figure {
        width: 6.52625rem;
        margin-left: auto;
        margin-right: auto;
        margin-top: 3.5rem; }
        @media (max-width: 723px) {
          #service .tools .text figure {
            width: 4.5460rem; } }
      #service .tools .text h3 {
        letter-spacing: 0.4em;
        font-size: 1.625rem;
        margin-top: 3.5rem;
        text-align: center;
        position: relative; }
        @media (max-width: 723px) {
          #service .tools .text h3 {
            font-size: 1.5rem;
            margin-top: 2.0625rem; } }
        #service .tools .text h3:before {
          content: "";
          position: absolute;
          width: 1.9375rem;
          height: 1px;
          background: #000000;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          top: 4.2rem; }
          @media (max-width: 723px) {
            #service .tools .text h3:before {
              display: none; } }
      #service .tools .text p {
        font-size: 1rem;
        line-height: 2.0625;
        margin-top: 3.875rem;
        letter-spacing: 0.01em;
        width: 17.3831rem; }
        @media (max-width: 723px) {
          #service .tools .text p {
            width: inherit;
            margin-top: 2.0313rem;
            font-size: 0.875rem;
            line-height: 2.1788; } }
    #service .tools .image {
      max-width: 54.3589rem;
      position: relative;
      width: 100%;
      min-height: 461px; }
      @media (max-width: 723px) {
        #service .tools .image {
          min-height: inherit; } }
      #service .tools .image figure {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
        @media (max-width: 723px) {
          #service .tools .image figure {
            position: inherit;
            top: inherit;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
            width: 100%;
            margin-top: 2.0625rem; } }

#footer footer {
  background-color: #000000;
  padding-top: 7.75rem;
  padding-bottom: 7.75rem; }
  @media (max-width: 723px) {
    #footer footer {
      padding-top: 3.5938rem;
      padding-bottom: 4.5rem; } }
  #footer footer figure {
    width: 8.9875rem;
    margin-left: auto;
    margin-right: auto; }
    @media (max-width: 723px) {
      #footer footer figure {
        width: 4.4938rem; } }
  #footer footer p {
    color: white;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.75;
    margin-top: 4.875rem;
    letter-spacing: 0.025em; }
    @media (max-width: 723px) {
      #footer footer p {
        font-size: 0.625rem;
        margin-top: 1.625rem; } }
  #footer footer .copyright {
    margin-top: inherit; }

.to_top {
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid #f2f2f2;
  background: #000000;
  position: fixed;
  right: 0;
  bottom: 0; }
  .to_top a {
    position: relative;
    display: block; }
    .to_top a span {
      width: 3.75rem;
      height: 3.75rem;
      display: block; }
      .to_top a span:before {
        content: "";
        position: absolute;
        width: 1.5rem;
        height: 1.5rem;
        border-top: solid 3px #f2f2f2;
        border-right: solid 3px #f2f2f2;
        top: 50%;
        left: 50%;
        -webkit-transform: rotate(-45deg) translate(-17.5%, -50%);
                transform: rotate(-45deg) translate(-17.5%, -50%); }
  .to_top:hover {
    background: #f2f2f2;
    border: 1px solid #000000; }
    .to_top:hover span {
      color: #000000; }
      .to_top:hover span:before {
        border-top: solid 3px #000000;
        border-right: solid 3px #000000; }

#store .text {
  font-size: 1rem;
  letter-spacing: 0.025em; }

#store .time-table {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin-top: 7.1875rem;
  letter-spacing: 0.025em; }
  #store .time-table .right-tb {
    margin-left: 2.5rem;
    width: 44.3987%; }
  #store .time-table .left-tb {
    width: 44.3987%; }
  #store .time-table dl {
    border-bottom: 1px solid #000000;
    padding-bottom: 1rem;
    padding-top: 2.4375rem;
    display: -webkit-box;
    display: flex; }
    #store .time-table dl dt {
      font-size: 1.625rem; }
    #store .time-table dl dd {
      font-size: 1.375rem;
      margin-top: 0.2rem; }

#maintenance, #store {
  padding-bottom: 15.25rem; }
  @media (max-width: 723px) {
    #maintenance, #store {
      padding-bottom: 0.9375rem; } }
  #maintenance .conte, #store .conte {
    padding-top: 10.625rem; }
    @media (max-width: 723px) {
      #maintenance .conte, #store .conte {
        padding-top: 4.375rem; } }
  #maintenance h1, #store h1 {
    margin-bottom: 3.9375rem; }
    @media (max-width: 723px) {
      #maintenance h1, #store h1 {
        letter-spacing: 0.38em;
        margin-bottom: 2.0313rem; } }
  #maintenance .text, #store .text {
    width: 52.47%;
    margin-left: auto;
    margin-right: auto; }
    @media (max-width: 723px) {
      #maintenance .text, #store .text {
        width: 100%;
        line-height: 2.1786; } }
  #maintenance .items, #store .items {
    margin-top: 6.8125rem; }
    #maintenance .items .youtube-frame, #store .items .youtube-frame {
      position: relative;
      max-width: 960px;
      margin-left: auto;
      margin-right: auto; }
      @media (max-width: 723px) {
        #maintenance .items .youtube-frame, #store .items .youtube-frame {
          margin-bottom: 3.375rem; } }
      #maintenance .items .youtube-frame:before, #store .items .youtube-frame:before {
        content: "";
        display: block;
        padding-top: 56.25%; }
      #maintenance .items .youtube-frame #modal-youtube-movie, #store .items .youtube-frame #modal-youtube-movie {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
    @media (max-width: 723px) {
      #maintenance .items, #store .items {
        margin-top: 3.375rem; } }
    #maintenance .items ul, #store .items ul {
      display: -webkit-box;
      display: flex;
      -webkit-box-pack: justify;
              justify-content: space-between;
      width: 72.48%;
      margin-left: auto;
      margin-right: auto; }
      @media (max-width: 723px) {
        #maintenance .items ul, #store .items ul {
          width: 100%;
          flex-wrap: wrap; } }
      #maintenance .items ul li, #store .items ul li {
        width: 25%; }
        @media (max-width: 723px) {
          #maintenance .items ul li, #store .items ul li {
            width: 50%;
            margin-bottom: 5rem; } }
        #maintenance .items ul li a figure, #store .items ul li a figure {
          overflow: hidden; }
          #maintenance .items ul li a figure img, #store .items ul li a figure img {
            width: 100%;
            -webkit-transition: all ease 0.3s;
            transition: all ease 0.3s; }
        #maintenance .items ul li a p, #store .items ul li a p {
          text-align: center;
          color: #000000;
          letter-spacing: 0.75rem;
          margin-left: 0.75rem; }
          @media (max-width: 723px) {
            #maintenance .items ul li a p, #store .items ul li a p {
              font-size: 1.285rem; } }
        #maintenance .items ul li a:hover figure img, #store .items ul li a:hover figure img {
          -webkit-transform: scale(1.1);
                  transform: scale(1.1);
          -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s; }

#store {
  padding-bottom: 11.1875rem; }
  @media (max-width: 723px) {
    #store {
      padding-bottom: 4.9rem; } }
  #store h1 {
    letter-spacing: 0.025em;
    margin-bottom: 1.75rem; }
    @media (max-width: 723px) {
      #store h1 {
        margin-bottom: 1rem; } }
  #store .text {
    font-size: 1rem;
    letter-spacing: 0.025em;
    text-align: center; }
    @media (max-width: 723px) {
      #store .text {
        font-size: 0.875rem;
        line-height: 1.92; } }
  #store .time-table {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    margin-top: 7.1875rem;
    letter-spacing: 0.025em; }
    @media (max-width: 723px) {
      #store .time-table {
        display: block;
        margin-top: 4.1rem; } }
    #store .time-table .right-tb {
      margin-left: 2.5rem;
      width: 44.3987%; }
      @media (max-width: 723px) {
        #store .time-table .right-tb {
          width: 100%;
          margin-left: inherit; } }
    #store .time-table .left-tb {
      width: 44.3987%; }
      @media (max-width: 723px) {
        #store .time-table .left-tb {
          width: 100%; } }
    #store .time-table dl {
      border-bottom: 1px solid #000000;
      padding-bottom: 1rem;
      padding-top: 2.4375rem;
      display: -webkit-box;
      display: flex;
      flex-wrap: wrap; }
      @media (max-width: 723px) {
        #store .time-table dl {
          font-size: 0.875rem;
          padding-bottom: 0.4rem;
          padding-top: 1.0938rem; } }
      #store .time-table dl dt {
        font-size: 1.625rem; }
        @media (max-width: 723px) {
          #store .time-table dl dt {
            font-size: 0.875rem;
            line-height: 1.93; } }
        #store .time-table dl dt span {
          font-size: 1.375rem; }
          @media (max-width: 723px) {
            #store .time-table dl dt span {
              font-size: 0.875rem;
              line-height: 1.93; } }
      #store .time-table dl dd {
        font-size: 1.375rem;
        margin-top: 0.2rem; }
        @media (max-width: 723px) {
          #store .time-table dl dd {
            font-size: 0.875rem;
            margin-top: inherit;
            line-height: 1.93; } }

.english #store dt {
  width: 9rem; }
  @media (max-width: 723px) {
    .english #store dt {
      width: 5rem; } }

.english #service .tools .text h3 {
  letter-spacing: 0.1em; }
  .english #service .tools .text h3:before {
    top: 7rem; }

.english #service .tools .text p {
  text-align: justify; }

.english #about h1, .english #maintenance h1, .english #store h1, .english #service h1, .english #products h1 {
  letter-spacing: 0.1em; }

.english #about h4, .english #maintenance h4, .english #store h4, .english #service h4, .english #products h4 {
  text-align: justify; }

.english #store h4 {
  text-align: center; }

audio:not([controls]) {
  display: none; }

button {
  overflow: visible;
  -webkit-appearance: button; }

details {
  display: block; }

html {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%; }

input {
  -webkit-border-radius: 0; }
  input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button; }
  input[type="number"] {
    width: auto; }
  input[type="search"] {
    -webkit-appearance: textfield; }
    input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
      -webkit-appearance: none; }

main {
  display: block; }

pre {
  overflow: auto; }

progress {
  display: inline-block; }

small {
  font-size: 75%; }

summary {
  display: block; }

svg:not(:root) {
  overflow: hidden; }

template {
  display: none; }

textarea {
  overflow: auto; }

[hidden] {
  display: none; }

*,
::before,
::after {
  box-sizing: inherit; }

* {
  font-size: inherit;
  line-height: inherit; }
  *:before, *:after {
    box-sizing: border-box; }

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit; }

*,
::before,
::after {
  border-style: solid;
  border-width: 0; }

* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0; }

:root {
  background-color: #FFFFFF;
  box-sizing: border-box;
  color: #000000;
  cursor: default;
  font: 100%/1.5 sans-serif;
  text-rendering: optimizeLegibility; }

a {
  text-decoration: none; }

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

button,
input,
select,
textarea {
  background-color: transparent; }

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit; }

button,
[type="button"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="reset"],
[type="search"],
[type="submit"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
select,
textarea {
  min-height: 1.5em; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; }

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

select {
  -moz-appearance: none;
  -webkit-appearance: none; }
  select::-ms-expand {
    display: none; }
  select::-ms-value {
    color: currentColor; }

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

textarea {
  resize: vertical; }

[aria-busy="true"] {
  cursor: progress; }

[aria-controls] {
  cursor: pointer; }

[aria-disabled] {
  cursor: default; }

[hidden][aria-hidden="false"] {
  clip: rect(0 0 0 0);
  display: inherit;
  position: absolute; }
  [hidden][aria-hidden="false"]:focus {
    clip: auto; }

body {
  -webkit-font-smoothing: antialiased; }

ul li {
  list-style-type: none; }

figure {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0; }

button {
  cursor: pointer; }

.full-layer, #gnavi {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto; }

/**
 * ホバーエフェクトの mixin<br>
 * 効果：中央からラインが伸びる（下）<br>
 * 参考：http://www.nxworld.net/tips/15-text-link-hover-effect-and-design.html
 *
 * @param {String} color ラインのカラー　デフォルトは #888
 * @param {String} border_height ラインの高さ　デフォルトは 1px
 * @param {String} transition トランジション　デフォルトは 0.3s
 */
/**
 * ホバーエフェクトの mixin で「中央からラインが伸びる（下）」のホバーじと同じ効果を上書きする<br>
 * 効果：中央からラインが伸びる（下）：ホバー<br>
 */
/**
 * ボックス型のボタン
 * ボタンのテキストにはクラスを設定したタグに data-button-text プロパティを設定して before と after にボタン名として入れられる
 * テキストは before に設定される。
 * ホバー時にはテキストがせり上がるようにしながら after が表示される。
 */
/**
 * ボタンクラスの基本を作る mixin<br>
 *
 * @param {String} element ボタンにするエレメント　デフォルトは .btn
 * @param {Boolean} responsive レスポンシブにする場合に true　デフォルトは false
 */
/**
 * スライドスイッチのクラスを構築 mixin<br>
 * 参考：https://proto.io/freebies/onoff/
 *
 * @param {String} cl クラス名
 * @param {String} h 高さ
 * @param {String} w 幅
 * @param {String} b ボーダーの幅
 * @param {String} offBgClr OFF の時のボタン背景色
 * @param {String} onBgClr ON の時のボタン背景色
 * @param {String} offBdClr OFF の時のボーダー色
 * @param {String} onBdClr ON の時のボーダー色
 * @param {String} swClr スライドするボタンの色
*/
/**
 * スライドスイッチのクラスを構築 mixin<br>
 * 参考：https://proto.io/freebies/onoff/
 * こちらは ON, OFF のテキストがスイッチの右側に表示される
 *
 * @param {String} cl クラス名
 * @param {String} h 高さ
 * @param {String} w 幅
 * @param {String} b ボーダーの幅
 * @param {String} offBgClr OFF の時のボタン背景色
 * @param {String} onBgClr ON の時のボタン背景色
 * @param {String} offBdClr OFF の時のボーダー色
 * @param {String} onBdClr ON の時のボーダー色
 * @param {String} swClr スライドするボタンの色
*/
/* IEハック用mixin */
/* IEハック用mixin 使用例 */
/**
 * 指定されたプロパティに決められた基準のスペースを入れる mixin。
 *
 * @param {String} property name
 * @param {Number} 係数
 */
/**
 * フォントサイズ rem 設定用 mixin。
 *
 * @param {String} 配列での設定か、Extra small の指定
 * @param {String} Small の指定
 * @param {String} Midium の指定
 * @param {String} Large の指定
*/
/**
 * コンテンツのプロパティ設定用 mixin。
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {String} 配列での設定か、Large の指定
 * @param {String} Midium の指定
 * @param {String} Small の指定
 * @param {String} Extra small の指定
*/
/**
 * コンテンツスペース設定用 mixin。contents-space-XX にしたがって指定する。各サイズ設定に notset を入れるとそのサイズは設定されない。
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {String} position top, bottom などの場所の指定。空の場合は全体の指定　デフォルトは空。例外的に vertical か side で左右、horizonal で上下の指定ができる。
 * @param {String} Large の指定
 * @param {String} Midium の指定
 * @param {String} Small の指定
 * @param {String} Extra small の指定
*/
/**
 * wrapper 用のサイドスペース設定 mixin。contents-space-XX にしたがって指定する
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {String} position top, bottom などの場所の指定。空の場合は全体の指定　デフォルトは空。例外的に vertical か side で左右、horizonal で上下の指定ができる。
 * @param {String} Large の指定
 * @param {String} Midium の指定
 * @param {String} Small の指定
 * @param {String} Extra small の指定
*/
/**
 * コンテンツの指定したプロパティを設定されている contents-space-XX にしたがって指定する
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {Array} position top, bottom などの場所の指定。空の場合は全体の指定　デフォルトは空
*/
/**
 * コンテンツの指定したプロパティを設定されている contents-subspace-XX にしたがって指定する
 *
 * @param {String} property margin か padding　デフォルトは padding
 * @param {Array} position top, bottom などの場所の指定。空の場合は全体の指定　デフォルトは空
*/
/**
 * コンテンツの指定したプロパティを設定されている contents-space-XX にしたがって指定する
 *
 * @param {Map} サイズを指定　デフォルトは空
 */
html {
  -webkit-overflow-scrolling: touch; }

body a:focus, body button:focus {
  outline: none; }

a:focus, button:focus {
  outline: none; }

small {
  font-size: 1em; }

span.ib-text span {
  display: inline-block; }

img {
  max-width: 100%; }

address {
  font-style: normal; }

.wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1214px;
  min-width: 320px; }

.img-circle {
  border-radius: 50%;
  overflow: hidden; }

.img-cover, .img-contain {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center; }
  .img-cover.img-center-top, .img-contain.img-center-top {
    background-position: center top; }
  .img-cover.img-center-bottom, .img-contain.img-center-bottom {
    background-position: center bottom; }

.img-cover {
  background-size: cover; }

.img-contain {
  background-size: contain; }

.txt {
  display: inline-block; }
  .txt span {
    display: inline-block; }

.ib-text span {
  display: inline-block; }

.hidden {
  display: none !important; }

.eng {
  font-family: "Roboto", sans-serif; }

.youtube, .googlemap, .if-resp {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden; }
  .youtube iframe, .googlemap iframe, .if-resp iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

#mainvisual {
  background: #000000; }

#header {
  z-index: 9999;
  position: fixed;
  width: 100%;
  height: 3.125rem;
  color: white; }
  #header header {
    position: relative; }
    #header header .slct-lang {
      position: absolute;
      left: 2.25rem;
      top: 3.75rem; }
      #header header .slct-lang ul {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: start;
                justify-content: flex-start; }
        #header header .slct-lang ul li a {
          padding: 5px;
          color: white; }
          #header header .slct-lang ul li a:after {
            content: "/";
            display: inline-block;
            margin-left: 10px; }
          #header header .slct-lang ul li a:hover, #header header .slct-lang ul li a.active {
            text-decoration: line-through; }
            #header header .slct-lang ul li a:hover:after, #header header .slct-lang ul li a.active:after {
              text-decoration: none; }
        #header header .slct-lang ul li:last-of-type a:after {
          display: none; }
  #header .gnavi {
    position: absolute;
    top: 3.75rem;
    right: 2.25rem; }
  #header.changed {
    color: #000000; }
    #header.changed header ul li a {
      color: #000000; }
    #header.changed header .gnavi-control .btn-gnavi-open .menu-icon span {
      background-color: #000000; }

#video {
  width: 100%;
  height: 100vh !important;
  position: relative; }
  #video video {
    width: 100vw;
    height: auto !important;
    font-family: 'object-fit: cover;'; }
  #video .logo figure {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
    #video .logo figure img {
      max-width: 19.4375rem; }
  #video .scroll figure {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 1.7rem; }
    #video .scroll figure img {
      width: 2.5rem; }

.parallaxParent {
  height: 65vh;
  min-height: 529px;
  overflow: hidden; }
  @media (max-width: 723px) {
    .parallaxParent {
      height: 41vh;
      min-height: 275px; } }

.parallaxParent > * {
  height: 130%;
  position: relative;
  top: -65%;
  background-size: cover; }

#parallax1.parallaxParent > * {
  background-position: center center; }
  @media (max-width: 723px) {
    #parallax1.parallaxParent > * {
      background-position: center center; } }

#parallax2.parallaxParent > * {
  background-position: center bottom; }
  @media (max-width: 723px) {
    #parallax2.parallaxParent > * {
      background-position: right center; } }
/*# sourceMappingURL=style.css.map */