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


  common.css


------------------------------------------------------------*/
/*============================================================
  btn-link
============================================================*/
.btn-link {
  display: inline-block;
  min-width: 16rem;
  text-align: center;
  border-radius: 10rem;
  border: 1px solid transparent;
  padding: 1.36em 2em 1.36em 2.4em;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.btn-link.cl-kachi {
  color: #fff;
  background-color: #003847;
}

.btn-link.cl-wht {
  color: #003847;
  background-color: #fff;
}

.btn-link .icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke-width: 1px;
  margin-left: 0.8rem;
}

.btn-link .icon-arrow {
  vertical-align: -16%;
}

.btn-link.cl-kachi .icon {
  stroke: #fff;
}

.btn-link.cl-wht .icon {
  stroke: #003847;
}

.btn-link.cl-kachi-frame {
  color: #003847;
  background-color: transparent;
  border-color: #003847;
}

.btn-link.cl-wht-frame {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}

.btn-link.cl-kachi-frame .icon {
  stroke: #003847;
}

.btn-link.cl-wht-frame .icon {
  stroke: #fff;
}

@media (hover: hover) {
  .btn-link:hover {
    border: 1px solid;
    background-color: transparent;
  }

  .btn-link.cl-kachi:hover {
    color: #003847;
    border-color: #003847;
  }

  .btn-link.cl-wht:hover {
    color: #fff;
    border-color: #fff;
  }

  .btn-link.cl-kachi:hover .icon {
    stroke: #003847;
  }

  .btn-link.cl-wht:hover .icon {
    stroke: #003847;
  }

  .btn-link.cl-kachi-frame:hover {
    color: #fff;
    background-color: #003847;
  }

  .btn-link.cl-wht-frame:hover {
    color: #003847;
    background-color: #fff;
  }

  .btn-link.cl-kachi-frame:hover .icon {
    stroke: #fff;
  }

  .btn-link.cl-wht-frame:hover .icon {
    stroke: #003847;
  }
}


/*============================================================
  btn-close
============================================================*/
.btn-close {
  display: block;
  width: 2rem;
  height: 2rem;
  position: relative;
}

.btn-close::before,
.btn-close::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background-color: #003847;
  margin: auto 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.btn-close::before {
  transform: rotate(45deg);
}

.btn-close::after {
  transform: rotate(-45deg);
}

@media (hover: hover) {
  .btn-close:hover .text-btn {
    text-decoration: underline;
    text-decoration-thickness: 0.8px;
    text-underline-offset: 0.2em;
    text-decoration-color: rgba(0,0,0,0.4);
  }
}


/*============================================================
  text link
============================================================*/
.text-link {
  text-decoration: none;
  text-decoration-thickness: 0.8px;
  text-underline-offset: 0.4em;
  text-decoration-color: transparent;
}

@media (hover: hover) {
  .text-link:hover {
    text-decoration: underline;
    text-decoration-color: rgba(0,56,71,0.4);
  }

  .text-link.cl-wht:hover {
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.4);
  }
}


/*============================================================
  list style
============================================================*/
.list-disc {
  padding-left: 1.4em;
}

.list-disc > li {
  list-style-type: disc;
  list-style-position: outside;
}

.list-disc > li + li {
  margin-top: 1em;
}

.list-notes {
  padding-left: 1em;
}

.list-notes > li {
  list-style-position: outside;
  text-indent: -1em;
}

.list-notes > li::before {
  content:"※";
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.list-notes > li + li {
  margin-top: 0.4em;
}


/*============================================================
  module-slide
============================================================*/
.module-slide {
  position: relative;
}

.module-slide .group-slide-body {
  font-size: 0;
  white-space: nowrap;
  position: relative;
  z-index: 0;
}

.module-slide .group-slide-body .list-slide {
  display: inline-block;
  position: relative;
}

.module-slide .group-slide-body .list-slide > li {
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 0;
}

.module-slide .group-slide-body .list-slide > li.selected,
.module-slide .group-slide-body .list-slide > li.current {
  opacity: 1;
}

.module-slide .group-slide-body .list-slide > li.current {
  z-index: 1;
}

.module-slide .group-slide-body .list-slide > li.prev {
  left: 0;
}

.module-slide .group-slide-body .list-slide > li.next {
  right: 0;
}

.module-slide .group-slide-body .list-slide > li .group-slide-item {
  position: absolute;
  top: 0;
}

.module-slide .group-slide-body .list-slide > li.next .group-slide-item {
  right: 0;
}

.module-slide .group-slide-body .list-slide > li.prev .group-slide-item {
  left: 0;
}

/*  indicator
--------------------------------------------------*/
.module-slide .group-slide-indicator {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: absolute;
  right: 4rem;
  bottom: -2.4rem;
  z-index: 1;
}

.module-slide .group-slide-indicator button {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #003847;
  border-radius: 0.3rem;
  position: relative;
  opacity: 0.2;
  cursor: default;
}

.module-slide .group-slide-indicator button.current {
  width: 1.8rem;
  opacity: 1;
}

@media (max-width: 768px) and (orientation: portrait) {
  .module-slide .group-slide-indicator {
    gap: 0.64rem;
    right: 2.4rem;
  }
}

/*  button
--------------------------------------------------*/
.module-slide .group-slide-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin: auto 0;
  position: absolute;
  right: 8rem;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.module-slide .group-slide-button .btn-prev,
.module-slide .group-slide-button .btn-next {
  display: block;
  width: 8rem;
  height: 8rem;
  background-color: rgba(255,255,255,0.88);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}

.module-slide .group-slide-button .btn-prev .icon,
.module-slide .group-slide-button .btn-next .icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: #003847;
}

.module-slide .group-slide-button .btn-prev .icon {
  transform: scaleX(-1);
}

@media (max-width: 768px) and (orientation: portrait) {
  .module-slide .group-slide-button {
    gap: 0.8rem;
    right: 4.8rem;
  }

  .module-slide .group-slide-button .btn-prev,
  .module-slide .group-slide-button .btn-next {
    width: 4.8rem;
    height: 4.8rem;
  }

  .module-slide .group-slide-button .btn-prev .icon,
  .module-slide .group-slide-button .btn-next .icon {
    width: 0.8rem;
    height: 0.8rem;
  }
}


/*============================================================
  module-popup
============================================================*/
.module-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0,56,71,0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: fixed;
  opacity: 0;
  left: -100%;
  top: 0;
  z-index: 20;
}

.module-popup.in {
  opacity: 1;
  left: 0;
}

.module-popup .btn-close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  z-index: 1;
}


/*============================================================
  loading
============================================================*/
#loading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
}

#loading .text-catch {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  color: #a8a8a8;
  overflow-x: hidden;
}

#loading .text-catch > span {
  display: inline-block;
  overflow: hidden;
}

#loading .text-catch > em {
  color: #003847;
}

#loading .loader {
  width: 2.4rem;
  height: 2.4rem;
  margin: auto;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}


/*============================================================
  header
============================================================*/
#header {
  width: 100%;
  height: 15.2rem;
  background-color: rgba(255,255,255,0);
  padding: 0 8rem;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}

#header:not(.active) {
  mix-blend-mode: multiply;
}

#header .nav-header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

#header .logo-fsto {
  display: inline-block;
}

#header .logo-fsto .logo {
  width: auto;
  height: 4rem;
  fill: #003847;
}

#header .list-menu {
  display: inline-block;
  font-size: 0;
  letter-spacing: 0;
}

#header .list-menu > li {
  display: inline;
}

#header .list-menu > li + li {
  margin-left: 2.4rem;
}

#header .list-menu > li > a {
  display: inline-block;
  color: #003847;
  font-size: 1.4rem;
  white-space: nowrap;
}

#header .btn-menu {
  display: none;
}

@media (max-width: 768px) and (orientation: portrait) {
  #header {
    height: 8rem;
    padding: 0 2.4rem;
    opacity: 1;
    transform: none;
  }

  #header.active .logo-fsto .logo {
    fill: #fff;
  }

  #header .list-menu {
    display: none;
    width: 100%;
    background-color: rgba(0,56,71,0.98);
    padding: 8rem 0 1.6rem;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }

  #header .list-menu > li {
    display: block;
    text-align: center;
    padding: 1.6rem;
  }

  #header .list-menu > li + li {
    margin-left: 0;
  }

  #header .list-menu > li > a {
    color: #fff;
  }

  #header .btn-menu {
    display: block;
    width: 2.4rem;
    height: 6rem;
  }

  #header .btn-menu::before,
  #header .btn-menu::after {
    content: "";
    display: block;
    width: 2.4rem;
    height: 1px;
    background-color: #003847;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }

  #header .btn-menu::before {
    transform: translateY(-0.24rem);
  }

  #header .btn-menu::after {
    transform: translateY(0.24rem);
  }

  #header .btn-menu.active::before {
    background-color: #fff;
    transform: rotate(45deg);
  }

  #header .btn-menu.active::after {
    background-color: #fff;
    transform: rotate(-45deg);
  }
}


/*============================================================
  footer
============================================================*/
#footer {
  display: flex;
  align-items: center;
  justify-content: right;
  width: 100%;
  height: 16.8rem;
  position: relative;
  z-index: 8;
}

#front #footer {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 768px) and (orientation: portrait) {
  #footer {
    justify-content: center;
    height: 8.8rem;
  }
}
