@charset "utf-8";

/* ----------------------------------------------
ページタイトル
---------------------------------------------- */
.page-title {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 4rem;
}

.page-title h1 {
    background: url(../images/img_bg_title.jpg) no-repeat;
    background-size: cover;
    color: #fff;
    width: 100vw;
    font-size: 6rem;
    font-weight: 500;
    margin: 0 calc(50% - 50vw);
    padding: 8.4rem calc(50vw - 50%);
    line-height: 0.7;
    text-transform: uppercase;
}

.page-title h1 span {
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

/* パンくずリスト */
.page-content .breadcrumb ul {
    max-width: 1360px;
    margin: 2em auto 0;
    font-size: 1.4rem;
    padding: 0 4rem;
    display: flex;
    flex-wrap: wrap;
}

.page-content .breadcrumb li {
    list-style-type: none;
    margin: 0;
}

.breadcrumb li:after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #8d8d8d;
    border-right: 2px solid #8d8d8d;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0 1.3rem 0.2rem 1.3rem;
}

.breadcrumb li:last-child:after {
    content: none;
}

.breadcrumb li a {
    color: #000;
    text-decoration: none;
}

/* タブレット・スマホ無効 */
@media screen and (min-width: 960px) {
    .breadcrumb li a:hover {
        color: #0057a6;
        text-decoration: underline;
    }
}

@media screen and (max-width: 767px) {
    .page-title {
        padding: 0 2rem;
    }
    
    .page-title h1 {
        font-size: 4rem;
        padding: 6rem calc(50vw - 50%);
        line-height: 1;
    }
    
    .page-title h1 span {
        font-size: 2rem;
    }
    
    .page-content .breadcrumb ul {
        margin: 1em auto 0;
        padding: 0 2rem;
    }
    
    .breadcrumb li {
        font-size: 1.4rem;
    }
    
    .breadcrumb li:after {
        width: 6px;
        height: 6px;
        border-top: 1px solid #8d8d8d;
        border-right: 1px solid #8d8d8d;
        margin: 0 0.8rem 0.2rem 0.6rem;
    }
}


/* ----------------------------------------------
全体コンテンツ
---------------------------------------------- */
.page-content .inner {
    max-width: 1360px;
    margin: 9rem auto;
    padding: 0 4rem;
}

/*
.page-content p,
.page-content dt,
.page-content dd,
.page-content th,
.page-content td {
    font-size: 1.8rem;
}
*/

.page-content p {
    margin-bottom: 1em;
    letter-spacing: normal;
    line-height: 2;
}

.page-content p:has(img) {
    margin-bottom: 0;
}

.page-content p + p {
    margin-top: 1em;
}

.page-content a {
    color: #0057a6;
    text-decoration: underline;
}

/* タブレット・スマホ無効 */
@media screen and (min-width: 960px) {
    .page-content a:hover {
        color: #666;
        text-decoration: none;
    }
}

.page-content h2 {
    color: #0f5391;
    font-size: 4rem;
    margin: 2em 0 0.8em;
}

.page-content h2:first-of-type {
    margin: 0 0 0.8em;
}

.page-content p + h2:first-of-type {
    margin: 2em 0 0.8em;
}

.page-content h3 {
    color: #fff;
    background-color: #0057a6;
    font-size: 2.4rem;
    margin: 3em 0 1.5em;
    overflow: hidden;
}

.page-content h3 span {
    min-width: 240px;
    display: inline-block;
    padding: 0.5rem 4rem 0.2rem 3rem;
    position: relative;
    z-index: 0;
}

.page-content h3 span:before {
    content: "";
    display: block;
    background-color: #0090e0;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.page-content h3 span:after {
    content: "";
    display: inline-block;
    background-color: #0090e0;
    width: 100%;
    height: 100%;
    transform: skewX(-35deg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.page-content h4 {
    font-size: 2.2rem;
    margin: 2em 0 1em;
    border-left: 5px solid #0057a6;
    padding-left: 0.7em;
    line-height: 1.6;
}

.page-content h2 + h3,
.page-content h3 + h4 {
    margin-top: 0;
}

.page-content h5 {
    font-size: 1.8rem;
    margin: 2em 0 1em;
}

.page-content h6 {
    font-size: 1.6rem;
    margin: 2em 0 1em;
}

.page-content ul {
    margin-bottom: 1em;
    padding-left: 1.5em;
    letter-spacing: normal;
}

.page-content ul li {
    list-style-type: disc;
    margin-bottom: 1em;
}

.page-content ul.nodisc li {
    list-style-type: none;
    padding-left: 0;
}

.page-content ol {
    margin-bottom: 1em;
    padding-left: 1em;
}

.page-content ol li {
    list-style-type: decimal;
    margin-bottom: 1em;
    padding-left: 0.5em;
}

.page-content blockquote {
    background-color: #F2F2F2;
    margin: 2em 0;
    padding: 3rem 2rem 1rem 2em;
}

.page-content blockquote dl {
    margin-bottom: 2rem;
}

.page-content blockquote dt {
    margin-bottom: 1rem;
}

.page-content blockquote dd {
    font-size: 1.4rem;
}

.page-content table th,
.page-content table td {
    letter-spacing: normal;
}

/* リスト　*/
.page-content ul.list {
    padding-left: 0;
}

.page-content ul.list li {
    list-style-type: none;
    font-weight: 500;
    padding-left: 3rem;
    line-height: 2;
    position: relative;
}

.page-content ul.list li:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #e70012;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
}

.page-content ul.list li:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 13px;
    left: 6px;
}

.page-content ul.list li a {
    text-decoration: underline;
}

.page-content ul.list li a:hover {
    text-decoration: none;
}

/* ボタン　*/
.page-content .btn a {
    color: #fff;
    padding: 1rem 3rem 0.8rem 2rem;
    text-decoration: none;
    transition: 0.3s;
}

/* タブレット・スマホ無効 */
@media screen and (min-width: 960px) {
    .page-content .btn a:hover {
        opacity: 0.7;
    }
}

/* 前へ　次へ　*/
.page-content .nav-previous a {
    padding-left: 2em;
    position: relative;
}

.page-content .nav-next a {
    padding-right: 2em;
    position: relative;
}

.page-content .nav-previous a:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    position: absolute;
    top: 0;
    left: 12px;
    bottom: 0;
    margin: auto;
}

.page-content .nav-next a:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    margin: auto;
}

/* 見出しの黄色アンダーライン　*/
.yellow-under {
    background-image: linear-gradient(transparent 50%, #fff000 50%);
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

@media screen and (max-width: 1024px) {
    .page-content h2:first-of-type + p {
        text-align: left;
    }
    
    .page-content .inner {
        margin: 6rem auto;
    }
}

@media screen and (max-width: 767px) {
    .page-content {
        margin-top: 8.1rem;
    }
    
    .page-content .inner {
        margin: 5rem auto;
        padding: 0 2rem;
    }
    
    .page-content p,
    .page-content dt,
    .page-content dd,
    .page-content th,
    .page-content td {
        font-size: 1.6rem;
    }
    
    .page-content h2 {
        font-size: 3rem;
        line-height: 1.6;
    }
    
    .page-content h3 {
        font-size: 2.2rem;
        margin: 2em 0 1em;
    }
    
    .page-content h3 span {
        min-width: 200px;
        padding: 0.5rem 3rem 0.2rem 2rem;
    }
    
    .page-content h4 {
        font-size: 2rem;
    }
    
    .page-content ul,
    .page-content ol {
        padding-left: 1em;
    }
    
    .page-content .btn-more a {
        width: 100%;
        max-width: 310px;
    }
    
    .page-content .nav-previous a {
        padding-left: 1.5em;
    }

    .page-content .nav-next a {
        padding-right: 1.5em;
    }
}


/* 下部メニュー
------------------------------- */
.page-content .bottom-menu {
    margin: 9rem 0 0;
    padding-left: 0;
    clear: both;
    gap: 0 1.5%;
}

.page-content .bottom-menu li {
    list-style-type: none;
    margin-bottom: 0;
    width: 20%;
}

.page-content .bottom-menu li a {
    width: 100%;
    display: block;
    background-color: #fff;
    font-weight: 500;
    border: 2px solid #0057a6;
    padding: 1rem 0 0.8rem;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
}

/* タブレット・スマホ無効 */
@media screen and (min-width: 960px) {
    .page-content .bottom-menu li a {
        transition: 0.3s;
    }
    
    .page-content .bottom-menu li a:hover{
        color: #fff;
        background-color: #0057a6;
    }
}

@media screen and (max-width: 1024px) {
    .page-content .bottom-menu {
        margin: 6rem 0 0;
    }
    
    .page-content .bottom-menu li {
        flex: 1;
    }
}

@media screen and (max-width: 767px) {
    .page-content .bottom-menu {
        flex-wrap: wrap;
        margin: 5rem 0 0;
        gap: 1.5rem 0;
    }
    
    .page-content .bottom-menu li {
        width: 100%;
        flex: 0 1 auto;
    }
}


/* 右メニュー
------------------------------- */
.side-menu-right {
    width: 250px;
    margin-left: 3rem;
    position: sticky;
    top: 120px;
}

.side-menu-right h2 {
    color: #fff;
    background-color: #1a1414;
    font-size: 1.6rem;
    padding: 1.2rem 2rem;
    margin: 0;
    letter-spacing: 0.1em;
}

.page-content .side-menu-right a {
    text-decoration: none;
}

.page-content .side-menu-right a:hover {
    color: #000;
    background-color: #f6f6f6;
}

.side-menu-right ul {
    margin-bottom: 0;
    padding-left: 0;
}

.side-menu-right ul li {
    list-style-type: none;
    margin-bottom: 0;
}

.side-menu-right ul li a {
    display: block;
    padding: 0.6rem 2rem;
    border-bottom: 1px solid #e1e1e1;
    letter-spacing: 0.1em;
    position: relative;
}

.side-menu-right ul li a:after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 21px;
    left: 0;
}

@media screen and (max-width: 1024px) {
    .side-menu-right {
        width: 100%;
        margin: 6rem 0 0;
    }
}

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


/* 左側に画像でflexを使用するとき
------------------------------- */
.fl-img .flex-left {
    flex-shrink: 0;
    margin-right: 5rem;
}

@media screen and (max-width: 1024px) {
    .fl-img.flex {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .fl-img .flex-left {
        flex-shrink: 1;
        margin: 0 0 1.5rem;
        text-align: center;
    }
}


/* 右側に画像でflexを使用するとき
------------------------------- */
.fr-img .flex-right {
    flex-shrink: 0;
    margin-left: 5rem;
}

@media screen and (max-width: 1024px) {
    .fr-img.flex {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .fr-img .flex-left {
        order: 2;
    }
    
    .fr-img .flex-right {
        flex-shrink: 1;
        margin: 0 0 1.5rem;
        order: 1;
        text-align: center;
    }
}

/* 画像をflexで横並びにする
------------------------------- */
.flex-img-box {
    display: flex;
    margin-bottom: 1em;
    gap: 0 2%;
}

.flex-img-box img {
    margin-bottom: 1rem;
}

.flex-img-box p + p {
    margin-top: 0;
}

@media screen and (max-width: 767px) {
    .flex-img-box {
        flex-wrap: wrap;
    }
    
    .flex-img-box p + p {
        margin-top: 1em;
    }
}


/* 横2列で並べる
------------------------------- */
.lineup_h50 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem 0;
}

.lineup_h50_box {
    width: 48%;
}

@media screen and (max-width: 767px) {
    .lineup_h50_box {
        width: 100%;
    }
}


/* 横3列で並べる
------------------------------- */
.lineup_h30 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem 0;
}

.lineup_h30_box {
    width: 30%;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .lineup_h30_box {
        width: 100%;
    }
}



/* アコーディオン
------------------------------- */
.page-content .accordion {
    width: 100%;
    background-color: #f6f6f6;
    margin-bottom: 4rem;
    padding: 2.2rem 3rem;
}

.page-content .accordion:last-of-type {
    margin-bottom: 0;
}

.page-content .accordion > dt {
    font-size: 1.8rem;
    padding: 0 2em;
    position: relative;
    cursor: pointer;
}

.page-content .accordion > dt:before {
    content: 'Q';
    color: #0057a6;
    font-size: 2.2rem;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1.5;
}

.page-content .accordion > dt:after {
    content: "";
    width: 17px;
    height: 17px;
    border-top: 2px solid #0057a6;
    border-right: 2px solid #0057a6;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: 5px;
    right: 0;
}

.page-content .accordion > dt.active:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.page-content .accordion > dd {
    display: none;
    margin-top: 2.2rem;
    padding: 2.2rem 2rem 1rem 3.5rem;
    border-top: 2px solid #0057a6;
    position: relative;
}

.page-content .accordion > dd:before {
    content: "A";
    color: #d30000;
    font-size: 2.2rem;
    font-weight: bold;
    position: absolute;
    top: 17px;
    left: 0;
}

@media screen and (max-width: 767px) {
    .page-content .accordion {
        margin-bottom: 3rem;
        padding: 2rem;
    }
}


/* フォーム（全体）
------------------------------- */
.page-content .required {
    color: #f00;
    margin-left: 0.5rem;
}

.page-content form table {
    border-bottom: none;
}

.page-content form table p {
    margin-bottom: 0;
}

.page-content form td input {
    width: 70%;
    padding: 0.7rem;
}

.page-content form td input[type="tel"],
.page-content form td input[name="post-code"] {
    width: 20%;
}

.page-content form td input[name="municipalities"],
.page-content form td input[name="address"] {
    width: 50%;
}

.page-content form td input[type="radio"],
.page-content form td input[type="checkbox"] {
    width: auto;
}

/* 編集不可の入力欄 */
.page-content form td input[readonly="readonly"] {
    width: auto;
    padding: 0;
    border: none;
}

.page-content form td textarea {
    width: 100%;
    height: 150px;
    padding: 0.5rem;
}

.page-content form td .wpcf7-list-item.first {
    margin: 0;
}

.page-content form .privacypolicy {
    margin-top: 2em;
    text-align: center;
}

.page-content form .privacypolicy input {
    margin-right: 0.8rem;
}

.page-content form .btn-submit {
    margin: 3rem 0 0;
    text-align: center;
}

.page-content form ul.btn-submit {
    display: flex;
    justify-content: center;
    padding: 0;
}

.page-content form .btn-submit li {
    list-style-type: none;
    margin-bottom: 0;
}

.page-content form .btn-submit input {
    width: 200px;
    background-color: #0057a6;
    color: #fff;
    font-size: 1.8rem;
    border: none;
    padding: 1.5rem 0;
    letter-spacing : 0.1em;
    border-radius: 30px;
    cursor: pointer;
}

.page-content form .btn-submit input:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.page-content form .btn-submit input.bl_form_back {
    color: #000;
    background-color: #ccc;
    margin-right: 2rem;
}

.page-content form .btn-submit p {
    margin-bottom: 0;
}

.page-content form .wpcf7-spinner {
    display: block;
    margin: 1rem  auto 0;
}

/* 確認画面と送信メッセージを非表示 */
.page-content .bl_formConfirm,
.page-content form.sent .wpcf7-response-output {
    display: none;
}

@media screen and (max-width: 1024px) {
    .page-content form td .wpcf7-radio .wpcf7-list-item {
        display: block;
        margin: 0;
    }
}

@media screen and (max-width: 767px) {
    .page-content form td input:not([type="radio"]):not([type="checkbox"]) {
        width: 100%;
    }
    
    .page-content form .privacypolicy {
        margin: 0 0 2em;
    }
    
    .page-content form .btn-submit {
        display: block;
        margin: 0;
    }

    .page-content form .btn-submit input {
        width: 100%;
        padding: 1.8rem 0;
        border-radius: 40px;
    }
    
    .page-content form .btn-submit input.bl_form_back {
        margin: 0 0 2rem;
    }
}


/* ----------------------------------------------
会社情報
---------------------------------------------- */

/* 会社概要
---------------------------------------------- */
.company th {
    width: 20%;
    background-color: #f6f6f6;
    padding: 2rem;
    border-top: 1px solid #b2b2b2;
    border-bottom: 1px solid #b2b2b2;
    text-align: center;
}

.company td {
    padding: 2rem 2rem 2rem 8rem;
    border-top: 1px solid #b2b2b2;
    border-bottom: 1px solid #b2b2b2;
}

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

.company dt {
    width: 20%;
    float: left;
    margin-right: 1em;
    white-space: nowrap;
}

.company tr:last-child dt {
    width: 17%;
}

@media screen and (max-width: 1250px) {
    .company dt {
        width: 30%;
    }
}

@media screen and (max-width: 1024px) {
    .company td {
        padding: 2rem 2rem 2rem 4rem;
    }
    
    .company dt {
        width: 42%;
    }
    
    .company tr:last-child dt {
        width: 30%;
    }
}

@media screen and (max-width: 767px) {
    .company th {
        width: 100%;
        border-bottom: none;
        text-align: left;
    }
    
    .company td {
        padding: 2rem;
        border-bottom: none;
    }
    
    .company dt,
    .company tr:last-child dt {
        width: 100%;
    }
    
    .company dd {
        margin: 0 0 1em 1em;
    }
    
    .company dd:last-child {
        margin-bottom: 0;
    }
}


/* 沿革
---------------------------------------------- */
.history dl {
    float: none;
    display: flex;
}

.history dt {
    width: 20%;
    font-weight: 500;
    border-right: 2px solid #0f5391;
    padding: 0 3rem 1.5em;
    white-space: nowrap;
    position: relative;
}

.history dt:before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #0f5391;
    position: absolute;
    top: 0;
    right: -9px;
    border-radius: 50%;
}

.history dd {
    padding: 0 4rem 1.5em;
}

@media screen and (max-width: 1024px) {
    .history dt {
        width: 30%;
    }
    
    .history dd {
        width: 70%;
        padding: 0 3rem 1.5em;
    }
}

@media screen and (max-width: 767px) {
    .history dl {
        display: block;
        padding: 0 0.5rem;
        position: relative;
    }
    
    .history dt {
        width: 100%;
        border-right: none;
        padding: 0 2.5rem 1em;
        white-space: normal;
    }
    
    .history dt:before {
        top: 7px;
        right: auto;
        left: -2px;
    }
    
    .history dd {
        width: 100%;
        padding: 0 2.5rem 1.5em;
        margin: 0;
    }
    
    .history dl:after {
        content: "";
        width: 2px;
        background-color: #0f5391;
        position: absolute;
        top: 8px;
        bottom: -8px;
        left: 10px;
    }
}


/* 社長挨拶
---------------------------------------------- */
.page-content.greeting p + p {
    margin-top: 2em;
}

.greeting .alignright {
    margin: 0 0 40rem 6.5rem;
}

@media screen and (max-width: 1024px) {
    .greeting .alignright {
        width: 35%;
        margin: 0 0 3rem 3rem;
    }
}

@media screen and (max-width: 767px) {
    .page-content.greeting p + p {
        margin-top: 1em;
    }
    
    .greeting .alignright {
        width: 100%;
        margin: 0 0 3rem;
    }
}


/* 拠点一覧
---------------------------------------------- */
.access table th {
    width: 20%;
    color: #fff;
    background-color: #0f5391;
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #b2b2b2;
    border-bottom: 1px solid #b2b2b2;
}

.access table th:nth-child(2) {
    width: 40%;
}

.access table td {
    font-size: 1.8rem;
    border-bottom: 1px solid #b2b2b2;
}

.access table td:first-child {
    font-weight: bold;
}

.access table td:nth-child(2) {
    padding: 2.5rem 0 2.5rem 3rem;
}

.access table td:not(:nth-child(2)) {
    text-align: center;
}

.access table td.map-link {
    padding: 2.5rem 3rem 2.5rem 0;
    vertical-align: middle;
    white-space: nowrap;
}

.access table td.map-link a {
    display: inline-block;
    color: #fff;
    background-color: #0090e0;
    padding: 0 2rem;
    border-radius: 5px;
    text-decoration: none;
}

/* タブレット・スマホ無効 */
@media screen and (min-width: 960px) {
    .access table td.map-link a {
        transition: 0.3s;
    }
    
    .access table td.map-link a:hover {
        opacity: 0.7;
    }
}

@media screen and (max-width: 1024px) {
    main .access .tb-swipe {
        display: block;
    }
    
    main .access .tb-swipe:before {
        content: "";
        display: inline-block;
        background: url(../images/tb-swipe.png) no-repeat;
        background-size: contain;
        width: 30px;
        height: 28px;
        margin-right: 5px;
        vertical-align: -6px;
    }
    
    main .access .tb-swipeArea {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    main .access .tb-swipeArea table {
        margin: 0;
        width: 1280px;
        -webkit-text-size-adjust: 100%;
    }
    
    main .access .tb-swipeArea th {
        display: table-cell;
    }
    
    main .access .tb-swipeArea td {
        display: table-cell;
        border-bottom: 1px solid #b2b2b2;
    }
}

@media screen and (max-width: 767px) {
    .access table th {
        font-size: 1.6rem;
        padding: 1rem 0 1rem 1rem;
        text-align: left;
    }
    
    .access table th:first-child {
        padding: 1rem 0 1rem 2rem;
    }
    
    .access table td {
        font-size: 1.4rem;
        padding: 2rem 0 2rem 1rem;
    }
    
    .access table td:first-child {
        padding: 2rem 0 2rem 2rem;
    }
    
    .access table td:nth-child(2),
    .access table td.map-link {
        padding: 2rem 0 2rem 1rem;
    }
    
    .access table td:not(:nth-child(2)) {
        text-align: left;
    }
    
    main .access .tb-swipeArea table {
        width: 650px;
    }
}


/* 経営理念
---------------------------------------------- */
.philosophy p {
    font-size: 2rem;
}

.philosophy_contribution {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    position: relative;
}

.philosophy_contribution:after {
    content: "";
    display: block;
    background-color: #fff;
    width: 48%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.philosophy_contribution dt img {
    max-width: none;
}

.philosophy_contribution dd {
    max-width: 630px;
    background-color: #fcfdfd;
    font-size: 3.6rem;
    font-weight: 500;
    padding: 5rem;
    position: absolute;
/*
    top: 65px;
    right: 16%;
    right: 20%;
*/
    top: 90px;
    left: 42%;
    z-index: 2;
}

.philosophy_contribution dd h2 {
    letter-spacing: 0.1em;
}

.philosophy_contribution dd h3 {
    color: #000;
    background-color: transparent;
    font-weight: 500;
    overflow: visible;
}

.philosophy_contribution dd h3 span {
    min-width: 0;
    display: inline;
    padding: 0;
    position: static;
}

.philosophy_contribution dd h3 span:before,
.philosophy_contribution dd h3 span:after {
    display: none;
}

.philosophy .corevalues-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.philosophy .corevalues-list li {
    list-style-type: none;
/*    background-color: #d3e6e9;*/
    font-size: 1.8rem;
    padding: 0.5rem 2rem 0.5rem 6rem;
/*    border-left: 40px solid #0057a6;*/
    position: relative;
}

.philosophy .corevalues-list li:before {
    content: "";
    display: inline-block;
    background-color: #0057a6;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
}

.philosophy .corevalues-list li:after {
    content: "";
    display: inline-block;
    width: 1.4rem;
    height: 0.9rem;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 13px;
    left: 13px;
}

@media screen and (max-width: 1024px) {
    .philosophy_contribution {
        display: flex;
        align-items: flex-start;
    }
    
    .philosophy_contribution:after {
        width: 20%;
    }
    
    .philosophy_contribution dt img {
        max-width: 100%;
    }
    
    .philosophy_contribution dd {
        position: relative;
        top: 0;
        left: auto;
        right: 5%;
        margin: 65px 0 0 -70%;
    }
}

@media screen and (max-width: 767px) {
    .philosophy p {
        font-size: 1.8rem;
    }
    
    .philosophy_contribution dt {
        max-width: 100%;
    }
    
    .philosophy_contribution dd {
        width: 92.5%;
        font-size: 2.6rem;
        padding: 3rem;
        right: auto;
        left: 3.6%;
        margin: 30px 0 0 -100%;
    }
    
    .philosophy .corevalues-list li {
        font-size: 1.6rem;
        padding: 0.5rem 1.5rem 0.5rem 5.5rem;
    }
}

@media screen and (max-width: 414px) {
    .philosophy .corevalues-list li:before {
        top: 8px;
    }
    
    .philosophy .corevalues-list li:after {
        top: 21px;
    }
}


/* ----------------------------------------------
取扱製品
---------------------------------------------- */

/* 一覧
------------------------------- */
.products-inner {
    max-width: 1360px;
    margin: 9rem auto;
    padding: 0 4rem;
    gap: 4rem 0;
}

.products-inner .flex {
    margin-top: 6rem;
}

.products-inner p {
    font-size: 1.8rem;
}

.products-box {
    width: 32%;
}

.products-box a {
    color: #000;
    text-decoration: none;
}

.products-box-img {
    width: 100%;
    overflow: hidden;
}

.products-box-img img {
    height: auto;
    transition: transform .3s ease;
}

.products-box p {
    margin-top: 1rem;
    padding-left: 1em;
    position: relative;
}

.products-box p:before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid #0057a6;
    border-right: 2px solid #0057a6;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

/* タブレット・スマホ無効 */
@media screen and (min-width: 960px) {
    .products-box a:hover {
        color: #0057a6;
    }
    
    .products-box a:hover img {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 1024px) {
    .products-inner {
        margin: 6rem auto;
    }
    
    .products-inner .flex {
        margin-top: 4rem;
    }
}

@media screen and (max-width: 767px) {
    .products-inner {
        margin: 5rem auto;
        padding: 0 2rem;
        gap: 3rem 0;
    }
    
    .products-inner p {
        font-size: 1.6rem;
    }
    
    .products-box {
        width: 100%;
    }
}


/* 概要部分
------------------------------- */
.pr-summary {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 8.5rem auto;
    display: flex;
}

.pr-summary-text {
    width: 33%;
    margin-right: 6rem;
}

.pr-summary-text p {
    font-size: 2rem;
    margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .pr-summary {
        width: auto;
        margin: 0;
        flex-wrap: wrap;
    }
    
    .pr-summary-text {
        width: 100%;
        margin-right: 0;
        display: contents;
    }
    
    .page-content .pr-summary-text h2 {
        order: 1;
    }
    
    .pr-summary-text p {
        font-size: 1.8rem;
        margin: 1.5em 0 0;
        order: 3;
    }
    
    .pr-summary-img {
        order: 2;
    }
}

@media screen and (max-width: 767px) {
    .pr-summary-text p {
        font-size: 1.6rem;
        margin: 1em 0 0;
    }
}


/* 関連トピックス
---------------------------------------------- */
.products .topics {
    background-color: #f6f6f6;
    width: 100vw;
    margin: 8.5rem calc(50% - 50vw) -9rem;
    padding: 8.5rem calc(50vw - 50%);
    position: relative;
    bottom: -1px;
    z-index: 2;
}

.products .topics h2 {
    color: #000;
    font-size: 2.6rem;
    margin-bottom: 1.5em;
}

.products .topic-box {
    margin: 0 2rem;
}

.products .topic-box a {
    color: #000;
    text-decoration: none;
}

.products .topic-box-img {
    width: 100%;
    padding-top: 81.95%;
    position: relative;
    overflow: hidden;
}

.products .topic-box-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .3s ease;
}

.products .topic-box p {
    margin: 0;
    line-height: 1.7;
}

.products .topic-box p.cat {
    display: inline-block;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    padding: 0.2rem 1.5rem 0 1.5rem;
}

.products .topic-box p.cat.product { background-color: #e5e57f; }
.products .topic-box p.cat.solution { background-color: #b2e0d1; }

/* dot */
.products .topics .slick-dots {
    bottom: -80px;
}

.products .topics .slick-dots li {
    width: 15px;
    height: 15px;
}

.products .topics .slick-dots li button:before {
	font-size: 12px;
    width: 12px;
    height: 12px;
    line-height: 12px;
    opacity: 1;
    color: #bebebe;
}

.products .topics .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #0057a6;
}

/* arrow */
.products .topics .slick-prev {
    left: -2.5%;
}

.products .topics .slick-next {
    right: -2.5%;
}

.products .topics .slick-prev:before,
.products .topics .slick-next:before {
    content: "";
    font-size: 0;
    font-family: inherit;
    opacity: 1;
}

.products .topics .slick-prev:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 25px;
    height: 25px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.products .topics .slick-next:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 25px;
    height: 25px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.products .topics .slick-prev:hover,
.products .topics .slick-next:hover,
.products .topics .slick-prev:focus,
.products .topics .slick-next:focus {
    opacity: 0.7;
    transition: 0.3s;
}

/* タブレット・スマホ無効 */
@media screen and (min-width: 960px) {
    .products .topic-box a:hover img {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 1024px) {
    .products .topics {
        margin: 6rem calc(50% - 50vw) -6rem;
        padding: 6rem calc(50vw - 50%);
    }
}

@media screen and (max-width: 767px) {
    .products .topics {
        margin: 5rem calc(50% - 50vw) -5rem;
        padding: 5rem 2rem;
    }
    
    .products .topics h2 {
        font-size: 2.4rem;
        margin-bottom: 1em;
    }
    
    .products .topic-box {
        width: 100%;
    }
    
    .products .topic-box:nth-child(n+2) {
        margin-top: 3rem;
    }
    
    /* dot */
    .products .topics .slick-dots {
        bottom: -72px;
    }
    
    /* arrow */
    .products .topics .slick-prev {
        left: -2%;
    }

    .products .topics .slick-next {
        right: -2%;
    }

    .products .topics .slick-prev:after,
    .products .topics .slick-next:after {
        width: 20px;
        height: 20px;
    }
}


/* 取扱製品
---------------------------------------------- */
.pr-handling ul {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px 2%;
}

.pr-handling ul li {
    list-style-type: none;
    margin: 0;
    width: 23.5%;
    font-size: 1.4rem;
}

.pr-handling ul li h4 {
    background-color: #c4def5;
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0 0 0.5em;
    padding: 0.8rem 2rem 0.7rem;
    border-left: none;
    line-height: 1.6;
}

.pr-handling ul li p {
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .pr-handling ul li h4 {
        font-size: 1.6rem;
        padding: 0.8rem 1.5rem 0.7rem;
    }
}

@media screen and (max-width: 767px) {
    .pr-handling ul {
        gap: 13px 3%;
    }
    
    .pr-handling ul li {
        width: 48%;
    }
}


/* 主な製品用途
---------------------------------------------- */
.pr-purpose ul {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px 2%;
}

.pr-purpose ul li {
    list-style-type: none;
    width: 23.5%;
    margin: 0;
}

.pr-purpose ul.noimg li {
    background-color: #f6f6f6;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 0.8rem 2rem 0.7rem;
    line-height: 1.6;
}

.pr-purpose ul li img {
    margin-bottom: 1em;
}

@media screen and (max-width: 1024px) {
    .pr-purpose ul.noimg li {
        font-size: 1.6rem;
        padding: 0.8rem 1.5rem 0.7rem;
    }
}

@media screen and (max-width: 767px) {
    .pr-purpose ul {
        gap: 13px 3%;
    }

    .pr-purpose ul li {
        width: 48%;
    }
}


/* 注目商品
---------------------------------------------- */
.pr-attention-cont:nth-of-type(n+2) {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #b2b2b2;
}

.pr-attention-cont:after {
    content: "";
    display: block;
    clear: both;
}

.pr-attention-cont .alignleft {
    margin: 0 5rem 0 0;
}

.pr-attention-cont .alignright {
    margin: 0 0 0 5rem;
}

@media screen and (max-width: 1024px) {
    .pr-attention-cont img {
        width: 50%;
    }
    
    .pr-attention-cont .alignleft {
        margin: 0 3rem 1rem 0;
    }

    .pr-attention-cont .alignright {
        margin: 0 0 1rem 3rem;
    }
}

@media screen and (max-width: 767px) {
    .pr-attention-cont img {
        width: 100%;
    }
    
    .pr-attention-cont .alignleft,
    .pr-attention-cont .alignright{
        margin: 0 0 1rem 0;
    }

    .pr-attention-cont h4 {
        margin: 1em 0 0.5em;
    }
}


/* ----------------------------------------------
海外・企画事業
---------------------------------------------- */
.business .business-detail {
    margin-top: 6rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5rem 0;
}

.business .business-detail-box {
    width: 48%;
    position: relative;
    overflow: hidden;
}

.business .business-detail-box a:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
}

.business .business-detail-text {
    color: #fff;
    padding: 0 5rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
}

.business .business-detail-text dt {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5em;
    line-height: 1.6;
}

.business .business-detail-text dt span {
    font-size: 2rem;
    margin-left: 1em;
}

/* タブレット・スマホ無効 */
@media screen and (min-width: 960px) {
    .business .business-detail-box a {
        transition: opacity 0.3s;
    }
    
    .business .business-detail-box a img {
        height: auto;
        transition: transform 0.3s ease;
    }
    
    .business .business-detail-box a:hover {
        opacity: 0.7;
    }
    
    .business .business-detail-box a:hover img {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 1024px) {
    .business .business-detail {
        margin-top: 4rem;
    }
    
    .business .business-detail-text {
        padding: 0 2.5rem;
    }

    .business .business-detail-text dt {
        font-size: 2.8rem;
        margin-bottom: 0.25em;
    }
    
    .business .business-detail-text dt span {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 767px) {
    .business .business-detail {
        gap: 4rem 0;
    }
    
    .business .business-detail-box {
        width: 100%;
    }
    
    .business .business-detail-text dt {
        font-size: 2.4rem;
    }
    
    .business .business-detail-text dt span {
        font-size: 1.6rem;
    }
}


/* 海外事業
------------------------------- */
.abroad_catchphrase {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    position: relative;
}

.abroad_catchphrase:after {
    content: "";
    display: block;
    background-color: #fff;
    width: 29%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.abroad_catchphrase dt img {
    max-width: none;
}

.abroad_catchphrase dd {
    max-width: 695px;
    background-color: #fcfdfd;
    padding: 6rem;
    position: absolute;
    top: 65px;
    right: 16%;
    z-index: 2;
}

.abroad_catchphrase dd h2 {
    margin-top: 0 !important;
    letter-spacing: 0.1em;
}

.abroad_catchphrase dd h3 {
    color: #000;
    background-color: transparent;
    font-weight: 500;
    overflow: visible;
}

.abroad_catchphrase dd h3 span {
    min-width: 0;
    display: inline;
    padding: 0;
    position: static;
}

.abroad_catchphrase dd h3 span:before,
.abroad_catchphrase dd h3 span:after {
    display: none;
}

.overseas-business h2:first-of-type {
    margin: 2em 0 0.8em;
}


/* 取り扱いジャンル */
.genre-handled .flex-img {
    margin-left: 2rem;
}

.genre-handled .flex-img .wp-caption {
    margin: 0 auto;
}

.genre-handled ul.nodisc {
    margin-top: 2em;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px 2%;
}

.genre-handled ul.nodisc li {
    list-style-type: none;
    width: 23.5%;
    margin: 0;
    text-align: center;
}

.genre-handled ul.nodisc li img {
    margin-bottom: 1em;
}


/* 流れ(企画事業共通) */
.pr-flowchart dl {
    display: flex;
    position: relative;
}

.pr-flowchart dl:nth-of-type(n+2) {
    margin-top: 4rem;
}

.pr-flowchart dl:after {
    content: "";
    position: absolute;
    bottom: -55px;
    left: 190px;
    border: 23px solid transparent;
    border-top: 23px solid #0090e0;
}

.pr-flowchart dl:last-child:after {
    display: none;
}

.pr-flowchart dt {
    width: 134px;
    color: #fff;
    background-color: #0090e0;
    font-size: 4rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.pr-flowchart dd {
    width: 90%;
    min-height: 110px;
    background-color: #f6f6f6;
    padding: 2.2rem 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pr-flowchart dd h4 {
    font-size: 1.8rem;
    margin: 0;
    border-left: none;
    padding-left: 0;
    line-height: 1.8;
}

.pr-flowchart dd p {
    margin-bottom: 0;
    line-height: 1.8;
}

/* 輸出の流れ */
.overseas-business .pr-flowchart dl:nth-of-type(3) {
    width: 50%;
}

.overseas-business .pr-flowchart dt {
    width: 110px;
}

.overseas-business .pr-flowchart dd {
    width: 91.5%;
}

.overseas-business .pr-flowchart dd .skip {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    position: absolute;
    top: 170%;
    right: 33%;
}

.overseas-business .pr-flowchart dd .skip span {
    position: relative;
    z-index: 1;
}

/*
.overseas-business .pr-flowchart dd .skip span:before {
    content: "";
    width: 28px;
    height: 140px;
    background-color: #0090e0;
    position: absolute;
    bottom: -45px;
    left: -45px;
}
*/

.overseas-business .pr-flowchart dd .skip span:after {
    content: "";
    position: absolute;
/*
    top: 310%;
    left: -60px;
*/
    top: -5px;
    left: -65px;
    border: 28px solid transparent;
    border-top: 37px solid #0090e0;
}


/* 海外拠点のご紹介 */
.overseas-business .overseas-bases h3:first-of-type {
    margin-top: 0;
}

.overseas-business .overseas-bases .flex {
    margin-bottom: 6rem;
}

.overseas-business .overseas-bases h4 {
    font-size: 2rem;
    margin-top: 0;
    border-left: none;
    padding-left: 0;
    line-height: 1.8;
}

.overseas-business .overseas-bases h5 {
    font-size: 1.6rem;
}

.overseas-business .overseas-bases li {
    margin-bottom: 0.5em;
}

.overseas-business .overseas-bases iframe {
    width: 600px;
    margin-left: 4rem;
}


/* お客様の声 */
.customer-testimonials dl {
    margin: 8rem 0;
    display: flex;
    align-items: center;
}

.customer-testimonials dt {
    width: 30%;
    text-align: center;
}

.customer-testimonials dt img {
    margin-bottom: 1em;
}

.customer-testimonials dd {
    width: 70%;
    background-color: #f6f6f6;
    padding: 4rem 5rem;
    line-height: 2;
    position: relative;
}

.customer-testimonials dd:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    border: 20px solid transparent;
    border-right: 50px solid #f6f6f6;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
}

.customer-testimonials dd p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .abroad_catchphrase {
        display: flex;
        align-items: flex-start;
    }

    .abroad_catchphrase:after {
        width: 20%;
    }
    
    .abroad_catchphrase dt img {
        max-width: 100%;
    }
    
    .abroad_catchphrase dd {
        position: relative;
        top: 0;
        right: 5%;
        margin: 65px 0 0 -70%;
    }
    
    /* 取り扱いジャンル */
    .genre-handled .flex-img {
        margin: 2rem 0 0;
    }
    
    /* 輸出の流れ */
    .overseas-business .pr-flowchart dl:nth-of-type(3) {
        width: 62%;
    }
    
    .overseas-business .pr-flowchart dd .skip {
        right: 8%;
    }
    
    /* 海外拠点のご紹介 */
    .overseas-business .overseas-bases .flex {
        flex-direction: column;
    }
    
    .overseas-business .overseas-bases iframe {
        width: 100%;
        margin: 2rem 0 0;
    }
    
    /* お客様の声 */
    .customer-testimonials dd {
        padding: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .overseas-business h1 {
        line-height: 1.2;
    }
    
    .abroad_catchphrase dt {
        max-width: 100%;
    }
    
    .abroad_catchphrase dd {
        width: 92.5%;
        padding: 3rem;
        right: auto;
        left: 3.6%;
        margin: 30px 0 0 -100%;
    }
    
    .abroad_catchphrase dd h3 {
        font-size: 2rem;
    }
    
    .abroad_catchphrase dd p {
        margin-bottom: 0;
    }
    
    /* 取り扱いジャンル(企画事業共通) */
    .genre-handled .wp-caption-text {
        text-align: center;
    }
    
    .genre-handled ul.nodisc {
        gap: 13px 3%;
    }

    .genre-handled ul.nodisc li {
        width: 48%;
    }
    
    /* 流れ(企画事業共通) */
    .pr-flowchart {
        background-color: #fff;
    }
    
    .pr-flowchart dl:after {
        left: 50%;
        transform: translateX(-50%);
        -webkit- transform: translateX(-50%);
    }
    
    .pr-flowchart dt {
        width: 60px;
    }
    
    /* 輸出の流れ */
    .overseas-business .pr-flowchart dt {
        width: 60px;
    }
    
    .overseas-business .pr-flowchart dl:nth-of-type(3) dd {
        padding: 2rem;
    }
    
    .overseas-business .pr-flowchart dl:nth-of-type(3) h4 {
        font-size: 1.4rem;
    }
    
    .overseas-business .pr-flowchart dl:nth-of-type(3) p {
        font-size: 1.2rem;
    }
    
    .overseas-business .pr-flowchart dd .skip {
        font-size: 1.4rem;
        top: 155%;
    }
    
    .overseas-business .pr-flowchart dd .skip span:before {
        height: 160px;
        bottom: -70px;
        left: 0;
        right: 0;
        margin: auto;
        z-index: -1;
    }

    .overseas-business .pr-flowchart dd .skip span:after {
/*        top: 70px;*/
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        -webkit- transform: translateX(-50%);
    }
    
    /* 海外拠点のご紹介 */
    .overseas-business .overseas-bases .flex-right {
        height: 0;
        margin-top: 2rem;
        padding-bottom: 75%;
        overflow: hidden;
        position: relative;
    }

    .overseas-business .overseas-bases iframe {
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    /* お客様の声 */
    .customer-testimonials dl {
        margin: 3rem 0 4rem;
        flex-direction: column;
    }
    
    .customer-testimonials dt {
        width: 100%;
        margin-bottom: 3em;
    }

    .customer-testimonials dd {
        width: 100%;
    }

    .customer-testimonials dd:before {
        top: auto;
        bottom: 100%;
        right: auto;
        left: 50%;
        border-right: 20px solid transparent;
        border-bottom: 40px solid #f6f6f6;
        transform: translateX(-50%);
        -webkit- transform: translateX(-50%);
    }
}

@media screen and (max-width: 414px) {
    .overseas-business .pr-flowchart dd .skip {
        right: 4%;
    }
}


/* 商品企画・OEM開発事業
------------------------------- */
.oem_catchphrase {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    position: relative;
}

.oem_catchphrase:after {
    content: "";
    display: block;
    background-color: #fff;
    width: 29%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.oem_catchphrase dt img {
    max-width: none;
}

.oem_catchphrase dd {
    max-width: 695px;
    background-color: #fcfdfd;
    padding: 6rem;
    position: absolute;
    top: 65px;
    right: 16%;
    z-index: 2;
}

.oem_catchphrase dd h2 {
    margin-top: 0 !important;
    letter-spacing: 0.1em;
}

.oem_catchphrase dd h3 {
    color: #000;
    background-color: transparent;
    font-weight: 500;
    overflow: visible;
}

.oem_catchphrase dd h3 span {
    min-width: 0;
    display: inline;
    padding: 0;
    position: static;
}

.oem_catchphrase dd h3 span:before,
.oem_catchphrase dd h3 span:after {
    display: none;
}

.product-planning ul.nodisc {
    margin-top: 2em;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px 2%;
}

.product-planning ul.nodisc li {
    list-style-type: none;
    width: 23.5%;
    margin: 0;
    text-align: center;
}

/*
.oem_catchphrase dt {
    font-size: 3.2rem;
    font-weight: bold;
    margin: 1em 0;
}
*/

/* 課題解決事例 */
.problem-solving-examples h3:first-of-type {
    margin-top: 0;
}

.problem-solving-examples h4 {
    color: #0057a6;
    margin: 0 0 0.5em;
    border-left: none;
    padding-left: 0;
    line-height: 1.8;
}

.problem-solving-examples dl {
    margin-bottom: 6rem;
    display: flex;
    align-items: center;
}

.problem-solving-examples dl.imgright {
    flex-direction: row-reverse;
}

.problem-solving-examples dt {
    width: 30%;
    text-align: center;
}

.problem-solving-examples dt img {
    margin-bottom: 1em;
}

.problem-solving-examples dd {
    width: 70%;
    background-color: #f6f6f6;
    padding: 4rem 5rem;
    line-height: 2;
    position: relative;
}

.problem-solving-examples dd:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    border: 20px solid transparent;
    border-right: 50px solid #f6f6f6;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
}

.problem-solving-examples dl.imgright dd:before {
    right: auto;
    left: 100%;
    border-right: 20px solid transparent;
    border-left: 50px solid #f6f6f6;
}

.problem-solving-examples dd p:last-child {
    margin-bottom: 0;
}

.problem-solving-examples dl.actualproduct {
    margin-bottom: 0;
}

.problem-solving-examples dl.actualproduct dt {
    width: 47%;
    text-align: left;
    margin-right: 4rem;
}

.problem-solving-examples dl.actualproduct dt img {
    margin-bottom: 0;
}

.problem-solving-examples dl.actualproduct dd {
    width: 50%;
    background-color: transparent;
    padding: 0;
}

.problem-solving-examples dl.actualproduct dd:before {
    display: none;
}

.problem-solving-examples ul.nodisc li {
    width: 49%;
}

@media screen and (max-width: 1024px) {
    .oem_catchphrase {
        display: flex;
        align-items: flex-start;
    }

    .oem_catchphrase:after {
        width: 20%;
    }
    
    .oem_catchphrase dt img {
        max-width: 100%;
    }
    
    .oem_catchphrase dd {
        position: relative;
        top: 0;
        right: 5%;
        margin: 65px 0 0 -70%;
    }
    
    /* 課題解決事例 */
    .problem-solving-examples dd {
        padding: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .product-planning h1 {
        line-height: 1.2;
    }
    
    .oem_catchphrase dt {
        max-width: 100%;
    }
    
    .oem_catchphrase dd {
        width: 92.5%;
        padding: 3rem;
        right: auto;
        left: 3.6%;
        margin: 30px 0 0 -100%;
    }
    
    .oem_catchphrase dd h3 {
        font-size: 2rem;
    }
    
    .oem_catchphrase dd p {
        margin-bottom: 0;
    }
    
    .product-planning ul.nodisc {
        gap: 13px 3%;
    }

    .product-planning ul.nodisc li {
        width: 48%;
    }
    
    .oem_catchphrase dt {
        font-size: 2.4rem;
    }
    
    /* 課題解決事例 */
    .problem-solving-examples dl {
        margin-bottom: 4rem;
        flex-direction: column;
    }
    
    .problem-solving-examples dl.imgright {
        flex-direction: column;
    }
    
    .problem-solving-examples dt {
        width: 100%;
        margin-bottom: 3em;
    }

    .problem-solving-examples dd {
        width: 100%;
    }

    .problem-solving-examples dd:before {
        top: auto;
        bottom: 100%;
        right: auto;
        left: 50%;
        border-right: 20px solid transparent;
        border-bottom: 40px solid #f6f6f6;
        transform: translateX(-50%);
        -webkit- transform: translateX(-50%);
    }
    
    .problem-solving-examples dl.imgright dd:before {
        left: 50%;
        border-left: 20px solid transparent;
    }
    
    .problem-solving-examples dl.actualproduct dt {
        width: 100%;
        margin: 0 0 1em;
    }
    
    .problem-solving-examples dl.actualproduct dd {
        width: 100%;
    }
}


/* ----------------------------------------------
製品トピックス
---------------------------------------------- */

/* 一覧
------------------------------- */
.topic-inner {
    max-width: 1360px;
    margin: 9rem auto;
    padding: 0 4rem;
}

.topic-inner .flex {
    margin-top: 6rem;
    gap: 4rem 7.5%;
}

.topic-inner p {
    font-size: 1.8rem;
}

.topic-box {
    width: 28.13%;
}

.topic-box a {
    color: #000;
    text-decoration: none;
}

.topic-box-img {
    width: 100%;
    padding-top: 81.95%;
    position: relative;
    overflow: hidden;
}

.topic-box-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .3s ease;
}

.topic-box p {
    line-height: 1.7;
}

.topic-box p + p {
    margin-top: 0;
}

.topic-box p.cat {
    display: inline-block;
    color: #000;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    padding: 0.2rem 1.5rem 0 1.5rem;
}

.topic-box p.cat.product { background-color: #e5e57f; }
.topic-box p.cat.solution { background-color: #b2e0d1; }

/* タブレット・スマホ無効 */
@media screen and (min-width: 960px) {
    .topic-box a:hover {
        color: #0057a6;
    }
    
    .topic-box a:hover img {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 1024px) {
    .topic-inner {
        margin: 6rem auto;
    }
    
    .topic-inner .flex {
        margin-top: 4rem;
    }
}

@media screen and (max-width: 767px) {
    .topic-inner {
        margin: 5rem auto;
        padding: 0 2rem;
    }
    
    .topic-inner .flex {
        gap: 3rem 0;
    }
    
    .topic-inner p {
        font-size: 1.6rem;
    }
    
    .topic-box {
        width: 100%;
    }
}


/* 詳細　共通
------------------------------- */
.topics form {
    text-align: center;
}

.topics-contact {
    color: #fff;
    background-color: #0057a6;
    font-size: 1.6rem;
    border: none;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    border-radius: 5px;
    white-space: normal;
    cursor: pointer;
    transition: opacity 0.3s;
}

/* タブレット・スマホ無効 */
@media screen and (min-width: 960px) {
    .topics-contact:hover {
        opacity: 0.7;
    }
}


/* ----------------------------------------------
サステナビリティ
---------------------------------------------- */
.sustainability .csr_catchphrase {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    position: relative;
}

.sustainability .csr_catchphrase:after {
    content: "";
    display: block;
    background-color: #fff;
    width: 29%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.sustainability .csr_catchphrase dt img {
    max-width: none;
}

.sustainability .csr_catchphrase dd {
    max-width: 695px;
    background-color: #fcfdfd;
    padding: 6rem;
    position: absolute;
    top: 65px;
    right: 16%;
    z-index: 2;
}

.sustainability .csr_catchphrase dd h2 {
    margin-top: 0 !important;
    line-height: 1.7;
}

.sustainability .csr_catchphrase dd p {
    margin-bottom: 0;
}

.sustainability h2:first-of-type {
    margin: 2em 0 0.8em;
}

.sustainability .csr-detail {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5rem 0;
}

.sustainability .csr-detail-box {
    width: 48%;
    position: relative;
    overflow: hidden;
}

.sustainability .csr-detail-box a:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
}

.sustainability .csr-detail-text {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    z-index: 2;
}

.sustainability .csr-detail-text p {
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* タブレット・スマホ無効 */
@media screen and (min-width: 960px) {
    .sustainability .csr-detail-box a {
        transition: opacity 0.3s;
    }
    
    .sustainability .csr-detail-box a img {
        height: auto;
        transition: transform 0.3s ease;
    }
    
    .sustainability .csr-detail-box a:hover {
        opacity: 0.7;
    }
    
    .sustainability .csr-detail-box a:hover img {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 1024px) {
    .sustainability .csr_catchphrase {
        display: flex;
        align-items: flex-start;
    }

    .sustainability .csr_catchphrase:after {
        width: 20%;
    }
    
    .sustainability .csr_catchphrase dt img {
        max-width: 100%;
    }
    
    .sustainability .csr_catchphrase dd {
        position: relative;
        top: 0;
        right: 5%;
        margin: 65px 0 0 -70%;
    }
    
    .sustainability .csr-detail-text p {
        font-size: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .sustainability .csr_catchphrase dt {
        max-width: 100%;
    }
    
    .sustainability .csr_catchphrase dd {
        width: 92.5%;
        padding: 3rem;
        right: auto;
        left: 3.6%;
        margin: 30px 0 0 -100%;
    }
    
    .sustainability .csr-detail {
        gap: 4rem 0;
    }
    
    .sustainability .csr-detail-box {
        width: 100%;
    }
}


/* 環境対応製品のご案内　トピックス一覧
---------------------------------------------- */
.environment-topic-inner {
    gap: 4rem 7.5%;
}

.environment .topic-box p {
    margin: 1em 0 0;
}

@media screen and (max-width: 767px) {
    .environment-topic-inner {
        gap: 3rem 0;
    }
}


/* 当社の取り組み事例
------------------------------- */
.our-efforts_detail {
    display: flex;
    align-items: center;
}

.our-efforts_detail:nth-of-type(even) {
    flex-direction: row-reverse;
}

.our-efforts_detail dt {
    min-width: 700px;
}

.our-efforts_detail dd {
    max-width: 700px;
    background-color: #f9f9f9;
    padding: 5rem;
    margin-left: -25%;
    line-height: 2;
}

.our-efforts_detail:nth-of-type(even) dd {
    margin: 0 -25% 0 0;
    z-index: 2;
}

.our-efforts_detail dd strong {
    color: #0057a6;
}

@media screen and (max-width: 1024px) {
    .our-efforts_detail {
        display: block
    }
    
    .our-efforts_detail dt {
        min-width: 0;
    }
    
    .our-efforts_detail dd {
        max-width: none;
        background-color: transparent;
        padding: 1em 0 0;
        margin: 0 !important;
    }
}


/* 各種ポリシー
------------------------------- */
/*
.csr_ilo p:first-of-type {
    font-size: 2.4rem;
    font-weight: 500;
}

.csr_environment dl  {
    margin-bottom: 2.5em;
}

.csr_environment dt  {
    color: #0f7f40;
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 0.5em;
}

.csr_environment dd  {
    font-size: 1.8rem;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .csr_ilo p:first-of-type {
        font-size: 2rem;
    }
    
    .csr_environment dt  {
        font-size: 2rem;
    }
}
*/


/* ----------------------------------------------
お知らせ
---------------------------------------------- */
.news article dl {
    background-color: #f6f6f6;
    border-radius: 10px;
    margin-bottom: 3rem;
    padding: 2.5rem;
}

.news article dl:last-child {
    margin-bottom: 0;
}

.news article dt {
    width: 140px;
    flex-shrink: 0;
}

.news article dd a {
    color: #0057a6;
    text-decoration: underline;
}

.news article dd a:hover {
    text-decoration: none;
}

.news .single h2 {
    margin-bottom: 0.5em;
}

.news .single time {
    display: block;
    font-weight: 500;
    margin-bottom: 1.7em;
}

.news .single .pager {
    margin-top: 8rem;
}

@media screen and (max-width: 1024px) {
    .news article dt {
        width: 95px;
    }
    
    .news .single .pager {
        margin-top: 6rem;
    }
}

@media screen and (max-width: 767px) {
    .news article dt {
        width: 100%;
        margin-bottom: 0.5em;
    }
    
    .news .single time {
        margin-bottom: 1em;
    }
    
    .news .single .pager {
        margin-top: 5rem;
    }
}


/* ----------------------------------------------
採用情報
---------------------------------------------- */
.employee-message {
    display: flex;
    justify-content: space-between;
}

.employee-message:nth-of-type(n+2) {
    margin-top: 7rem;
    padding-top: 7rem;
    border-top: 1px solid #ccc;
}

.employee-message-img {
    width: 25%;
}

.employee-message-img-inner {
    position: relative;
}

.employee-message-img .messe-title {
    width: 100%;
    color: #fff;
    background-color: rgba(51,51,51,0.4);
    padding: 1rem 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.employee-message-img .messe-title h4 {
    margin: 0;
    border-left: none;
    padding-left: 0;
}

.employee-message-img .messe-title p {
    margin-bottom: 0;
}

.employee-message-text {
    width: 70%;
}

.employee-message-text dt {
    font-size: 2rem;
    font-weight: bold;
    margin: 1.5em 0 0.5em;
    position: relative;
    padding-bottom: 0.5em;
    border-bottom: 3px solid #0057a6;
}

.employee-message-text dt:before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 20%;
    height: 3px;
    background-color: #0090e0;
}

.employee-message-text dt:first-child {
    margin-top: 0;
}

.look-data {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2.66%;
}

.look-data > dl {
    width: 23%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.look-data > dl > dt {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.look-data > dl > dd {
    color: #0057a6;
    background-color: #dfebf2;
    font-size: 4rem;
    font-weight: bold;
    padding: 3rem;
    border-radius: 20px;
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.look-data dd .data-num {
    font-size: 6rem;
    padding: 0 0.25rem 1rem 0;
}

.look-data dd:has(.data-num) {
    font-size: 3.6rem;
    padding: 3rem 3rem 2rem 3rem;
}

.look-data dd .bar-chart {
    width: 100%;
}

.look-data dd .bar-chart dl {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.look-data dd .bar-chart dt {
    font-size: 1.8rem;
    width: 55px;
    min-width: 55px;
}

.look-data dd .bar-chart.lengser dt {
    width: 85px;
    min-width: 85px;
}

.look-data dd .bar-chart dd {
    color: #fff;
    background-color: #0057a6;
    font-size: 2rem;
    padding: 0 1.5rem 0 0;
    text-align: right;
    white-space: nowrap;
}

.look-data dd .pie-chart-60 {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    background-image: conic-gradient(#0057a6 60%, #0090e0 60% 100%);
}

.look-data dd .pie-chart-60 .pie-chart-num-1 {
    color: #fff;
    font-size: 2rem;
    line-height: 1.5;
    position: absolute;
    top: 55%;
    right: 25%;
    transform: translate(50%, -50%);
}

.look-data dd .pie-chart-60 .pie-chart-num-2 {
    color: #fff;
    font-size: 2rem;
    line-height: 1.5;
    position: absolute;
    top: 40%;
    left: 25%;
    transform: translate(-50%, -50%);
}

.look-data dd .pie-chart-70 {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    background-image: conic-gradient(#0057a6 70%, #0090e0 70% 100%);
}

.look-data dd .pie-chart-70 .pie-chart-num-1 {
    color: #fff;
    font-size: 2rem;
    position: absolute;
    top: 55%;
    right: 25%;
    transform: translate(50%, -50%);
}

.look-data dd .pie-chart-70 .pie-chart-num-2 {
    color: #fff;
    font-size: 2rem;
    position: absolute;
    top: 35%;
    left: 25%;
    transform: translate(-50%, -50%);
}

.look-data dd .pie-chart-90 {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    background-image: conic-gradient(#0057a6 90%, #0090e0 90% 100%);
}

.look-data dd .pie-chart-90 .pie-chart-num-1 {
    color: #fff;
    font-size: 2rem;
    position: absolute;
    top: 70%;
    right: 40%;
    transform: translate(50%, -50%);
}

.look-data dd .pie-chart-90 .pie-chart-num-2 {
    color: #fff;
    font-size: 2rem;
    position: absolute;
    top: 25%;
    left: 40%;
    transform: translate(-50%, -50%);
}

.work-place {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.work-place-content {
    width: 48%;
    padding: 0 1.5rem 3rem;
    border-bottom: 1px dashed #0090e0;
}

.work-place-content:last-child,
.work-place-content:nth-last-child(2) {
    border-bottom: none;
}

.recruit .closing_words {
    color: #0057a6;
/*    background-color: #f0f8fc;*/
    font-size: 2rem;
    font-weight: 500;
    margin-top: 2em;
    text-align: center;
/*
    padding: 2rem;
    border-radius: 5px;
*/
}

@media screen and (max-width: 1024px) {
    .employee-message:nth-of-type(n+2) {
        margin-top: 6rem;
        padding-top: 6rem;
    }
    
    .employee-message-img {
        width: 43%;
    }
    
    .employee-message-text {
        width: 52%;
    }
    
    .look-data > dl {
        width: 48%;
    }
    
    .recruit .closing_words {
        text-align: left;
    }
}

@media screen and (max-width: 767px) {
    .employee-message {
        display: block;
    }
    
    .employee-message:nth-of-type(n+2) {
        margin-top: 4rem;
        padding-top: 4.5rem;
    }
    
    .employee-message-img {
        width: 100%;
        margin-bottom: 3rem;
    }
    
    .employee-message-text {
        width: 100%;
    }
    
    .look-data {
        flex-direction: column;
    }
    
    .look-data > dl {
        width: 100%;
    }
    
    .work-place {
        flex-direction: column;
    }
    
    .work-place-content {
        width: 100%;
    }
    
    .work-place-content:nth-last-child(2) {
        border-bottom: 1px dashed #0090e0;
    }
    
    .recruit .closing_words {
        font-size: 1.8rem;
    }
}


/* ----------------------------------------------
お問い合わせ プライバシー
---------------------------------------------- */
.contact .tel_fax td {
    text-align: center;
}

.contact .tel_fax td:last-child {
    border-left: 1px solid #ddd;
}

.contact form select[name="contact-information"] {
    width: 50%;
    height: 30px;
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
    .contact .tel_fax td {
        text-align: left;
    }

    .contact .tel_fax td:last-child {
        border-left: none;
        border-top: 1px solid #ddd;
    }
    
    .contact form select[name="contact-information"] {
        width: 100%;
    }
}


/* ----------------------------------------------
サイトマップ
---------------------------------------------- */
.sitemap-detail {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5rem 0;
}

.sitemap-detail-box {
    width: 48%;
}

.sitemap-detail-box > a {
    font-size: 2.4rem;
    padding-left: 1.5em;
    position: relative;
}

.sitemap-detail-box > a:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    border: 8px solid transparent;
    border-left: 16px solid #0f5391;
}

.sitemap-detail-box ul {
    margin: 1em 0 0;
    padding-left: 3.5em;
}

.sitemap-detail-box li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .sitemap-detail {
        gap: 3rem 0;
    }
    
    .sitemap-detail-box {
        width: 100%;
    }
    
    .sitemap-detail-box > a {
        font-size: 2.2rem;
    }
}


/* ----------------------------------------------
化成品トピックス　表
---------------------------------------------- */
@media screen and (max-width: 767px) {
    .topics .single table:not(.sideways) th[style^="width"],
    .topics .single table:not(.sideways) td[style^="width"] {
        width: 100% !important;
    }
    
    .topics .single table:not(.sideways) th[style^="height"],
    .topics .single table:not(.sideways) td[style^="height"] {
        height: auto !important;
    }
}


/* ルナフレックス　Ｓシリーズ
------------------------------- */
@media screen and (max-width: 1024px) {
    .lunaflex table[style="width: 30%;"] {
        width: 70% !important;
    }
}

@media screen and (max-width: 767px) {
    .lunaflex table[style="width: 30%;"] {
        width: 100% !important;
    }
}

/* ルナフロー　RAシリーズ
------------------------------- */
@media screen and (max-width: 1024px) {
    .lunaflow table[style="width: 40%;"] {
        width: 70% !important;
    }
}

@media screen and (max-width: 767px) {
    .lunaflow table[style="width: 40%;"] {
        width: 100% !important;
    }
}

/* 帯電防止剤マスターバッチ
------------------------------- */
@media screen and (max-width: 1024px) {
    .masterbatch table[style="width: 60%;"] {
        width: 100% !important;
    }
}


/* ----------------------------------------------
化成品トピックス　三井化学　バイオマス原料＆リサイクル原料
---------------------------------------------- */
.biomass_recycling_lineup .brl_flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.biomass_recycling_lineup .brl_box {
    width: 32%;
    background-color: #e4f5e4;
    padding-bottom: 1em;
    border-radius: 30px;
}

.biomass_recycling_lineup .brl_box h4 {
    color: #fff;
    background-color: #07ad59;
    margin-top: 0;
    padding: 1rem 0;
    border-left: none;
    border-radius: 30px;
    text-align: center;
}

.biomass_recycling_lineup .brl_box ul {
    padding: 0 2em;
}

.biomass_recycling_lineup .brl_box:first-child ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.biomass_recycling_lineup .brl_box li {
    list-style-type: none;
    padding-left: 1em;
    position: relative;
}

.biomass_recycling_lineup .brl_box li:before {
    content: "▶︎";
    position: absolute;
    top: 5px;
    left: 0;
    color: #000;
    font-size: 1rem;
}

.biomass_recycling_lineup .brl_box:first-child li {
    width: 48%;
}

.biomass_recycling_lineup .brl_box ul.redbox {
    border: 1px dashed red;
    margin: 0 1em 1em;
    padding: 1em 1em 0;
}

.biomass_recycling_lineup .brl_box ul.bluebox {
    border: 1px dashed blue;
    margin: 0 1em 1em;
    padding: 1em 1em 0;
}

.biomass_recycling_lineup span.redbox {
    color: red;
}

.biomass_recycling_lineup span.bluebox {
    color: blue;
}

.biomass_recycling_lineup .closing_words {
    color: #00928d;
    font-size: 2.4rem;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .biomass_recycling_lineup .brl_flex {
        display: block;
    }
    
    .biomass_recycling_lineup .brl_box {
        width: 100%;
    }
    
    .biomass_recycling_lineup .brl_box h4 {
        margin-top: 2em;
    }
    
    .biomass_recycling_lineup .brl_box:first-child h4 {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .biomass_recycling_lineup .brl_box ul {
        padding: 0 1.5em;
    }
    
    .biomass_recycling_lineup .closing_words {
        font-size: 2rem;
    }
}


/* ----------------------------------------------
化成品トピックス　カオーアキポRLM-26NV
---------------------------------------------- */
@media screen and (max-width: 1024px) {
    .kaoakipo .width_pc50_sp100 {
        width: 100%;
    }
    
    .kaoakipo .flex {
        flex-wrap: wrap;
    }
}

/* ----------------------------------------------
化成品トピックス　花王クリンスルー
---------------------------------------------- */
.cleanthrough-contents {
    margin-bottom: 5rem;
    padding: 3rem;
    border: 3px solid #5588af;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
}

.clth-cont-left dt {
    color: #5588af;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1em;
}

.clth-cont-left dd {
    color: #5588af;
    font-size: 2rem;
    font-weight: 500;
}

.clth-cont-left dd .clth-cont-name {
    display: block;
    color: #339966;
    font-size: 2.4rem;
    font-weight: 500;
    margin-top: 1em;
}

.clth-cont-right {
    width: 450px;
    margin-left: 3rem;
    flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
    .clth-cont-left dt {
        font-size: 2.6rem;
    }
    
    .clth-cont-right {
        width: 40%;
    }
}

@media screen and (max-width: 767px) {
    .cleanthrough-contents {
        margin-bottom: 4rem;
        padding: 2.5rem;
        flex-wrap: wrap;
    }
    
    .clth-cont-left dt {
        font-size: 2.4rem;
    }

    .clth-cont-left dd {
        font-size: 1.8rem;
    }

    .clth-cont-left dd .clth-cont-name {
        font-size: 2rem;
    }
    
    .clth-cont-right {
        width: 100%;
        margin: 3rem 0 0;
    }
}


/* ----------------------------------------------
化成品トピックス　バイオ没⾷⼦酸
---------------------------------------------- */
@media screen and (max-width: 1024px) {
    .gallic-acid .alignright {
        width: 100%;
    }
    
    .gallic-acid table[style="width: 40%;"] {
        width: 100% !important;
    }
}


/* ----------------------------------------------
化成品トピックス　Saxin ニューライト
---------------------------------------------- */
.saxin .lineup_h30_box p:has(img) {
    width: 350px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ----------------------------------------------
化成品トピックス　Saxin ニューライト
---------------------------------------------- */
.saxin .lineup_h30_box p:has(img) {
    width: 350px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .saxin .lineup_h30_box p:has(img) {
        width: 200px;
        height: 230px;
    }
}

@media screen and (max-width: 767px) {
    .saxin .lineup_h30_box p:has(img) {
        width: 100%;
        height: auto;
    }
}


/* ----------------------------------------------
化成品トピックス　FUMEI製品一覧
---------------------------------------------- */
.oil-list td:first-child {
    background-color: #f6f6f6;
    text-align: center;
}

.oil-list td:nth-child(n+6) {
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .vantage-jojoba-oil .tb-swipe {
        display: block;
    }
    
    .vantage-jojoba-oil .tb-swipe:before {
        content: "";
        display: inline-block;
        background: url(../images/tb-swipe.png) no-repeat;
        background-size: contain;
        width: 30px;
        height: 28px;
        margin-right: 5px;
        vertical-align: -6px;
    }
    
    .vantage-jojoba-oil .tb-swipeArea {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .vantage-jojoba-oil .tb-swipeArea table {
        width: 1000px;
        -webkit-text-size-adjust: 100%;
    }
}


/* ----------------------------------------------
化成品トピックス　FUMEI製品一覧
---------------------------------------------- */
@media screen and (max-width: 767px) {
    main .fumei-list th,
    main .fumei-list td {
        padding: 15px;
    }
    
    .fumei-list td:last-child {
        text-align: center;
    }
}


/* ----------------------------------------------
化成品トピックス　天然粘土鉱物「ベンナイト」
---------------------------------------------- */
.bentonite h4.water-based { border-left: 5px solid #498fcc; }
.bentonite h4.water-dispersion { border-left: 5px solid #83d2e3; }
.bentonite h4.solvent-based { border-left: 5px solid #f68e85; }

.bentonite table.line-up th {
    width: 20%;
}

.bentonite table.line-up tr.bengel th { background-color: #D4E0F2; }
.bentonite table.line-up tr.bengel-fw th { background-color: #D4E4F5; }
.bentonite table.line-up tr.bengel-next-lu th { background-color: #D5E8F7; }
.bentonite table.line-up tr.bengel-next-ss th { background-color: #D4F0FD; }
.bentonite table.line-up tr.dispagel th { background-color: #D6EFF2; }
.bentonite table.line-up tr.s-ben th { background-color: #FCE3E4; }
.bentonite table.line-up tr.s-ben-wv th { background-color: #EEDFEE; }

.bentonite table.line-up tr.bengel td { background-color: #f5f9ff; }
.bentonite table.line-up tr.bengel-fw td { background-color: #f4faff; }
.bentonite table.line-up tr.bengel-next-lu td { background-color: #f4faff; }
.bentonite table.line-up tr.bengel-next-ss td { background-color: #f2fafe; }
.bentonite table.line-up tr.dispagel td { background-color: #f4fcfd; }
.bentonite table.line-up tr.s-ben td { background-color: #fff7f7; }
.bentonite table.line-up tr.s-ben-wv td { background-color: #fdf4fd; }

.bentonite table.line-up td:last-child {
    width: 50%;
    background-color: #fff !important;
}

@media screen and (max-width: 1024px) {
    .bentonite table.line-up th {
        width: 25%;
    }
    
    .bentonite table.line-up td:last-child {
        width: 45%;
    }
}

@media screen and (max-width: 767px) {
    .bentonite table.line-up th,
    .bentonite table.line-up td:last-child {
        width: 100%;
    }
}
