@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/*-------------------------
- body main
- header
- about & features
- roll forming
- section_heading
- company_sec
- access_sec
- contact_bnr
- footer
- chinese
-------------------------*/
/*=======================================
　body, main
=======================================*/
body {
  font-family: "Figtree", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Maru Gothic W4 JIS2004", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

main {
  background-color: #FFF;
}
main.bottom_spacing {
  padding-bottom: 170px;
}
@media screen and (max-width: 768px) {
  main.bottom_spacing {
    padding-bottom: 80px;
  }
}

/*=======================================
　header
=======================================*/
.header {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-10%, #000), to(transparent));
  background: linear-gradient(to bottom, #000 -10%, transparent 100%);
}
.header .pc > .flex_area .hd_logo,
.header .sp > .flex_area .hd_logo {
  position: relative;
}
.header .pc > .flex_area .hd_logo a img,
.header .sp > .flex_area .hd_logo a img {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.header .pc > .flex_area .hd_logo a img.white,
.header .sp > .flex_area .hd_logo a img.white {
  opacity: 1;
}
.header .pc > .flex_area .hd_logo a img.color,
.header .sp > .flex_area .hd_logo a img.color {
  opacity: 0;
}
.header .pc > .flex_area nav > ul > li > a,
.header .sp > .flex_area nav > ul > li > a {
  color: var(--main_white);
}
.header .sp .openbtn span {
  background: #fff;
}
.header .sp .change .white {
  opacity: 1 !important;
}
.header .sp .change .color {
  opacity: 0 !important;
}

/*=======================================
　main_title
=======================================*/
.main_visual {
  width: 100vw;
  height: 100svh;
  position: relative;
  overflow: hidden;
}
.main_visual .mv_slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.main_visual .mv_slider .slide_img {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 1.5s cubic-bezier(0.25, 0, 0.75, 1);
  transition: opacity 1.5s cubic-bezier(0.25, 0, 0.75, 1);
  will-change: opacity;
  overflow: hidden;
  z-index: 1;
}
.main_visual .mv_slider .slide_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  scale: 1.05;
  -webkit-transition: scale 1.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: scale 1.8s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: scale;
}
.main_visual .mv_slider .slide_img.active {
  opacity: 1;
}
.main_visual .mv_slider .slide_img.active img {
  scale: 1;
}
.main_visual .mv_dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 62px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .main_visual .mv_dots {
    row-gap: 13px;
    right: 35px;
  }
}
.main_visual .mv_dots button {
  display: block;
  width: 19px;
  aspect-ratio: 1/1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main_visual .mv_dots button {
    width: 11px;
  }
}
.main_visual .mv_dots button::before {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 1/1;
  background: var(--main_white);
  border-radius: 50vw;
  position: absolute;
  top: 6px;
  left: 6px;
}
@media screen and (max-width: 768px) {
  .main_visual .mv_dots button::before {
    width: 4px;
    top: 3.5px;
    left: 3.5px;
  }
}
.main_visual .mv_dots button.active::after {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 1/1;
  background: var(--main_navy);
  border-radius: 50vw;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .main_visual .mv_dots button.active::after {
    width: 11px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.main_visual .main_lead {
  color: var(--main_white);
  width: 80%;
  max-width: 912px;
  position: absolute;
  left: 8.5625%;
  bottom: 90px;
  z-index: 100;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
@media screen and (max-width: 768px) {
  .main_visual .main_lead {
    left: 5.333%;
    bottom: 24px;
  }
}
.main_visual .main_lead p:first-of-type {
  font-family: "Figtree", sans-serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.09em;
  padding-left: 6.5px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .main_visual .main_lead p:first-of-type {
    font-size: 14px;
    padding-left: 5px;
    margin-bottom: 0;
  }
}
.main_visual .main_lead h2 {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .main_visual .main_lead h2 {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .main_visual .main_lead h2 {
    font-size: 42px;
    line-height: 1.4285714286;
    margin-bottom: 6px;
  }
}
.main_visual .main_lead p:last-of-type {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  padding-left: 6.5px;
}
@media screen and (max-width: 768px) {
  .main_visual .main_lead p:last-of-type {
    font-size: 12px;
    line-height: 1.8333333333;
    padding-left: 1px;
  }
}
.main_visual .main_copy {
  font-family: "Figtree", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--main_white);
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 34px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .main_visual .main_copy {
    font-size: 9px;
    right: 15px;
  }
}
.main_visual .scroll_txt {
  color: var(--main_white);
  font-family: "Figtree", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 27px;
  z-index: 100;
}

/*=======================================
　about & features
=======================================*/
.content-wrap {
  background-color: #f3f3f3;
  padding: 170px 0 150px;
  position: relative;
  overflow-x: hidden;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .content-wrap {
    padding: 68px 0 50px;
  }
}
.content-wrap .content-wrap_bg {
  position: absolute;
  height: auto;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .content-wrap .content-wrap_bg {
    width: 1023px;
  }
}
.content-wrap .content-wrap_bg picture {
  display: block;
}
.content-wrap h3 {
  color: var(--main_navy);
  font-family: "Figtree", sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .content-wrap h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
  }
}
.content-wrap section .content_ttl {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6571428571;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .content-wrap section .content_ttl {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}
.content-wrap section .content_ttl span {
  color: var(--main_navy);
}
@media screen and (max-width: 768px) {
  .content-wrap section .content_ttl span {
    font-size: 25px;
    letter-spacing: 0.05em;
  }
}
.content-wrap section .content_txt {
  max-width: 640px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .content-wrap section .content_txt {
    font-size: 13px;
  }
}
.content-wrap section.about {
  margin-bottom: 0px;
}
.content-wrap section.about .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content img01" "btn img01" "img02 img02";
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  .content-wrap section.about .inner {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "img01" "img02" "btn";
    margin-bottom: 34px;
  }
}
.content-wrap section.about .inner .about_content {
  grid-area: content;
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  .content-wrap section.about .inner .about_content {
    margin-bottom: -16px;
  }
}
.content-wrap section.about .inner .about_content .content_txt {
  max-width: 474px;
}
.content-wrap section.about .inner .btn {
  grid-area: btn;
  margin-inline: unset;
  margin-right: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .content-wrap section.about .inner .btn {
    margin-inline: auto;
  }
}
.content-wrap section.about .inner .about_img01 {
  grid-area: img01;
}
@media screen and (max-width: 768px) {
  .content-wrap section.about .inner .about_img01 {
    width: 71.88405797%;
    margin-left: auto;
  }
}
.content-wrap section.about .inner .about_img02 {
  grid-area: img02;
}
@media screen and (max-width: 768px) {
  .content-wrap section.about .inner .about_img02 {
    margin-top: -30px;
    margin-bottom: 30px;
  }
}
.content-wrap section.features .content_ttl {
  font-size: 35px;
  letter-spacing: 0.08em;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .content-wrap section.features .content_ttl {
    font-size: 22px;
  }
}
.content-wrap section.features .features_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .content-wrap section.features .features_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.content-wrap section.features .features_content .btn {
  margin-inline: unset;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .content-wrap section.features .features_content .btn {
    margin-inline: auto;
  }
}
.content-wrap section.features .features_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5%;
}
@media screen and (max-width: 768px) {
  .content-wrap section.features .features_list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.content-wrap section.features .features_list .features_item {
  border-radius: 12px;
  background: var(--main_white);
  border: solid 1px var(--main_navy);
  padding: 42.5px 21px 38px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .content-wrap section.features .features_list .features_item {
    padding: 24px;
    display: grid;
    grid-template-columns: 18.31% 1fr;
    grid-template-areas: "number topic" "txt txt";
    text-align: left;
    gap: 14px;
  }
}
.content-wrap section.features .features_list .features_item p:nth-of-type(1) {
  color: var(--main_navy);
  font-family: "Figtree", sans-serif;
  font-size: 78px;
  font-weight: 500;
  line-height: 1.2051282051;
}
@media screen and (max-width: 768px) {
  .content-wrap section.features .features_list .features_item p:nth-of-type(1) {
    grid-area: number;
    font-size: 42px;
    text-align: center;
  }
}
.content-wrap section.features .features_list .features_item p:nth-of-type(1) span {
  display: block;
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #E34F4F;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .content-wrap section.features .features_list .features_item p:nth-of-type(1) span {
    font-size: 9px;
    margin-bottom: 0;
  }
}
.content-wrap section.features .features_list .features_item p:nth-of-type(2) {
  color: var(--main_navy);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.16;
  margin-bottom: 26px;
  min-height: 117px;
}
@media screen and (max-width: 768px) {
  .content-wrap section.features .features_list .features_item p:nth-of-type(2) {
    grid-area: topic;
    font-size: 17px;
    line-height: 1.47;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
    min-height: auto;
  }
}
.content-wrap section.features .features_list .features_item p:nth-of-type(3) {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.7857142857;
}
@media screen and (max-width: 768px) {
  .content-wrap section.features .features_list .features_item p:nth-of-type(3) {
    grid-area: txt;
    font-size: 12px;
    line-height: 1.8333333333;
    padding-inline: 8px;
  }
}

/*=======================================
　roll forming
=======================================*/
.roll-forming {
  background: center/cover url(../img/top/rf_bg.jpg) no-repeat;
  position: relative;
  margin-top: -1px;
  margin-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .roll-forming {
    background: center/cover url(../img/top/rf_bg_sp.jpg) no-repeat;
    padding-bottom: 90px;
    margin-bottom: 90px;
  }
}
.roll-forming .rf_content {
  height: 1176px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .roll-forming .rf_content {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.roll-forming .rf_content .rf_txt {
  color: var(--main_white);
  width: 47.41666667%;
  margin-top: 320px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .roll-forming .rf_content .rf_txt {
    width: 100%;
  }
}
.roll-forming .rf_content .rf_txt h3 {
  font-family: "Figtree", sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .roll-forming .rf_content .rf_txt h3 {
    font-size: 15px;
    margin-bottom: 0;
  }
}
.roll-forming .rf_content .rf_txt p:first-of-type {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 58px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .roll-forming .rf_content .rf_txt p:first-of-type {
    font-size: 22px;
    line-height: 35px;
    margin-bottom: 16px;
  }
}
.roll-forming .rf_content .rf_txt p:first-of-type span {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .roll-forming .rf_content .rf_txt p:first-of-type span {
    font-size: 25px;
  }
}
.roll-forming .rf_content .rf_txt p:nth-of-type(2) {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .roll-forming .rf_content .rf_txt p:nth-of-type(2) {
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1.8461538462;
    margin-bottom: 30px;
  }
}
.roll-forming .rf_content .rf_txt .btn {
  margin-inline: 0;
}
.roll-forming .rf_content .rf_slider {
  width: 48.8125vw;
  height: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .roll-forming .rf_content .rf_slider {
    width: 100%;
    height: 188px;
    margin-top: 80px;
  }
}
.roll-forming .rf_content .rf_slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.roll-forming .rf_content .rf_slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =================================
	section_heading
=============================== */
.section_heading {
  font-family: "Figtree", sans-serif;
  color: var(--main_navy);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .section_heading {
    font-size: 37px;
  }
}

/* ==============================
	company_sec
================================*/
.company_sec .profile_img {
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .company_sec .profile_img {
    margin-bottom: 20px;
  }
}
.company_sec .profile_img picture {
  display: block;
}
.company_sec .profile_img picture img {
  height: 356px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .company_sec .profile_img picture img {
    height: 208px;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.company_sec .profile_content {
  display: grid;
  grid-template-columns: 648px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  margin-bottom: 165px;
}
@media screen and (max-width: 1024px) {
  .company_sec .profile_content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .company_sec .profile_content {
    margin-bottom: 50px;
  }
}
.company_sec .profile_content .profile_list .profile_item {
  padding: 24px 0;
  border-bottom: 1px solid #D1D1D1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .company_sec .profile_content .profile_list .profile_item {
    padding: 15px 0;
    gap: 24px;
  }
}
.company_sec .profile_content .profile_list .profile_item:first-of-type {
  padding-top: 0;
}
.company_sec .profile_content .profile_list .profile_item dt {
  color: var(--main_navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2941176471;
  width: 135px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .company_sec .profile_content .profile_list .profile_item dt {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 24px;
    width: 128px;
  }
}
.company_sec .profile_content .profile_list .profile_item dd {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.375;
}
@media screen and (max-width: 768px) {
  .company_sec .profile_content .profile_list .profile_item dd {
    font-size: 13px;
  }
}
.company_sec .profile_content .profile_list .profile_item dd:nth-of-type(2) {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .company_sec .profile_content .profile_list .profile_item dd:nth-of-type(2) {
    margin-top: 8px;
  }
}
.company_sec .profile_content .profile_list .profile_item dd .place {
  display: block;
  margin-bottom: 15px;
}
.company_sec .profile_content .profile_list .profile_item dd .nowrap {
  white-space: nowrap;
}
.company_sec .profile_content .profile_img-box {
  max-width: 412px;
}
@media screen and (max-width: 1024px) {
  .company_sec .profile_content .profile_img-box {
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .company_sec .profile_content .profile_img-box {
    display: block;
  }
}
.company_sec .profile_content .profile_img-box p:first-of-type {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .company_sec .profile_content .profile_img-box p:first-of-type {
    margin-bottom: 20px;
  }
}
.company_sec .profile_map iframe {
  width: 100%;
  height: 330px;
}
@media screen and (max-width: 768px) {
  .company_sec .profile_map iframe {
    height: 291px;
  }
}

/* =========================
	access_sec
============================*/
.access_map iframe {
  width: 100%;
  height: 392px;
}
@media screen and (max-width: 768px) {
  .access_map iframe {
    height: 291px;
  }
}

/* =========================
	contact_bnr
==========================*/
.contact .inner .contact_bnr {
  font-family: "Figtree", sans-serif;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 70px;
  margin-top: 166px;
  margin-bottom: 0;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .contact .inner .contact_bnr {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 56px 16%;
    margin-top: 60px;
    margin-inline: auto;
    gap: 12px;
  }
}
.contact .inner .contact_bnr h3 {
  color: var(--main_navy);
  font-size: 57px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1929824561;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact .inner .contact_bnr h3 {
    font-size: 37px;
  }
}
.contact .inner .contact_bnr .bnr_information {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 11px;
}
.contact .inner .contact_bnr .bnr_information .info_address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .contact .inner .contact_bnr .bnr_information .info_address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact .inner .contact_bnr .bnr_information .info_address p {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .contact .inner .contact_bnr .bnr_information .info_address p {
    font-size: 16px;
  }
}
.contact .inner .contact_bnr .bnr_information .reception {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2142857143;
  padding: 7px 55px;
}
@media screen and (max-width: 768px) {
  .contact .inner .contact_bnr .bnr_information .reception {
    font-size: 12px;
    letter-spacing: 0.03em;
    line-height: 1.8333333333;
    padding: 8px 10px;
  }
}

/* ==========================================
	footer
=============================================*/
.footer_foreign-language {
  background: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .footer_foreign-language {
    padding-bottom: 0;
  }
}
.footer_foreign-language .inner {
  position: relative;
}
.footer_foreign-language .inner .logo {
  max-width: 494px;
  margin-inline: auto;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .footer_foreign-language .inner .logo {
    max-width: 276px;
  }
}
.footer_foreign-language .inner .page-top_btn2 {
  color: #333;
  font-family: "Noto Sans Jp", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: 75px;
  height: 32px;
  position: absolute;
  right: 0;
  bottom: 43px;
}
.footer_foreign-language .inner .page-top_btn2 .btn_wrap {
  position: relative;
}
.footer_foreign-language .inner .page-top_btn2 .btn_wrap:before {
  content: "";
  display: block;
  width: 11.5px;
  aspect-ratio: 1/1;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  rotate: 45deg;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 7px;
  -webkit-transition: translate 0.3s ease;
  transition: translate 0.3s ease;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .footer_foreign-language .inner .page-top_btn2 .btn_wrap:hover::before {
    translate: 0 -7px;
    -webkit-transition: translate 0.3s ease;
    transition: translate 0.3s ease;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .footer_foreign-language .inner .page-top_btn2 .btn_wrap:hover::before {
    translate: 0 -7px;
    -webkit-transition: translate 0.3s ease;
    transition: translate 0.3s ease;
  }
}
.footer_foreign-language .inner .page-top_btn2 .btn_wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 32px;
}
.footer_foreign-language .copy {
  background: var(--main_navy);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 16.5px 0 13.5px;
}
@media screen and (max-width: 768px) {
  .footer_foreign-language .copy {
    font-size: 10px;
  }
}

/* ============================
	chinese
===============================*/
body:has(.chinese) {
  font-family: "Noto Sans SC", sans-serif;
}

@media screen and (max-width: 1200px) {
  .chinese .main_visual .main_lead h2 {
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .chinese .content-wrap .features .features_content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

/* ========================
	english
=============================*/
.english .main_visual .main_lead {
  width: 80%;
  max-width: none;
  bottom: 64px;
}
.english .main_visual .main_lead h2 {
  max-width: 1000px;
}
.english .main_visual .main_lead h2 .br1200 {
  display: none;
}
@media screen and (max-width: 1200px) {
  .english .main_visual .main_lead h2 .br1200 {
    display: block;
  }
}
.english .main_visual .main_lead p:last-of-type {
  max-width: 900px;
}
.english .content-wrap .about .inner {
  margin-bottom: 18px;
}
.english .content-wrap .about .inner .about_content {
  margin-bottom: 135px;
}
@media screen and (max-width: 768px) {
  .english .content-wrap .about .inner .about_content {
    margin-bottom: 0;
  }
}
.english .content-wrap .about .inner .about_content h3 {
  margin-bottom: 26px;
}
.english .content-wrap .about .inner .about_content .content_ttl {
  line-height: 1.4;
}
.english .content-wrap .features .inner h3 {
  margin-bottom: 28px;
}
.english .content-wrap .features .inner .content_ttl {
  line-height: 1.4;
}
.english .content-wrap .features .inner .features_content .content_txt {
  max-width: 760px;
}
.english .content-wrap .features .inner .features_list .features_item {
  padding: 42.5px 8px 38px;
}
.english .content-wrap .features .inner .features_list .features_item p:nth-of-type(2) {
  font-size: 22px !important;
  line-height: 1.4090909091 !important;
}
@media screen and (max-width: 768px) {
  .english .content-wrap .features .inner .features_list .features_item p:nth-of-type(2) {
    font-size: 17px !important;
  }
}
.english .roll-forming .rf_content .rf_txt {
  margin-top: 295px;
}
.english .roll-forming .rf_content .rf_txt p:first-of-type {
  line-height: 49px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .english .roll-forming .rf_content .rf_txt p:first-of-type {
    line-height: 35px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .english .roll-forming .rf_content .rf_txt h3 {
    margin-bottom: 16px;
  }
}

/* ============================
	korean
===============================*/
body:has(.korean) {
  font-family: "Noto Sans KR", sans-serif;
}

.korean .main_lead h2 span {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .korean .content-wrap .features .features_content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}/*# sourceMappingURL=foreign-language.css.map */