@charset "utf-8";

/*font*/
/*
 Noto Sans jp 400 600 700
 Noto Serif JP 400 600 700
 Sawarabi Mincho 400
*/
@import url("https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&family=Noto+Sans+JP:wght@400;600;700&family=Noto+Serif+JP:wght@400;600;700&display=swap");
@import url("./faq.css");
@import url("./history.css");
@import url("./company.css");

:root {
  /*********** color **********/
  --txt: #262625;
  --white: #fff;
  --glay00: #f7f7f7;
  --glay01: rgba(233, 233, 230, 0.7);
  --glay02: #f3f3f2;
  --glay03: #c8c8c8;
  --glay04: #7b7b7b;
}

html {
  font-size: 62.5%;
  /* -> 1rem=10px */
  font-family: "Sawarabi Mincho", serif;
}

body {
  margin: 0;
  background: var(--glay00);
  color: var(--txt);
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  width: 100%;
}

a:hover {
  text-decoration: underline;
  cursor: pointer;
}

p {
  margin: 0;
}

img {
  width: 100%;
}

ul,
li {
  list-style: none;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}

/* font */
.notosans {
  font-family: "Noto Sans JP";
}

.notoserif {
  font-family: "Noto Serif JP";
}

.txt_24b {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3.6rem;
  letter-spacing: 2.4px;
}

.txt_24r {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 3.6rem;
  letter-spacing: 2.4px;
}

.txt_20b {
  font-weight: 700;
  font-size: 2rem;
  line-height: 3.6rem;
  letter-spacing: 2px;
}

.txt_20r {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1rem;
  letter-spacing: 2px;
}

.txt_18b {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.7rem;
  letter-spacing: 0.1em;
}

.txt_18r {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.7rem;
  letter-spacing: 0.1em;
}

.txt_16b {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.txt_16r {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 1.6px;
}

.txt_14b {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: 1.4px;
}

.txt_14r {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: 1.4px;
}

/*display*/
.pc {
  display: block;
}

.sp {
  display: none;
}

/*elements*/
.container {
  width: 85.4%;
  max-width: 1280px;
  margin: 0 auto;
}

.container_inner {
  width: 80%;
  margin: 0 auto;
}

.spacer {
  padding: 120px 0;
}

.spacer.bottom0 {
  padding-bottom: 0;
}

.bg_white {
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

h2 {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-block-start: 0;
  padding-bottom: 24px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--glay03);
}

h2 span.title_english {
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 3.6px;
}

h2 span.title_slash {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 2px;
  color: var(--glay04);
}

h2 span.title_japanese {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 2px;
  color: var(--txt);
}

/*ヘッダー*/
header {
  width: 100%;
  z-index: 999;
}

.header_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 48px;
}

.header_left {
  width: 245px;
}

.header_left a {
  display: block;
}

.header_right {
  width: calc(100% - 245px);
}

.header_contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.header_contact .phone {
  padding-left: 24px;
  position: relative;
}

.header_contact .phone:before {
  position: absolute;
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../image/icon_phone.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.header_contact a:not(.sp_phone) {
  width: 200px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--glay03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_contact a span {
  padding-left: 26px;
  position: relative;
}

.header_contact a span:before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 10px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../image/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.header_contact a:hover {
  background: var(--txt);
  border: 1px solid var(--txt);
  text-decoration: none;
}

.header_contact a:hover span {
  color: var(--white);
}

.header_contact a:hover span:before {
  background-image: url(../image/icon_mail_w.svg);
}

.header_nav {
  display: flex;
  justify-content: flex-end;
  gap: 48px;
  padding-top: 16px;
}

/*Drawer Menu*/
.drawer_menu {
  width: 27px;
  height: 22px;
}

.drawer_btn:hover {
  cursor: pointer;
}

.drawer_menu .drawer_bg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  top: 53px;
  left: 0;
}

.drawer_menu .drawer_btn {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.drawer_menu .drawer_btn span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  left: 0;
  background: var(--txt);
  transition: all 0.2s;
}

.drawer_menu .drawer_btn span.bar1 {
  top: 0;
}

.drawer_menu .drawer_btn span.bar2 {
  top: calc(50% - 1px);
}

.drawer_menu .drawer_btn span.bar3 {
  bottom: 0;
}

.drawer_menu .drawer_btn.active span.bar1 {
  transform: rotate(45deg);
  top: calc(50% - 2px / 2);
}

.drawer_menu .drawer_btn.active span.bar2 {
  opacity: 0;
}

.drawer_menu .drawer_btn.active span.bar3 {
  transform: rotate(-45deg);
  top: calc(50% - 2px / 2);
}

.drawer_btn.active:hover+.drawer_bg {
  opacity: 1;
}

.drawer_bg:hover {
  opacity: 1;
}

.drawer_nav_wrap {
  width: 375px;
  height: 100%;
  transition: all 0.5s;
  transform: translateX(100%);
  position: fixed;
  top: 53px;
  right: 0;
  z-index: 99;
  background-color: #fff;
  padding: 0px 0 40px;
  overflow-y: scroll;
  padding-bottom: 80px;
}

.drawer_nav_wrap.open {
  transform: translateX(0);
}

.drawer_cv_btn {
  display: flex;
  align-items: center;
}

.drawer_cv_btn li {
  width: 50%;
  height: 60px;
}

.drawer_cv_btn li a {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.9px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
}

.drawer_cv_btn li.line_btn a {
  margin-left: 5px;
}

.drawer_cv_btn li.order_btn a {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 1px;
}

.drawer_cv_btn .line_btn a:before {
  width: 50px;
  height: 19.2px;
  left: 15px;
}

.drawer_item {
  border-bottom: 1px solid var(--glay02);
}

.drawer_item_contact {
  border-top: 1px solid var(--glay02);
  border-bottom: 1px solid var(--glay02);
  padding: 16px 0;
}

.drawer_item_contact .phone .sp_phone {
  border: none;
}

.drawer_item_contact .phone .sp_phone:hover {
  background: transparent;
  border: none;
}

.drawer_item a:not(.drawer_contact_link) {
  display: block;
  font-size: 16px;
  line-height: 16px;
  padding: 24px;
  letter-spacing: 1.6px;
  position: relative;
}

.drawer_contact_link {
  font-size: 1.2rem;
  letter-spacing: 1.2px;
}

.drawer_item a:after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--white);
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.drawer_item:hover a:not(.drawer_contact_link) {
  background: var(--txt);
  color: var(--white);
  text-decoration: none;
}

.drawer_item_contact .header_contact {
  justify-content: center;
  gap: 10px;
}

.drawer_item_contact .header_contact .phone {
  padding-left: 28px;
}

.drawer_item_contact .header_contact .phone:before {
  width: 20px;
  height: 22px;
}

.drawer_item_contact .header_contact a:not(.sp_phone) {
  width: 150px;
  height: 30px;
}

.drawer_item_contact .header_contact a span {
  padding-left: 22px;
}

.drawer_item_contact .header_contact a span:before {
  width: 12px;
  height: 7.5px;
}

/*mv*/
section.mv {
  padding: 48px 0 96px;
  position: relative;
}

.mv_bg_bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 52%;
  background: var(--glay01);
}

.mv_content {
  background: var(--white);
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.mv_text {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
}

.mv_text p {
  text-align: center;
  line-height: 1;
}

.mv_text p:first-child {
  letter-spacing: 4px;
}

.mv_text p:last-child {
  padding-top: 24px;
  color: var(--glay04);
  letter-spacing: 1.4px;
}

.sp_mv {
  display: none;
}

.mv_image {
  width: 50%;
}

/*3つの理由*/
.reason_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.reason_inner {
  width: 30.6%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.reason_image {
  object-fit: cover;
}

.reason_text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reason_title {
  text-align: center;
}

/*取り扱い製品*/
.product_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product_inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}

.product_image {
  object-fit: contain;
  width: 29.3%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 300/215;
}

.product_text {
  display: flex;
  flex-direction: column;
  width: 70.7%;
  max-width: 676px;
  gap: 24px;
}

/*お問い合わせから納品までの流れ*/
.flow_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.flow_inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.flow_image {
  object-fit: contain;
  width: 29.3%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 300/215;
}

.flow_text {
  display: flex;
  flex-direction: column;
  width: 70.7%;
  max-width: 676px;
  gap: 24px;
}

.flow_title_wrap {
  background: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.flow_step {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--txt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flow_step span {
  color: var(--white);
  line-height: 1;
}

/*お問い合わせ*/
.contact .container {
  background: var(--white);
  padding: 56px 0;
}

.contact .container_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact h2 {
  flex-direction: column;
  gap: 24px;
  border: none;
  margin: 0;
  padding: 0;
}

.contact h2 .title_slash {
  display: none;
}

.contact .header_contact {
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.contact .header_contact .phone {
  font-size: 33.5px;
  line-height: 45px;
  padding-left: 48px;
  letter-spacing: 3.3px;
}

.contact .header_contact .phone:before {
  width: 28px;
  height: 30px;
}

.contact .header_contact .business_hour {
  line-height: 1;
}

.contact .header_contact a {
  width: 300px;
  height: 60px;
  margin-top: 12px;
}

.contact .header_contact a span {
  padding-left: 29px;
}

.contact .header_contact a span:before {
  width: 19px;
  height: 12px;
}

/*フッター*/
.footer_inner .container>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_inner .container>div {
  padding-top: 120px;
  padding-bottom: 56px;
}

.footer_inner .company_info {
  display: flex;
  flex-direction: column;
  gap: 9.5px;
}

.footer_inner .footer_logo {
  width: 245px;
  height: 60px;
}

.footer_address {
  font-size: 18px;
  letter-spacing: 1.8px;
  line-height: 1;
}

.footer_phone {
  font-weight: 700;
  font-size: 34px;
  line-height: 48px;
  letter-spacing: 3.4px;
  padding-left: 40px;
  position: relative;
}

.footer_phone:before {
  position: absolute;
  content: "";
  display: block;
  width: 24px;
  height: 26px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../image/icon_phone.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.footer_nav.pc {
  display: flex;
  gap: 80px;
}

.footer_nav_inner li {
  line-height: 32px;
}

.copyright {
  background: var(--txt);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  width: 100%;
  height: 46px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.4px;
}

.pagetop {
  width: 48.5px;
  height: 156px;
  padding: 12px 24px 0 10.5px;
  position: fixed;
  right: 0;
  bottom: 46px;
  z-index: 99;
}

.pagetop:before {
  content: "";
  display: block;
  position: absolute;
  width: 10.5px;
  height: 100px;
  top: 0;
  left: 0;
  background-image: url(../image/icon_pagetop.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.pagetop span {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  line-height: 1;
  letter-spacing: 1.4px;
}

.pagetop:hover {
  cursor: pointer;
}

.pagetop:hover span {
  opacity: 0.5;
}

@media screen and (max-width: 1024px) {

  /*ヘッダー*/
  .header_nav {
    gap: 24px;
  }

  /*mv*/
  .sp_mv {
    display: block;
  }

  .mv_text p:first-child {
    line-height: 38px;
  }

  .mv_text p:last-child {
    line-height: 21px;
  }

  /*3つの理由*/
  .reason_inner {
    width: 31%;
  }

  /*取り扱い製品*/
  .product_text {
    gap: 16px;
  }

  /*フッター*/
  .footer_nav.pc {
    gap: 60px;
  }
}

@media screen and (max-width: 864px) {
  .header_nav {
    gap: 12px;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .container {
    width: 91.5%;
    min-width: 343px;
  }

  .container_inner {
    width: 87.5%;
    margin: 0 auto;
    min-width: 300px;
  }

  .spacer {
    padding: 48px 0;
  }

  h2 {
    gap: 6px;
    padding-bottom: 16px;
    margin: 0 -7.2% 32px;
  }

  .bg_white h2 {
    margin: 0 0 32px;
  }

  h2 span.title_english {
    font-size: 1.8rem;
    letter-spacing: 1.8px;
  }

  h2 span.title_slash {
    font-size: 1.4rem;
    letter-spacing: 1.4px;
  }

  h2 span.title_japanese {
    font-size: 1.4rem;
    letter-spacing: 1.4px;
    color: var(--txt);
  }

  .txt_18b_sp {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 3.2rem;
    letter-spacing: 1.8px;
  }

  .txt_16r_sp {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.4rem;
    letter-spacing: 1.6px;
  }

  .txt_16b_sp {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.8rem;
    letter-spacing: 1.6px;
  }

  .txt_14b_sp {
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.4rem;
    letter-spacing: 1.4px;
  }

  .txt_14r_sp {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.4rem;
    letter-spacing: 1.4px;
  }

  .txt_14r_ls05_sp {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.1rem;
    letter-spacing: 0.7px;
  }

  main {
    padding-top: 53px;
  }

  /*ヘッダー*/
  header.sp {
    position: fixed;
    top: 0;
    left: 0;
    height: 53px;
    background: var(--glay00);
  }

  .header_inner {
    padding: 0 16px;
    height: 100%;
  }

  .header_left {
    width: 150px;
  }

  .header_right {
    width: 27px;
    height: 22px;
  }

  /*mv*/
  section.mv {
    padding: 12px 0 56px;
  }

  .mv>.container {
    width: 80%;
    min-width: 300px;
  }

  .mv_bg_bottom {
    height: 39.7%;
  }

  .mv_content {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }

  .mv_image {
    width: 100%;
  }

  .mv_text {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    padding: 26px 0;
  }

  .mv_text p:first-child {
    font-size: 2rem;
    line-height: 38px;
  }

  .mv_text p:last-child {
    padding-top: 12px;
    font-size: 1.4rem;
    line-height: 21px;
  }

  /*3つの理由*/
  .reason_wrap {
    flex-direction: column;
    gap: 32px;
  }

  .reason_inner {
    width: 100%;
    max-width: none;
    gap: 16px;
  }

  .reason_text {
    gap: 8px;
  }

  /*取り扱い製品*/
  .product_wrap {
    gap: 32px;
  }

  .product_inner {
    flex-direction: column;
    gap: 16px;
  }

  .product_image {
    object-fit: contain;
    width: 100%;
    max-width: none;
    aspect-ratio: unset;
    order: 1;
  }

  .product_text {
    width: 100%;
    order: 2;
  }

  .product_title {
    text-align: center;
    line-height: 1;
  }

  .sp_spacing {
    letter-spacing: 2.8px;
  }

  /*お問い合わせから納品までの流れ*/
  .flow_wrap {
    gap: 32px;
  }

  .flow_inner {
    flex-direction: column;
    gap: 16px;
  }

  .flow_image {
    width: 100%;
    max-width: none;
    aspect-ratio: unset;
  }

  .flow_text {
    width: 100%;
  }

  .flow_title_wrap {
    background: var(--white);
    padding: 8px 16px;
  }

  /*お問い合わせ*/
  .contact .container {
    width: 100%;
    padding: 24px 0;
  }

  .contact .container_inner {
    width: 80%;
    flex-direction: column;
    gap: 16px;
  }

  .contact h2 {
    width: 100%;
    align-items: center;
    gap: 8px;
  }

  .contact .bg_white h2 {
    margin-bottom: 0;
  }

  .contact h2 span.title_english {
    font-size: 2.2rem;
    line-height: 22px;
  }

  .contact h2 span.title_japanese {
    font-size: 1.6rem;
    line-height: 16px;
  }

  .contact .header_contact {
    width: 100%;
    gap: 10px;
  }

  .contact .header_contact .phone {
    font-size: 30px;
    line-height: 43px;
    padding-left: 36px;
  }

  .contact .header_contact .phone .sp_phone {
    border: none;
  }

  .contact .header_contact .phone .sp_phone:hover {
    background: transparent;
    border: none;
  }

  .contact .header_contact a {
    height: 50px;
    margin-top: 6px;
  }

  /*フッター*/
  footer {
    padding-bottom: 44px;
  }

  .footer_inner .container>div {
    padding: 32px 0;
  }

  .footer_inner .footer_logo {
    width: 200px;
    height: 49px;
  }

  .footer_inner .company_info {
    width: 100%;
    text-align: center;
    gap: 12px;
  }

  .footer_address {
    font-size: 1.6rem;
    letter-spacing: 1.6px;
  }

  .footer_nav.pc {
    display: none;
  }

  .copyright {
    height: 26px;
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .pagetop {
    width: 100%;
    height: 44px;
    padding: 0;
    position: fixed;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
  }

  .pagetop:before {
    display: none;
  }

  .pagetop span {
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    position: relative;
    padding-right: 20px;
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .pagetop span:after {
    display: block;
    content: "";
    position: absolute;
    width: 8px;
    height: 5px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../image/pagetop_arrow.svg);
    background-repeat: no-repeat;
    background-size: 100%;
  }

  .pagetop:hover span {
    opacity: 1;
  }
}