@charset "UTF-8";

/* オリジナルのレイアウト
----------------------------------------*/
html {
  font-size: 1rem;
  font-size: 10px;
}

body {
  color: #303030;
  /* font-family: 'Noto Sans JP', sans-serif; */
  font-family:
    "Oswald",
    "Noto Sans JP",
    sans-serif,
    WenQuanYi Micro Hei;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  height: 100%;
  /* min-width: 1200px; */
  -webkit-text-size-adjust: 100%;
}
.wrapper {
  overflow: hidden;
}

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

/*表示
----------------------------------------*/
/* PCだけ表示 */
.visible_pc {
  display: block !important;
}
/* SPだけ表示 */
.visible_sp {
  display: none !important;
}

/* PCだけ表示 */
.visible_pc_inline {
  display: inline !important;
}
/* SPだけ表示 */
.visible_sp_inline {
  display: none !important;
}

/* font
----------------------------------------*/
.en {
  /* font-family: 'Oswald', sans-serif; */
  font-family:
    "Oswald",
    "Noto Sans JP",
    sans-serif,
    WenQuanYi Micro Hei;
}

/* header
----------------------------------------*/
.header {
  min-width: 100%;
  /**
	height: 120px;
**/
  height: 11.111vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* padding: clamp(25px, 2.3148vh, 50px) 0 0; */
  background: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  z-index: 2000;
}
.header img {
  display: block;
}
.header_logo {
  width: 185px;
  margin: 0 0 0 3.645%;
}
.header_logo a {
  display: block;
  transition: opacity 0.3s;
}
.header_logo a:hover {
  opacity: 0.6;
}
.header_btn {
  display: none;
}

.sp_logo {
  width: 150px;
  margin: 0 0 0 3.645%;
}

/* gnav
----------------------------------------*/
.gnav {
  margin: 0 2vw 0 auto;
}
.gnav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.7rem !important;
  font-weight: 500;
}
.gnav > ul > li + li {
  margin-left: 2.604vw;
}
.gnav > ul > li > a {
  letter-spacing: 0.065em;
  /* padding-top: 0.463vh; */
  display: block;
  transition: opacity 0.3s;
}
.gnav ul .gnav_recruit {
  margin-left: 2.604vw;
}
.gnav .gnav_recruit a {
  display: block;
  background: #614f42;
  color: #fff;
  border-radius: 0.3125vw;
  padding: 1.296vh 1.25vw 1.111vh 1.406vw;
  letter-spacing: 0.055em;
}
.gnav_recruit a::before {
  content: "";
  display: inline-block;
  width: 1.094vw;
  height: 1.777vh;
  margin-right: 0.729vw;
  vertical-align: -0.185vh;
  background: url(../img/common/icon_external.svg) no-repeat;
  background-size: 1.1vw auto;
}
.gnav ul .gnav_contact {
  margin-left: 2.604vw;
}
.gnav .gnav_contact a {
  display: block;
  background: #838383;
  color: #fff;
  border-radius: 0.3125vw;
  padding: 1.296vh 1.25vw 1.111vh 1.406vw;
  letter-spacing: 0.065em;
}
/* .gnav_contact a::before, .contact_block .btn_more a::before {
    content: '';
    display: inline-block;
    width: 3.5vw;
    height: 1.777vh;
    margin-right: 0.625vw;
    vertical-align: -0.185vh;
    background: url(../../images/index/common/icon_contact.svg) no-repeat;
    background-size: 3.5vw 1.777vh;
} */
.gnav li a:hover {
  opacity: 0.5;
}
.gnav_sub {
  position: absolute;
  white-space: nowrap;
  font-size: 1.4rem;
  background: rgba(253, 253, 253, 0.9);
  border-radius: 4px;
  /* font-family: 'Noto Sans JP', sans-serif; */
  font-family:
    "Oswald",
    "Noto Sans JP",
    sans-serif,
    WenQuanYi Micro Hei;
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
  display: none;
  top: 175%;
  transition: top 0.3s;
}
.gnav_sub.show {
  top: 100%;
}
.gnav .gnav_sub a {
  display: block;
  padding: 12px 16px;
  color: #614f42;
  transition: background 0.3s;
}
.gnav .gnav_sub a:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.05);
}

/* btn
----------------------------------------*/
.btn_more a,
.btn_more span {
  border-radius: 0.3125vw;
  color: #fff;
  background: #614f42;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  /**
	padding: 10px 10px 8px;
	min-width: 193px;
**/
  padding: clamp(10px, 0.925vh, 20px) clamp(10px, 0.925vh, 20px)
    clamp(8px, 0.74vh, 16px);
  min-width: clamp(193px, 10.05vw, 386px);
  letter-spacing: 0.1em;
  text-align: center;
  transition: opacity 0.3s;
}
.btn_more a:hover {
  opacity: 0.6;
}

/* contact
----------------------------------------*/
.contact_block {
  background: none;
  padding: 3.704vh 1.042vw 5.556vh;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
}
.contact_block .contact_inner {
  /**
	max-width: 1300px;
**/
  /* max-width: clamp(320px, 67.71vw, 2600px); */
}
.contact_block .inview {
  opacity: 0;
  transform: translateY(100px);
  transition:
    opacity 0.5s,
    transform 0.5s;
}
.contact_block .inview.show {
  opacity: 1;
  transform: translateY(0);
}
.contact_block h2 {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  padding-left: 7.312%;
  padding-right: 5%;
}
.contact_block h2 .en {
  font-size: 5.2rem;
  font-weight: 500;
  display: block;
  letter-spacing: -0.04em;
  margin: 0 0 1px -2px;
}
.contact_block p {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 2.407vh 8.4% 0 0;
  line-height: 1.4;
  white-space: nowrap;
  letter-spacing: 0.07em;
}
.contact_inner {
  max-width: 1600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact_block .btn_more {
  padding-right: 0;
  /* width: 21.25%; */
}
.contact_block .btn_more a {
  width: auto;
  min-width: 250px;
  padding: 14px 10px 13px;
  background: #614f42;
  color: #fff;
}

/*footer
----------------------------------------*/
.footer {
  background: #614f42;
  color: #fff;
  padding: 80px 20px 90px;
}
.footer a {
  transition: opacity 0.3s;
}
.footer a:hover {
  opacity: 0.6;
}
.footer img {
  display: block;
}
.footer_inner {
  /**
	max-width: 1640px;
**/
  /* max-width: clamp(320px, 85.42vw, 3280px); */
  /* margin: 0 auto; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer_txt {
  order: 0;
  margin-bottom: 33px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.footer_txt h2 {
  font-size: 1.6rem;
}
.footer_logo {
  /**
	width: 185px;
	margin-bottom: 28px;
**/
  width: clamp(185px, 9.635vw, 370px);
  margin-bottom: clamp(28px, 2.59vh, 56px);
}
.footer_logo a {
  display: block;
}
.footer_nav {
  /* width: calc(100% - clamp(185px, 9.635vw, 370px)); */
  /* padding: clamp(28px, 2.59vh, 56px) 0 0 4%; */
  /* padding: 0 0 0 4%; */
  order: 1;
  margin-bottom: 33px;
  width: 100%;
}
.footer_nav > ul {
  /**
	max-width: 1000px;
**/
  /* max-width: clamp(320px, 52.08vw, 2000px); */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 0 0 auto;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}
.footer_nav > ul > li:last-child {
  width: 20%;
}
.footer_nav > ul > li:nth-child(5) {
  width: 19%;
}
.footer_nav > ul > li:nth-child(4) {
  width: 15%;
}
.footer_nav > ul > li:nth-child(3) {
  width: 20%;
}
.footer_nav > ul > li:nth-child(2) {
  width: 15%;
}
.footer_nav > ul > li:nth-child(1) {
  width: 30%;
}
.footer_nav > ul ul {
  font-size: 1.4rem;
  margin-top: 20px;
}
.footer_nav > ul ul li + li {
  margin-top: 9px;
}
.footer_nav > ul ul a {
  text-decoration: underline;
  color: #d5d5d5;
  letter-spacing: 0;
}
.footer_copy {
  order: 2;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  display: block;
}
.footer_link {
  order: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-left: 64px;
  letter-spacing: 0.022em;
}
.footer_link a {
  text-decoration: underline;
  color: #d5d5d5;
}
.footer_link li + li {
  margin-left: 29px;
}

@media only screen and (max-width: 1200px) {
  /* .footer_nav {
		flex: 0 0 80%;
	} */
  .footer_nav > ul > li {
    margin-right: 20px;
  }
}

.list-half-parts {
  display: flex;
  justify-content: space-around;
  /**
	min-height: 50vh;
**/
}
.list-half-parts .list-parts {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /**
	min-height: 50vh;
**/
  margin-bottom: 9.259vh;
}
.list-half-parts .list-parts-special {
  margin-top: 100px;
  margin-bottom: unset;
}
.list-half-parts .text-parts {
  flex: 1;
}
.list-half-parts .image-l-parts {
  order: -1;
  width: 50%;
  height: 100%;
}
.list-half-parts .text-parts {
  padding: 13.889vw 2rem;
  height: 100%;
  /* border: 1px solid black; */
  /* border-left: 0; */
  align-content: center;
  /* background-color: #fff; */
  /* background: rgba(0,0,0,0.5); */
  /* color: #fff; */
  width: 50%;
  background: #fff;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  position: relative;
}
.text-parts-right-border {
  border-right: 1px solid black;
}
.list-parts {
  width: 25%;
}
figure {
  margin: 0;
  height: 100%;
}
.text-parts {
  text-align: left;
}
.products_block-bg {
  height: 37.037vh;
  width: 57.29vw;
  position: absolute;
  top: 0;
  left: 0;
  background-color: gray;
}
img {
  border: none;
  vertical-align: middle;
  visibility: visible;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.header {
  height: 11.111vh;
}
.header_btn {
  top: 3.2vh;
}
.contact_inner .btn_more.en.inview.show a {
  background: #838383;
}

.header_log.isPad img {
  height: 4.6vh;
}

.header_log.isPad {
  margin-left: 2vw;
}
.progress-wrap::after {
  font-size: 25px !important;
}
.progress-wrap svg.progress-circle path {
  stroke-width: 6 !important;
}
.progress-wrap {
  width: 55px;
  height: 55px;
  box-shadow: inset 0 0 0 3px rgba(95, 58, 252, 0.2) !important;
  right: 30px !important;
  bottom: 40px !important;
}
body > div.page-wrapper > footer > div > div > h2 {
  color: unset;
}
body > div.page-wrapper > footer > div > div > p {
  color: unset;
}
