@charset "UTF-8";
.bg-red {
  background-color: #e04848;
}

.bg-black {
  background-color: #444444;
}

.bg-blue {
  background-color: #07A7F1;
}

.c-white {
  color: #fff;
}

.c-red {
  color: #e04848;
}

.c-yellow {
  color: #FDD833;
}

.c-blue {
  color: #07A7F1;
}
/****************************************************************************
        共通
****************************************************************************/
.sns-floating_area {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.sns-floating_icon {
  max-width: 36px;
  margin-bottom: 8px;
}
.sns-floating_icon img {
  width: 100%;
}

.page-title_area {
  margin-bottom: 50px;
}

p.page-title_en {
  font-size: 16px;
  font-weight: bold;
}

h2.page-title_jp {
  font-size: 24px;
  font-weight: bold;
  margin-top: 14px;
}

/****************************************************************************
        ヘッダー
****************************************************************************/
#header {
  padding-top: 36px;
}

.header-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 94%;
}
.main-logo {
  max-width: 260px;
}
.main-logo img {
  width: 100%;
}

ul.menu-list_area {
  align-items: center;
}

li.menu-list {
  font-size: 14px;
  font-weight: bold;
  margin-right: 26px;
}
li.menu-list_btn {
  width: 140px;
  height: 44px;
  text-align: center;
  margin-right: 0;
  border: solid 1px #000;
}
li.menu-list_btn a {
  line-height: 44px;
  font-weight: bold;
  font-size: 14px;
  display: block;
  width: 100%;
  height: 100%;
}

/****************************************************************************
        フッター
****************************************************************************/
#footer {
  background-color: #3a3a3a;
  padding: 50px 0;
  position: relative;
  margin-top: 120px;
}

.scroll-top {
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -35px;
  right: 4%;
  border-radius: 50px;
  background-color: #ffffff;
  width: 70px;
  height: 70px;
  border: solid 2px #3a3a3a;
}
.scroll-top a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 70px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

ul.footer-nav_area {
  justify-content: center;
  gap: 24px;
}

li.footer-nav {
  font-size: 14px;
  font-weight: bold;
}

p.copyright {
  font-size: 10px;
  padding: 24px 0 32px;
}

/****************************************************************************
        レスポンシブ
****************************************************************************/
/**      PC　以上      **/
@media screen and (min-width: 1201px) {
  .sp_part {
    display: none;
  }
}
/**      Tab　以上      **/
@media screen and (min-width: 781px) {
  .sp_part {
    display: none;
  }
}

@media screen and (max-width: 1080px) {
  .main-logo {
    max-width: 170px;
  }
li.menu-list {
  font-size: 12px;
  margin-right: 20px;
}
li.menu-list_btn {
  width: 120px;
  height: 44px;
}
li.menu-list_btn a {
  font-size: 12px;
}
}
/**      Tab　以下      **/
@media screen and (max-width: 780px) {
  .pc_part {
    display: none;
  }
  .main-logo {
    max-width: 210px;
    margin: 0 auto 0 14px;
  }
  .menu-icon {
    width: 32px;
    height: 20px;
    position: fixed;
    top: 40px;
    right: 20px;
    z-index: 9999;
  }
  .menu-icon span {
    position: relative;
    width: 32px;
    height: 1px;
    background-color: #000;
    transition: 0.4s;
  }
  .menu-icon span:first-child {
    top: 0;
    left: 0;
    position: absolute;
  }
  .menu-icon span:nth-child(2) {
    top: 10px;
    left: 0;
    position: absolute;
  }
  .menu-icon span:last-child {
    top: 20px;
    left: 0;
    position: absolute;
  }
  .menu-icon_open span:first-child {
    top: 10px;
    transform: rotate(225deg);
  }
  .menu-icon_open span:nth-child(2) {
    top: 10px;
    left: 10px;
    opacity: 0;
  }
  .menu-icon_open span:last-child {
    top: 10px;
    transform: rotate(-225deg);
  }
  .nav-menu_list {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #fff;
    z-index: 9995;
    transition: 0.4s;
  }
  .menu-list_open {
    right: 0;
  }
  nav {
    width: 100%;
    height: 100%;
    position: relative;
  }
  ul.menu-list_area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  li.menu-list {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 30px;
  }
  #footer {
    padding: 50px 0;
  }
  .scroll-top {
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -35px;
    right: 4%;
    border-radius: 50px;
    background-color: #ffffff;
    width: 70px;
    height: 70px;
    border: solid 2px #3a3a3a;
  }
  .scroll-top a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 70px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
  }
  ul.footer-nav_area {
    gap: 16px;
    flex-wrap: wrap;
  }
  li.footer-nav {
    font-size: 14px;
  }
  p.copyright {
    font-size: 12px;
    padding: 24px 0 32px;
  }
}
/**      SP　以下      **/

@Media screen and (max-width: 480px) {
  ul.footer-nav_area {
    display: block;
    padding: 0 20px;
  }
  li.footer-nav {
    padding-bottom: 14px;
  }
}