@charset "UTF-8";
/* Reset
*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,
del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { 
  display:block;
}
body {-webkit-text-size-adjust: 100%;}/*横向きにしても文字サイズが変わらないようにする*/
ul {
  list-style-type:none;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
/* Form */
input:focus {
	outline: 0;
}
input {
	outline: 0;
  border: 0;
}

/* Base
*/
html {
  font-size: 62.5%;
}
body {
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a {
  color: inherit;
  background: transparent;
  text-decoration: none;
}
/*欧文フォント*/
._en_poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
._en_poppins_b {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

/*共通*/
:root {
  --col-bg1: #eff0f2;/*フッターbg*/
  --col-bg2: #363a44;/*dark*/
  --col-bg3: #eff1f5;/*light*/
  --col-01: #ea000b;/*main red*/
  --col-02: #3951aa;/*main blue*/
  --col-03: #c7c8cb;/*light blue gray*/
  --col-04: #75787d;/*middle blue gray*/
  --col-05: #2d2e30;/*dark blue gray*/
  --col-06: #dee0e2;/*light gray line*/
  --col-link-dgray: #3a3e48;
}

img {
  width: 100%;
  height: auto;
}

/* header Nav
--------------------------------------------------------*/
#js-header {
  position: fixed;
  width:100%;
  z-index: 999;
}
/*　上に上がる動き　*/
#js-header.js-hd-off {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#js-header.js-hd-on {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
    transform: translateY(-100px);
    background-color: #fff;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    background-color: #fff;
  }
}

/*スマホメニュー*/
.h-nav-sp-wrap {
  display: none;
  background-color: var(--col-bg1);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  z-index: 9998;
}
.h-nav-sp-inner {
  padding: 60px 30px;
  /*color: #fff;*/
}
/*スマホメニュー中身*/
nav.h-nav-bar-sp {
  background-color: #fff;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}
.h-nav-bar-sp .h-logo {
  width: 100px;
  display: flex;
  align-items: center;
}
.h-nav-sp__language {
  border-bottom: var(--col-06) 1px solid;
  text-align: center;
  padding: 30px 0;
}
.h-nav-sp__language a {
  /*color: #fff;*/
  font-weight: bold;
  padding: 0 20px;
}
/*大カテゴリー*/
.h-nav-sp > li {
  border-bottom: var(--col-03) 1px solid;
  padding: 30px 0;
}
.h-nav-sp > li::before {
  content: '●';
  display: inline-block;
  color: var(--col-01);
  margin-right: 5px;
}
.h-nav-sp > li:first-child {
  border-top: var(--col-03) 1px solid;
}
.h-nav-sp li .txt-b {
  font-size: 1.8rem;
}
/*小カテゴリー*/
.h-nav-sp__item-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  margin-left: 30px;
}
.h-nav-sp__item-list li {
  width: 100%;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.h-nav-sp__sns {
  margin: 30px auto;
}
.h-nav-sp__sns ._sns-ttl {
  font-weight: bold;
  margin-bottom: 2rem;
}
.h-nav-sp__sns ._sns-list {
  display: flex;
  align-items: center;
  gap: 0 2em;
  margin: 30px 0;
}
.h-nav-sp__sns ._sns-list li {
  width: 28px;
}
.h-nav-sp__sns ._sns-list li.icon-x {
  width: 26px;
}
@media screen and (min-width: 768px) {
  .h-nav-sp-inner {
    padding: 60px;
  }
  .h-nav-sp__item-list {
    gap: 30px;
  }
  .h-nav-sp__item-list li {
    width: calc((100% - 30px) / 2);
  }
}

/*ハンバーガー*/
.bt_nav-open {
  position: fixed;
  top: 10px;
  right: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 9999
}
@media screen and (min-width: 1000px) {
  .bt_nav-open{
    display: none;
  }
}
.bt_nav-open span{
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 13px;
  height: 2px;
  background-color: #000;
  }
.bt_nav-open span:nth-of-type(1) {
  top: 22px; 
  width: 55%;
}
.bt_nav-open span:nth-of-type(2) {
  top: 28px;
  width: 40%;
}
/*activeクラスが付与されると線が回転して×に*/
.bt_nav-open.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 37%;
}
.bt_nav-open.active span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 37%;
}

/*PC*/
nav.h-nav-bar {
  display: none;
}
@media screen and (min-width: 1000px) {
  nav.h-nav-bar-sp {
    display: none;
  }
  nav.h-nav-bar {
    height: 100px;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
  }
  .h-nav-bar .h-logo {
    width: 100px;
    display: flex;
    align-items: center;
  }
  .h-nav {
    display: flex;
    align-items: center;
  }
  .h-nav > li {
    position: relative;
    display: flex;
  } 
  .h-nav > li > a {
    margin: auto auto auto 1.5em;
  }
  .h-nav > li > a:not(.bt-kws) {
    padding: 1em 0;
  }
  .h-nav .bt-kws {
    background-color: var(--col-01);
    border: var(--col-01) 2px solid;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 160px;
    height: 52px;
    border-radius: 26px;
    /*font-size: 1.4rem;*/
    letter-spacing: 0.05em;
    font-weight: bold;
    line-height: 1.3;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  }
  .h-nav .bt-kws .kws-txt {
    font-size: 1.6rem;
  }
  .h-nav .bt-kws ._small {
    font-size: 1.3rem;
  }
  .h-nav .language {
    border-left: #444 1px solid;
    margin-left: 1.5em;
  }
  /*ナビのhoverエフェクト*/
  .h-nav > li > a .link-area {
    display: inline-block;
    height: 1.2em;
    line-height: 1.2;
    overflow: hidden;
    padding: 0 0.5em;
  }
  .h-nav > li > a .link-area span {
    position: relative;
    display: inline-block;
    transition: transform 0.3s;
  }
  .h-nav > li > a .link-area span::before {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
    color: var(--col-01);
    font-weight: bold;
    transform: translateY(0);
  }
  .h-nav > li > a:not(.bt-kws):hover span,
  .h-nav > li > a:not(.bt-kws).menu-active span {
    transform: translateY(-100%);
  }
  /*ドロップメニュー*/
  .h-nav > li .dropmenu {
    display: none;
    background-color: #fff;
    box-shadow: 0px 0px 12px -3px rgba(125,131,151,0.80);
    position: absolute;
    left: 0;
    top: 50px;
    padding: 20px 30px;
    border-radius: 10px;
    z-index: 9998;
    text-align: left;
  }
  .h-nav > li .dropmenu li a {
    display: block;
    padding: 1em 0;
    /*min-width: 130%;*/
    white-space: nowrap;
    transition: 0.2s;
  }
  .h-nav > li .dropmenu > li + li a {
    border-top: 1px solid var(--col-06);
  }
  .h-nav > li .dropmenu li a:hover {
    color: var(--col-01);
  }
}
@media (hover: hover) {
  .h-nav .bt-kws:hover {
    background-color: #fff;
    /*border: var(--col-01) 1px solid;*/
    color: var(--col-01);
  }
}

/* main
--------------------------------------------------------*/
main {
  position: relative;
  padding-top: 80px;/*ヘッダーの高さ*/
}
main.top__main {
  background: url("/images/top/top_map.png") no-repeat center 90px;
  background-size: 65%;
}
@media screen and (min-width: 768px) {
  main.top__main {
    background: url("/images/top/top_map.png") no-repeat center 100px;
    background-size: 65%;
  }
}
@media screen and (min-width: 1000px) {
  main.top__main {
    background: url("/images/top/top_map.png") no-repeat 20% 100px;
    background-size: 50%;
  }
}
@media screen and (min-width: 1000px) {
  main {
    padding-top: 100px;/*ヘッダーの高さ*/
  }
}

/* コンテンツ幅
--------------------------------------------------------*/
.content {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
}
._content1080 {
  max-width: 1080px;
}
._content1200 {
  max-width: 1200px;
}
._content1260 {
  max-width: 1260px;
}
._content1380 {
  max-width: 1380px;
}

/* 共通 animation
  .effectに.is-animationが付与されるので動きのスタイルとセットで指定
*/
.fadeUp {opacity: 0;}
.is-animation.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.22, 0.56, 0.57, 1);
  animation-fill-mode: forwards;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*縦線がのびる（beforeに設定）
.linear::before {opacity: 0;}
.is-animation.linear::before {
  animation-name: linearAnime;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.22, 0.56, 0.57, 1);
  animation-fill-mode: forwards;
}
@keyframes linearAnime {
  from {
    opacity: 0;
    height: 0;
  }

  to {
    opacity: 1;
    height: 100%;
  }
}
*/

/* ページタイトル
--------------------------------------------------------*/
.page__heading {
  background-color: var(--col-bg1);
  width: 100%;
  height: 100px;
}
.page__heading .content {
  display: flex;
  align-items: center;
  height: 100%;
}
.page__heading .content ._ttl {
  margin: auto 0;
}
.page__heading ._ttl ._en {
  display: block;
  font-size: min(8vw,3rem);
  margin-bottom: 1rem;
}
.page__heading ._ttl ._jp{
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page__heading {
    height: 120px;
  }
  .page__heading ._ttl ._en {
    font-size: min(4.69vw,3.6rem);
  }
}
@media screen and (min-width: 1000px) {
  .page__heading {
    height: 180px;
  }
  .page__heading ._ttl ._en {
    font-size: min(5vw,6.0rem);
    margin-bottom: 1.5rem;
  }
  .page__heading ._ttl ._jp{
    font-size: 1.6rem;
  }
}

/* パンくず
--------------------------------------------------------*/
.breadcrumb {
  margin: 1.5rem auto;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 0 1em;
  flex-wrap: wrap;
}
.breadcrumb li {
  color: var(--col-03);
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1.2;
  gap: 0 1em;
  margin: 0.5em 0;
}
.breadcrumb li::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: var(--col-03) 1px solid;
  border-right: var(--col-03) 1px solid;
  transform: rotate(45deg);
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb li a {
  color: var(--col-04);
  transition: 0.2s;
}
@media screen and (min-width: 480px) {
  .breadcrumb li {
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .breadcrumb li a:hover {
    color: var(--col-03);
  }
}

/* footer
--------------------------------------------------------*/
.f__contact {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.f__contact ._contact {
  background-color: #dfe4f5;
}
.f__contact ._recruit {
  background-color: var(--col-02);
}
.f__contact ._about {
  background: url("/images/f_staff_img.jpg") no-repeat center center;
  background-size: cover;
  height: 320px;
}
@media screen and (min-width: 768px) {
  .f__contact {
    flex-direction: row;
  }
  .f__contact ._contact {
    width: 50%;
  }
  .f__contact ._recruit {
    width: 50%;
  }
  .f__contact ._about {
    width: 100%;
    height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .f__contact ._contact {
    width: 30%;
  }
  .f__contact ._recruit {
    width: 30%;
  }
  .f__contact ._about {
    width: 40%;
    height: auto;
  }
}

.f__contact ._ttl ._en {
  display: block;
  font-size: min(9.6vw,3.6rem);
  margin-bottom: 0.5em;
}
.f__contact ._ttl ._jp {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
.f__contact ._inner {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 50px 0;
  margin: 0 auto;
  width: 90%;
  min-height: 400px;
}
.f__contact ._inner ._main {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.f__contact ._inner .f__contact__bt {
  margin: auto auto 0;
}
@media screen and (min-width: 768px) {
  .f__contact ._inner {
    padding: 70px 0 65px;
    min-height: 470px;
  }
}
@media screen and (min-width: 1000px) {
  .f__contact ._ttl ._en {
    font-size: min(4.8vw,4.8rem);
  }
}

/* f__contact */
.f__contact ._contact ._ttl {
  color: var(--col-05);
  margin-bottom: 20px;
}
.f__contact ._contact ._sub-ttl {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.f__contact ._contact ._sub-ttl::first-letter {
  color: var(--col-01);
}
.f__contact ._contact ._contact-txt {
  line-height: 1.6;
}
.f__contact ._contact ._contact-txt .phone {
  font-size: 2.4rem;
  font-weight: bold;
  display: block;
}
@media screen and (min-width: 768px) {
  .f__contact ._contact ._contact-txt .phone {
    display: inline-block;
  }
}

/* footer _recruit */
.f__contact ._recruit ._ttl {
  color: #fff;
}
.f__contact ._recruit ._recruit-txt {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

/* f__banner */
.f__banner {
  background-color: var(--col-bg2);
  padding: 45px 0;
}
.f__banner__list {
  display: flex;
  justify-content: center;
  gap: 5%;
  width: 90%;
  margin: 0 auto;
}
.f__banner__list li {
  max-width: 270px;
}
@media screen and (min-width: 768px) {
  .f__banner__list li {
    max-width: 270px;
  }
}

footer {
  background-color: var(--col-bg1);
  padding: 50px 0;
}
footer .f-item__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
  margin-bottom: 40px;
}
footer .f-item__wrap .f-item {
  font-size: 1.4rem;
  font-feature-settings: "palt";
}
.f-item .f-item-ttl {
  font-weight: bold;
  margin-bottom: 2rem;
}
.f-item .f-item-list li {
  line-height: 1.2;
  padding-bottom: 1.5rem;
}
footer .f-item__wrap .f-item .f-sns {
  margin-top: 60px;
}
footer .f-sns ._sns-list {
  display: flex;
  align-items: center;
  gap: 0 2em;
  margin: 30px 0;
}
footer .f-sns ._sns-list li {
  width: 28px;
}
footer .f-sns ._sns-list li.icon-x {
  width: 24px;
}
footer .f-bottom {
  border-top: var(--col-03) 1px solid;
  padding-top: 40px;
}
footer .f-bottom .f-bottom__list {
  display: flex;
  gap: 3rem;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
footer .f-bottom .copyright {
  color: var(--col-04);
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 80px 0;
  }
  footer .f-item__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  footer .f-bottom .f-bottom__wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
  }
  footer .f-bottom .f-bottom__list {
    margin-bottom: 0;
  }
  footer .f-bottom .f-bottom__list a {
    color: var(--col-04);
  }
  footer .f-bottom .copyright {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1000px) {
  footer .f-item__wrap {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (hover: hover) {
  footer a {
    transition: 0.2s;
  }
  footer a:hover {
    opacity: 0.6;
  }
}

/* Page top
--------------------------------------------------------*/
@media screen and (min-width: 768px) {
  #page-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: none;
  }
  #page-top a {
    border: var(--col-03) 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 23px;
    position: relative;
    padding-top: 2px;
    transition: 0.3s;
  }
  #page-top a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: var(--col-03) 2px solid;
    border-right: var(--col-03) 2px solid;
    transform: rotate(-45deg);
  }
}
@media (hover: hover) {
  #page-top a:hover {
    border: var(--col-05) 1px solid;
  }
  #page-top a:hover::after {
    border-top: var(--col-05) 2px solid;
    border-right: var(--col-05) 2px solid;
  }
}

/* Top page
--------------------------------------------------------*/
/*塗りのアニメーション*/
.main-copy.mv-overlay-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  transform-origin: right center;
  transition: 0.5s 0.7s cubic-bezier(0.97, -0.01, 0.58, 0.99);
}
.main-copy.mv-overlay-wrap.mv-active::after {
  transform: scale(0, 1);
}

.top__mv {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 20px auto 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top__mv {
    margin: 40px auto 0;
  }
}
@media screen and (min-width: 1000px) {
  .top__mv {
    flex-direction: row-reverse;
  }
}
.top__main .main-copy-wrap {
  position: relative;
  text-align: center;
  margin: 5% auto 15%;
  width: 90%;
  z-index: 3;
}
.top__main .main-copy {
  display: inline-block;
  font-size: min(9.6vw,3.6rem);
  line-height: 1.5;
  position: relative;
  text-align: center;
  /*margin: 0 0 5% -55%;*/
}
.top__main .main-copy .red {
  color: var(--col-01);
}
.top__main .main-copy ._small {
  font-size: min(5vw,2.4rem);
}
.top__main .main-copy .copy-s {
  display: block;
  font-size: min(4.8vw,1.8rem);
}
@media screen and (min-width: 480px) {
  .top__main .main-copy {
    font-size: min(7.81vw,6rem);
  }
  .top__main .main-copy ._small {
    font-size: min(5.21vw,4rem);
  }
  .top__main .main-copy .copy-s {
    font-size: min(4.43vw,3.4rem);
  }
}
.top__main .top-img-01 {
  position: relative;
  width: 88%;
  z-index: 2;
}
.top__main .top-img-02 {
  position: relative;
  margin: -3% 0 0 auto;
  width: 65%;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  .top__main .main-copy-wrap {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    text-align: left;
    margin: 0 auto;
    max-width: 1300px;
  }
  .top__main .main-copy {
    font-size: min(5.2vw,7.3rem);
    text-align: left;
    margin:0;
  }
  .top__main .main-copy ._small {
    font-size: min(3.97vw,5.0rem);
  }
  .top__main .main-copy .copy-s {
    font-size: min(2.38vw,3.0rem);
  }
  .top__main .top-img-01 {
    width: 55%;
  }
  .top__main .top-img-02 {
    margin: 20% 0 0 0;
    width: 40%;
  }
}
.slider1.loader-effect::after,
.slider2.loader-effect::after {
  content: '';
  background-color: var(--col-01);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: right center;/*右中心を起点に塗りが縮む*/
}
.slider1.loader-effect::after {
  transition: 0.5s 0.1s cubic-bezier(0.97, -0.01, 0.58, 0.99);/* 所要時間 | 待ち時間 */
}
.slider2.loader-effect::after {
  transition: 0.5s 0.3s cubic-bezier(0.97, -0.01, 0.58, 0.99);/* 所要時間 | 待ち時間 */
}
.slider1.loader-effect.is-animation::after,
.slider2.loader-effect.is-animation::after {
  transform: scale(0, 1);
}
.top-img-01 .splide__slide img {/*スマホでアスペクト比変更*/
  aspect-ratio: 6 / 4.4;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .top-img-01 .splide__slide img {
    aspect-ratio: auto;
    object-fit: fill;
    height: auto;
    width: 100%;
  }
}

.top__pr {
  position: relative;
  background-image: linear-gradient(245deg, rgba(240, 242, 249, 1), rgba(255, 255, 255, 1) 40%);
  padding: 50px 0;
}
.top__pr ._image {
  width: 90%;
  margin: 0 auto 40px;
}

.top__pr ._main {
  text-align: center;
}
.top__pr ._main ._ttl {
  font-size: min(6.4vw,2.4rem);
  margin-bottom: 1em;
}
.top__pr__bt {
  margin-top: 30px;
}
@media screen and (min-width: 1000px) {
  .top__pr {
    padding: 110px 0;
  }
}
@media screen and (min-width: 1200px) {
  .top__pr ._wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .top__pr ._image {
    width: 52%;
    margin: 0;
  }
  .top__pr ._main {
    text-align: left;
    width: 43%;
  }
  .top__pr ._main ._ttl {
    font-size: min(3vw,3.6rem);
  }
}
/* News */
.top__news {
  background-color: var(--col-bg2);
}
.top__news ._wrap {
  padding: 60px 0;
}
.top__news ._wrap ._left {
  display: flex;
  justify-content: space-between;
}
.top__news ._ttl ._en {
  display: block;
  font-size: min(9.6vw,3.6rem);
  margin-bottom: 0.5em;
  color: #fff;
}
.top__news ._ttl ._jp {
  font-size: 1.4rem;
  color: var(--col-01);
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
.top__news .top__news__list li a {
  border-bottom: rgba(255,255,255,0.2) 1px solid;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  line-height: 1.6;
  padding: 2em 0;
  color: #fff;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  transition: 0.3s;
}
.top__news .top__news__list li time {
  color: #ddd;
  width: 120px;
}
.top__news .top__news__list li ._news-ttl {
  margin-top: 8px;
}
.top__news .top__news__list li ._arrow {
  display: none;
}
.top__news .top__news__bt ._bt-txt {
  font-size: 1.4rem;
}
.top__news .top__news__bt .all-bt {
  padding: 0 2rem;
}
/* newマーク */
.top__news .top__news__list li ._news-ttl .tag,
.news__list li ._news-ttl .tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
  height: 18px;
  border-radius: 2px;
  margin-left: 10px;
  padding: 0 8px;
}
.top__news .top__news__list li ._news-ttl .tag.tag-new,
.news__list li ._news-ttl .tag.tag-new {
  background-color: #ff2f38;
}
@media screen and (min-width: 600px) {
  .top__news .top__news__list li a {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
  }
  .top__news .top__news__list li ._news-ttl {
    margin-top: 0;
    padding-right: 20px;
    width: calc(100% - 120px);
  }
  .top__news .top__news__list li ._arrow {
    display: block;
    width: 8px;
    height: 8px;
    border-top: rgba(255,255,255,0.5) 2px solid;
    border-right: rgba(255,255,255,0.5) 2px solid;
    transform: rotate(45deg);
    margin-left: auto;
    transition: 0.3s;
  }
}
@media screen and (min-width: 1000px) {
  .top__news ._wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 0;
  }
  .top__news ._wrap ._left {
    display: block;
    width: 280px;
  }
  .top__news ._ttl ._en {
    font-size: min(4.8vw,4.8rem);
  }
  .top__news ._wrap ._left .top__news__bt {
    margin: 60px 0 0;
  }
  .top__news .top__news__bt ._bt-txt {
    font-size: 1.6rem;
  }
  .top__news ._wrap ._main {
    width: calc(100% - 280px);
  }
}
@media (hover: hover) {
  .top__news .top__news__list li a:hover {
    border-bottom: var(--col-01) 1px solid;
  }
  /*.top__news .top__news__list li a:hover ._news-ttl {
    color: var(--col-01);
  }*/
  .top__news .top__news__list li a:hover ._arrow {
    width: 12px;
    height: 12px;
    border-top: var(--col-01) 2px solid;
    border-right: var(--col-01) 2px solid;
  }
}

/* Topics */
.top__topics {
  /*background: url("/images/top/topics_bg.jpg") no-repeat left top;
  background-size: cover;*/
  background-image: linear-gradient(155deg, rgba(240, 242, 249, 1), rgba(255, 255, 255, 1) 60%);
  padding-top: 30px;
}
.top__topics .content {
  background-color: #fff;
  padding: 40px 30px;
  margin: 0 0 0 auto;
  width: 95%;
}
.top__topics ._ttl {}
.top__topics ._ttl ._en {
  display: block;
  font-size: min(9.6vw,3.6rem);
  margin-bottom: 0.5em;
}
.top__topics ._ttl ._jp {
  font-size: 1.4rem;
  color: var(--col-01);
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
.top__topics ._ttl__wrap {
  border-bottom: var(--col-01) 1px solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1em;
}
.top__topics .top__topics__bt .all-bt {
  padding: 0 2rem;
}
.top__topics .top__topics__bt ._bt-txt {
  font-size: 1.4rem;
}
.top__topics .content ._wrap {
  margin-right: 5%;/*contentが95%で右寄せのため右に5%マージンでセンタリング*/
}
.top__topics ._wrap ._main {
  padding-top: 40px;
}
/*.top__topics ._wrap ._main .topics__list__wrap:first-child {
  margin-bottom: 60px;
}*/
/*.top__topics .topics__list__ttl {
  font-size: min(5.33vw,2.0rem);
  position: relative;
}
.topics__list__ttl::before {
  content: '●';
  display: inline-block;
  color: var(--col-01);
  margin-right: 8px;
}*/
@media screen and (min-width: 600px) {
  .top__topics {
    /*background-size: 80%;*/
    padding-top: 40px;
  }
  .top__topics .content {
    padding: 70px 60px;/*元々90%幅で画面センタリング*/
    margin: 0 0 0 auto;
    width: 95%;
    max-width: calc(50vw + 660px);/*元々max1260pxのセンタリング*/
  }
/*  .top__topics .topics__list__ttl {
    font-size: min(2.6vw,2.0rem);
  }*/
  .top__topics .topics__list li ._img {
    width: 20%;
    max-width: 180px;
    max-height: 180px;
  }
  .top__topics .topics__list li .topics-cont {
    width: calc(100% - 210px);
    flex: 1;
  }
}
@media screen and (min-width: 1000px) {
  .top__topics ._ttl ._en {
    font-size: min(4.8vw,4.8rem);
  }
  .top__topics .top__topics__bt ._bt-txt {
    font-size: 1.6rem;
  }
/*  .top__topics .topics__list__ttl {
    font-size: min(2vw,2.4rem);
  }*/
}
@media screen and (min-width: 1200px) {
  .top__topics ._ttl {
    margin-bottom: 30px;
  }
  .top__topics ._wrap ._main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .top__topics ._wrap ._main .topics__list__wrap {
    width: 47%;
  }
  .top__topics ._wrap ._main .topics__list__wrap:first-child {
    margin-bottom: 0;
  }
  .top__topics .topics__list li .topics-cont ._topics-head {
    margin: 0 0 15px;
  }
  .top__topics .content ._wrap {
    max-width: 1200px;
  }
}

/*トピックス一覧と共通*/
.topics__list li {
  position: relative;
  border-bottom: var(--col-03) 1px dotted;
  padding: 2em 0;
  transition: 0.3s;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
.topics__list li:last-child {
  border-bottom: none;
}
.topics__list li a._link-area {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.topics__list li ._img {
  width: 100%;
  max-width: 200px;
  max-height: 200px;
  overflow: hidden;
  transition: 0.2s;
}
.topics__list li .topics-cont ._topics-head {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin: 15px 0;
}
.topics__list li ._topics-head time {
  font-size: 1.2rem;
}
._category-link {
  position: relative;
  background-color: #e9e9e9;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  height: 24px;
  width: 96px;
  transition: 0.3s;
  z-index: 10;
}
.topics__list li ._topics-head .tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
  height: 18px;
  border-radius: 2px;
  margin-left: 10px;
  padding: 0 8px;
}
.topics__list li ._topics-head .tag.tag-new {
  background-color: #ff2f38;
}

.topics__list li ._topics-head .category-overseas,
.topics__list li ._topics-head .category-domestic {
}
.topics__list li .topics-cont ._topics-ttl {
  font-size: 1.7rem;
  line-height: 1.6;
  transition: 0.3s;
}
.topics__list li .topics-cont ._topics-txt {
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 行数を指定 */
}
.topics__list li .topics-arrow {
  display: none;
}
@media screen and (min-width: 600px) {
  .topics__list li {
    display: flex;
    gap: 0 30px;
  }
  .topics__list li .topics-cont {
    width: calc(100% - (200px + 60px + 50px));/*サムネール + gap + 矢印アイコン*/
    flex: 1;
  }
  .topics__list li .topics-arrow {
    border: var(--col-03) 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 2px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin: auto 0 auto auto;
    transition: 0.3s;
  }
  .topics__list li .topics-arrow::after {
    content: '';
    border-top: var(--col-03) 2px solid;
    border-right: var(--col-03) 2px solid;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    transition: 0.3s;
  }
}

@media (hover: hover) {
  .topics__list li:not(:last-child):hover {
    border-bottom: var(--col-01) 1px dotted;
  }
  ._category-link:hover {
    background-color: var(--col-bg2);
    color: #fff;
  }
  .topics__list li:hover .topics-cont ._topics-ttl {
    color: var(--col-01);
  }
  .topics__list li:hover ._img {
    opacity: 0.8;
  }
  .topics__list li:hover .topics-arrow {
    border: var(--col-01) 1px solid;
  }
  .topics__list li:hover .topics-arrow::after {
    border-top: var(--col-01) 2px solid;
    border-right: var(--col-01) 2px solid;
  }
}

/* manufacturers */
.top__manufacturers {
  background-color: var(--col-bg1);
}
.top__manufacturers .content {
    padding: 60px 0 40px
  }
.top__manufacturers ._ttl {
}
.top__manufacturers ._ttl ._en {
  display: block;
  font-size: min(9.6vw,3.6rem);
  margin-bottom: 0.5em;
}
.top__manufacturers ._ttl ._jp {
  font-size: 1.4rem;
  color: var(--col-01);
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (min-width: 1000px) {
  .top__manufacturers .content {
    padding: 100px 0 90px
  }
	.top__manufacturers ._ttl ._en {
    font-size: min(4.8vw,4.8rem);
  }
}
.top__manufacturers__list {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px calc(100% * (40 / 600));
}
.top__manufacturers__list li {
  width: calc(100% * (280 / 600));
}
.top__manufacturers__list li a {
  /*pointer-events: none;*/
}
.top__manufacturers__list li ._img {
  /*outline: #fff 1px solid;*/
  font-size: 0;
  overflow: hidden;
  transition: 0.3s;
}
.top__manufacturers__list li a ._img ._inner {
  transition: 0.3s;
}
.top__manufacturers__list li ._caption {
  color: var(--col-04);
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 0.5em;
}
.top__manufacturers__bt {
  margin: 70px 0 0;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .top__manufacturers__list {
    gap: 50px 5%;
  }
  .top__manufacturers__list li {
    width: 30%;
  }
}
@media screen and (min-width: 1000px) {
  .top__manufacturers__list li ._caption {
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .top__manufacturers__list li a:hover ._img ._inner {
    transform: scale(1.1);
  }
}

/* Recruit */
.recruit-content {
  margin: 40px auto 0;
  position: relative;
}
.recruit__heading {
  background-color: var(--col-02);
  border-radius: 20px;
  position: relative;
  margin-bottom: 60px;
}
.recruit__heading ._inner {
  color: #fff;
  /*overflow: hidden;*/
  padding: 10% 6%;
  position: relative;
}
.recruit__heading ._inner ._bg-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden
}
.recruit__heading ._inner ._bg-inner::before,
.recruit__heading ._inner ._bg-inner::after {
  content: '';
  position: absolute;
  display: block;
  width: 200px;
  height: 200px;
  border: rgba(255,255,255,0.1) 30px solid;
  border-radius: 50%;
}
.recruit__heading ._inner ._bg-inner::before {
  top: -8%;
  left: -20%;
}
.recruit__heading ._inner ._bg-inner::after {
  bottom: -8%;
  right: -20%;
}
.recruit__heading ._inner ._ttl {
  font-size: min(4.8vw,1.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.1em;
}
.recruit__heading ._inner ._txt {
  text-align: center
}
.recruit__heading ._inner ._txt p {
  font-size: min(3.47vw,1.3rem);
}
.recruit__heading ._inner ._txt p + p {
  margin-top: 1.5em;
}
.recruit__heading ._img__wrap {
  position: relative;
  top: -120px;
  width: 110%;
  height: 240px;
  margin: 0 -5% -15%;
}
.recruit__heading ._img__wrap ._img01 {
  position: absolute;
  left: 3%;
  top: 66%;
  width: 30%;
  z-index: 1;
}
.recruit__heading ._img__wrap ._img02 {
  position: absolute;
  left: 25%;
  top: 80%;
  width: 24%;
  z-index: 2;
}
.recruit__heading ._img__wrap ._img03 {
  position: absolute;
  right: 3%;
  top: 67%;
  width: 26%;
  z-index: 3;
}
.recruit__heading ._img__wrap ._img04 {
  position: absolute;
  right: 26%;
  top: 76%;
  width: 23%;
  z-index: 4;
}
@media screen and (min-width: 600px) {
  .recruit__heading ._inner ._bg-inner::before,
  .recruit__heading ._inner ._bg-inner::after {
    width: 300px;
    height: 300px;
  }
  .recruit__heading ._inner ._bg-inner::before {
    top: -20%;
    left: -20%;
  }
  .recruit__heading ._inner ._bg-inner::after {
    bottom: -20%;
    right: -20%;
  }
  .recruit__heading ._inner ._ttl {
    font-size: min(4.8vw,2.6rem);
  }
  /*.recruit__heading ._inner ._txt p {
    font-size: min(2.33vw,1.4rem);
  }*/
  .recruit__heading ._img__wrap {
    margin: 0 -5% -5%;
  }
}
@media screen and (min-width: 768px) {
  .recruit__heading {
    margin-bottom: 80px
  }
  .recruit__heading ._inner {
    padding: 4.3%;
  }
  .recruit__heading ._inner ._ttl {
    font-size: min(3vw,3.6rem);
  }
  .recruit__heading ._inner ._txt {
    padding: 0 18%;
  }
  .recruit__heading ._inner ._txt p {
    font-size: min(1.69vw,1.3rem);
  }
  .recruit__heading ._img__wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .recruit__heading ._img__wrap ._img01 {
    left: 3%;
    top: 4%;
    width: 17%;
  }
  .recruit__heading ._img__wrap ._img02 {
    left: 2%;
    top: 41%;
    width: 15%;
  }
  .recruit__heading ._img__wrap ._img03 {
    top: 70%;
    width: 15%;
    z-index: 4;
  }
  .recruit__heading ._img__wrap ._img04 {
    right: 1%;
    top: 20%;
    width: 16%;
    z-index: 3;
  }
}
@media screen and (min-width: 1000px) {
  .recruit-content {
    margin: 80px auto 0;
  }
  .recruit__heading {
    margin-bottom: 110px
  }
  .recruit__heading ._inner ._bg-inner::before,
  .recruit__heading ._inner ._bg-inner::after {
    width: 500px;
    height: 500px;
    border: rgba(255,255,255,0.1) 40px solid;
  }  
  .recruit__heading ._inner ._txt p {
    font-size: min(1.42vw,1.7rem);
  }
  .recruit__heading ._img__wrap ._img01 {
    left: 5%;
    top: 5%;
  }
  .recruit__heading ._img__wrap ._img02 {
    /*top: 37%;*/
  }
  .recruit__heading ._img__wrap ._img03 {
    right: 2%;
    top: 53%;
  }
  .recruit__heading ._img__wrap ._img04 {
    top: -5%;
    right: 5%;
  }
}
.cp-navi__wrap {
  padding: 0 0 40px;
}
.cp-navi__wrap .cp-navi {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cp-navi__ttl {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
}
.cp-navi__ttl ._en {
  color: var(--col-02);
  font-size: 3.6rem;
}
.cp-navi__ttl ._txt-small {
  color: var(--col-04);
  font-size: 1.6rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.2;
  display: block;
  margin-top: 1em;
}
@media screen and (min-width: 1000px) {
  .cp-navi__ttl ._en {
    font-size: min(3.67vw, 4.4rem);;
  }
}

.cp-navi__wrap .cp-navi li {
  width: calc(50% - 10px);
}
.cp-navi__wrap .cp-navi li a {
  border: #8599e0 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--col-02);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 0 1.5em;
  height: 56px;
  border-radius: 28px;
  box-shadow: 0px 0px 12px -3px rgba(125,131,151,0.80);
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .cp-navi__wrap .cp-navi {
    gap: 30px;
  }
  .cp-navi__wrap .cp-navi li {
    width: calc(50% - 15px);
  }
  .cp-navi__wrap .cp-navi li a {
    font-size: 1.6rem;
    padding: 0 2.5em;
  }
}
@media screen and (min-width: 1000px) {
  .cp-navi__wrap .cp-navi li {
    width: auto;
  }
  .cp-navi__wrap .cp-navi li a {
    padding: 0 2.5em;
  }
}
@media (hover: hover) {
  .cp-navi__wrap .cp-navi li a:hover {
    border: var(--col-02) 1px solid;
    background-color: var(--col-02);
    color: #fff;
  }
}

.recruit-table__wrap {
  background-color: #f2f5fd;
  padding: 40px 0;
  margin: 40px auto 0;
  width: 100%;
}
.recruit-table__wrap .recruit-table__bg {
  background-color: #fff;
  padding: 20px;
}
.recruit__table {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}
.recruit__table tr {
  border-bottom: var(--col-06) 1px solid;
}
.recruit__table tr:last-child {
  border-bottom: none;
}
.recruit__table th,.recruit__table td {
  display: block;
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 1em;
  text-align: left;
}
.recruit__table th {
  background-color: var(--col-bg3);
}
@media screen and (min-width: 768px) {
  .recruit-table__wrap {
    padding: 80px 0 40px;
  }
  .recruit-table__wrap .recruit-table__bg {
    padding: 40px;
  }
  .recruit__table th,.recruit__table td {
    display: table-cell;
  }
  .recruit__table th,.recruit__table td {
    font-size: min(1.8vw,1.6rem);
    padding: 1.5em;
  }
  .recruit__table th {
    background-color: transparent;
    width: 12em;
  }
}
.recruit-content .recruit__bt {
  text-align: center;
  margin: 60px auto;
}
/*中途採用*/
.recruit-content .career-recruit {
  margin: 80px auto;
}
.recruit-content .career-recruit .all-txt {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: -30px;
}
@media screen and (min-width: 1000px) {
  .recruit-content .career-recruit {
    margin: 100px auto;
  }
  .recruit-content .career-recruit .all-txt {
    font-size: 1.8rem;
  }
}

/*プライバシーポリシー*/
.privacy-content {
  width: 90%;
  max-width: 1040px;
  margin: 40px auto;
}
.p-policy-list {
  counter-reset: num;
  margin: 40px 20px;
}
.p-policy-list dt {
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
  text-indent: -20px;
  padding-left: 20px;
}
.p-policy-list dt::before {
  counter-increment: num;
  content: counter(num) ". ";
  text-align: right;
  display: inline-block;
  margin-right: 5px
}
.p-policy-list dd {
  margin-bottom: 3em;
  padding-left: 5px;
}
.policy__inquiry-box {
  background-color: var(--col-bg3);
  padding: 30px;
  line-height: 2;
}
.policy__inquiry-box ._ttl {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .privacy-content {
    margin: 100px auto;
  }
}

/*Sitemap*/
.sitemap-content {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
}
.sitemap-content ._inner {}
.sitemap-content .sitemap-wrap {}
.sitemap-content .sitemap-ttl {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 1em;
}
.sitemap-content .sitemap-list {
  margin-bottom: 80px;
}
.sitemap-content .sitemap-list li {
  margin-bottom: 1em;
  line-height: 1.6;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.sitemap-content .sitemap-list li a {
  transition: 0.2s;
}
.sitemap-content .sitemap-list li a ._bt-icon.open-win {
  top: 3px;
  margin-left: 5px;
}
@media screen and (min-width: 768px) {
  .sitemap-content ._inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .sitemap-content .sitemap-wrap {
    width: 48%;
  }
}
@media screen and (min-width: 1000px) {
  .sitemap-content .sitemap-wrap {
    width: 25%;
  }
}
@media (hover: hover) {
  .sitemap-content .sitemap-list li a:hover {
    /*color: var(--col-01);*/
    opacity: 0.6;
  }
}

/*サイドメニューありレイアウト*/
.flow_contents_wrap {
  display: flex;
  flex-direction: column-reverse;
  margin: 60px auto;
  position: relative;
}
.flow_contents_wrap ._side_menu {
  /*display: none;*/
  margin: 40px 0;
  padding: 30px 20px 0;
  border-top: var(--col-06) 1px solid;
}
@media screen and (min-width: 1000px) {
  .flow_contents_wrap {
    margin: 100px auto 150px;
  }
}
@media screen and (min-width: 1200px) {
  .flow_contents_wrap {
    flex-direction: row;
  }
  .flow_contents_wrap ._side_menu {
    /*display: block;*/
    border-top: none;
    margin: 150px 0 0 0;
    width: 280px;
    padding: 0;
  }
}

.flow_contents_wrap ._side_menu li {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}
.flow_contents_wrap ._side_menu li a {
  color: #888;
  position: relative;
  transition: 0.3s;
}
.flow_contents_wrap ._side_menu li a::before {
  content: '';
  background: #888;
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 8px;
  left: -10px;
  border-radius: 50%;
  line-height: 1.4;
  transition: 0.3s;
}
.flow_contents_wrap ._side_menu li a._on {
  color: var(--col-01);
}
.flow_contents_wrap ._side_menu li a._on::before {
  background: var(--col-01);
}
.flow_contents_wrap ._main-content {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .flow_contents_wrap ._side_menu > ul {
    position: sticky;
    top: 240px;
  }
  .flow_contents_wrap ._main-content {
    width: calc(100% - 280px);
    padding: 0 0 0 60px;
  }
  .flow_contents_wrap ._main-content::before {
    background-color: var(--col-06);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
  }
}
.flow_contents_wrap ._inner_2col {
  display: flex;
  flex-direction: column-reverse;
}
.flow_contents_wrap ._inner_2col ._pic {
  width: 100%;
  margin: 0 0 30px 0;
}
.flow_contents_wrap ._inner_2col ._pic + ._main {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .flow_contents_wrap ._inner_2col {
    flex-direction: row;
    justify-content: space-between;
  }
  .flow_contents_wrap ._inner_2col ._main {
    width: calc(100%*(550 / 1040));
  }
  .flow_contents_wrap ._inner_2col ._pic {
    width: calc(100% * (430 / 1040));
    margin: 0;
  }
  .flow_contents_wrap ._inner_2col ._pic + ._main {
    margin-bottom: 0;
  }
}
#sec-philosophy {
  margin-top: 100px;
}

#sec-profile {}
.tbl-profile {
  display: flex;
  flex-wrap: wrap;
}
.tbl-profile > dt {
  border-bottom: var(--col-06) 1px solid;
  width: 8em;
  padding: 2rem 0;
  line-height: 1.6;
}
.tbl-profile > dd {
  border-bottom: var(--col-06) 1px solid;
  width: calc(100% - 8em);
  padding: 2rem 0;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .tbl-profile > dt {
    width: 15%;
  }
  .tbl-profile > dd {
    width: 85%;
  }
}
/*組織図*/
#sec-organization {
  margin-top: 150px;
}
.organization-chart {
  max-width: 700px;
}
/*グループ会社*/
#sec-group {
  margin-top: 150px;
}
.group-list {}
.group-list li {
  width: 90%;
  margin: 0 auto 8%;
}
.group-list li ._img {
  display: flex;
  justify-content: center;
  align-items: center;
  border: var(--col-06) 1px solid;
}
.group-list li ._name {
  margin-top: 10px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .group-list {
    display: flex;
    flex-wrap: wrap;
  }
  .group-list li {
    width: 40%;
    margin: 0 5% 5% 0;
  }
}
/*事業所一覧*/
.office-list {}
.office-list li {
  margin-bottom: 10%;
}
.office-list li._empty {
 display: none;
}
.office-list li ._map {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 20px;
}
 .office-list li ._map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.office-list li ._data p {
  line-height: 1.6;
  font-size: 1.4rem;
}
.office-list li ._name {
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .office-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .office-list li {
    width: 47%;
  }
  .office-list li._empty {
   display: block;
  }
  .office-list li ._data p {
    line-height: 1.8;
    font-size: 1.6rem;
  }
}

/*沿革*/
#sec-history ._ttl-img {
  background: url("/images/company/history_ttl_img.jpg") no-repeat center / cover;
  /*height: 480px;*/
  margin-right: -5vw;
  margin-bottom: 40px;
  aspect-ratio: 143 / 48;
}
@media screen and (min-width: 1533px) {
  #sec-history ._ttl-img {
    margin-right: 0;
    width: calc(100% + ((100vw - 1380px) / 2));
  }
}
.tbl-history {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  border-bottom: var(--col-06) 1px solid;
}
.tbl-history:last-child {
  border-bottom: none;
}
.tbl-history > dt {
  width: 8em;
  padding: 2.5rem 0;
  line-height: 1.6;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.tbl-history > dt ._year {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}
.tbl-history > dd {
  width: calc(100% - 8em);
  padding: 2.5rem 0;
  line-height: 1.6;
}
.tbl-history > dd > p {}
.tbl-history > dd > p + p {
  margin-top: 10px
}
@media screen and (min-width: 768px) {
  .tbl-history > dt {
    width: 10em;
    padding-right: 1em;
  }
  .tbl-history > dt ._year {
    display: inline-block;
  }
  .tbl-history > dd {
    width: calc(100% - 11em);
  }
}
@media screen and (min-width: 1000px) {
  .tbl-history > dt {
    width: 12em;
  }
  .tbl-history > dd {
    width: calc(100% - 12em);
  }
}

/* カタログ */
#sec-catalog {}
._catalog-inner {
  margin-bottom: 60px;
}
._catalog-inner ._main {
  margin-top: 40px;
}
._catalog-inner ._pic img {
  box-shadow: 0px 10px 15px -6px rgba(0, 0, 0, 0.5);
}
.catalog__bt {
  margin: 40px 0;
  text-align: center;
}
._catalog-page-list__wrap {
  background-color: var(--col-bg3);
  padding: 30px 40px;
}
._catalog-page-list__wrap ._catalog-page-list {
  /*display: flex;
  gap: 4%;
  flex-wrap: wrap;*/
}
._catalog-page-list__wrap ._catalog-page-list li {
  font-size: 1.4rem;
  margin: 1em 0;
}
._catalog-page-list__wrap ._catalog-page-list li a {
  display: inline-block;
  position: relative;
  padding-right: 1em;
  transition: 0.2s;
}
._catalog-page-list__wrap ._catalog-page-list li a::after {
  content: '';
  background: url("/images/icon_pdf_gray.svg");
  background-size: contain;
  width: 1em;
  height: 1em;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 0.2s;
}
@media screen and (min-width: 480px) {
  ._catalog-inner {
    display: flex; 
  }
  ._catalog-inner ._main {
    width: calc(100% * (770 / 1040));
    padding-left: 40px;
    margin-top: 0;
  }
  ._catalog-inner ._pic {
    width: calc(100% * (270 / 1040));
  }
  .catalog__bt {
    text-align: left;
  }
  
}
@media screen and (min-width: 768px) {
  ._catalog-inner {
    margin-bottom: 100px; 
  }
  ._catalog-page-list__wrap ._catalog-page-list {
    display: flex;
    gap: 4%;
    flex-wrap: wrap;
  }
  ._catalog-page-list__wrap ._catalog-page-list li {
    font-size: min(1.6vw, 1.4rem);
    width: 48%;
  }
}
@media screen and (min-width: 1200px) {
  ._catalog-page-list__wrap ._catalog-page-list li {
    font-size: min(1.16vw, 1.6rem);
  }
}
@media (hover: hover) {
  ._catalog-page-list__wrap ._catalog-page-list li a:hover {
    color: var(--col-01);
  }
  ._catalog-page-list__wrap ._catalog-page-list li a:hover::after {
    background: url("/images/icon_pdf.svg");
  }
}
/* メーカーカタログ */
._mf-catalog-inner {
  margin-bottom: 60px;
}
._mf-catalog {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 8%;
}
._mf-catalog li {
  width: 46%;
}
._mf-catalog li ._cover {
  max-width: 200px;
  transition: 0.2s;
  line-height: 0;
  box-shadow: 0px 10px 15px -6px rgba(0, 0, 0, 0.5);
}
._mf-catalog li .catalog-name {
  font-weight: normal;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 1.5em 0 1em;
}
._mf-catalog li .catalog-name span {
  font-weight: bold;
}
._mf-catalog li ._description {
  font-size: 1.4rem;
  line-height: 1.6;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
._mf-catalog li a._link {
  display: inline-block;
  font-size: 1.4rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  padding-left: 15px;
  position: relative;
  transition: 0.2s;
  margin: 1em 0 0;
}
._mf-catalog li a._link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-top: var(--col-01) 2px solid;
  border-right: var(--col-01) 2px solid;
  transform: rotate(45deg);
}
._mf-catalog li a._link.pdf,
._mf-catalog li a._link._external {
  padding-right: 1.25em;
}
._mf-catalog li a._link.pdf::after {
  content: '';
  background: url("/images/icon_pdf_gray.svg");
  background-size: contain;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  transition: 0.2s;
}
._mf-catalog li a._link._external::after {
  content: '';
  background: url("/images/open_new.svg");
  background-size: contain;
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  ._mf-catalog {
    gap: 60px calc(100% * (40 / 1040));
  }
  ._mf-catalog li {
    width: calc(100% * (230 / 1040));
  }
}
@media (hover: hover) {
  ._mf-catalog li ._cover:hover {
    opacity: 0.8;
  }
  ._mf-catalog li a:hover._link {
    color: var(--col-01);
  }
  ._mf-catalog li a._link.pdf:hover::after {
    background: url("/images/icon_pdf.svg");
  }
  ._mf-catalog li a._link._external:hover::after {
    background: url("/images/open_new_red.svg");
    background-size: contain;
  }
}

/* 輸入メーカー */
._overseas-main {
  display: flex;
  justify-content: space-between;
  gap: 0 5%;
  flex-wrap: wrap;
}
._overseas-main ._item {
  width: 47.5%;
  margin-bottom: 5%;
}
._overseas-main ._item ._pic {
  margin-bottom: 6%;
  transition: 0.3s;
}
._overseas-main ._item ._name {
  margin-bottom: 4%;
  transition: 0.3s;
}
._overseas-main ._item ._name ._smaller {
  font-size: 1.4rem;
  font-weight: normal;
}
._overseas-main .all-txt {
  font-size: 1.4rem;
  line-height: 1.8;
  transition: 0.3s;
}
._overseas-other {
  display: flex;
  gap: 0 5%;
  flex-wrap: wrap;
}
._overseas-other ._item {
  border: var(--col-06) 1px solid;
  line-height: 0;
  width: 47.5%;
  margin-bottom: 5%;
}
@media screen and (min-width: 600px) {
  ._overseas-main ._item ._name {
    font-size: 2rem;
  }
  ._overseas-main .all-txt {
    font-size: 1.6rem;
    line-height: 2;
  }
  ._overseas-other {
    gap: 0 2.66%;
  }
  ._overseas-other ._item {
    width: 22.5%;
    margin-bottom: 3%;
  }
}
@media (hover: hover) {
  ._overseas-main ._item a:hover ._pic {
    opacity: 0.8;
  }
  ._overseas-main ._item a:hover ._name,
  ._overseas-main ._item a:hover .all-txt {
    color: var(--col-01);
  }
}

/* 国内メーカー */
.domestic-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}
.domestic-list li {
  border-top: var(--col-06) 1px solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  width: 100%;
}
.domestic-list__main {
  line-height: 1.4;
  width: calc(100% - 140px);
  padding-right: 1em;
}
.domestic-list__main ._name {
  font-weight: bold;
}
.domestic-list__main ._description {
  color: #888;
  font-size: 1.4rem;
}
.domestic-list__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  width: 140px;
}
.domestic-list__logo img {
  width: auto;
  max-width: 140px;
  max-height: 36px;
}
@media screen and (min-width: 768px) {
  .domestic-list li {
    width: 46%;
  }
}

/* お知らせ一覧 */
#sec-news {}

/* トピックス一覧 */
#sec-topics {}


/* 年度アーカイブ */
.year-archive {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0;
}
.year-archive li a {
  border: var(--col-03) 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--col-link-dgray);
  width: 72px;
  height: 36px;
  border-radius: 18px;
}
.year-archive li a._on {
  background-color: var(--col-link-dgray);
  border: var(--col-link-dgray) 1px solid;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .year-archive li a {
    width: 90px;
  }
}
@media (hover: hover) {
  .year-archive li a {
    transition: 0.3s;
  }
  .year-archive li a:hover {
    background-color: var(--col-link-dgray);
    border: var(--col-link-dgray) 1px solid;
    color: #fff;
  }
}
/* かなアーカイブ */
.kana-archive {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0;
}
.kana-archive li a {
  border: var(--col-03) 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--col-link-dgray);
  width: 72px;
  height: 36px;
  border-radius: 18px;
}
.kana-archive li a._on {
  background-color: var(--col-link-dgray);
  border: var(--col-link-dgray) 1px solid;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .kana-archive li a {
    width: 80px;
  }
}
@media (hover: hover) {
  .kana-archive li a {
    transition: 0.3s;
  }
  .kana-archive li a:hover {
    background-color: var(--col-link-dgray);
    border: var(--col-link-dgray) 1px solid;
    color: #fff;
  }
}

/* ページャー */
.page-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px auto;
}
.page-nav li {
  position: relative;
}
.page-nav li.omit {
    margin: 0 -3px;
}
.page-nav li.prev span,
.page-nav li.next span {
  border: var(--col-03) 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  transition: 0.3s;
}
.page-nav li.prev span {
  padding-left: 2px;
}
.page-nav li.next span {
  padding-right: 2px;
}
.page-nav li.prev span::after,
.page-nav li.next span::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  transition: 0.3s;
}
.page-nav li.prev span::after {
  border-top: var(--col-03) 2px solid;
  border-right: var(--col-03) 2px solid;
  transform: rotate(-135deg);
}
.page-nav li.next span::after {
  border-top: var(--col-03) 2px solid;
  border-right: var(--col-03) 2px solid;
  transform: rotate(45deg);
}
.page-nav li._on,
.page-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
.page-nav li._on span {
  font-size: 2rem;
  font-weight: bold;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .page-nav {
    gap: 30px;
    margin: 60px auto;
  }
  .page-nav li.omit {
    margin: 0;
  }
}
@media (hover: hover) {
  .page-nav li a {
    transition: 0.3s;
  }
  .page-nav li a:hover {
    color: var(--col-01);
  }
  .page-nav li.prev a:hover span,
  .page-nav li.next a:hover span {
    border: var(--col-01) 1px solid;
  }
  .page-nav li.prev a:hover span::after,
  .page-nav li.next a:hover span::after {
    border-top: var(--col-01) 2px solid;
    border-right: var(--col-01) 2px solid;
  }
}

.news__list li a {
  border-bottom: #eee 1px solid;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  line-height: 1.6;
  padding: 2em 0;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  transition: 0.3s;
}
.news__list li time {
  color: var(--col-04);
  width: 120px;
}
.news__list li ._news-ttl {
  margin-top: 8px;
}
.news__list li ._arrow {
  display: none;
}
@media screen and (min-width: 600px) {
  .news__list li a {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
  }
  .news__list li ._news-ttl {
    margin-top: 0;
    padding-right: 20px;
    width: calc(100% - 120px);
  }
  .news__list li ._arrow {
    display: block;
    width: 8px;
    height: 8px;
    border-top: var(--col-03) 2px solid;
    border-right: var(--col-03) 2px solid;
    transform: rotate(45deg);
    margin-left: auto;
    transition: 0.3s;
  }
}
@media (hover: hover) {
  .news__list li a:hover {
    border-bottom: var(--col-01) 1px solid;
    color: var(--col-01);
  }
  .news__list li a:hover ._arrow {
    border-top: var(--col-01) 2px solid;
    border-right: var(--col-01) 2px solid;
    width: 12px;
    height: 12px;
  }
}

/* お知らせ・トピックス詳細 */
.article__wrap {
  margin: 60px auto;
}
.article__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.article__head time {
  color: var(--col-04);
  font-size: 1.4rem;
}
.article__ttl {
  border-bottom: var(--col-06) 1px solid;
  font-size: 2.4rem;
  line-height: 1.2;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.article__content {/*画像がある場合（topics）用*/
  padding: 30px 0;
}
.article__content .article__img {
  margin-top: 20px;
}
.article__content .article__main {/*WP 投稿画面の入力内容反映エリア*/
}
.article__main p {
  line-height: 2;
  margin-bottom: 1.5em;
}
.article__main a:not(.all-bt) {
  color: var(--col-01);
  text-decoration: underline;
  transition: 0.2s;
}
.article__foot {
  border-top: var(--col-06) 1px solid;
  padding: 40px 0;
}
.article__foot .return-list a {
  color: var(--col-link-dgray);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}
.article__foot .return-list a::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: var(--col-03) 2px solid;
  border-right: var(--col-03) 2px solid;
  transform: rotate(-135deg);
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .article__head time {
    font-size: 1.6rem;
  }
  .article__ttl {
    font-size: 3.0rem;
    margin-bottom: 60px;
    padding-bottom: 40px;
  }
  .article__content {/*画像がある場合（topics）用*/
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
  }
  .article__content .article__img {
    width: 35%;
  }
  .article__content .article__main {/*WP 投稿画面の入力内容反映エリア*/
    width: 63%;
  }
  .article__main img {
    width: auto;
  }
}
@media screen and (min-width: 1000px) {
  .article__wrap {
    margin: 100px auto;
  }
}
@media (hover: hover) {
  .article__main a:hover {
    color: #ff3e3e;
  }
  .article__foot .return-list a:hover {
    color: var(--col-01);
  }
  .article__foot .return-list a:hover::before {
    border-top: var(--col-01) 2px solid;
    border-right: var(--col-01) 2px solid;
  }
}

/*title*/
.sec_ttl_01 {
  color: var(--col-01);
  font-weight: bold;
  margin-bottom: 50px;
}
.sec_ttl_01 ._en {
  position: relative;
  color: #000;
  font-size: min(9.07vw, 4rem);
  line-height: 1.2;
  display: block;
  padding-left: 20px;
  margin-bottom: 10px;
}
.sec_ttl_01 ._en::before,
.sec_ttl_01 ._en::after {
  content: '';
  display: block;
  position: absolute;
  top: 10%;
  left: 0;
  width: 4px;
}
.sec_ttl_01 ._en::before {/*グレー*/
  background-color: var(--col-06);
  height: 80%;
}
.sec_ttl_01 ._en::after {/*赤*/
  background-color: var(--col-01);
  height: 40%;
}
.sec_ttl_01 ._en ._ttl-small {
  font-size: 1.6rem;
  display: inline-block;
  margin-left: 1.5rem;
}
@media screen and (min-width: 1000px) {
  .sec_ttl_01 {
    margin-bottom: 70px;
  }
  .sec_ttl_01 ._en {
    font-size: min(4.8vw, 4.8rem);
  }
  .sec_ttl_01 ._en ._ttl-small {
    font-size: 1.8rem;
  }
}
.sec_ttl_02 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 30px;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
@media screen and (min-width: 1000px) {
  .sec_ttl_02 {
    font-size: 3.0rem;
  }
}

.sec_ttl_03 {/*赤線付き*/
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  line-height: 1.2;
  padding: 10px 0 10px 20px;
  margin-bottom: 30px;
}
.sec_ttl_03::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  background-color: var(--col-01);
  height: 100%;
}

.sec_ttl_03 ._en {
  font-size: 2.8rem;
  line-height: 1.2;
}
.sec_ttl_03 ._jp {
  color: var(--col-01);
  font-size: 1.4rem;
  line-height: 1.2;
}

.sec_ttl_04 {/*センター寄せ*/
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
}
.sec_ttl_04 ._txt-small {
  color: var(--col-02);
  font-size: 1.6rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.2;
  display: block;
  margin-top: 1em;
}

@media screen and (min-width: 1000px) {
  .sec_ttl_04 {
    font-size: 3.0rem;
  }
}

.sign {
  font-size: 1.6rem;
  text-align: right;
  margin: 2em 0;
}
.sign ._name {
  font-size: 2.4rem;
}
.all_txt {
  font-size: 1.6rem;
  line-height: 2;
}
p.all_txt + p.all_txt {
  margin-top: 1em;
}

/*ページ背景*/
.bg-floating {
  position: absolute;
  z-index: -1;
}
.bg-floating.bg-01 {
  top: 5%;
  right: 2%;
  width: 30vw;
  animation: rotation 40s linear infinite;
}
.bg-floating.bg-02 {
  top: 40%;
  left: -6%;
  width: 30vw;
  /*animation: rotation 60s linear infinite;*/
}
.bg-floating.bg-03 {
  top: 65%;
  right: -8%;
  width: 45vw;
  /*animation: rotation 60s linear infinite;*/
}
.bg-floating.bg-04 {
  top: 85%;
  left: 10%;
  width: 30vw;
  animation: rotation 50s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*メーカー詳細*/
.manufacturers-det_main {
  margin: 30px auto;
}
.m-det_ttl_01 {
  margin: 0 auto 40px;
}
.m-det_ttl_02 {
  color: var(--col-01);
  font-size: 2.2rem;
  line-height: 1.2;
  position: relative;
  padding: 0 0 1em;
  margin: 0 0 30px;
}
.m-det_ttl_02::before,
.m-det_ttl_02::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}
.m-det_ttl_02::before {
  background-color: var(--col-06);
  width: 100%;
}
.m-det_ttl_02::after {
  background-color: var(--col-01);
  width: 15%;
}
.m-det_ttl_02 ._m-det_ttl-small {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .m-det_ttl_02 {
    font-size: min(3.13vw,2.6rem);
  }
}
.m-det_ttl_01 ._logo {
  line-height: 0;
  width: 100%;
  max-width: 536px;
  margin: 0 auto 10px;
}
.m-det_ttl_01 ._name {
  font-weight: normal;
  line-height: 1.6;
  text-align: center;
}
.m-det_ttl_01 ._name ._lighten-txt {
  color: var(--col-04);
}
.m-det_head_wrap {
  background-color: #f2f5fd;
  padding: 30px 0;
}
.m-det_head {
  position: relative;
  margin: 0 auto;
  width: 90%;
}
.m-det_head ._ttl {
  font-size: min(5.87vw,2.4rem);
  /*font-size: 2.2rem;*/
  line-height: 1.4;
  margin-bottom: 1em;
  font-feature-settings: "palt";
  position: relative;
  padding-left: 16px;
}
.m-det_head ._ttl::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--col-01);
  margin: auto 0;
}
.m-det_head ._main-pic {
  margin: -50px 0 2em;
}
@media screen and (min-width: 768px) {
  .m-det_head {
    padding: 1.5em 0;
  }
  .m-det_head ._ttl {
    font-size: min(3vw,3rem);
    padding-left: 20px;
  }
  .m-det_head ._main-pic {
    float: right;
    width: 45%;
    margin: -70px 0 0 2em;
    top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .manufacturers-det_main {
    margin: 50px auto;
  }
  .m-det_ttl_01 {
    margin: 0 auto 70px;
  }
  .m-det_ttl_01 ._name {
    font-size: 1.8rem;
  }
  .m-det_head {
    padding: 30px 0;
    max-width: 1300px;
  }
  .m-det_head ._main-pic {
    margin: -90px 0 0 2em;
  }
}
.manufacturers-det_main a._link {
  display: inline-block;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  padding-left: 15px;
  position: relative;
  transition: 0.2s;
  margin: 1em 0 0;
}
.manufacturers-det_main a._link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-top: var(--col-01) 2px solid;
  border-right: var(--col-01) 2px solid;
  transform: rotate(45deg);
}
.manufacturers-det_main a._link.pdf,
.manufacturers-det_main a._link._external {
  padding-right: 1.25em;
  color: var(--col-01);
}
.manufacturers-det_main a._link.pdf::after {
  content: '';
  background: url("/images/icon_pdf_gray.svg");
  background-size: contain;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  transition: 0.2s;
}
.manufacturers-det_main a._link._external::after {
  content: '';
  background: url("/images/open_new_red.svg");
  background-size: contain;
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  transition: 0.2s;
}

@media (hover: hover) {
  .manufacturers-det_main a:hover._link {
    /*color: var(--col-01);*/
    color: #ff3e3e;
  }
  .manufacturers-det_main a._link.pdf:hover::after {
    background: url("/images/icon_pdf.svg");
  }
  .manufacturers-det_main a._link._external:hover::after {
    /*background: url("/images/open_new_red.svg");
    background-size: contain;*/
  }
}
/*ピックアップ*/
.manufacturers-det_main .picup-wrap {
  background: linear-gradient(180deg, #f2f5fd, #ffffff);
}
.manufacturers-det_main .picup-wrap .picup-inner {
  background: linear-gradient(180deg, rgba(255,255,255,1.00), rgba(255,255,255,0.3));
  width: 90%;
  margin: 0 auto;
  padding: 20px;
}
/*ピックアップのカラムレイアウト*/
.manufacturers-det_main .picup-wrap .picup-inner .picup-column {
  display: flex;
  flex-direction: column-reverse;
  margin: 0 0 60px;
}
.picup-column .picup-pic.col2 {/*写真2つ*/
  display: flex;
  gap: 10px;
}
.picup-column .picup-pic.col2 img {/*写真2つ*/
  width: calc((100% - 10px) / 2);
  margin: 0 0 auto
}
.picup-column .picup-pic {/*写真左右共通*/
  margin-top: 2em;
}
.product-box ._sub-ttl {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .manufacturers-det_main .picup-wrap .picup-inner {
    max-width: 1260px;
    padding: 60px 40px 0;
  }
  /*ピックアップのカラムレイアウト*/
  .manufacturers-det_main .picup-wrap .picup-inner .picup-column {
    flex-direction: row;
    justify-content: space-between;
    margin: 0 0 100px;
  }
  .manufacturers-det_main .picup-wrap .picup-inner .picup-column._img-left {}
  .manufacturers-det_main .picup-wrap .picup-inner .picup-column._img-right {
    flex-direction: row-reverse;
  }
  /*サイズ比率 間5%あくように設定*/
  .picup-column ._w30 { width: 30%;}
  .picup-column ._w35 { width: 35%;}
  .picup-column ._w40 { width: 40%;}
  .picup-column ._w45 { width: 45%;}
  .picup-column ._w50 { width: 50%;}
  .picup-column ._w55 { width: 55%;}
  .picup-column ._w60 { width: 60%;}
  .picup-column ._w65 { width: 65%;}
  
  .picup-column .picup-pic {/*写真左右共通*/
    margin-top: 0;
  }
  .picup-column._img-right .picup-pic {/*写真右*/
    margin-left: 2em;
  }
  .picup-column._img-left .picup-pic {/*写真左*/
    margin-right: 2em;
  }
  .product-box ._sub-ttl {
    font-size: min(2.6vw,2.0rem);
  }
}

.m-det_ttl_recommend {/*おすすめ商品タイトル*/
  position: relative;
  background-color: #f0f1f9/*#f2f5fd*/;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  font-size: 2.2rem;
  line-height: 1.6;
  padding: 20px;
  margin: 20px 0 30px;
}
.m-det_ttl_recommend::before {
  content: '';
  display: inline-block;
  background-color: var(--col-01);
  position: relative;
  top: -5px;
  left: 0;
  margin-right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.m-det_ttl_recommend ._small {
  color: var(--col-01);
  display: inline-block;
  font-size: 1.4rem;
  margin-left: 10px;
}
.m-det_recommend-list {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
  margin: 0 0 40px;
}
.m-det_recommend-list ._pic {
  border: var(--col-06) 1px solid;
  line-height: 0;
}
.m-det_recommend-list ._spec {
  margin: 15px 0 0;
}
.m-det_recommend-list ._spec li {
  display: flex;
  padding: 0.25em 0;
  line-height: 1.6
}
.m-det_recommend-list ._spec ._item {
  width: 7em;
}
.m-det_recommend-list ._spec p {
  width: calc(100% - 100px);
}
@media screen and (min-width: 768px) {
  .m-det_ttl_recommend {
    font-size: 2.4rem;
    padding: 20px 28px;
  }
  .m-det_ttl_recommend ._small {
    font-size: 1.6rem;
  }
  .m-det_recommend-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px 2%;
    margin: 0 0 60px;
  }
  .m-det_recommend-list > li {
    width: 32%;
  }
  .m-det_recommend-list ._spec li {
    font-size: min(1.6vw, 1.6rem);
  }
}
@media screen and (min-width: 1000px) {
  .m-det_recommend-list {
    gap: 40px 3.5%;
  }
  .m-det_recommend-list > li {
    width: 31%;
  }
}

/* button
--------------------------------------------------------*/
.bt-center {
  margin: 40px auto;
  text-align: center;
}
.all-bt {/*赤ボタン*/
  background-color: var(--col-01);
  border: var(--col-01) 2px solid;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  height: 48px;
  border-radius: 24px;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0 3rem;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  cursor: pointer;
}
.all-bt._bt-blue {/*青ボタン*/
  background-color: var(--col-02);
  border: var(--col-02) 2px solid;
}
.all-bt._large {/*サイズ大*/
  height: 60px;
  border-radius: 30px;
  padding: 0 4rem;
}
.all-bt._large2 {/*サイズ大*/
  font-size: 1.8rem;
  height: 80px;
  border-radius: 40px;
  padding: 0 4rem;
}

.all-bt-white {
  background-color: #fff;
  border: #fff 2px solid;
  color: var(--col-02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  height: 50px;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0 3rem;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
._bt-txt {}
._bt-icon {
  display: block;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
._bt-icon.allow-wh-r {/*右矢印　白*/
  width: 8px;
  height: 8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  transform: rotate(45deg);
}
._bt-icon.allow-wh-blue {/*右矢印 青*/
  width: 8px;
  height: 8px;
  border-top: var(--col-02) 2px solid;
  border-right: var(--col-02) 2px solid;
  transform: rotate(45deg);
}
._bt-icon.mail {/*mail*/
  width: 20px;
  height: 20px;
}
._bt-icon.pdf-wh {/*pdf*/
  background: url("/images/icon_pdf_wh.svg") no-repeat center / contain;
  width: 20px;
  height: 20px;
  transition: .2s
}
._bt-icon.book-wh {
  background: url("/images/icon_book_wh.svg") no-repeat center / contain;
  width: 20px;
  height: 20px;
  transition: .2s
}
._bt-icon.open-win {
  background: url("/images/open_new.svg") no-repeat center / contain;
  width: 18px;
  height: 18px;
  transition: .2s;
  display: inline-block;
  position: relative;
}
._bt-icon.open-win-wh {
  background: url("/images/open_new_wh.svg") no-repeat center / contain;
  width: 18px;
  height: 18px;
  transition: .2s;
  display: inline-block;
  position: relative;
}
@media (hover: hover) {
  .bt-center {
    margin: 60px auto;
  }
  .all-bt:hover {
    background-color: #fff;
    color: var(--col-01);
  }
  .all-bt._bt-blue:hover {
    background-color: #fff;
    color: var(--col-02);
  }
  .all-bt:hover ._bt-icon.allow-wh-r {
    border-top: var(--col-01) 2px solid;
    border-right: var(--col-01) 2px solid;
    transform: rotate(45deg);
  }
  .all-bt-white:hover {
    background-color: rgba(255,255,255,0.8);
  }
  .all-bt:hover ._bt-icon.pdf-wh {
    background: url("/images/icon_pdf.svg") no-repeat center / contain;
  }
  .all-bt:hover ._bt-icon.book-wh {
    background: url("/images/icon_book_red.svg") no-repeat center / contain;
  }
  a:hover ._bt-icon.open-win {
    opacity: 0.6;
  }
  a:hover ._bt-icon.open-win-wh {
    background: url("/images/open_new_red.svg") no-repeat center / contain;
  }
  a._bt-blue:hover ._bt-icon.open-win-wh {
    background: url("/images/open_new_blue.svg") no-repeat center / contain;
  }
}

/* Link
--------------------------------------------------------*/
a.hv-op {
  transition: 0.2s;
}
@media (hover: hover) {
  a.hv-op:hover {
    opacity: 0.7;
  }
}

a.link-txt {
  color: var(--col-01);
  display: inline-block;
  text-decoration: underline;
}
@media (hover: hover) {
  a.link-txt {
    transition: 0.2s;
  }
  a.link-txt:hover {
    color: #ff3e3e;
  }
}

/* Text
--------------------------------------------------------*/
.all-txt {
  font-size: 1.6rem;
  font-feature-settings: "palt";
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 2;
}
.txt-left { text-align: left !important;}
.txt-right { text-align: right !important;}
.txt-center { text-align: center !important;}

/*大きく*/
.txt-larger {
  font-size: 1.2em;
  font-weight: normal;
}
/*boldで大きく*/
.txt-stronger {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.4
}

/*bold*/
.txt-b {
  font-weight: bold;
}
/*nomalで小さく*/
.txt-smaller {
  font-size: 0.85em;
  font-weight: normal;
}

/* List
--------------------------------------------------------*/
.basic-list {
  margin: 1em 0 1em 1.3em;
}
ul.basic-list li {
  list-style-type: disc;
  margin-bottom: 1em;
  line-height: 1.6
}
ol.basic-list li {
  list-style-type: decimal;
  margin-bottom: 1em;
  line-height: 1.6
}

.dl-list-01 {
  margin: 1em 0;
}
.dl-list-01 dt {/*輸入メーカー*/
  color: var(--col-02);
  display: flex;
  align-items: center;
  gap: 0 10px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.dl-list-01 dt ._lg {
  background-color: #EBECF4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  width: 1.5em;
  height: 1.5em;
  border-radius: 0.75em;
}
.dl-list-01 dd {
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* br 改行
--------------------------------------------------------*/
br.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  br.sp-only {
    display: none;
  }
  br.pc-only {
    display: block;
  }
}
/*改行コントロール*/
.break-word {/*このタグ内で文章を<wbr>で区切る*/
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Indent
--------------------------------------------------------*/
/*1文字インデント*/
.txt-indent {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.txt-indent span {
  display: inline-block;
  width: 1.2em;
  text-indent: 0;
}
/*インデントリスト*/
.indent-list {
  text-align: left;
}
.indent-list li {
  margin-bottom: 0.5em;
  text-indent: -1.2em;
  padding-left: 1.2em;
  line-height: 1.2;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}
.indent-list li span {
  display: inline-block;
  width: 1.2em;
  text-indent: 0;
  }

/* Clearfix
--------------------------------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0px;
  overflow: hidden;
}

/* Errorページ
--------------------------------------------------------*/
.error .article__main {
  margin: 70px 0;
}

.mb30 {
  margin-bottom: 30px;
}