/* common */
@charset "UTF-8";

@font-face {
  font-family: 'akazukinpop';
  src:
    url('/common/fonts/font-akazukipop.woff2') format('woff2'),
    url('/common/fonts/font-akazukipop.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --background-color: #fafafa;
  --text-color: #222222;
  --brand-color1: #ff0000;
  --brand-color2: #000000;
  --color-white: #ffffff;
  --color-gray-light: #efefef;
  --color-gray: #a0a0a0;
  --color-gray-dark: #666666;
  --color-radiko: #00a7e9;
  --color-red: #cc0000;
  --color-pink: #e6195d;
  --main-font: 'IBM Plex Sans JP', sans-serif;
  --font-akazukin: 'akazukinpop', sans-serif;
  --font-oswald: 'Oswald', sans-serif;
  /* --font-en1: 'Josefin Sans', sans-serif;
  --font-en2: 'Work Sans', sans-serif; */
}
body.is-menu-open {
  overflow: hidden;
}
html {
  font-family: var(--main-font);
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.6;
  background: var(--background-color);
}
section {
  margin-bottom: 60px;
}
.l-container {
  padding: 0 calc((20 / 1200) * 100%);
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.text-indent {
  padding-left: 1em;
  text-indent: -1em;
}
.text-bold {
  font-weight: bold;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-small {
  font-size: 0.85em;
}
.text-large {
  font-size: 1.25em;
}
.text-link {
  color: var(--color-red);
  opacity: 1;
  transition: opacity 0.25s ease;
}
.text-link:hover {
  opacity: 0.6;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 10px;
}
.pc-show {
  display: block;
}
.mobile-show {
  display: none;
}
.tab-show {
  display: none;
}
.sp-show {
  display: none;
}

/* button */
.button-rectangle a,
.button-obround a {
  padding: 10px 15px;
  text-align: center;
  color: var(--color-white);
  background: var(--color-gray-dark);
  border: solid 1px var(--color-gray-dark);
  display: block;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}
.button-rectangle a:hover,
.button-obround a:hover {
  color: var(--color-gray-dark);
  background: var(--background-color);
}
.button-obround a {
  border-radius: 50vh;
}
.button-toTop {
  font-size: 40px;
  color: var(--color-gray-dark);
  position: fixed;
  right: 40px;
  bottom: 80px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.button-toTop.show {
  opacity: 1;
  pointer-events: auto;
}
.button-toTop:hover {
  opacity: 0.6;
}

/* title */
.title-en {
  margin: 0 0 10px 0;
  font-family: var(--font-oswald);
  font-size: 36px;
  line-height: 1;

  span {
    font-size: 12px;
    color: var(--color-gray-dark);
    font-weight: 400;
    line-height: 2;
    display: block;
  }
}
.title-en::first-letter {
  color: var(--brand-color1);
}
.title-box {
  padding: 10px;
  margin: 0 0 10px 0;
  font-size: 28px;
  color: var(--color-white);
  line-height: 1;
  background: var(--brand-color1);
}
.title-dot {
  margin: 0 0 30px 30px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
.title-dot::before {
  content: '\f111';
  font-family: 'Font Awesome 6 Free';
  font-size: 10px;
  color: var(--brand-color1);
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}
.title-doubleline {
  padding: 10px 0;
  margin: 0 0 30px 0;
  font-size: 28px;
  line-height: 1;
  border-top: solid 1px var(--brand-color2);
  border-bottom: solid 1px var(--brand-color2);
}
.title-shortline {
  margin: 0 0 30px 0;
  font-size: 28px;
  line-height: 1;
  position: relative;
}
.title-shortline::after {
  content: '';
  width: 50px;
  height: 3px;
  border-radius: 50vh;
  background: var(--brand-color1);
  position: absolute;
  bottom: -10px;
  left: 0;
}

/* header */
.header {
  width: 100%;
  background: var(--color-white);
  position: fixed;
  z-index: 9999;

  .l-header {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
  }
  .l-header-letf,
  .l-header-right {
    display: flex;
    align-items: center;
  }
  .logo {
    width: 130px;
    margin-right: 20px;
  }
  .icon_list {
    display: flex;
    align-items: center;
  }
  .icon_item {
    a {
      width: 40px;
      height: 40px;
      text-align: center;
      border-radius: 50vh;
      border: solid 1px var(--text-color);
      display: block;
      transition:
        color 0.25s ease,
        background 0.25s ease;
    }
    a:hover {
      color: var(--color-white);
      background: var(--brand-color2);
    }
  }
  .icon_item:not(:last-child) {
    margin-right: 10px;
  }
  .fa-brands {
    font-size: 20px;
    line-height: 38px;
  }
  .button-rectangle {
    margin-right: 30px;
    height: 40px;
    font-size: 14px;
    line-height: 18px;

    .fa-file-lines {
      margin: 0 0 0 5px;
    }
  }
  .hamburger {
    width: 35px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
  }
  .hamburger-bar {
    width: 100%;
    height: 4px;
    background: var(--text-color);
    display: block;
    position: absolute;
    left: 0;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }
  .hamburger-bar:nth-child(1) {
    top: 5px;
  }
  .hamburger-bar:nth-child(2) {
    top: 18px;
  }
  .hamburger-bar:nth-child(3) {
    bottom: 5px;
  }
  .hamburger.is-active .hamburger-bar:nth-child(1) {
    transform: rotate(45deg) translateY(18px);
  }
  .hamburger.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active .hamburger-bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-18px);
  }
  .header-nav {
    width: 100%;
    height: calc(100dvh - 60px);
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 60px;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
  }
  .header-nav.is-active {
    opacity: 1;
    visibility: visible;
  }
  .l-nav {
    padding: 80px 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .nav_list:first-of-type {
    margin: 0 200px 0 0;
  }
  .nav_item {
    position: relative;

    a {
      font-family: var(--font-akazukin);
      font-size: 24px;
      color: var(--color-white);
      font-weight: 600;
      transition: color 0.25s ease;
    }
    a:hover {
      color: var(--brand-color1);
    }
  }
  .nav_item:not(:last-child) {
    margin: 0 0 30px 0;
  }
  .nav-main .nav_item::before {
    content: '';
    width: 30px;
    height: 4px;
    background: var(--color-white);
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
  }
  .nav-suv .nav_item a {
    font-size: 18px;
  }
}

/* footer */
.footer {
  padding: 20px;
  background: var(--brand-color2);

  .nav_list {
    width: fit-content;
    margin: 0 auto 10px;
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 50px;
  }
  .nav_item {
    a {
      text-align: left;
      color: var(--color-white);
      display: inline-block;
      transition: color 0.25s ease;
    }
    a:hover {
      color: var(--color-gray);
    }
  }

  .icon_list {
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .icon_item {
    a {
      width: 40px;
      height: 40px;
      text-align: center;
      border-radius: 50vh;
      background: var(--color-white);
      border: solid 1px var(--color-white);
      display: block;
      transition:
        color 0.25s ease,
        background 0.25s ease;
    }
    a:hover {
      color: var(--color-white);
      background: var(--brand-color2);
    }
  }
  .icon_item:not(:last-child) {
    margin: 0 30px 0 0;
  }
  .fa-brands {
    font-size: 20px;
    line-height: 38px;
  }
  .copyright {
    font-size: 10px;
    color: var(--color-white);
    line-height: 1;
    text-align: center;
  }
}
/* sales */
.sales {
  margin-bottom: 0;
  background: var(--brand-color2);

  .sales_inner {
    width: 800px;
    padding: 20px 10px;
    margin: 0 auto;
    background: url(/common/images/bg_mic.jpg) -50px 0 / contain no-repeat;
  }

  .sales_title {
    margin: 0 0 10px 0;
    color: var(--color-white);
    font-size: 28px;
    text-align: center;
  }
  .sales_text {
    margin: 0 0 20px 0;
    color: var(--color-white);
    text-align: center;
  }
  .sales_list {
    padding: 10px;
    margin: 0 auto 30px;
    max-width: 580px;
    border-top: dotted 2px var(--color-white);
    border-bottom: dotted 2px var(--color-white);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .sales_item {
    /* width: 150px;
    padding: 10px 0;
    color: var(--color-white);
    text-align: center;
    line-height: 1;
    border-radius: 50vh;
    background: var(--color-gray); */
    width: 130p;
    color: var(--color-white);
    text-align: center;
    line-height: 1;
  }
  .button-rectangle a {
    width: 280px;
    margin: 0 auto;
    color: var(--color-white);
    border-color: var(--brand-color1);
    background: var(--brand-color1);
  }
  .button-rectangle a:hover {
    color: var(--brand-color1);
    background: var(--color-white);
  }
}

.page-head {
  padding: 60px 0 0 0;
  margin: 0 0 50px 0;

  .page_title {
    padding: 50px 0;
    background: var(--brand-color2);
    font-family: var(--font-akazukin);
    font-size: 28px;
    color: var(--color-white);
    line-height: 1;
    font-weight: 600;
    text-align: center;
  }
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 14px;
  }
  .l-container {
    padding: 0 calc((40 / 1024) * 100%);
  }
  .pc-show {
    display: none;
  }
  .tab-show {
    display: block;
  }
  .mobile-show {
    display: block;
  }
  .header {
    .nav_list:first-of-type {
      margin-right: 80px;
    }
  }
  .sales {
    .sales_inner {
      width: 760px;
      background-position: -50px -30px;
    }
  }
}

@media screen and (max-width: 800px) {
  section {
    margin-bottom: 40px;
  }
  .l-container {
    padding: 0 calc((20 / 375) * 100%);
  }
  .tab-show {
    display: none;
  }
  .sp-show {
    display: block;
  }
  .button-rectangle a,
  .button-obround a {
    padding: 10px 5px;
  }
  .header {
    .l-header {
      padding-left: 10px;
      padding-right: 10px;
    }
    .logo {
      width: 95px;
      margin-right: 10px;
    }
    .icon_item {
      a {
        width: 35px;
        height: 35px;
      }
    }
    .fa-brands {
      line-height: 33px;
    }
    .button-rectangle {
      margin-right: 20px;
      font-size: 12px;
    }
    .l-nav {
      padding: 40px 0;
    }
    .nav_list:first-of-type {
      margin-right: 40px;
    }
    .nav_item {
      a {
        font-size: 16px;
      }
    }
    .nav_item:not(:last-child) {
      margin-bottom: 25px;
    }
    .nav-main .nav_item::before {
      width: 15px;
      left: -25px;
    }
    .nav-suv .nav_item a {
      font-size: 14px;
    }
  }
  .footer {
    .nav_list {
      grid-template-columns: repeat(2, max-content);
      gap: 10px 30px;
    }
  }
  .sales {
    background-position: 50%;
    background-size: cover;

    .sales_inner {
      width: 100%;
      background-position: -80px -30px;
    }

    .sales_title {
      font-size: 22px;
    }
    .sales_text {
      font-size: 12px;
    }
    .sales_list {
      /* max-width: 300px; */
      max-width: 280px;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px 20px;
    }
    /* .sales_item {
      width: 140px;
    } */
  }
  .button-toTop {
    right: 10px;
  }
  .title-en,
  .title-dot,
  .title-shortline {
    font-size: 28px;
  }
}
