@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  background-color: #FFF;
  color: #333;
  font-family: Manrope, Arial, Helvetica, "sans-serif";
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-align: left;
  margin-right: auto;
  margin-left: auto;
}
p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
}
h1 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 130%;
}
h2 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 160%;
}
h3 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 160%;
}
h4 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 160%;
}
h5 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 160%;
}
h6 {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 160%;
}
	  .pc-only {
    display: block !important;
  }
.sp-only {
  display: none !important;
}

@media (max-width: 1312px) {
  h1 {
    font-size: 4.0rem;
    font-weight: 700;
    line-height: 130%;
  }
  h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 160%;
  }
  h3 {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 160%;
  }
  h4 {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 160%;
  }
  h5 {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 160%;
  }
  h6 {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 160%;
  }
  .pc-only {
    display: none !important;
  }
	  .sp-only {
    display: block !important;
  }
}
a:link, a:visited, a:active {
  color: #333;
  text-decoration: none;
}
a:hover {}
.none {
  display: none;
}
img {
  vertical-align: top;
}
/* Button */
.btn, .btn:link, .btn:visited, .btn:active {
  display: inline-block;
  color: #333;
  background-color: #ECECEC;
  border-radius: 12px;
  padding: 8px 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.btn::after {
  background-color: #1EFF00;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.btn:hover {
  color: #333;
}
.btn:hover::after {
  transform: scale(1, 1);
}
/* Tag */
.tag {
  color: #333;
  font-size: 1.2rem;
  line-height: 120%;
  font-weight: 800;
  background-color: #FFF;
  border: solid 1px;
  border-color: #333;
  border-radius: 8px;
  padding: 4px 16px;
}
@media (max-width: 1312px) {
	.tag {
	  font-size: 1.0rem;
	}}
/* Toggle */
.tgl {
  display: inline-block;
  background-color: #ECECEC;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.tgl-on, .tgl-on:link, .tgl-on:visited, .tgl-on:active {
  display: inline-block;
  color: #FFF;
  background-color: #333;
  padding: 8px 20px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  vertical-align: top;
}
.tgl-off, .tgl-off:link, .tgl-off:visited, .tgl-off:active {
  display: inline-block;
  color: #333;
  background-color: #ECECEC;
  padding: 8px 20px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  vertical-align: top;
}
.tgl-on::after, .tgl-off::after {
  background-color: #1EFF00;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.tgl-on:hover, .tgl-off:hover {
  color: #333;
}
.tgl-on:hover::after, .tgl-off:hover::after {
  transform: scale(1, 1);
}
/* Zoom */
.zoom {
  display: block;
  transition-duration: .5s;
}
.zoom:hover {
  transform: scale(1.1);
}
/* header */
#header {
  position: sticky;
  top: 0px;
  z-index: 9999;
  padding-top: 24px;
}
#header nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 8px;
}
#header nav ul {
  display: flex;
  column-gap: 8px;
}
#header nav ul li img {
  height: 20px;
}
#header nav .tgl {
  column-gap: 0;
}
.website-title {
  position: absolute;
  left: 32px;
  bottom: 6px;
  background-color: #fff;
  border-radius: 12px;
  padding: 6px 20px;
}
.website-title a {
  font-size: 1.6rem;
}
@media (max-width: 1312px) {
  #header .tgl-on, #header .tgl-off {
    padding: 8px 16px;
  }
  #header .btn {
    padding: 8px 16px;
  }
  #header nav {
    column-gap: 4px;
  }
  #header nav ul {
    column-gap: 4px;
  }
}
/* main */
main {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
/* footer */
#footer {
  width: 100%;
  text-align: center;
  background-color: #fff;
  border-top: solid #333 1px;
  padding-top: 40px;
  padding-bottom: 40px;
}
#footer ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 8px;
  list-style: none;
  padding-bottom: 32px;
}
#footer ul li img {
  height: 20px;
}
.footer__copywright {
  font-size: 1.2rem;
}
@media (max-width: 1312px) {
  #footer {
    padding-top: 40px;
    padding-bottom: 48px;
  }
  .footer__container {
    margin: 0 16px;
  }
}