@charset "UTF-8";
/*
	BASE
*******************************/
/*
font-family: "Noto Sans JP", sans-serif;
font-family: 'Roboto', sans-serif;
font-family: "Lato", sans-serif;
font-family: "DM Sans", sans-serif;
*/
* {
  font-family: "DM Sans", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-feature-settings: "palt";
  line-height: 1;
}

html {
  font-size: 62.5%;
  line-height: 1;
}
html body {
  font-size: 1.6rem;
}
html body img {
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
  line-height: 0;
}
html body p, html body th, html body td, html body dt, html body dd, html body li, html body h1, html body h2, html body h3, html body h4, html body h5, html body h6, html body label {
  color: #212121;
}
html body a,
html body a:link,
html body a:visited {
  color: #212121;
  text-decoration: none;
  outline: none;
  border: none;
}
html body a:hover {
  text-decoration: none;
}
html body a img {
  outline: none;
  border: none;
  -webkit-backface-visibility: hidden;
}
html body area {
  border: none;
  outline: none;
}
html body .clear {
  clear: both;
}
html body * img {
  max-width: 100%;
  height: auto;
}
html body main {
  overflow: hidden;
}

/*//////////////////////////////////////////////////////////////////////////*/
/*
	Header LAYOUT
******************/
#header {
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 98;
  background-color: #0c5dad;
}
#header .header .header_inner {
  display: grid;
  grid-template-columns: 270px 1fr;
  grid-column-gap: 30px;
  align-items: center;
  z-index: 1;
}
#header .header .header_inner .logo {
  display: grid;
  align-items: center;
  padding-left: 18px;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  background-color: #FFFFFF;
}
#header .header .header_inner .logo::after {
  content: "";
  display: block;
  width: 26px;
  height: 100%;
  position: absolute;
  right: -25px;
  top: 0;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 0 0);
  clip-path: polygon(0 0, 100% 0, 4% 100%, 0 100%);
  background-color: #FFFFFF;
}
#header .header .header_inner .gmenu {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.5rem;
  padding-right: 40px;
}
#header .header .header_inner .gmenu li:not(:last-child) {
  margin-right: 2em;
}
#header .header .header_inner .gmenu li a {
  color: #FFFFFF;
  position: relative;
  transition: 0.3s;
}
#header .header .header_inner .gmenu li a::after {
  content: "";
  display: block;
  width: 0;
  border-bottom: 1px solid #FFFFFF;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.5em;
  transition: 0.3s;
}
#header .header .header_inner .gmenu li a:hover {
  opacity: 0.8em;
}
#header .header .header_inner .gmenu li a:hover::after {
  width: 100%;
}

/*
	Footer LAYOUT
******************/
#footer .footer {
  background-color: #ebebeb;
  padding: 60px 0 50px;
}
#footer .footer .footer_inner {
  width: calc(100% - 60px);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
#footer .footer .footer_inner .logo {
  max-width: 320px;
  margin: 0 auto 40px;
  transform: translateX(-30px);
}
#footer .footer .footer_inner a {
  font-size: 1.4rem;
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  grid-column-gap: 0.5em;
  transition: 0.3s;
}
#footer .footer .footer_inner a::before {
  content: "";
  width: 0.33em;
  height: 0.33em;
  border-top: 2px solid #0c5dad;
  border-right: 2px solid #0c5dad;
  transform-origin: center center;
  transform: rotate(45deg);
}
#footer .footer .footer_inner a:hover {
  opacity: 0.75;
}
#footer .copyright {
  background-color: #0c5dad;
  height: 50px;
  display: grid;
  align-items: center;
  justify-content: center;
}
#footer .copyright p {
  font-size: 1.1rem;
  color: #FFFFFF;
}

.pagetop {
  position: fixed;
  z-index: 90;
  right: 30px;
  transition: 0.3s;
  bottom: -65px;
  width: 60px;
}
.pagetop.show {
  bottom: 30px;
}
.pagetop:hover {
  opacity: 0.75;
}
@media screen and (max-width: 1200px) {
  /*
  	Header LAYOUT
  ******************/
  #header .header .header_inner {
    grid-template-columns: 250px 1fr;
  }
  #header .header .header_inner .gmenu {
    padding-right: 30px;
  }
  #header .header .header_inner .gmenu li:not(:last-child) {
    margin-right: 1.5em;
  }
}
@media screen and (max-width: 1024px) {
  /*
  	Header LAYOUT
  ******************/
  #header .header .header_inner {
    grid-template-columns: 200px 1fr;
  }
  #header .header .header_inner .gmenu {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-gap: 0.75em 2em;
    font-size: 1.4rem;
    text-align: center;
  }
  #header .header .header_inner .gmenu::after {
    content: "";
    grid-area: 2/1/3/2;
  }
  #header .header .header_inner .gmenu li:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  /*
  	Header LAYOUT
  ******************/
  #header .header .header_inner {
    grid-template-columns: 200px 50px;
    justify-content: space-between;
    height: 50px;
  }
  #header .header .header_inner .logo {
    padding-top: 0;
    padding-bottom: 0;
    height: 50px;
  }
  #header .header .header_inner .logo::after {
    width: 18px;
    right: -17px;
  }
  #header .header .header_inner .gmenu {
    display: none;
  }
  #header .header .header_inner .spbtn {
    width: 50px;
    height: 50px;
    position: relative;
  }
  #header .header .header_inner .spbtn::before {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    top: 30%;
    left: 25%;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
    transform-origin: center center;
  }
  #header .header .header_inner .spbtn::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    bottom: 30%;
    left: 25%;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
    transform-origin: center center;
  }
  #header .header .header_inner .spbtn span {
    display: block;
    width: 50%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 25%;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
  }
  body.menuopen {
    overflow: hidden;
  }
  body.menuopen #header .header .header_inner .spbtn::before {
    transform: rotate(45deg);
    top: calc(50% - 1px);
  }
  body.menuopen #header .header .header_inner .spbtn::after {
    transform: rotate(-45deg);
    bottom: calc(50% - 1px);
  }
  body.menuopen #header .header .header_inner .spbtn span {
    opacity: 0;
    transform: scaleX(0);
  }
  body.menuopen #spmenu {
    opacity: 1;
    left: 0;
  }
  #spmenu {
    position: fixed;
    top: 50px;
    left: -101vw;
    opacity: 0.66;
    width: 100%;
    background-color: #FFFFFF;
    height: auto;
    z-index: 999;
    transition: 0.3s;
  }
  #spmenu .smenu li {
    border-bottom: 1px solid #e8e8e8;
  }
  #spmenu .smenu li a {
    font-size: 1.4rem;
    height: 3.8em;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5em;
    position: relative;
  }
  #spmenu .smenu li a::after {
    content: "";
    width: 0.33em;
    height: 0.33em;
    border-top: 2px solid #0c5dad;
    border-right: 2px solid #0c5dad;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    right: 1.5em;
    top: 50%;
  }
  /*
  	Footer LAYOUT
  ******************/
  #footer .footer {
    padding: 40px 0 30px;
  }
  #footer .footer .footer_inner {
    width: calc(100% - 30px);
  }
  #footer .footer .footer_inner .logo {
    max-width: 240px;
    margin: 0 auto 20px;
    transform: translateX(0);
  }
  #footer .footer .footer_inner a {
    font-size: 1.3rem;
    transition: 0s;
  }
  #footer .footer .footer_inner a:hover {
    opacity: 1;
  }
  #footer .copyright {
    height: 40px;
  }
  .pagetop {
    right: 8px;
    bottom: -45px;
    width: 40px;
  }
  .pagetop.show {
    bottom: 20px;
  }
  .pagetop:hover {
    opacity: 1;
  }
  .pcOnly {
    display: none !important;
  }
  .tbOnly {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .tbOnly {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}