@charset "utf-8";
/* --------------------------------------------------
@import css
-------------------------------------------------- */
/* RESET CSS - ress.css */
@import url(./ress.css);
/* UTILITY CSS*/
@import url(./util.css);
/* LOAD ANIMATION CSS*/
@import url(./loader.css);
/* WEB FONTS - Noto Sans JP */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&subset=japanese');
/* WEB FONTS - Noto Serif JP */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&subset=japanese');
/* --------------------------------------------------
MEDIA QUERY FORMAT
---------------------------------------------------*/
@media screen and (max-width: 640px) {}
/* --------------------------------------------------
base layout
---------------------------------------------------*/
html {
  font-size: 62.5% !important; /* 62.5% = 10px = 1.0rem */
  min-height: 100vh;
}
body {
  width: 100%;
  height: 100%;
}
.page {
  width: 100%;
  max-width: 640px;
  height: auto;
  min-height: 100%;
  font-family: 'Noto Sans JP', "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #000;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 32px;
  line-height: 3.2rem;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0 auto;
  padding: 200px 0 0 0;
}
@media screen and (max-width: 640px) {
  .page {
    font-size: calc(100vw * 21 / 640);
    line-height: calc(100vw * 32 / 640);
    padding: calc(100vw * 200 / 640) 0 0 0;
  }
}
/* --------------------------------------------------
sys
---------------------------------------------------*/
.anm, .anm *, .anm::before, .anm::after {
  transition: all .2s ease-in-out;
/*
  transition: none;
*/
}
.sans {
  font-family: 'Noto Sans JP', "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.serif {
  font-family: 'Noto Serif JP', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Sawarabi Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.bold {
  font-weight: bold;
}
a {
  display: inline-block;
  vertical-align: top;
}
a:link {
  color: #444;
  text-decoration: none;
}
a:visited {
  color: #444;
  text-decoration: none;
}
a:hover {
  color: #444;
  text-decoration: none;
}
.on a, .off a, .active a {
  cursor: default;
  pointer-events: none;
}
.cap, .caption {
  background: none;
  font-size: 10px;
  font-size: 1rem;
  line-height: 15px;
  line-height: 1.5rem;
}
.cap {
  padding-top: 5px;
}
img {
  width: auto;
  max-width: 100%;
  line-height: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
figure, .ph {}
figure img, .ph img {
  width: 100%;
}
.ph figcaption, .ph span {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  font-size: 1rem;
  line-height: 15px;
  line-height: 1.5rem;
  padding: 5px;
}
.ph .black {
  color: #000;
}
.ph .white {
  color: #fff;
}
.wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .wrap {
    max-width: calc(100vw * 560 / 640);
  }
}
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.hov {
  transition: all .2s ease-in-out;
  opacity: 1;
}
.hov:hover {
  opacity: 0.75;
}
/* --------------------------------------------------
header
---------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 9999;
  transform: translateX(-50%);
  background: #fff;
  width: 100%;
  max-width: 640px;
  height: 180px;
}
@media screen and (max-width: 640px) {
  header {
    height: calc(100vw * 180 / 640);
  }
  header .wrap {
    width: 100%;
    margin: 0 auto;
  }
}
h1.siteTitle {
  display: block;
}
h1.siteTitle span {
  display: block;
  background: #fc760f;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  padding: 10px 35px;
}
@media screen and (max-width: 640px) {
  h1.siteTitle span {
    font-size: calc(100vw * 16 / 640);
    line-height: calc(100vw * 20 / 640);
    padding: calc(100vw * 10 / 640) calc(100vw * 35 / 640);
  }
}
h1.siteTitle img {
  display: block;
  width: 420px;
}
@media screen and (max-width: 640px) {
  h1.siteTitle img {
    width: calc(100vw * 420 / 640);
  }
}
/* --------------------------------------------------
nav format
---------------------------------------------------*/
nav ul {
  text-align: center;
  font-size: 0;
  line-height: 1;
}
nav ul li {
  display: inline-block;
  vertical-align: middle;
}
nav ul li a {
  font-weight: bold;
}
nav ul li:hover a, nav ul li.on a {}
nav ul li.on a:hover {
  text-decoration: none;
}
nav ul li.off {
  opacity: 0.5;
}
nav ul li.off, nav ul li.off * {
  pointer-events: none;
  cursor: default;
}
/* --------------------------------------------------
pNav
---------------------------------------------------*/
#pNav {
  position: absolute;
  top: 0;
  right: 20px;
}
@media screen and (max-width: 640px) {
  #pNav {
    right: calc(100vw * 20 / 640);
  }
}
#pNav ul {
  text-align: right;
}
#pNav ul li {}
#pNav ul li a {}
#pNav ul li.menu {
  display: inline-block;
  text-align: center;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 640px) {
  #pNav ul li.menu {
    width: calc(100vw * 80 / 640);
    height: calc(100vw * 80 / 640);
  }
}
#pNav ul li.menu::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("../imgs/common/ico-shadow.png") center center no-repeat;
  background-size: contain;
  width: 100px;
  height: 90px;
}
@media screen and (max-width: 640px) {
  #pNav ul li.menu::before {
    width: calc(100vw * 100 / 640);
    height: calc(100vw * 90 / 640);
  }
}
#pNav ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
#pNav ul li.menu a img {
  width: 100%;
}
#pNav ul li.menu a img.df {
  opacity: 1;
}
#pNav ul li.menu a img.ov {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#pNav ul li.menu a.change img.df {
  opacity: 0;
}
#pNav ul li.menu a.change img.ov {
  opacity: 1;
}
/* --------------------------------------------------
gNav
---------------------------------------------------*/
#gNav {
  display: none;
  position: fixed;
  top: 180px;
  left: 20px;
  z-index: 10;
  background: #fff;
  overflow-y: scroll;
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 180px);
}
@media screen and (max-width: 640px) {
  #gNav {
    top: calc(100vw * 180 / 640);
    left: calc(100vw * 20 / 640);
    width: calc(100vw * 600 / 640);
    max-height: calc(100vh - (100vw * 180 / 640));
  }
}
#gNav::-webkit-scrollbar {
  width: 0;
  height: 0;
}
#gNav ul {
  width: 100%;
  padding: 20px;
  text-align: left;
}
@media screen and (max-width: 640px) {
  #gNav ul {
    padding: calc(100vw * 20 / 640);
  }
}
#gNav ul li {
  display: block;
}
#gNav ul li::after {
  display: block;
  content: "";
  background: #dadada;
  border-bottom: 1px solid #ededed;
  width: 100%;
  height: 2px;
}
#gNav ul li a {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 64px;
  line-height: 6.4rem;
  padding: 0 15px;
}
@media screen and (max-width: 640px) {
  #gNav ul li a {
    font-size: calc(100vw * 32 / 640);
    line-height: calc(100vw * 64 / 640);
    padding: 0 calc(100vw * 15 / 640);
  }
}
#gNav ul li dl {}
#gNav ul li dl dt {
  display: block;
}
#gNav ul li dl dt::before {
  display: block;
  position: absolute;
  top: 0;
  right: 30px;
  content: "▽";
  font-size: 32px;
  line-height: 64px;
}
@media screen and (max-width: 640px) {
  #gNav ul li dl dt::before {
    right: calc(100vw * 30 / 640);
    font-size: calc(100vw * 32 / 640);
    line-height: calc(100vw * 64 / 640);
  }
}
#gNav ul li dl dt.open::before {
  transform: rotate(180deg);
}
#gNav ul li dl dt p {
  color: #444;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 64px;
  line-height: 6.4rem;
  font-weight: bold;
  padding: 0 15px;
}
@media screen and (max-width: 640px) {
  #gNav ul li dl dt p {
    font-size: calc(100vw * 32 / 640);
    line-height: calc(100vw * 64 / 640);
    padding: 0 calc(100vw * 15 / 640);
  }
}
#gNav ul li dl dd {
  display: none;
}
#gNav ul li dl dd::before {
  display: block;
  content: "";
  background: #dadada;
  border-bottom: 1px solid #ededed;
  width: 100%;
  height: 2px;
}
#gNav ul li dl dd p {
  display: block;
}
#gNav ul li dl dd p:first-of-type {
  padding: 15px 0 0 0;
}
#gNav ul li dl dd p:last-of-type {
  padding: 0 0 15px 0;
}
@media screen and (max-width: 640px) {
  #gNav ul li dl dd p:first-of-type {
    padding: calc(100vw * 15 / 640) 0 0 0;
  }
  #gNav ul li dl dd p:last-of-type {
    padding: 0 0 calc(100vw * 15 / 640) 0;
  }
}
#gNav ul li dl dd p a::before {
  display: inline-block;
  vertical-align: top;
  content: "-";
  padding: 0 0.5em 0 1em;
}
/* --------------------------------------------------
fNav
---------------------------------------------------*/
#fNav {}
#fNav ul {
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 640px) {
  #fNav ul {
    border-top: 1px solid #ddd;
    border-bottom: none;
  }
}
#fNav ul li {}
@media screen and (max-width: 640px) {
  #fNav ul li {
    width: 50%;
    border-bottom: 1px solid #ddd;
  }
  #fNav ul li:nth-child(odd) {
    border-right: 1px solid #ddd;
  }
  #fNav ul li.on, #fNav ul li:hover {
    background: #eee;
  }
}
#fNav ul li::after {
  display: inline-block;
  vertical-align: top;
  content: "｜";
  font-size: 12px;
  line-height: 20px;
  padding: 0 5px;
  pointer-events: none;
}
@media screen and (max-width: 640px) {
  #fNav ul li::after {
    display: none;
  }
}
#fNav ul li:last-child::after {
  display: none;
}
#fNav ul li a {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  line-height: 2rem;
}
@media screen and (max-width: 640px) {
  #fNav ul li a {
    display: block;
    line-height: 40px;
    line-height: 4rem;
  }
}
/* --------------------------------------------------
footer
---------------------------------------------------*/
footer {
  width: 100%;
  padding: 0 0 220px 0;
}
@media screen and (max-width: 640px) {
  footer {
    padding: 0 0 calc(100vw * 220 / 640) 0;
  }
}
footer .logo {
  width: 400px;
  margin: 2.5% auto;
}
@media screen and (max-width: 640px) {
  footer .logo {
    width: calc(100vw * 400 / 640);
  }
}
footer .float_tel {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 640px;
}
/* --------------------------------------------------
pagetop
---------------------------------------------------*/
#pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
}
#pagetop a {
  display: block;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 640px) {
  #pagetop a {
    width: calc(100vw * 90 / 640);
    height: calc(100vw * 90 / 640);
  }
}
/* --------------------------------------------------
copyright
---------------------------------------------------*/
#copyright {
  text-align: center;
  margin: 0 auto;
  font-size: 20px;
  font-size: 2rem;
  line-height: 40px;
  line-height: 4rem;
}
@media screen and (max-width: 640px) {
  #copyright {
    font-size: calc(100vw * 20 / 640);
    line-height: calc(100vw * 40 / 640);
  }
}
/* --------------------------------------------------
colBox
---------------------------------------------------*/
.colBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}
.colBox.direction {
  flex-direction: row;
}
.colBox.reverse {
  flex-direction: row-reverse;
}
.colBox.align {
  align-items: center;
}
/* --------------------------------------------------
scroll
---------------------------------------------------*/
.scroll {
  overflow: auto;
  white-space: nowrap;
}
.scroll::-webkit-scrollbar {
  height: 5px;
}
.scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.scroll::-webkit-scrollbar-thumb {
  background: #bcbcbc;
}
