@charset "UTF-8";

/* タイトル
-------------------------------------*/
#title {
  padding: 64px 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

#title h1 {
  color: var(--black, #333);
  font-size: 32px;
  line-height: 130%;
  word-break: keep-all;
  width: 100%;
  text-align: center;
}

#title h1 span {
  font-size: 20px;
  display: block;
}

#title h1+p {
  text-align: center;
  word-break: keep-all;
  width: 100%;
  max-width: 400px;
}

#title a {
  text-decoration: none;
  font-weight: bold;
  color: #0088EB;
}

#title .annotation {
  margin: auto;
  border-radius: 12px;
  background: var(--WEB-Backgroumd-Neutral, #F4F4F4);
  padding: 24px 48px;
  box-sizing: border-box;
  text-align: justify;
  display: flex;
  padding: 24px 48px;
  align-items: flex-start;
  gap: var(--16, 16px);
  align-self: stretch;
}

#title .annotation_ttl {
  width: 90px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
}

#title .annotation_txt {
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  #title {
    padding: 64px 24px 0;
  }

  #title .annotation {
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
  }

  #title .annotation_ttl {
    font-size: 16px;
  }

  #title .annotation_txt {
    line-height: 1.3;
  }

  #title h1{
    font-size: 28px;
  }

  #title h1 span {
    font-size: 16px;
  }

  #title h1+p {
    word-break: break-all;
    text-align: left;
  }
}

/* イオシス
-------------------------------------*/
#iosys {
  display: flex;
  max-width: 1024px;
  width: 100%;
  padding: 56px 40px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  border-radius: 24px;
  background: var(--background-blue);
  margin: auto;
}

.iosys_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 672px;
  width: 100%;
}

.iosys_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}

.h2_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.balloon_box {
  position: relative;
  display: inline-block;
  font-weight: bold;
}

.balloon_box::after,
.balloon_box::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: var(--black);
  border-radius: 4px;
  top: 0;
}

.balloon_box::after {
  right: -10px;
  transform: rotate(35deg);
}

.balloon_box::before {
  left: -10px;
  transform: rotate(-35deg);
}

.color_secondary {
  color: var(--secondary);
}

.h2_ttl {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}

.announce {
  display: flex;
  width: 100%;
  padding: 24px 32px 24px 40px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0px 0px 32px 0px rgba(0, 136, 235, 0.16);
}

.announce_ttl {
  font-size: 16px;
  color: var(--secondary);
}

.announce_list li {
  list-style: disc;
  font-size: 12px;
}

.button_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
#iosys .cvButton a{
  font-size: 16px;
}

@media (max-width: 768px) {
  #iosys {
    padding: 64px 16px;
    border-radius: 0;
    background-color: var(--white);
  }

  .h2_ttl {
    font-size: 24px;
    white-space: pre-wrap;
    word-break: keep-all;
    line-height: 1.3;
  }

  .announce {
    padding: 24px 24px 24px 32px;
  }

  #iosys .announce {
    box-shadow: 0px 0px 10px 0px rgba(57, 57, 57, 0.16);
  }

}

/* 中古
-------------------------------------*/
#used {
  display: flex;
  margin: 64px auto 0;
  padding: 64px 24px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: var(--background-blue);
}

.used_container {
  display: flex;
  max-width: 1024px;
  width: 100%;
  margin: auto;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

ul.device_lineup_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

ul.device_lineup_box li.device_contents {
  width: calc((100% - 48px) / 3);
  padding: 24px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  border-radius: 16px;
  background: var(--white, #FFF);
  box-shadow: 0px 0px 32px 0px rgba(0, 136, 235, 0.16);
}

ul.device_lineup_box li.device_contents .device_flexbox {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

ul.device_lineup_box li.device_contents .device_txtbox {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

ul.device_lineup_box li.device_contents h3 {
  font-size: 18px;
  line-height: 1.3;
}


ul.device_lineup_box li.device_contents p {
  min-height: 54px;
}

ul.device_lineup_box li.device_contents .cvButton {
  margin: 0 auto;
}

ul.device_lineup_box li.device_contents .cvButton a {
  width: auto;
  font-size: 14px;
  padding: 12px 38px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  #used {
    margin: 0 auto;
  }

  ul.device_lineup_box li.device_contents {
    width: calc((100% - 24px) / 2);
    min-width: 200px;
    padding: 24px;
  }

  ul.device_lineup_box li.device_contents .device_flexbox {
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }

  ul.device_lineup_box li.device_contents .device_txtbox {
    align-items: flex-start;
  }

  ul.device_lineup_box li.device_contents .device_img {
    height: 140px;
  }

  ul.device_lineup_box li.device_contents h3 {
    font-size: 16px;
  }

  ul.device_lineup_box li.device_contents p {
    min-height: inherit;
    font-size: 12px;
  }
}

@media (max-width: 550px) {
  ul.device_lineup_box {
    justify-content: center;
  }

  ul.device_lineup_box li.device_contents {
    width: 100%;
    max-width: 100%;
  }
}

/* 新品
-------------------------------------*/
#new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1 0 0;
  max-width: 1024px;
  width: 100%;
  padding: 56px;
  margin: auto;
  border-radius: 24px;
  margin: 64px auto;
  background: var(--background-gray);
}

.new_contents {
  display: flex;
  max-width: 672px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.new_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}

.txt_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.d-account {
  font-size: 20px;
}

#new .announce {
  box-shadow: 0px 0px 16px 0px rgba(57, 57, 57, 0.16);
}

#new .kaedoki {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
}

#new .kaedoki h2 {
  text-align: center;
  font-size: 20px;
  line-height: 150%;
}

#new .kaedoki_txt {
  text-align: center;
}

#new .kaedoki .underline {
  background: linear-gradient(transparent 60%, rgba(255, 96, 67, 0.2) 40%);
}

#new .kaedoki .kaedoki_img {
  max-width: 600px;
  width: 100%;
  margin: auto;
}

#new .kaedoki .notes {
  width: fit-content;
  margin: auto;
}

@media (max-width: 768px) {
  #new {
    margin: 0 auto;
    border-top: 2px solid var(--black);
    border-radius: 0;
    padding: 56px 24px;
  }

  #new .kaedoki_txt {
    text-align: left;
  }
}