@charset "UTF-8";

/* オリジナルのレイアウト
----------------------------------------*/
/* 手机端文字サイズ変数（--phone-fs-lg/md/sm）は css/common.css の :root で定義 */

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;
}

@media only screen and (max-width: 768.98px) {
  body {
    height: 100%;
    min-width: 0;
  }
}
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;
}

@media only screen and (max-width: 768.98px) {
  /* PCだけ表示 */
  .visible_pc {
    display: none !important;
  }
  /* SPだけ表示 */
  .visible_sp {
    display: block !important;
  }

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

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

/* header
----------------------------------------*/
.header {
  min-width: 1200px;
  /**
	height: 120px;
**/
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: clamp(25px, 2.3148vh, 50px) 0 0;
  /* background: rgba(255, 255, 255, .7); */
  background: rgba(255, 255, 255, 1);
  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%;
}

.header {
  min-width: 0;
  min-height: 11.111vh;
  padding: 0;
  display: block;
  align-content: center;
}
.header_logo {
  width: 92px;
}
.header_logo a:hover {
  opacity: 1;
}
.header_btn {
  display: block;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 2.557vh;
  right: 3vw;
  width: 5.997vh;
  height: 5.997vh;
  border: 0;
  border-radius: 0;
  background: none;
}
@media (orientation: landscape) {
  .header_btn {
    right: calc(3vw + 5.997vh);
  }
}
.header_btn:focus {
  outline: none;
}
.header_btn::before,
.header_btn::after {
  content: "";
  display: block;
  position: absolute;
  /* top: 10px; */
  left: 5px;
  background: #264483;
  width: 30px;
  height: 2px;
  transition: transform 0.3s;
  margin-top: -10px;
}
.header_btn::after {
  /* top: 30px; */
  margin-top: 10px;
}
.header_btn span {
  display: block;
  position: absolute;
  /* top: 20px; */
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  background: #264483;
  width: 30px;
  height: 2px;
}
.header_btn.open::before,
.header_btn.open::after {
  /* top: 20px; */
  left: 5px;
  width: 30px;
  height: 2px;
  transform: rotate(45deg);
  margin-top: 0;
}
.header_btn.open::after {
  transform: rotate(-45deg);
}
.header_btn.open span {
  display: none;
}

/* gnav
----------------------------------------*/
.gnav {
  margin: 0.833vh 2.656% 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: var(--phone-fs-md) !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: 1.042vw;
}
.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 {
	content: '';
	display: inline-block;
	width: 1.302vw;
	height: 1.777vh;
	margin-right: 0.625vw;
	vertical-align: -0.185vh;
	background: url(../../images/index/common/icon_contact.svg) no-repeat;
	background-size: 1.302vw auto;
} */
.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: 0;
  transition: top 0.3s;
}
.gnav_sub.show {
  top: 100%;
}
.gnav .gnav_sub a {
  display: flex;
  padding: 12px 16px 12px 15%;
  color: #614f42;
  transition: background 0.3s;
  text-indent: 2rem;
}
.gnav .gnav_sub a:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.05);
}

.gnav {
  display: none;
  /* background: rgba(255, 255, 255, .7); */
  background: rgba(255, 255, 255, 1);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding-bottom: 30px;
  overflow: auto;
}
.gnav > ul {
  display: block;
  text-align: center;
  margin: 0;
}
.gnav > ul li {
  margin: 0;
}
.gnav > ul > li + li {
  margin-left: 0;
}
.gnav > ul > li > a {
  padding: 15px 10px;
}
.gnav ul .gnav_recruit {
  margin: 30px 5% 0;
}
.gnav ul .gnav_contact {
  margin: 20px 5vw 0;
}
.gnav li a:hover {
  opacity: 1;
}
.gnav_sub {
  position: relative;
  border-radius: 0;
  box-shadow: none;
  top: auto;
  margin: 0;
}
.gnav_sub.show {
  top: auto;
}
.gnav .gnav_sub a:hover {
  background: none;
}

/* btn
----------------------------------------*/
.btn_more a,
.btn_more span {
  border-radius: 1vw;
  color: #fff;
  background: #614f42;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  /**
	padding: 10px 10px 8px;
	min-width: 193px;
**/
  padding: 1vh 3vw;
  min-width: 32vw;
  letter-spacing: 0.1em;
  text-align: center;
  transition: opacity 0.3s;
}

@media only screen and (max-width: 768.98px) {
}

/* 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: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact_block .btn_more {
  padding-right: 0;
  width: 21.25%;
}
.contact_block .btn_more a {
  width: 100%;
  padding: 2.963vh 1.563vw 2.593vh;
  background: #614f42;
  color: #fff;
}
/* .contact_block .btn_more a::before {
	content: '';
	display: inline-block;
	width: 1.302vw;
	height: 1.667vh;
	background: url(../../images/index/common/icon_contact.svg) no-repeat left top / 1.302vw 1.667vh;
	vertical-align: -0.185vh;
	margin-right: 0.625vw;
} */

@media only screen and (max-width: 768.98px) {
  .contact_block {
    padding: 53px 5% 69px;
  }
  .contact_block h2 {
    font-size: 1.3rem;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .contact_block h2 .en {
    font-size: var(--phone-fs-lg);
  }
  .contact_block p {
    font-size: var(--phone-fs-sm);
    white-space: normal;
    padding: 26px 0 0;
  }
  .contact_inner {
    display: block;
  }
  .contact_block .btn_more {
    width: auto;
    text-align: center;
  }
  .contact_block .btn_more a {
    width: auto;
    min-width: 250px;
    padding: 14px 10px 13px;
  }
}

/*footer
----------------------------------------*/
.footer {
  background: #614f42;
  color: #fff;
  padding: 80px 20px 90px;
}
.footer a {
  transition: opacity 0.3s;
  font-size: var(--phone-fs-sm) !important;
}
.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%;
  order: 1;
}
.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: var(--phone-fs-md);
  letter-spacing: 0.08em;
}
.footer_nav > ul > li:last-child {
  width: 9.831%;
}
.footer_nav > ul > li:nth-child(5) {
  width: 17.161%;
}
.footer_nav > ul > li:nth-child(4) {
  width: 21.876%;
}
.footer_nav > ul > li:nth-child(3) {
  width: 17.161%;
}
.footer_nav > ul > li:nth-child(2) {
  width: 22.191%;
}
.footer_nav > ul > li:nth-child(1) {
  width: 17.941%;
}
.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;
  }
}

@media only screen and (max-width: 768.98px) {
  .footer {
    padding: 40px 5%;
  }
  .footer a:hover {
    opacity: 1;
  }
  .footer_inner {
    display: block;
  }
  .footer_txt {
    text-align: center;
  }
  .footer_logo {
    width: 130px;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .footer_nav {
    display: none;
  }
  .footer_copy {
    font-size: 1.3rem;
    text-align: center;
  }
  .footer_link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0;
    margin-bottom: 20px;
    font-size: var(--phone-fs-sm);
    flex-wrap: wrap;
  }
  .footer_link li + li {
    margin-left: 3.125vw;
  }
  .footer_link li.img {
    margin: 20px 0 0;
  }
}
@media only screen and (min-width: 769px) {
  .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%;
  }
  .header_log a img {
    vertical-align: middle;
    object-fit: cover;
    width: 100%;
    height: 70%;
  }
}
@media only screen and (min-width: 3840px) {
  section .mainv_block,
  .advantage_block,
  .products_block,
  .solution_block,
  .about_block,
  .news_block {
    height: 1684px;
  }
}
@media only screen and (max-width: 768.98px) {
  .list-half-parts .list-parts {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 2rem;
  }
  .products_block h2 {
    color: #000 !important;
  }
  .text-parts {
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: center !important;
    border: 1px solid black;
  }
  .header_log a img {
    margin-left: 3vw;
    /* width: 47vw; */
    height: 6.297vh;
  }
  .about_block {
    background-position: bottom right !important;
    background-size: cover !important;
  }
  .gnav_recruit a::before {
    width: 21px !important;
    height: 18px !important;
    margin-right: 14px !important;
    vertical-align: -2px !important;
    background-size: unset !important;
  }
  /* .gnav_contact a::before {
		width: 25px !important;
		height: 18px !important;
		margin-right: 12px !important;
		vertical-align: -2px !important;
		background-size: unset !important;
	} */
  /* .contact_block .btn_more a::before {
		width: 25px !important;
		height: 18px !important;
		background: url(../../images/index/common/icon_contact.svg) no-repeat left top / 25px 18px !important;
		vertical-align: -2px !important;
		margin-right: 12px !important;
	} */
  .slide {
    min-height: 100vh !important;
  }
}
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%;
} */
@media (min-width: 769px) and (max-width: 1920px) {
  section .mainv_block,
  .advantage_block,
  .products_block,
  .solution_block,
  .about_block,
  .news_block {
    height: calc(100vh - 11.111vh);
    min-height: calc(var(--vh) * 100 - 11.111vh);
  }
}
@media (min-width: 1921px) and (max-width: 2560px) {
  section .mainv_block,
  .advantage_block,
  .products_block,
  .solution_block,
  .about_block,
  .news_block {
    height: calc(100vh - 11.111vh);
  }
  html {
    font-size: 13.33px;
  }
}
@media (min-width: 2561px) and (max-width: 3840px) {
  section .mainv_block,
  .advantage_block,
  .products_block,
  .solution_block,
  .about_block,
  .news_block {
    height: calc(100vh - 11.111vh);
  }
  html {
    font-size: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024.98px) {
  .header_log a img {
    vertical-align: middle;
    object-fit: cover;
    width: 60%;
    height: 40%;
  }
  /* .gnav_recruit a::before, .gnav_contact a::before {
		width: 3.5vw !important;
		background-size: 2.5vw auto !important;
	} */
  .header_log a img {
    width: 100% !important;
    height: 60% !important;
    margin-left: -20px !important;
    margin-top: 10px;
  }
  .about_block {
    background-size: cover !important;
  }
  /**
	.about_block ul {
		justify-content: space-around !important;
		align-items: unset !important;
		max-width: unset !important;
		margin: unset !important;
		flex-direction: column !important;
	}
**/
  .about_block ul li:nth-child(2) {
    left: unset !important;
    bottom: unset !important;
  }
  .news_block ul {
    width: 60% !important;
  }
  .news_date {
    width: 15vw !important;
  }
  .news_category {
    width: 15vw !important;
  }
  .contact_block .contact_inner {
    max-width: unset !important;
  }
  /* .contact_block .btn_more a::before {
		width: 3.5vw !important;
		background-size: 2.5vw 1.8vh !important;
	} */
  .footer_inner {
    max-width: unset !important;
  }
  .footer_nav > ul {
    max-width: 95vw !important;
  }
  .products_block ul {
    max-width: unset !important;
  }
  .about_block ul {
    justify-content: space-between;
  }
  .about_block ul li {
    /**
		height: 40% !important;
**/
    background: unset !important;
    /**
		justify-items: center !important;
**/
  }
  .about_block figure > div {
    box-shadow: unset !important;
  }
  .products_block ul li:nth-child(1),
  .products_block ul li:nth-child(3) {
    margin-top: 20px;
  }
  .products_block ul li:nth-child(2),
  .products_block ul li:nth-child(4) {
    margin-bottom: 20px;
  }
}
.contact_inner .btn_more.en a {
  background: #614f42;
}
.progress-wrap::after {
  font-size: 20px !important;
}
.progress-wrap svg.progress-circle path {
  stroke-width: 6 !important;
}
.progress-wrap {
  width: 38px;
  height: 38px;
  box-shadow: inset 0 0 0 3px rgba(95, 58, 252, 0.2) !important;
}
.catalog {
  display: flex !important;
  padding: 15px 15% !important;
  justify-content: space-between;
  align-items: center;
}
.catalog span::before,
.catalog span::after {
  content: "";
  display: block;
  position: absolute;
  /* top: 10px; */
  background: #264483;
  width: 20px;
  height: 2px;
  transition: transform 0.3s;
  margin-left: -32px;
  transform: rotate(0deg);
}
.catalog span::after {
  transform: rotate(90deg);
}
.catalog.open span::after {
  transform: rotate(180deg);
}
header.header.isPhone > h1 > a {
  display: inline-block;
}
header.header.isPhone > h1.header_log.isPhone {
  display: flex;
}
