@charset "UTF-8";
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  word-break: break-word;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul,
ol {
  list-style: none;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: inherit;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* inputやbuttonなどのfontは継承 */
input,
button,
textarea,
select {
  font: inherit;
}

table {
  border-collapse: collapse;
}

body,
button,
input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

html,
body {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
  overflow-y: scroll;
}

body {
  font-size: 16px;
  line-height: 1.6875;
  color: #383A3A;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
  max-height: 100vh;
}

:where(body, button, input, textarea, select) {
  color: #2F2B29;
  font-size: inherit;
  line-height: inherit;
}

label,
select,
input[type=checkbox],
input[type=radio],
button {
  cursor: pointer;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb125 {
  margin-bottom: 125px;
}

.mb130 {
  margin-bottom: 130px;
}

.mb140 {
  margin-bottom: 140px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb160 {
  margin-bottom: 160px;
}

.mb170 {
  margin-bottom: 170px;
}

.mb180 {
  margin-bottom: 180px;
}

.mb190 {
  margin-bottom: 190px;
}

.mb200 {
  margin-bottom: 200px;
}

.centerBox {
  max-width: 1082px;
  margin-inline: auto;
  padding-inline: 25px;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  width: 12px;
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.kari {
  height: 600px;
  width: 100%;
  background-color: #f5f5f5;
}

/*-----------------------
        First view
------------------------*/
.fv {
  width: 100%;
  height: 340px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 160px;
  padding-left: 50px;
  gap: 10px;
  margin-bottom: 160px;
}
.fv .fv_title_outer {
  width: fit-content;
  flex-shrink: 0;
}
.fv .fv_title_en {
  font-size: 32px;
  font-weight: bold;
  color: #E60012;
  line-height: 1.2;
}
.fv .fv_title_jp {
  font-size: 46px;
  font-weight: bold;
}
.fv .fv_image {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: 24px 0 0 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fv .fv_image.company {
  background-image: url(../images/fv_company.png);
}
.fv .fv_image.product {
  background-image: url(../images/fv_product.png);
}
.fv .fv_image.news {
  background-image: url(../images/fv_news.png);
}
.fv .fv_image.inq {
  background-image: url(../images/fv_inquiry.png);
}
.fv .fv_image.privacy {
  background-image: url(../images/fv_privacy.png);
}

/*-----------------------
      Main outer
------------------------*/
.main_content {
  width: 100%;
  max-width: 1132px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px;
}
.main_content.news_main {
  position: relative;
  background-color: rgba(241, 237, 237, 0.5);
  padding: 120px 40px;
}
.main_content.news_main::before, .main_content.news_main::after {
  position: absolute;
  content: "";
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(241, 237, 237, 0.5);
}
.main_content.news_main::before {
  left: 100%;
}
.main_content.news_main::after {
  right: 100%;
}
.main_content.news_article {
  position: relative;
  background-color: rgba(241, 237, 237, 0.5);
  padding: 60px 64px 120px;
  border-radius: 25px;
}

/*-----------------------
      Table common
------------------------*/
.table_outer {
  display: block;
  width: 100%;
  overflow-x: auto;
  margin-bottom: 40px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table tr {
  width: 100%;
}
.table th, .table td {
  border: 1px solid #D9D9D9;
  padding: 15px;
}
.table th {
  width: 280px;
  font-weight: bold;
  background-color: #F5F5F5;
}

.data_link {
  display: block;
  width: fit-content;
  padding-left: 63px;
  padding: 12px 20px 12px 60px;
  background-color: #F5F5F5;
  border: solid 1px #D9D9D9;
  border-radius: 5px;
  position: relative;
  transition: background-color 0.3s;
}
.data_link:hover {
  background-color: rgb(207, 207, 207);
}
.data_link::before {
  position: absolute;
  content: "";
  width: 18px;
  aspect-ratio: 18/21;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.data_link.pdf::before {
  background-image: url(../images/icon_pdf.png);
}
.data_link.xlsx::before {
  background-image: url(../images/icon_xlsx.svg);
}
.data_link.docx::before {
  background-image: url(../images/icon_docx.svg);
}

.title_h2 {
  background-color: #F5F5F5;
  font-size: 24px;
  font-weight: bold;
  width: 100%;
  line-height: 1.4;
  padding: 33px 35px;
  margin-bottom: 30px;
  position: relative;
}
.title_h2.mb60 {
  margin-bottom: 60px;
}
.title_h2::before {
  display: block;
  content: "";
  position: absolute;
  width: 8px;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  background-color: #E60012;
}

/*-----------------------
      Common tags
------------------------*/
.bold {
  font-weight: bold;
}

.center {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.textcenter {
  text-align: center;
}

.link {
  width: fit-content;
  display: block;
  color: #E60012;
  border-bottom: #E60012 1px solid;
}
.link:hover {
  border-bottom: none;
}

/*
.font{
  font-family: "Josefin Sans", serif;
  font-family: "Montserrat", sans-serif;
  font-family: 'BIZ UDPGothic', sans-serif;
  font-family: "Yu Gothic", sans-serif;
  font-family: 'DINBEK', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Zen Kurenaido', sans-serif;
}
*/
.header {
  width: 100%;
  height: 115px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.4509803922);
}
.header.indexpage {
  background: linear-gradient(to bottom, rgba(52, 52, 52, 0.6117647059) 0%, rgba(83, 83, 83, 0.0549019608) 100%);
}

.header_inner {
  height: 100%;
  padding: 30px 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  position: relative;
  z-index: 9999;
  width: 210px;
  height: 51px;
}

.header_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 53px;
}

.header_nav_li {
  font-size: 20px;
  font-weight: 500;
}
.header_nav_li.indexpage {
  color: #fff;
}

.header_nav_ex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.header_nav_ex_li_1 {
  width: 150px;
  height: 37px;
  line-height: 35px;
  text-align: center;
  color: #E60012;
  border-radius: 8px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: background-color 0.3s;
  border: solid 1px #E60012;
}
.header_nav_ex_li_1.indexpage {
  border: none;
}
.header_nav_ex_li_1:hover {
  background-color: #f0d3d6;
}

.header_nav_ex_li_2 {
  width: 150px;
  height: 37px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  border-radius: 8px;
  background-color: #E60012;
  font-size: 16px;
  padding-left: 24px;
  position: relative;
  transition: background-color 0.3s;
}
.header_nav_ex_li_2:hover {
  background-color: #f32b3c;
}
.header_nav_ex_li_2::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  left: 18px;
  background-image: url(../images/icon_letter.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#hamburger_area * {
  display: none;
}

/* Toggle Button */
.hamburger_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 24px;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999;
  cursor: pointer;
}

.hamburger_menu span {
  position: absolute;
  width: 100%;
  height: 3px;
  transition: 0.3s;
}
.hamburger_menu span:first-of-type {
  top: 0;
}
.hamburger_menu span:nth-of-type(2) {
  top: 50%;
}
.hamburger_menu span:last-of-type {
  top: 100%;
}

.hamburger_menu.active span:first-of-type {
  top: 50%;
  transform: rotate(225deg);
}
.hamburger_menu.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger_menu.active span:last-of-type {
  top: 50%;
  transform: rotate(-225deg);
}

#bar_color.hamburger_menu span {
  background-color: #383A3A;
}

#bar_color.hamburger_menu.active span {
  background-color: #383A3A;
}

.hbg_menu_text {
  font-size: 12px;
  color: #383A3A;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* Slide Menu */
.slide_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: right 0.3s ease-in-out;
  z-index: 99;
  transform: translateX(100%);
  transition: 0.3s;
}
.slide_menu .hbg_ul {
  list-style: none;
  height: fit-content;
  margin-top: 160px;
}
.slide_menu a {
  display: block;
  width: fit-content;
  text-decoration: none;
  /*color: #FFF9F3;*/
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin-left: 50px;
  margin-bottom: 38px;
  position: relative;
}
.slide_menu a::before {
  position: absolute;
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  top: calc(50% - 5px);
  left: -19px;
  background-color: #E60012;
  border-radius: 5px;
}

.slide_menu.active {
  transform: translateX(0);
  box-shadow: -2px 0 2px rgba(0, 0, 0, 0.2);
}

.footer {
  width: 100%;
  max-width: 1492px;
  margin-left: auto;
  margin-right: auto;
}

/*-----------------------
      Inquiry part
------------------------*/
.footer_inquiry_outer {
  width: 100%;
  padding: 0 32px;
}

.footer_inquiry_btn {
  display: block;
  width: 100%;
  max-width: 1428px;
  aspect-ratio: 1428/377;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../images/footer_inquiry_bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 21px;
  position: relative;
}
.footer_inquiry_btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: inherit;
  transition: background-color 0.3s;
  z-index: 2;
}
.footer_inquiry_btn:hover::after {
  background-color: rgba(255, 255, 255, 0.062745098);
}
.footer_inquiry_btn:hover .footer_inquiry_arrow {
  animation: arrowSlide 0.3s ease-out forwards;
}

.footer_inquiry_arrow {
  position: absolute;
  display: block;
  width: 15%;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  right: 3.8%;
  transition: transform 0.5s;
  z-index: 3;
}

@keyframes arrowSlide {
  0% {
    transform: translateY(-50%) translateX(-40px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
.footer_inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.footer_inner img {
  width: 100%;
}

/*-----------------------
      Footer part
------------------------*/
.footer_main {
  width: 100%;
  padding: 0 50px 50px;
}

.title_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer_logo {
  width: 510px;
}

.footer_nav {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 60px;
}

.address_flex {
  display: flex;
  justify-content: left;
  align-items: flex-end;
  gap: 17px;
}

.footer_address_map {
  width: 123px;
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  padding-right: 15px;
  border: solid 1px #000;
  border-radius: 10px;
  transition: background-color 0.3s;
}
.footer_address_map:hover {
  background-color: #d4d4d4;
}
.footer_address_map .footer_map_text {
  font-size: 14px;
}

.footer_nav_ex {
  width: fit-content;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 25px;
}

.footer_nav_ex_li_1 {
  width: 150px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  color: #E60012;
  border-radius: 8px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: background-color 0.3s;
  border: solid 1px #E60012;
}
.footer_nav_ex_li_1:hover {
  background-color: #f0d3d6;
}

.footer_nav_ex_li_2 {
  width: 150px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  color: #fff;
  border-radius: 8px;
  background-color: #E60012;
  font-size: 16px;
  padding-left: 24px;
  position: relative;
  transition: background-color 0.3s;
}
.footer_nav_ex_li_2:hover {
  background-color: #f32b3c;
}
.footer_nav_ex_li_2::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  left: 18px;
  background-image: url(../images/icon_letter.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.footer_link {
  display: block;
  font-size: 15px;
  width: fit-content;
  position: relative;
  margin-bottom: 10px;
}
.footer_link:hover::after {
  background-color: inherit;
}
.footer_link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #343434;
}
@media (max-width: 1200px){
  .fv {
    height: 320px;
  }
  .fv .fv_title_en {
    font-size: 28px;
  }
  .fv .fv_title_jp {
    font-size: 38px;
  }
  .main_content {
    padding: 0 30px;
  }
  .title_h2 {
    font-size: 20px;
    padding: 26px 25px;
  }
  .title_h2::before {
    height: 32px;
    top: calc(50% - 16px);
  }
  .header_nav {
    gap: 20px;
  }
  .footer_logo {
    width: 420px;
  }
  .footer_nav {
    gap: 30px;
  }
}
@media (max-width: 960px){
  .mb25 {
    margin-bottom: 15px;
  }
  .mb30 {
    margin-bottom: 20px;
  }
  .mb35 {
    margin-bottom: 25px;
  }
  .mb40 {
    margin-bottom: 25px;
  }
  .mb45 {
    margin-bottom: 35px;
  }
  .mb50 {
    margin-bottom: 30px;
  }
  .mb55 {
    margin-bottom: 30px;
  }
  .mb60 {
    margin-bottom: 30px;
  }
  .mb65 {
    margin-bottom: 35px;
  }
  .mb70 {
    margin-bottom: 35px;
  }
  .mb75 {
    margin-bottom: 35px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .mb85 {
    margin-bottom: 40px;
  }
  .mb90 {
    margin-bottom: 45px;
  }
  .mb95 {
    margin-bottom: 50px;
  }
  .mb100 {
    margin-bottom: 50px;
  }
  .mb110 {
    margin-bottom: 55px;
  }
  .mb120 {
    margin-bottom: 60px;
  }
  .mb125 {
    margin-bottom: 65px;
  }
  .mb130 {
    margin-bottom: 60px;
  }
  .mb140 {
    margin-bottom: 60px;
  }
  .mb150 {
    margin-bottom: 60px;
  }
  .mb160 {
    margin-bottom: 70px;
  }
  .mb170 {
    margin-bottom: 70px;
  }
  .mb180 {
    margin-bottom: 70px;
  }
  .mb190 {
    margin-bottom: 70px;
  }
  .mb200 {
    margin-bottom: 70px;
  }
  .fv {
    margin-top: 110px;
    padding-left: 20px;
    height: 220px;
    margin-bottom: 120px;
  }
  .fv .fv_title_en {
    font-size: 22px;
  }
  .fv .fv_title_jp {
    font-size: 32px;
  }
  .main_content.news_main {
    padding: 80px 20px;
  }
  .main_content.news_article {
    padding: 60px 40px 100px;
  }
  .header {
    height: 80px;
  }
  .header_inner {
    padding: 0 20px;
  }
  .header_nav {
    display: none;
  }
  .header_nav_li {
    font-size: 18px;
  }
  #hamburger_area * {
    display: block;
  }
  .footer_logo {
    width: 300px;
  }
  .footer_nav {
    gap: 20px;
  }
}
@media (max-width: 767px){
  body {
    font-size: 14px;
    text-align: justify;
  }
  .fv {
    height: 160px;
    margin-bottom: 60px;
  }
  .fv .fv_title_en {
    font-size: 18px;
  }
  .fv .fv_title_jp {
    font-size: 24px;
  }
  .main_content {
    padding: 0 20px;
  }
  .main_content.news_main {
    padding: 60px 20px;
  }
  .main_content.news_article {
    padding: 40px 20px 80px;
  }
  .table th, .table td {
    padding: 12px;
  }
  .table th {
    width: 110px;
  }
  .data_link {
    padding-left: 56px;
    padding-right: 18px;
    padding: 10px 18px 10px 56px;
  }
  .title_h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .title_h2.mb60 {
    margin-bottom: 30px;
  }
  .hamburger_menu {
    top: 20px;
    right: 22px;
  }
  .footer_inquiry_outer {
    padding: 0 12px;
  }
  .footer_inquiry_btn {
    border-radius: 12px;
  }
  .footer_main {
    padding: 0 20px 50px;
  }
  .footer_nav {
    display: none;
  }
  .address_flex {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
  .footer_nav_ex {
    gap: 16px;
  }
  .footer_nav_ex_li_1 {
    height: 42px;
    line-height: 42px;
  }
  .footer_nav_ex_li_2 {
    height: 42px;
    line-height: 42px;
  }
  .footer_link {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
@media print{
  body {
    width: 960px;
    margin: 0 auto;
  }
}