@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  共通

---------------------------------*/
#globalContainer {}
:root {
  --main-c: #245A75;
  --sub-c: #EDEDED;
  --higasi: #43BB54;
  --nishi: #F38B25;
  --douhata: #27B9CB;
  --nisioosima: #E04242;
  --kouennisi: #F7F3F0;
  --tiiki: #E3532C;
  --tabiko: #EFBF57;
}
/*---------------------------------

  header

---------------------------------*/
header {}
header .wrap {}
header .wrap #logo {
  background: url("../images/header_deco.svg") no-repeat bottom/100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 14rem;
}
header .wrap #logo a {
  display: block;
  margin: 0 auto;
  margin-bottom: 1rem;
  max-width: 50rem;
  width: 70%;
}
header .wrap #logo a img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 896px) {
  header .wrap #logo {
    height: 10rem;
  }
  header .wrap #logo a {
    margin-bottom: 3rem;
    max-width: 45rem;
  }
}
@media screen and (max-width: 480px) {
  header .wrap #logo a {
    margin-bottom: 4rem;
    max-width: 25rem;
  }
}
/*---------------------------------
  グローバルナビゲーション
---------------------------------*/
header #gnav {
  background: #fff;
  padding: 2rem 0;
}
header #gnav .gnav ul {
  display: flex;
  margin: auto;
  max-width: 1400px;
  width: 100%;
}
header #gnav .gnav ul li {
  flex-basis: calc(100%/7);
  font-size: 1.15em;
  font-weight: 500;
  text-align: center;
}
header #gnav .gnav ul li a {
  color: #333;
  display: grid;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  height: 100%;
  padding: 2rem .5rem;
}
header #gnav .gnav ul li a span {}
header #gnav .gnav ul li a:hover {
  background: #f3f3f3;
  color: #754c24;
  opacity: 1;
}
header #gnav .gnav ul li.PCnone {
  display: none;
}
@media screen and (max-width: 1440px) {
  header #gnav .gnav ul li {
    font-size: 1.1em;
  }
  header #gnav .gnav ul li a span {
    display: inline-block;
  }
}
@media screen and (max-width: 896px) {
  header #gnav .gnav ul li {
    font-size: 1em;
  }
  header #gnav .gnav ul li a span {
    display: block;
  }
}
@media screen and (max-width: 580px) {
  .navToggle {
    background: var(--main-c);
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    position: fixed;
    top: .5rem;
    right: .5rem;
    z-index: 100;
    display: block;
    width: 6rem;
    height: 6rem;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    text-align: center;
  }
  .navToggle::after {
    content: 'MENU';
    font-size: 1rem;
    line-height: 1;
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
  }
  .navToggle span {
    background: #fff;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 2px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navToggle span:nth-of-type(1) {
    top: 10px;
  }
  .navToggle span:nth-of-type(2) {
    top: 20px;
  }
  .navToggle span:nth-of-type(3) {
    top: 30px;
  }
  .navToggle.active::after {
    content: 'CLOSE';
  }
  .navToggle.active span:nth-of-type(1) {
    display: none;
  }
  .navToggle.active span:nth-of-type(2) {
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 20px;
    right: 0;
  }
  .navToggle.active span:nth-of-type(3) {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 20px;
    right: 0;
  }
  .overlay {
    background: #91afd2bd;
    -webkit-backdrop-filter: blur(10px); /* ぼかしエフェクト */
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh);
    display: none;
    z-index: 98;
  }
  .overlay.active {
    display: block;
    animation-name: fade-in;
    animation-duration: .5s;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.panelactive {
    transform: translateZ(0);
    right: 0;
  }
  nav.globalMenuSp {
    background: #fff;
    position: fixed;
    z-index: 99;
    top: 0;
    right: -0%;
    max-width: 35rem;
    width: 100%;
    height: calc(100%);
    transform: translate(45rem);
    transition: all 0.6s;
    padding: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #gnav {
    font-size: 1.1em;
  }
  #gnav .inner {
    padding-top: 7rem;
  }
  header #gnav .gnav ul {
    display: block;
    border-right: none;
    border-top: 1px dotted #ccc;
  }
  header #gnav .gnav ul li {
    border-left: none;
    border-bottom: 1px dotted #ccc;
    text-align: left;
  }
  header #gnav .gnav ul li a {
    display: block;
    padding: 2rem 1rem;
    position: relative;
  }
  header #gnav .gnav ul li a span {
    display: inline;
  }
  header #gnav .gnav ul li a:hover {}
  header #gnav .gnav ul li a::after {
    content: '';
    background: url("../images/arr.svg") no-repeat center / 100%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0.5em;
    bottom: 0;
    width: 1.2em;
    height: 1.2em;
  }
  header #gnav .gnav ul li.PCnone {
    display: block;
  }
}
/*---------------------------------

	サブページheader

---------------------------------*/
.page header {
  border-bottom: 1px solid #ccc;
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.page header #gnav {
  padding: 0;
}
.page header #gnav .gnav ul li {
  border-left: 1px solid #ccc;
}
.page header #gnav .gnav ul li:last-child {
  border-right: 1px solid #ccc;
}
.page header #gnav .gnav ul li a {
  border-bottom: 4px solid #ccc;
}
header #gnav .gnav ul li._higasi a {
  border-color: var(--higasi);
}
header #gnav .gnav ul li._nishi a {
  border-color: var(--nishi);
}
header #gnav .gnav ul li._douhata a {
  border-color: var(--douhata);
}
header #gnav .gnav ul li._nisioosima a {
  border-color: var(--nisioosima);
}
header #gnav .gnav ul li._kouennisi a {
  border-color: var(--kouennisi);
}
header #gnav .gnav ul li._tiiki a {
  border-color: var(--tiiki);
}
header #gnav .gnav ul li._life a {
  border-color: var(--tabiko);
}
@media screen and (max-width: 580px) {
  .page header #gnav .gnav ul li, .page header #gnav .gnav ul li:last-child {
    border: none;
    border-bottom: 1px dotted #ccc;
  }
  .page header #gnav .gnav ul li a {
    border-bottom: none;
  }
  header #gnav .gnav ul li a {
    border-left: 3px solid #ccc;
  }
}
/*---------------------------------

	footer

---------------------------------*/
footer {
  border-top: 1px solid #ccc;
  padding: 5rem 0 7rem;
  text-align: center;
}
footer .wrap {
  margin: auto;
  max-width: 120rem;
  width: 90%;
}
footer .wrap .foBox {
  margin-bottom: 5rem;
}
footer .wrap .foBox p {
  font-size: 1.2em;
  font-weight: 700;
}
footer .wrap .foBox address {
  font-size: .9em;
  font-style: normal;
}
footer .wrap .copylight {
  font-size: .7em;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  footer::before {
    width: 100%;
  }
  footer::after {
    height: 85%;
    width: 100%;
  }
  footer .wrap {
    display: block;
    text-align: center;
  }
  footer .wrap .copylight {
    margin-top: 2rem;
  }
}
/*---------------------------------

	pagetop

---------------------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
#page-top a {
  background: #333;
  text-decoration: none;
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
}
#page-top a .arrow {
  display: block;
}
#page-top a .arrow::before {
  content: '';
  width: 10px;
  height: 6px;
  background: url("../images/pagetop_arrow.svg") no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s;
}
#page-top a:hover {
  opacity: 1;
  text-decoration: none;
  background: #aaa;
}
#page-top a:hover .arrow::before {
  top: -10px;
}