@charset "UTF-8";
/* CSS Document */
/*
font-family: "Noto Sans JP", sans-serif;
font-family: "Roboto", sans-serif;
*/
/*===============================
    共通
===============================*/
body, p, li, dt, dd, th, td, h1, h2, h3, h4, h5 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: normal;
  text-align: justify;
  line-height: 140%;
  box-sizing: border-box;
  list-style-type: none;
  color: #333;
}
span {
  font-size: inherit;
  font-weight: inherit;
}
i {
  font-size: inherit;
  font-weight: 500;
}
.inner {
  width: calc(100% - 40px);
  max-width: 1100px;
  margin: 0 auto;
}
h2 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 20px 0;
}
img {
  width: 100%;
  height: auto;
}
a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.pc-none {
  display: none;
}
@media screen and (max-width:768px) {
  a:hover {
    opacity: 1;
  }
  .pc-none {
    display: inherit;
  }
  .sp-none {
    display: none;
  }
  h2 {
    font-size: 20px;
  }
.inner {
  width: calc(100% - 28px);
}
}
/*===============================
    ヘッダー（header）
===============================*/
header {
  border-top: 5px solid #e62e3d;
}
header .inner {
  padding: 10px 0;
  position: relative;
}
header .logo {
  width: 100px;
  height: auto;
}
header .link-mypage {
  display: block;
  position: absolute;
  top: -10px;
  right: 0;
}
header .link-mypage a {
  display: block;
  height: 75px;
  background: linear-gradient(-60deg, #e62e3d 20px, #FFF 20px);
  padding: 22px 20px 0 20px;
  border-radius: 0 0 5px 5px;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);
}
header .link-mypage a:hover {
  transform: translateY(5px);
  opacity: 1;
}
header .link-mypage i {
  font-size: 20px;
  margin: 0 5px 0 0;
}
header .link-mypage a::after {
  content: "login";
  color: #e62e3d;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  display: block;
  text-align: center;
}
@media screen and (max-width:768px) {
  header .logo {
    width: 70px;
  }
  header .link-mypage a {
    height: 62px;
    padding: 17px 20px 0 20px;
  }
  header .link-mypage a::after {
    line-height: 140%;
  }
}
/*===============================
    メニュー（.menu）
===============================*/
.menu {
  margin: 10px 0 2px 0;
  padding: 0;
  background: #007bbb;
}
.menu ul {
  display: flex;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.menu li {
  width: calc(100% / 4);
  font-weight: 500;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.menu li a {
  display: block;
  background: #007bbb;
  color: #FFF;
  height: 60px;
  line-height: 60px;
  position: relative;
  transition: 0.3s;
}
.menu li a:hover {
  opacity: 1;
}
.menu li a:hover::after {
  content: "";
  width: calc(100% - 60px);
  height: 7px;
  background: #e62e3d;
  position: absolute;
  bottom: 0;
  left: 30px;
}
@media screen and (max-width:768px) {
  .menu {
    padding: 0 0 3px 0;
    background: none;
  }
  .menu ul {
    flex-wrap: wrap;
  }
  .menu li {
    width: calc(100% / 2 - 2px);
    margin: 2px 0;
    font-size: 12px;
  }
  .menu li a {
    height: 38px;
    line-height: 38px;
    background: #007bbb;
  }
  .menu li a:hover::after {
    content: none;
  }
}/*===============================
    フッター（footer）
===============================*/
footer {
  background: #FFF;
  border-top: 5px solid #e62e3d;
}
footer .inner {
  position: relative;
  padding: 30px 0 0 0;
}
footer .pagetop {
  display: block;
  width: 40px;
  height: 40px;
  padding: 0 10px;
  text-align: center;
  line-height: 40px;
  background: #e62e3d;
  color: #FFF;
  position: absolute;
  top: -40px;
  right: 0;
  cursor: pointer;
}
footer .pagetop.fixed {
  position: fixed;
  top: inherit;
  bottom: 20px;
  right: 20px;
}
/*リンク*/
footer .foot-menu {
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px 0;
}
footer .left-box {
  width: calc(100% / 4 - 20px);
}
footer .right-box {
  width: calc(100% / 4 * 3 - 10px);
}
footer .right-box .right-top {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px 0;
}
footer .right-box .right-top li.label {
  width: 100%;
}
footer .right-box .right-top li.link {
  width: 50%;
    min-width: 185px;
    max-width: 200px;
}
footer .right-box .right-bottom {
  display: flex;
  justify-content: space-between;
}
footer .right-box .right-bottom .link-box {
  width: calc(100% / 3 - 20px);
}
footer .foot-menu li {
  font-size: 14px;
  line-height: 160%;
}
footer .foot-menu .label {
  font-weight: 500;
  padding: 10px 0 5px 0;
  color: #e62e3d;
}
/*ロゴ*/
footer .logo-wrap {
  margin: 0 0 20px 0;
}
footer .logo-wrap li, footer .sns-wrap li {
  display: inline-block;
}
footer .logo-wrap li.logo1 {
  width: 100px;
  height: 60px;
  margin: 0 10px 0 0;
}
footer .logo-wrap li.logo2 {
  width: 90px;
  height: 42px;
}
footer .logo-wrap li.logo1 img, footer .logo-wrap li.logo2 img {
  height: 100%;
  object-fit: contain;
}
footer .sns-wrap li.label {
  display: block;
}
footer .sns-wrap li.sns-logo {
  font-size: 30px;
  margin: 0 10px 0 0;
}
/*マーク*/
footer .mark-wrap {
  text-align: right;
  margin: 0 0 10px 0;
}
footer .mark-wrap li {
  display: inline-block;
  width: auto;
  height: 50px;
}
footer .mark-wrap li img {
  height: 50px;
  object-fit: contain;
}
/*コピーライト*/
footer .copyright {
  font-size: 12px;
  text-align: center;
  padding: 10px 5px;
  background: #e62e3d;
  color: #FFF;
}
@media screen and (max-width:768px) {
    footer .left-box {
        width: 100%;
    }
    footer .right-box {
        width: 100%;
    }
    footer .right-box .right-top {
        width: 100%;
        margin: 0;
    }
  footer .right-box .right-top li.link {
    width: 100%;
      min-width: none;
      max-width: none;
  }
  footer .right-box .right-bottom {
      width: 100%;
    flex-direction: column;
  }
  footer .right-box .right-bottom .link-box {
    width: 100%;
  }
  footer .mark-wrap li {
    height: 40px;
  }
  footer .mark-wrap li img {
    height: 40px;
  }
}
@media screen and (max-width:768px) {
    
footer .foot-menu {
  flex-direction: column;
} 
}