@charset "UTF-8";
/* scss/module/_index.scss */
@keyframes scroll-float {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}
/* media query */
/* centering */
/* set top position of pseudo element */
/* set pseudo element(no image) */
/* set pseudo element */
/* font set */
/* header */
#header {
  position: fixed;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 1000;
}
#header > .flex {
  height: 80px;
  width: 100%;
  max-width: 1250px;
  padding: 0 15px;
  margin: 0 auto;
  align-items: center;
}
#header > .flex #logo_wrpa {
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header > .flex #logo_wrpa img {
  width: 100%;
}
#header > .flex #navi_lang_wrap {
  align-items: baseline;
}
#header > .flex #navi_lang_wrap #navi {
  background: #18264c;
  border-radius: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  padding: 0 22.5px;
  align-items: center;
  height: 40px;
  -moz-column-gap: 13.5px;
       column-gap: 13.5px;
}
#header > .flex #navi_lang_wrap #navi li {
  padding: 0 12.5px;
}
#header > .flex #navi_lang_wrap #navi li a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1024px) {
  #header > .flex #navi_lang_wrap #navi {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media (max-width: 960px) {
  #header > .flex #navi_lang_wrap #navi {
    display: none;
  }
}
#header > .flex #navi_lang_wrap #lang_wrap {
  margin-left: 20px;
}
#header > .flex #navi_lang_wrap #lang_wrap a {
  font-size: 16px;
  font-weight: bold;
  color: #666;
}
#header > .flex #navi_lang_wrap #lang_wrap a.active {
  color: #F18E2C;
  border-bottom: 1px solid #666;
}
#header > .flex #navi_lang_wrap #lang_wrap a:hover {
  color: #F18E2C;
}
#header > .flex #navi_lang_wrap #lang_wrap a.disabled {
  color: rgba(102, 102, 102, 0.6);
}
#header > .flex #navi_lang_wrap #lang_wrap p {
  margin: 0 10px;
}
#header > .flex .sp-nav {
  position: fixed;
  z-index: 999;
  top: 80px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
  max-height: 0;
  transition: all 0.5s;
}
#header > .flex .sp-nav.active {
  max-height: 100vh;
}
#header > .flex .sp-nav ul {
  width: 100vw;
  height: 100vh;
  overflow: auto;
}
#header > .flex .sp-nav ul li {
  border-top: 0.75px solid #9C9C9C;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding-left: 8px;
}
#header > .flex .sp-nav ul li:last-child {
  border-bottom: 0.75px solid #9C9C9C;
}
#header > .flex .sp-nav ul li a {
  color: #454545;
  text-decoration: none;
  padding: 6px 0;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-weight: bold;
  font-size: 20px;
}
#header > .flex .sp-nav ul li a figure {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}
#header > .flex .sp-nav ul li a figure svg {
  width: 100%;
  height: 100%;
}
#header > .flex .sp-nav ul li a figure circle {
  transition: stroke 0.5s;
}
#header > .flex .sp-nav ul li a figure circle.circle-bg {
  stroke-dasharray: 106.8;
  transition: stroke-dashoffset 0.5s ease, stroke 0.5s ease;
}
#header > .flex .sp-nav ul li a:hover figure circle.circle-bg {
  stroke-dashoffset: -106.8;
}
#header > .flex .sp-nav-btn {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 24px;
  display: none;
}
#header > .flex .sp-nav-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #666666;
  width: 100%;
}
#header > .flex .sp-nav-btn span:first-child {
  top: 0;
}
#header > .flex .sp-nav-btn span:nth-child(2) {
  top: 12px;
}
#header > .flex .sp-nav-btn span:last-child {
  bottom: 0;
}
@media (max-width: 960px) {
  #header > .flex .sp-nav-btn {
    display: block;
  }
}
#header > .flex .sp-nav-btn.active span:first-child {
  top: 6px;
  left: 0;
  transform: translateY(5px) rotate(-45deg);
  width: 100%;
}
#header > .flex .sp-nav-btn.active span:nth-child(2) {
  opacity: 0;
}
#header > .flex .sp-nav-btn.active span:last-child {
  top: 6px;
  left: 0;
  transform: translateY(5px) rotate(45deg);
  width: 100%;
}
#header:not(.top-page) > .flex {
  height: 80px;
}
/* お知らせバナー */
.notice-bnr {
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F0F1F3;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
.notice-bnr.inactive {
  display: none;
}

.notice-bnr__txt {
  font-size: 16px;
  font-weight: bold;
  color: #E9314A;
  text-decoration: underline;
}
.notice-bnr__txt:hover {
  text-decoration: none;
}

.notice-bnr__btn-wrap {
  position: absolute;
  right: 61px;
  top: calc(50% - 14px);
}

.notice-bnr__btn {
  display: block;
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #454545;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
}
.notice-bnr__btn::before, .notice-bnr__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  /* 棒の幅（太さ） */
  height: 15px;
  /* 棒の高さ */
  background: #454545;
  /* バツ印の色 */
}
.notice-bnr__btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.notice-bnr__btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 1050px) {
  .notice-bnr {
    padding: 5px 20px;
  }
  .notice-bnr__btn-wrap {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .notice-bnr {
    justify-content: flex-start;
  }
  .notice-bnr__txt {
    width: calc(100% - 40px);
    font-size: 12px;
    line-height: 1.3;
  }
}