/*
Theme Name: main
Theme URI: 
Description: 
Author: ailylab
Author URI: 
Version: 1.0.0
*/

img[src=""] {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 70%;
    border: 1px solid #eee;
}
img[src=""]:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 24px;
    white-space: nowrap;
    content: "※画像準備中※";
}

/****************************************
1.Setting
*****************************************/

/* ベースとなるカスタムプロパティ設定 */
:root {
  --font-size-base: 16px;
  --line-height-base: 28px;
  --color-main:#038FE1;
  --color-main-hover:#17A8FB;
  --color-point:#F78E00;
  --color-text:#282828;
  --space-4xs: 8px;     /* アイコン間、テキスト行間の最小スペース */
  --space-3xs: 16px;    /* ボタンpadding、細かい余白調整 */
  --space-2xs: 24px;    /* コンポーネント間、ブロック内padding */
  --space-xs: 32px;     /* コンポーネント外padding、カード内 */
  --space-sm: 40px;     /* セクション内の要素区切りなど */
  --space-md: 48px;     /* セクションやブロック内の標準余白 */
  --space-lg: 64px;     /* 小〜中セクションの上下padding */
  --space-base: 80px;   /* 1カラム幅と連動、基本の区切り感 */
  --space-xl: 96px;     /* セクション間、見出し間の余白に最適 */
  --space-2xl: 112px;   /* セクションpadding、CTA前の余白 */
  --space-3xl: 128px;   /* セクション上下padding（PC基準） */
  --space-4xl: 144px;   /* ファーストビュー下などに使う余白 */
  --space-5xl: 160px;   /* ページ中の大きな空白・視線切替 */
  --space-6xl: 176px;   /* セクション終端、LPP中の切り替え部分 */
  --space-7xl: 192px;   /* ヒーロー直後やフッター前など */
  --space-8xl: 208px;   /* ページ分割に近い演出や余白に */
  --space-9xl: 224px;   /* 極めて広い余白、視線誘導に効果的 */
}

html, body, div, span, a, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, em, img, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figcaption, figure, footer, header, menu, nav, section, time, video {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    box-sizing: border-box;
}

body {
    color: var(--color-text);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    font-family: "Noto Sans JP", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}

a {
    color: #359ddd;
}

a:hover {
    color: #76b6dd;
}

a[href="#none"] {
    color: #313131;
    text-decoration: none;
    pointer-events: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0px auto;
    -webkit-backface-visibility: hidden; 
    -ms-transform: translateZ(0); /* IE 9 */
    -webkit-transform: translateZ(0); /* Chrome, Safari, Opera */
    transform: translateZ(0);
}

/* Chromeで縮小したアイコン画像がぼやける現象への対策 */
img[src$=".png"],
img[src$=".gif"] {
    -webkit-backface-visibility: hidden;
}

p {
    line-height: 2;
}

p.paragraph:nth-of-type(n + 2) {
    margin: 1.5em 0px 0px;
}

figcaption {
    padding: 0.5em;
    text-align: center;
}

a:hover > figure > img {
    opacity: 0.8;
}

table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}
table th, table td {
    border: 1px solid #BCBCBC;
    text-align: left;
    padding: 10px 20px;
}
table th {
    background-color: #DBDBDB;
    font-weight: 500;
    text-align: center;
}
table td {
    font-size: 14px;
    font-weight: 400;
    word-break: break-word;
    background-color: #fff;
}
.wrap-table{
    overflow-x: auto;
}
@media screen and (max-width: 767.98px) {
    .tbl_wrapper {
        overflow-x: scroll;
    }
    .tbl_wrapper > table {
        width: 767px;
    }
    table th {
        font-size: 15px;
    }
    table td {
        font-size: 14px;
    }
}

address {
    font-style: normal;
}

.video_wrapper video {
    width: 100%;
}

ol.list,
ul.list {
    margin: 0px 0px 0px 1.5em;
}

p + ol.list,
p + ul.list {
    margin: 0.5em 0px 0px 1.5em;
}

ol.list + p,
ul.list + p {
    margin: 0.5em 0px 0px;
}

ol.list > li + li,
ul.list > li + li {
    margin: 1em 0px 0px;
}

ol.list > li > ul,
ul.list > li > ul {
    margin: 1em 0px 0px 1.5em;
}

ol.list > li > .box,
ul.list > li > .box {
    margin: 1em 0px 0px;
}

dl.list {
    border: 1px solid #dedede;
    border-top: none;
}

dl.list > dt,
dl.list > dd {
    padding: 1em;
    margin: 0px;
    border-top: 1px solid #dedede;
}

dl.list > dt {
    background-color: #ecf8fe;
    color: #231815;
    font-weight: bold;
}

.cf:after {
    display: block;
    clear: both;
    content: "";
}

.bw > span,
h1 > span,
h2 > span,
h3 > span,
h4 > span,
h5 > span,
h6 > span,
figcaption > span {
    display: inline-block;
}

@media screen and (max-width: 991px) {
    .pc {
        display: none !important;
    }
}
@media screen and (max-width: 767.98px) {
    .tb {
        display: none !important;
    }
}
@media screen and (min-width: 768px) {
    .mb {
        display: none !important;
    }
}

.center {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .pc_center {
        text-align: center;
    }
}

.right {
    text-align: right;
}

.em {
    font-size: 16px;
    font-weight: bold;
}

.if_wrapper {
    position: relative;
    padding-bottom: 56.25%;
}
.if_wrapper iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.form_step {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.form_step > li {
    display: block;
    position: relative;
    padding: 1em;
    width: 22%;
    border: 1px solid currentColor;
    font-size: 1.5vw;
    font-weight: bold;
    text-align: center;
    color: #3388dd;
}
.form_step > li:nth-of-type(n + 2) {
    margin: 0px 0px 0px 4%;
}
.form_step > li:nth-of-type(n + 2)::before {
    position: absolute;
    top: 50%;
    left: -1.5em;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid #3388dd;
    border-left: 2px solid #3388dd;
    transform: translateY(-50%) rotate(135deg);
    content: "";
}

.form_step > li.form_step_now{
    color: #fff;
    background-color: #3388dd;
}

@media print, (min-width: 992px) {
    .form_step > li {
        font-size: 18px;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 0;
    background: #F0F0F0;
    padding: 32px 0;
}

.pagination > a,
.pagination > span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 38px;
    height: 38px;
    margin: 0 0.5em ;
    border: 2px solid var(--color-main);
    background-color: #fff;
    font-weight: bold;
}

.pagination > a:link,
.pagination > a:visited,
.pagination > a:active,
.pagination > a:hover {
    color: var(--color-main);
    text-decoration: none;
}
.pagination > .prev,
.pagination > .next {
    border: 1px solid transparent;
    background-color: transparent;
}
.pagination > .prev:before,
.pagination > .next:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.5em;
    height: 0.5em;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
}
.pagination > .prev:before {
    transform: translateX(-50%) translateY(-50%) rotate(225deg);
}
.pagination > .next:before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.pagination > .current {
    background-color: var(--color-main);
    color: #fff;
}

.link_prev,
.link_next {
    position: relative;
    padding: 0px 1em;
}

/*.link_prev {
    float: left;
}
.link_next {
    float: right;
}
*/
.link_prev:before,
.link_next:after {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-main);
    border-right: 2px solid var(--color-main);
    content: "";
}
.link_prev:before {
    left: 16px;
    transform: translateY(-50%) rotate(225deg);
}
.link_next:after {
    right: 16px;
    transform: translateY(-50%) rotate(45deg);
}
.btn_link,
.link_prev,
.link_next{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 26px 0 32px;
    text-decoration: none;
    position: relative;
    border-radius: 50px;
    border: solid 2px var(--color-main);
    color: var(--color-text);
    background-color: #fff;
    width: 25%;
    height: 56px;
    max-width: 230px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center    ;
}
.wrap-link-prev-next{
    background-color: #F0F0F0;
    height: 114px;
    position: relative;
}
.link_prev_next{
    display: flex;
    justify-content: space-between;
}
.btn_link {
    position: absolute;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    inset: 0;
    margin: auto;
    max-width: 269px;
}
.btn_link::after {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-main);
    border-right: 2px solid var(--color-main);
    content: "";
    right: 16px;
    transform: translateY(-50%) rotate(45deg);
}
.btn_link:hover,
.link_prev:hover,
.link_next:hover{
    color: var(--color-text);
    opacity: 0.7;
}
@media screen and (max-width: 991px) {
    .wrap-link-prev-next {
        height: 90px;
    }
    .btn_link, .link_prev, .link_next {
        width: 120px;
        height: 50px;
        font-size: 12px;
        margin: 20px 0 0;
    }
    .btn_link{
        width: 180px;
        margin: 20px auto;
    }
    .link_prev_next {
        padding: 0 10px;
    }
}
@media screen and (max-width: 600px) {
    .wrap-link-prev-next {
        height: 75px;
    }
    .link_prev, .link_next {
        font-size: 0;
        width: 40px;
        height: 40px;
    }
    .btn_link{
        height: 40px;
        width: 170px;
    }
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 1em 0px;
    list-style: none;
}
.breadcrumb > li {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: #7B7B7B;
}
.breadcrumb > li a{
    color: #7B7B7B;
    text-decoration: none;
}
.breadcrumb > li:nth-of-type(n + 2) {
    padding: 0px 0px 0px 2.5em;
}
.breadcrumb > li:nth-of-type(n + 2):before {
    position: absolute;
    top: 50%;
    left: 1em;
    width: 0.5em;
    height: 0.5em;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid #7B7B7B;
    border-top: 2px solid #7B7B7B;
    content: "";
}

.list_slash {
    list-style: none;
}

.list_slash > li {
    display: inline-block;
    position: relative;
}
.list_slash > li:not(:last-child)::after {
    margin: 0px 0.5em;
    content: "/";
}
@media screen and (max-width: 600px) {
    .breadcrumb {
        padding: 0.5em 0px;
    }
    .breadcrumb > li {
        font-size: 12px;
    }
}
/****************************************
2. Layout 
*****************************************/
.mt1em {
    margin-top: 1em;
}

.mt30 {
    margin-top: 30px;
}

.mt60 {
    margin-top: 60px;
}

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

div[class="col"],
div[class^="col-"] {
    margin-top: 30px;
}

.row.no_mt {
    margin-top: -30px;
}

.container {
    width: 100%;
        padding-right: 20px;
    padding-left: 20px;
}
@media print, (min-width: 992px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 576px) {
    .container {
        max-width: 100%;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 100%;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 100%;
    }
}
@media (min-width: 1100px) {
    .container {
        max-width: 100%;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1208px;
    }
}

.container_s {
    padding: 0px 15px;
    width: 100%;
    margin: auto;
}
/*@media print, (min-width: 992px) {
    .container_s {
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }
}*/
@media (min-width: 1000px) {
    .container_s {
        padding: 0px;
        max-width: 1000px;
    }
}

@media print, (min-width: 768px) {
    .col2 {
        display: flex;
        padding: 0px 0px 60px;
    }
    .col2_main {
        order: 2;
        width: 75%;
    }
    .col2_side {
        order: 1;
        margin: 0px 20px 0px 0px;
        width: calc(25% - 20px);
    }
}

@media screen and (max-width: 767.98px) {
    .col2_side {
        margin: 30px 0px 0px;
    }
}
@media screen and (max-width: 600px) {
    .container_s {
        padding: 0px 0;
    }
}


/* 各フォントサイズとline-heightのセット */
.fs-12 {
  line-height: 20px;
  font-size:clamp(10px, 10 / 375 * 100vw ,12px);
  line-height: 1.67;  
}
.fs-14 {
  line-height: 24px;
  font-size:clamp(12px, 12 / 375 * 100vw ,14px);
  line-height: 1.71;  
}
.fs-16 {
  line-height: 28px;
  font-size:clamp(15px, 15 / 375 * 100vw ,16px);
  line-height: 1.75;  
}
.fs-18 {        /*追加*/
  line-height: 36px;
  font-size:clamp(16px, 16 / 375 * 100vw ,18px);
  line-height: 1.8;
}
.fs-20 {
  line-height: 32px;
  font-size:clamp(18px, 18 / 375 * 100vw ,20px);
  line-height: 1.6;  
}
.fs-24 {
  line-height: 36px;
  font-size:clamp(20px, 20 / 1000 * 100vw ,24px);
  line-height: 1.5;
}
.fs-32 {
  line-height: 48px;
  font-size:clamp(24px, 24 / 1000 * 100vw ,32px);
  line-height: 1.5;  
}
.fs-36 {        /*追加*/
  line-height: 52px;
  font-size:clamp(22px, 22 / 1000 * 100vw ,36px);
  line-height: 1.3;  
}
.fs-40 {
  line-height: 56px;
  font-size:clamp(30px, 30 / 1000 * 100vw ,40px);
  line-height: 1.4;  
}
.fs-48 {
  line-height: 64px;
  font-size:clamp(32px, 32 / 1000 * 100vw ,48px);
  line-height: 1.33;  
}
.fs-56 {
  font-size:clamp(26px, 26 / 375 * 100vw ,56px);
  line-height: 1.29;  
}
.fs-64 {
  font-size:clamp(46px, 46 / 1000 * 100vw ,64px);
  line-height: 1.25;
}
.fs-72 {
  font-size:clamp(26px, 26 / 375 * 100vw ,72px);
  line-height: 1.22;
}
.fs-80 {
  line-height: 96px;
  font-size:clamp(26px, 26 / 375 * 100vw ,80px);
  line-height: 1.2;  
}
@media screen and (max-width: 767px) {
    .fs-24 {
        font-size:clamp(16px, 16 / 375 * 100vw ,20px);
    }
    .fs-32 {
       font-size:clamp(20px, 20 / 400 * 100vw ,32px);
    }
    .fs-36 {        /*追加*/
        font-size:clamp(18px, 18 / 375 * 100vw ,36px);
    }
    .fs-40 {
       font-size:clamp(24px, 24 / 375 * 100vw ,28px);
    }
    .fs-48 {
       font-size:clamp(24px, 24 / 375 * 100vw ,32px);
    }
    .fs-64 {
        font-size:clamp(32px, 32 / 450 * 100vw ,64px);
    }
}



/***************
    共通設定 
****************/
.btn-recruit,.btn-doc,.btn-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 228px;
    margin: 0;
    padding: var(--space-3xs);
    border: none;
    border-radius: 50px;
    background-color: var(--color-main);
    color: #fff;
    font-size:clamp(16px, 16 / 767 * 100vw ,20px);
    line-height: 1.2;
    transition: 0.3s;
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .fv-cta{
        .btn-recruit,.btn-doc,.btn-contact{
            width: clamp(148px, 39vw ,210px);
            padding:  clamp(11.5px, 2.2vw ,20px);
            font-size:clamp(12px, 12 / 375 * 100vw ,16px);
        }
    }
    .btn-recruit,.btn-doc,.btn-contact{
        font-size:16px;
    }
}

@media screen and (max-width: 375px) {
    body:not(.home)  .fv-cta{
        flex-direction: column;
        margin-top: 28px;
    }
}
.header .btn-recruit{
    border: solid 2px #fff;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    width: 211px;
    height: 48px;
}
.header .btn-recruit::before {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    content: '';
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216.35%22%20height%3D%2216.35%22%20viewBox%3D%220%200%2016.35%2016.35%22%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip-path%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_63%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2063%22%20width%3D%2216.35%22%20height%3D%2216.35%22%20fill%3D%22none%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_24%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2024%22%20transform%3D%22translate(0%200)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_23%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2023%22%20transform%3D%22translate(0%200)%22%20clip-path%3D%22url(%23clip-path)%22%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_2%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%202%22%20cx%3D%227.561%22%20cy%3D%227.561%22%20r%3D%227.561%22%20transform%3D%22translate(0.613%200.614)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_3%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%203%22%20cx%3D%222.047%22%20cy%3D%222.047%22%20r%3D%222.047%22%20transform%3D%22translate(6.127%204.006)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_47%22%20data-name%3D%22%E3%83%91%E3%82%B9%2047%22%20d%3D%22M11.749%2C11.792a4.879%2C4.879%2C0%2C0%2C0-8.587%2C0%22%20transform%3D%22translate(0.719%202.1)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
    background-size: contain;
    background-repeat: no-repeat;
}


/*資料請求*/
.header .btn-doc{
    font-size: 16px;
    width: 211px;
    height: 48px;
}
.btn-doc::before {
    width: 17px;
    height: 21px;
    margin-right: 8px;
    content: '';
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213.238%22%20height%3D%2216.889%22%20viewBox%3D%220%200%2013.238%2016.889%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_21%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2021%22%20transform%3D%22translate(1.224%200)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_20%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2020%22%20transform%3D%22translate(-1.224%200)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_44%22%20data-name%3D%22%E3%83%91%E3%82%B9%2044%22%20d%3D%22M4.608.5.5%2C4.9V15.169H12.4V.5Z%22%20transform%3D%22translate(0%200.606)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_45%22%20data-name%3D%22%E3%83%91%E3%82%B9%2045%22%20d%3D%22M4.911.826V4.756H.558%22%20transform%3D%22translate(0.189%200.812)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_62%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2062%22%20width%3D%2213.238%22%20height%3D%2216.889%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%20%3Cline%20id%3D%22%E7%B7%9A_1%22%20data-name%3D%22%E7%B7%9A%201%22%20x2%3D%226.214%22%20transform%3D%22translate(2.277%209.249)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Cline%20id%3D%22%E7%B7%9A_2%22%20data-name%3D%22%E7%B7%9A%202%22%20x2%3D%226.214%22%20transform%3D%22translate(2.277%2012.281)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
    background-size: contain;
    background-repeat: no-repeat;
}
.header .btn-doc::before {
    width: 13px;
    height: 17px;
}

/*お問い合わせ*/
.btn-contact {
    background-color: var(--color-point);
}
.btn-contact::before {
    width: 25px;
    height: 19px;
    margin-right: 8px;
    content: '';
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_17%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.654%22%20height%3D%2218.549%22%20viewBox%3D%220%200%2024.654%2018.549%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_60%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2060%22%20width%3D%2220.186%22%20height%3D%2215.496%22%20transform%3D%22translate(3.437%201.054)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_42%22%20data-name%3D%22%E3%83%91%E3%82%B9%2042%22%20d%3D%22M.695.5%2C7.921%2C7.81%2C15.146.5%22%20transform%3D%22translate(5.609%203.659)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_61%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2061%22%20width%3D%2224.654%22%20height%3D%2218.549%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E');
    background-size: contain;
    background-repeat: no-repeat;
}
.btn-contact.center{
    margin: var(--space-lg) auto 0;
}

/* ボタン */
.common-btn-blue,.common-btn-border{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 211px;
    margin: var(--space-sm) 0 0;
    padding: 13px;
    border: 1px solid var(--color-main);
    border-radius: 50px;
    background-color:  var(--color-main);
    color: #fff;
    font-size:clamp(16px, 16 / 500 * 100vw ,18px);
    text-decoration: none;
    position: relative;
    z-index: 1;
}
.common-btn-blue::after,
.common-btn-border::after  {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    position: absolute;
    top: 48%;
    right: 13%;
    transform: rotate(45deg) translateY(-50%);
}
.common-btn-border{
    font-size: 16px;
    padding: 10px;
    border: 1px solid #fff;
    background-color:  transparent;
}

.common-btn-border2{
    border: solid 2px var(--color-main);
    color: var(--color-text);
    background-color: #fff;
    font-weight: bold;
    width: 96%;
    max-width: 376px;
    padding: 13px;
    font-size: 16px;
    margin: auto;
}
.common-btn-border2::after
 {
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-main);
    border-right: 2px solid var(--color-main);
    top: 48%;
    right: 23px;
}
.common-btn-border2:hover{
    color: var(--color-text);
}

.common-btn-blue.center{
    margin: var(--space-lg) auto 0;
}
.common-btn-blue.wide{
    width: fit-content;
    padding-left: 50px;
    padding-right: 64px;
    margin-top: 40px;
}
.common-btn-blue.wide::after{
    right: 28px;
}


.common-btn-maru{
    text-decoration: none;
    position: relative;
    aspect-ratio: 1 / 1;
    width: 44px;
    height: auto;
    border-radius: 50%;
    border: solid #fff 2px;
    background-color: transparent;
    display: block;
}
.common-btn-maru::after  {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    position: absolute;
    top: 47%;
    right: 50%;
    transform: rotate(45deg) translateY(-50%);
}
.common-btn-maru.blue{
    color: #fff;
    background-color: var(--color-main);
    border: none;
    width: 32px;
}
@media screen and (max-width: 767px) {
    .common-btn-blue.center{
        margin: var(--space-sm) auto 0;
        font-size: 16px;
    }
}
/* 見出し：左に縦線 */
.heading-left-bar {
    font-weight: bold;
    padding: .1em .5em;
    border-left: 2px solid var(--color-text);
    margin-bottom: 30px;
    white-space: nowrap;
}
.heading-left-bar::before {
    display: block;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.0;
    letter-spacing: .02em;
    content: attr(data-label);
    text-transform: uppercase;
    color: var(--color-main);
}
.heading-left-bar.white {
    border-left: 2px solid #fff;
    color: #fff;
}
.heading-left-bar.white::before {
    color: #fff;
}
.heading-left-bar .big{
    font-size: 133%;
}

/* 見出し：下に２色の線（青がセンター） */
.heading-bottom-bar{
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-2xs);
    border-bottom: solid 2px #CCCCCC;
    position: relative;
    text-align: center;
    font-weight: bold;
}
.heading-bottom-bar::after{
    content: "";
    display: block;
    width: 148px;
    height: 4px;
    background-color: var(--color-main);
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
    .heading-bottom-bar{
        margin-bottom: var(--space-xs);
    }
}
/* 見出し：下に２色の線（青が左端） */
.heading-bottom-bar2{
    margin-bottom: var(--space-xs);
    padding-bottom: var(--space-3xs);
    border-bottom: solid 2px #CCCCCC;
    position: relative;
    font-weight: bold;
}
.heading-bottom-bar2::after{
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--color-main);
    position: absolute;
    bottom: -2px;
    left: 0;
}


/* 見出し：下に1色の線（青が左端） */
.heading-bottom-bar3{
    margin-bottom: var(--space-xs);
    padding-bottom: var(--space-4xs);
    position: relative;
    font-weight: bold;
}
.heading-bottom-bar3::after{
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--color-main);
    position: absolute;
    bottom: -2px;
    left: 0;
}

/* 見出し：下に1色の線（オレンジ下線） */
.heading-bottom-bar4{
    margin-bottom: var( --space-lg);
    position: relative;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: var(--color-point);
    text-decoration-thickness: 4px;

    text-underline-offset: 8px;
    text-align: center;
    line-height: 2;
}
.heading-bottom-bar4 span{
    text-decoration: underline;
    text-decoration-color: var(--color-point);
    text-decoration-thickness: 4px;

}
@media screen and (max-width: 767px) {
    .heading-bottom-bar4{
        margin-bottom: var( --space-xs);
        font-size: clamp(18px, 18 / 375 * 100vw, 24px);
        text-decoration: underline;
        text-decoration-color: var(--color-point);
        text-decoration-thickness: 3px;
    }
    .heading-bottom-bar4 span{
        text-decoration: underline;
        text-decoration-color: var(--color-point);
        text-decoration-thickness: 3px;
    }
}

/* 見出し：下に1色の線（青がセンター） */
.heading-bottom-bar5{
    padding-bottom: 12px;
    position: relative;
    font-weight: bold;
    text-align: center;
}
.heading-bottom-bar5::after{
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--color-main);
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}

.line-blue{
    color: var(--color-main);
    text-underline-offset: 4px;
    text-decoration: underline;
    text-decoration-color: var(--color-main);
    text-decoration-thickness: 1px;


    font-weight: bold;
}

.pc-none{
    display: none ;
}

.label-point{
    color: var(--color-main);
    background-color: #fff;
    border-radius: 50px;
    border: solid 2px var(--color-main);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 106px;
    height: 38px;
    font-weight: bold;
    margin: 0 auto var( --space-3xs);
}

/*手描き文字*/
.handwriting{
    font-family: Oooh Baby, cursive;
    font-size:clamp(48px, 48 / 700 * 100vw ,129px);
    line-height: 1.1;
    color: rgb(110, 110, 110,0.08);
}

/*帯文字*/
.obi {
    display: flex;
    flex-direction: column;
    gap: var(--space-4xs);
    font-size:clamp(18px, 18 / 1000 * 100vw ,24px);
}
.obi span {
    color: #fff;
    background-color: var(--color-main); 
    padding: 3px 12px;
    width: fit-content;
    font-weight: bold;
}
.obi.white span {
    color: var(--color-main);
    background-color: #fff; 
}
@media screen and (max-width: 1000px) {
    .obi {
        font-size:clamp(14px, 14 / 500 * 100vw ,18px);
    }
}


.step{
    color: #fff;
    background-color: var(--color-main);
    padding: 3px 12px;
    width: fit-content;
    font-family: poppins, sans-serif;
    font-weight: 500;
    font-size:clamp(65px, 65 / 1000 * 100vw ,80px);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 134px;
    height: 164px;
}
.step span{
    font-size:clamp(10px, 10 / 500 * 100vw ,16px);
    display: block;
    text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
    .step {
        padding: 26px 0.3em 20px;
        width: auto;
        height: auto;
        min-width: 80px;
        min-height: 80px;
    }
}
@media screen and (max-width: 900px) {
    .step {
        font-size:clamp(52px, 52 / 500 * 100vw ,60px);
    }
}

/* カード */
.card{
    display: block;
    background-color: #fff;
    padding: 20px 20px 24px;
    width: 328px;
    height: auto;
    text-decoration: none;
    position: relative;
    margin-left: 10px;
}
.card .img{
    display: block;
    width: 280px;
    height: 178px;
    object-fit: cover;
}
.card p{
    color: var(--color-text);
}
.card .material{
    color: #fff;
    background-color: var(--color-main);
    padding: 2px 20px;
    width: fit-content;
    margin: -16px 0 var(--space-2xs) -28px;
    position: relative;
    z-index: 1;
}
.card .name{
    font-weight: 400;
    margin-bottom: var(--space-sm);
    height: 42px;
}
.card .more{
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding: 10px ;
    border-top: dashed 1px #C4C4C4;
    border-bottom: dashed 1px #C4C4C4;
}

/*メインビジュアル設定*/
.fv{
    position: relative;
    overflow: hidden;
    height:904px;
}
.fv-img {
    position: relative;
    height: 100%;
}
.fv-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
}
.fv-img video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv .shape1{
    content: "";
    background: url( "./images/top/fv-shape1.png" )  no-repeat center center / contain;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width:1178px;
    height: 227px;
}
.fv .shape2{
    content: "";
    background: url( "./images/top/fv-shape2.png" )  no-repeat center center / contain;
    position: absolute;
    bottom: 0px;
    left: 140px;
    width:442px;
    height: 430px;
}
.fv .shape3{
    content: "";
    background: url( "./images/top/fv-shape3.png" )  no-repeat center center / cover;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    width:418px;
    height: 100%;
}
.fv-cta{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xs);
    margin-top: var(  --space-md);
}
.wrap-fv-copy{
    position: absolute;
    top: 33.8%;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
}
.fv-copy,.fv-copy-sub{
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
}
.fv-copy{
    margin-bottom: var(--space-2xs);
    font-size:clamp(48px, 48 / 1000 * 100vw ,72px);
}
.fv-copy-sub{
   font-size:clamp(16px, 16 / 1000 * 100vw ,24px);
   white-space: wrap;
}
span.break{
   display: inline-block;
}

@media screen and (max-width: 1000px) {
    .fv-copy{
        font-size:clamp(26px, 26 / 500 * 100vw ,48px);
        margin-bottom: 14px;
    }
    .fv-copy-sub{
        font-size:clamp(14px, 14 / 500 * 100vw ,16px);
        font-weight: 400;
    }
}

@media screen and (max-width: 767px) {
    .fv{
        height: clamp(315px, 84vw , 500px );
    }
    .fv-img {
        height: 100%;
    }

    .wrap-fv-copy{
        top: max(60px, 18vw );;
    }

    .fv .shape1 {
        background-size: cover;
        width: 60vw;
        height: auto;
        aspect-ratio: 1178 / 227;
    }
    .fv .shape2 {
        background-size: cover;
        aspect-ratio: 442 / 430;
        width: 25vw;
        height: auto;
        left: 17vw;
    }
    .fv .shape3 {
        background-size: cover;
        width: 40%;
    }
}

@media screen and (max-width: 650px) {
     .fv .shape2 {
        left: 14vw;
    }
}
.home article{
    overflow-x: hidden;
}
/* Aizakiについて*/
.section-fv-about {
    position: relative;
    padding: 100px 0;
    margin-bottom: 185px;
}
.section-fv-about .wrap{
    display: flex;
    position: relative;
    z-index: 1;
    width: calc(100vw - 80px);
    padding-right: 63px;
}
.section-fv-about .obi.vertical {
  writing-mode: vertical-rl; /* 縦書き（右から左） */
  text-orientation: mixed;
    gap: 18px;
}

.section-fv-about .obi.vertical span {
    padding: 12px 2px; 
    height: fit-content;
    font-size:clamp(16px, 16 / 1000 * 100vw ,28px);
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.section-fv-about .heading-left-bar{
    white-space: nowrap;
}
.section-fv-about .box-img{
    width: 42%;
    margin-left: 44px;
    z-index: 1;
}
.section-fv-about .box-text{
    width: calc(7.5vw + 29%);
    margin-left: 7.5vw;
    margin-bottom: 65px;
    padding-top: 132px;
    z-index: 1;
}
.section-fv-about .box-label{
    width: auto;
    margin-left: 3.8vw;
    padding-top: 34px;
    z-index: 1;
}
.section-fv-about::before{
    content: "";
    background: url( "./images/top/about-bg.jpg" )  no-repeat center center / cover;
    position: absolute;
    top: 0px;
    left: 0px;
    width: calc(100vw - 80px);
    height: 100%;
}
.section-fv-about .wrap .shape-blue{
    position: absolute;
    clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
    background-color: var(--color-main);
    top: 32px;
    left: 0;
    aspect-ratio: 781/464;
    width: 48%;
    height: auto;
    max-height: 500px;
    z-index: 0;
}
.section-fv-about .wrap .shape-white{
    position: absolute;
    clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
    background-color: #fff;
    top: 68px;
    left: 400px;
    aspect-ratio: 1091/622;
    width: 67%;
    height: auto;
    max-height: 622px;
    z-index: 0;
}
.section-fv-about .shape-gray{
    position: absolute;
    clip-path: polygon(0 0, 100% 0%, 74% 100%, 0% 100%);
    background-color: rgb(108, 108, 108, 0.08);
    top: 0;
    right: 30%;
    aspect-ratio: 1200/905;
    width: auto;
    height: 100%;    
    z-index: 0;
}

.section-fv-about .handwriting{
    position: absolute;
    bottom: -90px;
    right: 60px;
    z-index: 1;
    transform: rotate(-7deg);
}
.section-fv-about .box-img {
    position: relative;
}
.section-fv-about .box-img .parts-main{
    margin: 0;
}
.section-fv-about .box-img .parts{
    position: absolute;
    top: 20.6vw;
    top: min(20.6vw, 360px);
    left: 31.5vw;
    left: min(31.5vw, 560px);
    width: auto;
    height: 11.2vw;
    height: min(11.2vw, 280px);
    aspect-ratio: 279 / 403;    
    object-fit: contain;
    z-index: 1;
}
@media screen and (max-width: 1300px) {
    .section-fv-about::before{
        width: 100vw;
    }
    .section-fv-about .wrap {
        padding-right: 24px;
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .section-fv-about .wrap {
        flex-direction: column;
        padding-right: 0;
    }
    .section-fv-about .box-label {
        margin-left: 0;
        padding-top: 0;
        position: absolute;
        top: 0;
        right: 34px;
        right: 130px;
    }
    .section-fv-about .obi.vertical span {
        font-size: clamp(16px, 16 / 500 * 100vw, 28px);
    }
    .section-fv-about .box-img {
        width: 53%;
    }
    .section-fv-about .box-text {
        width: 100%;
        margin-left: 0;
        margin-bottom: 0;
        padding: 40px 40px;
        position: relative;
    }
    .section-fv-about .wrap .box-text .shape-white {
        display: block;
        width: 110%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }
    .section-fv-about .wrap .shape-white.sp-none{
        display: none;
    }

    .section-fv-about .box-img .parts{
        top: 29.6vw;
        left: 46vw;
        width: auto;
        height: 20vw;
    }

}
@media screen and (max-width: 767px) {
    .section-fv-about{
        padding-top: 48px;
    }
    .section-fv-about .handwriting {
        font-size: clamp(48px, 48 / 375 * 100vw, 100px);
    }
    .section-fv-about .box-label {
        right: 130px;
    }
    .section-fv-about .obi.vertical span {
        font-size: 16px;
    }
    .section-fv-about .box-img {
        margin-left: 20px;
    }
    .section-fv-about .wrap .shape-blue {
        aspect-ratio: 781 / 724;
    }
}


.deco{
    position: absolute;
    top: 0px;
    left: 80px;
    z-index: -1;
    font-size:clamp(100px, 100 / 1000 * 100vw ,165px);
    font-weight: 600;
    font-family: poppins, sans-serif;
    text-transform: uppercase;
    line-height: 1;
    color: rgb(0, 0, 0,0.07);
}
@media screen and (max-width: 767px) {
    .deco {
         font-size:clamp(70px, 70 / 500 * 100vw ,100px);
    }
}

/*スクロール*/

.scroll_down{
  position:absolute;
  bottom: 0px;
  right: 40px;
}

.scroll_down a{
  position: absolute;
  left: -13px;
  bottom: 67px;
  color: #fff;
  font-family: poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:#fff;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:55px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:2px;
  height: 55px;
  background:#fff;
}
@media screen and (max-width: 767px) {
    .scroll_down{
        display: none;
    }
}


/*スライダー*/
.section-fv-slider .bx-wrapper {
    max-width: none !important;
}

/*トップページ：事業内容*/
.section-fv-business{
    margin-top: var(--space-2xl);
    position: relative;
}
.section-fv-business .deco{
    color: rgb(0, 0, 0,0.07);
}
.section-fv-business .wrap-heading{
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: center;
    margin-left: var(--space-xl);
    padding-top: var(--space-3xl);
}

.section-fv-business .wrap {
    position: relative;
    padding: var(--space-xl) 0 ;
    width: 90vw;
    margin-left: auto;
}
.section-fv-business .wrap .box{
    position: relative;
    width: 100%;
    height: 520px;
    color: #fff;
    padding-left: 27%;
    padding-top: var(--space-2xl);
    background-size: cover;
    border: solid 1px #fff;
    overflow: hidden;
}
.section-fv-business .wrap .box a{
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}
.section-fv-business .wrap .box a:hover{
    opacity: 1;
}
.section-fv-business .wrap .box a:hover .common-btn-border{
    background-color: var(--color-main);
    border: none;
}
.section-fv-business .wrap .box .common-btn-border{
    transition: 0.3s;
}

.section-fv-business .wrap .box .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.5s ease;
}
.section-fv-business  .box:hover .bg-img {
  transform: scale(1.1);
}

.section-fv-business .wrap .box03{
    padding-left: 12%;
}
.section-fv-business .wrap .box04{
    padding-left: 12%;
}
.section-fv-business .wrap .box a::before{
    content: "";
    clip-path: polygon(0 0, 100% 0%, 50% 100%, 0% 100%);
    width: 20%;
    height: 100%;
    background-color: rgb(255, 255, 255,0.16);
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}
.section-fv-business .wrap .box03 a::before,
.section-fv-business .wrap .box04 a::before{
    clip-path: polygon(0 0, 100% 0%, 46% 100%, 0% 100%);
    width: 36%;
}
.section-fv-business .wrap .box03 a::before{
    background-color: rgb(255, 255, 255,0.10);
}
.section-fv-business .wrap .box04 a::before{
    background-color: rgb(255, 255, 255,0.17);
}

.section-fv-business .wrap .box .box-text{
    max-width: 630px;
    width: 65%;
    position: relative;
    z-index: 1;
}
.section-fv-business .wrap .box03 .box-text,
.section-fv-business .wrap .box04 .box-text{
    max-width: 446px;
    width: 78%;
}

.section-fv-business .in-wrap{
    display: flex;
}

.section-fv-business .wrap .box .box-text h3{
    margin-bottom: 28px;
    font-weight: bold;
}
.section-fv-business .wrap .box .step{
    position: absolute;
    top: 0;
    left: 13%;
    z-index: 1;
}
.section-fv-business .wrap .box03 .step,
.section-fv-business .wrap .box04 .step{
    left: 0;
    font-size: clamp(52px, 52 / 500 * 100vw, 60px);
    width: 106px;
    height: 130px;
}
.section-fv-business .wrap .box03 .step span,
.section-fv-business .wrap .box04 .step span{
    font-size: 13px;
}

.section-fv-business .wrap .box .handwriting{
    position: absolute;
    bottom: 70px;
    left: 46%;
    z-index: 1;
    color: rgb(255, 255, 255,0.2);
    font-size:clamp(50px, 50 / 1000 * 100vw ,72px);
    transform: rotate(-11deg);
}
.section-fv-business .wrap .box03 .handwriting,
.section-fv-business .wrap .box04 .handwriting{
    font-size: 44px;
    bottom: 90px;
    left: 55%;
}


.section-fv-business .wrap .box .parts01{
    position: absolute;
    top: 86px;
    right: 4.8vw;
    width: auto;
    height: min(13vw,220px);
    aspect-ratio: 285/476;
    object-fit: contain;
    z-index: 1;
}
.section-fv-business .wrap .box .parts02{
    position: absolute;
    top: 174px;
    right: 6.5vw;
    width: min(14.6vw,245px);
    height: auto;
    aspect-ratio: 421/541;
    object-fit: contain;
    z-index: 1;
}
.section-fv-business .wrap .box02 .parts01{
    position: absolute;
    top: 130px;
    right: 16.6vw;
    width: auto;
    height: min(15vw,251px);
    aspect-ratio: 312/513;
    object-fit: contain;
}
.section-fv-business .wrap .box02 .parts02{
    position: absolute;
    top: 105px;
    right: 6.2vw;
    width: min(12.3vw,207px);
    height: auto;
    aspect-ratio: 420/678;
    object-fit: contain;
}
.section-fv-business .shape-gray1,
.section-fv-business .shape-gray2{
    position: absolute;
    top: 270px;
    left: 0;
    z-index: -1;
}
.section-fv-business .shape-gray1{
    width: 95%;
    height: 100%;
    z-index: -1;
    background-color: #EDEDED;
}
.section-fv-business .shape-gray2{
    width: 56%;
    height: 100%;
    z-index: -1;
    background-color: #F4F4F4;
    clip-path: polygon(0 0, 100% 0%, 46% 100%, 0% 100%);
}
.section-fv-business .common-btn-border{
    position: relative;
    z-index: 1;
}
.section-fv-business .common-btn-border:hover{
    background-color: var(--color-main);
    border: solid 1px var(--color-main);
    opacity: 1;
}



@media screen and (max-width: 1200px) {
    .section-fv-business .wrap .box .step{
        left: 4%;
    }
    .section-fv-business .wrap .box {
        padding-left: 22%;
    }
    .section-fv-business .in-wrap .box {
        padding-left: 14%;
        padding-right: 24px;
    }
    .section-fv-business .in-wrap .box .box-text {
        width: 100%;
    }
}
@media screen and (max-width: 991px) {
    .section-fv-business .deco {
        left: calc(var(--space-sm) - 10px);
    }
    .section-fv-business .wrap-heading {
        justify-content: space-between;
        margin-left: 0;
        padding: 128px 40px 0;
         gap: 30px;
    }
    .section-fv-business .shape-gray1, 
    .section-fv-business .shape-gray2 {
        top: 280px;
    }
    .section-fv-business .in-wrap  {
        flex-direction: column;
    }
    .section-fv-business .in-wrap .box {
        padding-left: 22%;
    }
    .section-fv-business .in-wrap .box .box-text h3 {
        font-size: clamp(32px, 32 / 1000 * 100vw, 48px);
    }
    .section-fv-business .wrap .box01 a::before,
    .section-fv-business .wrap .box02 a::before{
        clip-path: polygon(0 0, 100% 0%, 46% 100%, 0% 100%);
        width: 36%;
    }
}
@media screen and (max-width: 767px) {
    .section-fv-business .wrap-heading {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    .section-fv-business .wrap {
        width: calc(100vw - 24px);
        padding-top: 64px;
    }
    .section-fv-business .wrap .box {
        padding: 60px 32px 40px max(22%,100px);
    }
    .section-fv-business .wrap .box .box-text{
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 368px;
        max-height: unset;
    }
    .section-fv-business .common-btn-border{
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }
    .section-fv-business .wrap .box .parts01 {
        margin: 0;
        top: unset;
        right: unset;
        left: 8vw;
        bottom: 130px;
        height: 20vw;
        min-height: 110px;
    }
    .section-fv-business .wrap .box .parts02 {
        margin: 0;
        top: unset;
        right: unset;
        left: 19vw;
        bottom: 120px;
        width: 20vw;
        min-width: 100px;
    }
    .section-fv-business .wrap .box .step {
        left: 0;
        width: 17.5vw;
        height: 17.5vw;
    }
    .section-fv-business .wrap .box .handwriting{
        position: absolute;
        bottom: 155px;
        left: 46%;
        font-size:clamp(24px, 24 / 375 * 100vw ,50px);
    }

    .section-fv-business .wrap .box02 .parts01 {
        left: unset;
        right: 8vw;
        bottom: 120px;
    }
    .section-fv-business .wrap .box02 .parts02 {
        left: unset;
        right: 15vw;
        bottom: 62px;
        width: 22vw;
        min-width: 130px;
    }
    .section-fv-business .wrap .box02 .handwriting,
    .section-fv-business .wrap .box04 .handwriting{
        left: 14%;
    }
    .section-fv-business .wrap .box .box-text h3 {
        font-size: clamp(20px, 20 / 375 * 100vw, 34px);
    }
    .section-fv-business .shape-gray1, 
    .section-fv-business .shape-gray2 {
        top: 360px;
    }
    .section-fv-business .shape-gray2 {
        width: 56%;
        height: 40%;
        clip-path: polygon(0 0, 100% 0%, 0% 100%, 0% 100%);
    }
}

@media screen and (max-width: 600px) {
    .section-fv-business .wrap .box {
        height: 420px;
        padding: 32px 20px 40px max(22%,100px);
    }

    .section-fv-business .in-wrap .box {
        height: 360px;
    }
    .section-fv-business .wrap .box .box-text h3 {
        font-size: clamp(20px, 20 / 420 * 100vw, 28px);
    }
    .section-fv-business .wrap .box .box-text p {
        font-size: clamp(13px, 13 / 420 * 100vw, 18px);
    }

    .section-fv-business .wrap .box .parts01 {
        bottom: 110px;
    }
    .section-fv-business .wrap .box .parts02 {
        bottom: 100px;
    }
    .section-fv-business .wrap .box02 .parts01 {
        bottom: 100px;
    }
    .section-fv-business .wrap .box02 .parts02 {
        bottom: 55px;
    }
    .section-fv-business .in-wrap .box .handwriting {
        bottom: 115px;
    }
    .section-fv-business .shape-gray1, 
    .section-fv-business .shape-gray2 {
        top: 340px;
    }
}
@media screen and (max-width: 500px) {
    .section-fv-business .shape-gray1, 
    .section-fv-business .shape-gray2 {
        top: 320px;
    }
    .section-fv-business .wrap .box01 a::before, 
    .section-fv-business .wrap .box02 a::before,
    .section-fv-business .wrap .box03 a::before, 
    .section-fv-business .wrap .box04 a::before  {
        clip-path: polygon(0 0, 100% 0%, 38% 100%, 0% 100%);
        width: 50%;
    }

}
/*トップページ：選ばれる理由*/
.section-fv-reason{
    background-color: #EDEDED;
    padding-bottom: var(  --space-2xl);
    margin-bottom: var( --space-4xl);
    position: relative;
    overflow-x: hidden;
}

.section-fv-reason .wrap-title{
    position: relative;
    background-color: var(--color-main);
    padding: var(--space-7xl) 0 136px;
}
.section-fv-reason .deco{
    color: rgba(255, 255, 255, 0.15);
    z-index: 0;
    top: 70px ;
    left: 45%;
    transform: translateX(-50%);
}
.section-fv-reason .wrap-heading{
    margin: auto;
    width: fit-content;
    margin-left: 45%;
    transform: translateX(-50%);
}

.section-fv-reason .wrap-title .shape-logo{
    content: "";
    background: url( "./images/top/reason-logo.png" )  no-repeat center center / cover;
    position: absolute;
    top: 15px;
    left: -30px;
    width: 24.4vw;
    height: auto;
    aspect-ratio: 410/453;
}
.section-fv-reason .wrap-title .shape-dots{
    content: "";
    background: url( "./images/top/reason-dots.png" )  no-repeat center center / contain;
    position: absolute;
    top: 45px;
    right: 40px;
    width: 454px;
    height: auto;
    aspect-ratio: 454/453;
}
.section-fv-reason .wrap-title::before{
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0%, 86% 100%, 0% 100%);
    background-color: rgba(255, 255, 255, 0.03);
    top: 0;
    left: 0;
    aspect-ratio: 1303/565;
    width: 77.5%;
    width: auto;
    height: 100%;    
    z-index: 0;
}

.section-fv-reason .wrap-reason{
    display: flex;
    justify-content: center;
    margin: -60px auto 84px;
}
.section-fv-reason .wrap-reason-box {
    position: relative;
    overflow: hidden;
}
.section-fv-reason .wrap-reason .reason-text{
    position: absolute;
    top: 40%;
    left: 16%;
    padding-left: 13px;
    color: #fff;
    text-decoration: none;
    border-left: solid 2px #fff;
    height: 100%;
    overflow: hidden;
}
.section-fv-reason .wrap-reason .reason-text .num{
    font-weight: 300;
    font-family: poppins, sans-serif;
}
.section-fv-reason .wrap-reason .reason-text .en{
    font-weight: 600;
    font-family: poppins, sans-serif;
    text-transform: uppercase;
}
.section-fv-reason .wrap-reason .reason-text .title{
    font-weight: bold;
      font-size:clamp(24px, 24 / 1000 * 100vw ,40px);
}
.section-fv-reason .wrap-reason-box .common-btn-maru{
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.section-fv-reason .common-btn-blue{
    margin: auto;
}
.section-fv-reason::before{
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0%, 86% 100%, 0% 100%);
    background-color: #F4F4F4;
    bottom: 0;
    left: 0;
    aspect-ratio: 935/571;
    width: 81%;
    width: 935px;
    height: auto;    
    z-index: 0;
}

.section-fv-reason .wrap-title .wrap-circle{
    position: absolute;
    top: 150px;
    right: 376px;
}
.section-fv-reason .circle {
    background-color: #fff;
    border-radius: 100px;
    width: 118px;
    height: 118px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    color: var(--color-main);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
}

.section-fv-reason .circle01{

}
.section-fv-reason .circle02 {
    top: 70px;
    left: 130px;
}
.section-fv-reason .circle03 {
    top: 140px;
    left: 12px;
}
.section-fv-reason .wrap-reason-box a:hover{
    opacity: 1;
}
.section-fv-reason .wrap-reason-box a img{
    transition: 0.3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-fv-reason .wrap-reason-box a:hover img{
    transform: scale(1.1);
}


@media screen and (max-width:1200px) {
    .section-fv-reason .wrap-heading{
        margin-left: 10vw;
        transform: unset;
    }
    .section-fv-reason .deco {
        left: 10vw;
        transform: unset;
    }
    .section-fv-reason .wrap-title .wrap-circle {
        right: 334px;
    }
    .section-fv-reason .wrap-title .shape-dots {
        right: 0;
    }
    .section-fv-reason .wrap-reason-box .common-btn-maru {
        width: 34px;
    }
    .section-fv-reason .wrap-reason .reason-text {
        left: 10%;
    }
}
@media screen and (max-width:991px) {
    .section-fv-reason .wrap-heading{
        margin-left: 5vw;
    }
    .section-fv-reason .deco {
        left: 5vw;
    }
    .section-fv-reason .wrap-title .wrap-circle {
        right: 300px;
    }
    .section-fv-reason .wrap-title .shape-dots {
        top: 54px;
        right: -22px;
        width: 430px;
    }
        .section-fv-reason .wrap-reason {
        width: 78.6vw;
        flex-wrap: wrap;
    }
    .section-fv-reason .wrap-reason-box {
        width: 50%;
    }
    .section-fv-reason .wrap-reason .reason-text .title{
        font-size:clamp(24px, 24 / 600 * 100vw ,34px);
    }
}
@media screen and (max-width: 767px) {
        .section-fv-reason {
        padding-bottom: var(--space-sm);
        margin-bottom: var(--space-base);
    }
    .section-fv-reason .wrap-title {
        padding: var(--space-7xl) 0 450px;
    }

    .section-fv-reason .wrap-title .shape-dots {
        top: unset;
        right: unset;
        left: 0;
        bottom: 30px;
    }
    .section-fv-reason .wrap-title .wrap-circle {
        top: unset;
        right: unset;
        bottom: 104px;
        left: 108px;
        height: 260px;
    }
    .section-fv-reason .wrap-title .shape-logo    {
        width: 38vw;
        top: unset;
        bottom: 240px;
        left: unset;
        right: 32px;
        max-width: 240px;
    }
}

@media screen and (max-width: 600px) {

    .section-fv-reason .wrap-title {
        padding: var(--space-2xl) 0 430px;
    }
    .section-fv-reason .deco {
        top: 56px;
    }
    .section-fv-reason .wrap-reason {
        flex-direction: column;
        align-items: center;
        margin: -60px auto 40px;
                max-width: 380px;
    }
    .section-fv-reason .wrap-reason-box {
        width: 100%;
    }
    .section-fv-reason .wrap-title .wrap-circle { 
        bottom: 74px;
        left: 108px;
        height: 260px;
    }

    .section-fv-reason .circle{
        font-size:clamp(10px, 10 / 375 * 100vw ,14px);
        width: 100px;
        height: 100px;
    }
    .section-fv-reason .circle02 {
        top: 60px;
        left: 100px;
    }
    .section-fv-reason .circle03 {
        top: 120px;
        left: 2px;
    }
    .section-fv-reason .wrap-title .shape-dots {
        left: 0px;
        bottom: 40px;
        width: 385px;
    }
    .section-fv-reason .wrap-title .shape-logo {
        width: 28vw;
        bottom: 250px;
    }
}

/*トップページ：加工事例*/
.section-fv-case{
    background-image: url('./images/top/case-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: var(  --space-7xl) 0 var(  --space-2xl);
    position: relative;
    overflow-x: hidden;
    
}
.section-fv-case .deco{
    color: rgba(255, 255, 255, 0.15);
    z-index: 2;
    top: 70px ;
    left: 18.8%;
}
.section-fv-case::before{
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    background-color: var(--color-main);
    top: -30px;
    left: 0;
    aspect-ratio: 1052/537;
    width: 62.6%;
    height: auto;
    z-index: 1;
}
.section-fv-case::after{
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0%, 64% 100%, 0% 100%);
    background-color: rgb(244, 244, 244,0.31);
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}
.section-fv-case  .wrap-heading{
    position: relative;
    z-index: 1;
    margin: auto;
    width: 100%;
}
.section-fv-case .heading-left-bar.white {
    width: fit-content;
    margin-left: 34.5%;
}
.section-fv-case .obi{
    position: absolute;
    top: -90px;
    left: 50%;
    white-space: nowrap;
}
.section-fv-case .obi span{
        color: #000;
}
.section-fv-case .bx-wrapper{
    margin-left: 10vw;
    margin-bottom: 80px;
    z-index: 2;
}
.section-fv-case .bx-controls-direction {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -100px;
    right: 22%;
}
.section-fv-case .bx-wrapper .bx-controls-direction a {
    background: var(--color-main);
    border-radius: 50px;
    width: 40px;
    height: 40px;
}
.section-fv-case .bx-wrapper .bx-controls-direction a::after  {
    width: 7px;
    height: 7px;
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: rotate(45deg) translateY(-50%);
}
.section-fv-case .bx-wrapper .bx-next {
    left: 25px;
    right: unset;
}
.section-fv-case .bx-wrapper .bx-prev {
    right: 25px;
    left: unset;
}
.section-fv-case .bx-wrapper .bx-controls-direction .bx-next::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.section-fv-case .bx-wrapper .bx-controls-direction .bx-prev::after {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
        right: 42%;
}
#slider-counter {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  position: absolute;
    top: 230px;
    right: 10%;
  font-size: 24px;
  font-family: popins, sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
}
#slider-counter .current-num {
    font-size: 133%; 
}
#slider-counter::before{
    content: "";
    width: 257px;
    height: 1px;
    background-color: #fff;
    display: inline-block;
    margin: 0 5px;
    position: absolute;
    bottom: -20px;
    right: -13px;
}
.section-fv-case .common-btn-blue{
    margin: auto;
    width: 260px;
}
@media screen and (min-width: 1900px) {
    .section-fv-case .bx-wrapper {
        margin-right: 0;
        margin-left: auto;
        max-width: 75% !important;
    }
    #slider-counter::before {
        right: -28px;
    }
}
@media screen and (max-width: 1200px) {
    .section-fv-case .heading-left-bar.white {
        margin-left: 10vw;
    }
    .section-fv-case .deco {
        left: 10vw;
    }
    .section-fv-case .bx-controls-direction {
        top: -87px;
    }
    #slider-counter {
        right: 7%;
        font-size:clamp(20px, 20 / 767 * 100vw ,24px);
    }
    .section-fv-case::before {
        width: 72%;
    }
}
@media screen and (max-width: 991px) {
    #slider-counter {
        right: 4%;
        margin-top: 0;
    }
    .section-fv-case .obi {
        left: unset;
        right: 24px;
    }
}
@media screen and (max-width: 767px) {
    .section-fv-case .bx-wrapper {
        margin-top: 170px;
    }
    .section-fv-case .obi {
        left: 48px;
        top: 140px;
    }
    .section-fv-case .heading-left-bar.white {
        margin-left: 48px;
    }
    .section-fv-case .deco {
        left: 24px;
    }
    .section-fv-case .bx-controls-direction {
        top: -75px;
        left: 0;
    }
    #slider-counter {
        left: 180px;
        margin: 0;
        transform: unset;
        width: fit-content;
        top: 395px;
        color: #fff;
        z-index: 1;
    }
    #slider-counter::before {
        width: 226px;

    }

    .section-fv-case::before {
        width: 98%;
        height: 60%;
        aspect-ratio: unset;
        clip-path: polygon(0 0, 100% 0%, 65% 100%, 0% 100%);
    }
    .section-fv-case .bx-wrapper .bx-controls-direction a {
        background: #ffffff;
    }
    .section-fv-case .bx-wrapper .bx-controls-direction .bx-prev::after {
        border-left: 2px solid var(--color-main);
        border-bottom: 2px solid var(--color-main);
    }
    .section-fv-case .bx-wrapper .bx-controls-direction .bx-next::after {
        border-top: 2px solid var(--color-main);
        border-right: 2px solid var(--color-main);
    }
    .section-fv-case::after {
        clip-path: polygon(0 0, 100% 0%, 30% 100%, 0% 100%);
        width: 96%;
        height: 100%;
    }
}
@media screen and (max-width: 600px) {
    .section-fv-case {
        padding: var(--space-2xl) 0 var(--space-md);
    }
    .section-fv-case .obi {
        left: 48px;
        top: 100px;
    }
    .section-fv-case .obi .pc-none{
        display: block;
    }
    .section-fv-case .obi .sp-none{
        display: none;
    }
    .section-fv-case .bx-wrapper {
        margin-top: 220px;
        margin-bottom: 40px;
    }
    #slider-counter {
        top: 310px;
    }
    #slider-counter::before {
        bottom: -22px;
        right: -15px;
    }
    .section-fv-case .bx-controls-direction {
        top: -98px;
        top: -110px;
        left: 0;
    }

}
@media screen and (max-width: 500px) {
    #slider-counter {
        top: 330px;
    }
    #slider-counter::before {
        bottom: -11px;
        right: -14px;
    }
    .section-fv-case .bx-controls-direction {
        top: -82px;
        left: 0;
    }
}
/*トップページ：会社案内*/
.section-fv-company{
    margin-top: var(--space-4xl);
    margin-bottom: var( --space-4xl);
    position: relative;
    overflow-x: hidden;

}
.section-fv-company .deco{
    color: #EDEDED;
    left: calc(50% - 84px);
    transform: translateX(-50%);
}
.section-fv-company .wrap-heading {
    width: fit-content;
    margin: auto;
    margin-right: 13vw;
}
.section-fv-company .wrap-company{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 52px;
    margin-top: 102px;
    margin-bottom: 148px;
    position: relative;
    z-index: 2;
}
.section-fv-company .wrap-company-box{
    position: relative;
}
.section-fv-company .wrap-company-box::before{
    content: "";
    position: absolute;
    width: 88px;
    height: 88px;
    background-color: var(--color-main);
    top: -12px;
    left: -12px;
}
.section-fv-company .wrap-company-box .inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 238px;
}
.section-fv-company .wrap-company-box a{
    text-decoration: none;
    transition: 0.3s;
    overflow: hidden;
    display: block;

}
.section-fv-company .wrap-company-box .title{
    font-weight: bold;
    margin-bottom: 6px;
}
.section-fv-company .wrap-company-box:nth-child(2){
    margin-top: 52px;
}
.section-fv-company .wrap-company-box:nth-child(3){
    margin-top: 104px;
}
.section-fv-company .wrap-company-box{
    position: relative;
}
.section-fv-company .wrap-company .common-btn-maru{
    position: absolute ;
    bottom: 32px;
    right: 32px;
}
.section-fv-company .shape-gray{
    position: absolute;
    clip-path: polygon(0 0, 100% 0%, 87% 100%, 0% 100%);
    background-color: #F4F4F4;
    bottom: 0;
    left: 0;
    aspect-ratio: 960/405;
    width: 57%;
    height: auto;
    z-index: 0;
}
.section-fv-company .wrap-company-box a img{
    transition: 0.3s;
}
.section-fv-company .wrap-company-box a:hover img{
    transform: scale(1.1);
}
.section-fv-company .wrap-company-box a:hover {
    opacity: 1;
}

@media screen and (max-width: 1300px) {
    .section-fv-company .wrap-company {
        padding: 0 48px;
        gap: 32px;
    }
}
@media screen and (max-width: 930px) {
    .section-fv-company {
        margin-top: var(--space-base);
        margin-bottom: var(--space-base);
    }
    .section-fv-company .wrap-company {
        padding: 0 30px;
        gap: 42px;
        flex-direction: column;
        align-items: center;
    }
    .section-fv-company .wrap-company-box:nth-child(2),
    .section-fv-company .wrap-company-box:nth-child(3) {
        margin-top: 0;
    }
    .section-fv-company .deco {
        left: 48px;
        transform: unset;
    }
    .section-fv-company .wrap-heading {
        margin-left: 48px;
        margin-top: 98px;
    }
    .section-fv-company  .obi .pc-none{
        display: block;
    }
}
@media screen and (max-width: 930px) {
   
    .section-fv-company .deco {
        left: 24px;
    }
    .section-fv-company .wrap-heading {
        margin-left: 24px;
    }
    .section-fv-company .wrap-company-box::before {
        top: -10px;
        left: -10px;
    }
    .section-fv-company .wrap-company-box .title {
        font-size: clamp(24px, 24 / 375 * 100vw, 32px);
    }
    .section-fv-company .wrap-company-box .inner {
        max-width: 205px;
        width: 97%;
    }
    .section-fv-company .wrap-company {
        margin-top: 66px;
                margin-bottom: 120px;
    }
    .section-fv-company .shape-gray {
        width: 98%;
    }
}




/* マーキーアニメーション */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-scroll 45s linear infinite;
    font-size: 155px;
    font-size:clamp(70px, 70 / 400 * 100vw ,155px);
    font-family: poppins, sans-serif;
    font-weight: 100;
    font-style: italic;
    line-height: 1.8;
    color: rgb(0, 0, 0,0.07);
}

/*トップページ：採用情報*/
.section-fv-recruit{
    position: relative;
    overflow-x: hidden;
}
.section-fv-recruit .deco{
    color: rgb(237, 237, 237,0.15);
    left:-65px;
}
.section-fv-recruit .wrap-heading {
    margin: 110px 0 0 0;
}
.section-fv-recruit .inner {
    position: absolute;
    top: 140px;
    left: 12.5vw;
    z-index: 1;
}
.section-fv-recruit .title {
    color: #fff;
    font-weight: bold;
    margin-bottom: var(--space-2xs);
}
.section-fv-recruit .text {
    color: #fff;
    margin-bottom: 56px;
}
.section-fv-recruit .btn {
    color: #fff;
    display: flex;
    gap: 16px;
    text-underline-offset: 12px;
}
.section-fv-recruit .handwriting{
    position: absolute;
    bottom: 90px;
    right: 6vw;
    z-index: 2;
    transform: rotate(-7deg);
    color: rgb(157, 157, 157,0.4);
    font-size: 118px;
    font-size:clamp(24px, 24 / 375 * 100vw ,118px);
}
.section-fv-recruit .bx-wrapper {
    max-width: none !important;
}
.section-fv-recruit .shape-gray{
    position: absolute;
    clip-path: polygon(0 0, 100% 0%, 67% 100%, 0% 100%);
    background-color: rgb(244, 244, 244,0.06);
    bottom: 0;
    left: 0;
    width: 46%;
    height: 100%;
    z-index: 0;
}

@media screen and (max-width: 1000px) {
    .section-fv-recruit .title {
        font-size: clamp(16px, 16 / 375 * 100vw, 32px);
    }
    .section-fv-recruit .text {
        font-size: clamp(12px, 12 / 375 * 100vw, 16px);
    }
}
@media screen and (max-width: 767px) {
    .section-fv-recruit .inner {
        top: 96px;
        left: 48px;
    }
    .section-fv-recruit .deco {
        left: -24px;
    }
    .section-fv-recruit .wrap-heading {
        margin: 70px 0 0 0;
    }
    .section-fv-recruit .shape-gray{
        clip-path: polygon(0 0, 100% 0%, 46% 100%, 0% 100%);
        width: 55%;
    }
}

@media screen and (max-width: 600px) {
    .section-fv-recruit .inner {
        top: 48px;
    }
    .section-fv-recruit {
        overflow: visible;
        position: relative;
    }
    .section-fv-recruit .bx-viewport {
        height: 140vw !important;
                max-height: fit-content;
    }
    .section-fv-recruit .handwriting {
        bottom: 10%;
    }
    .recruit-slider {
        margin: 0 -20px; /* はみ出し演出用 */
    }
    .recruit-slider li {
        width: calc(100vw + 130px) !important; /* JSで設定したslideWidthに合わせる */
    }
    .recruit-slider img {
        width: 100%;
        height: auto;
        display: block;
        height: 100%;
        object-fit: cover;
    }
    .section-fv-recruit .shape-gray{
        clip-path: polygon(0 0, 100% 0%, 52% 100%, 0% 100%);
        width: 98%;
    }
}

/*トップページ：お知らせ*/
.section-fv-news{
    position: relative;
    overflow-x: hidden;
    padding: var(--space-4xl) 0;
}
.section-fv-news .deco{
    color: #EDEDED;
    top: -8px;
    left: 0;
}
.section-fv-news .wrap-news {
    display: flex;
    max-width: 1218px;
    margin: 0 auto;

}
.section-fv-news .wrap-title{
    width: 50%;
    position: relative;
    padding-top: var(--space-2xl);
    padding-left: 20px;
}
.section-fv-news .news-list{
    width: 50%;
}
.section-fv-news .wrap-heading{
    margin-bottom: var(--space-lg);
}
.section-fv-news .news-list {
	list-style-type: none;
	max-width: 604px;
}
.section-fv-news .news-list li a{
	padding: 40px 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 5px 24px;
    text-decoration: none;
    color: var(--color-text);
}
.section-fv-news .news-list li a:hover .title{
    text-decoration: underline;
    text-underline-offset: 5px;
}
.section-fv-news .news-list li {
	border-bottom: 1px solid #E5E5E5;
}
.section-fv-news .news-list li:first-child {
	border-top: 1px solid #E5E5E5;
}

.section-fv-news .news-list li .in-box{
	display: flex;
	flex-direction: row;
	gap: 24px;
	width: 200px;
}
.section-fv-news .news-list li .cat{
	background-color: var(--color-main);
    color: #fff;
	padding: 2px 5px;
    margin-top: 4px;
    min-width: 88px;
    width: 90px;
    text-align: center;
	display: block;
	height: fit-content;
}
.section-fv-news .news-list li .date{
    color: #919191;
    font-weight: 500;
    font-family: poppins, sans-serif;
}
.section-fv-news .news-list li .title{
	width: calc(100% - 224px);
}

@media screen and (max-width:1300px) {
    .section-fv-news .wrap-title {
        width: 40%;
    }
    .section-fv-news .news-list {
        width: 60%;
    }
    .section-fv-news .wrap-news {
        justify-content: center;
        padding: 0 24px;
    }
}

@media screen and (max-width: 900px) {
    .section-fv-news .news-list li {
        flex-direction: column;
    }
    .section-fv-news .news-list li a{
        padding: 24px .5em;
    }
    .section-fv-news .news-list li .title {
        width: 100%;        
    }
}
@media screen and (max-width: 767px) {
    .section-fv-news {
        padding: var(--space-base) 0;
    }
	.section-fv-news .news-list li .title{
		width: 100%;
	}
    .section-fv-news .wrap-news {
        flex-direction: column;
        gap: 40px;
    }
    .section-fv-news .wrap-title,
    .section-fv-news .news-list {
        width: 100%;
        max-width: unset;
    }
    .section-fv-news .wrap-title {
        padding-top: var( --space-lg);
    }
    .section-fv-news .news-list li a{
        padding: 20px .5em 28px;
    }
    .section-fv-news .wrap-title .sp-none {
        display: none;
    }
    .section-fv-news .common-btn-blue.pc-none {
        display: block;
        margin-top: 0;
    }
    .section-fv-news .wrap-heading {
        margin-bottom: 0;
    }
    .section-fv-news .heading-left-bar {
        margin-bottom: 0;
    }

}


/****************************
* 【共通】お問い合わせセクション *
*****************************/
.section-cta-contact{
    position: relative;
    overflow-x: hidden;
    padding: 0 0 490px;
    background-color: var(--color-main);
}
.section-cta-contact .bx-wrapper {
    z-index: 1;
    max-width: none !important;
}
.section-cta-contact .deco{
    color: #EDEDED;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
}
.section-cta-contact .wrap-heading{
    margin: auto;
    width: fit-content;
}
.section-cta-contact .inner {
    background-color: #fff;
    max-width: 1208px;
    width: 98%;
    height: 530px;
    margin: auto;
    position: absolute;
    top: 185px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(  --space-xl) 1em var( --space-lg) 1em ;
    z-index: 1;
}
.section-cta-contact .text{
    font-weight: bold;
    text-align: center;
    margin: var( --space-sm) auto;
}
.section-cta-contact .tel{
    display: block;
    font-family: poppins, sans-serif;
    font-weight: 600;
    text-align: center;
    padding-left: 20px;
    margin: var(--space-xs) auto;
    color: var(--color-text);
    text-decoration: none;position: relative;
    width: fit-content;
}
.section-cta-contact .tel .open{
    font-size: 13px;
    font-weight: 500;
    margin-left: 20px;
}
.section-cta-contact .tel::before {
    width: 16px;
    height: 23px;
    margin-right: 8px;
    content: '';
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.836%22%20height%3D%2223.301%22%20viewBox%3D%220%200%2015.836%2023.301%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_29%22%20data-name%3D%22%E3%83%91%E3%82%B9%2029%22%20d%3D%22M91.168%2C32.016c4.316%2C8.229%2C9.165%2C9.076%2C10.575%2C8.336l.368-.193-3.3-6.294c-.121.062-.244.125-.369.191-1.137.6-2.272-1.127-3.727-3.9s-2.227-4.687-1.091-5.283c.126-.065.247-.13.367-.194l-3.3-6.3-.368.193C88.91%2C19.315%2C86.852%2C23.787%2C91.168%2C32.016Zm12.94%2C7.1c.545-.286.246-.912-.064-1.5l-2.218-4.228c-.238-.455-.633-.711-.952-.544-.2.105-.666.326-1.266.624l3.3%2C6.282Zm-8.1-15.548c.319-.167.331-.638.093-1.092s-2.217-4.228-2.217-4.228c-.31-.591-.655-1.192-1.2-.906l-1.2.632%2C3.3%2C6.283C95.362%2C23.925%2C95.809%2C23.668%2C96.009%2C23.563Z%22%20transform%3D%22translate(-88.574%20-17.262)%22%20fill%3D%22%23282828%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 24px;
    left: 0px;
    transform: translateY(-50%);
}
.section-cta-contact  .wrap-cta-btn{
    margin: 0 auto;
}
.section-cta-contact .parts01,
.section-cta-contact .parts02{
    position: absolute;
    object-fit: contain;
}
.section-cta-contact .parts01{
    bottom: 134px;
    right: 35px;
    height: 185px;
    width: auto;
}
.section-cta-contact .parts02{
    bottom: 32px;
    right: 55px;
    height: 216px;
    width: auto;
}
.section-cta-contact .shape-blue{
    position: absolute;
    clip-path: polygon(0 0, 100% 0%, 84% 100%, 0% 100%);
    background-color: #1096E5;
    bottom: 0;
    left: 0;
    aspect-ratio: 918/490;
    width: 54.6%;
    height: 100%;
    z-index: 0;
}
.section-cta-contact .shape-sankaku{
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    background-color: #F2F2F2;
    top: 0;
    left: 0;
    aspect-ratio: 100/115;
    max-width: 100px;
    width: 10%;
    height: auto;
    z-index: 0;
}
@media screen and (max-width: 1200px) {
    .section-cta-contact .inner{
        width: calc(100vw - 40px);
    }
}
@media screen and (max-width: 1000px) {
    .section-cta-contact .parts01 {
        bottom: 172px;
        right: 18px;
        height: 140px;
    }
    .section-cta-contact .parts02 {
        bottom: 80px;
        right: 30px;
        height: 180px;
    }
}
@media screen and (max-width: 850px) {

    .section-cta-contact .inner {
        padding: var(--space-xl) 2em var(--space-lg) ;
        height: auto;
        top: 140px;
    }
    .section-cta-contact .wrap-heading {
        margin-left: 0;
    }
    .section-cta-contact .deco {
        left: 20px;
        transform: unset;
    }
    .section-cta-contact .parts01 {
        bottom: 200px;
        right: 18px;
        height: 140px;
    }
    .section-cta-contact .parts02 {
        bottom: 125px;
        right: 30px;
        height: 180px;
    }
    .section-cta-contact .text {
        font-size: 14px;
        font-size:clamp(14px, 14 / 450 * 100vw ,20px);
        font-weight: 500;
        text-align: left;
        margin: var( --space-2xs) auto;
        width: 83%;
        margin-left: 0;
    }
    .section-cta-contact .tel {
        font-size:clamp(24px, 24 / 450 * 100vw ,28px);
        padding-left: 20px;
        margin-left: 0;
    }
    .section-cta-contact .tel::before {
        width: 20px;
        height: 30px;
        top: 21px;
        left: 0px;
    }
    .section-cta-contact .btn-doc, 
    .section-cta-contact .btn-contact{
        font-size: 18px;
        min-width: 227px;
        min-height: 56px;
    }
}
@media screen and (max-width: 600px) {
    
    .section-cta-contact .deco {
        font-size:clamp(66px, 24 / 450 * 100vw ,70px);
    }
    .section-cta-contact .text{
        width: 80%;
        margin-left: 0;
    }
    .section-cta-contact .tel .open {
        display: block;
        margin-left: 0;
    }
    .section-cta-contact .parts01 {
        bottom: 200px;
        right: 18px;
        height: 110px;
    }
    .section-cta-contact .parts02 {
        bottom: 125px;
        right: 30px;
        height: 150px;
    }
}
@media screen and (max-width: 550px) {
    .section-cta-contact {
        padding: 0 0 540px;
    }

    .section-cta-contact .inner{
        padding: 84px 20px 56px;
        top: unset;
        bottom: 60px;
    }
    .section-cta-contact .wrap-cta-btn{
        flex-direction: column;
    }
    .section-cta-contact .parts01 {
        bottom: 350px;
        right: 27px;
        height: 110px;
    }
    .section-cta-contact .parts02 {
        bottom: 275px;
        right: 30px;
        height: 150px;
    }

    .section-cta-contact .tel {
        margin: 30px auto 30px;
        font-size:clamp(30px, 30 / 320 * 100vw ,35px);
        white-space: nowrap;
    }
    .section-cta-contact .tel::before {
        width: 18px;
        height: 27px;
        top: 26px;
        left: -4px;
    }
    .section-cta-contact .text {
        line-height: 2;
    }
}
@media screen and (max-width: 480px) {
    .section-cta-contact .parts01 {
        right: 18px;
        height: 90px;
    }
    .section-cta-contact .parts02 {
/*        bottom: 190px;*/
        right: 16px;
        height: 125px;
    }
}
@media screen and (max-width: 425px) {
    .section-cta-contact .deco {
        top: 45px;
        left: 8px;
        font-size: 64px;
    }
    .section-cta-contact .parts01 {
        bottom: 335px;
        right: 11px;
        height: 77px;
    }
    .section-cta-contact .parts02 {
        bottom: 280px;
        right: 12px;
        height: 110px;
    }
    .section-cta-contact .text {
        font-size: 12px;
    }

}



/*ふわふわアニメーション*/
.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite;
  display: inline-block;
}

@keyframes fuwafuwa {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}


/****************************
* 下層ページ                 *
*****************************/
section.bg-gray{
    background-color: #F4F4F4;
}
.check-blue{
    background-color: var(--color-main);
    color: #fff;
    padding: 12px 28px 12px 64px;
    position: relative;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    min-width: 240px;
}
.check-blue span{
    position: relative;
}
.check-blue span::before{
    content: "";
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2231.5%22%20height%3D%2229%22%20viewBox%3D%220%200%2031.5%2029%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_74%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2074%22%20transform%3D%22translate(-366.699%20-591.5)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4141%22%20data-name%3D%22%E3%83%91%E3%82%B9%204141%22%20d%3D%22M383.7%2C592.5h-16v27h28v-13%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4142%22%20data-name%3D%22%E3%83%91%E3%82%B9%204142%22%20d%3D%22M376.2%2C604l6%2C7%2C16-18-16%2C14Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-size: contain;
    width: 30.5px;
    height: 27px;
    position:absolute;
    top: 54%;
    left: -37px;
    transform: translateY(-50%);
}

.check-two-colors{
    position: relative;
    font-size: 18px;
    font-size:clamp(14px, 14 / 767 * 100vw ,18px);
    line-height: 1.5;
    font-weight: 500;
    padding-left: 32px;
    margin-bottom: var(--space-xs);
}
.check-two-colors::before{
    content: "";
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.009%22%20height%3D%2221.009%22%20viewBox%3D%220%200%2024.009%2021.009%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_63%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2063%22%20transform%3D%22translate(-468.251%20-1818.504)%22%3E%20%3Cg%20id%3D%22Icon_ionic-ios-checkbox-outline%22%20data-name%3D%22Icon%20ionic-ios-checkbox-outline%22%20transform%3D%22translate(465.215%201814.323)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4136%22%20data-name%3D%22%E3%83%91%E3%82%B9%204136%22%20d%3D%22M18.832%2C8.159h-13v18h20v-8%22%20transform%3D%22translate(-1.546%20-2.22)%22%20fill%3D%22none%22%20stroke%3D%22%234e4e4e%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222.5%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4137%22%20data-name%3D%22%E3%83%91%E3%82%B9%204137%22%20d%3D%22M11123.412%2C15755.941l5%2C6%2C9-11%22%20transform%3D%22translate(-11112.127%20-15745.001)%22%20fill%3D%22none%22%20stroke%3D%22%23038fe1%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222.5%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-size: contain;
    width: 21px;
    height: 18px;
    position:absolute;
    top: 51%;
    left: 0px;
    transform: translateY(-50%);
}

section.space-xl{
    padding: var(--space-xl) 0;
}
section.space-xl-top{
    padding: var(--space-xl) 0 0;
}
section.space-base{
    padding: var(--space-base) 0;
}
@media screen and (max-width: 767px) {
    section.space-xl{
        padding: var(--space-md) 0;
    }
    section.space-xl-top{
        padding: var(--space-md) 0 0;
    }
    section.space-base{
        padding: var(--space-sm) 0;
    }
}

section.logo-bg{
    position: relative;
}
section.logo-bg::after{
    content: "";
    background: url( "./images/common/logo-bg.png" )  no-repeat center center / contain;
    position: absolute;
    bottom: 86px;
    right: 18px;
    width: 33.4vw;
    height: auto;
    aspect-ratio: 562/622;
    z-index: 0;
}
section.logo-bg .shape-gray{
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 74% 100%, 0% 100%);
    background-color: #F4F4F4;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    z-index: 0;
}
@media screen and (max-width: 767px) {
    section.logo-bg::after{
        bottom: 86px;
        right: 18px;
        width: 70vw;
        max-width: 400px;
    }
}
section.wide{
    margin: 0 calc(50% - 50vw);
    width: 100vw;
}
.container.wide-inner{
    position: relative;
    z-index: 1;
}
.page .container{
    @media screen and (min-width: 1250px) {
        padding: 0;
    }
}

.container-l{
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1442px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.page .container-l{
    @media screen and (min-width: 1442px) {
        padding: 0;
    }
}


/****************************
* Aizakiが選ばれる理由ページ    *
*****************************/
.section-common-first-cta{
    background-color: #F0F0F0;
}
.section-common-first-cta .wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin-bottom: var(--space-lg);
}
@media screen and (max-width: 767px) {
    .section-common-first-cta .wrap li{
        width: 100%;
        max-width: 620px;
        text-align: left;
        justify-content: flex-start;
        gap: 10px;
    }
}
@media screen and (max-width: 600px) {
    .section-common-first-cta .wrap {
        gap: 16px;
        margin-bottom: 56px;
    }
}
.section-feature-worries .wrap{
    display: flex;
    gap: 40px;
    list-style: none;
}
.section-feature-worries .wrap .box{
    width: 376px;
    height: auto;
    border: solid 6px var(--color-main);
    background-color: #fff;
}
.section-feature-worries .wrap .box .title{
    padding: 24px 1em;
    text-align: center;
    color: #fff;
    background-color: var(--color-main);
}
.section-feature-worries .wrap .box .check-list{
    background-color: #fff;
    list-style: none;
    padding: 32px 25px 0 20px;
}
.section-feature-worries .heading-bottom-bar {
    margin-bottom: var(--space-lg);
}
@media screen and (max-width: 1200px) {
    .section-feature-worries .wrap {
        gap: 20px;
        justify-content: center;
    }
    .section-feature-worries .wrap .box .title {
        padding: 20px 1em;
    }
}
@media screen and (max-width: 991px) {
    .section-feature-worries .wrap {
        flex-wrap: wrap;
    }
    .section-feature-worries .wrap .box .title {
       font-size:clamp(18px, 18 / 500 * 100vw ,20px);
    }
    .section-feature-worries .heading-bottom-bar {
        margin-bottom: var(--space-xs);
    }
}

.section-feature-solution-intro{
    background-color: var(--color-main);
    position: relative;
}
.section-feature-solution-intro .wrap{
    background-color: #fff;
    width: 100%;
    padding: 68px var(--space-lg) var(--space-lg);
}
.section-feature-solution-intro .wrap .title{
    max-width: 665px;
    margin-bottom: var(--space-xs);
    font-size: 35px;
    font-weight: bold;
    line-height: 1.8;
}
.section-feature-solution-intro .wrap .text{
    max-width: 632px;
}
.title .line{
    position: relative;
}
.title .line::after{
    position: absolute ;
    content: "";
    width: 100%;
    height: 4px;
    background-color: var(--color-point);
    bottom: 4px;
    right: 0;
}
.title .dot{
    position: relative;
    font-weight: 900;
}
.title .dot::after{
    position: absolute ;
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--color-point);
    top: 5px;
    right: 50%;
    transform: translateX(50%);
    border-radius: 50%;
}

.section-feature-solution-intro  .wrap-circle{
    position: absolute;
    top: 180px;
    right: calc((100vw - 1208px) / 2 + 297px );
    z-index: 2;
}
.section-feature-solution-intro .circle {
    background-color: #fff;
    border-radius: 100px;
    width: 118px;
    height: 118px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    color: var(--color-main);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
}
.section-feature-solution-intro  .circle02 {
    top: 70px;
    left: 130px;
}
.section-feature-solution-intro  .circle03 {
    top: 140px;
    left: 12px;
}
.section-feature-solution-intro .shape-dots{
    content: "";
    background: url( "./images/feature/dots.png" )  no-repeat center center / contain;
    position: absolute;
    top: -105px;
    left: -120px;
    width: 454px;
    height: auto;
    aspect-ratio: 454/453;
    z-index: 0;
}
.section-feature-solution-intro  .shape-white{
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 84% 100%, 0% 100%);
    background-color: rgb(255, 255, 255,0.11);
    top: 0;
    left: 0;
    width: 57.7%;
    height: 100%;
    z-index: 0;
}

@media screen and (max-width: 1250px) {
    .section-feature-solution-intro .wrap .title{
        margin-bottom: var(--space-2xs);
        font-size: 30px;
    }

    .section-feature-solution-intro .shape-dots{
        top: -75px;
        left: -80px;
        width: 370px;
    }
    .section-feature-solution-intro .wrap-circle {
        right: 24vw;
    }
    .section-feature-solution-intro .circle {
        width: 100px;
        height: 100px;
        font-size: 13px;
    }
    .section-feature-solution-intro .circle01 {
        top: 5px;
        left: 9px;
    }
    .section-feature-solution-intro .circle02 {
        top: 67px;
        left: 122px;
    }
    .section-feature-solution-intro .circle03 {
        top: 120px;
        left: 19px;
    }
}

@media screen and (max-width: 1000px) {
    .section-feature-solution-intro .wrap .title{
        font-size: 24px;
    }
    .section-feature-solution-intro .wrap .text{
        width: 65%;
    }
    .section-feature-solution-intro .wrap-circle {
        right: 30vw;
    }
        .title .dot::after {
        width: 5px;
        height: 5px;
        top: 3px;
    }
}

@media screen and (max-width: 850px) {
    .section-feature-solution-intro .wrap {
        padding: 68px var(--space-sm) 350px;
    }
    .section-feature-solution-intro .wrap .title,
    .section-feature-solution-intro .wrap .text {
        width: 100%;
    }
    .section-feature-solution-intro .wrap-circle {
        bottom: 370px;
        top: unset;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 600px) {
    
    section.wide.section-feature-solution-intro {
           padding: 56px 0;
    }
    .section-feature-solution-intro .wrap {
        padding: 40px 20px 260px;
    }
    .section-feature-solution-intro .wrap .title {
        font-size:clamp(18px, 18 / 375 * 100vw ,24px);
    }
    .section-feature-solution-intro .wrap .text {
        font-size:clamp(14px, 14 / 375 * 100vw ,16px);
    }
    .section-feature-solution-intro .wrap .title.pc-none {
        display: block;
    }
    .section-feature-solution-intro .wrap .title.sp-none {
        display: none;
    }
    .section-feature-solution-intro .wrap-circle {
        bottom: 240px;
    }
    .section-feature-solution-intro .circle {
        width: 80px;
        height: 80px;
        font-size: 10px;
    }
    .section-feature-solution-intro .shape-dots {
        top: -85px;
        left: -80px;
        width: 290px;
    }
    .section-feature-solution-intro .circle01 {
        top: -22px;
        left: -5px;
    }
    .section-feature-solution-intro .circle02 {
        top: 25px;
        left: 79px;
    }
    .section-feature-solution-intro .circle03 {
        top: 71px;
        left: -1px;
    }
    .title .dot::after {
        top: 0;
    }
}

.section-feature-solution{
    padding: var(--space-3xl) 0 var(--space-2xl);
    position: relative;
}
.section-feature-solution .box-solution{
    position: relative;
    padding-right: 80px;
}

.section-feature-solution .wrap{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background-color: #fff;
    padding: 72px var( --space-xs) var(--space-md) var(--space-6xl);
    position: relative;
    z-index: 1;
    margin-bottom: 185px;
}
.section-feature-solution  .wrap-title{
    position: relative;
    margin-top: 14px;
}
.section-feature-solution  .wrap-title .en{
    position: absolute;
    font-family: Poppins, sans-serif;
    font-size:clamp(55px, 55 / 1100 * 100vw ,72px);
    font-weight: 300;
    text-transform: uppercase;
    white-space: nowrap;
    top: 50%;
    left: -140px;
    transform: translateY(-50%);
    color: #F4F4F4;
    z-index: 0;
    display: inline-flex;
    align-items: center;
}
.section-feature-solution  .wrap-title .en .num{
    font-family: Poppins, sans-serif;
    font-size:clamp(180px, 180 / 1100 * 100vw ,257px);
    font-weight: 100;
    text-transform: uppercase;
    margin-right: 52px;
}
.section-feature-solution  .wrap-title .title{
    position: relative;
    z-index: 1;
}

.section-feature-solution .wrap .box-text{
    width: 63%;
    width: 56%;
    max-width: 740px;
}
.section-feature-solution .wrap .box-text .inner-text{
    max-width: 620px;
    margin-top: var(--space-md);
    position: relative;
    z-index: 2;
}
.section-feature-solution .wrap .box-text .inner-text .title{
    margin: var(--space-sm) 0 var(--space-3xs);
}
.section-feature-solution .wrap .box-img{
    width: 37%;
    max-width: 416px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}
.section-feature-solution .wrap .box-img img{
    margin: 0;
}
.section-feature-solution .wrap .box-img .main-img{
    position: relative;
    z-index: 1;
}
.section-feature-solution .wrap .box-img .sub-img{
    position: absolute;
    top: -114px;
    right: -112px;
    z-index: 0;
}
.section-feature-solution .shape-blue{
    position: absolute;
    background-color: var(--color-main);
    bottom: -32px;
    right: 48px;
    aspect-ratio: 473/479;
    width: 33%;
    height: auto;
    z-index: 0;
}
.section-feature-solution .shape-line{
    position: absolute;
    background-color: var(--color-main);
    top: -48px;
    left: 88px;
    width: 4px;
    height: 280px;
    z-index: 2;
}
.section-feature-solution .shape-arrow{
    position: absolute;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22117%22%20height%3D%22112%22%20viewBox%3D%220%200%20117%20112%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_79%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2079%22%20transform%3D%22translate(-766%20-4869)%22%3E%20%3Cpath%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_1%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%201%22%20d%3D%22M58.5%2C0%2C117%2C28H0Z%22%20transform%3D%22translate(883%204897)%20rotate(180)%22%20fill%3D%22%23bebebe%22%2F%3E%20%3Cpath%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_2%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%202%22%20d%3D%22M58.5%2C0%2C117%2C28H0Z%22%20transform%3D%22translate(883%204939)%20rotate(180)%22%20fill%3D%22%23bebebe%22%2F%3E%20%3Cpath%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_3%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%203%22%20d%3D%22M58.5%2C0%2C117%2C28H0Z%22%20transform%3D%22translate(883%204981)%20rotate(180)%22%20fill%3D%22%23bebebe%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 117px;
    height: 112px;
    z-index: 1;
}
@media screen and (max-width: 600px) {
    .section-feature-solution{
        padding: var(--space-base) 0 0;
        position: relative;
    }
    .section-feature-solution .shape-arrow {
        top: -35px;
        width: 17%;
        height: auto;
        aspect-ratio: 117 / 112;
    }
}

.section-feature-solution .box-solution.delivery .en .num{
    margin-right: 12px;
}

.section-feature-solution .box-solution.cost{
    padding-left: 32px;
    padding-right: 48px;
}
.section-feature-solution .box-solution.cost .wrap{
    flex-direction: row-reverse;
    padding-left: var(--space-4xl);
}
.section-feature-solution .box-solution.cost .wrap .box-img .sub-img {
    top: -114px;
    left: -112px;
}
.section-feature-solution .box-solution.cost  .wrap .box-img {
    width: 52%;
}
.section-feature-solution .box-solution.cost  .wrap .box-text {
    width: 48%;
}
.section-feature-solution .box-solution.cost .wrap .box-text .inner-text {
    max-width: 571px;
}
.section-feature-solution .box-solution.cost .en .num{
    margin-right: 156px;
}
.section-feature-solution .box-solution.cost .shape-blue {
    left: 0;
}
.section-feature-solution .box-solution.cost .shape-line {
    left: 50%;
    transform: translateX(-50%);
}
.section-feature-solution .box-solution.cost .common-btn-blue {
    width: 386px;
}
.section-feature-solution .box-solution.service .en .num{
    margin-right: 100px;
}
.section-feature-solution .box-solution.service .wrap{
    margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
    .section-feature-solution .wrap {
        padding: 72px var(--space-xs) var(--space-md) var(--space-2xl);
    }
    .section-feature-solution .wrap-title .en {
        left: -100px;
    }
    .section-feature-solution .wrap .box-img .sub-img {
        top: -94px;
        right: -100px;
        width: 170px;
    }
    .section-feature-solution .box-solution.cost  .wrap .box-img .sub-img {
        top: -94px;
        left: -100px;
        width: 170px;
    }

}
@media screen and (max-width: 991px) {
    .section-feature-solution .box-solution.cost .wrap,
    .section-feature-solution .wrap{
        flex-direction: column;
    }
    .section-feature-solution .box-solution.cost .wrap .box-text,
    .section-feature-solution .wrap .box-text  {
        width: 100%;
        max-width: 740px;
        display: contents;
    }
    .section-feature-solution .wrap .box-img  {
        width: 100%;
        max-width: unset;
    }
    .section-feature-solution .box-solution.cost .wrap .box-img {
        width: 100%;
        max-width: unset;
        margin-left: auto;
        margin-right: 20px;
    }
    .section-feature-solution .box-solution.cost .wrap .box-img img {
        width: 75%;
        margin-left: auto;
    }
    .section-feature-solution .wrap .box-img img {
        width: 75%;
    }
    .section-feature-solution .wrap .box-img .sub-img {
        top: -94px;
        right: 0;
        width: 35%;
        min-width: 125px;
    }
    .section-feature-solution .wrap .box-img .sub-img img {
        width: 100%;
    }
    .section-feature-solution .box-solution.cost .wrap .box-img .sub-img  {
        left: 0;
        width: 35%;
        min-width: 125px;
    }
    .section-feature-solution .box-solution.cost .wrap .box-img .sub-img img {
        width: 100%;
        margin-left: auto;
    }

    .section-feature-solution .wrap .common-btn-blue {
        order: 4;
        width: 243px;
        margin: 40px auto 0;
    }
    .section-feature-solution .wrap .box-text .inner-text {
        margin-bottom: 120px;
    }
    .section-feature-solution .shape-line {
        top: 12px;
        left: 88px;
        width: 3px;
        height: 190px;
    }
    .section-feature-solution .box-solution.cost .shape-line {
        left: 108px;
        transform: unset;
    }

}

@media screen and (max-width: 767px) {
    .section-feature-solution .box-solution.cost .wrap, 
    .section-feature-solution .wrap {
        padding: 56px 20px;
        margin-bottom: 100px;
    }
    .section-feature-solution .wrap-title .en {
        left: 0;
    }
    .section-feature-solution .wrap-title .title {
        margin-left: 70px;
    }

    .section-feature-solution .shape-line,
    .section-feature-solution .box-solution.cost .shape-line {
        top: 28px;
        left: 58px;
        width: 2px;
        height: 13%;
    }
    .section-feature-solution .box-solution ,
    .section-feature-solution .box-solution.cost{
        position: relative;
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-feature-solution .shape-blue ,
    .section-feature-solution .box-solution.cost .shape-blue {
        bottom: -35px;
        left: -15px;
        width: 40%;
    }
    .section-feature-solution .wrap-title .en {
        font-size: clamp(28px, 28 / 500 * 100vw, 50px);
        white-space: nowrap;
    }
    .section-feature-solution .wrap-title .en .num {
        font-size: clamp(103px, 103 / 500 * 100vw, 170px);
    }
    .section-feature-solution .wrap .box-text .inner-text {
        margin-bottom: 90px;
    }
}
@media screen and (max-width: 500px) {
    .section-feature-solution .box-solution, 
    .section-feature-solution .box-solution.cost {
        padding-left: 5px;
        padding-right: 5px;
    }
    .section-feature-solution .shape-blue, 
    .section-feature-solution .box-solution.cost .shape-blue {
        bottom: -20px;
        left: -20px;
        width: 50%;
    }
    .common-btn-blue .pc-none{
        display: block;
    }
    .section-feature-solution .box-solution.cost .common-btn-blue{
        width: 243px;
    }
    .section-feature-solution .wrap .box-img .sub-img,
    .section-feature-solution .box-solution.cost .wrap .box-img .sub-img  {
        top: -80px;
    }
    .section-feature-solution .shape-line,
    .section-feature-solution .box-solution.cost .shape-line {
        top: 40px;
        height: 10%;
    }
    .section-feature-solution .box-solution.cost .wrap .box-img img {
        width: 80%;
    }
}


/*********************
* 高精度切削加工ページ *
*********************/
.section-precision-first-cta .wrap-circle{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 80px;
    list-style: none;
    background-color: var(--color-main);
    border-radius: 5px;
    padding: 46px 1em 43px;
    position: relative;
/*    max-width: 1000px;*/
    margin: 0 auto 56px;
}
.section-precision-first-cta .wrap-circle .circle{
    border-radius: 100px;
    color: var(--color-main);
    background-color: #fff;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: var(--color-point);
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;

    z-index: 1;
}
.section-precision-first-cta .wrap-circle::after{
    content: "";
    background: url( "./images/precision/dots.png" )  no-repeat center center / contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 509px;
    height: 100%;
    z-index: 0;
}
.section-precision-first-cta .wrap-circle::after{
    content: "";
    position: absolute;
    border: solid 1px #33A6EA;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98.8%;
    height: 95.1%;
    border-radius: 6px;
    z-index: 0;
}
@media screen and (max-width: 767px) {
    .section-precision-first-cta .wrap-circle {
        gap: 60px;
    }
    .section-precision-first-cta .wrap-circle .circle {
        width: 130px;
        height: 130px;
        font-size: 18px;
    }
}

@media screen and (max-width: 600px) {
    .section-precision-first-cta .wrap-circle {
        gap: 5%;
    }
    .section-precision-first-cta .wrap-circle .circle {
        width: 100px;
        min-width: 100px;
        height: 100px;
        font-size: 16px;
    }
}
@media screen and (max-width: 400px) {
    .section-precision-first-cta .wrap-circle {
        gap: 3%;
    }
    .section-precision-first-cta .wrap-circle .circle {
        width: 80px;
        min-width: 80px;
        height: 80px;
        font-size: 14px;
    }
}

.section-precision-first-cta .btn-contact{
    max-width: 349px;
    width: 100%;
}
.section-precision-first-cta.logo-bg::after {
    bottom: 0;
}
.section-precision-worries .wrap{
    max-width: 835px;
    padding: 56px 10px  var(--space-lg) var(--space-base) ;
}
.section-precision-worries .box-img{
    position: absolute;
    right: 0;
    top: 40px;
}
.section-precision-worries .check-list{
    list-style: none;
    max-width: 522px;
}
.section-precision-worries .wrap .title {
    max-width: 522px;
    margin-bottom: var(--space-xs);
    font-size:clamp(20px, 20 / 500 * 100vw ,24px);
    font-weight: bold;
    line-height: 1.8;
}
.section-precision-worries .check-two-colors {
    font-size: 20px;
}
@media screen and (max-width: 1250px) {
    .section-precision-worries .box-img {
        right: 20px;
        top: 35%;
        width: 37%;
    }
}
@media screen and (max-width: 991px) {
    .section-precision-worries .wrap {
        padding: 56px 10px 56px 40px;
        max-width: 700px;

    }
    .section-precision-worries .check-two-colors {
        font-size:clamp(15px, 15 / 450 * 100vw ,18px);
        margin-bottom: 24px;
    }
    .section-precision-worries .box-img {
        top: 48%;
        width: 32%;
    }
}

@media screen and (max-width: 830px) {
    .section-precision-worries .wrap-intro {
        display: flex  ;
        flex-direction: column-reverse;
    }
    .section-precision-worries .wrap {
        max-width: 539px;
        width: 100%;
        margin: auto;
        padding: 40px 20px;
    }
    .section-precision-worries .box-img {
       position: unset;
        width: 100%;
        max-width: 100%;
    }
}

.section-precision-point,
.section-difficult-point{
    margin-bottom: var( --space-xl);

    .wrap-point {
        margin-bottom: var(--space-xl);
    }
    .wrap-point .sub-title{
        margin: auto;
        margin-bottom: var(--space-lg);
        max-width: 1000px;

    }
    .wrap-point .wrap {
        display: flex;
        gap: var(--space-base);
    }

    .wrap-point .wrap .box{
        background-color: #fff;
        width: 50%;
        padding: 56px var(--space-md);
        display: flex;
        flex-direction: column;
    }
    .wrap-point .wrap2 .box img{
        margin-top: auto;
    }
    .wrap-point .wrap .text{
        margin-bottom: var(--space-xs);
    }
    .wrap-point .wrap .text2{
        font-weight: bold;
        margin-bottom: var(--space-2xs);
        padding-bottom: 10px;
        position: relative;
    }
    .wrap-point .wrap .text2::before{
        position: absolute;
        content: "";
        width: 40px;
        height: 2px;
        background-color: var(--color-main);
        left: 0;
        bottom: 0;
    }
    .wrap-point .wrap .text3{
        font-weight: bold;
        margin-bottom: var(--space-sm);
    }
    .wrap-point .wrap .text3 span{
        text-decoration: underline;
        text-decoration-color: var(--color-point);
        text-decoration-thickness: 2px;
        text-underline-offset: 8px;
        margin-right: 18px;
    }

    /*difficultページのPoint2*/
    .wrap-point2 .wrap .box {
        background-color: transparent;
        width: 100%;
        padding: 0;
    }
    .wrap-point2 .wrap .title{
        font-size: 18px;
        margin: var(--space-3xs) auto;
        text-align: center;
    }

    .wrap-point2 .wrap {
        margin-bottom: var(--space-xs);
        gap: var( --space-sm);
    }
    .wrap-point2.mb0 ,
    .wrap-point2.mb0 .wrap{
        margin-bottom: 0;
    }
    @media screen and (max-width: 1250px) {
        .wrap-point .wrap {
            gap: 40px;
        }
    }
    @media screen and (max-width: 900px) {
        .wrap-point .wrap {
            gap: 20px;
        }

        .wrap-point .wrap .box {
            width: 50%;
            padding: 44px 32px;
        }

        /*difficultページのPoint2*/
        .wrap-point2 .wrap .box {
            padding: 0;
        }
    }
    @media screen and (max-width: 767px) {
        .wrap-point .wrap {
            flex-direction: column;
        }
        .wrap-point .wrap .box {
            width: 100%;
        }
    }
}

.section-difficult-point .tb-comment{
    margin-top: var(--space-3xs);
}
.section-difficult-point .tb-comment{
    margin-top: var(--space-3xs);
}
.section-difficult-point .solution-list{
    .check-two-colors{
        font-size: 20px;
        color: var(--color-main);
        margin: var( --space-4xs) 0 var( --space-2xs);
    }
}
.section-difficult-point .solution-list{
    list-style: none;
}
.section-difficult-point .solution-list li:not(:last-child){
    padding-bottom: var(--space-xs);
    margin-bottom: var( --space-xs);
    border-bottom: solid 1px #E3E3E3;
}
.page-difficult .section-precision-case,
.page-difficult .section-common-first-cta{
    background-color: #fff;
}

.page-difficult .section-common-first-cta.section-precision-first-cta{
    background-color: #F0F0F0;
}

@media screen and (max-width: 991px) {
    .page-difficult .section-precision-worries .check-list {
        width: 75%;
    }
}
@media screen and (max-width: 991px) {
    .page-difficult .section-precision-worries .check-list {
        width: 100%;
    }
}

/*共通：flex*/
.common-wrap-flex{
    list-style: none;
    display: flex;
    gap: var(--space-lg) var(--space-sm) ;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
    justify-content: center;
}
.common-wrap-flex.row4 .box{
    width: 272px;
}
.common-wrap-flex.row3 .box{
    width: 376px;
    width: 31.0%;
}
.common-wrap-flex figcaption{
    font-weight: bold;
    padding: var(--space-3xs) 0 0;
}
@media screen and (max-width: 1250px) {
    .common-wrap-flex{
        gap: 36px 20px;
    }
}
@media screen and (max-width: 767px) {
    .common-wrap-flex.row3 .box,
    .common-wrap-flex.row4 .box{
        width: 47.5%;
    }
    .common-wrap-flex.row4 .box img{
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .common-wrap-flex.row4 .box,
    .common-wrap-flex.row3 .box{
        width: 100%;
    }
    .common-wrap-flex .box img{
        width: 100%;
    }
}
.table-size,.table-materials {
    margin-bottom: var(--space-lg);
    overflow-x: auto;
    padding-bottom: 20px;
}
.table-size table  {
    min-width: 847px;
}
.table-materials table  {
    min-width: 847px;
}
.table-size table th {
    padding: 6px 20px;
}
.table-size table td {
    padding: var( --space-2xs) 24px var( --space-xs) ;
    margin: auto;
    line-height: 2.25;
}
.table-size table td p{
    margin: auto;
    width: fit-content;
    line-height: 2.25;

}
.table-size table td p.tb-line-height-low{
    line-height: 1.7;
}

.table-size table th, 
.table-size table td {
    width: 25%;
}

.table-materials table th {
    width: 250px;
    text-align: left;
    padding-left: var(--space-lg);
}
.table-materials table td {
    padding-left: var( --space-sm);
    font-size: 14px;
}
.table-materials table tr td {
    font-size: 14px;
}
@media screen and (max-width: 768px) {
  .table-materials table tr td {
    font-size: 14px !important;
  }
}

/*　共通：加工事例　*/
.case-list{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: var( --space-sm);
    margin-bottom: var(--space-lg);
}
.case-list .box {
    width: 272px;
}

.case-list .box a{
    text-decoration: none;
}
.case-list .box-img{
    margin-bottom: var(--space-3xs);
    width: 272px;
    height: auto;
    aspect-ratio: 272/180;
}
.case-list .box-img .img{
    border: solid 4px #DBDBDB;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-list .name{
    color: var(--color-text);
    text-align: center;
    font-size:clamp(15px, 15 / 600 * 100vw ,18px);
    font-weight: bold;
    line-height: 1.6;
}
@media screen and (max-width: 1250px) {
    .case-list{
        gap: 20px;
    }
    .case-list .box, 
    .case-list .box-img {
        width: calc((100vw - 100px) / 4)   ;
    }
}

@media screen and (max-width: 991px) {
    .case-list .box, 
    .case-list .box-img {
        width: calc((100vw - 100px) / 4)   ;
    }
}
@media screen and (max-width: 767px) {
    .case-list .box, 
    .case-list .box-img {
        width: calc((100vw - 80px) / 2) ;
    }
}
@media screen and (max-width: 500px) {

    .case-list .box, 
    .case-list .box-img {
        width: 100% ;
    }
}


/*共通：*/
.common-wrap-reason{
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}
.common-wrap-reason .wrap-reason-box {
    position: relative;
    overflow: hidden;
}
.common-wrap-reason .reason-text{
    position: absolute;
    top: 50px;
    left: 32px;
    padding-left: 13px;
    color: #fff;
    text-decoration: none;
    border-left: solid 2px #fff;
    height: 100%;
    overflow: hidden;
}
.common-wrap-reason .reason-text .num{
    font-weight: 300;
    font-family: poppins, sans-serif;
}
.common-wrap-reason .reason-text .title{
    font-weight: bold;
}
.common-wrap-reason .wrap-reason-box .common-btn-maru{
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    border: solid #fff 1px;
}
.common-wrap-reason .wrap-reason-box .common-btn-maru::after {
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}

@media screen and (max-width: 1200px) {
    .common-wrap-reason{
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .common-wrap-reason .reason-text .title {
        font-size: clamp(16px, 16 / 767 * 100vw, 18px);
    }

}
@media screen and (max-width: 1000px) {
    .common-wrap-reason .reason-text {
        top: 44px;
        left: 20px;
    }
    .common-wrap-reason .wrap-reason-box .common-btn-maru {
        bottom: 8px;
        right: 8px;
        width: 24px;
        height: 24px;        
    }
    .common-wrap-reason .reason-text .num {
        line-height: 1.1;
    }
}

@media screen and (max-width: 767px) {
    .common-wrap-reason {
        flex-wrap: wrap;
    }
    .wrap-reason-box {
        max-width: 300px;
        width: 47%;
    }
    .wrap-reason-box img{
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .common-wrap-reason {
        gap: 10px;
    }
}


.section-precision-case .heading-bottom-bar{
    margin-bottom: var( --space-lg);
}
.section-precision-case .common-btn-blue{
    width: 243px;
}

.section-main-equipment .sub-title,
.section-quality-assurance .sub-title{
    margin-bottom: var( --space-lg);
}
.section-quality-assurance .common-btn-blue{
    width: 265px;
}

.common-link-button{
    list-style: none;
    display: flex;
    gap: 1px;
    width: 100%;
}
.common-link-button .btn{

    width: 100%;
}
.common-link-button .btn a{
    font-size:clamp(16px, 16 / 900 * 100vw ,18px);
    font-weight: 500;
    text-align: center;
    color: #fff;
    background-color: var(--color-main);
    width: 100%;
    padding: 22px 16px ;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.common-link-button .btn a .arrow {
    transform: translateY(-25%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    display: block;
    content: '';
    transition: transform .3s;
}

@media screen and (max-width: 810px) {
    .page-management-system{
         .common-link-button {
            flex-wrap: wrap;
            justify-content: center;
        }
       .common-link-button .btn {
            width: 33%;
        }
        .common-link-button .btn:nth-child(4) {
            width: 50%;
        }
        .common-link-button .btn:last-child {
            width: 49%;
        }
    }
    .page-vietnam{
        .common-link-button {
            flex-wrap: wrap;
            justify-content: center;        
        }
        .common-link-button .btn {
            width: 33%;
        }
    }
}
@media screen and (max-width: 767px) {
    .common-link-button {
        flex-wrap: wrap;
        justify-content: center;        
    }
    .common-link-button .btn {
        width: 33%;
    }
    .common-link-button .btn a{
        padding: 18px 6px ;
        font-size:clamp(14px, 14 / 400 * 100vw ,16px);
    }
}
@media screen and (max-width: 600px) {
    .page-plug-jac{
        .common-link-button .btn {
            width: 49%;
        }
        .common-link-button .btn:last-child {
            width: 98%;
        }
    }
    .page-management-system{
        .common-link-button .btn:nth-child(4) {
            width: 54%;
        }
        .common-link-button .btn:last-child {
            width: 45%;
        }
    }
}
.section-plug-jac-features .common-link-button .btn a{
    font-size:clamp(16px, 16 / 767 * 100vw ,20px);
}
@media screen and (max-width: 767px) {
    .section-plug-jac-features .common-link-button .btn a{
        font-size:clamp(13px, 13 / 375 * 100vw ,16px);
    }
    .common-link-button .btn a .arrow {
        width: 7px;
        height: 7px;
    }
}

.section-plug-jac-features .wrap-img{
    position: relative;
    z-index: 1;
    max-width: 1519px;
    width: 100%;
    margin: var(--space-lg) auto 0;
    .img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: auto;
        display: block;
    }
    .title{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        font-weight: bold;
        width: 100%;
        padding: 0 40px;
        z-index: 1;
    }
    .en{
        font-size: 116%;
    }
    .shape-blue1{
        position: absolute;
        clip-path: polygon(0 0, 0% 100%, 100% 0);
        background-color: rgb(3, 143, 225, 0.78);
        top: 0;
        left: 0;
        width: 14%;
        height: 100%;
        z-index: 0;
    }
    .shape-blue2{
        position: absolute;
        clip-path: polygon(100% 0, 0 100%, 100% 100%);

        background-color: rgb(3, 143, 225, 0.78);
        top: 0;
        right: 0;
        width: 14%;
        height: 100%;
        z-index: 0;
    }
}
.section-plug-jac-features{
    .wrap-features{
        display: flex;
        justify-content: center;        
        gap: 40px;
        list-style: none;
        margin: -100px auto 64px;
    }
    .wrap-features .box{
        background-color: #fff;
        width: calc((100% - 80px) / 3 );
        padding: 50px 24px 40px;
        position: relative;
    }
    .wrap-features .box .num{
        font-family: poppins, sans-serif;
        font-size: 71px;
        font-weight: 600;
        line-height: 1.4;
        color: var(--color-main);
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
    }
    .wrap-features .box .title{
        color: var(--color-main);
        margin-bottom: var(--space-xs);
        text-align: center;
    }
    .wrap-features .box .text{
        font-weight: 400;
    }
    .common-wrap-flex{
        margin-bottom: 0;
    }
}
@media screen and (max-width: 1250px) {
    .section-plug-jac-features .wrap-img {
        padding: 0 20px;
    }
    .section-plug-jac-features .wrap-img {
        .shape-blue1 {
            left: 20px;
        }
        .shape-blue2 {
            right: 20px;
        }
    }
}
@media screen and (max-width: 991px) {
    .section-plug-jac-features {
        .wrap-features{
            gap: 20px;
            margin: -80px auto 64px;
        }
        .wrap-features .box{
            width: calc((100% - 40px) / 3 );
            padding: 50px 20px 40px;
        }
    }
}
@media screen and (max-width: 767px) {
    .section-plug-jac-features {
        .wrap-features{
            flex-direction: column;
            gap: 60px;
            margin: -60px auto 64px;
        }
        .wrap-features .box{
            width: 94%;
            max-width: 500px;
            margin: auto;
        }
        .wrap-img {
            height: 450px;
        }
    }
}

.section-plug-jac-lineup{
    .wrap{
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
        margin-bottom: 56px;
    }
    .wrap .box-img{
        width: 37.5%;
    }
    .wrap .box-text{
        width: 62.5%;
    }
    .wrap .box-text .text{
        margin-bottom: 40px;
    }
    .wrap-list{
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 40px;
        list-style: none;
        margin-bottom: var(--space-md);
    }
    .wrap-list li{
        width: 50%;
    }
    .block2{
        margin-top: var(--space-xl);
    }
    .block-last{
        margin-bottom: var(--space-xl);
    }
    .btn-wide-bg {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
        background-color: #F0F0F0;
        padding: 20px 10px;
        margin-top: 20px;
    }
    .btn-wide-bg .common-btn-blue{
        margin: 0 auto;
    }
}
@media screen and (max-width: 767px) {
    .section-plug-jac-lineup {
        .wrap {
            flex-direction: column;
        }
        .wrap .box-img,
        .wrap .box-img img,
        .wrap .box-text{
            width: 100%;
        }
        .wrap-list {
            gap: 10px;
        }
    }
}
@media screen and (max-width: 450px) {
    .section-plug-jac-lineup{
        .common-btn-blue{
            padding-left: 30px;
            padding-right: 40px;
            font-size: 14px;
            margin: auto;
        }
    }
}
.table-plug-jac {
    overflow-x: auto;
    padding-bottom: 24px;
}
.table-plug-jac table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background: white;
    min-width: 1000px;
}
.table-plug-jac table th, 
.table-plug-jac table td {
    padding: 4px 8px;
    text-align: center;
}
.table-plug-jac .multi-line {
    line-height: 1.3;
}
.table-plug-jac .color-cell {
    font-weight: 500;
}
.table-plug-jac table th .small{
    font-size: 80%;
}


.table-plug-jac table td:first-child ,
.table-plug-jac table th:first-child {
    width: 14%;
}
.table-plug-jac table td:last-child ,
.table-plug-jac table th:last-child {
    width: 15%;
}
.table-plug-jac table td:nth-last-child(3),
.table-plug-jac table th:nth-last-child(3) {
    width: 15%;
}

.table-plug-jac2 table td:nth-last-child(4),
.table-plug-jac2 table th:nth-last-child(4) {
    width: 15%;
}
.table-plug-jac2 table td:nth-last-child(3),
.table-plug-jac2 table th:nth-last-child(3),
.table-plug-jac2 table td:nth-last-child(1),
.table-plug-jac2 table th:nth-last-child(1) {
    width: 10%;
}


.table-plug-jac3 table td:nth-child(2),
.table-plug-jac3 table th:nth-child(2) ,
.table-plug-jac3 table td:nth-last-child(2),
.table-plug-jac3 table th:nth-last-child(2) {
    width: 15%;
}
.table-plug-jac3 table td:nth-last-child(3),
.table-plug-jac3 table th:nth-last-child(3) {
    width: unset;
}

.table-plug-jac4 table td:first-child ,
.table-plug-jac4 table th:first-child ,
.table-plug-jac4 table td:nth-child(2),
.table-plug-jac4 table th:nth-child(2){
    width: 18%;
}
.table-plug-jac4 table td:nth-child(6),
.table-plug-jac4 table th:nth-child(6) {
    width: 18%;
}
.table-plug-jac4 table td:nth-child(3),
.table-plug-jac4 table th:nth-child(3),
.table-plug-jac4 table td:nth-child(4),
.table-plug-jac4 table th:nth-child(4),
.table-plug-jac4 table td:nth-child(5),
.table-plug-jac4 table th:nth-child(5) {
    width: 7%;
}

.table-plug-jac5{
    margin-top: 40px;
}
.table-plug-jac5 table td:nth-child(1),
.table-plug-jac5 table th:nth-child(1),
.table-plug-jac5 table td:nth-child(2),
.table-plug-jac5 table th:nth-child(2),
.table-plug-jac5 table td:nth-child(3),
.table-plug-jac5 table th:nth-child(3) {
    width: 30%;
    text-align: left;
    padding: 16px 16px 16px 24px;
}
.table-plug-jac5 table td:nth-child(3),
.table-plug-jac5 table th:nth-child(3) {
    width: 36%;
}
.table-plug-jac5 table td a {
    color: var(--color-text);
}

/**********************
    ベトナム工場ページ
***********************/
.section-vietnam-features {
    .sub-title{
        text-align: center;
        margin-bottom: 56px;
    }
    .box{
        background-color: #fff;
        padding: 56px 80px 64px;
        margin-top: 56px;
        margin-bottom: 80px;
    }
    .check-list{
        list-style: none;
    }
    .common-btn-blue{
        margin-bottom: 64px;
    }
    .box-img iframe {
        margin: auto;
        display: block;
        max-width: 560px;
        width: 100%;
        height: auto;
        aspect-ratio: 560 / 315;
    }
}
@media screen and (max-width: 767px) {
    .section-vietnam-features {
        .box{
            padding: 40px 40px 10px;
        }
    }
}

.section-vietnam-point{
    padding-top: var(--space-xl);
    .wrap{
        display: flex;
        gap: 40px;
        margin-bottom: 80px;
    }
    .wrap-point{
        margin-bottom: var(--space-lg);
    }
    .wrap-point2 .wrap{
        margin-bottom: 64px;
    }
    .common-wrap-flex {
        gap: var(--space-sm) var(--space-sm);
    }
    .wrap-point .box-img,
    .wrap-point .box-text{
        width: 50%;
    }
    .wrap-size{
        margin-top: 24px;
    }
    .heading-bottom-bar3{
        margin-top: 40px;
    }
    .table-size{
        margin-bottom: 20px;
    }
    .table-size2{
        width: 50%;
        overflow: visible;
    }
    .table-size2 table{
        min-width: 500px;
    }
    .wrap-point2 .box-img{
        width:37.6%;
    }
    .wrap-point2 .box-text{
        width: 62.4%;
    }
    .wrap-point2 .box-text p:not([class]){
        margin-bottom: 1em;
    }
    .wrap-point3 .sub-title{
        margin-bottom: 76px;
    }
    .wrap-point3 .box-text{
        height: 574px;
        display: flex;
        flex-direction: column;
    }
    .wrap-point3 .box-text .img{
        margin-top: auto;
    }


}
@media screen and (max-width: 1250px) {
     .section-vietnam-point{
        .common-wrap-flex {
            gap: 36px 20px;
        }
    }
}
@media screen and (max-width: 767px) {
    .section-vietnam-point{
        padding-top: var(--space-md);
        .wrap{
            flex-direction: column;
            margin-bottom: 40px;
        }
        .wrap-point .box-img,
        .wrap-point .box-text{
            width: 100%;
        }
        .table-materials table td {
            padding-left: 12px;
            font-size: 14px;
            white-space: normal;
        }
        .table-materials table th {
            padding-left: 8px;
            padding-right: 8px;
            font-size: 14px;
            width: 103px;
            text-align: center;
        }
        .table-materials table{
            min-width: 0 !important;
        }
    }

}

@media screen and (max-width: 600px) {
    .section-vietnam-point{
       .table-size2{
            width: 100%;
            overflow: auto;
        }
        .table-size2 table{
            min-width: 426px;
        }
    }
}
.table-vietnam{
    overflow-x: auto;
    padding-bottom: 20px;
}
.table-vietnam table{
    min-width: 1000px;
}
.table-vietnam td:nth-child(2), 
.table-vietnam th:nth-child(2){
    width: 12%;
}
.table-vietnam td:nth-child(5), 
.table-vietnam th:nth-child(5){
    width: 5%;
    text-align: center;
}
.table-vietnam td:last-child,
.table-vietnam th:last-child{
    width: 8%;
    text-align: center;
}

/*  ベトナム：コストダウン事例 */
.section-vietnam-case{
    padding-bottom: 176px;
    overflow-x: hidden;

    .box-case-costdown{
        background: #FFFFFF ;
        box-shadow: 0px 0px 20px #0C233159;
        border-radius: 8px;     
        width: 1000px;
        padding: 51px 100px 56px;
    }

    .box-case-costdown {
        transition:  0.3s ease;
    }
    /*    .box-case-costdown[aria-hidden="true"] {
        opacity: 0.3;
        filter: blur(1px);
    }*/
    .slider-wrapper {
        overflow: visible;
    }

    .slider {
        position: relative;
        left: calc((100vw - 1000px) / 2 );
        overflow: visible !important;
        padding-top: 50px;
        margin-bottom: 150px;
    }
    .bx-viewport{
        overflow: visible !important;
    }

    .wrap-product{
        max-width: 798px;
        width: 100%;
        border: solid 1px #C3C3C3;
        margin: auto;
        margin-bottom: 32px;   
    }
    .wrap-product .label{
        background-color: var(--color-main);
        color: #fff;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }
    .wrap-product .box{
        display: flex;
        justify-content: space-evenly;
        gap: 40px;
        padding: 24px 0 32px;
    }
    .wrap-product .box ul{
        width: 50%;
        margin: auto;
        margin-left: 80px;
        list-style: none;
    }

    .wrap-before,
    .wrap-after{
        padding: 24px 20px 40px;
    }
    .wrap-after{
        background-color: #F4F4F4;
        margin-bottom: 40px;
    }
    .wrap-before .label,
    .wrap-after .label{
        border-radius: 50px;
        width: 104px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }
    .wrap-before .label{
        border: solid 2px #5A5A5A;
    }
    .wrap-after .label{
        border: solid 2px var(--color-main);
        border-radius: 50px;
        background-color: var(--color-main);
        color: #fff;
    }
    .wrap-after .text{        
        font-weight: bold;
    }   

    .bx-wrapper .bx-prev {
        left: calc((100vw - 1050px) / 2);
        background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2286%22%20height%3D%2286%22%20viewBox%3D%220%200%2086%2086%22%3E%20%3Cdefs%3E%20%3Cfilter%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_364%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2286%22%20height%3D%2286%22%20filterUnits%3D%22userSpaceOnUse%22%3E%20%3CfeOffset%20input%3D%22SourceAlpha%22%2F%3E%20%3CfeGaussianBlur%20stdDeviation%3D%225%22%20result%3D%22blur%22%2F%3E%20%3CfeFlood%20flood-opacity%3D%220.251%22%2F%3E%20%3CfeComposite%20operator%3D%22in%22%20in2%3D%22blur%22%2F%3E%20%3CfeComposite%20in%3D%22SourceGraphic%22%2F%3E%20%3C%2Ffilter%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22btn%22%20transform%3D%22translate(2275.832%2071)%20rotate(180)%22%3E%20%3Cg%20transform%3D%22matrix(-1%2C%200%2C%200%2C%20-1%2C%202275.83%2C%2071)%22%20filter%3D%22url(%23%E6%A5%95%E5%86%86%E5%BD%A2_364)%22%3E%20%3Cg%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_364-2%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%20364%22%20transform%3D%22translate(71%2071)%20rotate(180)%22%20fill%3D%22%23fff%22%20stroke%3D%22%23038fe1%22%20stroke-width%3D%223%22%3E%20%3Ccircle%20cx%3D%2228%22%20cy%3D%2228%22%20r%3D%2228%22%20stroke%3D%22none%22%2F%3E%20%3Ccircle%20cx%3D%2228%22%20cy%3D%2228%22%20r%3D%2226.5%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Cpath%20id%3D%22Icon_material-keyboard-arrow-right%22%20data-name%3D%22Icon%20material-keyboard-arrow-right%22%20d%3D%22M12.885%2C23.868l6.592-6.607-6.592-6.607%2C2.03-2.03%2C8.636%2C8.636L14.915%2C25.9Z%22%20transform%3D%22translate(2214.947%2010.375)%22%20fill%3D%22%23038fe1%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
        background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2256%22%20height%3D%2256%22%20viewBox%3D%220%200%2056%2056%22%3E%20%3Cg%20id%3D%22btn%22%20transform%3D%22translate(2260.832%2056)%20rotate(180)%22%3E%20%3Cg%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_364%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%20364%22%20transform%3D%22translate(2204.832)%22%20fill%3D%22%23fff%22%20stroke%3D%22%23038fe1%22%20stroke-width%3D%223%22%3E%20%3Ccircle%20cx%3D%2228%22%20cy%3D%2228%22%20r%3D%2228%22%20stroke%3D%22none%22%2F%3E%20%3Ccircle%20cx%3D%2228%22%20cy%3D%2228%22%20r%3D%2226.5%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%20%3Cpath%20id%3D%22Icon_material-keyboard-arrow-right%22%20data-name%3D%22Icon%20material-keyboard-arrow-right%22%20d%3D%22M12.885%2C23.868l6.592-6.607-6.592-6.607%2C2.03-2.03%2C8.636%2C8.636L14.915%2C25.9Z%22%20transform%3D%22translate(2214.947%2010.375)%22%20fill%3D%22%23038fe1%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
        background-size: contain;
        background-position: center center;
        width: 56px;
        height: 56px;
    }
    .bx-wrapper .bx-next {
        right: calc((100vw - 1050px) / 2);
        background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2256%22%20height%3D%2256%22%20viewBox%3D%220%200%2056%2056%22%3E%20%3Cg%20id%3D%22btn%22%20transform%3D%22translate(-2204.832)%22%3E%20%3Cg%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_364%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%20364%22%20transform%3D%22translate(2204.832)%22%20fill%3D%22%23fff%22%20stroke%3D%22%23038fe1%22%20stroke-width%3D%223%22%3E%20%3Ccircle%20cx%3D%2228%22%20cy%3D%2228%22%20r%3D%2228%22%20stroke%3D%22none%22%2F%3E%20%3Ccircle%20cx%3D%2228%22%20cy%3D%2228%22%20r%3D%2226.5%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%20%3Cpath%20id%3D%22Icon_material-keyboard-arrow-right%22%20data-name%3D%22Icon%20material-keyboard-arrow-right%22%20d%3D%22M12.885%2C23.868l6.592-6.607-6.592-6.607%2C2.03-2.03%2C8.636%2C8.636L14.915%2C25.9Z%22%20transform%3D%22translate(2214.947%2010.375)%22%20fill%3D%22%23038fe1%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
        background-size: contain;
        background-position: center center;
        width: 56px;
        height: 56px;
    }
    /* 左右のスライドを透明背景 */
    .bx-wrapper{
        position: relative;
    }
    .bx-wrapper::before{
        content: "";
        width: 1000px;
        height: 950px;
        background-image: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0.6) 90%, transparent 100%);
        z-index: 1;
        display: block;
        position: absolute;
        top: 50px;
        right: calc((50% + 560px));
    }
    .bx-wrapper::after{
        content: "";
        width: 1000px;
        height: 950px;
        background-image: linear-gradient(to left, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0.6) 90%, transparent 100%);
        z-index: 1;
        display: block;
        position: absolute;
        top: 50px;
        left: calc((50% + 560px));
    }

}
@media screen and (max-width: 1028px) {
    .section-vietnam-case {
        .box-case-costdown {
            width: 700px !important;
            margin-right: 60px;
            padding: 50px 40px 56px;
        }
        .heading-bottom-bar4 {
            margin-bottom: 40px;
        }
        .wrap-product .box {
            padding: 10px 10px 16px;
        }
        .wrap-product .box ul {
            margin-left: 20px;
            margin-top: 0;
        }

        .slider {
            left: calc((100vw - 700px) / 2 );
        }
        .bx-wrapper .bx-next {
            right: calc((100vw - 750px) / 2);
        }
        .bx-wrapper .bx-prev {
            left: calc((100vw - 750px) / 2);
        }
    }
    
}

@media screen and (max-width: 767px) {
    .section-vietnam-case {
        .box-case-costdown {
            width: 500px !important;
            margin-right: 60px;
            padding: 40px 28px 32px;
        }
        .heading-bottom-bar4 {
            font-size: 20px;
        }
        .wrap-product .label {
            height: 46px;
        }
        .wrap-product .box {
            flex-direction: column;
            gap: 0;
        }
        .wrap-product .box ul {
            margin: auto;
            width: 95%;
        }
        .wrap-before{
            padding: 10px 10px 24px;
        }
        .wrap-after{
            padding: 16px 16px 20px;
            margin-bottom: 24px;
        }
        .wrap-before .label,
        .wrap-after .label {
            font-size: 14px;
            margin-bottom: 8px;
        }

        .slider {
            left: calc((100vw - 500px) / 2 );
        }
        .bx-wrapper .bx-next {
            right: calc((100vw - 550px) / 2);
        }
        .bx-wrapper .bx-prev {
            left: calc((100vw - 550px) / 2);
        }

    }
    
}

@media screen and (max-width: 550px) {
    .section-vietnam-case {
        .box-case-costdown {
            width: 90vw !important;
            margin-right: 60px;
            padding: 40px 20px 32px;
        }

        .slider {
            left: calc((100vw -  90vw) / 2 );
        }
        .bx-wrapper .bx-next {
            right: 10px;
        }
        .bx-wrapper .bx-prev {
            left: 10px;
        }
        .bx-wrapper .bx-next,
        .bx-wrapper .bx-prev {
            top: 48%;
            width: 40px;
            height: 40px;
        }
    }
}

/*  ベトナム：サービスの流れ */
.section-vietnam-flow{
    .heading-bottom-bar{
        margin-bottom: 64px;
    }
    .flow-container {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 64px;
        flex-wrap: wrap;
    }

    .step-box {
        width: 88px;
        height: 283px;
        background: var(--color-main);
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 20px 10px;
        position: relative;
        text-align: center;
    }

    .step-number {
        font-family: poppins, sans-serif;
        font-size: 24px;
        font-weight: 600;
        color: #85CFFA;
        margin-bottom: 12px;
    }

    .step-title {
        font-size: 20px;
        font-weight: bold;
        line-height: 1.3;
        letter-spacing: 0.2em;
        writing-mode: vertical-rl;
        text-orientation: upright;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .arrow {
        position: absolute;
        right: -38px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 17px solid #AAE0FF;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
    }

    .step-box:last-child .arrow {
        display: none;
    }
}

@media (max-width: 1050px) {
    .section-vietnam-flow{
        .flow-container {
            gap: 36px;
        }

        .step-box {
            aspect-ratio: 88/283;
            width: 70px;
            height: auto;
        }
        .arrow {
            right: -27px;
            border-left: 15px solid #AAE0FF;
            border-top: 18px solid transparent;
            border-bottom: 18px solid transparent;
        }
    }
}
/* スマートフォン用のスタイル */
@media (max-width: 767px) {
    .section-vietnam-flow{
        .flow-container {
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }

        .step-box {
            width: clamp(283px,100%,480px);
            height: 88px;
            position: relative;
            flex-direction: row;
            align-items: center;
            padding: 10px 20px;
        }
        .step-number{
            position: absolute;
            margin: 0;
        }
        .step-title{
            writing-mode: horizontal-tb;
            margin: auto;
            height: auto;
        }
        .arrow {
            right: auto;
            top: auto;
            bottom: -38px;
            left: 50%;
            transform: translateX(-50%) rotate(90deg);
            border-left: 15px solid #AAE0FF;
            border-top: 18px solid transparent;
            border-bottom: 18px solid transparent;
        }

        .step-box:last-child .arrow {
            display: none;
        }
    }
}

.section-vietnam-delivery{
    .wrap{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        background-color: #fff;
        padding: 32px;
        margin-top: var(--space-lg);
    }
    .box{
        max-width: 433px;
        width: 43%;
        height: 154px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--color-main);
        color: #fff;
    }    
    .icon{
        font-size: 24px;
        font-weight: 400;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 42px;
        height: 42px;
        border-radius: 100px;
        border: solid 1px var(--color-main);
        color: var(--color-main);
    }
}
@media screen and (max-width: 991px) {
    .section-vietnam-delivery {
        .box {
            height: 130px;
        }
        .box p{
            font-size: clamp(14px, 14 / 375 * 100vw, 18px);
        }
    }
}
@media screen and (max-width: 600px) {
    .section-vietnam-delivery {
        .wrap {
            flex-direction: column;
        }
        .box {
            width: 100%;
            height: 22vw;
            min-height: 100px;
        }
    }
}
.table-overview{
    overflow-x: auto;
    padding-bottom: 20px;
    
}
.table-overview table{
    min-width: 450px;
}
.table-history table{
    min-width: 740px;
}
.table-overview .col-width{
    width: 180px;
}
.table-history .col-width{
    width: 240px;
}
.table-overview table td:first-child,
.table-overview table th:first-child {
    text-align: left;
    padding-left: 28px;
}
.table-overview .col-md-6{
    margin-top: 0;
}
.section-vietnam-location{
    .info{
        list-style: none;
        margin-bottom: var(--space-lg);
    }
    .wrap-map{
        width: 100%;
        height: 302px;
    }
    .wrap-map iframe {
        width: 100%;
        height: 100%;
    }
}
@media screen and (max-width: 600px) {
    .table-overview .col-width{
        width: 130px;
    }
    .table-history .col-width{
        width: 240px;
    }
}

.section-company-access iframe{
    width: 100%;
}
@media screen and (max-width: 767px) {
    .section-company-access iframe{
        height: 50vw;
        min-height: 300px;
    }
}

.section-products-list{
    padding-top: 96px;
}
@media screen and (max-width: 600px) {
    .section-products-list{
        padding-top: 56px;
    }
}

.products-wrap {
    margin-top: 44px;
    .product-box{
        display: flex;
        flex-direction: column;
        margin-bottom: 64px;
    }
    .product-image{
        aspect-ratio: 376/251;
        height: auto;
        border: solid 2px #fff;
        overflow: hidden;
    }
    .product-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease-in-out;
    }
    .product-image img:hover {
        transform: scale(1.1);
    }
    .product-title{
        text-decoration: none;
        color: var(--color-text);
        height: 65px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 2行で省略したい場合 */
        -webkit-box-orient: vertical;
    }
    .common-btn-border2{
        margin-top: 24px;
    }
    .product-category{
        color: #fff;
        background-color: var(--color-main);
        font-size: 14px;
        width: fit-content;
        min-width: 112px;
        height: 31px;
        padding: 1px 14px;
        margin-bottom: 16px;
    }
    .no-products {
        margin: 0 auto 40px;
    }
}

/*加工事例のタクソノミー*/
.wrap-taxonomy{
    display: flex;
    margin-bottom: 40px;
    .box-title{
        min-width: 152px;
        background-color: #EBEBEB;
        padding: 24px 16px 25px 48px;
        font-size: 14px;
        font-weight: bold;
        line-height: 1.5;
    }
    .box-taxonomy{
        padding: 25px 48px ;
        background-color: #fff;
        flex-grow: 1;
    }
    .taxonomy-list{
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        text-decoration: none;
    }
    .taxonomy-list li{
        line-height: 1.2;
    }
    .taxonomy-list a{
        text-decoration: none;
        color: var(--color-text);
        font-size: 14px;
        line-height: 1.4;
        position: relative;
        margin-right: 20px;
    }
    .taxonomy-list a::after{
        content: '';
        width: 10px;
        height: 10px;
        border-top: 2px solid var(--color-main);
        border-right: 2px solid var(--color-main);
        top: 4px;
        right: -20px;
        display: block;
        position: absolute;
        transform: rotate(135deg);
    }
}
.wrap-category{
    margin-bottom: var(--space-xl);
    .box-title{
        color: #fff;
        background-color: var(--color-main);
    }
    .box-category{
        background-color: #F4F4F4;
    }
}
@media screen and (max-width: 767px) {
    .wrap-taxonomy {
        flex-wrap: wrap;
        .box-title ,.box-taxonomy{
            width: 100%;
        }
    }
}
@media screen and (max-width: 600px) {
    .wrap-taxonomy {
        .box-title {
            padding: 20px 20px;
        }
        .box-taxonomy {
            padding: 25px 20px;
        }
    }
}

/*加工事例シングル*/
.section-products-single{
    .product-detail .heading-bottom-bar{
        margin-bottom: 10px;
    }
    .product-images img{
        width: 100%;
        height: auto;
    }
    .thumbnail-list{
        margin-top: 20px;
        row-gap: 20px;
    }
    .thumbnail-list .wrap-img{
        width: 100%;
        height: auto;
        aspect-ratio: 228/150;
    }
    .thumbnail-list img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .heading-bottom-bar3{
        margin: var( --space-lg) 0 var( --space-sm);
    }
    .heading-bottom-bar3.mt0{
        margin-top: 0;
    }
    .btn-all{
        width: 193px;
        height: 56px;
        margin: 32px 0 ;
        font-size: 14px;
    }
    .spec-table-wrapper{
        overflow-x: auto;
        padding-bottom: 20px;
    }
    .spec-table{
        min-width: 600px;
    }
    .spec-table th{
        width: 25%;
        text-align: left;
        padding-left: 70px;
    }
    .spec-table td{
        padding-left: 40px;
    }
    .wrap-taxonomy:last-child{
        margin-bottom: 0;
    }

}

@media screen and (max-width: 991px) {
    .section-products-single{
        .spec-table th,
        .spec-table td{
            padding-left: 20px;
        }
    }
}
@media screen and (max-width:575px) {
    .section-products-single{
        .btn-all {
            width: 96%;
            height: 58px;
            max-width: 376px;
            padding: 13px;
            font-size: 16px;
            margin: 0 auto 32px;
        }
        .thumbnail-list{
            padding-left: 5px;
            padding-right: 5px;
        }
        .thumbnail-list .wrap-img{
            padding-left: 5px;
            padding-right: 5px;
        }
    }
}
/*****************
    お知らせ一覧
******************/
.section-news-list{
    .list_news .box{
        display: flex;
        align-items: baseline;
        gap: 24px;
        padding: 40px 0;
        border-bottom: solid 1px #E5E5E5;
    }
    .list_news .box:first-child{
        border-top: solid 1px #E5E5E5;
    }
    .wrap-date{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }
    .date{
        color: #919191;
        font-family: poppins, sans-serif;
    }
    .category{
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--color-main);
        color: #fff;
        font-size: 12px;
        min-width: fit-content;
        width: fit-content;
        height: 22px;
        padding: 0 26px;
        line-height: 1.0;
    }
    .title{
        color: var(--color-text);
        text-decoration: none;
    }
}
@media screen and (max-width: 767px) {
.section-news-list {
    .list_news .box {
        padding: 28px 0;
        flex-direction: column;
        gap: 10px;
    }
}
}

/********************
    お問い合わせ
********************/
.wrap-tel{
    display: flex;
    align-items: center;
    margin: 40px auto 64px;
    width: 100%;
    .box-label{
        background-color: var(--color-main);
        color: #fff;
        width: 40%;
        height: 105px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size:clamp(20px, 20 / 767 * 100vw ,22px);
        font-weight: 500;
        padding: 0 0 0 20px;
        position: relative;
    }
    .box-label::after{
        content: "";
        clip-path: polygon(0 0, 0 100%, 100% 0);
        position: absolute;
        top: 0;
        right: -25px;
        width: 25px;
        height: 100%;
        background-color: var(--color-main);
    }
    .box{
        background-color: #F4F4F4;
        width: 60%;
        height: 105px;

    }
    .box a{
        text-decoration: none;
        color: var(--color-text);
        width: 100%;
        height: 100%;
        display: block;
        padding-top: 36px;
        padding-left: 110px;
    }
    .box .tel{
        font-family: lato, sans-serif;
        font-size: 28px;
        font-weight: bold;
        position: relative;
        padding-left: 16px;
    }
    .open{
        font-size: 14px;
        font-weight: 400;
        margin-left: 20px;
    }
    .box .tel::before {
        width: 15px;
        height: 21px;
        content: '';
        background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.836%22%20height%3D%2223.301%22%20viewBox%3D%220%200%2015.836%2023.301%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_29%22%20data-name%3D%22%E3%83%91%E3%82%B9%2029%22%20d%3D%22M91.168%2C32.016c4.316%2C8.229%2C9.165%2C9.076%2C10.575%2C8.336l.368-.193-3.3-6.294c-.121.062-.244.125-.369.191-1.137.6-2.272-1.127-3.727-3.9s-2.227-4.687-1.091-5.283c.126-.065.247-.13.367-.194l-3.3-6.3-.368.193C88.91%2C19.315%2C86.852%2C23.787%2C91.168%2C32.016Zm12.94%2C7.1c.545-.286.246-.912-.064-1.5l-2.218-4.228c-.238-.455-.633-.711-.952-.544-.2.105-.666.326-1.266.624l3.3%2C6.282Zm-8.1-15.548c.319-.167.331-.638.093-1.092s-2.217-4.228-2.217-4.228c-.31-.591-.655-1.192-1.2-.906l-1.2.632%2C3.3%2C6.283C95.362%2C23.925%2C95.809%2C23.668%2C96.009%2C23.563Z%22%20transform%3D%22translate(-88.574%20-17.262)%22%20fill%3D%22%23282828%22%2F%3E%3C%2Fsvg%3E');
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 20px;
        left: 0px;
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 920px) {
    .wrap-tel {
        .box a {
            padding-left: 65px;
        }
    }
}
@media screen and (max-width: 767px) {
    .wrap-tel {
        .box a {
            display: flex;
            flex-direction: column;
            gap: 3px;
            padding-top: 28px;
        }
        .box .tel::before {
            top: 16px;
        }
        .box-label{
            font-size:clamp(16px, 16 / 600 * 100vw ,20px);
            padding: 0 0 0 10px;
        }
    }
}

@media screen and (max-width: 600px) {
    .wrap-tel {
        flex-direction: column;
        .box {
            width: 100%;
        }
        .box-label{
            font-size:clamp(16px, 16 / 375 * 100vw ,20px);
            width: 100%;
            height: 65px;
        }
        .box-label:after{
            content: none;
        }
        .box a {
            padding: 0;
            justify-content: center;
            align-items: center;
        }
    }
}

/**********************
    会社概要
***********************/
.section-company-overview{
    .table-overview{
        margin-top: 40px;
    }
}
.section-company-greeting{
    .message{
        text-align: center;
        max-width: 920px;
        margin: auto;
        position: relative;
        z-index: 1;
    }
    .boss{
        text-align: right;
        margin-top: 20px;
    }
}
@media screen and (max-width: 600px) {
    .section-company-greeting{
        .message{
            text-align: left;
            font-size: 16px;
        }
        .message br{
            display: none;
        }
        .message.break{
            display: inline;
        }
    }   
}
.section-company-sdgs{
    .title{
        margin-bottom: 20px;
        color: var(--color-main);
    }
    .wrap-pdf{
        margin-top: 20px;
    }
    .wrap-pdf a{
        display: block;
        color: var(--color-text);
        margin-bottom: 8px;
        text-underline-offset: 5px;
        position: relative;
        width: fit-content;
    }
    .wrap-pdf a::after{
        content: '';
        margin-left: 5px;
        background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230.621%22%20height%3D%2230.621%22%20viewBox%3D%220%200%2030.621%2030.621%22%3E%20%3Cpath%20id%3D%22Icon_akar-link-out%22%20data-name%3D%22Icon%20akar-link-out%22%20d%3D%22M20.25%2C15.75%2C31.5%2C4.5M24%2C4.5h7.5V12m0%2C9v7.5a3%2C3%2C0%2C0%2C1-3%2C3H7.5a3%2C3%2C0%2C0%2C1-3-3V7.5a3%2C3%2C0%2C0%2C1%2C3-3H15%22%20transform%3D%22translate(-3%20-2.379)%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E');
        background-repeat: no-repeat;
        background-size: cover;
        width: 18px;
        height: 18px;
        position: absolute;
        right: -30px;
        top: 7px;
    }    
}
@media screen and (max-width: 767px) {
    .wrap{
        gap: 40px;
    }
    .wrap-pdf {
        font-size: 14px;
    }
    .wrap-pdf a::after {
        width: 14px;
        height: 14px;
        right: -24px;
        top: 9px;
    }
}

.section-company-philosophy {
    .wrap{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 60px 40px;
    }
    .wrap .box-text{
        width: calc((100% - 40px) / 2 );
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        padding: 30px 20px;
    }
    .wrap .box-text1{
        width: 100%;
    }
    .heading-bottom-bar5{
        margin-bottom: 16px;
    }
    .wrap .box-text p{
        text-align: center        ;
    }
    .wrap .box-text .blue{
        color: var(--color-main);
        font-weight: bold;
    }
    .wrap .box-text .en{
        font-family: poppins, sans-serif;
    }
    .wrap .box-text .text{
        margin-top: 10px;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 767px) {
    .section-company-philosophy {
        .wrap .box-text {
            width: 100%;
        }
    }
}
@media screen and (max-width: 600px) {
    .section-company-philosophy {
       .wrap {
        gap: 40px 40px;
        }
        .wrap .box-text {
            padding: 20px 20px;
        }
    }
}

/*********************
    管理体制ページ
*********************/
.section-management-system-quality{
    .heading-bottom-bar5{
        margin: 60px auto 40px;
    }
}
.wrap-seqdc{
    display: flex;
    gap:24px;
    margin: 40px auto;
    .box{
        background-color: #E9F3F6;
        border-radius: 20px;
        width: 20%;
        padding: 20px 24px 28px;
    }
    .alphabet{
        font-family: poppins, sans-serif;
        font-size: 70px;
        font-size:clamp(58px, 58 / 800 * 100vw ,70px);
        font-weight: 600;
        color: var(--color-main);
        opacity: 0.6;
        text-align: center;
        line-height: 1;
        border-bottom: solid 1px #B8CADC;
        padding-bottom: 10px;
        margin-bottom: 8px;
    }
    .title{
        font-size:clamp(20px, 20 / 1000 * 100vw ,24px);
        font-weight: bold;
        text-align: center;
        line-height: 2.2;
        color: var(--color-main);
    }
    .text{
        font-size: 14px;
        line-height: 1.6;
        color: #484848;
    }
}
@media screen and (max-width: 991px) {
    .wrap-seqdc{
        flex-wrap: wrap;
        justify-content: center;
        .box{
            min-width: 150px;
            width: 30%;
        }
        .alphabet{
            font-size:clamp(50px, 50 / 600 * 100vw ,58px);
        }
        .title{
            font-size:clamp(18px, 18 / 600 * 100vw ,20px);
        }
        .text{
            font-size:clamp(12px, 12 / 400 * 100vw ,14px);
        }
    }
}

@media screen and (max-width: 600px) {
    .wrap-seqdc{
        gap: 10px;
        .box{
            max-width: 200px;
            min-width: 120px;
            width: 48%;
        }
    }
}

.page-management-system{
    .heading-bottom-bar5{
        margin: var(--space-lg) auto var(--space-sm);
    }
    .heading-bottom-bar3{
        margin: var(--space-sm) auto var(--space-2xs);
    }
}
.section-management-system-control{
    margin-top: var(--space-xl);

    .wrap{
        margin: 40px auto var(--space-lg);
    }
    .wrap-feature {
        list-style: none;
    }
    .wrap-feature .box{
        width: 100%;
        margin-bottom: 20px;
        background-color: #F2F2F2;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 28px;
        padding-right: 24px;
        font-size:clamp(14px, 14 / 600 * 100vw ,16px);
    }
    .wrap-feature .box .num{
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 90px;
        height: 90px;
        padding: 16px;
        font-family: poppins, sans-serif;
        font-size: 50px;
        font-weight: 500;
        color: #fff;
        background-color: var(--color-main);
        text-align: center;
        line-height: 1;    
    }
    .wrap-table tr th:first-child,
    .wrap-table tr td:first-child{
        width: 15%;
    }
    .wrap-table tr th:nth-last-child(2),
    .wrap-table tr td:nth-last-child(2){
        width: 7%;
        text-align: center;
    }
    .wrap-table tr th:nth-last-child(5),
    .wrap-table tr td:nth-last-child(5){
        width: 12%;
    }
    .wrap-table tr th:nth-last-child(1),
    .wrap-table tr td:nth-last-child(1){
        width: 12%;
        text-align: center;
    }
}
@media screen and (max-width: 991px) {
    .section-management-system-control{
        .wrap-feature .box .num{
            height: 100px;
        }
    }
}
@media screen and (max-width: 767px) {
    .section-management-system-control{
        .wrap-feature .box .num{
            height: 150px;
        }
    }
}
@media screen and (max-width: 500px) {
    .section-management-system-control{
        .container_s{
            display: contents;
        }
        .wrap-feature .box {
            gap: 10px;
            padding-right: 10px;
        }
        .wrap-feature .box .num{
            min-width: 70px;
            height: 170px;
        }
    }
}

@media screen and (max-width: 430px) {
    .section-management-system-control{
        .wrap-feature .box:first-child .num,
        .wrap-feature .box:nth-child(3) .num{
            height: 220px;
        }
    }
}

.section-management-system-room{
    .wrap{
        margin: 40px auto var(--space-lg);
    }
    .wrap .box-text{
        margin-top: 8px;
    }
    .wrap-table{
        margin-bottom: var(--space-lg);
    }
    .wrap-instructions{
        margin-top: 16px;
    }
    .wrap-instructions .label{
        width: 100%;
        background-color: var(--color-main);
        color: #fff;
        text-align: center;
        padding: 4px;
    }
    .wrap-instructions .text{
        list-style: none;
        padding: 16px;
        background-color: #fff;
    }
    .wrap-table{
        overflow-x: auto;
        padding-bottom: 20px;
    }
    .wrap-table table{
        min-width: 1000px;
    }
    .wrap-table tr th:nth-last-child(3),
    .wrap-table tr td:nth-last-child(3){
        width: 14%;
    }
    .wrap-table tr th:nth-last-child(2),
    .wrap-table tr td:nth-last-child(2){
        width: 8%;
        text-align: center;
    }
    .wrap-table tr th:last-child,
    .wrap-table tr td:last-child{
        width: 12%;
        text-align: center;
    }
    .wrap-equipment.row {
        row-gap: 20px;
    }
}

.section-management-system-production{    
    .wrap {
        margin-bottom: 60px;
    }
    .wrap .box .inner{
        background-color: #fff;
        padding: 36px 24px;
        box-shadow: rgba(99, 99, 99, 0.25) 0px 2px 8px 0px;
        min-height: 530px;
        display: flex;
        flex-direction: column;
    }
    .wrap .box .inner .text{
        margin-bottom: var(--space-3xs);
    }
    .wrap .box .inner img{
        margin-top: auto;
    }
    .box-youtube{
        margin: var(--space-xl) auto;
    }
    .box-youtube iframe{
        width: 100%;
        height: auto;
        aspect-ratio: 560/315;
    }

    .wrap-point {
        margin-bottom: var(--space-lg);
    }
    .wrap-point .box{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 40px;
        margin-bottom: var(--space-xs);
    }
    .label-point{
        min-width: 120px;
        margin: 0;
    }
}
@media screen and (max-width: 767px) {
    .section-management-system-production{
        .wrap-point .box{
            gap: 20px;
        }
    }
}

@media screen and (max-width: 600px) {
    .section-management-system-production{
        .wrap-point .box {
            flex-direction: column;
            border: solid 1px #dbdbdb;
            padding: 40px 20px;
            margin-top: 40px;
            position: relative;
        }
        .label-point{
            position: absolute;
            top: -20px;
            
        }
    }
}
.section-management-system-case{
    .wrap-point{
        padding: var(--space-md);
        background-color: #fff;
        margin-top: var(--space-lg);
        position: relative;
    }
    .wrap-point.box2{
        margin-top: 0;
        margin-bottom: var(--space-lg);
    }
    .label-point{
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
    .labal-after{
        color: #fff;
        background-color: var(--color-main);
    }
    .last-text{
        color: var(--color-main);
    }
}
.arrow-down-thick{
    background-image: url(./images/management-system/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 70px;
    height: 70px;
    display: block;
    margin: 20px auto 40px;
}

.section-equipment-table{
    .wrap-table table{
        min-width: 870px;
    }
    .wrap-table tr th{
        font-size: 14px;
    }
    .wrap-table tr th:first-child,
    .wrap-table tr td:first-child,
    .wrap-table tr th:nth-child(2),
    .wrap-table tr td:nth-child(2){
        width: 20%;
    }    
    .wrap-table tr th:nth-child(3),
    .wrap-table tr td:nth-child(3){
        width: 17%;
    }
    .wrap-table tr th:last-child,
    .wrap-table tr td:last-child{
        width: 7%;
        text-align: center;
    }
    .wrap-equipment{
        margin-top: 60px;
    }
    .wrap-equipment .box-img figcaption {
        font-size:clamp(13px, 13 / 500 * 100vw ,16px);
        line-height: 1.4;
        margin-bottom: 10px;
    }

}





.section-equipment-qualification{
    .wrap-qualification {
        margin-top: var(--space-sm);
    }
    .wrap-qualification .label{
        background-color: var(--color-main);
        color: #fff;
        text-align: center;
        padding: 8px 10px;
    }
    .wrap-qualification .qualification{
        display: inline-block;
        width: 70%;
    }
    .wrap-qualification .num{
        display: inline-block;
        width: 25%;
        text-align: center;
    }
    .wrap-qualification .title{
        font-weight: 500;
        border-bottom: solid 1px #ccc;
        margin-bottom: 10px;
        padding-bottom: 5px;
        .qualification{
            text-align: center;
        }
    }
    .wrap-qualification .text{
        font-weight: 400;
    }
    .wrap-qualification .box-text{
        background-color: #fff;
        display: flex;
        justify-content: space-evenly;
        padding: 0 0 20px;
    }
    .wrap-qualification .box-text .inner{
        width: 50%;
        margin: 0 auto;
        padding: 0 25px;
        margin-top: 20px;
    }
    .wrap-qualification .box-text .inner:first-child{
        border-right: solid 1px #ccc;
    }
    .wrap-employee{
        margin-top: var(--space-lg);
    }
}
@media screen and (max-width: 767px) {
    .section-equipment-qualification {
        .wrap-qualification .box-text {
            flex-direction: column;
            gap: 20px;
            width: 100%;
        }
        .wrap-qualification .box-text .inner {
            width: 100%;
            max-width: 560px;
        }
        .wrap-qualification .box-text .inner-empty{
            display: none;
        }
        .wrap-qualification .box-text .inner:first-child{
            border-right: none;
        }
    }
}

@media screen and (max-width: 500px) {

    .section-equipment-qualification {
        .wrap-qualification .text,
        .wrap-qualification .title,
        .wrap-qualification .label{
              font-size: 14px;
        }
        .wrap-qualification .box-text .inner {
            padding: 0 16px;
            margin-top: 10px;
        }
        .container_s{
            display: contents;
        }
    }
}

/*サイトマップ*/
.menu-sitemap-container {
    padding-bottom: 80px;
    .menu {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(5, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .menu-item:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
    .menu-item:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
    .menu-item:nth-child(3) { grid-area: 3 / 1 / 4 / 2; }
    .menu-item:nth-child(4) { grid-area: 4 / 1 / 5 / 2; }
    .menu-item:nth-child(5) { grid-area: 5 / 1 / 6 / 2; }
    .menu-item:nth-child(6) { grid-area: 1 / 2 / 2 / 3; }
    .menu-item:nth-child(7) { grid-area: 2 / 2 / 3 / 3; }
    .menu-item:nth-child(8) { grid-area: 3 / 2 / 4 / 3; }
    .menu-item:nth-child(9) { grid-area: 4 / 2 / 5 / 3; }
    .menu-item:nth-child(10) { grid-area: 5 / 2 / 6 / 3; }
    .menu-item:nth-child(11) { grid-area: 1 / 3 / 2 / 4; }
    .menu-item:nth-child(12) { grid-area: 2 / 3 / 3 / 4; }
    .menu-item:nth-child(13) { grid-area: 3 / 3 / 4 / 4; }
    .menu-item:nth-child(14) { grid-area: 4 / 3 / 5 / 4; }
}

@media screen and (max-width: 767px) {
    .menu-sitemap-container {
        .menu {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(7, 1fr);
        }

        .menu-item:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
        .menu-item:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
        .menu-item:nth-child(3) { grid-area: 3 / 1 / 4 / 2; }
        .menu-item:nth-child(4) { grid-area: 4 / 1 / 5 / 2; }
        .menu-item:nth-child(5) { grid-area: 5 / 1 / 6 / 2; }
        .menu-item:nth-child(6) { grid-area: 6 / 1 / 7 / 2; }
        .menu-item:nth-child(7) { grid-area: 7 / 1 / 8 / 2; }
        .menu-item:nth-child(8) { grid-area: 1 / 2 / 2 / 3; }
        .menu-item:nth-child(9) { grid-area: 2 / 2 / 3 / 3; }
        .menu-item:nth-child(10) { grid-area: 3 / 2 / 4 / 3; }
        .menu-item:nth-child(11) { grid-area: 4 / 2 / 5 / 3; }
        .menu-item:nth-child(12) { grid-area: 5 / 2 / 6 / 3; }
        .menu-item:nth-child(13) { grid-area: 6 / 2 / 7 / 3; }
        .menu-item:nth-child(14) { grid-area: 7 / 2 / 8 / 3; }
    }
}

@media screen and (max-width: 550px) {
    .menu-sitemap-container {
        .menu {
            display: block;
        }

    }
}


/**********************
    ダウンロードページ
***********************/
.page-download h2.heading-bottom-bar2 {
    margin-bottom: 10px;
    font-size:clamp(22px, 22 / 375 * 100vw ,24px);
}
.page-download ol {
    padding-left: 1.5em;
    padding: 10px 0 10px 1.5em;
}
.page-download .wrap-text {
    max-width: 730px;
    margin: auto;
}
.page-download .wrap-img{
    max-width: 750px;
    margin: auto;
}
.page-download .wrap-img img{
    width: 100%;
    height: auto;
}

/***************************************+++++*/


/****************************************
3. header,nav
*****************************************/
@media screen and (max-width: 1299.98px) {
    .header_title,
    .header_center,
    .header_contact {
        display: none;
    }
}
@media screen and (min-width: 1300px) {
    .header {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        top: 0px;
        left: 50%;
        z-index: 9999;
        transform: translateX(-50%);
        width: 100%;
        transition: transform 0.5s;
    }
    .header::before {
        position: absolute;
        top: 0px;
        left: calc((50vw - 50%) * -1);
        right: calc((50vw - 50%) * -1);
        z-index: -1;
        bottom: 0px;
        width: 100vw;
        content: "";
    }
    .header_title {
        margin: 0px 0px 0px clamp(16px, 3.8vw , 52px);
        width: 150px;
    }
    .header_cta {
        margin: 0px 24px 0px auto;
        padding: 18px 0 25px;
        display: flex;
        align-items: center;
        gap: var(--space-3xs);
        max-width: 690px;
        width: fit-content;

    }
    .header_menu {
        width: 100%;
    }
    .header.js_hide {
        transform: translateX(-50%) translateY(-100%);    
    }

}
@media print, (min-width: 1300px) {
    .header {
        width: 100%;
    }
    .header_title {
        width: 270px;
    }
}
.header{
    height: 136px;
}
.header_center {
    flex-grow: 1;
    max-width: 995px;
    margin-left: auto;
    padding-bottom: 20px;

}
.header_cta_tel {
    font-family: "Poppins", "Noto Sans JP", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    text-indent: 0.5px;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 16px;
}
.header_cta_tel::before {
    width: 12px;
    height: 18px;
    margin-right: 8px;
    content: '';
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.168%22%20height%3D%2217.904%22%20viewBox%3D%220%200%2012.168%2017.904%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_29%22%20data-name%3D%22%E3%83%91%E3%82%B9%2029%22%20d%3D%22M90.567%2C28.6c3.317%2C6.323%2C7.042%2C6.973%2C8.126%2C6.405l.283-.148-2.537-4.836-.283.147c-.873.459-1.746-.866-2.864-3s-1.711-3.6-.838-4.06l.282-.149L90.2%2C18.123l-.283.148C88.832%2C18.84%2C87.25%2C22.276%2C90.567%2C28.6Zm9.943%2C5.452c.419-.22.189-.7-.049-1.154l-1.7-3.249c-.183-.349-.486-.546-.731-.418-.154.081-.512.251-.973.48l2.532%2C4.827ZM94.287%2C22.1c.245-.128.255-.491.071-.839s-1.7-3.249-1.7-3.249c-.238-.454-.5-.916-.922-.7l-.926.485%2C2.532%2C4.827C93.79%2C22.382%2C94.133%2C22.184%2C94.287%2C22.1Z%22%20transform%3D%22translate(-88.574%20-17.262)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 14px;
    left: 0px;
    transform: translateY(-50%);
}
.header_cta_tel .open{
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    display: block;
}
.header_contact{
    width: 180px;
    height: 100%;
}
.header_cta_contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var( --color-point);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    height: 100%;
    padding-top: 20px;
    font-size: 17px;
    font-size:clamp(15px, 15 / 1200 * 100vw ,17px);
}
.header_cta_contact:hover {
    color: #fff;
    opacity: 0.8;
}
.header_cta_contact::before {
    display: block;
    content: "";
    position: absolute;
    top: 46px;
    left: 50%;
    transform: translateX(-50%);
    width: 23px;
    height: 17px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_17%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2223.633%22%20height%3D%2217.78%22%20viewBox%3D%220%200%2023.633%2017.78%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_60%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2060%22%20width%3D%2219.349%22%20height%3D%2214.854%22%20transform%3D%22translate(3.295%201.011)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_42%22%20data-name%3D%22%E3%83%91%E3%82%B9%2042%22%20d%3D%22M.695.5%2C7.622%2C7.507%2C14.548.5%22%20transform%3D%22translate(5.348%203.486)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_61%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2061%22%20width%3D%2223.633%22%20height%3D%2217.78%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E')
}

.header_title_logo img {
    max-width: 150px;
}


@media print, (min-width: 1040px) {
    .header_title_logo img {
        max-width: 270px;
    }
}

@media screen and (max-width: 1440px) {
    .header_contact {
        width: 150px;
    }
    .header .btn-doc ,
    .header .btn-recruit {
        width: 190px;
        height: 48px;
    }
}

@media screen and (max-width: 1330px) {
    .header {
        height: 130px;
    }
    .header_contact {
        width: 130px;
    }
  
}
@media screen and (max-width: 1299.98px) {
    .header {
        height: 60px;
    }
    .header_title_logo {
        width: fit-content;
        padding: 5px 12px 0;
    }
    .header_title_logo img{
        width: 156px;
    }
}

.header_menu > .menu {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0px;
    margin: 0px;
}

.header_menu > .menu > li {
    position: relative;
    list-style-type: none;
    font-size:clamp(13px, 13 / 1200 * 100vw ,15px);
    font-weight: 500;
}

.header_menu > .menu > li > a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 1;
}
@media screen and (max-width: 991px) {
    .header_menu > .menu > li {
        font-size: 13px;
    }
}

.header_menu > .menu > .current-menu-item::before,
.header_menu > .menu > li:hover::before {
    position: absolute;
    bottom: -5px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 2px;
    background-color: #fff;
    content: "";
}

.header_menu .sub-menu {
    display: block;
    position: absolute;
    top: 2em;
    left: -2em;
    transform: unset;
    padding: 1em 2em 1.5em;
    background-color: rgb(0 0 0 / 50%);
    list-style: none;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    font-size: 14px;
    line-height: 1.3;
}
.header_menu .sub-menu.js_active {
    visibility: visible;
    opacity: 1;
}

.header_menu .sub-menu > li + li {
    margin-top: 1.5em;
}

.header_menu .sub-menu > li > a {
    display: block;
    color: #fff;
    text-decoration: none;
}
.header_menu .sub-menu > li > a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px
}


/*スクロールアップで表示されるメニュー*/
.header_title-scroll {
    background-color: #fff;
    width: 100vw;
    height: 70px;
    display: flex; 
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
}

/* 表示状態 */
.header_title-scroll.is_show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}



.header_title-scroll .header_menu > .menu > li > a {
    color: var(--color-text);
}
.header_title-scroll .header_title_logo img {
    width: 156px;
}
.header_title-scroll .header_title {
    margin: 0px 0px 0px 16px;
    width: 156px;
}
.header_title-scroll .btn-doc, 
.header_title-scroll .btn-recruit {
    width: clamp(122px, 138 / 1680 * 100vw, 138px);
    height: 48px;
    font-size: 13px;
}
.header_title-scroll .btn-recruit {
    border: solid 1px var(--color-text);
    color: var(--color-text);
    background-color: #fff;
}
.header_title-scroll .btn-recruit::before {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214.01%22%20height%3D%2214.01%22%20viewBox%3D%220%200%2014.01%2014.01%22%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip-path%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_63%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2063%22%20width%3D%2214.01%22%20height%3D%2214.01%22%20fill%3D%22none%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_24%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2024%22%20transform%3D%22translate(0%200)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_23%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2023%22%20transform%3D%22translate(0%200)%22%20clip-path%3D%22url(%23clip-path)%22%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_2%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%202%22%20cx%3D%226.479%22%20cy%3D%226.479%22%20r%3D%226.479%22%20transform%3D%22translate(0.526%200.526)%22%20fill%3D%22none%22%20stroke%3D%22%23282828%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_3%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%203%22%20cx%3D%221.754%22%20cy%3D%221.754%22%20r%3D%221.754%22%20transform%3D%22translate(5.25%204.29)%22%20fill%3D%22none%22%20stroke%3D%22%23282828%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_47%22%20data-name%3D%22%E3%83%91%E3%82%B9%2047%22%20d%3D%22M10.52%2C11.425a4.181%2C4.181%2C0%2C0%2C0-7.358%2C0%22%20transform%3D%22translate(0.164%200.479)%22%20fill%3D%22none%22%20stroke%3D%22%23282828%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
}
.header_title-scroll  .header_contact {
    width: 156px;
    font-size: 13px;
}
.header_title-scroll .header_cta_contact::before {
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 18px;
    height: 14px;
    background-size: contain;
    background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_17%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2223.633%22%20height%3D%2217.78%22%20viewBox%3D%220%200%2023.633%2017.78%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_60%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2060%22%20width%3D%2219.349%22%20height%3D%2214.854%22%20transform%3D%22translate(3.295%201.011)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_42%22%20data-name%3D%22%E3%83%91%E3%82%B9%2042%22%20d%3D%22M.695.5%2C7.622%2C7.507%2C14.548.5%22%20transform%3D%22translate(5.348%203.486)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_61%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2061%22%20width%3D%2223.633%22%20height%3D%2217.78%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E);
}
.header_title-scroll .header_cta_contact {
    padding-top: 0;
    padding-left: 12px;
    font-size: 13px;
}
.header_title-scroll .header_menu > .menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(10px ,1.3vw ,22px);
    margin-right: 0;
    font-weight: 500;
}
.header_title-scroll  .header_menu {
    width: fit-content;
    margin-left: auto;
}
.header_title-scroll .header_cta {
    margin: 0px 16px 0px 10px;
    gap: 12px;
    padding: 0;
}
.header_title-scroll .header_menu > .menu > li {
    font-size: clamp(11px, 11 / 1330 * 100vw, 15px);
    color: (--color-text);
} 

.header_title-scroll.is_show{
    display: flex;
    opacity: 1;
    z-index: 100;
    position: fixed;
}

@media screen and (max-width: 1300px) {
    .header_title-scroll .header_contact {
        width: 130px;
    }
    .header_title-scroll .header_cta {
        margin: 0px 6px 0px 6px;
        gap: 6px;
        padding: 0;
    }
    .header_title-scroll .btn-doc, .header_title-scroll .btn-recruit {
        width: 110px;
        height: 42px;
    }
}
@media screen and (max-width: 1299.98px) {
    .header_title-scroll {
        display: none;
    }
    .header_title-scroll.is_show {
        display: none;
    }
}


/*SPメニュー*/
.header_title-sp {
    display: none;
    z-index: 1001;
    position: fixed;
    background: #fff;
    width: 100%;
}


.header_center-sp{
    display: flex;
    display: none;
    justify-content: flex-end;
    position: fixed;
    z-index: 9998;
    top: 0;
    right: 60px;
    height: 60px;
}
.header_center-sp .header_cta{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-right: 16px;
}
.header_center-sp .btn-recruit{
    border: solid 1px var(--color-text);
    color: var(--color-text);
}
.header_center-sp .btn-doc,
.header_center-sp .btn-recruit{
    padding: 0;
    width: 138px;
    font-size: 13px;
}
.header_center-sp .header_contact {
    width: 130px;
    display: block;
}
.header_center-sp .header_contact a{
    font-size: 13px;
    padding: 0;
    padding-left: 20px;
}
.header_center-sp .header_contact ::before {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 18px;
    height: 14px;
    background-size: cover;
}
.header_center-sp  .btn-recruit::before {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214.01%22%20height%3D%2214.01%22%20viewBox%3D%220%200%2014.01%2014.01%22%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip-path%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_63%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2063%22%20width%3D%2214.01%22%20height%3D%2214.01%22%20fill%3D%22none%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_24%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2024%22%20transform%3D%22translate(0%200)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_23%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2023%22%20transform%3D%22translate(0%200)%22%20clip-path%3D%22url(%23clip-path)%22%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_2%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%202%22%20cx%3D%226.479%22%20cy%3D%226.479%22%20r%3D%226.479%22%20transform%3D%22translate(0.526%200.526)%22%20fill%3D%22none%22%20stroke%3D%22%23282828%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_3%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%203%22%20cx%3D%221.754%22%20cy%3D%221.754%22%20r%3D%221.754%22%20transform%3D%22translate(5.25%204.29)%22%20fill%3D%22none%22%20stroke%3D%22%23282828%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_47%22%20data-name%3D%22%E3%83%91%E3%82%B9%2047%22%20d%3D%22M10.52%2C11.425a4.181%2C4.181%2C0%2C0%2C0-7.358%2C0%22%20transform%3D%22translate(0.164%200.479)%22%20fill%3D%22none%22%20stroke%3D%22%23282828%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
}
.sp-bottom-list{
    margin: 40px auto;
    justify-content: center;
}
.sp-bottom-list a{
    font-size: 12px;
}
.sp-header_cta .sp-youtube{
    width: 98px;
    height: 33px;
    margin: auto;
}
.sp-header_cta .sp-youtube a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px 0 0 12px;
}
.sp-header_cta .sp-youtube img {
    width: 74px;
    height: 17px;
}
.sp-header_cta .btn-contact::before {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220.078%22%20height%3D%2216.063%22%20viewBox%3D%220%200%2020.078%2016.063%22%3E%20%3Cpath%20id%3D%22Icon_material-email%22%20data-name%3D%22Icon%20material-email%22%20d%3D%22M21.07%2C6H5.008a2.005%2C2.005%2C0%2C0%2C0-2%2C2.008L3%2C20.055a2.014%2C2.014%2C0%2C0%2C0%2C2.008%2C2.008H21.07a2.014%2C2.014%2C0%2C0%2C0%2C2.008-2.008V8.008A2.014%2C2.014%2C0%2C0%2C0%2C21.07%2C6Zm0%2C4.016-8.031%2C5.02-8.031-5.02V8.008l8.031%2C5.02%2C8.031-5.02Z%22%20transform%3D%22translate(-3%20-6)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E');
}
.sp-header_cta .open{
    font-size: 10px;
}
@media screen and (max-width: 1299.98px) {
    .header_center-sp{
            display: flex;
    }
}


@media screen and (max-width: 767px) {
    .header_center-sp .header_cta{
        gap: 8px;
        margin-right: 8px;
    }
    .header_center-sp .btn-doc,
    .header_center-sp .btn-recruit{
        width: 110px;
        height: 42px;
    }
    .header_center-sp .header_contact {
        width: 120px;
    }
}
@media screen and (max-width: 600px) {
    .header_center-sp{
        display: none;
    }
}

/* ハンバーガーアイコン */
.openbtn {
  display: none;
  position: fixed;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  background: var(--color-main); /* 青背景 */
  z-index: 1001;
  cursor: pointer;
}
.openbtn span {
  display: block;
  position: absolute;
  left: 18px;
  width: 24px;
  height: 2px;
  background: #fff; /* 白線 */
  border-radius: 2px;
  transition: all 0.3s ease;
}
.openbtn span:nth-child(1) { top: 19px; }
.openbtn span:nth-child(2) { top: 29px; }
.openbtn span:nth-child(3) { top: 39px; }

/* バッテンに変形 */
.openbtn.active span:nth-child(1) {
  top: 28px;
  transform: rotate(45deg);
}
.openbtn.active span:nth-child(2) {
  opacity: 0;
}
.openbtn.active span:nth-child(3) {
  top: 28px;
  transform: rotate(-45deg);
}

/* スライドメニュー */
#sp-nav {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #282828;
  z-index: 1000;
  transition: right 0.3s ease-in-out;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  overflow-y: auto;
}
#sp-nav.active {
  right: 0;
}

/* 背景オーバーレイ */
#overlay {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

#sp-nav .menu .menu-item {
    border-bottom: solid 1px #474C5A;
}
#sp-nav .menu .menu-item a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 20px 30px;
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
@media screen and (max-width: 600px) {
    #sp-nav .menu .menu-item a{
        padding: 16px 10px;
    }
}
#sp-nav .menu .menu-item-has-children.open {
    padding-bottom: 15px;
}
#sp-nav .sub-menu .menu-item {
    border-bottom: none;
    display: flex;
    align-items: center;
}
#sp-nav .sub-menu .menu-item  a{
    font-size: 14px;
    padding: 5px 40px;
    justify-content: flex-start;
}

@media screen and (max-width: 600px) {
    #sp-nav .sub-menu .menu-item  a{
        padding: 5px 20px;
    }
}
#sp-nav .sub-menu .menu-item a::before{
    content: "";
    display: inline-block;
    width: 10px;
    height: 2px;
    margin-right: 10px;
    
    background-color: #fff;
}
div#sp-nav-list {
    padding-left: 20px;
    padding-right: 20px;
}
/* ▼ 子メニューはデフォルト非表示 */
.menu-item-has-children > ul {
  display: none;
}

/* ▼ 親に.openがついたら表示 */
.menu-item-has-children.open > ul {
  display: block;
}

/* ▼ 親メニューに矢印を追加（右向き） 
.menu-item-has-children > a::after {
  content: "＞";
  font-size: 0.8em;
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s;
}*/

/* ▼ 開いたら下向き矢印 
.menu-item-has-children.open > a::after {
  content: "∨";
}
*/

/* ▼ 親メニューに矢印を追加（右向き三角形） */
.menu-item-has-children > a::after {
content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  margin-left: 8px;
  display: inline-block;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  vertical-align: middle;
}

/* ▼ 開いたら下向き矢印に回転 */
.menu-item-has-children.open > a::after {
  transform: rotate(45deg);
}

.sp-header_cta{
    width: fit-content;
    margin: 40px auto 100px;
}
.sp-header_cta .header_cta_tel {
    font-size: 28px;
    border: solid 1px #fff;
    max-width: 500px;
    width: 335px;
    padding: 12px 1em 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 40px;
}
.sp-header_cta .header_cta_tel::before {
    width: 12px;
    height: 18px;
    top: 26px;
    left: 45px;
}

.sp-header_cta  .btn-contact, 
.sp-header_cta  .btn-doc, 
.sp-header_cta .btn-recruit {
    width: 100%;
    height: 70px;
    max-width: 335px;
    margin-bottom: 20px;
    font-size: 17px;
}

/* 1299.98px以下で表示 */
@media (max-width: 1299.98px) {
    .openbtn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .header_title-sp {
        display: block;
                height: 60px;
    }
}



/* オープニングアニメーション */
.opening-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

.drawing-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transform: translateY(-50%);
    animation: drawLine 2s ease-out forwards, hideLine 0.1s ease-out 2.5s forwards;
    z-index: 10;
}
.background-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 50vh;
    background: #038FE1;
    animation: splitUp 1.2s ease-in-out 2.5s forwards;
}

.background-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 50vh;
    background: #038FE1;
    animation: splitDown 1.2s ease-in-out 2.5s forwards;
}

@keyframes drawLine {
    to {
        width: 100vw;
    }
}

@keyframes hideLine {
    to {
        opacity: 0;
    }
}

@keyframes showBackground {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splitUp {
    to {
        transform: translateY(-100%);
    }
}

@keyframes splitDown {
    to {
        transform: translateY(100%);
    }
}

.page_title {
    position: relative;
    z-index: 0;
    height: 500px;
    background-image: url(./images/pagetitle/common.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page_title_base {
    position: absolute;
    top: 224px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
}

.page_title_base > h1 {
    padding: 0 20px;
    width: 100%;
    color: #fff;
    font-size:clamp(26px, 26 / 767 * 100vw ,48px);
    font-weight: bold;
    text-align: center;
}

.post-type-archive-product .page_title,
.single-product .page_title {
    background-image: url(./images/pagetitle/product.jpg);
}
.page-feature .page_title {
    background-image: url(./images/pagetitle/feature.jpg);
}
.page-precision .page_title {
    background-image: url(./images/pagetitle/precision.jpg);
}
.page-difficult .page_title {
    background-image: url(./images/pagetitle/difficult.jpg);
}
.page-plug-jac .page_title {
    background-image: url(./images/pagetitle/plug-jac.jpg);
}
.page-vietnam .page_title {
    background-image: url(./images/pagetitle/vietnam.jpg);
}
/*
.page-contact .page_title,
.page-contact-child .page_title {
    background-image: url(./images/pagetitle/contact.jpg);
}
.category-news .page_title,
.section-single-content  .page_title {
    background-image: url(./images/pagetitle/news.jpg);
}
.page-privacy .page_title {
    background-image: url(./images/pagetitle/privacy.jpg);
}*/
.error404 .page_title,
.page-sitemap .page_title {
    background-image: url(./images/pagetitle/common.jpg);
}

.page_title .shape1{
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 62% 100%, 0% 100%);
    background-color: rgb(3, 143, 225, 0.78);
    top: 0;
    left: 0;
    width: 24%;
    height: 100%;
    z-index: 0;
}
.page_title .shape2{
    position: absolute;
    clip-path: polygon(27% 0, 0% 100%, 100% 100%);
    background-color: rgb(3, 143, 225, 0.20);
    bottom: 0;
    left: 15%;
    width: 13%;
    height: auto;
    aspect-ratio: 218 / 212;
    z-index: 0;
}
.page_title .shape3{
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    background-color: rgb(0, 0, 0,0.16);
    bottom: 0;
    left: 0;
    width: 45.5%;
    height: 26.6%;
    z-index: 0;
}
@media screen and (max-width: 1440px) {
    .page_title .shape2 {
        clip-path: polygon(20% 0, 0% 100%, 100% 100%);
        left: 15%;
        width: 13%;
    }
}
@media screen and (max-width: 991px) {
    .page_title {
        height: 400px;
    }
    .page_title_base {
        top: 30%;
    }
}

@media screen and (max-width: 767px) {
    .page_title {
        height: 340px;
    }
    .page_title .shape1 {
        clip-path: polygon(0 0, 100% 0, 35% 100%, 0% 100%);
        width: 39%;
        z-index: 1;
    }
    .page_title .shape2 {
        clip-path: polygon(50% 0, 0% 100%, 100% 100%);
        background-color: rgb(3, 143, 225,0.2);
        left: 13.7%;
        min-width: 91px;
        width: 25%;
        aspect-ratio: 94/92;
        height: auto;
    }
    .page_title .shape3 {
        background-color: rgb(0, 0, 0, 0.5);
        width: 60%;
        height: 15.8%;
    }
}

@media screen and (max-width: 600px) {
    .page_title .shape2 {
        clip-path: polygon(39% 0, 0% 100%, 100% 100%);
    }
    
}
@media screen and (max-width: 500px) {
    .page_title {
        height: 315px;
    }
    .page_title_base {
        top: 30%;
    }
    .page_title .shape2 {
        clip-path: polygon(30% 0, 0% 100%, 100% 100%);
    }    
}
@media screen and (max-width: 375px) {
    .page_title_base {
        top: 23%;
    }
    
}


/****************************************
4. sidebar
*****************************************/

/****************************************
5. contents
****************************************/
.menu-sitemap-container > .menu {
    margin: -1em 0px 0px 1.5em;
}

.menu-sitemap-container > .menu > li {
    margin: 1em 0px 0px;
    font-size: 17px;
}

.menu-sitemap-container > .menu .sub-menu {
    margin: 0px 0px 0px 2em;
}

.menu-sitemap-container > .menu .sub-menu > li {
    margin: 0.5em 0px 0px;
    font-size: 15px;
}

/****************************************
6. Footer 
****************************************/
/*@media print, (max-width: 767.98px) {
    body {
        margin-bottom: 80px;
    }
}
@media print, (min-width: 768px) {
    
}
*/
#btn_scroll_top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background-color: #fff;
    text-decoration: none;
    outline: none;
    border-radius: 100px;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 8px;
}
#btn_scroll_top:after {
    position: absolute;
    top: 46%;
    left: 50%;
    width: 10px;
    height: 10px;
    transform: translateX(-50%) rotate(-45deg);
    border-right: 2px solid #282828;
    border-top: 2px solid #282828;
    content: "";
}
@media print, (min-width: 768px) {
    #btn_scroll_top {
        bottom: 30px;
        width: 64px;
        height: 64px;
    }
    #btn_scroll_top:after {
        width: 12px;
        height: 12px;
    }
}

.footer{
    background-color: #282828;
    padding: 56px 1em 20px;
}
.footer .container{
    padding: 0;
}
.footer *a{
    text-decoration: none;
    color: #fff;
}
.footer-menu a{
    text-decoration: none;
     color: #fff;
}
.footer-main{
    display: flex;
    margin-bottom: var(--space-xl);
    gap: 7.6vw;
}
.footer-title-logo{
    margin-bottom: 49px;
}
.footer-address-wrap p{
    color: #fff;
}
.footer-youtube{
    background-color: #fff;
    width: 163px;
    height: 55px;
    border-radius: 5px;
    margin-top: 38px;
}
.footer-youtube a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 17px 0 0 22px;
}
.footer-youtube img{
    margin: 0;
}
.footer-bottom{
    display: flex;
    color: #A5A5A5;
    position: relative;
}
.footer-bottom-list a{
    color: #A5A5A5;
    text-decoration: none;
    padding: 3px 12px;
    height: 17px;
    display: block;
    line-height: 1;
}
.footer-bottom-list li:first-child{
    border-right: solid 1px #A5A5A5;
}
.footer-bottom-list li:first-child a{
    padding-left: 0;
}
.footer-bottom-list{
    display: flex;
    list-style: none;

}
.footer-bottom .copyright{
    font-family: poppins, sans-serif;
    font-size: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.footer-menu .menu {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: max(3.6vw , 16px);
    grid-row-gap: 28px;
    list-style: none;
}
.footer-menu .menu a{
   white-space: nowrap;
}
.footer-menu .menu li{
   width: fit-content;
}

.footer-menu .menu li:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
.footer-menu .menu li:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
.footer-menu .menu li:nth-child(3) { grid-area: 3 / 1 / 4 / 2; }
.footer-menu .menu li:nth-child(4) { grid-area: 4 / 1 / 5 / 2; }
.footer-menu .menu li:nth-child(5) { grid-area: 1 / 2 / 2 / 3; }
.footer-menu .menu li:nth-child(6) { grid-area: 2 / 2 / 3 / 3; }
.footer-menu .menu li:nth-child(7) { grid-area: 3 / 2 / 4 / 3; }
.footer-menu .menu li:nth-child(8) { grid-area: 1 / 3 / 2 / 4;     width: 120px;}
.footer-menu .menu li:nth-child(9) { grid-area: 1 / 4 / 2 / 5; }
.footer-menu .menu li:nth-child(10) { grid-area: 2 / 4 / 3 / 5; }
.footer-menu .menu li:nth-child(11) { grid-area: 3 / 4 / 4 / 5; }
.footer-menu .menu-item-has-children{
    position: relative;
    font-size: 15px;
}

.footer-menu .menu-item-has-children a::after{
    content: none;
}

.footer-menu .menu-item-has-children .sub-menu{
    position: absolute;
    top: 20px;
    display: block;
}
.footer-menu .menu-item-has-children .sub-menu li{
    margin-bottom: 10px;
    position: relative;
    padding-left: 16px;
    font-size: 13px;
}
.footer-menu .menu-item-has-children .sub-menu li a{
    font-size: 13px;
}

.footer-menu .menu-item-has-children .sub-menu li::before{
    content: "";
    width: 10px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
}
@media screen and (max-width: 991px) {
    .footer-main {
        gap: 30px;
        justify-content: space-between;
    }
    .footer-menu .menu  {
        display: grid;
        grid-template-columns: repeat(3, auto);
        grid-template-rows: repeat(5, 1fr);
        grid-column-gap: max(5.6vw , 16px);
    }
    .footer-menu .menu li:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
    .footer-menu .menu li:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
    .footer-menu .menu li:nth-child(3) { grid-area: 3 / 1 / 4 / 2; }
    .footer-menu .menu li:nth-child(4) { grid-area: 4 / 1 / 5 / 2; }
    .footer-menu .menu li:nth-child(5) { grid-area: 1 / 2 / 2 / 3; }
    .footer-menu .menu li:nth-child(6) { grid-area: 2 / 2 / 3 / 3; }
    .footer-menu .menu li:nth-child(7) { grid-area: 3 / 2 / 4 / 3; }
    .footer-menu .menu li:nth-child(8) { grid-area: 1 / 3 / 2 / 4; }
    .footer-menu .menu li:nth-child(9) { grid-area: 3 / 3 / 4 / 4; }
    .footer-menu .menu li:nth-child(10) { grid-area: 4 / 3 / 5 / 4; }
    .footer-menu .menu li:nth-child(11) { grid-area: 5 / 3 / 6 / 4; }

    .footer-menu .menu-item-has-children .sub-menu li{
            line-height: 1.5;
    }
    .footer-menu .menu a {
        font-size: 15px;
    }
    .footer-bottom {
        justify-content: space-between;
    }
    .footer-bottom .copyright {
        position: unset;
        transform: unset;
        font-size:clamp(11px, 11 / 600 * 100vw ,13px);
    }
}

@media screen and (max-width: 767px) {
    .footer-menu .menu  {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(7, 1fr);
        grid-column-gap: max(7.5vw , 16px);
    }
    .footer-menu .menu li:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
    .footer-menu .menu li:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
    .footer-menu .menu li:nth-child(3) { grid-area: 3 / 1 / 4 / 2; }
    .footer-menu .menu li:nth-child(4) { grid-area: 4 / 1 / 5 / 2; }
    .footer-menu .menu li:nth-child(5) { grid-area: 5 / 1 / 6 / 2; }
    .footer-menu .menu li:nth-child(6) { grid-area: 6 / 1 / 7 / 2; }
    .footer-menu .menu li:nth-child(7) { grid-area: 7 / 1 / 8 / 2; }
    .footer-menu .menu li:nth-child(8) { grid-area: 1 / 2 / 2 / 3; }
    .footer-menu .menu li:nth-child(9) { grid-area: 3 / 2 / 4 / 3; }
    .footer-menu .menu li:nth-child(10) { grid-area: 4 / 2 / 5 / 3; }
    .footer-menu .menu li:nth-child(11) { grid-area: 5 / 2 / 6 / 3; }
}
@media screen and (max-width: 600px) {
    .footer {
        padding: 48px 40px 18px;
    }
    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        margin-bottom: 40px;
    }
    .footer-title-logo {
        margin-bottom: 32px;
        width: fit-content;
        min-width: 184px;
    }
    .footer-title-wrap,
    .footer-menu-wrap {
        width: 100%;
    }
    .footer-menu .menu  {
        grid-row-gap: 20px;
    }
    .footer-menu .menu a {
        font-size: 14px;
    }
    .footer-menu .menu-item-has-children .sub-menu {
        top: 20px;
    }
    .footer-menu .menu-item-has-children .sub-menu li {
        line-height: 1.4;
    }
    .footer-menu .menu-item-has-children .sub-menu li a{
        font-size: 12px;
        font-weight: 400;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 42px;
    }
    .footer-bottom .copyright {
        text-align: center;
    }
}
@media screen and (max-width: 450px) {
    .footer-menu .menu {
        grid-row-gap: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .footer-menu .menu-item-has-children .sub-menu {
        top: 10px;
        position: relative;
    }
    .footer-menu .menu-item-has-children .sub-menu li {
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .footer-title-logo img{
        width: 184px;
    }
}
/****************************************
7. single
****************************************/
.section-single-content  p + p {
    margin: 1em 0px 0px;
}

.section-single-content h2{
    margin: 0 0 var(--space-xs);
    padding-bottom: var(--space-4xs);
    position: relative;
    font-weight: bold;
}
.section-single-content h2::after{
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--color-main);
    position: absolute;
    bottom: -2px;
    left: 0;
}

.section-single-content h3,
.section-single-content h4,
.section-single-content h5,
.section-single-content h6{
    margin: var(--space-2xs) 0 var(--space-3xs);
    font-weight: bold;
}

.section-single-content ul,
.section-single-content ol  {
    margin-left: 1.5em;
}

@media screen and (max-width: 767.98px) {
    .section-single-content  img {
        margin: 1em auto ;
    }
}
@media print, (min-width: 768px) {
    .section-single-content  img {
        margin: 1em 0px ;
    }
    
    .section-single-content  .alignleft {
        display: inline-block;
    }
    
    .section-single-content  .alignleft + .alignleft {
        margin: 1em 0px 0px 1em;
    }
    
    .section-single-content  .aligncenter {
        margin: 1em auto ;
    }
    
    .section-single-content  .alignright {
        margin: 1em 0px 1em 100%;
        transform: translateX(-100%);
    }
}

/****************************************
8. WP
****************************************/

/****************************************
9. Print
****************************************/

/****************************************
10. Plugin
****************************************/
.no_must {
    display: block;
    background-color: #fc0;
    padding: 4px 5px;
    font-size: 13px;
    color: #fff;
    float: left;
    margin: 0px 5px;
    border-radius: 4px;
    box-shadow: 0px 0px 5px #ccc;
}

.bx-wrapper {
    background-color: transparent;
    margin: 0px auto 0px;
    border: none;
    box-shadow: none;
}
.bx-wrapper img {
    display: block;
    margin: 0px auto;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #c9e2ff;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
    background: #012065;
}

/****************************************
10. Tweak
****************************************/

/****************************************
11. メールフォームプロ用スタイル
****************************************/
form#mailformpro .mailform {
    margin: 0px;
}

form#mailformpro dl {
    box-sizing: border-box;
}

form#mailformpro dl dt {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    border: none;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}

form#mailformpro dl dd {
    box-sizing: border-box;
    border: none;
}

form#mailformpro dl dt:nth-of-type(n+2),
form#mailformpro dl dd:nth-of-type(n+2) {
    border-top: 1px solid #d3dad9;
}

.mfp_colored {
    background: none;
}

.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea {
    padding: 1em;
    margin: 0px;
    width: 100% !important;
    box-sizing: border-box;
    border: 1px solid var(--color-main);
    background-color: #E9F5FB;
    box-shadow: none;
    outline: none;
}

.mfp_element_submit,
.mfp_element_reset,
.mfp_element_button {
    padding: 0.5em 3em;
    box-sizing: border-box;
    background: none;
    background-color: var(--color-main);
    box-shadow: none;
    color: #fff;
    font-size: 18px;
    text-shadow: none;
}

.mfp_element_submit:hover,
.mfp_element_reset:hover,
.mfp_element_button:hover {
    background: none;
    background-color: var(--color-main-hover);
    box-shadow: none;
}

div.mfp_err {
    padding: 0.5em 0px 0.5em 1em;
    background: none;
}

.problem {
    border: 1px solid #ffd5dc;
    background-color: #ffd5dc;
}

.must,
.no_must {
    display: block;
    padding: 0px 1em;
    border-radius: 4px;
    background: none;
    box-shadow: none;
    text-shadow: none;
    color: #fff;
    font-size: 10px;
    line-height: 1.5;
}

.must {
    border: 1px solid #c60505;
    background-color: #c60505;
}

.no_must {
    border: 1px solid #fc0;
    background-color: #fc0;
}

@media screen and (max-width: 767.98px) {
    form#mailformpro dl dt,
    form#mailformpro dl dd {
        padding: 1em;
        width: 100%;
    }
    .must,
    .no_must {
        margin: 2px 2em 0px 0px;
    }
}

@media print, (min-width: 768px) {
    form#mailformpro dl {
        display: flex;
        flex-wrap: wrap;
    }
    form#mailformpro dl dt {
        float: none;
        padding: 2em 0px;
        width: 280px;
    }
    form#mailformpro dl dd {
        padding: 2em 2em 2em 0px;
        width: calc(100% - 280px);
    }
    .mfp_element_text,
    .mfp_element_number,
    .mfp_element_select-one,
    .mfp_element_email,
    .mfp_element_tel,
    .mfp_element_textarea {
        max-width: 500px;
    }
    .must,
    .no_must {
        margin: 2px 2em 0px;
    }
}

.post-btn-blue {
    text-align: center;
}

.post-btn-blue a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--space-sm) auto 0;
    padding: 10px 2em;
    max-width: 600px;
    border: 1px solid var(--color-main);
    border-radius: 50px;
    background-color:  var(--color-main);
    color: #fff;
    font-size:clamp(16px, 16 / 500 * 100vw ,18px);
    text-decoration: none;
    position: relative;
    z-index: 1;
}
.post-btn-blue a::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    position: absolute;
    top: 48%;
    right: 1em;
    transform: rotate(45deg) translateY(-50%);
}


