﻿/*----------------------------------------------------------------------------------------------------

  Header
  
----------------------------------------------------------------------------------------------------*/
header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
}
.l-hd-logo {
  text-align: left;
  background-color: #FFF;
}
.l-hd-logo a {
  display: block;
}
.l-hd-logo a,
.l-hd-logo a:visited,
.l-hd-logo a:hover,
.ua-pc .l-hd-logo a:hover {
  color: rgba(var(--color-ldblue),1);
  text-decoration: none;
}
.l-hd-logo .cc {
  display: block;
  font-weight: normal;
  padding-top: 1em;
  line-height: 1;
  white-space: nowrap;
}
@media print, screen and (min-width:641px) {
  header {
    min-width: var(--PC-min-width);
  }
  .l-hd-logo {
    -ms-flex-item-align: start;
    align-self: flex-start;
    white-space: nowrap;
  }
  .l-hd-logo a {
    padding: 20px;
  }
  .l-hd-logo img {
    width: 90%;
    max-width: 280px;
  }
  .l-hd-logo .cc {
    font-size: 0.65em;
  }
}
@media screen and (max-width:640px) {
  .l-hd-logo a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 1em;
  }
  .l-hd-logo img {
    width: 100%;
    max-width: 200px;
  }
  .l-hd-logo .cc {
    font-size: clamp(6px, 1.5vw, 10px);
  }
}
@media print, screen and (min-width:641px) {
  header.is-fix {
    position: fixed;
    left: 0;
    top: 0;
    background-color: #FFF;
  }
  header.is-fix:after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background-color: rgba(var(--color-dblue),0.05);
    position: absolute;
    left: 0;
    top: 100%;
  }
  header.is-upMove {
    animation: hd-up 0.35s forwards;
  }
  header.is-downMove {
    animation: hd-down 0.35s forwards;
  }
  header.is-fix .l-hd-logo {
    -ms-flex-item-align: center;
    align-self: center;
    width: 18%;
    max-width: 220px;
    padding: 0.5em 0 0.5em 1em;
  }
  header.is-fix .l-hd-logo img {
    display: none;
  }
  header.is-fix .l-hd-logo a {
    width: 100%;
    height: 40px;
    padding: 0;
    background: url("../image/logo-s.svg") no-repeat left center;
    background-size: contain;
  }
  header.is-fix .l-hd-logo .cc {
    display: none;
  }
}
@media screen and (max-width:640px) {
  header {
    min-width: var(--SP-min-width);
  }
  header.is-upMove {
    animation: hd-hide 0.2s forwards;
  }
  header.is-downMove {
    animation: hd-show 0.2s forwards;
  }
}
@keyframes hd-up {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-100%); }
}
@keyframes hd-down {
  0% { opacity: 0; transform: translateY(-100%); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes hd-hide {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes hd-show {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/*----------------------------------------------------------------------------------------------------

  Global navigation
  
----------------------------------------------------------------------------------------------------*/
.l-gNav-list,
.l-gNav-listBtn {
  list-style: none;
}
.l-gNav a,
.l-gNav a:visited,
.l-gNav a:hover {
  color: #FFF;
  text-decoration: none;
}
.l-gNav a {
  display: block;
}
@media print, screen and (min-width:641px) {
  .l-gNav {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-PCgNav {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .l-gNav-list,
  .l-gNav-listBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .l-gNav-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .l-gNav-list li {
    white-space: nowrap;
    padding-left: 1.5em;
  }
  .l-gNav-list a {
    padding: 0.75em 0.25em 0.5em 0.25em;
    position: relative;
  }
  .ua-pc .l-gNav-list a:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #FFF;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: transform 0.6s var(--cubic-bezier);
    transform-origin: right top;
    transform: scale(0,1);
  }
  .ua-pc .l-gNav-list a:hover:after {
    transform-origin: left top;
    transform: scale(1,1);
  }
  .l-gNav-listBtn {
    padding-left: 2em;
  }
  .l-gNav-listBtn a {
    font-size: var(--fs-s);
    padding: 0.6em 1.5em;
    min-width: 10em;
  }
  .l-gNav-listBtn li.reservation a { background-color: rgba(var(--color-green),1); }
  .l-gNav-listBtn li.contact a { background-color: rgba(var(--color-dblue),1); }
  .ua-pc .l-gNav-listBtn li.reservation a:hover { background-color: rgba(var(--color-lgreen),1); }
  .ua-pc .l-gNav-listBtn li.contact a:hover { background-color: rgba(var(--color-ldblue),1); }
  .l-SPgNav__tel {
    display: none;
  }
}
@media print, screen and (min-width:641px) {
  .l-gNav-list {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-left: 1em;
    padding-right: 2em;
  }
  .l-gNav-list {
    padding-top: 0.5em;
  }
  .l-gNav-list li {
    transition: padding 0.15s ease-out;
  }
}
@media print, screen and (min-width:641px) and (max-width:1200px) {
  .l-gNav-list li {
    font-size: 95%;
    padding-left: 1.25em;
  }
}
@media print, screen and (min-width:641px) {
  header.is-fix .l-gNav {
    font-size: 95%;
    margin-left: inherit;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  header.is-fix .l-SPgNav {
    width: 100%;
  }
  header.is-fix .l-PCgNav {
    width: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  header.is-fix .l-PCgNav,
  header.is-fix .l-gNav-list,
  header.is-fix .l-gNav-listBtn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  header.is-fix .l-gNav-list {
    width: inherit;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    padding-right: 0;
    padding-top: 0;
  }
  header.is-fix .l-gNav-listBtn {
    padding-bottom: 0;
    padding-left: 0;
  }
  header.is-fix .l-gNav-listBtn a {
    padding: 0.65em 1.5em;
  }
  header.is-fix .l-gNav-list li {
    font-size: 100%;
    padding: 0.75em 1.5em;
    transition: padding 0.15s ease-out;
  }
  header.is-fix .l-gNav-list a {
    transition: padding 0.15s ease-out, color 0.15s ease-out, opacity 0.15s ease-out, background 0.15s ease-out, border 0.15s ease-out;
  }
  header.is-fix .l-gNav-list a,
  header.is-fix .l-gNav-list a:visited,
  header.is-fix .l-gNav-list a:hover {
    color: var(--font-color);
  }
  .ua-pc header.is-fix .l-gNav-list a:after {
    background-color: rgba(var(--color-blue),1);
  }
  .ua-pc header.is-fix .l-gNav-list a:hover {
    color: var(--fc-link);
    opacity: 1;
  }
}
@media print, screen and (min-width:641px) and (max-width:1440px) {
  header.is-fix .l-gNav-list li {
    padding: 0.75em 1em;
  }
}
@media print, screen and (min-width:641px) and (max-width:1320px) {
  header.is-fix .l-gNav-list li {
    font-size: 95%;
    padding: 0.75em 0.75em;
  }
}
@media print, screen and (min-width:641px) and (max-width:1200px) {
  header.is-fix .l-gNav-list li {
    padding: 0.75em 0.5em;
  }
}
@media screen and (max-width:640px) {
  html.is-sp-gNav-open,
  html.is-sp-gNav-close {
    overflow: hidden;
  }
  html.is-sp-gNav-open,
  html.is-sp-gNav-open body,
  html.is-sp-gNav-close,
  html.is-sp-gNav-close body {
    height: 100%;
  }
  .l-gNav {
    display: none;
    pointer-events: none;
    width: 100%;
    min-width: var(--SP-min-width);
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 199;
    text-align: center;
    background-color: #053C82;
  }
  .l-gNav:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translateY(100%);
    background-color: rgba(var(--color-blue),1);
  }
  html.is-sp-gNav-open .l-gNav.is-aniSet:before {
    transform: translateY(0);
    transition: transform 0.8s var(--cubic-bezier);
  }
  html.is-sp-gNav-close .l-gNav:before {
    transform: translateY(0);
  }
  .l-SPgNav {
    pointer-events: auto;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 4em;
  }
  .l-SPgNav__item {
    opacity: 0;
    overflow-y: auto;
    padding: 0 1.5em 1.5em 1.5em;
    transform: translateY(5%);
    transition: opacity 1s var(--cubic-bezier), transform 0.8s var(--cubic-bezier);
  }
  .l-SPgNav__item.is-aniSet {
    opacity: 1;
    transform: translateY(0);
  }
  .l-SPgNav__item:after {
    content: "";
    width: 100%;
    height: 3em;
    display: block;
  }
  .l-gNav-list {
    font-size: var(--fs-m);
  }
  .l-gNav-listBtn {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .l-gNav-list a {
    padding: 0.5em 0;
  }
  .l-gNav-list li {
    display: block;
    overflow: hidden;
  }
  .l-gNav-list a {
    transform: translateY(100%);
  }
  .l-SPgNav__item.is-aniSet .l-gNav-list a {
    transform: translateY(0);
    transition: transform 0.6s var(--cubic-bezier);
  }
  .l-SPgNav__item.is-aniSet .l-gNav-list li:nth-child(2) a { transition-delay: 0.1s; }
  .l-SPgNav__item.is-aniSet .l-gNav-list li:nth-child(3) a { transition-delay: 0.2s; }
  .l-SPgNav__item.is-aniSet .l-gNav-list li:nth-child(4) a { transition-delay: 0.3s; }
  .l-SPgNav__item.is-aniSet .l-gNav-list li:nth-child(5) a { transition-delay: 0.4s; }
  .l-SPgNav__item.is-aniSet .l-gNav-list li:nth-child(6) a { transition-delay: 0.5s; }
  .l-SPgNav__item.is-aniSet .l-gNav-list li:nth-child(7) a { transition-delay: 0.6s; }
  .l-SPgNav__item.is-aniSet .l-gNav-list li:nth-child(8) a { transition-delay: 0.7s; }
  .l-gNav-listBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-gNav-listBtn li {
    width: 50%;
  }
  .l-gNav-listBtn a {
    padding: 0.6em 1.5em;
  }
  .l-gNav-listBtn li.reservation a { background-color: rgba(var(--color-green),1); }
  .l-gNav-listBtn li.contact a { background-color: rgba(var(--color-dblue),1); }
  .l-SPgNav__tel {
    color: #FFF;
    padding-top: 2em;
  }
  .l-SPgNav__tel .no {
    font-size: var(--fs-4l);
    font-weight: 500;
  }
}

/*--------------------------------------------------------------------------------
  banner
--------------------------------------------------------------------------------*/
.l-gNav-bnr {
  display: flex;
}
.l-gNav-bnr .mbp img {
  object-fit: cover;
  max-height: 70px;
}
header.is-fix .l-user {
  display: none;
}
.l-user {
  list-style: none;
  display: flex;
  line-height: var(--line-height-s);
}
.l-user li img {
  height: 2em;
}
.l-user li a {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  font-weight: 700;
  padding: 0.5em 1em;
  white-space: nowrap;
}
.l-user li a:before {
  content: "";
  width: 1.75em;
  height: 1.75em;
  display: inline-block;
  background: url("../image/icon/youtube.svg") no-repeat left center;
  background-size: cover;
  margin-right: 0.75em;
}
.l-user li a,
.l-user li a:visited,
.l-user li a:hover {
  color: #FFF;
  text-decoration: none;
}
.l-user__com a { background-color: rgba(var(--color-orange),1); }
.l-user__pub a { background-color: rgba(var(--color-dblue),1); }
@media print, screen and (min-width:1401px) {
  .l-user li a {
    padding: 0.5em 2em;
  }
}
@media print, screen and (min-width:1201px) and (max-width:1400px) {
  .l-user li a {
    font-size: var(--fs-s);
    padding: 0.5em 1.75em;
  }
}
@media screen and (max-width:1200px) {
  .l-user li a {
    font-size: 90%;
    padding: 0.5em 1em;
  }
}
@media print, screen and (min-width:641px) {
  header.is-fix .l-gNav-bnr .mbp {
    display: none;
  }
  .l-gNav-bnr {
    flex-direction: row-reverse;
  }
  .l-gNav-bnr .mbp {
    height: 100%;
    background-color: #FFF;
  }
  .l-gNav-bnr .mbp a {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .l-SPuser { display: none; }
  .l-user__com a:hover,
  .ua-pc .l-user__com a:hover { background-color: rgba(var(--color-lorange),1); }
  .l-user__pub a:hover,
  .ua-pc .l-user__pub a:hover { background-color: rgba(var(--color-ldblue),1); }
}
@media screen and (min-width:461px) and (max-width:640px) {
  .l-user li {
    flex-grow: 1;
  }
  .l-user li a {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .l-user li a:before {
    margin-bottom: 0.5em;
    margin-right: 0;
  }
  .l-user__pub span {
    padding-top: 0.75em;
    padding-bottom: 0.25em;
  }
}
@media screen and (max-width:640px) {
  .l-gNav-bnr {
    flex-direction: column;
    row-gap: 1em;
  }
  .l-user {
    flex-grow: 1;
  }
  .l-user li a {
    width: 100%;
    font-size: clamp(7px, 2.2vw, 12px);
  }
  .l-PCuser { display: none; }
}
@media screen and (max-width:460px) {
  .l-user {
    flex-direction: column;
  }
  .l-user li {
    width: 100%;
    height: 50%;
    display: flex;
  }
}

/*--------------------------------------------------------------------------------
  SP button
--------------------------------------------------------------------------------*/
@media print, screen and (min-width:641px) {
  .l-gNavBtn {
    display: none;
  }
}
@media screen and (max-width:640px) {
  .l-gNavBtn {
    width: 4em;
    height: 100%;
    -ms-flex-item-align: center;
    align-self: center;
    margin-left: auto;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1000;
  }
  header.is-fix .l-gNavBtn {
    position: fixed;
    right: 0;
    top: 0;
    height: 4em;
    z-index: 1000;
  }
  .l-gNavBtn__icon,
  .l-gNavBtn__icon span,
  .l-gNavBtn__icon span:before,
  .l-gNavBtn__icon span:after {
    display: inline-block;
  }
  .l-gNavBtn__icon {
    position: relative;
    width: 22px;
    height: 16px;
    transition: all 0.35s ease-out;
  }
  .l-gNavBtn__icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    transition: all 0.35s ease-out;
  }
  .l-gNavBtn__icon span,
  .l-gNavBtn.is-close .l-gNavBtn__icon span {
    background-color: #FFF;
  }
  header.is-fix .l-gNavBtn__icon span {
    background-color: rgba(var(--color-blue),1);
  }
  header.is-fix .l-gNavBtn.is-close .l-gNavBtn__icon span {
    background-color: #FFF;
  }
  .l-gNavBtn__icon span:nth-of-type(1) {
    top: 0;
  }
  .l-gNavBtn__icon span:nth-of-type(2) {
    top: 7px;
  }
  .l-gNavBtn__icon span:nth-of-type(3) {
    bottom: 0;
  }
  .l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  .l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    animation: navBtn02 .8s forwards;
  }
  .l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }
}
@keyframes navBtn02 {
  100% { height: 0; }
}

/*----------------------------------------------------------------------------------------------------

  Contents
  
----------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
  ページタイトル
--------------------------------------------------------------------------------*/
.l-pgTtl {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background: url("../image/pgttl_bg.jpg") no-repeat center center;
  background-size: cover;
  color: #FFF;
  padding-top: 5em;
}
.l-pgTtl #particles {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.l-pgTtl__txt {
  font-size: var(--fs-5l);
  font-weight: 700;
  line-height: var(--line-height-s);
  display: inline-block;
  position: relative;
  z-index: 2;
  letter-spacing: 0.1em;
}
@media print,screen and (min-width:641px) {
  .l-pgTtl {
    height: calc(440 / 1200 * 100vw);
    min-height: 380px;
    max-height: 420px;
  }
}
@media screen and (max-width:640px) {
  .l-pgTtl {
    height: calc(400 / 640 * 100vw);
    min-height: 240px;
    max-height: 320px;
  }
}
.l-pgTtl__txt .passing {
  position: relative;
  display: inline-block;
  line-height: var(--line-height-s);
}
.l-pgTtl__txt .passing:before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  transform-origin: right top;
  transform: scale(1,1);
  background-color: #FFF;
}
.l-pgTtl__txt .passing__txt {
  opacity: 0;
  display: inline-block;
}
.l-pgTtl.is-active .l-pgTtl__txt .passing:before {
  animation: pg-ttl-passingIn 1.2s var(--cubic-bezier) forwards;
}
.l-pgTtl.is-active .l-pgTtl__txt .passing__txt {
  animation: pg-ttl-passingTxt 1.2s var(--cubic-bezier) forwards;
}
@keyframes pg-ttl-passingIn {
  0% { width: 0; transform: scale(1,1); }
  45% { width: 100%; transform: scale(1,1); }
  46% { width: 100%; transform: scale(1,1); }
  99% { width: 100%; transform: scale(0,1); }
  100% { width: 100%; transform: scale(0,1); }
}
@keyframes pg-ttl-passingTxt {
  0% { opacity: 0; }
  44% { opacity: 0; }
  45% { opacity: 1; }
  100% { opacity: 1; }
}

/*----------------------------------------------------------------------------------------------------

  予約・お問合せ
  
----------------------------------------------------------------------------------------------------*/
.l-ft-contact {
  background-color: var(--bgcolor-gray);
  margin-top: var(--block-space-min);
  padding-bottom: var(--block-space-l);
  position: relative;
}
.l-ft-contact:before {
  content: "";
  width: 100%;
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: 0;
}
.l-ft-contact-inner {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.l-ft-contact__photo img {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit:cover;";
}
.l-ft-contact__main {
  text-align: left;
}
.l-ft-contact__main .lead {
  font-size: var(--fs-4l);
  font-weight: 700;
  line-height: var(--line-height-m);
  padding-bottom: 3.5rem;
}
.l-ft-contact__main .txt {
  padding-bottom: 2em;
}
.l-ft-contact__main .tel {
  font-size: var(--fs-s);
  line-height: var(--line-height-m);
}
.l-ft-contact__main .tel .no {
  font-weight: 500;
  font-size: var(--fs-4l);
}
.l-ft-contact__main .btn {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -0.5em;
  margin-right: -0.5em;
}
.l-ft-contact__main .btn li {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 50%;
  margin-top: var(--block-space-s);
}
.l-ft-contact__main .btn li a {
  display: block;
  position: relative;
  text-align: left;
  padding-right: 5.5em;
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.l-ft-contact__main .btn li a .p-dotArrow {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}
@media print, screen and (min-width:641px) {
  .l-ft-contact {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }
  .l-ft-contact:before {
    height: 80px;
  }
  .l-ft-contact__photo {
    width: 50vw;
    height: 100%;
    position: absolute;
    left: calc(32% - 50vw);
    top: 0;
    overflow: hidden;
  }
  .l-ft-contact__main {
    padding-left: 38%;
    padding-top: calc(var(--block-space-l) + 80px);
  }
}
@media print, screen and (min-width:641px) and (max-width:1000px) {
  .l-ft-contact__photo {
    width: 50%;
    left: -18%;
  }
}
@media screen and (max-width:640px) {
  .l-ft-contact:before {
    height: 60px;
  }
  .l-ft-contact__photo {
    padding-right: 8%;
    height: calc(280 / 640 * 100vw);
    min-height: 180px;
  }
  .l-ft-contact__main {
    padding-top: var(--block-space-l);
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }
  .l-ft-contact__main .txt {
    padding-right: var(--side-space);
  }
  .l-ft-contact .btn {
    padding-top: 1em;
  }
}

/*----------------------------------------------------------------------------------------------------

  Footer
  
----------------------------------------------------------------------------------------------------*/
footer {
  padding: var(--block-space-m) var(--side-space);
  position: relative;
}
.l-ft {
  width: 100%;
  text-align: left;
}
.l-ft__main {
  font-size: var(--fs-s);
}
.l-ft-logo {
  line-height: 1;
}
.l-ft-logo a {
  display: block;
  text-decoration: none;
}
.l-ft-ad {
  padding-top: 1.5em;
}
@media print, screen and (min-width:641px) {
  .l-ft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .l-ft__main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: var(--block-space-min);
  }
  .l-ft-logo {
    width: 25%;
    max-width: 210px;
  }
  .l-ft-ad address .yno {
    display: inline-block;
    margin-right: 1em;
  }
}
@media screen and (max-width:640px) {
  .l-ft__main {
    padding-top: var(--block-space-s);
    padding-bottom: var(--block-space-l);
  }
  .l-ft-logo {
    width: 50%;
    max-width: 180px;
  }
  .l-ft-ad address {
    padding-bottom: 1em;
  }
  .l-ft-ad address .yno {
    display: block;
  }
}

/*--------------------------------------------------------------------------------
  copyright
--------------------------------------------------------------------------------*/
.l-ft__copy {
  font-weight: 300;
  font-size: var(--fs-3s);
  color: rgba(var(--color-gray),1);
}
@media print,screen and (min-width:641px) {
  .l-ft__copy {
    -ms-flex-item-align: end;
    align-self: flex-end;
    text-align: right;
  }
}

/*--------------------------------------------------------------------------------
  Back to top
--------------------------------------------------------------------------------*/
.l-backtoTop-wrap {
  display: none;
  position: fixed;
  top: inherit;
  left: 0;
  bottom: 0;
  z-index: 90;
  width: 100%;
  min-width: var(--PC-min-width);
  pointer-events: none;
  text-align: right;
  margin-top: 0;
}
.l-backtoTop-wrap.is-noFix {
  display: block;
  position: absolute;
  top: -50px;
  bottom: inherit;
  left: 0 !important;
}
.l-backtoTop {
  display: inline-block;
  pointer-events: auto;
  width: 50px;
  height: 50px;
  cursor: pointer;
  margin-right: -webkit-calc(var(--wp-border) - 0.5px);
  margin-bottom: -webkit-calc(var(--wp-border) - 0.5px);
  margin-right: calc(var(--wp-border) - 0.5px);
  margin-bottom: calc(var(--wp-border) - 0.5px);
}
.l-backtoTop-wrap.is-noFix .l-backtoTop {
  margin-right: 0;
  margin-bottom: 0;
}
.l-backtoTop__icon {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #FFF;
  transition: background 0.1s ease-out;
}
.l-backtoTop__icon:after {
  content: "";
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 1px solid rgba(var(--color-blue),1);
  border-left: 1px solid rgba(var(--color-blue),1);
  transform: rotate(45deg);
  margin-top: 0.45rem;
}
@media screen and (max-width:640px) {  
  .l-backtoTop-wrap {
    display: none !important;
  }
}

/*----------------------------------------------------------------------------------------------------

  Zoom
  
----------------------------------------------------------------------------------------------------*/
.l-zoom-bnr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2.5em;
  background-color: #2882F0;
  position: relative;
  color: #FFF;
  line-height: var(--line-height-m);
  white-space: nowrap;
  padding-left: 2.75em;
}
.l-zoom-bnr_ttl:before {
  content: "";
  width: 2em;
  height: 2em;
  background: url("../image/icon/zoomS.svg") no-repeat left center;
  background-size: contain;
  display: inline-block;
  position: absolute;
  left: -1.75em;
  top: 50%;
  transform: translateY(-50%);
}
.l-zoom-bnr_ttl {
  font-weight: 700;
  text-align: left;
  line-height: var(--line-height-s);
  font-size: var(--fs-s);
  padding: 1em 0 1em 1.25em;
	-ms-flex-item-align: center;
	align-self: center;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.l-zoom-bnr_ttl img {
  width: auto;
  height: 0.75em;
  margin-bottom: 0.35em;
  margin-right: 0.5rem;
}
.l-zoom-bnr_btn {
  text-align: right;
  margin-top: auto;
  margin-left: auto;
}
.l-zoom-bnr_btn .inner {
  background-color: #FFF;
  padding: 0.25rem 0.75rem 0.25rem 1rem;
  display: inline-block;
  font-size: var(--fs-3s);
  overflow: hidden;
  position: relative;
  vertical-align: bottom;
}
.l-zoom-bnr_btn .inner:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 3em 2em;
  border-color: transparent transparent transparent #2882F0;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.l-zoom-bnr_btn a {
  display: block;
  padding-left: 1.75em;
}
.l-zoom-bnr_btn a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.25em 0 0.25em 0.4em;
  border-color: transparent transparent transparent #2882F0;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.75rem;
  margin-bottom: 0.15em;
}
.l-zoom-bnr a,
.l-zoom-bnr a:visited,
.l-zoom-bnr a:hover,
.ua-pc .l-zoom-bnr a:hover,
.l-zoom-bnr.js__linkBox:hover a {
  color: #2882F0;
  text-decoration: none;
}

/* Global navigation */
header.is-fix .l-gNav,
header.is-fix .l-PCgNav {
  height: 100%;
}
header.is-fix .l-PCgNav .l-gNav-list {
	-ms-flex-item-align: center;
	align-self: center;
}
header.is-fix .l-PCgNav .l-gNav-list li.l-gNav__home {
  display: none;
}
@media print, screen and (min-width:641px) {
  header:not(.is-fix) .l-zoom-bnr_ttl {
    padding-top: 1.25em;
    padding-bottom: 1.25em;
  }
  .l-gNav-zoom .l-zoom-bnr {
    font-size: var(--fs-s);
  }
  .l-gNav-zoom .l-zoom-bnr_btn {
    padding-left: 6.5em;
  }
  .l-gNav-zoom .l-zoom-bnr_btn .inner {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width:640px) {
  .l-gNav-zoom {
    padding-top: 2em;
    padding-bottom: 0.5em;
  }
  .l-gNav-zoom .l-zoom-bnr {
    width: inherit;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
  }
}

/* footer */
.l-ft-zoom {
  display: none;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 900;
}
.l-ft-zoom .l-zoom-bnr {
  padding-left: 3em;
}
@media print, screen and (min-width:641px) {
  .l-ft-zoom .l-zoom-bnr {
    font-size: var(--fs-m);
  }
  .l-ft-zoom .l-zoom-bnr_ttl {
    font-size: var(--fs-m);
  }
  .l-ft-zoom .l-zoom-bnr_ttl:before {
    content: "";
    width: 1.75em;
    height: 1.75em;
    left: -1.5em;
  }
  .l-ft-zoom .l-zoom-bnr_ttl br {
    display: none;
  }
}
@media screen and (max-width:640px) {
  .l-ft-zoom .l-zoom-bnr_ttl {
    font-size: var(--fs-m);
  }
}
@media print, screen and (min-width:441px) and (max-width:640px) {
  .l-ft-zoom .l-zoom-bnr_ttl {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  .l-ft-zoom .l-zoom-bnr_ttl br {
    display: none;
  }
}

