@charset "utf-8";

html {
  font-size: 100%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background-color: #00B4FF;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
}

/*----------------------------------------
ヘッダー
----------------------------------------*/
.header {
  background-color: #fff;
  margin-top: 10px;
}
.header__upper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 220px;
  height: auto;
  line-height: 1px;
  padding: 20px 0;
}
/*--　　【グローバルナビ】　　--*/
.gnavi {
  padding: 30px 0;
  border-bottom: solid 1px #00B4FF;
}
.gnavi__list {
  display: flex;
}
.gnavi__list li {
  margin-left: 25px;
}
.gnavi__list li:first-child {
  margin-left: 5px;
}
.gnavi__list a{
  color: #00B4FF;
}
.gnavi__list a:hover {
  text-decoration: underline 1px;
  text-underline-offset: 5px;
  opacity: 0.7;
  transition: all 0.3s;
}
.gnavi__list-active {
  color: #00b4ff;
  font-weight: bold;
}


/*--------------------------------
メイン
---------------------------------*/
.main {
  background-color: #fff;
  padding: 50px 0;
}
.main .splide__list .splide__slide {
  display: flex;
  justify-content: center;
}

/*----------------------------------
フッター
----------------------------------*/
.footer {
  background-color: #00B4FF;
  color: #fff;
  padding-top: 40px ;
}
.footer-navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 10%;
}
.footer__item a {
  color: #fff;
}
.footer__item a:hover {
  opacity: 0.7;
  text-decoration: underline 1px;
  text-underline-offset: 5px;
  transition: all 0.5s;
}
.footer__categoly {
  font-weight: bold;
  text-decoration: underline 1px;
  text-underline-offset: 5px;
  margin-bottom: 25px;
}
.footer__categoly-nolink {
  text-decoration: none;
}
.footer__item li {
  margin-bottom: 15px;
}
.footer__item li:last-child {
  margin-bottom: 30px;
}
.footer__logo {
  width: 200px;
  margin: 0 auto;
}
.footer__copyright {
  font-size: 0.75rem;
  text-align: center;
  padding: 15px;
}

/*------------------------------------
PAGE-TOP
---------------------------------*/
.page-top {
  display: none;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 1;
}
.page-top__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
  border-radius: 50%;
  background: #26BFFF;
  cursor: pointer;
}

.page-top__icon {
  font-size: 30px;
}

.page-top__link:hover {
  opacity: 0.8;
}



/*--------------------------------------
チェックリスト
-------------------------------------*/
.checklist__title {
  text-align: center;
}
.checklist__title img:first-child {
  margin-bottom: 10px;
}
.checklist__contents img {
  margin-top: 50px;
}
.checklist__contents img:last-child {
  margin-bottom: 100px;
}


/*======================================================
SP
===============================================*/
@media screen and (max-width: 767px) {

  .container {
    padding: 0;
  }
  
  /*----------------------------------------
  ヘッダー
  ----------------------------------------*/
  .header__upper {
    flex-direction: column;
  }
  .header__logo {
    width: 250px;
    height: auto;
    padding: 25px 0;
  }

  /*--　　【グローバルナビ】　　--*/
  .gnavi {
    padding: 0;
  }
  .gnavi__list {
    width: 100vw;
    justify-content: space-between;
    padding: 0 5px 10px 5px;
  }
  .gnavi__list li {
    margin-left: 0;
  }
  .gnavi__list li:first-child {
    margin-left: 0;
  }
  
  
  /*--------------------------------
  メイン
  ---------------------------------*/
  .main {
    padding: 0;
  }
  
  /*----------------------------------
  フッター
  ----------------------------------*/
  .footer-navi {
    flex-direction: column;
    padding: 0;
  }
  .footer__item {
    display: flex;
  }
  .footer__categoly {
    width: 45%;
    text-align: right;
    padding-right: 30px;
    margin-bottom: 10px;
  }
  .footer__item li {
    margin-bottom: 10px;
  }
  .footer__item li:last-child {
    margin-bottom: 20px;
  }
  

  /*------------------------------------
  PAGE-TOP
  ---------------------------------*/
  .page-top {
    right: 20px;
    bottom: 20px;
  }
  .page-top__link {
    width: 40px;
    height: 40px;
  }

  .page-top__icon {
    font-size: 20px;
  }

  
  /*--------------------------------------
  チェックリスト
  -------------------------------------*/
  .checklist__title img:first-child,
  .checklist__title img:last-child {
    display: none;
  }
  .checklist__title img:nth-child(2) {
    width: 70vw;
    margin-top: 20px;
  }
  .checklist__contents img {
    margin-top: 20px;
  }
  .checklist__contents img:last-child {
    margin-bottom: 50px;
  }
  
  
}