@charset "utf-8";

/** ***************************************************************************
 * フォント設定
 * ************************************************************************* */

@import url('../_font/icomoon/style.css');

/* ゴシック体 */

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 300;
  src: url('../_font/NotoSans/NotoSansCJKjp-Light.woff') format('woff'),
       url('../_font/NotoSans/NotoSansCJKjp-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 400;
  src: url('../_font/NotoSans/NotoSansCJKjp-Regular.woff') format('woff'),
       url('../_font/NotoSans/NotoSansCJKjp-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 500;
  src: url('../_font/NotoSans/NotoSansCJKjp-Medium.woff') format('woff'),
       url('../_font/NotoSans/NotoSansCJKjp-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 700;
  src: url('../_font/NotoSans/NotoSansCJKjp-Bold.woff') format('woff'),
       url('../_font/NotoSans/NotoSansCJKjp-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 900;
  src: url('../_font/NotoSans/NotoSansCJKjp-Black.woff') format('woff'),
       url('../_font/NotoSans/NotoSansCJKjp-Black.ttf') format('truetype');
}

/* 明朝体 */

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 300;
  src: url('../_font/NotoSerif/NotoSerifCJKjp-Light.woff') format('woff'),
       url('../_font/NotoSerif/NotoSerifCJKjp-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 400;
  src: url('../_font/NotoSerif/NotoSerifCJKjp-Regular.woff') format('woff'),
       url('../_font/NotoSerif/NotoSerifCJKjp-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 500;
  src: url('../_font/NotoSerif/NotoSerifCJKjp-Medium.woff') format('woff'),
       url('../_font/NotoSerif/NotoSerifCJKjp-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 600;
  src: url('../_font/NotoSerif/NotoSerifCJKjp-SemiBold.woff') format('woff'),
       url('../_font/NotoSerif/NotoSerifCJKjp-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 700;
  src: url('../_font/NotoSerif/NotoSerifCJKjp-Bold.woff') format('woff'),
       url('../_font/NotoSerif/NotoSerifCJKjp-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 900;
  src: url('../_font/NotoSerif/NotoSerifCJKjp-Black.woff') format('woff'),
       url('../_font/NotoSerif/NotoSerifCJKjp-Black.ttf') format('truetype');
}

/** ***************************************************************************
 * 全体
 * ************************************************************************* */

html {
  background-image: url("../_image/_common/image-bg-1.jpg");
  background-position: center center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  overflow-x: hidden;
}

body {
  padding-bottom: 76px;
  color: #000;
  font: 12px/1.6 'NotoSansCJKjp', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a[href] {
  color: #7e4faa;
  text-decoration: underline;
}

a[href]:hover {
  text-decoration: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  html {
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-y: auto;
  }

  html > canvas {
    position: fixed !important;
  }

  body {
    height: 100%;
    padding-bottom: 0;
    letter-spacing: 1px;
    font-size: 16px;
    overflow-y: auto;
  }

  a[href*="tel:"] {
    color: inherit;
    cursor: default;
    pointer-events: none;
    text-decoration: none !important;
  }

}

/** ***************************************************************************
 * 共用
 */

div.body {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  div.body {
    padding-left: 20px;
    padding-right: 20px;
  }

}

/** ***************************************************************************
 * ヘッダー
 * ************************************************************************* */

#header {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  mix-blend-mode: difference;
  transition:
    visibility 0.6s ease-in-out 1.0s,
    opacity 0.6s ease-in-out 1.0s,
    padding 0.3s ease-in-out 0.0s;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
}

body.loaded
#header.fadein-loaded {
  transition:
    visibility 0.6s ease-in-out 2.0s,
    opacity 0.6s ease-in-out 2.0s,
    padding 0.3s ease-in-out 0.0s;
  visibility: visible;
  opacity: 1;
}

#header.fadein-scroll {
  padding-top: 15px;
  padding-bottom: 15px;
  transition:
    visibility 0.6s ease-in-out 0.3s,
    opacity 0.6s ease-in-out 0.3s,
    padding 0.3s ease-in-out 0.0s;
}

body.scroll-active
#header.fadein-scroll {
  visibility: visible;
  opacity: 1;
}

#header div.body {
  max-width: 1340px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

#header img {
  display: block;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #header {
    padding-top: 15px;
    padding-bottom: 65px !important;
  }

  #header div.body {
    align-items: center;
  }

}

@media print, screen and (min-width:1101px) {

  #header {
    padding-top: 30px;
    padding-bottom: 30px !important;
  }

}

/** ***************************************************************************
 * ロゴ
 */

#header .logo a {
  color: #fff;
  text-decoration: none;
}

#header .logo .text {
  margin-bottom: 7px;
  letter-spacing: 1px;
  font-size: 8px;
  display: block;
}

#header .logo img {
  width: 154px;
}

/** ***************************************************************************
 * ナビ
 */

#header nav.nav {
  margin-top: 5px;
  padding-right: 60px;
  flex-grow: 1;
}

#header nav.nav ul.list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#header nav.nav ul.list li {
  padding-left: 5px;
  padding-right: 5px;
  display: none;
}

#header nav.nav ul.list li.sns {
  display: block;
}

#header nav.nav ul.list li a {
  padding: 10px;
  color: inherit;
  text-decoration: none;
  border-radius: 100px;
  display: block;
  transition: background-color 0.3s ease-in-out 0.0s;
}

#header nav.nav ul.list li.sns a {
  padding: 0;
}

#header nav.nav ul.list li a:not([target]):hover {
  background-color: #fff;
}

#header nav.nav ul.list li img {
  display: block;
  transition: filter 0.3s ease-in-out 0.0s;
}

#header nav.nav ul.list li img:not([width]) {
  max-height: 12px;
}

#header nav.nav ul.list li a:not([target]):hover img {
  filter: invert(100%);
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #header nav.nav {
    width: 100%;
    margin-top: 0;
    padding-left: 40px;
    padding-right: 40px;
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 15px;
  }

  #header nav.nav ul.list {
    justify-content: space-around;
  }

  #header nav.nav ul.list li {
    display: block;
  }

  #header nav.nav ul.list li.sns a {
    padding: 10px;
  }

}

@media print, screen and (min-width:1101px) {

  #header nav.nav {
    width: auto;
    position: static;
  }

  #header nav.nav ul.list {
    justify-content: flex-start;
  }

}

/** ***************************************************************************
 * コンテンツ
 */

#header div.header {
  margin-left: auto;
  margin-right: 0;
  display: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #header div.header {
    display: block;
  }

}

/** ***************************************************************************
 * メイン
 * ************************************************************************* */

#main {
  position: relative;
  z-index: 2;
}

/** ***************************************************************************
 * セクショニング
 */

#main .section ~ .section {
  margin-top: 80px;
}

#main .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #main .section ~ .section {
    margin-top: 160px;
  }

  #main .column ~ .column {
    margin-top: 60px;
  }

}

/** ***************************************************************************
 * メニュー
 * ************************************************************************* */

#menu {
  width: 100%;
  position: fixed;
  z-index: 4;
  top: 0;
  transition: right 0.3s ease-in-out 0.0s;
  right: -100%;
}

body.menu-active
#menu {
  right: 0;
}

#menu div.menu-body {
  height: 100vh;
  padding: 60px 25px 120px 25px;
  background-color: rgba(255, 255, 255, 0.85);
  /*background-image: url("../_image/_common/menu-bg-1.png");*/
  background-position: 5% 85%;
  background-repeat: no-repeat;
  background-size: 28% auto;
  overflow: hidden;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #menu {
    display: none;
  }

}

/** ***************************************************************************
 * SNS
 */

#menu ul.sns {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 80px;
}

#menu ul.sns li a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

#menu ul.sns li.instagram img {
  filter: invert(100%);
}

/** ***************************************************************************
 * ナビ
 */

#menu ul.nav {
  max-width: 80%;
  min-width: 280px;
  margin-left: auto;
  margin-right: 0;
}

#menu ul.nav li ~ li {
  margin-top: 15px;
}

#menu ul.nav li a {
  padding: 15px;
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

#menu ul.nav li img {
  max-height: 1.25em;
  margin-right: 10px;
  filter: invert(100%);
  vertical-align: baseline;
  display: inline-block;
}

/** ***************************************************************************
 * お問合せ
 */

#menu ul.contact {
  max-width: 80%;
  min-width: 280px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: 0;
}

#menu ul.contact li ~ li {
  margin-top: 10px;
}

#menu ul.contact li a {
  padding: 15px;
  color: inherit;
  font-size: 1.25em;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

/** ***************************************************************************
 * ハンバーガー
 */

#menu div.drawer {
  width: 44px;
  padding: 20px 5px;
  cursor: pointer;
  position: fixed;
  z-index: 3;
  top: 8px;
  right: 15px;
  transition: background-color 0.3s ease-in-out 0.0s;
  background-color: transparent;
}

body.scroll-active
#menu div.drawer {
  background-color: #000;
}

body.menu-active
#menu div.drawer {
  background-color: transparent;
}

/** ---------------------------------------------------------------------------
 * ライン
 */

#menu div.drawer i.icon {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: block;
  position: relative;
  z-index: 1;
  transform: translate3d(0, 0, 0);
  transition: all 0.5s ease-in-out 0.0s;
  left: 0;
}

body.scroll-active
#menu div.drawer i.icon {
  border-color: #fff;
}

body.menu-active
#menu div.drawer i.icon {
  border-color: #000;
}

#menu div.drawer i.icon::before,
#menu div.drawer i.icon::after {
  content: '';
  width: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  transition: all 0.5s ease-in-out 0.0s;
  position: absolute;
  z-index: 1;
  left: 0;
}

body.scroll-active
#menu div.drawer i.icon::before,
body.scroll-active
#menu div.drawer i.icon::after {
  border-color: #fff;
}

body.menu-active
#menu div.drawer i.icon::before,
body.menu-active
#menu div.drawer i.icon::after {
  border-color: #000;
}

/* 上 */
#menu div.drawer i.icon::before {
  top: -9px;
}

body.menu-active
#menu div.drawer i.icon::before {
  -webkit-transform: translateY(9px) rotate(-315deg);
          transform: translateY(9px) rotate(-315deg);
  left: -100px;
}

/* 中 */
body.menu-active
#menu div.drawer i.icon {
  left: 100px;
}

/* 下 */
#menu div.drawer i.icon::after {
  top: 7px;
}

body.menu-active
#menu div.drawer i.icon::after {
  -webkit-transform: translateY(-7px) rotate(315deg);
          transform: translateY(-7px) rotate(315deg);
  left: -100px;
}

/** ***************************************************************************
 * 固定コンテンツ
 * ************************************************************************* */

#bottom-contents {
  width: 100%;
  padding: 15px;
  mix-blend-mode: difference;
  position: fixed;
  z-index: 3;
  left: 0;
  bottom: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #bottom-contents {
    display: none;
  }

}

/** ***************************************************************************
 * お問合せ
 */

#bottom-contents ul.contact {
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}

/** ***************************************************************************
 * フッター
 * ************************************************************************* */

/** ***************************************************************************
 * コンテンツ
 */

#footer div.footer {
  background-color: #fff;
}

/** ===========================================================================
 * お問合せ
 */

#footer div.footer div.contact {
  padding: 30px 0;
}

#footer div.footer div.contact ul.list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#footer div.footer div.contact ul.list li {
  padding: 10px;
}

#footer div.footer div.contact ul.list li a {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #footer div.footer div.contact {
    padding: 40px 0;
  }

}

/** ===========================================================================
 * 注釈
 */

#footer div.footer div.memo {
  padding: 20px 0;
  line-height: 1.8;
  font-size: 10px;
  border-top: 1px dotted #aaa;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #footer div.footer div.memo {
    padding: 40px 0;
    text-align: center;
  }

}

/** ===========================================================================
 * 関連リンク
 */

#footer div.footer div.link {
  padding: 20px 0;
  border-top: 1px dotted #aaa;
}

#footer div.footer div.link ul.list {
  max-width: none;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -10px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

#footer div.footer div.link ul.list li {
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

#footer div.footer div.link ul.list li a {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #footer div.footer div.link {
    padding: 40px 0;
  }

}

/** ***************************************************************************
 * 管理者
 */

#footer div.admin {
  padding: 20px 0;
  color: #fff;
  font-size: 0.75em;
  background: url("../_image/_common/image-bg-3.jpg") center center / cover no-repeat;
}

#footer div.admin a {
  color: inherit;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #footer div.admin {
    padding: 40px 0;
  }

  #footer div.admin div.body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

}

/** ===========================================================================
 * 株式会社リビタ
 */

#footer div.admin div.rebita {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

#footer div.admin div.rebita div.text {
  width: 100%;
  margin-bottom: 10px;
}

#footer div.admin div.rebita div.logo {
  margin-right: 20px;
}

#footer div.admin div.rebita ul.link {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#footer div.admin div.rebita ul.link li {
  margin-right: 20px;
}

#footer div.admin div.rebita ul.link li a {
  text-decoration: none;
}

#footer div.admin div.rebita ul.link li a:hover {
  text-decoration: underline;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #footer div.admin div.rebita {
    width: 50%;
  }

}

/** ===========================================================================
 * 京王グループ
 */

#footer div.admin div.keio {
  margin-top: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

#footer div.admin div.keio div.copyright {
  margin-right: 15px;
  line-height: 1.2;
  order: -1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #footer div.admin div.keio {
    width: 50%;
  }

}
