@charset "UTF-8";
/* CSS Document */
/*---------------------------------
  common
---------------------------------*/
#globalContainer {}
:root {
  --base-col: #444;
  --hover-col: #288497;
  --bg-col: #fbf7f4;
  --grd-gb: linear-gradient(135deg, #16B39B 0%, #0095D9 100%);
  --grd-yo: linear-gradient(135deg, #f5e1a6 0%, #fbcbae 100%);
  --grd-or: linear-gradient(135deg, #f9884f 0%, #df644e 100%);
}
/*---------------------------------

  header

---------------------------------*/
header {
  padding: 3rem 2.5%;
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 8rem);
  gap: 3rem;
}
header #logo {
  width: 35rem;
}
header #logo img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1280px) {
  header #logo {
    width: 26rem;
  }
}
@media screen and (max-width: 1024px) {
  header #logo {
    width: 18rem;
  }
}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------
  グローバルナビゲーション（PCのみ）
---------------------------------*/
#pc-gnav {
  font-weight: 700;
}
#pc-gnav ul {
  display: flex;
}
#pc-gnav ul li a {
  color: var(--base-col);
  display: flex;
  align-items: center;
  gap: .6rem;
}
#pc-gnav ul li a:hover {
  color: var(--hover-col);
}
#pc-gnav ul li a .i {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
}
#pc-gnav ul.main {
  font-size: 2.2rem;
  gap: 3rem;
  padding: 1rem 0;
}
#pc-gnav ul.main li a .i._guide {
  background-image: url("../images/m_i_guide.svg");
}
#pc-gnav ul.main li a .i._facility {
  background-image: url("../images/m_i_facility.svg");
}
#pc-gnav ul.main li a .i._search {
  background-image: url("../images/m_i_search.svg");
}
#pc-gnav ul.main li a .i._kids {
  background-image: url("../images/m_i_child.svg");
}
#pc-gnav ul.main li a .i._faq {
  background-image: url("../images/m_i_faq.svg");
}
#pc-gnav ul.sub {
  border-bottom: 1px solid #ccc;
  justify-content: flex-end;
  align-items: center;
  column-gap: 2rem;
  padding-bottom: 1.5rem;
}
#pc-gnav ul.sub li {
  line-height: 1;
}
#pc-gnav ul.sub li a .i._sitemap {
  background-image: url("../images/m_i_sitemap.svg");
}
#pc-gnav ul.sub li._lang {
  border-left: 1px solid #ccc;
  padding-left: 2rem;
  position: relative;
}
#pc-gnav ul.sub li._lang > a {
  background: url("../images/down_arr.svg") no-repeat center right/.8rem;
  padding-right: 1em;
}
#pc-gnav ul.sub li._lang a .i {
  background-image: url("../images/m_i_lang.svg");
  width: 1.6rem;
}
#pc-gnav ul.sub li._lang ._lang_list {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 1rem;
  display: none;
  flex-direction: column;
  padding: 1rem;
  position: absolute;
  top: 1.5em;
  right: -.3em;
  z-index: 2;
  width: fit-content;
}
#pc-gnav ul.sub li._lang ._lang_list li a {
  padding: .5rem;
}
#pc-gnav ul.sub li._lang ._lang_list li a:hover {
  color: var(--hover-col);
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1280px) {
  #pc-gnav ul.main {
    font-size: 2.1rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  #pc-gnav ul.main {
    font-size: 1.8rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 896px) {
  #pc-gnav {
    display: none;
  }
}
@media screen and (max-width: 480px) {}
/*---------------------------------
  グローバルナビゲーション（トグル）
---------------------------------*/
#gnav {}
.navToggle {
  background: #16B39B;
  background: var(--grd-gb);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 2.5%;
  right: 2%;
  z-index: 9999;
  width: 7rem;
  height: 7rem;
  transition: all 0.3s;
}
.navToggle:hover {}
.navToggle .menuTtl {
  padding: 0 0 2.5rem;
  position: relative;
}
.navToggle .menuTtl::before {
  content: '';
  background: url("../images/toggle_menu.svg") no-repeat center/contain;
  display: block;
  width: 2.4rem;
  height: .7rem;
}
.navToggle span {
  background: #fff;
  border-radius: 2rem;
  display: block;
  margin: auto;
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.navToggle span:nth-of-type(1) {
  bottom: 0;
}
.navToggle span:nth-of-type(2) {
  bottom: 8px;
}
.navToggle span:nth-of-type(3) {
  bottom: 16px;
}
.navToggle.active span {
  bottom: 8px;
}
.navToggle.active span:nth-of-type(2) {
  display: none;
}
.navToggle.active span:nth-of-type(1) {
  -moz-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
}
.navToggle.active span:nth-of-type(3) {
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 0;
}
#gnav .overlay {
  background: rgba(255, 255, 255, .6);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh);
  display: none;
  z-index: 998;
}
#gnav .overlay.active {
  display: block;
  animation-name: fade-in;
  animation-duration: .5s;
}
#g-nav {
  background: #fff;
  border-top-left-radius: 10rem;
  position: fixed;
  z-index: -1;
  opacity: 0;
  right: 0;
  top: 0;
  width: 70%;
  height: 100vh;
  transition: all 0.3s;
}
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}
nav.gnav .inner {
  margin: auto;
  max-width: 88rem;
  padding: 10rem 0 5rem;
  width: 85%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
nav.gnav .inner::-webkit-scrollbar {
  display: none;
}
nav.gnav ._logo {
  max-width: 30rem;
  margin-bottom: 7rem;
}
nav.gnav ul li a {
  color: var(--base-col);
  display: block;
  font-weight: 500;
  font-feature-settings: "palt";
}
nav.gnav ul li a:hover {
  color: var(--hover-col);
}
/*------ メインメニュー */
nav.gnav ._main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1.5rem;
}
nav.gnav ._main > li > a {
  color: var(--base-col);
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  gap: 1.2rem;
}
nav.gnav ._main li a .i {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 3rem;
  height: 3rem;
}
nav.gnav ._main li a .i._guide {
  background-image: url("../images/m_i_guide.svg");
}
nav.gnav ._main li a .i._facility {
  background-image: url("../images/m_i_facility.svg");
}
nav.gnav ._main li a .i._search {
  background-image: url("../images/m_i_search.svg");
}
nav.gnav ._main li a .i._kids {
  background-image: url("../images/m_i_child.svg");
}
nav.gnav ._main li a .i._faq {
  background-image: url("../images/m_i_faq.svg");
}
nav.gnav ._main li ._child-menu {
  margin-top: 1rem;
  margin-left: 4.2rem;
}
nav.gnav ._main li ._child-menu a:hover {
  text-decoration: underline;
}
nav.gnav ._main li._lang {
  position: relative;
}
nav.gnav ._main li._lang > a {
  background: #eee url("../images/down_arr.svg") no-repeat center right 1em/.8rem;
  border-radius: 5rem;
  padding: .5rem 1em;
  font-size: 2.1rem;
}
nav.gnav ._main li._lang a .i {
  background-image: url("../images/m_i_lang.svg");
  width: 1.6rem;
}
nav.gnav ._main li._lang ._lang_list {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 1rem;
  display: none;
  flex-direction: column;
  padding: 1rem;
  position: absolute;
  top: 2.5em;
  right: 0em;
  z-index: 2;
  width: 100%;
}
nav.gnav ._main li._lang ._lang_list li a {
  font-size: 2.1rem;
  padding: .5rem;
}
nav.gnav ._main li._lang ._lang_list li a:hover {
  color: var(--hover-col);
}
/*------ サブメニュー */
nav.gnav ._sub {
  border-top: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 5rem;
  font-size: 1.1em;
  margin-top: 5rem;
  padding-top: 5rem;
}
nav.gnav ._sub a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1280px) {
  #g-nav {
    border-top-left-radius: 10rem;
    width: 80%;
  }
}
@media screen and (max-width: 1024px) {
  #g-nav {
    border-top-left-radius: 5rem;
    width: 85%;
  }
}
@media screen and (max-width: 896px) {
  .navToggle {
    top: 1.5%;
  }
  nav.gnav ._main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  nav.gnav ._logo {
    max-width: 24rem;
    margin-bottom: 2rem;
  }
  nav.gnav ._main {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  nav.gnav ._main > li > a {
    font-size: 2rem;
    gap: 1rem;
  }
  nav.gnav ._main li ._child-menu {
    margin-top: 0.5rem;
    margin-left: 4rem;
  }
  nav.gnav ._sub {
    gap: 1.4rem 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
  }
}
/*---------------------------------

  flowtingMenu

---------------------------------*/
#flowtingMenu {
  display: none;
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 100;
}
#flowtingMenu ul {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  list-style: none;
  box-shadow: -10px 50px 35px 0 rgba(0, 0, 0, 0.15);
}
#flowtingMenu ul li {
  writing-mode: vertical-rl;
  width: 100%;
}
#flowtingMenu ul li a {
  background: #ccc;
  display: flex;
  align-items: center;
  column-gap: 1rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 1.5rem 1.5rem;
  width: 100%;
}
#flowtingMenu ul li a span.i {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 3rem;
  height: 3rem;
  transition: all .3s;
}
#flowtingMenu ul li._search a {
  background: var(--grd-yo);
  border-top-left-radius: 1rem;
  color: #4d4d4d;
}
#flowtingMenu ul li._search a span.i {
  background-image: url("../images/b_i_search.svg");
  padding: 4rem .5em 0;
}
#flowtingMenu ul li._login a {
  border-bottom-left-radius: 1rem;
  background: var(--grd-gb);
  color: #fff;
}
#flowtingMenu ul li._login a span.i {
  background-image: url("../images/b_i_login.svg");
}
#flowtingMenu ul li a:hover span.i {
  transform: translateY(-.5rem);
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  #flowtingMenu {
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
  }
  #flowtingMenu ul {
    border-radius: 0;
    box-shadow: none;
    display: flex;
  }
  #flowtingMenu ul li {
    writing-mode: horizontal-tb;
    width: 50%;
  }
  #flowtingMenu ul li a {
    justify-content: center;
    height: 100%;
  }
  #flowtingMenu ul li._login a {
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 0;
  }
}
/*---------------------------------

	footer

---------------------------------*/
footer {
  background: #f7f1e5;
}
footer .l-inner {
  margin: 0 auto;
  max-width: 120rem;
  width: 90%;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  padding: 10rem 0;
}
footer .fnav {
  font-weight: 500;
  list-style: none;
}
footer .wrap .infoBox {}
footer .wrap .infoBox .logo {
  max-width: 30rem;
}
footer .wrap .infoBox .logo a {
  display: block;
}
footer .wrap .infoBox .logo img {
  width: 100%;
  vertical-align: bottom;
}
footer .wrap .infoBox address {
  font-style: normal;
  font-weight: 500;
  margin-top: 2rem;
}
footer .wrap .navBox {
  flex-basis: 45rem;
}
footer .wrap .navBox .fnav._main {
  display: grid;
  gap: 1rem;
}
footer .wrap .navBox .fnav._main li {}
footer .wrap .navBox .fnav._main li a {
  background: #fff url("../images/arr_b_b.svg") no-repeat center right 2rem/1.5rem;
  border-radius: .5rem;
  color: var(--base-col);
  display: block;
  padding: 1rem 2rem;
}
footer .wrap .navBox .fnav._main li a:hover {
  background-color: #D1E8EF;
  background-position: center right 1rem;
  color: var(--hover-col);
}
footer .fnav._sub {
  display: flex;
  justify-content: center;
  column-gap: 4rem;
}
footer .fnav._sub li a {
  background: url("../images/arr_s_b.svg") no-repeat center right/.6rem;
  color: var(--base-col);
  display: block;
  padding-right: 1.3em;
}
footer .fnav._sub li a:hover {
  text-decoration: underline;
}
footer .copylight {
  font-size: .8em;
  letter-spacing: 0.1em;
  padding: 5rem 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  footer .wrap {
    display: block;
    gap: 5rem;
    padding: 7rem 0 4rem;
  }
  footer .wrap .navBox .fnav._main {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 480px) {
  footer .wrap {
    gap: 3rem;
    padding: 5rem 0 2rem;
  }
  footer .fnav._sub {
    flex-direction: column;
    gap: 1rem;
  }
  footer .copylight {
    padding: 4rem 0 13rem;
  }
}
/*---------------------------------

	pagetop

---------------------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}
#page-top a {
  background: var(--grd-or);
  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 {}
#page-top a:hover .arrow::before {
  top: -10px;
}
/*---------------------------------

	btn

---------------------------------*/
.btn {
  max-width: fit-content;
}
.btn a {
  background: #fff;
  border: 1px solid #4d4d4d;
  border-radius: 5rem;
  color: var(--base-col);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .9em;
  font-weight: 500;
  padding: .5rem;
}
.btn a span {
  padding: 0 2rem;
}
.btn a::after {
  content: '';
  background: url("../images/arr_b_w.svg"), var(--grd-gb);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem, auto;
  border-radius: 50%;
  display: block;
  width: 2.7rem;
  height: 2.7rem;
}
.btn a:hover {
  box-shadow: 0 .5rem 0 0 rgba(167,151,125,0.3);
  color: var(--hover-col);
  transform: translateY(-.5rem);
}
.btn a:hover::after {}