@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700");
/*color 変数*/
html {
  width: 100%;
  font-size: 10px;
}

body {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}

.default_section {
  padding: 80px 0;
}

.default_inner {
  width: 100%;
  max-width: 1240px;
  margin: auto;
  padding: 0 30px;
}

.text-area.width_75 {
  width: 100%;
  max-width: 800px;
}

.col_2 > div, .col_2 > li {
  width: 50%;
}

.col_4 {
  gap: 1.3333333%;
}
.col_4 > li, .col_4 > div {
  width: 24%;
}

/*--header-*/
header {
  position: fixed;
  width: 100%;
  z-index: 10000;
  background: #fff;
  border-bottom: 1px solid #DDDDDD;
}
header::after {
  display: none;
}
header nav {
  display: flex;
  justify-content: space-between;
}
header .drawer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header .drawer img {
  padding: 0 20px;
  height: 33px;
}
header #header-toggle {
  display: none;
}
header #header-menu {
  width: calc(100% - 200px);
  background-color: transparent;
  margin-top: 0;
}
header #header-menu ul {
  height: 88px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
header #header-menu ul li {
  display: flex;
  align-items: center;
  border-left: 1px solid #DDDDDD;
}
header #header-menu ul li:last-child {
  padding: 0;
}
header #header-menu ul li a {
  display: block;
  padding: 30px 20px;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: #333;
  text-align: center;
  word-break: keep-all;
  transition: opacity 0.3s;
}
header #header-menu ul li a.text_link.default_btn {
  margin: 0;
  padding: 18px 35px;
  color: #fff;
  font-size: 1.4rem;
}

/*--header end--*/
/*--main contents-*/
.content_main {
  padding-top: 89px;
  min-height: 100vh;
}

.mv {
  width: 100%;
  height: 53vw;
  max-height: 80vh;
  background: url(../img/mv_bg.png) no-repeat;
  background-size: cover;
}
.mv .default_inner {
  height: 100%;
  flex-direction: column-reverse;
  padding: 60px 30px;
}
.mv .default_inner .text-block {
  width: 100%;
}
.mv .default_inner .text-block.fadeUp {
  animation-delay: 1s;
}

/*下層メインヴィジュアル*/
section.lower_mv {
  margin: 40px 0;
}

/*パンクズ*/
nav.breadcrumb {
  padding: 5px 0;
}
nav.breadcrumb ul li {
  font-size: 1.2rem;
  display: inline-block;
  padding-left: 5px;
  vertical-align: middle;
}
nav.breadcrumb ul li.top {
  padding-left: 0;
}
nav.breadcrumb ul li::before {
  content: ">";
  display: inline-block;
  padding-right: 10px;
}
nav.breadcrumb ul li.top::before {
  display: none;
}
nav.breadcrumb ul li.top a {
  transition: opacity 0.3s;
}
nav.breadcrumb ul li.top a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: -3px;
  background: url(../img/icon_home.svg) no-repeat;
  background-size: cover;
  margin-right: 8px;
  vertical-align: middle;
}
nav.breadcrumb ul li.top a:hover {
  opacity: 0.6;
}

/*下層メインタイトル*/
section.lower_main_text {
  padding: 80px 0;
}
section.lower_main_text .row {
  align-items: flex-start;
}
section.lower_main_text.oem {
  background: url(../img/oem_lower_main_text_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
section.lower_main_text.original {
  background: url(../img/original_lower_main_text_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
section.lower_main_text.original .row {
  align-items: center;
}
section.lower_main_text h2 {
  font-size: 2.8rem;
  padding-right: 12%;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  margin: 0;
}

.btn-area {
  width: 100%;
  margin: 45px auto 0;
}

footer .default_inner {
  padding: 40px 30px 100px;
}
footer .logo_area {
  width: 20%;
}
footer nav.f-nav {
  width: 80%;
  padding-left: 5%;
}
footer nav.f-nav li {
  width: 33%;
  font-size: 1.4rem;
  letter-spacing: 0;
  margin-bottom: 15px;
}
footer nav.f-nav li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 1px;
  background: #DDDDDD;
  margin-right: 5px;
}
footer nav.f-nav li a {
  color: #333;
  transition: opacity 0.3s;
}
footer nav.f-nav li a:hover {
  opacity: 0.6;
}
footer .copy {
  text-align: center;
  font-size: 1rem;
  color: #fff;
  padding: 5px;
  background: transparent linear-gradient(304deg, #1e267d 0%, #09102b 100%) 0% 0% no-repeat padding-box;
}

/*--main_contents end-*/
@media screen and (max-width: 768px) {
  .default_inner {
    width: 100%;
    max-width: 1240px;
    margin: auto;
    padding: 0 15px;
  }
  .col_4 {
    gap: 4%;
  }
  .col_4 li {
    width: 48%;
    margin-bottom: 30px;
  }
  /*--header-*/
  #header {
    /*ハンバーガーメニュー*/
    /*ナビゲーション部分*/
  }
  #header nav {
    width: 100%;
    padding: 0;
    height: 60px;
    display: block;
    position: relative;
  }
  #header .drawer {
    height: 60px;
    align-items: center;
  }
  #header #logo {
    max-width: 170px;
  }
  #header #header-toggle {
    display: block;
    position: fixed;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 3;
    right: 15px;
  }
  #header #header-toggle.active span:nth-child(1) {
    top: 12px;
    transform: rotate(-45deg);
  }
  #header #header-toggle.active span:nth-child(2), #header #header-toggle.active span:nth-child(3) {
    top: 13px;
    transform: rotate(45deg);
  }
  #header #header-toggle span {
    display: block;
    position: absolute;
    width: 28px;
    border-bottom: 1px solid #000;
    transition: 0.35s ease-in-out;
  }
  #header #header-toggle span:nth-child(1) {
    top: 5px;
  }
  #header #header-toggle span:nth-child(2) {
    top: 14px;
  }
  #header #header-toggle span:nth-child(3) {
    top: 24px;
  }
  #header #header-menu {
    width: 100%;
    min-height: 900px;
    text-align: center;
    transform: translateX(100vw);
    transition: all 0.3s linear;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #header #header-menu.open {
    overflow-y: scroll;
    transform: translateX(0);
  }
  #header #header-menu.open::-webkit-scrollbar {
    display: none;
  }
  #header #header-menu.open ul {
    height: calc(100vh - 75px);
    min-height: 976px;
    display: block;
    transition: 0.5s;
    opacity: 1;
  }
  #header #header-menu.open ul li a {
    margin: 0;
    opacity: 1;
  }
  #header #header-menu ul {
    display: block;
    height: 100vh;
    padding: 0;
    text-align: left;
    color: #333;
    background: #fff;
    opacity: 0;
    transition: all 0.3s linear;
  }
  #header #header-menu ul li {
    display: block;
    width: 100%;
    border-left: 0;
    border-bottom: 1px solid #DDDDDD;
  }
  #header #header-menu ul li a {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    padding: 20px;
    color: #000;
    text-align: left;
    text-decoration: none;
    opacity: 0;
  }
  #header #header-menu ul li a.text_link.default_btn {
    color: #fff;
  }
  #header #header-menu ul li a.text_link.default_btn span {
    display: inline-block;
    margin-right: 10px;
  }
  /*--header-*/
  /*--main contents-*/
  .content_main {
    padding-top: 60px;
  }
  .mv {
    height: 53vh;
    background: url(../img/mv_sp_bg.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .mv .default_inner {
    padding: 30px 15px;
  }
  .btn-area {
    margin: 30px auto 0;
  }
  footer {
    margin: 0 auto;
  }
  footer .default_inner {
    padding: 0;
    flex-direction: column-reverse;
    margin-bottom: 40px;
    padding: 0;
  }
  footer nav.f-nav {
    width: 100%;
    padding-left: 0;
  }
  footer nav.f-nav ul.row {
    display: block;
    border-bottom: 1px solid #ddd;
  }
  footer nav.f-nav li {
    width: 100%;
    padding: 15px 10px;
    margin-bottom: 0;
    border-top: 1px solid #ddd;
    font-size: 1.6rem;
  }
  footer ul.row {
    display: block;
  }
  footer .logo_area {
    width: 30%;
    margin-top: 40px;
  }
  /*--main_contents end-*/
}
@keyframes default-gradient {
  0% {
    background: transparent linear-gradient(304deg, #09102b 0%, #1e267d 100%);
  }
  100% {
    background: #09102b;
  }
}
@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*ボタン*/
.default_btn {
  background: transparent linear-gradient(304deg, #09102b 0%, #1e267d 100%) 0% 0% no-repeat padding-box;
}
.default_btn:hover {
  opacity: 0.85;
}

.fill_btn-area {
  width: 100%;
  margin-top: 30px;
  justify-content: end;
}
.fill_btn-area .fill {
  display: block;
  position: relative;
  padding: 10px 30px;
  text-align: left;
  background: transparent linear-gradient(304deg, #09102b 0%, #1e267d 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  width: 50%;
  border-radius: 30px;
  min-width: 220px;
  transition: all 0.3s;
}
.fill_btn-area .fill::before {
  content: "";
  position: absolute;
  display: block;
  width: 21px;
  height: 3.5px;
  background: url(../img/icon_arrow_right_wh.svg) no-repeat;
  background-size: contain;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
  transition: all 0.5s;
}
.fill_btn-area .fill:hover {
  opacity: 0.85;
}
.fill_btn-area .fill:hover::before {
  right: 15px;
}

a.default_text_btn {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  padding: 23px 80px 23px 0;
  transition: 0.5s;
}
a.default_text_btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  vertical-align: middle;
  background: transparent linear-gradient(304deg, #09102b 0%, #1e267d 100%) 0% 0% no-repeat padding-box;
  transition: 0.75s;
}
a.default_text_btn::after {
  content: "";
  width: 20px;
  height: 4px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  background: url(../img/icon_right_arrow.svg) no-repeat;
  background-size: cover;
  transition: 0.5s;
}
a.default_text_btn:hover {
  color: #628299;
}
a.default_text_btn:hover::before {
  transform: scale(1.25);
  opacity: 0.6;
}
a.default_text_btn:hover::after {
  transform: scale(1.4);
}
a.default_text_btn.on-bg {
  color: #fff;
}
a.default_text_btn.on-bg::before {
  background: transparent linear-gradient(135deg, #FFFFFF 0%, #DADEE2 100%) 0% 0% no-repeat padding-box;
}
a.default_text_btn.on-bg::after {
  background: url(../img/icon_right_arrow_blue.svg) no-repeat;
  background-size: contain;
}

/*タイトル*/
h1.mv_ttl {
  margin: 0;
  line-height: 2em;
  font-size: 2.2vw;
  font-weight: normal;
}
h1.mv_ttl span {
  font-size: 2.8vw;
  font-weight: bold;
}

h1.default_lower_ttl {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  margin: 0;
}
h1.default_lower_ttl .en {
  display: block;
  font-size: 1.4rem;
  color: #3A5774;
  margin-top: 17.5px;
  font-weight: normal;
}

h2.main_simple_ttl {
  font-size: 4rem;
  letter-spacing: 0.1em;
  margin: 0 auto 45px;
  padding-bottom: 25px;
  border-bottom: 1px solid #DDDDDD;
}
h2.main_simple_ttl span.en {
  font-size: 1.6rem;
  display: block;
  font-weight: normal;
  margin-bottom: 25px;
  color: #3A5774;
}
h2.main_simple_ttl span.smaller {
  font-size: 0.8em;
}
h2.main_simple_ttl.on_bg {
  text-align: center;
  border-bottom: 0;
  color: #fff;
}
h2.main_simple_ttl.on_bg span.en {
  color: #FFFFFF;
}

h2.lower_default_ttl {
  font-size: 3.2rem;
  margin: 0 0 45px;
}

h2.big_text_ttl {
  position: relative;
  margin: 0 auto 60px;
  font-size: 4rem;
  text-align: center;
  padding-top: 50px;
}
h2.big_text_ttl ::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  max-width: 628px;
  height: 73px;
  margin: auto;
  background: url(../img/strength_ttl_bg.svg) no-repeat;
  background-size: contain;
}
h2.big_text_ttl span.small_text {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 15px;
}

h3.simple_text_ttl {
  font-size: 2.8rem;
  line-height: 1.7em;
  margin: 0 auto 30px;
}

/*テキスト*/
.default_text {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.default_text .smaller {
  font-size: 0.75em;
}

/*画像*/
img.radius-img {
  border-radius: 10px;
}

/*アコーディオン*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 0;
  border-top: 1px solid #ccc;
}
.accordion-area li:nth-last-of-type(01) {
  border-bottom: 1px solid #ccc;
}
.accordion-area li .title {
  position: relative;
  cursor: pointer;
  font-size: 2rem;
  font-weight: normal;
  padding: 3% 50px 3% 50px;
  transition: all 0.5s ease;
  margin: 0;
}
.accordion-area li .title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: inline-block;
  width: 24px;
  height: 22px;
  background: url(../img/icon_alpha_q.svg) no-repeat;
  background-size: contain;
}
.accordion-area li .title span {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}
.accordion-area li .title span::before, .accordion-area li .title span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 5px;
  background: #2D3A4E;
  position: absolute;
  right: 0;
  top: 50%;
  bottom: 50%;
  margin: auto;
  transform: translateY(-50%);
}
.accordion-area li .title span::after {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}
.accordion-area li .title.close span::after {
  transform: rotate(0);
  transition: 0.5s;
}
.accordion-area .box {
  display: none;
  position: relative;
  font-size: 1.6rem;
  margin: 0;
  padding: 0% 50px 3% 50px;
}
.accordion-area .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 24px;
  height: 22px;
  background: url(../img/icon_alpha_a.svg) no-repeat;
  background-size: contain;
}
.accordion-area h2 {
  text-align: center;
  margin: 30px 0;
  font-size: 1rem;
}

/*モーダル*/
body.scroll_lock {
  overflow-y: hidden;
}

hr {
  overflow: auto;
  border: none;
  background: #707070;
  height: 1px;
  margin-bottom: 30px;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
}
.modal .modal__bg {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  position: absolute;
  width: 100%;
  z-index: 999998;
}
.modal .modal__content {
  width: 46%;
  background: #fff;
  left: 50%;
  height: 60vh;
  position: absolute;
  top: 50%;
  border-radius: 7px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3137254902);
  transform: translate(-50%, -50%);
  z-index: 999999;
}
.modal .modal__content .content_inner {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  padding: 40px;
}
.modal .modal__content h3 {
  font-size: 2.4rem;
  margin: 0 auto 36px;
}
.modal .modal__content h4 {
  position: relative;
  font-size: 2rem;
  padding-bottom: 10px;
  margin: 0 auto 36px;
}
.modal .modal__content h4::after {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 60px;
  border-radius: 1px;
  background: #000;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.modal .modal__content ul {
  margin-bottom: 40px;
}
.modal .modal__content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
}
.modal .modal__content ul li::before {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: transparent linear-gradient(304deg, #09102b 0%, #1e267d 100%) 0% 0% no-repeat padding-box;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.modal p.js-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal .close {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
}
.modal .close::before, .modal .close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 25px;
  border-radius: 1px;
  background: #333;
}
.modal .close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

section.banner_area {
  padding: 30px 0 60px;
}

a.wsj_banner {
  display: block;
  max-width: 728px;
  margin: 0 auto;
  transition: 0.5s;
  padding: 0 15px;
}
a.wsj_banner:hover {
  opacity: 0.5;
}
a.wsj_banner:first-child {
  margin-bottom: 30px;
}

/*会社概要*/
section.message {
  position: relative;
}
section.message::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 170px;
  background: #F0F7FF;
  top: 0;
  bottom: 0;
  margin: auto;
}
section.message .row {
  align-items: unset;
}
section.message h2 {
  font-size: min(3.2vw, 4rem);
  line-height: 2em;
  font-weight: normal;
  margin: 0;
}
section.message .l_box {
  position: relative;
}
section.message .l_box::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 150px;
  right: 0;
  bottom: -50px;
  left: 0;
  margin: auto;
  background: url(../img/font_message.svg) no-repeat;
  background-size: contain;
}
section.message .main {
  padding-left: 30px;
}
section.message .main p {
  font-size: 1.6rem;
  margin-bottom: 30px;
  line-height: 1.89em;
}
section.message .profile.row {
  align-items: flex-end;
  justify-content: flex-end;
}
section.message .profile p {
  margin-bottom: 5px;
}
section.message .profile .info {
  margin-right: 20px;
}
section.message .profile .name {
  font-size: 2rem;
}
section.message .profile .name span {
  margin-right: 20px;
  font-size: 1.2rem;
}
section.message .profile .profile_pic {
  width: 25%;
}
section.message .profile .profile_pic img {
  border-radius: 5px;
}

.company_detail {
  padding: 80px 0 100px 0;
}

.detail_table {
  display: flex;
  flex-wrap: wrap;
  color: #2D3A4E;
}
.detail_table dt {
  border-bottom: 2px solid #EBEAE8;
  padding: 25px 0 25px 20px;
}
.detail_table dd {
  width: 85%;
  margin-left: 0px;
  padding: 25px 0 25px 20px;
  border-bottom: 2px solid #EBEAE8;
  line-height: 1.7em;
}
.detail_table dd a {
  transition: opacity 0.3s;
}
.detail_table dd a:hover {
  opacity: 0.6;
}
.detail_table_color {
  color: #2D3A4E;
}
.detail_table_ttl {
  font-weight: bold;
  width: 15%;
  padding-right: 20px;
}
.detail_table_list_ttl {
  color: #2D3A4E;
}
.detail_table .list_ul {
  margin: 10px 0 20px;
}
.detail_table .list_ul li {
  margin-bottom: 2px;
  color: #6A6A6A;
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.detail_table .list_flex {
  display: flex;
}
.detail_table .list_flex li {
  width: 220px;
}

/*コンテンツ*/
.about {
  padding: 80px 0;
  background: url(../img/top_about_bg.png) no-repeat;
  background-size: cover;
}

ul.introduction {
  margin-top: 80px;
  align-items: flex-start;
}
ul.introduction h3 {
  text-align: center;
  color: #456A8E;
  margin-top: 25px;
  margin-bottom: 20px;
}

section.strength {
  padding: 100px 0;
  background: transparent linear-gradient(225deg, #FFFFFF 0%, #F5F5F5 100%) 0% 0% no-repeat padding-box;
}

section.support {
  padding: 80px 0;
  background: url(../img/top_support_bg.png) no-repeat;
  background-size: cover;
}
section.support .row {
  align-items: flex-start;
  gap: 5%;
}
section.support .row .text-area {
  width: 65%;
  font-size: 2.4rem;
  line-height: 1.7em;
  letter-spacing: 0.01em;
}
section.support .row figure {
  width: 30%;
}

section.contact {
  padding: 80px 0;
  background: transparent linear-gradient(180deg, #1e267d 0%, #09102b 100%) 0% 0% no-repeat padding-box;
}
section.contact p.text.text-center {
  color: #fff;
}
section.contact .tel-area {
  max-width: 700px;
  margin: auto;
  padding: 15px 0 30px;
  margin-top: 50px;
  background: #fff;
}
section.contact .tel-area p.tel {
  font-size: 4.4rem;
  font-weight: bold;
}
section.contact .tel-area p.tel span {
  display: inline-block;
  width: 60px;
  vertical-align: text-bottom;
  margin-right: 20px;
}
section.contact .tel-area p.annotation {
  text-align: center;
  margin-top: 10px;
}

section.oem_about {
  background: url(../img/oem_about_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}

section.oem_odm h3.simple_text_ttl {
  border-bottom: 1px solid #000;
}
section.oem_odm .row {
  align-items: unset;
}
section.oem_odm .oem {
  padding-right: 30px;
}
section.oem_odm .odm {
  padding-left: 30px;
}

section.interview {
  background: #F7F7F7;
}
section.interview .default_inner {
  max-width: 940px;
}
section.interview a {
  display: block;
  width: 48%;
  max-width: 400px;
  margin: 0 auto;
  transition: 0.5s;
}
section.interview a:hover {
  opacity: 0.75;
}

section.oem_flow {
  position: relative;
  background: url(../img/wave_bg.png);
  background-size: 170px 189px;
  background-color: #F7F7F7;
}
section.oem_flow h2.lower_default_ttl {
  margin: 0 0 60px;
}
section.oem_flow ul.flow.row.col_4 {
  align-items: unset;
}
section.oem_flow ul li {
  position: relative;
  background: #fff;
  padding: 60px 15px 50px;
  margin-bottom: 50px;
}
section.oem_flow ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  top: 18px;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(18, 21, 23, 0.5019607843) 0%, rgba(69, 106, 142, 0.4196078431) 100%);
}
section.oem_flow ul li::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/flow_step_01.svg) no-repeat, linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #fff 50%, #fff 100%);
  background-position: center;
  background-size: contain;
  width: 80px;
  height: 36px;
  padding: 10px;
  top: -13px;
  left: 0;
}
section.oem_flow ul li:nth-child(2)::after {
  background: url(../img/flow_step_02.svg) no-repeat, linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #fff 50%, #fff 100%);
  background-position: center;
  background-size: contain;
}
section.oem_flow ul li:nth-child(3)::after {
  background: url(../img/flow_step_03.svg) no-repeat, linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #fff 50%, #fff 100%);
  background-position: center;
  background-size: contain;
}
section.oem_flow ul li:nth-child(4)::after {
  background: url(../img/flow_step_04.svg) no-repeat, linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #fff 50%, #fff 100%);
  background-position: center;
  background-size: contain;
}
section.oem_flow ul li:nth-child(5)::after {
  background: url(../img/flow_step_05.svg) no-repeat, linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #fff 50%, #fff 100%);
  background-position: center;
  background-size: contain;
}
section.oem_flow ul li:nth-child(6)::after {
  background: url(../img/flow_step_06.svg) no-repeat, linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #fff 50%, #fff 100%);
  background-position: center;
  background-size: contain;
}
section.oem_flow ul li:nth-child(7)::after {
  background: url(../img/flow_step_07.svg) no-repeat, linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #fff 50%, #fff 100%);
  background-position: center;
  background-size: contain;
}
section.oem_flow ul li:nth-child(8)::after {
  background: url(../img/flow_step_08.svg) no-repeat, linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #fff 50%, #fff 100%);
  background-position: center;
  background-size: contain;
}

/*プライバシーポリシー*/
.signature {
  justify-content: flex-end;
  font-size: 1.3rem;
}

.policy_list {
  font-weight: bold;
  margin: 50px 0 40px;
}
.policy_list li {
  margin-bottom: 30px;
}
.policy_list dl {
  margin: 0 auto;
}
.policy_list dt {
  margin-bottom: 5px;
}
.policy_list dd {
  margin-left: 0px;
  font-weight: normal;
}

/*オリジナルブランド*/
.work {
  padding: 80px 0 100px;
}
.work .lower_default_ttl {
  margin: 0 0 60px;
}
.work .workslist {
  justify-content: space-around;
  align-items: flex-start;
}
.work .workslist li {
  max-width: 258px;
  padding: 0 10px;
}
.work .workslist li img {
  display: block;
  margin: 0 auto;
  max-width: 148px;
  margin-bottom: 20px;
}
.work .workslist li .workslist_ttl {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  text-align: center;
}

/*スライドインアニメーション*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp_default, .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
  /*ボタン*/
  a.default_text_btn {
    font-size: 1.6rem;
    padding-right: 50px;
  }
  a.default_text_btn::before {
    width: 30px;
    height: 30px;
  }
  a.default_text_btn::after {
    width: 10px;
    height: 2px;
    right: 10px;
  }
  /*タイトル*/
  h1.mv_ttl {
    font-size: 4vw;
    letter-spacing: 0.01em;
  }
  h1.mv_ttl span {
    font-size: 4.6vw;
  }
  h2.main_simple_ttl {
    font-size: 2.6rem;
    margin: 0 auto 25px;
    padding-bottom: 15px;
  }
  h2.main_simple_ttl span.en {
    font-size: 1.4rem;
    display: block;
    font-weight: normal;
    margin-bottom: 10px;
  }
  h2.big_text_ttl {
    margin: 0 auto 30px;
    font-size: 2.6rem;
    padding-top: 20px;
  }
  h2.big_text_ttl::after {
    width: 80%;
  }
  h2.lower_default_ttl {
    font-size: 2.6rem;
    line-height: 1.7em;
    margin: 0 0 45px;
  }
  h3.lower_default_ttl {
    font-size: 2.8rem;
    margin: 0 auto 30px;
  }
  h3.simple_text_ttl {
    font-size: 1.8rem;
    margin: 0 auto 20px;
  }
  /*コンテンツ*/
  section.about {
    padding: 60px 0;
  }
  section.strength {
    padding: 60px 0;
  }
  section.support {
    padding: 60px 0;
  }
  section.support .row {
    flex-direction: column-reverse;
  }
  section.support .row .text-area {
    width: 100%;
  }
  section.support .row figure {
    width: 70%;
    margin: 0 auto 30px;
  }
  section.support p.text {
    font-size: 1.8rem;
    line-height: 1.7em;
  }
  section.oem_odm .oem {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
  section.oem_odm .odm {
    width: 100%;
    padding-left: 0;
  }
  section.oem_flow h2.lower_default_ttl {
    margin: 0 0 60px;
  }
  section.oem_flow ul li {
    padding: 40px 10px 30px;
  }
  section.oem_flow ul li::after {
    width: 65px;
    height: 26px;
  }
  section.oem_flow ul li::before {
    top: 8px;
  }
  section.interview {
    padding: 40px 0 80px;
  }
  section.interview a {
    width: 100%;
    margin-bottom: 30px;
  }
  section.interview a:last-child {
    margin-bottom: 0;
  }
  section.contact {
    padding: 60px 0;
  }
  section.contact .tel-area {
    margin-top: 30px;
  }
  section.contact .tel-area h3 {
    margin-bottom: 15px;
  }
  section.contact .tel-area p.tel {
    font-size: 2.2rem;
  }
  section.contact .tel-area p.tel span {
    display: inline-block;
    width: 30px;
    vertical-align: text-bottom;
    margin-right: 15px;
  }
  section.lower_main_text h2 {
    font-size: 2.6rem;
    padding-right: 0;
    margin-bottom: 30px;
  }
  section.lower_main_text .col_2 > div {
    width: 100%;
  }
  /*モーダル*/
  .modal .modal__content {
    width: 90%;
    height: 70vh;
  }
  .modal .modal__content h3 {
    font-size: 2rem;
  }
  .modal .modal__content .content_inner {
    padding: 40px 25px;
  }
  .modal .modal__content .close {
    width: 15px;
    height: 15px;
  }
  .modal .modal__content .close::before, .modal .modal__content .close::after {
    height: 20px;
  }
  .modal p.js-modal-close {
    top: 10px;
    right: 10px;
  }
  /*オリジナルブランド*/
  .work {
    padding: 60px 0;
  }
  .work .workslist li img {
    width: 60%;
  }
  .work .workslist li .workslist_ttl {
    font-size: 1.8rem;
  }
  .work .workslist li .default_text {
    font-size: 1.5rem;
  }
  section.message {
    position: relative;
    padding: 40px 0 40px;
  }
  section.message::before {
    height: 90px;
    top: 20px;
    bottom: auto;
  }
  section.message > .row {
    display: block;
  }
  section.message h2 {
    font-size: min(6.2vw, 4.8rem);
    line-height: 2.2em;
  }
  section.message .l_box {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
  }
  section.message .l_box::after {
    content: "";
    width: 70%;
    height: 80px;
    bottom: -30px;
    left: auto;
  }
  section.message .main {
    width: 100%;
    padding-left: 0;
  }
  section.message .profile p {
    font-size: 1.4rem;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
  }
  section.message .profile .info {
    width: calc(75% - 20px);
  }
  /*テーブル*/
  .company_detail {
    padding: 0 0 80px;
  }
  .detail_table dt {
    width: 100%;
    border: none;
    padding: 20px 0 0;
  }
  .detail_table dd {
    margin-left: 0px;
    padding: 10px 0 20px;
    width: 100%;
  }
  .detail_table .list_flex li {
    width: 200px;
  }
}/*# sourceMappingURL=style.css.map */