@charset 'UTF-8';

body {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}

/* header */
.l-header {
  position: static;
  background-color: #fff;
  height: 90px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .16);
}

.l-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 45px;
  width: 100%;
}

.l-header__logo {
  margin-right: auto;
}

.l-header__logo img {
  width: 130px;
}

.l-hader__sitename {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 23px;
  font-weight: bold;
  color: #00a0e9;
  padding-left: 5%;
}

.l-hader__sitename > span > img {
  width: 40px;
}

.l-header__menu {
  margin-left: auto;
}

.l-header__nav {
  padding-right: 0;
}

.l-header__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.l-header__list > li > a {
  color: #00a0e9;
  font-size: 15px;
  padding: 0;
}

.l-header__list > li:nth-of-type(3):hover {
  background: unset;
}

.l-header__list > li:nth-of-type(3) > a::after {
  display: block;
}

@media (max-width: 768px) {
  .l-header {
    height: 50px;
  }

  .l-header__inner {
    padding: 0 20px;
  }

  .l-header__logo img {
    width: 22px;
  }

  .l-hader__sitename {
    padding-left: 0;
    gap: 6px;
    font-size: 15px;
  }

  .l-hader__sitename > span > img {
    width: 20px;
  }

  .l-header__nav {
    position: absolute;
    top: 50px;
    right: 0;
    left: auto;
    width: 60vw;
    background-color: #E7ECEF;
    z-index: 1;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .16) inset;
  }

  .l-header__list {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }

  .l-header__list > li {
    width: 100%;
    border-top: 0;
    border-bottom: 1px solid #C2C6CA;
  }

  .l-header__list > li:last-of-type {
    border-bottom: 1px solid #C2C6CA;
  }

  .l-header__list > li > a {
    position: relative;
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
  }

  .l-header__list > li > a::after {
    display: block;
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 20px;
    left: auto;
    bottom: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #00a0e9;
    border-bottom: 2px solid #00a0e9;
    transform: rotate(-45deg) translateY(-50%);
    transform-origin: unset;
    background-color: transparent;
  }

  .l-header .c-menu_btn {
    width: 20px;
    height: 20px;
    padding-right: 0;
  }

  .l-header .c-menu_btn span {
    right: 0;
    width: 20px;
    height: 2px;
    background: #00a0e9;
  }

  .l-header .c-menu_btn span:first-of-type {
    top: 2px;
  }

  .l-header .c-menu_btn span:nth-of-type(2)  {
    top: 8px;
  }

  .l-header .c-menu_btn span:nth-of-type(3)  {
    top: 14px;
  }

  .l-header .c-menu_btn.close_btn span:first-of-type,
  .l-header .c-menu_btn.close_btn span:nth-of-type(3) {
    top: 8px;
  }

  .l-header .c-menu_btn.close_btn span:first-of-type {
    transform: rotate(45deg);
  }

  .l-header .c-menu_btn.close_btn span:nth-of-type(3) {
    transform: rotate(-45deg);
  }
}


/* main structure */
.l-main {
  padding-top: 25px;
  position: relative;
  text-align: left;
  line-height: 1.5;
}

.l-main__content {
  margin: auto;
  padding-bottom: 60px;
  max-width: 860px;
}

@media (max-width: 768px) {
  .l-main__content {
    padding: 0 35px 40px;
  }
}

/* bg movie */
.top-main-bg {
  width: 100%;
  height: 100%;
}

.top-main-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* main contents */
.top-main-refresh {
  margin: 0 auto 20px;
  max-width: 1200px;
}

.top-main-refresh__button {
  appearance: none;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 50vh;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  background-color: #00a0e9;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .16);
  transition: opacity .3s ease-in-out;
}

.top-main-refresh__icon {
  width: 16px;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .top-main-refresh__button:is(:hover, :focus) {
    opacity: .7;
    cursor: pointer;
  }  
}

@media (max-width: 768px) {
  .top-main-refresh {
    padding-inline: 35px;
  }

  .top-main-refresh__button {
    gap: 5px;
    font-size: 10px;
    padding: 8px 20px;
  }

  .top-main-refresh__icon {
    width: 12px;
  }
}

.top-main-info {
  display: flex;
  gap: 30px;
  margin-bottom: 36px;
}

.top-main-info__content { 
  width: 420px;
  color: #fff;
  background: rgba(255, 255, 255, 0);
  border-radius: 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(232, 232, 232, 0.25);
}

.top-main-info__name {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 46px;
}

.top-main-info__name::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(232, 232, 232, .28);
}

.top-main-info__logo {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95px;
}

.top-main-info__logo.-logo01 img {
  width: 84px;
}

.top-main-info__logo.-logo02 img {
  width: 95px;
}

.top-main-info__service {
  font-size: 26px;
  flex-grow: 1;
  text-align: center;
}

.top-main-info__list {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 80%;
  margin: auto;
  padding: 50px 10px;
}

.top-main-info__list + .top-main-info__list::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(232, 232, 232, .28);
}

.top-main-info__area {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.top-main-info__area-sub {
  display: block;
  font-size: 16px;
  font-weight: 500
}

.top-main-info__icon {
  flex-shrink: 0;
  padding-left: 20px;
}

.top-main-info__icon img {
  width: 46px;
}

.top-main-info__status {
  flex-grow: 1;
  flex-shrink: 0;
  text-align: center;
}

.top-main-info__status > span {
  display: inline-block;
  line-height: 1;
  border-radius: 50vh;
  font-size: 16px;
  font-weight: bold;
  padding: 3px 8px;
  min-width: 70px;
}

.top-main-info__status.-status01 > span {
  background-color: #fff;
  color: #00a0e9;
}

.top-main-info__status.-status02 > span {
  background-color: #3A4453;
  color: #fff;
}

@media (max-width: 768px) {
  .top-main-info {
    flex-direction: column;
    gap: 15px;
  }

  .top-main-info__content {
    width: 100%;
  }

  .top-main-info__name {
    justify-content: center;
    padding: 15px 35px;
  }

  .top-main-info__logo {
    height: 55px;
  }

  .top-main-info__logo.-logo01 img {
    width: 50px;
  }

  .top-main-info__logo.-logo02 img {
    width: 55px;
  }

  .top-main-info__service {
    font-size: 18px;
  }

  .top-main-info__list {
    width: 83%;
    padding: 25px 0;
  }

  .top-main-info__area {
    font-size: 16px;
  }

  .top-main-info__area-sub {
    font-size: 10px;
  }

  .top-main-info__icon img {
    width: 33px;
  }

  .top-main-info__status > span{
    font-size: 13px;
  }
}

.top-main-lead {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 768px) {
  .top-main-lead {
    padding-inline: 30px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: .05em;
  }
}

/* main footer */
.l-main__footer {
  position: relative;
  padding-block: 40px;
  color: #fff;
  font-size: 11px;
  line-height: 1.5;
  background-color: #555;
  z-index: 1;
}

@media (max-width: 768px) {
  .l-main__footer {
    font-size: 10px;
    padding: 20px;
    word-break: break-all;
  }
}

/* notice */
.top-main-note {
  max-width: 860px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.top-main-note__content {
  width: calc(50% - 16px);
}

@media (max-width: 768px) {
  .top-main-note {
    flex-direction: column;
    gap: 1.5em;
  }

  .top-main-note__content {
    width: 100%;
  }
}

/* utility */
@media (min-width: 769px) {
  .u-disp-small {
    display: none;
  }
}

@media (max-width: 768px) {
  .u-disp-wide {
    display: none;
  }
}