@charset "utf-8";
/*		Contents
---------------------------------------------------------------------------
	common
	header（PC）
	header（SP）
	main
	footer
------------------------------------------------------------------------ */
/* ========================================================================
	common
======================================================================== */
@media print, screen and (min-width:768px) {
  body {
    min-width: 1260px;
  }
  .sp {
    display: none;
  }
  a img, .fade, .fades a {
    transition-duration: 0.2s;
  }
  a:hover img, .fade:hover, .fades a:hover {
    opacity: 0.7;
  }
  .fade:hover img, .fades a:hover img {
    opacity: 1;
  }
}
@media screen and (max-width:767px) {
  body {
    width: 100%; /* splide */
    min-width: 320px;
  }
  .pc {
    display: none;
  }
}
@media print, screen and (min-width:768px) {
  /* ========================================================================
	header（PC）
======================================================================== */
  header .logo {
    display: none;
  }
  /* ----------------------------------------
	menu
---------------------------------------- */
  #menu .btn {
    display: none;
  }
  /* menu
---------------------------------------- */
  #menu .menu {
    display: block !important;
  }
  #menu .menu ul {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%); /* Android */
    transform: translateY(-50%);
    z-index: 10;
  }
  #menu .menu a {
    display: block;
    position: relative;
    padding: 16px 35px 16px 35px;
    border-bottom: 1px solid #FFFFFF;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
  }
  #menu .menu li:last-child a {
    border: none;
  }
  /* ---------- scroll ---------- */
  #menu .menu .scroll {
    display: none;
    position: fixed;
    z-index: 1;
  }
  #menu .menu .scroll a {
    border-color: #000000;
    color: #333333;
  }

/* ---------- sns ---------- */
#menu .menu .sns{
	display:flex;
	gap:0 30px;
	padding:18px 0 0 35px;
}
#menu .menu .sns a{
	padding:0;
	border:none;
}
}
@media screen and (max-width:767px) {
  /* ========================================================================
	header（SP）
======================================================================== */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000000;
    z-index: 10;
  }
  /* ----------------------------------------
	logo
---------------------------------------- */
  header .logo {
    padding: 25px 20px;
    line-height: 1;
  }
  /* ----------------------------------------
	menu
---------------------------------------- */
  #menu .btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: #000000;
    /*background:#222222;*/
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1;
    cursor: pointer;
  }
  #menu .btn span {
    display: block;
    padding: 42px 0 0 0;
  }
  #menu .btn span::before, #menu .btn.close span::before, #menu .btn.close span::after {
    content: "";
    display: block;
    position: relative;
    top: -19px;
    left: 50%;
    -webkit-transform: translateX(-50%); /* Android */
    transform: translateX(-50%);
    width: 24px;
    height: 1px;
    background: #ffffff;
    box-shadow: 0 -8px 0 0 #fff, 0 8px 0 0 #fff;
    transition-duration: 0.2s;
  }
  #menu .btn.close span::before {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0);
    -webkit-transform: translateX(-50%) rotate(45deg); /* Android */
    transform: translateX(-50%) rotate(45deg);
  }
  #menu .btn.close span::after {
    top: -32px;
    box-shadow: none;
    -webkit-transform: translateX(-50%) rotate(-45deg); /* Android */
    transform: translateX(-50%) rotate(-45deg);
  }
  /* menu
---------------------------------------- */
  #menu .menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 0;
    background: #000000;
    border-top: 1px solid #FFFFFF;
  }
  #menu .menu .scroll {
    display: none !important;
  }
  #menu .menu a {
    display: block;
    position: relative;
    padding: 12px 0 12px 25px;
    border-bottom: 1px solid #FFFFFF;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
  }

/* ---------- sns ---------- */
#menu .menu .sns{
	display:flex;
	justify-content:center;
	gap:0 30px;
	padding:15px 0;
    border-bottom: 1px solid #FFFFFF;
}
#menu .menu .sns a{
	padding:0;
	border:none;
}
}
/* ========================================================================
	main
======================================================================== */
main {
  overflow: hidden;
  padding: 0 0 0 254px;
}
main h2 {
  margin: 0 0 40px 0;
  font-size: 5.4rem;
  line-height: 1;
}
@media screen and (max-width:767px) {
  main {
    padding: 70px 0 30px 0;
  }
  main h2 {
    margin: 0 0 30px 0;
    text-align: center;
    font-size: 4.0rem;
  }
}
/* ----------------------------------------
	lead
---------------------------------------- */
main .inner p.lead {
  margin: 0 0 10px 0;
  font-size: 2.1rem;
  line-height: 3.1rem;
}
@media screen and (max-width:767px) {
  main .inner p.lead {
    margin: 0 0 30px 0;
    text-align: center;
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
/* ----------------------------------------
	inner / block / key / form
---------------------------------------- */
main > div {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 180px 0;
}
main .inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px 0 0;
}
main .block {
  width: 37.55%;
  padding: 0 40px 0 0;
}
main .key, main .form {
  width: 62.5%;
}
@media print, screen and (min-width:768px) and (max-width:1360px) {
  main > div:not(.hero) {
    display: block;
    padding: 60px 0;
    min-height: auto;
  }
  main > .hero {
    margin: 0 0 90px 0;
  }
  main > .product {
    padding: 90px 0;
  }
  main div:not(.hero):not(.sns) .inner {
    flex-direction: column;
    align-items: center;
  }
  main .block {
    width: 440px;
    padding: 30px 0;
  }
  main .key, main .form {
    width: 800px;
    padding: 30px 0;
  }
}
@media screen and (max-width:767px) {
  main > div {
    display: block;
    min-height: auto;
    margin: 0 0 30px 0;
    padding: 30px 0 0 0;
  }
  main .inner {
    display: block;
    max-width: none;
    padding: 0 20px;
  }
  main .block {
    width: auto;
    padding: 0;
  }
  main .key, main .form {
    width: auto;
  }
}
/* ----------------------------------------
	hero
---------------------------------------- */
main .hero {
  position: relative;
  z-index: 5;
}
main .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -254px;
  width: calc(100% + 254px);
  height: 100%;
  background: url(../../img/bg_hero.png) no-repeat center;
  background-size: cover;
}
main .hero h1 {
  font-size: 2.1rem;
  color: #FFFFFF;
  line-height: 1;
  margin: auto;
}
main .hero h1 img {
  display: block;
  margin: 0 0 30px 0;
}
@media screen and (max-width:767px) {
  main .hero {
    display: flex;
    align-items: center;
    min-height: 240px;
    padding: 0;
  }
  main .hero::before {
    left: 0;
    width: 100%;
  }
  main .hero h1 {
    font-size: 1.8rem;
    line-height: 2.6rem;
	margin: auto;
  }
  main .hero h1 img {
    width: 200px;
	margin: auto;
  }
}
/* ----------------------------------------
	concept
---------------------------------------- */
main .concept p {
  margin: 0 0 20px 0;
  font-size: 1.5rem;
  line-height: 1.8;
}
main .concept .name {
  font-size: 1.3rem;
  line-height: 1;
}
main .concept .name img {
  margin: 0 0 0 16px;
}
@media screen and (max-width:767px) {
  main .concept p {
    margin: 0 0 15px 0;
  }
  main .concept .name {
    margin: 0 0 30px 0;
    text-align: right;
  }
  main .concept .name span {
    display: inline-block;
    margin: 15px 0 0 0;
  }
  main .concept .name img {
    margin: 15px 0 0 16px;
  }
}
/* ----------------------------------------
	product
---------------------------------------- */
main .product p {
  margin: 0 0 20px 0;
  font-size: 1.5rem;
  line-height: 1.8;
}
main .product .name {
  font-size: 1.3rem;
  line-height: 1;
}
main .product .name img {
  margin: 0 0 0 16px;
}
@media screen and (max-width:767px) {
  main .product p {
    margin: 0 0 15px 0;
  }
  main .product .name {
    margin: 0 0 30px 0;
    text-align: right;
  }
  main .product .name span {
    display: inline-block;
    margin: 15px 0 0 0;
  }
  main .product .name img {
    margin: 15px 0 0 16px;
  }
}
/* menu
---------------------------------------- */
main .product .menu ul {
  text-align: left;
}
main .product .menu ul li a {
  display: block;
  margin: 0 0 10px 0;
  padding: 0 0 0 12px;
  background: url(../../img/arrow_02.png) no-repeat left center;
  background-size: 5px 8px;
  line-height: 2.6rem;
  text-decoration: none;
  white-space: nowrap;
  font-weight: bold;
}
main .product .menu ul li a:hover {
  text-decoration: underline;
}
@media screen and (max-width:767px) {
  main .product .menu {
    margin: 30px 0 30px 0;
  }
}
/* ----------------------------------------
	sns
---------------------------------------- */
main .sns {
  position: relative;
}
@media screen and (max-width:767px) {
  main .sns {
    margin-bottom: 81px;
    padding: 68px 0 0 0;
  }
}
/* ----------------------------------------
	company
---------------------------------------- */
main .company table {
  line-height: 3.0rem;
}
main .company table th {
  width: 96px;
  padding: 0 0 0 12px;
  background: url(../../img/arrow_02.png) no-repeat left 11px;
  background-size: 5px 8px;
  vertical-align: top;
}
@media screen and (max-width:767px) {
  main .company table {
    margin: 0 0 30px 0;
  }
}
/* ----------------------------------------
	contact
---------------------------------------- */
main .contact p {
  font-size: 1.8rem;
  line-height: 2.8rem;
}
main .contact table {
  margin: 0 0 28px 0;
}
main .contact table th {
  position: relative;
  width: 180px;
  padding: 20px 36px 20px 0;
  vertical-align: top;
}
main .contact table th span {
  position: absolute;
  top: 21px;
  right: 0;
  width: 36px;
  padding: 5px 0;
  background: #FD4E4E;
  border-radius: 2px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
main .contact table td {
  padding: 6px 0 6px 40px;
}
main .contact table td.address {
  font-size: 1.8rem;
}
main .contact table td.privacy {
  padding-top: 14px;
}
main .contact input.zipcode {
  width: 160px;
  margin: 6px 24px 6px 8px;
}
main .contact button.get {
  text-decoration: underline;
}
main .contact button.get:hover {
  text-decoration: none;
}
@media screen and (max-width:767px) {
  main .contact p {
    margin: 0 0 30px 0;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  main .contact table {
    margin: 0 0 4px 0;
  }
  main .contact table th {
    display: block;
    width: auto;
    padding: 0 0 10px 0;
  }
  main .contact table th span {
    top: 1px;
  }
  main .contact table td {
    display: block;
    padding: 0 0 20px 0;
  }
  main .contact table td.address {
    font-size: 1.6rem;
  }
  main .contact table td.privacy {
    padding-top: 0;
  }
  main .contact input.zipcode {
    width: 150px;
    margin-right: 20px;
  }
}
/* scroll
---------------------------------------- */
main .contact .scroll {
  overflow-y: scroll;
  height: 150px;
  margin: 10px 0 6px 0;
  padding: 28px 28px 8px;
  background: #F2F2F2;
  border-radius: 4px;
}
/* ---------- scrollbar ---------- */
main .contact .scroll::-webkit-scrollbar {
  width: 10px;
}
main .contact .scroll::-webkit-scrollbar-track {
  background: #eeeeee;
}
main .contact .scroll::-webkit-scrollbar-thumb {
  background: #dddddd;
}
/* ------------------------------ */
main .contact .scroll p, main .contact .scroll dl dd {
  margin: 0;
  padding: 0 0 20px 0;
  font-size: 1.5rem;
  line-height: 2.5rem;
}
@media screen and (max-width:767px) {
  main .contact .scroll {
    padding: 20px 20px 0;
  }
}
/* btn
---------------------------------------- */
main .contact .btn {
  margin: 0 0 0 220px;
}
main .contact .btn a, main .contact .btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 54px;
  background: #9D9FA2;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
}
main .contact .btn a::before, main .contact .btn button::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 1px 4px 0 0;
  background: url(../../img/arrow_03.png) no-repeat center;
  background-size: 18px;
}
@media screen and (max-width:767px) {
  main .contact .btn {
    margin: 0;
  }
  main .contact .btn a, main .contact .btn button {
    margin: 0 auto;
  }
}
/* ========================================================================
	footer
======================================================================== */
footer {
  padding: 0 0 80px 0;
}
footer small {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media print, screen and (min-width:768px) and (max-width:1360px) {
  footer {
    padding-top: 90px;
  }
}
@media screen and (max-width:767px) {
  footer {
    padding: 0 0 20px 0;
  }
}