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

  Header
  
----------------------------------------------------------------------------------------------------*/
header {
  width: 100%;
  background-color: #FFF;
  position: relative;
  z-index: 200;
}
.l-hd {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width:641px) {
  header {
    position: relative;
    z-index: 200;
  }
  .l-hd {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
    padding-top: 2.5rem;
    padding-bottom: 0.5rem;
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width:640px) {
  :root {
    --SP-hd-height: 4.5em;
  }
  header {
    width: 100%;
    min-width: var(--SP-min-width);
    z-index: 200;
  }
  header.l-hd--scrollSet {
    position:fixed;
    left: 0;
    top: 0;
  }
  .l-hd--scrollPd {
    padding-top: var(--SP-hd-height);
  }
  header.l-hd--scrollSet.is-upMove {
    animation: hd-up 0.4s forwards;
  }
  header.l-hd--scrollSet.is-downMove {
    animation: hd-down 0.4s forwards;
  }
  html:not(.is-sp-gNav-open) header {
    box-shadow: 0 -5px 15px 0 rgba(0,0,0,0.1);
  }
  .l-hd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: var(--SP-hd-height);
  }
}
@keyframes hd-up {
  from {
  opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@keyframes hd-down {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------------------------
  タイトル
--------------------------------------------------------------------------------*/
.l-hd-ttl {
  text-align: left;
}
@media screen and (min-width:641px) {
  .l-hd-ttl {
    width: 540px;
  }
}
@media screen and (min-width:641px) and (max-width:1240px) {
  .l-hd-ttl {
    width: 47.5%;
  }
}
@media screen and (max-width:640px) {
  .l-hd-ttl {
    width: 100%;
    max-width: 320px;
    padding: 0.5em 0.75em;
  }
}

/*--------------------------------------------------------------------------------
  サイド
--------------------------------------------------------------------------------*/
.l-hd-side {
  line-height: var(--line-height-s);
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.l-hd-side .col {
  text-align: right;
}
.l-hd-side .col:last-of-type {
  margin-top: auto;
  margin-bottom: -0.5rem;
}
@media screen and (max-width:640px) {
  .l-hd-side {
    display: none;
  }
}
@keyframes hd-drpDwn-open {
  0% {
    opacity: 0;
    top: 125%;
  }
  100% {
    opacity: 1;
    top: 150%;
  }
}
@keyframes hd-drpDwn-close {
  0% {
    opacity: 1;
    top: 150%;
  }
  100% {
    opacity: 0;
    top: 125%;
  }
}

/*--------------------------------------------------------------------------------
  サイド > 文字サイズ
--------------------------------------------------------------------------------*/
.l-hd-fsize {
  display: inline-block;
  font-size: 1.3rem; /* 固定 */
  line-height: var(--line-height-s);
  margin-right: 2rem;
  position: relative;
  overflow: hidden;
  vertical-align: top;
}
.l-hd-fsize.is-active, .l-hd-fsize.is-close {
  overflow: visible;
}
.l-hd-fsize__change {
  display: inline-block;
  border-bottom: 1px solid rgba(25,25,25,0.7);
  position: relative;
  padding-bottom: 0.75rem;
  padding-right: 7rem;
  cursor: pointer;
}
.l-hd-fsize__change:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 5px solid rgba(25,25,25,1);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -0.375rem;
}
.l-hd-fsize.is-active .l-hd-fsize__change:after {
  border-top: 0;
  border-bottom: 5px solid rgba(25,25,25,1);
}
.l-hd-fsize__item {
  opacity: 0;
  text-align: left;
  min-width: 100%;
  position: absolute;
  right: 0;
  top: 125%;
  color: rgba(var(--color-lblue),1);
  background-color: rgba(var(--color-lblue),1);
  border: 3px solid rgba(var(--color-lblue),1);
  border-radius: 1.5em;
}
.l-hd-fsize.is-active .l-hd-fsize__item {
  animation: hd-drpDwn-open 0.2s forwards;
}
.l-hd-fsize.is-close .l-hd-fsize__item {
  animation: hd-drpDwn-close 0.2s forwards;
}
.l-hd-fsize__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.l-hd-fsize__item:before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  border-radius: 1.5em;
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: left 0.3s ease-out;
}
body.fs-large .l-hd-fsize__item:before { left: 50%; }
body:not(.fs-large) .l-hd-fsize__item:before { left: 0; }
.l-hd-fsize__list li {
  color: #FFF;
  cursor: pointer;
  padding: 0.4rem 0;
  text-align: center;
  width: 50%;
  position: relative;
  z-index: 1;
}
body.fs-large .l-hd-fsize__list li[data-size="L"] { color: #0FAFE1; }
body:not(.fs-large) .l-hd-fsize__list li[data-size="S"] { color: #0FAFE1; }

/*--------------------------------------------------------------------------------
  サイド > 検索
--------------------------------------------------------------------------------*/
.l-hd-gSearch {
  width: 3.3rem;
  height: 3.3rem;
  margin-top: -0.5rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: top;
  line-height: var(--line-height-s);
}
.l-hd-gSearch.is-active, .l-hd-gSearch.is-close {
  overflow: visible;
}
.l-hd-gSearch__btn {
  font-size: 0;
  display: block;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #FFE164;
  background-image: url(../image/icon/search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 45%;
  transition: background 0.2s ease-out;
}
.l-hd-gSearch.is-active .l-hd-gSearch__btn {
  background-color: rgba(25,25,25,1);
  background-image: url(../image/icon/close_white.svg);
  background-size: auto 32%;
}
.l-hd-gSearch__item {
  opacity: 0;
  text-align: left;
  position: absolute;
  right: 0;
  top: 120%;
}
.l-hd-gSearch.is-active .l-hd-gSearch__item {
  animation: hd-drpDwn-open 0.2s forwards;
}
.l-hd-gSearch.is-close .l-hd-gSearch__item {
  animation: hd-drpDwn-close 0.2s forwards;
}
.gsc-control-cse { padding: 1rem !important; }
.gsc-search-box-tools { margin: 0 !important; }
.gsc-input-box { padding: 5px 0 !important; }
.gsib_b { height: auto !important; }
input.gsc-input { vertical-align: middle !important; }

/* 検索結果 */
.gsc-results-wrapper-overlay {
  width: calc(100% - (var(--side-space) * 2)) !important;
  left: 50% !important;
  background-color: #FFF !important;
}
@media print, screen and (min-width:641px) {
  .gsc-results-wrapper-overlay {
    height: calc(100% - var(--side-space)) !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width:640px) {
  .gsc-results-wrapper-overlay {
    height: calc((100% - var(--side-space)) - var(--SP-hd-height)) !important;
    top: calc(var(--SP-hd-height) + (var(--side-space) / 2)) !important;
    transform: translateX(-50%);
  }
}

/* PC */
.l-hd-gSearch__item {
  width: 360px;
}
@media print, screen and (min-width:641px) {
  .l-SPgSearch {
    display: none;
  }
}
/* SP */
.l-SPgSearch {
  padding-top: 1em;
  padding-bottom: 1em;
}
.l-SPgSearch form {
  width: 100%;
}

/*--------------------------------------------------------------------------------
  サイド > サブナビ
--------------------------------------------------------------------------------*/
.l-hd-snav {
  list-style: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: -webkit-inline-flex;
  display: inline-flex;
  font-weight: 300;
  font-size: 1.4rem; /* 固定 */
}
.l-hd-snav li {
  margin-right: 2rem;
}
.l-hd-snav a,
.l-hd-snav a:visited,
.l-hd-snav a:hover {
  color: var(--font-color);
  text-decoration: none;
}
.ua-pc .l-hd-snav a:hover {
  color: var(--fc-link);
}

/*--------------------------------------------------------------------------------
  サイド > TEL
--------------------------------------------------------------------------------*/
.l-hd-tel {
  font-size: 2.5rem; /* 固定 */
  font-weight: 500;
}
.l-hd-tel a[href^="tel:"] {
  color: inherit;
}
.l-hd-tel small {
  font-size: var(--fs-min);
}

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

  Global navigation
  
----------------------------------------------------------------------------------------------------*/
.l-gNav-list {
  list-style: none;
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-s);
}
.l-gNav-list a,
.l-gNav-list a:visited,
.l-gNav-list a:hover {
  color: var(--font-color);
  text-decoration: none;
}
.l-gNav-list > li > a {
  font-size: var(--fs-ms);
}
.l-gNav-list a {
  display: block;
}
.l-gNav-list > li.parent.is-active > a {
  color: var(--fc-link);
}

/* second */
.l-gNav-secondList {
  list-style: none;
  font-weight: 300;
}
.l-gNav-second__body .item .ttl,
.l-gNav-second__body .item .ttl a {
  color: var(--fc-link);
}
@media print, screen and (min-width:641px) {
  .l-gNav {
    background-color: #FFF;
    border-bottom: 1px solid rgba(25,25,25,0.06);
    position: relative;
    z-index: 90;
  }
  .l-gNav.set-ani {
    transition: background 0.3s ease-out;
  }
  .l-gNav--fixSet.is-fix {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 900;
    width: 100%;
    min-width: var(--PC-min-width);
    box-shadow: 0 -5px 15px 0 rgba(0,0,0,0.1);
    border-bottom: 0;
  }
  .l-gNav--fixSet.is-fix .l-gNav-list > li {
    font-size: 1em;
  }
  .l-gNav {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }
  .l-gNav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-gNav-list > li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .l-gNav-list > li > a {
    padding: 2.5rem 1.5rem;
  }
  .l-gNav--fixSet.is-fix .l-gNav-list > li > a {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
  .l-gNav.set-ani .l-gNav-list > li > a {
    transition: color 0.15s ease-out, opacity 0.15s ease-out;
  }
  .l-gNav--fixSet.is-fix .l-gNav-list > li > a {
    transition: font-size 0.15s ease-out, padding 0.15s ease-out;
  }

  /* second */
  .l-gNav-second {
    display: none;
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    text-align: left;
    background-color: #FFF;
    border-top: 1px solid rgba(25,25,25,0.06);
  }
  .l-gNav-second__body {
    opacity: 0;
    max-width: var(--base-width);
    margin-left: auto;
    margin-right: auto;
    box-sizing: content-box;
    padding-left: var(--side-space);
    padding-right: var(--side-space);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .l-gNav-second.is-active .l-gNav-second__body {
    animation: gNav-open__ct 0.3s forwards;
    animation-delay: 0.15s;
  }
  .l-gNav-second.is-close .l-gNav-second__body {
    animation: gNav-close__ct 0.15s forwards;
  }
  .l-gNav-second__body .photo {
    width: 25%;
    min-height: 300px;
  }
  .l-gNav-second__body .photo img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit:cover;"
  }
  .l-gNav-second__body .item {
    width: 75%;
    padding-left: 60px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .l-gNav-second__body .item .ttl {
    font-size: var(--fs-l);
    font-weight: 400;
    padding-bottom: 20px;
  }
  .l-gNav-secondList {
    font-size: var(--fs-s);
  }
  .l-gNav-secondList.cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-gNav-secondList.cols > li {
    padding-bottom: 10px;
    padding-left: 40px;
    white-space: normal;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .l-gNav-secondList.cols {
    margin-left: -40px;
  }
  .l-gNav-secondList.cols--2 > li {
    width:50%;
  }
  .l-gNav-secondList.cols--3 > li {
    width:33.333333%;
  }
  .l-gNav-secondList > li > a {
    border-bottom: 1px solid rgba(25,25,25,0.12);
    padding: 1.5rem 0;
  }
  .ua-pc .l-gNav-list > li > a:hover,
  .ua-pc .l-gNav-secondList a:hover {
    color: var(--fc-link);
  }
  .ua-pc .l-gNav-second__body .item .ttl a:hover {
    color: var(--fc-link-hover);
  }
  
  /* サブナビ */
  .l-SPsubgNav-list {
    display: none;
  }

  /* 背景 */  
  .gNav-active-bg {
    background-color: transparent;
    transition: background 0.3s var(--cubic-bezier);
  }
  html.is-gNav-open .gNav-active-bg,
  html.is-gNav-close .gNav-active-bg {
    background-color: rgba(0,0,0,0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
  }
  html.is-gNav-open .gNav-active-bg {
    animation: gNav-open__bg 0.3s forwards;
  }
  
  html.is-gNav-close .gNav-active-bg {
    animation: gNav-close__bg 0.3s forwards;
  }
}
@keyframes gNav-open__ct {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes gNav-close__ct {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes gNav-open__bg {
  0% { background: transparent; }
  100% { background-color: rgba(0,0,0,0.2); }
}

@keyframes gNav-close__bg {
  0% { background-color: rgba(0,0,0,0.2); }
  100% { background: transparent; }
}
@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: #FFF;
  }
  .l-SPgNav {
    pointer-events: auto;
    position: absolute;
    left: 0;
    top: 0;
    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;
    padding-top: var(--SP-hd-height);
  }
  .l-SPgNav__item {
    border-top: 1px solid rgba(25,25,25,0.06);
    opacity: 0;
    overflow-y: auto;
    padding: 0.5em 1.5em 0 1.5em;
    text-align: left;
    transition: padding 0.4s var(--cubic-bezier), opacity 0.6s var(--cubic-bezier);
  }
  .l-SPgNav__item.is-aniSet {
    opacity: 1;
    padding-top: 1em;
  }
  .l-SPgNav__item:after {
    content: "";
    width: 100%;
    height: 1.5em;
    display: block;
  }
  .l-gNav-list > li {
    border-bottom: 1px solid rgba(25,25,25,0.12);
  }
  .l-gNav-list > li > a {
    padding: 1em 0 1em 0.75em;
    font-size: var(--fs-ms);
  }
  .l-gNav-list > li.parent > a {
    padding-right: 3.5em;
    position: relative;
  }
  .l-gNav-list > li.parent > a:before {
    content: "";
    width: 1px;
    height: 35%;
    position: absolute;
    right: 2.5em;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(25,25,25,0.12);
  }
  .l-gNav-list > li.parent > a .icon {
    position: absolute;
    right: 0;
    top: 0;
    line-height: 0;
    display: block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width: 2.5em;
    height: 100%;
  }
  .l-gNav-list > li.parent > a .icon:before,
  .l-gNav-list > li.parent > a .icon:after {
    content: "";
    display: inline-block;
    --width: 30%;
    --height: 1px;
    width: var(--width);
    height: var(--height);
    background: rgba(25,25,25,0.7);
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -webkit-calc(-1 * var(--height) / 2);
    margin-top: calc(-1 * var(--height) / 2);
    margin-left: -webkit-calc(-1 * var(--width) / 2);
    margin-left: calc(-1 * var(--width) / 2);
  }
  .l-gNav-list > li.parent > a .icon:after {
    transition: transform 0.5s var(--cubic-bezier);
    transform-origin: center center;
    transform: rotate(90deg) scale(1,1);
  }
  .l-gNav-list > li.parent.is-active > a .icon:after {
    transform: rotate(90deg) scale(0,1);
  }
  
  /* second */
  .l-gNav-second,
  .l-gNav-second__body .photo,
  .l-gNav-second__body .item .ttl {
    display: none;
  }
  .l-gNav-secondList {
    padding-bottom: 1.5em;
  }
  .l-gNav-secondList > li > a {
    padding: 0.5em 0.5em 0.5em 1.9em;
    position: relative;
  }
  .l-gNav-secondList > li > a:after {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 0;
    height: 0;
    border-left: 5px solid rgba(var(--color-lblue),1);
    border-bottom: 2px solid transparent;
    border-top: 2px solid transparent;
    position: absolute;
    left: 1.1em;
    top: 1.05em;
  }
  
  /* サブナビ */
  .l-SPsubgNav-list {
    list-style: none;
    font-weight: 300;
    padding-top: 1.5em;
    font-size: var(--fs-s);
  }
  .l-SPsubgNav-list a,
  .l-SPsubgNav-list a:visited,
  .l-SPsubgNav-list a:hover {
    color: var(--font-color);
    text-decoration: none;
  }
  .l-SPsubgNav-list > li > a {
    display: block;
    padding: 0.5em 0.75em;
  }
}

/*--------------------------------------------------------------------------------
  SP button
--------------------------------------------------------------------------------*/
@media print, screen and (min-width:641px) {
  .l-gNavBtn {
    display: none;
  }
}
@media screen and (max-width:640px) {
  .l-gNavBtn {
    width: 4em;
    height: var(--SP-hd-height);
    background-color: #FFF;
    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;
  }
  .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: 18px;
    height: 14px;
    transition: all 0.3s ease-out;
  }
  .l-gNavBtn__icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    transition: all 0.3s ease-out;
  }
  .l-gNavBtn__icon span,
  .l-gNavBtn.is-close .l-gNavBtn__icon span {
    background-color: rgba(var(--color-lblue-d),1);
  }
  .l-gNavBtn__icon span:nth-of-type(1) {
    top: 0;
  }
  .l-gNavBtn__icon span:nth-of-type(2) {
    top: 6px;
  }
  .l-gNavBtn__icon span:nth-of-type(3) {
    bottom: 0;
  }
  .l-gNavBtn.is-aniSet .l-gNavBtn__icon span:nth-of-type(1) {
    -webkit-animation: navBtn01 0.4s forwards;
    animation: navBtn01 0.4s forwards;
  }
  .l-gNavBtn.is-aniSet .l-gNavBtn__icon span:nth-of-type(2) {
    transition: opacity 0.2s 0.2s;
    opacity: 1;
  }
  .l-gNavBtn.is-aniSet .l-gNavBtn__icon span:nth-of-type(3) {
    -webkit-animation: navBtn02 0.4s forwards;
    animation: navBtn02 0.4s forwards;
  }
  .l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(1) {
    -webkit-animation: active-navBtn01 0.4s forwards;
    animation: active-navBtn01 0.4s forwards;
  }
  .l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(2) {
    opacity: 0;
  }
  .l-gNavBtn.is-close .l-gNavBtn__icon span:nth-of-type(3) {
    -webkit-animation: active-navBtn03 0.4s forwards;
    animation: active-navBtn03 0.4s forwards;
  }
  html.is-sp-gNav-open .l-gNavBtn:not(.is-aniSet) .l-gNavBtn__icon span:nth-of-type(1) {
    transform: translateY(6px) rotate(45deg);
    animation: none;
  }
  html.is-sp-gNav-open .l-gNavBtn:not(.is-aniSet) .l-gNavBtn__icon span:nth-of-type(3) {
    transform: translateY(-6px) rotate(-45deg);
    animation: none;
  }
}
@keyframes navBtn01 {
  0% {
    transform: translateY(6px) rotate(45deg);
  }
  50% {
    transform: translateY(6px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes navBtn02 {
  0% {
    transform: translateY(-6px) rotate(-45deg);
  }
  50% {
    transform: translateY(-6px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-navBtn01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(6px) rotate(0);
  }
  100% {
    transform: translateY(6px) rotate(45deg);
  }
}
@keyframes active-navBtn03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6px) rotate(0);
  }
  100% {
    transform: translateY(-6px) rotate(-45deg);
  }
}

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

  Contents
  
----------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
  ページタイトル
--------------------------------------------------------------------------------*/
.l-pgTtl-wp {
  width: 100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}
.l-pgTtl {
  width: 100%;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  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;
  position: relative;
  border: 2px solid #DCDCDC;
  margin-bottom: var(--block-space-m);
}
.l-pgTtl .ttl {
  line-height: var(--line-height-m);
  font-weight: 500;
  font-size: var(--fs-3l);
}
.l-pgTtl .lead {
  font-weight: 300;
  font-size: var(--fs-s);
}
.l-pgTtl .ttl,
.l-pgTtl .lead {
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,-1px 1px 0 #FFF, 1px -1px 0 #FFF,0px 1px 0 #FFF,  0-1px 0 #FFF,-1px 0 0 #FFF, 1px 0 0 #FFF;
}
@media print, screen and (min-width:641px) {
  .l-pgTtl {
    padding: var(--box-space-l);
    min-height: 180px;
  }
  .l-pgTtl .lead {
    padding-right: 40%;
    padding-top: 1.5rem;
  }
}
@media screen and (max-width:640px) {
  .l-pgTtl {
    padding: var(--box-space-m);
    min-height: 120px;
  }
  .l-pgTtl .inner {
    min-width: 400px;
  }
  .l-pgTtl .lead {
    padding-right: 30%;
    padding-top: 1rem;
  }
}
@media screen and (max-width:480px) {
  .l-pgTtl {
    min-height: -webkit-calc(120 / 480 * 100vw);
    min-height: calc(120 / 480 * 100vw);
  }
}

/*--------------------------------------------------------------------------------
  パンくずリスト
--------------------------------------------------------------------------------*/
.l-pan {
  padding-top: 2rem;
  padding-left: var(--side-space);
  padding-right: var(--side-space);
}
.l-pan__list {
  width: 100%;
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  list-style: none;
  line-height: 2;
  font-size: var(--fs-3s);
  font-weight: 300;
}
.l-pan__list li {
  display: inline-block;
}
.l-pan__list li:not(:last-child):after {
  content: "";
  display: inline-block;
  --width: 1rem;
  --border: 1px;
  width: var(--width);
  height: var(--width);
  border-width: 0 var(--border) var(--border) 0;
  border-style: solid;
  border-color: rgba(25,25,25,0.7);
  transform: rotate(-45deg) scale(0.5);
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

/*--------------------------------------------------------------------------------
  2column
--------------------------------------------------------------------------------*/
.l-ct-cols {
  text-align: left;
}
@media print, screen and (min-width:641px) {
  .l-ct-cols {
    box-sizing: content-box;
    max-width: var(--base-width);
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: var(--block-space-l);
    padding-bottom: var(--block-space-max);
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }
  .l-ct__main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-left: 5%;
    padding-bottom: var(--block-space-s);
  }
  .l-ct__side {
    width: 22.5%;
    min-width: 220px;
    padding-bottom: var(--block-space-s);
  }
}
@media screen and (max-width:640px) {
  .l-ct__main {
    padding-top: var(--block-space-m);
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }
  .l-ct__side {
    padding-top: var(--block-space-max);
  }
}

/*--------------------------------------------------------------------------------
  2column > side
--------------------------------------------------------------------------------*/
.side-nav-ttl {
  color: #FFF;
  font-weight: 500;
  line-height: var(--line-height-m);
}
.side-nav-ttl a,
.side-nav-ttl .ttl {
  width: 100%;
  display: block;
  background-color: rgba(var(--color-lblue-d),1);
}
.side-nav-ttl a,
.side-nav-ttl a:visited,
.side-nav-ttl a:hover {
  color: #FFF;
  text-decoration: none;
}
@media print, screen and (min-width:641px) {
  .side-nav-ttl {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
  }
  .side-nav-ttl a,
  .side-nav-ttl .ttl {
    min-height: 100px;
    font-size: var(--fs-l);
    text-align: center;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.5rem 1.5rem 1.5rem 2.6rem;
  }
  .ua-pc .side-nav-ttl a:hover {
    background-color: rgba(var(--color-lblue-l),1);
  }
}
@media screen and (max-width:640px) {
  .side-nav-ttl a,
  .side-nav-ttl .ttl {
    font-size: var(--fs-m);
    padding: 0.75em;
  }
}
.side-nav {
  list-style: none;
  line-height: var(--line-height-m);
}
.side-nav a,
.side-nav a:visited,
.side-nav a:hover {
  color: var(--font-color);
  text-decoration: none;
}
.side-nav > li > a {
  display: block;
  background-color: rgba(var(--bgcolor-lblue),1);
  border-bottom: 1px solid rgba(var(--color-lblue),0.3);
  position: relative;
}
.side-nav > li > a:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 0;
  height: 0;
  border-left: 5px solid rgba(var(--color-lblue),1);
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
  position: absolute;
}
@media print, screen and (min-width:641px) {
  .side-nav {
    font-size: var(--fs-s);
  }
  .ua-pc .side-nav a:hover {
    color: var(--fc-link);
    background-color: rgba(var(--bgcolor-lblue),0);
  }
  .side-nav > li > a {
    padding: 1.5rem 1.5rem 1.5rem 2.75rem;
  }
  .side-nav > li > a:after {
    left: 1.5rem;
    top: 1.6em;
  }
  body.fs-large .side-nav > li > a:after {
    top: 1.5em;
  }
}
@media screen and (max-width:640px) {
  .side-nav {
    margin-bottom: -1px;
    position: relative;
    z-index: 1;
  }
  .side-nav > li > a {
    padding: 0.75em 0.75em 0.75em 1.9em;
  }
  .side-nav > li > a:after {
    left: 1.1em;
    top: 1.4em;
  }
}

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

  Footer
  
----------------------------------------------------------------------------------------------------*/
footer {
  margin-top: auto;
}

/*--------------------------------------------------------------------------------
  認定
--------------------------------------------------------------------------------*/
.l-ft-nitei {
  border-top: 1px solid rgba(25,25,25,0.12);
  padding-left: var(--side-space);
  padding-right: var(--side-space);
}
.l-ft-nitei .inner {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
}
.l-ft-nitei-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  font-size: var(--fs-2s);
  line-height: var(--line-height-m);
}
.l-ft-nitei-list .item {
  text-align: center;
}
.l-ft-nitei-list .item p {
  text-align: left;
  margin-top: 2rem;
}
.l-ft-nitei-list .item p a {
  display: inline-block;
  margin-top: 0.5rem;
}
@media print, screen and (min-width:641px) {
  .l-ft-nitei {
    padding-top: var(--block-space-max);
    padding-bottom: var(--block-space-max);
  }
  .l-ft-nitei-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: -4rem;
  }
  .l-ft-nitei-list .item {
    width: 100%;
    padding-left: 4rem;
  }
  .l-ft-nitei-list .item img {
    width: 80%;
    max-width: 180px;
  }
}
@media screen and (max-width:640px) {
  .l-ft-nitei {
    padding-top: var(--block-space-l);
    padding-bottom: var(--block-space-l);
  }
  .l-ft-nitei-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -8%;
  }
  .l-ft-nitei-list .item {
    width: 50%;
    padding-left: 8%;
  }
  .l-ft-nitei-list .item:nth-of-type(n+3) {
    padding-top: var(--block-space-l);
  }
  .l-ft-nitei-list .item img {
    width: 60%;
    max-width: 150px;
  }
}

/*------------------------------------------------------------------------------*/
.l-ft {
  width: 100%;
  background-color: rgba(var(--color-lblue-d),1);
  color: #FFF;
  position: relative;
}
.l-ft__body {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  box-sizing: content-box;
}
@media print, screen and (min-width:641px) {
  .l-ft {
    padding-top: var(--block-space-max);
    padding-bottom: var(--block-space-max);
  }
  .l-ft__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width:640px) {
  .l-ft {
    padding-top: var(--block-space-l);
    padding-bottom: var(--block-space-l);
  }
}

/*--------------------------------------------------------------------------------
  ロゴ・住所・TEL
--------------------------------------------------------------------------------*/
.l-ft-logo {
  line-height: 1;
}
.l-ft-ad address {
  line-height: var(--line-height-m);
  padding-bottom: 0.25rem;
}
.l-ft-ad a[href^="tel:"] {
  color: #FFF;
}
@media print, screen and (min-width:641px) {
  .l-ft-ad {
    width: 42%;
    max-width: 440px;
  }
  .l-ft-ad address {
    padding-top: var(--block-space-m);
    font-size: 1.5rem; /* 固定 */
  }
  .l-ft-ad address .yno {
    display: inline-block;
    margin-right: 1em;
  }
}
@media screen and (max-width:640px) {
  .l-ft-logo img {
    width: 90%;
    max-width: 360px;
  }
  .l-ft-ad address {
    padding-top: 2em;
    font-size: var(--fs-s);
  }
  .l-ft-ad address .yno {
    display: block;
  }
}

/*--------------------------------------------------------------------------------
  サブナビ
--------------------------------------------------------------------------------*/
.l-ftNav-list,
.l-ftSns-list {
  list-style: none;
  line-height: var(--line-height-s);
}
.l-ftNav-list a,
.l-ftNav-list a:visited,
.l-ftNav-list a:hover,
.l-ftSns-list a,
.l-ftSns-list a:visited,
.l-ftSns-list a:hover {
  color: #FFF;
  text-decoration: none;
}
.l-ftSns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-ftSns-list > li > a {
  width: 3.8rem;
  height: 3.8rem;
  display: block;
  border: 1px solid #FFF;
  border-radius: 50%;
}
.l-ftSns-list > li > a.p-icon:before {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: auto 44%;
}
.l-ftSns-list > li > a.p-icon[icon="youtube"]:before,
.l-ftSns-list > li > a.p-icon[icon="tw"]:before{
  background-size: auto 38%;
}
.l-ftSns-list > li > a span {
  display: none;
}
@media print, screen and (min-width:641px) {
  .l-ftNav-list,
  .l-ftSns-list {
    font-size: 1.5rem; /* 固定 */
  }
  .l-ftNav {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 2.5%;
  }
  .l-ftNav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .l-ftNav-list > li {
    margin-left: 2rem;
  }
  .ua-pc .l-ftNav-list a:hover {
    color: #FFF;
    opacity: 0.6;
  }
  .l-ftSns-list {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: var(--block-space-m);
  }
  .l-ftSns-list > li {
    margin-left: 1.5rem;
    margin-top: -0.5rem;
  }
  .ua-pc .l-ftSns-list > li > a:hover {
    background-color: #FFF;
  }
  .ua-pc .l-ftSns-list > li > a:hover.p-icon[icon="youtube"]:before {
    background-image: url("../image/icon/youtube.svg");
  }
  .ua-pc .l-ftSns-list > li > a:hover.p-icon[icon="fb"]:before {
    background-image: url("../image/icon/fb.svg");
  }
  .ua-pc .l-ftSns-list > li > a:hover.p-icon[icon="tw"]:before {
    background-image: url("../image/icon/tw.svg");
  }
  .ua-pc .l-ftSns-list > li > a:hover.p-icon[icon="insta"]:before {
    background-image: url("../image/icon/insta.svg");
  }
}
@media screen and (max-width:640px) {
  .l-ftNav-list,
  .l-ftSns-list {
    font-size: var(--fs-s);
  }
  .l-ftNav {
    padding-top: 2em;
  }
  .l-ftNav-list {
    margin-top: -0.5em;
  }
  .l-ftNav-list > li > a {
    display: inline-block;
    padding: 0.5em 0;
  }
  .l-ftSns-list {
    padding-top: 2em;
    padding-bottom: 0.5em;
  }
  .l-ftSns-list > li:not(:first-of-type) {
    margin-left: 1em;
  }
}

/*--------------------------------------------------------------------------------
  copyright
--------------------------------------------------------------------------------*/
.l-ft-copy {
  line-height: 1;
  font-weight: 300;
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  box-sizing: content-box;
  text-align: left;
}
@media print,screen and (min-width:641px) {
  .l-ft-copy {
    max-width: var(--base-width);
    margin-left: auto;
    margin-right: auto;
    padding-top: var(--block-space-m);
    font-size: 1.3rem; /* 固定 */
  }
}
@media screen and (max-width:640px) {
  .l-ft-copy {
    padding-top: 2.5em;
    font-size: var(--fs-3s);
  }
}

/*--------------------------------------------------------------------------------
  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: -45px;
  bottom: inherit;
  left: 0 !important;
}
.l-backtoTop {
  display: inline-block;
  pointer-events: auto;
  width: 45px;
  height: 45px;
  cursor: pointer;
}
.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: rgba(var(--color-lblue-d),0.6);
  transition: background 0.2s ease-out;
}
.l-backtoTop-wrap.is-noFix .l-backtoTop__icon {
  background-color: rgba(var(--color-lblue-d),1);
}
.l-backtoTop__icon:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #FFF;
}
@media print,screen and (min-width:641px) {
  .ua-pc .l-backtoTop__icon:hover {
    background-color: rgba(var(--color-lblue-d),1);
  }
}
@media screen and (max-width:640px) {  
  .l-backtoTop-wrap {
    display: none !important;
  }
}
