@charset "UTF-8";
/* ==============================
Foundation
================================= */
/*
---
name: index
category:
  - object
  - object/foundation/index
---
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/*
---
name: index
category:
  - object
  - object/global/index
---
*/
/*
---
name: variable
category:
  - global/variable
---

変数 設定

*/
/*
---
name: mixin
category:
  - global/mixin
---

*/
/*
---
name: base
category:
  - foundation/base
---

基本設定

*/
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/NotoSansJP-Light.otf) format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/NotoSerifJP-Regular.otf) format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/NotoSerifJP-Bold.otf) format("opentype");
  font-display: swap;
}
html {
  font-size: 62.5%;
  scroll-padding-top: 200px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1200px) {
  html {
    scroll-padding-top: 100px;
    font-size: 52.4666%;
  }
}
@media screen and (max-width: 992px) {
  html {
    font-size: 46.2944% !important;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 52.4666% !important;
  }
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 0;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 992px) {
  main {
    margin-top: 65px;
  }
}

a {
  color: inherit;
  transition-duration: 0.4s;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
a:visited {
  color: inherit;
  text-decoration: none;
  outline: none;
}

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

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

address {
  font-style: normal;
}

ol, ul, dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

button.reset {
  border: none;
  background-color: transparent;
  line-height: 1.6;
  cursor: pointer;
}

@media print {
  .print {
    display: none !important;
  }
}
/* ==============================
Layout
================================= */
/*
---
name: index
category:
  - object
  - object/layout/index
---
*/
/*
---
name: container
category:
  - object
  - object/layout/container
---

container

*/
.l-container-maxWidth {
  max-width: 1360px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.narrow {
  max-width: 1132px;
}

.container {
  max-width: none !important;
}
@media screen and (max-width: 1420px) {
  .container {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media screen and (max-width: 1080px) {
  .container {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media screen and (max-width: 576px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.l-container-1colnarrow {
  max-width: 540px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.l-container-1col {
  max-width: 578px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/*
---
name: header
category:
  - object
  - object/layout/header
---

ヘッダー全体。

*/
.l-header {
  width: 100%;
  z-index: 999;
  background-color: #fff;
}
@media screen and (max-width: 992px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
  }
}

.l-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
}

/* （任意）グローバルナビのスクロール時退避も使う場合 */
.l-header.p-header.is-fixed.is-out {
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}

.l-header.p-header.is-fixed {
  transform: translateY(0);
  transition: transform 0.25s ease;
}

.l-header.p-header.is-hide-by-submenu {
  transform: translateY(-110%);
  transition: transform 0.2s ease;
}

/*
---
name: footer
category:
  - object
  - object/layout/footer
---

フッター全体。

*/
.l-footer .l-container-maxWidth {
  max-width: inherit;
}
.l-footer .l-container-maxWidth .container {
  margin: 0 44px;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (max-width: 992px) {
  .l-footer .l-container-maxWidth .container {
    margin: 0 15px;
  }
}

/*
---
name: main
category:
  - object
  - object/layout/main
---

main

*/
/* ==============================
Object
================================= */
/*
Component
----------------------------- */
/*
---
name: index
category:
  - object
  - object/component/index
---
*/
/*
---
name: accordion
category:
  - object
  - object/component/accordion
---

アコーディオン

*/
.c-accordion-box {
  width: 100%;
  border: 2px solid #E2E2E2;
  border-radius: 10px;
}
.c-accordion-box__button {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #fff;
  text-align: left;
  border-radius: 10px;
  width: 100%;
  position: relative;
  padding: 20px 30px 20px 30px;
  font-weight: bold;
}
.c-accordion-box__button:before {
  content: "";
  position: absolute;
  background-color: #355BC8;
  width: 20px;
  height: 3px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.c-accordion-box__button:after {
  content: "";
  position: absolute;
  background-color: #355BC8;
  width: 20px;
  height: 3px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.3s;
}
.c-accordion-box__content {
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.c-accordion-box__body {
  padding: 0 30px 20px 30px;
}
@media screen and (max-width: 768px) {
  .c-accordion-box__body {
    padding: 0 10px 20px 10px;
  }
}
.c-accordion-box.open .c-accordion-box__button:after {
  content: "";
  position: absolute;
  background-color: transparent;
  width: 20px;
  height: 3px;
  top: 50%;
  right: 30px;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(0deg);
}

.c-accordion-box.ver-02 {
  width: 100%;
  border: none;
  border-radius: 0;
}
.c-accordion-box.ver-02 .c-accordion-box__button {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #E2E2E2;
  background-color: #F2F2F2;
  text-align: left;
  border-radius: 0;
  width: 100%;
  position: relative;
  padding: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.c-accordion-box.ver-02 .c-accordion-box__button:before {
  content: "";
  position: absolute;
  background-color: #355BC8;
  width: 20px;
  height: 3px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.c-accordion-box.ver-02 .c-accordion-box__button:after {
  content: "";
  position: absolute;
  background-color: #355BC8;
  width: 20px;
  height: 3px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.3s;
}
.c-accordion-box.ver-02 .c-accordion-box__content {
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.c-accordion-box.ver-02 .c-accordion-box__body {
  padding: 0;
  padding-bottom: 20px;
}
.c-accordion-box.ver-02.open .c-accordion-box__button:after {
  content: "";
  position: absolute;
  background-color: transparent;
  width: 20px;
  height: 3px;
  top: 50%;
  right: 30px;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(0deg);
}

/* 非表示状態 */
.address-panel.is-hidden {
  display: none;
}

.c-accordion-select {
  width: 100%;
  border: 2px solid #E2E2E2;
  border-radius: 10px;
  padding: 20px 30px 20px 30px;
}

.c-accordion-select__box {
  margin-top: 5px;
}

/* アコーディオンアニメーション用 */
.c-accordion-select__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

/*
---
name: anchor
category:
  - object
  - object/component/anchor
---

固定ヘッダーのときのページ内リンクのアンカーのずれを解消するためのクラスです。

*/
.c-anchor {
  margin-top: -80px !important;
  padding-top: 80px !important;
}

/*
---
name: bg
category:
  - object
  - object/component/bg
---

bg

*/
.c-bg-base {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.c-bg-base.contravision {
  background-image: url(/shared/images/products/contravision/basic/img_contravisionbasic_bg.png);
  padding: 20px;
}
.c-bg-base.tacpaint {
  background-image: url(/shared/images/products/tacpaint/basic/img_tacpaintbasic_bg.png);
  padding-left: 45px;
  padding-right: 45px;
  padding-top: 55px;
  padding-bottom: 35px;
  font-size: 1.8rem;
}
@media screen and (max-width: 992px) {
  .c-bg-base.tacpaint {
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 40px;
  }
}
.c-bg-base.tacpainttk {
  background-image: url(/shared/images/products/tacpaint/tk/img_tacpainttk_bg.png);
  padding-left: 45px;
  padding-right: 45px;
  padding-top: 55px;
  padding-bottom: 60px;
  font-size: 1.8rem;
}
@media screen and (max-width: 992px) {
  .c-bg-base.tacpainttk {
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 40px;
  }
}
.c-bg-base.eco-palet {
  background-image: url(/shared/images/products/tacpaint/eco-palet/img_tacpainteco-palet_bg.png);
  padding-left: 45px;
  padding-right: 45px;
  padding-top: 55px;
  padding-bottom: 60px;
  font-size: 1.8rem;
}
@media screen and (max-width: 992px) {
  .c-bg-base.eco-palet {
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 40px;
  }
}
.c-bg-base.nbs-bs {
  background-image: url(/shared/images/products/tacpaint/nbs-bs/img_tacpaintnbs-bs_bg.png);
  padding-left: 45px;
  padding-right: 45px;
  padding-top: 55px;
  padding-bottom: 60px;
}
.c-bg-base.nbs-bs img {
  width: 30%;
}
@media screen and (max-width: 992px) {
  .c-bg-base.nbs-bs {
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 40px;
  }
}
.c-bg-base.haru-eco-palet {
  background-image: url(/shared/images/products/harucolor/eco-palet/img_harucoloreco-palet_bg.png);
  padding-left: 45px;
  padding-right: 45px;
  padding-top: 55px;
  padding-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .c-bg-base.haru-eco-palet {
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 40px;
  }
}
.c-bg-base.harucolor {
  background-image: url(/shared/images/products/harucolor/basic/img_harucolorbasic_bg.png);
  padding-left: 130px;
  padding-right: 60px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .c-bg-base.harucolor {
    padding-top: 60px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 60px;
  }
}
.c-bg-base.shield50 {
  background-image: url(/shared/images/products/laminator/shield50/img_laminatorshield50_bg.png);
  padding: 60px;
}
@media screen and (max-width: 992px) {
  .c-bg-base.shield50 {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.c-bg-base.rollsroller {
  background-image: url(/shared/images/products/laminator/rollsroller/img_laminatorrollsroller_bg.png);
  padding: 60px;
  background-position: top;
}
@media screen and (max-width: 992px) {
  .c-bg-base.rollsroller {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.c-bg-base.xy {
  background-image: url(/shared/images/products/laminator/xy/img_laminatorxy_bg.png);
  padding: 60px;
}
@media screen and (max-width: 992px) {
  .c-bg-base.xy {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.c-bg-white {
  background-color: #fff !important;
}

/*
---
name: bnr
category:
  - object
  - object/component/bnr
---

bnr

*/
@media screen and (min-width: 992px) {
  .c-bnr-halfbox {
    justify-content: center;
    display: grid;
    grid-template-columns: 470px 1fr;
    max-width: 966px;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-bnr-halfbox__img {
  text-align: center;
  border: 1px solid #707070;
  display: flex;
}
.c-bnr-halfbox__txt {
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 30px;
  border: 1px solid #707070;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-bnr-halfbox__txt {
    border-left: none;
  }
}

/*
---
name: border
category:
  - object
  - object/component/border
---

border

*/
.c-border--simple {
  border-bottom: 1px solid #707070;
}

/*
---
name: box
category:
  - object
  - object/component/box
---

box

*/
.c-box-simple {
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 40px;
}
@media screen and (max-width: 992px) {
  .c-box-simple {
    padding: 20px;
  }
}
.c-box-simple.bac-color-01 {
  background-color: #e2e9fd;
  border-radius: 0;
  padding: 30px 20px;
}
@media screen and (max-width: 992px) {
  .c-box-simple.bac-color-01 {
    padding: 30px 15px;
  }
}
.c-box-simple.bac-color-02 {
  background-color: #eceff3;
  border-radius: 0;
  padding: 30px 20px;
}
@media screen and (max-width: 992px) {
  .c-box-simple.bac-color-02 {
    padding: 30px 15px;
  }
}
.c-box-simple.ver-02 {
  border: 1px solid #7a7f88;
}
.c-box-simple.narrow {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 10px;
  padding-left: 10px;
}
.c-box-simple.narrow-tb {
  padding-top: 20px;
  padding-bottom: 20px;
}

.c-box-solid {
  border: 1px solid #e2e2e2;
  padding: 30px;
}
.c-box-solid.ver-02 {
  border: 1px solid #707070;
  padding-top: 25px;
  padding-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}

.c-box-img {
  border: 1px solid #8f9092;
}

.c-box-2col .item {
  border: 1px solid #707070;
  padding: 10px;
}
@media screen and (min-width: 992px) {
  .c-box-2col {
    display: flex;
    border-collapse: collapse;
  }
  .c-box-2col .item {
    width: 50%;
    border: 1px solid #707070;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

@media screen and (min-width: 992px) {
  .c-box-step {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
.c-box-step__item {
  padding: 20px 10px;
  background-color: #fff;
  border: 2px solid #e2e2e2;
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .c-box-step__item {
    padding: 40px 32px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 80px 1fr;
    flex-direction: column;
  }
}
@media screen and (max-width: 992px) {
  .c-box-step__item:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-box-step__item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -22px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    border-style: solid;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid #c1d8f3;
    border-right: 0;
  }
}
@media screen and (max-width: 992px) {
  .c-box-step__item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 30px solid #c1d8f3;
    border-bottom: 0;
  }
}
.c-box-step__step {
  font-size: 1.8rem;
  font-weight: bold;
  color: #355bc8;
}

.c-box-changearrow {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .c-box-changearrow {
    gap: 20px 60px;
    flex-direction: row;
  }
}
.c-box-changearrow__item {
  position: relative;
}
@media screen and (min-width: 992px) {
  .c-box-changearrow__item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    border-style: solid;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 16px solid #000000;
    border-right: 0;
  }
}
@media screen and (max-width: 992px) {
  .c-box-changearrow__item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-style: solid;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-top: 16px solid #000000;
    border-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .c-box-2bgcolumn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 20px;
  }
}
.c-box-2bgcolumn .item {
  background-color: #eeeeee;
  padding: 20px;
}
@media screen and (max-width: 992px) {
  .c-box-2bgcolumn .item:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-box-2bgcolumn .item.ver02 {
    height: 420px;
  }
}
@media screen and (min-width: 992px) {
  .c-box-2bgcolumn .item.ver03 {
    grid-column: span 2/span 2;
    height: 420px;
  }
}
@media screen and (min-width: 992px) {
  .c-box-2bgcolumn .row-style {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 64px;
  }
  .c-box-2bgcolumn .row-style-item01 {
    grid-column-start: 1;
    grid-row-start: 2;
  }
  .c-box-2bgcolumn .row-style-item02 {
    grid-column-start: 2;
    grid-row-start: 2;
  }
}
@media screen and (max-width: 992px) {
  .c-box-2bgcolumn .row-style-item02 {
    margin-top: 20px;
  }
}

@media screen and (min-width: 992px) {
  .c-box-3bgcolumn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 20px;
  }
}
.c-box-3bgcolumn .item {
  background-color: #eeeeee;
  padding: 20px;
}
@media screen and (max-width: 992px) {
  .c-box-3bgcolumn .item:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-box-3bgcolumn .item.ver02 {
    height: 420px;
  }
}
@media screen and (min-width: 992px) {
  .c-box-3bgcolumn .item.ver03 {
    grid-column: span 2/span 2;
    height: 420px;
  }
}
.c-box-3bgcolumn .white-ver {
  background-color: #fff;
  border: 1px solid #7a7f88;
}
@media screen and (min-width: 992px) {
  .c-box-3bgcolumn .row-style {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 64px;
  }
  .c-box-3bgcolumn .row-style-item01 {
    grid-column-start: 1;
    grid-row-start: 2;
  }
  .c-box-3bgcolumn .row-style-item02 {
    grid-column-start: 2;
    grid-row-start: 2;
  }
}
@media screen and (max-width: 992px) {
  .c-box-3bgcolumn .row-style-item02 {
    margin-top: 20px;
  }
}

.c-box-solution {
  margin-top: 20px;
  position: relative;
  padding-top: 80px;
}
.c-box-solution::before {
  border-top: 60px solid #eeeeee;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.c-box-bgContentcenter {
  background-color: #eeeeee;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-right: 10px;
  padding-left: 10px;
}
.c-box-bgContentcenter__inner {
  display: inline-block;
  text-align: left;
}

.c-box-pattern {
  border: 1px solid #707070;
}
.c-box-pattern__img img {
  width: 100%;
}
.c-box-pattern__txt {
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  border-top: 1px solid #707070;
}

.c-box-rowList .head-item {
  background-color: #eeeeee;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media screen and (max-width: 992px) {
  .c-box-rowList .detail-item {
    margin-top: 10px;
  }
}
@media screen and (min-width: 992px) {
  .c-box-rowList {
    display: grid;
    grid-template-columns: 212px 1fr;
    gap: 10px 48px;
    align-items: center;
  }
  .c-box-rowList .head-item {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.c-box-rowList.bg-narrow {
  grid-template-columns: 55px 1fr;
  background-color: #eeeeee;
  padding: 20px;
  gap: 24px;
  align-items: start;
}
@media screen and (max-width: 992px) {
  .c-box-rowList.bg-narrow {
    padding: 10px;
  }
}

.c-box-category {
  background-color: #e2e2e2;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: inline-block;
  font-size: 1.2rem;
}

.c-box-flow {
  display: flex;
}
.c-box-flow__step {
  width: 50%;
  background-color: #355bc8;
  color: #fff;
  font-weight: 500;
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .c-box-flow__step {
    line-height: 50px;
  }
}
@media screen and (min-width: 992px) {
  .c-box-flow__step.step1 {
    width: 15%;
  }
}
@media screen and (max-width: 992px) {
  .c-box-flow__step.step1 {
    width: 35%;
  }
}
@media screen and (min-width: 992px) {
  .c-box-flow__step.step2 {
    width: 35%;
    padding-left: 40px;
  }
}
@media screen and (max-width: 992px) {
  .c-box-flow__step.step2 {
    width: 65%;
  }
}
.c-box-flow__step:not(:first-child):not(:last-child) {
  padding: 0 0 0 10px;
}
.c-box-flow__step:before, .c-box-flow__step:after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
}
.c-box-flow__step:before {
  border: solid 32px transparent;
  border-right: solid 13px transparent;
  border-left: solid 13px #fff;
  top: -7px;
  left: 0;
  z-index: 1;
}
.c-box-flow__step:after {
  border: solid 25px transparent;
  border-left: solid 10px #355bc8;
  border-right: solid 10px transparent;
  top: 0;
  right: -20px;
  z-index: 2;
}
.c-box-flow__step:first-child::before, .c-box-flow__step:last-child::after {
  content: none;
}

.c-box-combination {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-right: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .c-box-combination {
    flex-direction: column;
  }
}
.c-box-combination__item.img01 {
  margin: 40px;
}
@media screen and (max-width: 992px) {
  .c-box-combination__item.img01 {
    margin: 10px;
  }
}
.c-box-combination__item.img02 {
  margin: 40px;
}
@media screen and (max-width: 992px) {
  .c-box-combination__item.img02 {
    margin: 10px;
  }
}
.c-box-combination__table {
  border-collapse: collapse;
  border-spacing: 0;
}
.c-box-combination__table tr th,
.c-box-combination__table tr td {
  text-align: center;
  vertical-align: middle;
  border: 1px solid #000;
  padding: 5px 10px;
}
@media screen and (max-width: 992px) {
  .c-box-combination__table tr th,
  .c-box-combination__table tr td {
    padding: 5px 40px;
  }
}
.c-box-combination__table.table01 {
  width: 250px;
}
.c-box-combination__table.table01 tr th {
  background-color: #e8382f;
  color: #fff;
}
.c-box-combination__table.table02 {
  width: 250px;
}
.c-box-combination__table.table02 tr th {
  background-color: #008ccf;
  color: #fff;
}
.c-box-combination__table.table03 {
  width: 333px;
}
.c-box-combination__table.table03 tr th {
  background-color: #f2f2f2;
}

.c-box-roundline {
  border: 2px solid #e2e2e2;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px;
}
@media screen and (max-width: 992px) {
  .c-box-roundline {
    padding: 15px;
  }
}

.c-box-subject {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .c-box-subject {
    flex-direction: column;
  }
  .c-box-subject.flex-direction-row {
    flex-direction: row;
  }
}
.c-box-subject__head {
  background-color: #f2f4f8;
  padding: 10px;
  display: flex;
  align-items: center;
}
.c-box-subject__head span.u-text-10::before {
  content: "▶";
}
.c-box-subject__head span.u-text-10 {
  color: transparent;
  position: relative;
}
.c-box-subject__head span.u-text-10::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
}
@media screen and (max-width: 768px) {
  .c-box-subject__head span.u-text-10::before {
    content: "▼";
  }
}
.c-box-subject__content {
  border: 1px solid #e2e2e2;
  padding: 10px;
}

.c-box-attention {
  font-weight: bold;
  color: #242933;
  border: 1px solid #ccc;
  padding: 5px;
}

.c-box-headtype {
  border: 1px solid #e2e2e2;
  border-radius: 10px;
}
.c-box-headtype__title {
  background-color: #083388;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 10px 10px 0 0;
}
.c-box-headtype__title.color-cyan {
  background-color: #f5f7fe;
  color: #000000;
}
.c-box-headtype__content {
  padding-right: 40px;
  padding-left: 40px;
  padding-top: 20px;
  padding-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .c-box-headtype__content {
    padding: 20px;
  }
}

/*
---
name: breadcrumb
category:
  - object
  - object/component/breadcrumb
---

breadcrumb

*/
.c-breadcrumb {
  background: #eeeeee;
  font-size: 1.4rem;
  position: relative;
  display: flex;
  width: 100%;
}
.c-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 30px;
  width: 100%;
  padding: 5px 0;
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1420px) {
  .c-breadcrumb__list {
    padding: 5px 60px;
  }
}
@media screen and (max-width: 576px) {
  .c-breadcrumb__list {
    padding: 5px 20px;
  }
}
.c-breadcrumb__list li:first-child::before {
  font-family: "Material Symbols Outlined";
  content: "home";
  display: inline-block;
  vertical-align: middle;
  color: #707070;
  font-size: 22px;
  padding-right: 5px;
  line-height: 1.4;
}
.c-breadcrumb__list li:not(:first-child)::before {
  font-family: "Material Icons";
  content: "chevron_right";
  display: inline-block;
  vertical-align: middle;
  color: #707070;
  font-size: 22px;
  padding-right: 5px;
  padding-left: 5px;
  line-height: 1.4;
}
.c-breadcrumb__list li a:hover {
  border-bottom: 1px solid #1C1F21;
}

/*
---
name: button
category:
  - object
  - object/component/button
---

ボタン

*/
.c-btn {
  background-color: #E2E9FD;
  color: #355BC8;
  border: 1px solid #355BC8;
  padding: 5px;
}
.c-btn:hover {
  opacity: 0.8;
}

.c-btn-blue {
  background-color: #355BC8;
  color: #fff;
  border: none;
  padding: 5px;
}
.c-btn-blue:hover {
  opacity: 0.8;
}
.c-btn-blue:visited {
  color: #fff;
}

.c-btn-boxarrow {
  background-color: #355bc8;
  padding: 15px;
  color: #fff;
  display: inline-block;
  width: 100%;
  position: relative;
}
.c-btn-boxarrow:visited {
  color: #fff;
}
.c-btn-boxarrow a {
  color: #fff;
}
.c-btn-boxarrow::after {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #fff;
  font-size: 2.4rem;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.c-btn-productsearch {
  background-color: #355bc8;
  color: #fff;
  font-size: 2rem;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 476px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 992px) {
  .c-btn-productsearch {
    width: 100%;
  }
}
.c-btn-productsearch::before {
  font-family: "Material Icons";
  content: "search";
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 37px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.c-btn-simple {
  padding: 15px;
  border: none;
  background-color: #2c4ba6;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  display: inline-block;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .c-btn-simple.siz-s {
    width: 272px;
  }
}
@media screen and (min-width: 992px) {
  .c-btn-simple.siz-l {
    width: 400px;
  }
}
.c-btn-simple.siz-l__02 {
  position: relative;
}
.c-btn-simple.siz-l__02::after {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #fff;
  font-size: 2.4rem;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (min-width: 992px) {
  .c-btn-simple.siz-l__02 {
    width: 600px;
    font-size: 2rem;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.c-btn-simple.siz-l__03 {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.c-btn-simple.siz-l__03::after {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #333;
  font-size: 2.4rem;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (min-width: 992px) {
  .c-btn-simple.siz-l__03 {
    width: 600px;
    font-size: 2rem;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.c-btn-simple.siz-l__04 {
  position: relative;
}
.c-btn-simple.siz-l__04::after {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #fff;
  font-size: 2.4rem;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 992px) {
  .c-btn-simple.sp-wide {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.c-btn-simple.ver-center {
  width: 200px;
  text-align: center;
}
.c-btn-simple a {
  color: #fff;
}
.c-btn-simple:visited {
  color: #fff;
}
@media screen and (min-width: 992px) {
  .c-btn-simple {
    width: 356px;
  }
  .c-btn-simple.small-size {
    width: 203px;
  }
}
.c-btn-simple.gray {
  background-color: #e2e2e2;
  color: #242933;
}
.c-btn-simple.gray-white {
  background-color: #e2e2e2;
  color: #ffffff;
  pointer-events: none;
}
.c-btn-simple.gray-ehite02 {
  background-color: #7a7f88;
  color: #fff;
}

.c-btn-bacRound {
  background-color: #000000;
  border-radius: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 35px;
  padding-left: 35px;
  color: #fff;
  display: inline-block;
}
.c-btn-bacRound.ver-blue {
  background-color: #355bc8;
}
.c-btn-bacRound:visited {
  color: #fff;
}

.c-btn-bacColor {
  background-color: #424242;
  padding: 20px;
  color: #fff;
  display: inline-block;
}
.c-btn-bacColor:visited {
  color: #fff;
}

.c-btn-close {
  background-color: #355bc8;
  color: #fff;
  font-weight: bold;
  max-width: 400px;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}
.c-btn-close::after {
  font-family: "Material Symbols Outlined";
  content: "close";
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.c-btn-roundarrow-l {
  background-color: #355bc8;
  border-radius: 5px;
  color: #fff;
  position: relative;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 15px;
  padding-left: 35px;
  display: inline-block;
}
.c-btn-roundarrow-l:visited {
  color: #fff;
}
.c-btn-roundarrow-l::before {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.c-btn-drower {
  cursor: pointer;
  background-color: #fff;
  font-weight: bold;
  padding: 20px;
  border: 1px solid #cccccc;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-btn-drower:after {
  font-family: "Material Icons";
  content: "keyboard_arrow_down";
  font-weight: normal;
  font-size: 1.5rem;
  color: #242933;
  transition: all 0.3s;
}
.c-btn-drower.is-active {
  background-color: #355BC8;
  color: #fff;
}
.c-btn-drower.is-active:after {
  transform: rotate(180deg);
  color: #fff;
}
.c-btn-drower.no-active {
  background-color: #efefef;
  color: #242933;
}

/*
---
name: column
category:
  - object
  - object/component/column
---

column

*/
@media screen and (min-width: 992px) {
  .c-column-row {
    display: flex;
    gap: 10px 26px;
  }
}
@media screen and (max-width: 992px) {
  .c-column-row .item {
    text-align: center;
  }
  .c-column-row .item img {
    margin: 0 auto;
  }
  .c-column-row .item:not(:first-child) {
    margin-top: 10px;
  }
}
.c-column-row.text-ex .item-l {
  width: 15%;
}
.c-column-row.text-ex .item-r {
  width: 85%;
}
@media screen and (min-width: 992px) {
  .c-column-row .text-narrow {
    gap: 5px 10px;
  }
}
.c-column-row.center-layout {
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.c-column-row__between {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (min-width: 992px) {
  .c-column-row__between .item02 {
    flex-shrink: 0;
  }
}
@media screen and (max-width: 992px) {
  .c-column-row__between {
    flex-direction: column;
    row-gap: 10px;
  }
  .c-column-row__between .item02 img {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 992px) {
  .c-column-row__between.flex-sp {
    flex-direction: row;
  }
}

.c-column-flex {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .c-column-flex {
    flex-direction: column;
  }
}
.c-column-flex.narrow-gap {
  gap: 5px 10px;
}
.c-column-flex.center-layout {
  align-items: center;
  justify-content: center;
}
.c-column-flex.align-items-center {
  align-items: center;
}
@media screen and (max-width: 992px) {
  .c-column-flex.flex-sp {
    flex-direction: row;
  }
}
@media screen and (max-width: 992px) {
  .c-column-flex.sp-style {
    flex-direction: row;
    align-items: top;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 992px) {
  .c-column-flex.center-layout-sp {
    align-items: center;
    justify-content: center;
  }
}

.c-column-rowspace {
  display: flex;
}
@media screen and (min-width: 992px) {
  .c-column-rowspace {
    justify-content: space-between;
  }
}
@media screen and (max-width: 992px) {
  .c-column-rowspace {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-column-rowspace.center-layout {
    align-items: center;
  }
}

@media screen and (min-width: 992px) {
  .c-column-textgrid {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 5px;
    grid-row-gap: 0px;
  }
}

@media screen and (min-width: 992px) {
  .c-column-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 36px;
    grid-row-gap: 0px;
  }
}
@media screen and (max-width: 992px) {
  .c-column-2 .item:not(:first-child) {
    margin-top: 20px;
  }
  .c-column-2.sp-gap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-column-2__narrow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media screen and (max-width: 992px) {
  .c-column-2__narrow .item:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-column-2__narrow02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .c-column-2__narrow02 .item:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-column-2__narrow02-md {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-column-2__narrow02-md .item:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-column-2__wide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .c-column-2__wide .item:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-column-2__wide02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 60px;
  }
}
@media screen and (max-width: 992px) {
  .c-column-2__wide02 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-row-gap: 30px;
  }
}

@media screen and (min-width: 992px) {
  .c-column-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 33px;
    grid-row-gap: 20px;
  }
  .c-column-3 .item01 {
    grid-area: 1/1/2/2;
  }
  .c-column-3 .item02 {
    grid-area: 1/2/2/3;
  }
  .c-column-3 .item03 {
    grid-area: 1/3/2/4;
  }
}
@media screen and (max-width: 992px) {
  .c-column-3 .item:not(:first-child) {
    margin-top: 20px;
  }
  .c-column-3.sp-gap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-column-3__md {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 33px;
    grid-row-gap: 20px;
  }
  .c-column-3__md .item01 {
    grid-area: 1/1/2/2;
  }
  .c-column-3__md .item02 {
    grid-area: 1/2/2/3;
  }
  .c-column-3__md .item03 {
    grid-area: 1/3/2/4;
  }
}
@media screen and (max-width: 768px) {
  .c-column-3__md .item:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-column-3__narrow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 18px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .c-column-3__narrow .item:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-column-3__narrow02 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .c-column-3__narrow02 .item:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-column-3__narrow03 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .c-column-3__narrow03 .item:not(:first-child) {
    margin-top: 20px;
  }
}
.c-column-3__wide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 10px;
}
@media screen and (min-width: 992px) {
  .c-column-3__wide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 45px;
  }
}
@media screen and (min-width: 992px) {
  .c-column-3__wide02 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .c-column-3__wide02 .item:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-column-3__nogap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-column-3__nogap .item img {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .c-column-3__nogap .item:not(:first-child) {
    margin-top: 10px;
  }
}
.c-column-3__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 33px;
       column-gap: 33px;
}
@media screen and (max-width: 992px) {
  .c-column-3__flex {
    flex-direction: column;
    row-gap: 30px;
  }
}
.c-column-3__flex .item {
  width: calc(33.3333333333% - 20px);
}
@media screen and (max-width: 992px) {
  .c-column-3__flex .item {
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .c-column-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 20px;
  }
  .c-column-4 .item01 {
    grid-area: 1/1/2/2;
  }
  .c-column-4 .item02 {
    grid-area: 1/2/2/3;
  }
  .c-column-4 .item03 {
    grid-area: 1/3/2/4;
  }
  .c-column-4 .item04 {
    grid-area: 1/4/2/5;
  }
}
@media screen and (max-width: 992px) {
  .c-column-4 {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }
}
.c-column-4 img {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.c-column-4.wide-space {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-row-gap: 40px;
}
@media screen and (min-width: 992px) {
  .c-column-4.wide-space {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}

@media screen and (max-width: 992px) {
  .c-column-2-sp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 10px;
  }
}

@media screen and (min-width: 992px) {
  .c-column-lmain {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .c-column-lmain .item02 {
    margin-top: 10px;
  }
}
.c-column-lmain .item02 img {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 992px) {
  .c-column-rmain {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .c-column-rmain {
    display: flex;
    flex-direction: column;
  }
  .c-column-rmain .item01 {
    order: 2;
    margin-top: 10px;
  }
  .c-column-rmain .item02 {
    order: 1;
  }
}

@media screen and (min-width: 992px) {
  .c-column-txtimg-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 28px;
    grid-row-gap: 24px;
  }
  .c-column-txtimg-row .row-group {
    display: flex;
    justify-content: space-between;
  }
  .c-column-txtimg-row .item-img {
    flex-shrink: 0;
  }
}
@media screen and (max-width: 992px) {
  .c-column-txtimg-row .row-group:not(:first-child) {
    margin-top: 30px;
  }
  .c-column-txtimg-row .item-img {
    margin-top: 20px;
  }
}

@media screen and (min-width: 992px) {
  .c-column-imggrid {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 0px;
  }
}
@media screen and (min-width: 992px) {
  .c-column-imggrid.boxtype {
    align-items: center;
  }
}

.c-column-flexOnly {
  display: flex;
}

.c-column-align-center {
  align-items: center;
}

.c-column-img {
  flex-shrink: 0;
}

.c-column-flexcolumn {
  display: flex;
  flex-direction: column;
}

.c-column-heightmatch {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.c-column-center {
  display: flex;
  align-items: center;
}

.c-column-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.c-column-flex1 {
  flex: 1;
}

/*
---
name: form
category:
  - object
  - object/component/form
---

form

*/
.required-mark {
  color: #e61616;
  font-size: 1.2rem;
  color: #fff;
  background-color: #e61616;
  padding: 2px 5px 3px;
  border-radius: 5px;
  margin-left: 5px;
  display: inline-block;
  line-height: 1.2;
  vertical-align: text-bottom;
}

.error-message {
  color: #e61616;
}

form .form-attention {
  margin-left: 360px;
}
@media screen and (max-width: 992px) {
  form .form-attention {
    margin-left: 0;
  }
}

.c-form-group label {
  font-weight: bold;
  margin-bottom: 10px;
}
.c-form-group input[type=text],
.c-form-group input[type=password] {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #c7ccd4;
  border-radius: 10px;
}
.c-form-group input[type=email] {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #c7ccd4;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .c-form-group input[type=email] {
    width: 540px;
  }
}
@media screen and (max-width: 992px) {
  .c-form-group input[type=email] {
    margin-top: 15px;
  }
}
.c-form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #c7ccd4;
  border-radius: 10px;
  resize: vertical;
}
.c-form-group input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 20px;
  width: 20px;
  border: 1px solid #c7ccd4;
}
.c-form-group input[type=checkbox]:checked {
  border: 1px solid #c7ccd4;
  background-color: #355BC8;
}
.c-form-group input[type=checkbox]::before {
  display: grid;
  place-content: center;
  color: white;
  height: 100%;
  font-family: "Material Icons";
  font-size: 12px;
  content: "\e876";
}
.c-form-group input[type=checkbox]:focus-visible {
  outline: 2px solid #1d9bf0;
  outline-offset: 2px;
}
.c-form-group .checkbox-type-round input[type=checkbox] {
  border-radius: 50%;
  background-color: #e2e2e2;
  margin-right: 10px;
}
.c-form-group input[type=checkbox]:checked {
  border: none;
  background-color: #355BC8;
}
.c-form-group .check-radio-type label {
  font-weight: normal;
}
.c-form-group .check-radio-type input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  vertical-align: middle;
}
.c-form-group .check-radio-type input[type=checkbox]:checked {
  background-color: #fff;
}
.c-form-group .check-radio-type input[type=checkbox]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #355BC8;
  content: "";
}
.c-form-group .check-type-02 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-form-group .check-type-02 input[type=checkbox] {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 0;
  width: 0;
  border: none;
}
.c-form-group .check-type-02 input[type=checkbox]:before {
  content: none;
}
.c-form-group .check-type-02 input[type=checkbox]::after {
  content: none;
}
.c-form-group .check-type-02 label {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #7a7f88;
  border-radius: 17px;
  padding: 8px 17px;
  font-weight: normal;
  display: inline-block;
  margin-bottom: 0;
}
.c-form-group .check-type-02 label:has(:checked) {
  background-color: #E2E9FD;
  color: #355BC8;
  border: 1px solid #355BC8;
  color: #083388;
  font-weight: bold;
}
.c-form-group .check-type-02.column3-large {
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .c-form-group .check-type-02.column3-large {
    flex-direction: column;
  }
}
.c-form-group .check-type-02.column3-large:after {
  content: "";
  display: block;
  width: 32%;
}
.c-form-group .check-type-02.column3-large label {
  flex-basis: 32%;
  position: relative;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  font-size: 1.6rem;
  border-radius: 52px;
  border: 1px solid #7a7f88;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-form-group .check-type-02.column4-large {
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .c-form-group .check-type-02.column4-large {
    flex-direction: column;
  }
}
.c-form-group .check-type-02.column4-large:after {
  content: "";
  display: block;
  width: 24%;
}
.c-form-group .check-type-02.column4-large label {
  flex-basis: 24%;
  position: relative;
  padding: 8px 17px;
  text-align: center;
  cursor: pointer;
  font-size: 1.6rem;
  border-radius: 52px;
  border: 1px solid #7a7f88;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-form-group .radio-type label {
  padding-right: 10px;
  font-weight: normal;
}
.c-form-group .radio-type input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #e2e2e2;
  background: #fff;
  border-radius: 50%;
  vertical-align: -2px;
}
.c-form-group .radio-type input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #355BC8;
  content: "";
}
.c-form-group .radio-type-02 input[type=radio] {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-form-group .radio-type-02 label {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #7a7f88;
  border-radius: 52px;
  padding: 8px 17px;
  font-weight: normal;
  min-width: 150px;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .c-form-group .radio-type-02 label {
    min-width: 75px;
  }
}
.c-form-group .radio-type-02 label:has(:checked) {
  background-color: #E2E9FD;
  border: 1px solid #355BC8;
  color: #083388;
  font-weight: bold;
}
.c-form-group .radio-type-03 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-form-group .radio-type-03 input[type=radio] {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 0;
  width: 0;
  border: none;
}
.c-form-group .radio-type-03 input[type=radio]:before {
  content: none;
}
.c-form-group .radio-type-03 input[type=radio]::after {
  content: none;
}
.c-form-group .radio-type-03 label {
  position: relative;
  padding: 8px 17px;
  text-align: center;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: normal;
  border-radius: 52px;
  border: 1px solid #7a7f88;
  background-color: #fff;
}
.c-form-group .radio-type-03 label.width250 {
  width: 250px;
}
@media screen and (max-width: 576px) {
  .c-form-group .radio-type-03 label.width250 {
    width: 100%;
  }
}
.c-form-group .radio-type-03 label:has(:checked) {
  background-color: #E2E9FD;
  color: #355BC8;
  border: 1px solid #355BC8;
  font-weight: bold;
}
.c-form-group .radio-type-03.column3-large {
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .c-form-group .radio-type-03.column3-large {
    flex-direction: column;
  }
}
.c-form-group .radio-type-03.column3-large:after {
  content: "";
  display: block;
  width: 32%;
}
.c-form-group .radio-type-03.column3-large label {
  flex-basis: 32%;
  position: relative;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: normal;
  border-radius: 52px;
  border: 1px solid #7a7f88;
}

.c-form-mailSend input[type=email] {
  margin-top: 10px;
}

.c-form-register .c-form-group:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.company-name input[type=text]:nth-child(2) {
    width: 160px;
  }
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.company-name input[type=text]:nth-child(3) {
    width: 232px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 992px) {
  .c-form-register .c-form-group.company-name input[type=text]:nth-child(3) {
    margin-top: 10px;
  }
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.company-name input[type=text]:nth-child(4) {
    width: 160px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 992px) {
  .c-form-register .c-form-group.company-name input[type=text]:nth-child(4) {
    margin-top: 10px;
  }
}
.c-form-register .c-form-group .attention-txt-wrap {
  position: relative;
}
.c-form-register .c-form-group .attention-txt {
  font-weight: normal;
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group .attention-txt {
    position: absolute;
    left: 100px;
  }
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.zipcode input[type=text]:nth-child(2) {
    width: 74px;
  }
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.zipcode input[type=text]:nth-child(3) {
    width: 80px;
    margin-left: 5px;
  }
}
.c-form-register .c-form-group.zipcode .address-search-btn {
  font-size: 1.4rem;
  font-weight: normal;
  color: #1c1f21;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: #fff;
  border: 1px solid #707070;
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.zipcode .address-search-btn {
    margin-left: 10px;
  }
}
@media screen and (max-width: 992px) {
  .c-form-register .c-form-group.zipcode .address-search-btn {
    margin-top: 15px;
  }
}
.c-form-register .c-form-group.zipcode .address-search-txt {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
@media screen and (max-width: 992px) {
  .c-form-register .c-form-group.zipcode .address-search-txt {
    margin-top: 15px;
  }
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.fieldset-group {
    display: grid;
    grid-template-columns: 100px 1fr;
  }
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.fieldset-group.ver-02 {
    grid-template-columns: 272px 1fr;
  }
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.fieldset-group.ver-02 input[type=radio]:first-of-type {
    margin-left: 88px;
  }
}
.c-form-register .c-form-group.fieldset-group fieldset {
  display: contents;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}
.c-form-register .c-form-group.fieldset-group legend {
  width: 100%;
  margin: 0;
  padding: 0;
  font-weight: bold;
}
.c-form-register .c-form-group.fieldset-group .c-form-group__item:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.fieldset-group label {
    width: 172px;
  }
}
.c-form-register .c-form-group.fieldset-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #707070;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.fieldset-group select {
    width: 147px;
    margin-left: 88px;
  }
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.phone-number input[type=text] {
    width: 112px;
  }
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.phone-number input[type=text]:not(:first-of-type) {
    margin-left: 5px;
  }
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.fax-number input[type=text] {
    width: 112px;
  }
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.fax-number input[type=text]:not(:first-of-type) {
    margin-left: 5px;
  }
}
@media screen and (min-width: 992px) {
  .c-form-register .c-form-group.only-input input[type=text],
  .c-form-register .c-form-group.only-input input[type=email],
  .c-form-register .c-form-group.only-input input[type=password] {
    margin-left: 363px;
  }
}
.c-form-register .c-form-group.only-check {
  margin-top: 30px;
}
.c-form-register .c-form-group.only-check label {
  width: 100%;
  display: inline;
}

.c-form-confirm {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .c-form-confirm-group:not(:first-child) {
    margin-top: 10px;
  }
}
@media screen and (min-width: 992px) {
  .c-form-confirm-group.set {
    display: grid;
    grid-template-columns: 100px 1fr;
  }
  .c-form-confirm-group.set .c-form-confirm-sublabel {
    width: 172px;
    display: inline-block;
  }
  .c-form-confirm-group.set .c-form-confirm-input {
    display: inline-block;
  }
}
.c-form-confirm-label, .c-form-confirm-sublabel {
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .c-form-confirm-input {
    margin-left: 40px;
  }
}

.table-form .c-form-group {
  width: 100%;
}
.table-form .c-form-group th,
.table-form .c-form-group td {
  padding-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group th,
  .table-form .c-form-group td {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group th {
    padding-bottom: 10px;
  }
}
.table-form .c-form-group__header {
  width: 340px;
  text-align: left;
  vertical-align: baseline;
}
@media screen and (max-width: 1200px) {
  .table-form .c-form-group__header {
    width: 100%;
    display: block;
  }
}
.table-form .c-form-group__header > div, .table-form .c-form-group__header > label {
  color: #1c1f21;
}
@media screen and (max-width: 1200px) {
  .table-form .c-form-group__data {
    width: 100%;
    display: block;
  }
}
.table-form .c-form-group__data label {
  color: #1c1f21;
}
.table-form .c-form-group .name-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group .name-wrapper {
    display: block;
  }
}
.table-form .c-form-group .name-wrapper .name {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .table-form .c-form-group .name-wrapper .name:first-child {
    margin-bottom: 10px;
  }
}
.table-form .c-form-group .name-wrapper .name label {
  min-width: 35px;
}
.table-form .c-form-group .name-wrapper .name input {
  width: 257px;
}
@media screen and (max-width: 576px) {
  .table-form .c-form-group .name-wrapper .name input {
    width: 100%;
  }
}
.table-form .c-form-group .company-name {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group .company-name {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group .company-name input[type=text] {
    margin-top: 10px;
  }
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group .company-name .selectWrap {
    margin-top: 10px;
  }
}
.table-form .c-form-group .attention {
  font-size: 1.2rem;
  margin-top: 10px;
}
.table-form .c-form-group .address-group label {
  display: block;
}
.table-form .c-form-group .address-group .c-form-group__item {
  margin-top: 20px;
}
.table-form .c-form-group .address-group .selectWrap {
  width: 200px;
  margin-top: 10px;
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group .address-group .selectWrap {
    width: 100%;
  }
}
.table-form .c-form-group .address-group input[type=text] {
  margin-top: 10px;
}
.table-form .c-form-group .address-group select {
  width: 200px;
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group .address-group select {
    width: 100%;
  }
}
.table-form .c-form-group .phone-number {
  display: flex;
  gap: 10px;
  align-items: center;
}
.table-form .c-form-group .fax-number {
  display: flex;
  gap: 10px;
  align-items: center;
}
.table-form .c-form-group .zipcode-number {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group .zipcode-number {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 576px) {
  .table-form .c-form-group .zipcode-number {
    gap: 3px;
  }
}
.table-form .c-form-group .zipcode-number input[type=text] {
  max-width: 100px;
}
@media screen and (max-width: 576px) {
  .table-form .c-form-group .zipcode-number input[type=text] {
    max-width: 80px;
  }
}
.table-form .c-form-group .zipcode-number .address-search-btn {
  border: none;
  background-color: #355BC8;
  color: #fff;
  padding: 15px 20px;
  border-radius: 2px;
}
@media screen and (max-width: 576px) {
  .table-form .c-form-group .zipcode-number .address-search-btn {
    padding: 15px 5px;
    margin-left: 5px;
  }
}
.table-form .c-form-group .season .selectWrap {
  width: 200px;
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group .season .selectWrap {
    width: 80%;
  }
}
.table-form .c-form-group .season .selectWrap select {
  width: 100%;
}
.table-form .c-form-group .seasonInner {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group .seasonInner {
    flex-direction: column;
  }
}
.table-form .c-form-group .seasonInner__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group .seasonInner__item {
    width: 100%;
  }
}
.table-form .c-form-group .shippingAddress label {
  font-weight: bold;
}
.table-form .c-form-group .shippingAddress__table {
  margin-top: 30px;
}
.table-form .c-form-group .shippingAddress__table th {
  min-width: 100px;
  text-align: left;
  padding-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group .shippingAddress__table th {
    min-width: inherit;
    width: 100%;
    display: block;
  }
}
.table-form .c-form-group .shippingAddress__table td {
  color: #7a7f88;
  padding-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .table-form .c-form-group .shippingAddress__table td {
    display: block;
    width: 100%;
    word-break: break-all;
  }
}
.table-form .c-form-group .checkBox-area {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.table-form .c-form-group .checkBox-area label {
  font-weight: normal;
}
.table-form .c-form-group .radio-item {
  margin-bottom: 20px;
}
.table-form .industry select {
  width: 100%;
}
.table-form .other-address .selectWrap {
  width: 230px;
}
.table-form .other-address .selectWrap select {
  width: 100%;
}
.table-form.vertical th {
  display: block;
  width: 100%;
}
.table-form.vertical td {
  display: block;
  width: 100%;
}

.selectWrap {
  position: relative;
}
.selectWrap:after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 20px;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 8px solid #000;
  border-bottom: 0;
}

select {
  padding: 15px 20px;
  border: 1px solid #c7ccd4;
  border-radius: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media screen and (max-width: 992px) {
  select {
    width: 100%;
  }
}

.pass-switch-wrapper {
  position: relative;
}
.pass-switch-wrapper .js-pass-switch {
  padding-right: 40px;
  box-sizing: border-box;
}
.pass-switch-wrapper .pass-view {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

/*
---
name: hamburger
category:
  - object
  - object/component/hamburger
---

動くハンバーガーアイコンです。

*/
@media screen and (min-width: 992px) {
  .c-hamburger__area input[type=checkbox] {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .c-hamburger__area {
    width: 65px;
    height: 65px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    transition: all 0.5s;
  }
  .c-hamburger__area input[type=checkbox] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  .c-hamburger__area input[type=checkbox]:checked + .c-hamburger__bar span {
    background-color: transparent;
  }
  .c-hamburger__area input[type=checkbox]:checked + .c-hamburger__bar span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .c-hamburger__area input[type=checkbox]:checked + .c-hamburger__bar span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  .c-hamburger__area input[type=checkbox]:checked ~ .c-hamburger__nav {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 992px) {
  .c-hamburger__bar {
    display: block;
    width: 25px;
    height: 16px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
  }
  .c-hamburger__bar span,
  .c-hamburger__bar span::before,
  .c-hamburger__bar span::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #242933;
    transition: all 0.5s;
  }
  .c-hamburger__bar span::before {
    top: -7px;
  }
  .c-hamburger__bar span::after {
    bottom: -7px;
  }
}
@media screen and (max-width: 992px) {
  .c-hamburger__nav {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    overflow-y: scroll;
  }
}

.is-open {
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .is-open .c-hamburger__bar {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 992px) {
  .is-open .c-hamburger__bar::after {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .p-header.is-fixed .c-hamburger__area input[type=checkbox] {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .p-header.is-fixed .c-hamburger__area {
    width: 65px;
    height: 65px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    transition: all 0.5s;
  }
  .p-header.is-fixed .c-hamburger__area input[type=checkbox] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  .p-header.is-fixed .c-hamburger__area input[type=checkbox]:checked + .c-hamburger__bar span {
    background-color: transparent;
  }
  .p-header.is-fixed .c-hamburger__area input[type=checkbox]:checked + .c-hamburger__bar span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .p-header.is-fixed .c-hamburger__area input[type=checkbox]:checked + .c-hamburger__bar span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  .p-header.is-fixed .c-hamburger__area input[type=checkbox]:checked ~ .c-hamburger__nav {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .p-header.is-fixed .c-hamburger__bar {
    display: block;
    width: 25px;
    height: 16px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
  }
  .p-header.is-fixed .c-hamburger__bar span,
  .p-header.is-fixed .c-hamburger__bar span::before,
  .p-header.is-fixed .c-hamburger__bar span::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #242933;
    transition: all 0.5s;
  }
  .p-header.is-fixed .c-hamburger__bar span::before {
    top: -7px;
  }
  .p-header.is-fixed .c-hamburger__bar span::after {
    bottom: -7px;
  }
}
@media screen and (max-width: 1200px) {
  .p-header.is-fixed .c-hamburger__nav {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    overflow-y: scroll;
  }
}

@media screen and (max-width: 1200px) {
  .p-header.is-fixed .is-open .c-hamburger__bar {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1200px) {
  .p-header.is-fixed .is-open .c-hamburger__bar::after {
    display: none;
  }
}

/*
---
name: icon
category:
  - object
  - object/component/icon
---

icon

*/
.c-icon-arrow {
  position: relative;
  display: inline-block;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  transition: all 0.5s;
}
.c-icon-arrow:before, .c-icon-arrow:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: all 0.5s;
}

.c-icon-listmark::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../images/common/icon_sample.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 39px;
  height: 39px;
  margin: -2px 22px 0 0;
}

.c-icon-square {
  vertical-align: middle;
}
.c-icon-square::before {
  content: "■";
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.c-icon-diamond {
  vertical-align: middle;
}
.c-icon-diamond::before {
  content: "◆";
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.c-icon-pdf__f::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../images/common/icon_file_pdf.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 16px;
  height: 16px;
  margin: -2px 0 0 5px;
}
.c-icon-pdf__f.black-color::after {
  background-image: url(../images/common/icon_file_pdf_b.png);
}
.c-icon-pdf__f.blue-color::after {
  background-image: url(../images/common/icon_file_pdf_blue.png);
}

.c-icon-circle {
  vertical-align: middle;
}
.c-icon-circle::before {
  content: "●";
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.c-icon-stacks {
  position: relative;
}
.c-icon-stacks:before {
  font-family: "Material Symbols Outlined";
  content: "stacks";
  position: relative;
  color: #355BC8;
  vertical-align: middle;
  margin-right: 10px;
}

.c-icon-mail {
  position: relative;
}
.c-icon-mail:before {
  font-family: "Material Symbols Outlined";
  content: "mail";
  position: relative;
  margin-right: 10px;
  color: #355BC8;
  vertical-align: middle;
}

.c-icon-favorite {
  position: relative;
}
.c-icon-favorite:before {
  font-family: "Material Symbols Outlined";
  content: "favorite";
  position: relative;
  margin-right: 10px;
  color: #355BC8;
  vertical-align: middle;
}

.c-icon-schedule {
  position: relative;
}
.c-icon-schedule:before {
  font-family: "Material Symbols Outlined";
  content: "schedule";
  position: relative;
  margin-right: 10px;
  color: #355BC8;
  vertical-align: middle;
}

.c-icon-contactSupport {
  position: relative;
}
.c-icon-contactSupport:before {
  content: "";
  background-image: url(../images/common/icon_contact-support.png);
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.c-icon-tel {
  position: relative;
}
.c-icon-tel:before {
  content: "";
  background-image: url(../images/common/icon_tel.png);
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.c-icon-tel-l {
  position: relative;
  font-size: 3rem;
  font-weight: bold;
  color: #355bc8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-icon-tel-l:before {
  content: "";
  background-image: url(../images/common/icon_tel_l.png);
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
}

.c-icon-print {
  position: relative;
}
.c-icon-print:before {
  content: "";
  background-image: url(../images/common/icon_print.png);
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
}

.c-icon-new {
  background-color: #000000;
  color: #fff;
  padding-right: 20px;
  padding-left: 20px;
}

.c-icon-open_in_new {
  position: relative;
}
.c-icon-open_in_new:after {
  font-family: "Material Symbols Outlined";
  content: "open_in_new";
  position: relative;
  color: #fff;
  vertical-align: middle;
  margin-left: 10px;
}

.c-icon-location_on {
  position: relative;
}
.c-icon-location_on:before {
  font-family: "Material Icons";
  content: "location_on";
  position: relative;
  color: #355bc8;
  vertical-align: middle;
  margin-right: 10px;
}

.c-icon-guidemap {
  position: relative;
}
.c-icon-guidemap:before {
  content: "";
  background-image: url(../images/common/icon_guidemap.png);
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
}

.c-icon-download {
  position: relative;
}
.c-icon-download:after {
  font-family: "Material Icons";
  content: "download";
  position: relative;
  color: #ffffff;
  vertical-align: middle;
  margin-left: 10px;
}

.c-icon-blank {
  position: relative;
}
.c-icon-blank:after {
  font-family: "Material Icons";
  content: "open_in_new";
  position: relative;
  color: #ccc;
  vertical-align: middle;
  margin-left: 10px;
}

.c-icon-personAdd {
  position: relative;
}
.c-icon-personAdd:after {
  font-family: "Material Symbols Outlined";
  content: "person_add";
  position: relative;
  color: #083388;
  vertical-align: middle;
  font-size: 80px;
}

.c-icon-addCart {
  position: relative;
}
.c-icon-addCart:after {
  font-family: "Material Symbols Outlined";
  content: "add_shopping_cart";
  position: relative;
  color: #083388;
  vertical-align: middle;
  font-size: 80px;
}

.c-icon-check_circle {
  position: relative;
}
.c-icon-check_circle:after {
  font-family: "Material Symbols Outlined";
  content: "check_circle";
  position: relative;
  color: #083388;
  vertical-align: middle;
  font-size: 80px;
}

/*
---
name: js
category:
  - object
  - object/component/js
---

js

*/
.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-pagination {
  bottom: -30px !important;
}

.swiper-pagination-bullet {
  background-color: #555555;
  width: 50px;
  height: 5px;
  border-radius: 0;
}
@media screen and (max-width: 992px) {
  .swiper-pagination-bullet {
    height: 10px;
  }
}

.swiper-pagination-bullet-active {
  background-color: #355bc8;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 36px;
  margin: auto;
  width: 36px;
}

.swiper-button-prev::after {
  background-image: url(../images/common/icon_slidearrow_l.png);
}

.swiper-button-next::after {
  background-image: url(../images/common/icon_slidearrow_r.png);
}

.swiper-button-prev.ver-round,
.swiper-button-next.ver-round {
  background-color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 992px) {
  .swiper-button-prev.ver-round,
  .swiper-button-next.ver-round {
    display: none;
  }
}

.swiper-button-prev.ver-round::after {
  background-image: url(../images/common/icon_keyboard_arrow_left.png);
}

.swiper-button-next.ver-round::after {
  background-image: url(../images/common/icon_keyboard_arrow_right.png);
}

body.screen-modal-open {
  overflow: hidden;
}

/* Fullscreen Modal Styles */
#screen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#screen-overlay-content {
  position: absolute;
  top: 200px;
  width: 100%;
  height: calc(100% - 200px);
  background-color: white;
  overflow: auto;
}

#screen-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 30px;
  z-index: 1002;
}

#screen-close-btn:hover {
  background-color: #d32f2f;
}

#screen-overlay iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.c-js-sortAccordion {
  position: relative;
  margin-bottom: 40px;
}
.c-js-sortAccordion .ac-toggle {
  display: none;
}
.c-js-sortAccordion .ac-Label {
  /*タイトル*/
  padding: 1em;
  background-color: #2c4ba6;
  color: #ffffff;
  font-weight: bold;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 30px;
  padding-right: 87px;
  position: relative;
  transition: opacity 0.2s ease;
}
.c-js-sortAccordion .ac-Label::before {
  /*タイトル横の矢印*/
  content: "＋";
  position: absolute;
  top: calc(50% - 9px);
  right: 0;
  margin-right: 20px;
}
.c-js-sortAccordion .ac-Label,
.c-js-sortAccordion .ac-content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.c-js-sortAccordion .ac-content {
  top: 42px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  z-index: 3;
}
@media screen and (max-width: 576px) {
  .c-js-sortAccordion .ac-content {
    max-width: 390px;
  }
}
.c-js-sortAccordion .ac-content {
  /* 高さアニメは JS 主導に切替。opacity は使わず“中身が遅れて出る”のを防止 */
  height: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: height 0.28s ease, transform 0.38s ease;
  will-change: height, transform;
  margin-bottom: 10px;
  margin-top: 18px;
}
.c-js-sortAccordion .ac-toggle:checked + .ac-Label + .ac-content {
  /*開閉時*/
  transform: translateY(0);
  border: 1px solid #e2e2e2;
  background-color: #fff;
  box-shadow: 0px 3px 10px 0px rgba(122, 127, 136, 0.2);
  z-index: 3;
}
.c-js-sortAccordion .ac-toggle:checked + .ac-Label::before {
  content: "－";
}
.c-js-sortAccordion .search-tabs {
  display: flex;
  margin-bottom: 30px;
}
.c-js-sortAccordion .tab-button {
  padding-top: 20px;
  padding-bottom: 17px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #7a7f88;
  width: 50%;
  color: #7a7f88;
  font-weight: bold;
  cursor: pointer;
}
.c-js-sortAccordion .tab-button.active {
  border-bottom: 3px solid #355bc8;
  color: #1c1f21;
}
.c-js-sortAccordion .tab-content {
  display: none;
}
.c-js-sortAccordion .tab-content.active {
  display: block;
}
.c-js-sortAccordion .tab-footer {
  display: flex;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-top: 30px;
  padding-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .c-js-sortAccordion .tab-footer {
    padding-left: 10px;
    padding-right: 10px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.c-js-sortAccordion .tab-footer .reset-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: #7a7f88;
  color: #fff;
  width: 200px;
  height: 54px;
  font-weight: bold;
}
.c-js-sortAccordion .tab-footer .search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: #355bc8;
  color: #fff;
  width: 200px;
  height: 54px;
  font-weight: bold;
}
.c-js-sortAccordion .tab-footer .close-btn {
  position: absolute;
  bottom: 20px;
  right: 40px;
  color: #083388;
  text-decoration: underline;
  background-color: transparent;
  border: none;
}

.c-js-selectedFilters {
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 20px;
  row-gap: 10px;
}
@media screen and (max-width: 992px) {
  .c-js-selectedFilters {
    margin-top: 30px !important;
  }
}
.c-js-selectedFilters.selected-filters {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.c-js-selectedFilters.selected-filters .selected-filter-tag {
  background: #fff;
  border: 1px solid #7a7f88;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #242933;
  font-weight: 500;
  height: 40px;
  padding-left: 17px;
  padding-right: 17px;
}
.c-js-selectedFilters.selected-filters .selected-filter-tag .remove-filter {
  margin-right: 8px;
  cursor: pointer;
  font-weight: bold;
}

.tab-content#tab-use .sort-btn-list.use-area li img {
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  .c-js-sortSearch .sort-btn li {
    width: 100%;
    margin: 0;
  }
}
.c-js-sortSearch .sort-btn .sort-title {
  background-color: #f2f2f2;
  color: #355bc8;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.c-js-sortSearch .sort-btn .sort-title:not(:first-child) {
  margin-top: 40px;
}
.c-js-sortSearch .sort-btn ul.sort-btn-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 30px;
  margin-left: 40px;
  margin-right: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .c-js-sortSearch .sort-btn ul.sort-btn-list {
    grid-template-columns: repeat(2, 1fr);
    margin: 10px;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
.c-js-sortSearch .sort-btn ul.sort-btn-list li .sort-btn-text {
  position: relative;
  cursor: pointer;
  border: 1px solid #7a7f88;
  border-radius: 30px;
  color: #242933;
  background-color: #fff;
  font-weight: 500;
  padding: 8px 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .c-js-sortSearch .sort-btn ul.sort-btn-list li .sort-btn-text {
    width: auto;
    height: 100%;
    padding: 10px;
    border-radius: 20px;
  }
}
.c-js-sortSearch .sort-btn ul.sort-btn-list li.active .sort-btn-text {
  background-color: #E2E9FD;
  color: #355BC8;
  border: 1px solid #355BC8;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  .c-js-sortSearch .sort-btn ul.sort-btn-list.use-area {
    grid-row-gap: 5px;
  }
  .c-js-sortSearch .sort-btn ul.sort-btn-list.use-area li img {
    width: 100%;
  }
  .c-js-sortSearch .sort-btn ul.sort-btn-list.use-area li .sort-btn-text {
    height: auto;
  }
}

.c-js-sortBox .tab-content {
  text-align: left;
}
.c-js-sortBox.fixed {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999;
  max-width: 1360px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  padding-right: 10px;
  padding-left: 10px;
}
.c-js-sortBox .c-js-selectedFilters.fixed {
  justify-content: flex-start;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 992px) {
  .c-js-sortBox .c-js-selectedFilters.fixed {
    justify-content: flex-end;
    margin-top: 30px !important;
  }
}

.c-js-muuri.grid {
  position: relative; /*並び替えの基準点を指定*/
}
.c-js-muuri.grid .item {
  display: block;
  position: absolute;
  width: 33%; /*横並びで3つ表示*/
  padding: 0 10px 10px 10px; /*画像に余白をつける*/
  z-index: 1;
  margin-bottom: 24px;
}
.c-js-muuri.grid .item-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.c-js-muuri.grid .item-content img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 992px) {
  .c-js-muuri.grid .item {
    width: 49.5%; /*横並びで2つ表示*/
    padding: 0 5px 10px 5px;
  }
}
.c-js-muuri.grid:not([data-ready="1"]) {
  visibility: hidden; /* opacityより確実に消す */
}
.c-js-muuri.grid[data-ready="1"] > .item {
  position: absolute;
}
.c-js-muuri .grid[data-ready="1"] {
  animation: gridFade 0.2s ease both;
}
@keyframes gridFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.c-js-muuri .works-thumb {
  aspect-ratio: 429/286;
}
.c-js-muuri .works-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.c-js-modalContent .modal__bg {
  position: fixed;
  z-index: 10009;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0; /* 初期状態で非表示 */
  visibility: hidden; /* 初期状態で非表示 */
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.c-js-modalContent .modal__bg.is-active {
  opacity: 1; /* 非表示を解除 */
  visibility: visible; /* 非表示を解除 */
}
.c-js-modalContent .modal__inner {
  position: fixed;
  z-index: 10010;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1120px;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: auto;
  padding: 15px;
  overflow-y: scroll;
  overflow-x: hidden;
  opacity: 0; /* 初期状態で非表示 */
  visibility: hidden; /* 初期状態で非表示 */
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background-color: #ffffff;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .c-js-modalContent .modal__inner {
    width: 90%;
    max-width: none;
    max-height: 85vh;
  }
}
.c-js-modalContent .modal__inner.is-active {
  opacity: 1; /* 非表示を解除 */
  visibility: visible; /* 非表示を解除 */
}
.c-js-modalContent .modal-card {
  width: 100%;
  position: absolute;
  z-index: 1;
  transform: translate3d(0, 48px, 0);
  opacity: 0; /* 初期状態で非表示 */
  visibility: hidden; /* 初期状態で非表示 */
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.3s ease-in-out;
  box-sizing: border-box;
}
.c-js-modalContent .modal-card__content {
  position: relative;
}
@media screen and (min-width: 992px) {
  .c-js-modalContent .modal-card__content {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 118px;
    padding-left: 118px;
  }
}
@media screen and (max-width: 992px) {
  .c-js-modalContent .modal-card__content {
    padding-top: 40px;
    padding-bottom: 0px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.c-js-modalContent .modal-card.is-active {
  position: relative;
  z-index: 2;
  opacity: 1; /* 非表示を解除 */
  visibility: visible; /* 非表示を解除 */
  transform: translate3d(0, 0, 0);
}
.c-js-modalContent .modal-card__close {
  cursor: pointer;
  background-color: #355bc8;
  color: #fff;
  font-weight: bold;
  max-width: 400px;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.c-js-modalContent .modal-card__close::after {
  font-family: "Material Symbols Outlined";
  content: "close";
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-js-modalContent .modal-card__close--head {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.c-js-modalContent .modal-card__close--head:after {
  font-family: "Material Symbols Outlined";
  content: "close";
  color: #636363;
  font-size: 30px;
}
.c-js-modalContent .modal-card__slide .swiper {
  max-width: 880px;
  width: 100%;
}
.c-js-modalContent .modal-card__slide .swiper img {
  border-radius: 10px;
}
.c-js-modalContent .modal-card__slide .swiper.swiper-thumbs img {
  border-radius: inherit;
}
.c-js-modalContent .modal-card__slide .swiper.slideWorksThumbnail {
  max-width: 466px;
  margin-top: 20px;
}
.c-js-modalContent .modal-card__slide .slideWorksThumbnail .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.5s;
  width: calc(20% - 18px) !important;
}
.c-js-modalContent .modal-card__slide .slideWorksThumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.c-js-modalContent.Ver02 .modal__bg {
  background: rgba(0, 0, 0, 0.8);
}
.c-js-modalContent.Ver02 .modal__inner {
  max-width: 1116px;
  background-color: #fff;
  border-radius: 10px;
}
.c-js-modalContent.Ver02 .modal-card__content {
  padding: 20px 10px;
}
@media screen and (min-width: 992px) {
  .c-js-modalContent.Ver02 .modal-card__content {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 118px;
    padding-left: 118px;
  }
}
@media screen and (max-width: 992px) {
  .c-js-modalContent.Ver02 .modal-card__content {
    width: 100%;
  }
}
.c-js-modalContent.Ver02 .modal-card__content .title-txt {
  margin-top: 20px;
}
.c-js-modalContent.Ver02 .modal-card__content .a-txt {
  margin-top: 20px;
}
.c-js-modalContent.Ver02 .modal-card__content .img-area {
  margin-top: 50px;
}
.c-js-modalContent.Ver02 .modal-card__content .img-area img {
  margin: 0 auto;
}
.c-js-modalContent.Ver02 .modal-card__content .table-txt {
  margin-top: 40px;
}
.c-js-modalContent.Ver02 .modal-card__close {
  margin-top: 60px;
  border: none;
  width: inherit;
  padding: 0;
}
.c-js-modalContent.Ver02 .modal-card__closeBtn {
  margin: 0 auto;
}
.c-js-modalContent.Ver03 {
  margin-top: 150px;
}
.c-js-modalContent.Ver03 .modal__bg {
  background: rgba(255, 255, 255, 0.8);
}
.c-js-modalContent.Ver03 .modal__inner {
  max-width: 1120px;
}
@media screen and (min-width: 992px) {
  .c-js-modalContent.Ver03 .modal-card__content {
    padding-bottom: 100px;
  }
}
.c-js-modalContent.Ver03 .modal-card__close {
  margin-top: 60px;
  border: none;
  width: inherit;
  padding: 0;
}
.c-js-modalContent.Ver03 .modal-card__closeBtn {
  margin: 0 auto;
}

/* Dropdown Area */
.c-js-navdrop-area {
  display: none; /* Initially hidden */
}

/* Dropdown Container */
.c-js-navdrop {
  cursor: pointer;
}

.c-js-navdrop-area {
  display: none;
}

/* Dropdown Area Visibility on Active */
.c-js-navdrop-area.active {
  display: block;
}

/* Initially hide the accordion content */
.c-js-gnav-ac__area {
  display: none;
}

/* Open accordion content */
.c-js-gnav-ac__area.open-area {
  display: block;
}

/* Active trigger link */
.c-js-accordionLabel {
  font-size: 2.2rem;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #eeeeee;
  border: 1px solid #707070;
  position: relative;
}
.c-js-accordionLabel::after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-color: #ffffff;
  border: 1px solid #707070;
  font-size: 1.6rem;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  padding-left: 10px;
}
.c-js-accordionLabel.active::after {
  content: "－";
}
.c-js-accordionLabel.type02 {
  background-color: transparent;
  border: none;
  padding: 0;
}
.c-js-accordionLabel.type02::after {
  background-color: transparent;
  border: none;
  color: #083388;
  font-weight: bold;
  font-size: 2.4rem;
}

.c-js-accordionArea {
  display: none;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.c-js-accordionArea.is-open {
  display: block;
}

/*
---
name: label
category:
  - object
  - object/component/label
---

label

*/
.c-label {
  display: inline-block;
  padding: 5px 25px;
  border-radius: 6px;
}
.c-label--done {
  background-color: #355BC8;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}
.c-label--delete {
  background-color: #7A7F88;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  border-radius: 0;
}
.c-label--detail {
  background-color: #fff;
  font-weight: normal !important;
  color: #000;
  white-space: nowrap;
  border: 1px solid #000;
}

/*
---
name: link
category:
  - object
  - object/component/link
---

リンク

*/
.c-link-default {
  color: #000000;
  text-decoration: underline;
}
.c-link-default:hover {
  text-decoration: none;
}
.c-link-default.color-blue {
  color: #355BC8;
}
.c-link-default.color-blue02 {
  color: #355bc8;
}

.c-link-login a {
  background-color: #355bc8;
  color: #fff;
  border-radius: 25px;
  padding-top: 3px;
  padding-bottom: 3px;
  width: 128px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 992px) {
  .c-link-login a {
    width: 107px;
    height: 28px;
    font-size: 12px;
  }
}
.c-link-login a:visited {
  color: #fff;
}
.c-link-login a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../images/common/icon_login.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 25px;
  height: 25px;
  margin: -2px 5px 0 0;
}
@media screen and (max-width: 992px) {
  .c-link-login a::before {
    width: 20px;
    height: 20px;
  }
}
.c-link-login.mypage a {
  width: 148px;
}
@media screen and (max-width: 992px) {
  .c-link-login.mypage a {
    width: 130px;
  }
}

.c-link-search a::before {
  font-family: "Material Icons";
  content: "search";
  color: #083388;
  font-size: 2.4rem;
  display: inline-block;
  vertical-align: middle;
}

.c-link-contact a::before {
  font-family: "Material Symbols Outlined";
  content: "mail";
  color: #083388;
  font-size: 2.4rem;
  display: inline-block;
  vertical-align: middle;
}

.c-link-cart a::before {
  font-family: "Material Symbols Outlined";
  content: "shopping_cart";
  color: #083388;
  font-size: 2.4rem;
  display: inline-block;
  vertical-align: middle;
}

.c-link-arrow-l a::before {
  font-family: "Material Icons";
  content: "chevron_right";
  display: inline-block;
  vertical-align: middle;
  color: #083388;
  font-size: 1.6rem;
}
.c-link-arrow-l__02 {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-left: 15px;
}
.c-link-arrow-l__02::before {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #083388;
  font-size: 1.6rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-link-arrow-l__03 {
  color: #083388;
  text-decoration: underline;
  position: relative;
  padding-left: 20px;
}
.c-link-arrow-l__03:visited {
  color: #083388;
}
.c-link-arrow-l__03::before {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #083388;
  font-size: 1.6rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-link-arrow-l__04 {
  color: #000000;
  position: relative;
  padding-left: 30px;
}
.c-link-arrow-l__04:visited {
  color: #000000;
}
.c-link-arrow-l__04::before {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #083388;
  font-size: 2.4rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-link-arrow-l__05 {
  color: #083388;
  position: relative;
  padding-left: 30px;
}
.c-link-arrow-l__05:visited {
  color: #083388;
}
.c-link-arrow-l__05::before {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #083388;
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-link-arrow-l__06 {
  color: #083388;
  position: relative;
  padding-left: 30px;
}
.c-link-arrow-l__06:visited {
  color: #083388;
}
.c-link-arrow-l__06::before {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #083388;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.c-link-arrow-r a::after {
  font-family: "Material Icons";
  content: "chevron_right";
  display: inline-block;
  vertical-align: middle;
  color: #083388;
  font-size: 1.6rem;
}
.c-link-arrow-r__02 {
  position: relative;
  display: inline-block;
  width: 100%;
}
.c-link-arrow-r__02::after {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #083388;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-link-arrow-r__03 {
  position: relative;
  display: inline-block;
  width: 100%;
  background-color: #083388;
  color: #fff;
  padding: 13px;
  text-align: center;
}
.c-link-arrow-r__03::after {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-link-arrow-r__03:visited {
  color: #fff;
}
.c-link-arrow-r__04 {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 13px;
  text-align: center;
  border: 1px solid #083388;
}
.c-link-arrow-r__04::after {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #083388;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-link-arrow-r__05 {
  position: relative;
  display: inline-block;
  width: 100%;
  background-color: #083388;
  color: #fff;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}
.c-link-arrow-r__05::after {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-link-arrow-r__05 {
    padding: 13px;
  }
}
.c-link-arrow-r__05:visited {
  color: #fff;
}
.c-link-arrow-r__btn {
  position: relative;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: bold;
  color: #000000;
}
.c-link-arrow-r__btn::visited {
  color: #000000;
}
.c-link-arrow-r__btn::after {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #083388;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.c-link-arrow-list a::before {
  font-family: "Material Icons";
  content: "chevron_right";
  display: inline-block;
  vertical-align: middle;
  color: #707070;
  font-size: 1.6rem;
}
.c-link-arrow-list.white-icon a::before {
  color: #fff;
  font-size: 1.6rem;
}

.c-link-box {
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
  border: 1px solid #707070;
  display: inline-block;
  width: 100%;
}
.c-link-box.bac-color {
  background-color: #2c4ba6;
  padding-top: 15px;
  padding-bottom: 10px;
  color: #fff;
  font-weight: bold;
  height: 100px;
  border: none;
}
@media screen and (max-width: 992px) {
  .c-link-box.bac-color {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.c-link-box.bac-color:visited {
  color: #fff;
}
@media screen and (min-width: 992px) {
  .c-link-box.icon-search {
    position: relative;
  }
}
.c-link-box.icon-search::after {
  font-family: "Material Symbols Outlined";
  content: "search";
  color: #fff;
  font-size: 3.6rem;
}
@media screen and (min-width: 992px) {
  .c-link-box.icon-search::after {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 992px) {
  .c-link-box.icon-search::after {
    position: inherit;
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-link-box.icon-catalog {
    position: relative;
  }
}
.c-link-box.icon-catalog::after {
  font-family: "Material Symbols Outlined";
  content: "stacks";
  color: #fff;
  font-size: 3.6rem;
}
@media screen and (min-width: 992px) {
  .c-link-box.icon-catalog::after {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 992px) {
  .c-link-box.icon-catalog::after {
    position: inherit;
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-link-box.icon-works {
    position: relative;
  }
}
.c-link-box.icon-works::after {
  font-family: "Material Symbols Outlined";
  content: "home_work";
  color: #fff;
  font-size: 3.6rem;
}
@media screen and (min-width: 992px) {
  .c-link-box.icon-works::after {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 992px) {
  .c-link-box.icon-works::after {
    position: inherit;
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-link-box.icon-arrow {
    position: relative;
  }
}
.c-link-box.icon-arrow::after {
  font-family: "Material Symbols Outlined";
  content: "keyboard_arrow_right";
  color: #fff;
  font-size: 3.6rem;
}
@media screen and (min-width: 992px) {
  .c-link-box.icon-arrow::after {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 992px) {
  .c-link-box.icon-arrow::after {
    position: inherit;
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-link-box.icon-mail {
    position: relative;
  }
}
.c-link-box.icon-mail::after {
  font-family: "Material Symbols Outlined";
  content: "mail";
  color: #fff;
  font-size: 3.6rem;
}
@media screen and (min-width: 992px) {
  .c-link-box.icon-mail::after {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 992px) {
  .c-link-box.icon-mail::after {
    position: inherit;
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
  }
}
.c-link-box.ver02 {
  padding-top: 27px;
  padding-bottom: 27px;
  border: 1px solid #707070;
  background-color: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-link-box.line-bold {
  font-size: 2.4rem;
  font-weight: bold;
  border: 3px solid #707070;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  color: #000000;
}

.c-link-colorBox {
  background-color: #edf1fc;
  padding: 20px;
  display: block;
  color: inherit;
}

.c-link-category {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  border: 1px solid #707070;
  background-color: #eeeeee;
  width: 128px;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .c-link-category {
    width: 105px;
  }
}
.c-link-category.ver02 {
  background-color: #2c4ba6;
  color: #fff;
  border: none;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media screen and (max-width: 992px) {
  .c-link-category.ver02 {
    font-size: 1rem;
  }
}
.c-link-category.ver02:visited {
  color: #fff;
}

.c-link-arrow-down a::after {
  font-family: "Material Icons";
  content: "keyboard_arrow_down";
  display: inline-block;
  vertical-align: middle;
  color: #083388;
  font-size: 1.6rem;
  padding-left: 5px;
}

.c-link-click {
  text-indent: -4em;
  padding-left: 4em;
}
.c-link-click a::before {
  content: "CLICK";
  margin-right: 24px;
  position: relative;
  top: 1px;
}

.c-link-arrow-l-circle {
  position: relative;
  display: inline-block;
  padding-left: 2em;
}
.c-link-arrow-l-circle:before {
  content: "chevron_right";
  font-family: "Material Icons";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 20px;
  height: 20px;
  background-color: #355BC8;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 1.6rem;
}

.c-link-blank:after {
  font-family: "Material Icons";
  content: "open_in_new";
  display: inline-block;
  vertical-align: middle;
  color: #083388;
  font-size: 1.6rem;
  padding-left: 5px;
}

@media screen and (min-width: 992px) {
  .c-link-3bgcolumn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 20px;
  }
}
.c-link-3bgcolumn .item a {
  display: inline-block;
  padding: 20px;
  background-color: #eeeeee;
  width: 100%;
}
.c-link-3bgcolumn .item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 992px) {
  .c-link-3bgcolumn .item:not(:first-child) {
    margin-top: 20px;
  }
}

/*
---
name: list
category:
  - object
  - object/component/list
---

list

*/
.c-list-simple {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-simple li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.c-list-simple li:not(:first-child) {
  margin-top: 15px;
}

.c-list-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.c-list-dot {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-dot li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-list-dot li:before {
  content: "";
  width: 3px;
  height: 3px;
  display: inline-block;
  background-color: #000000;
  border-radius: 50%;
  position: relative;
  top: -4px;
  margin-right: 10px;
}
.c-list-dot.wide-space li:not(:first-child) {
  margin-top: 10px;
}
.c-list-dot.row-type {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 0px;
}
@media screen and (max-width: 992px) {
  .c-list-dot.row-type {
    grid-column-gap: 20px;
  }
}
.c-list-dot.row-type li {
  margin-top: 10px;
}
.c-list-dot .c-link-blank:after {
  padding-left: 20px;
}

.c-list-attention {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-attention > li {
  position: relative;
  padding-left: 20px;
}
.c-list-attention > li:before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.c-list-attention.number {
  counter-reset: list-counter;
}
.c-list-attention.number > li {
  counter-increment: list-counter;
  padding-left: 30px;
}
.c-list-attention.number > li:before {
  content: "※" counter(list-counter);
}

.c-list-attention-02 {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-attention-02 > li {
  position: relative;
  padding-left: 20px;
}
.c-list-attention-02 > li:before {
  content: "＊";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.c-list-attention-02.number {
  counter-reset: list-counter;
}
.c-list-attention-02.number > li {
  counter-increment: list-counter;
  padding-left: 30px;
}
.c-list-attention-02.number > li:before {
  content: "＊" counter(list-counter);
}

.c-list-dot .c-list-attention li:before {
  display: inherit;
  background-color: transparent;
}

.c-list-circle {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-circle li {
  position: relative;
  padding-left: 20px;
}
.c-list-circle li:before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #000000;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
}
.c-list-circle.round-line li:before {
  background-color: transparent;
  border: 1px solid #000000;
}

.c-list-square {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-square li {
  position: relative;
  padding-left: 20px;
}
.c-list-square li:before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #000000;
  position: absolute;
  top: 4px;
  left: 0;
}

.c-list-linecircle {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-linecircle li {
  position: relative;
  padding-left: 20px;
}
.c-list-linecircle li:before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  border: 1px solid #1c1f21;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 0;
}

.c-list-number {
  counter-reset: list-counter;
}
.c-list-number > li,
.c-list-number dt {
  text-indent: -1.5em;
  padding-left: 1.5em;
  counter-increment: list-counter;
}
.c-list-number dd {
  padding-left: 1.5em;
}
.c-list-number > li:not(:first-child),
.c-list-number dt:not(:first-child) {
  margin-top: 15px;
}
.c-list-number > li:before,
.c-list-number dt:before {
  content: counter(list-counter) ". ";
  margin-right: 5px;
  position: relative;
  top: 1px;
}
.c-list-number-02 {
  position: relative;
  margin: 0;
  padding: 0;
}
.c-list-number-02 li {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.25em;
}
.c-list-number-02 li span {
  position: absolute;
  left: 0;
  margin: 0;
}

@media screen and (max-width: 992px) {
  ol li .c-list-number-02 li {
    padding-left: 1em;
    text-indent: 0em;
  }
}

.c-list-arrow {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-arrow li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-list-arrow li:not(:first-child) {
  padding-top: 15px;
}
.c-list-arrow li:before {
  font-family: "Material Icons";
  content: "chevron_right";
  vertical-align: middle;
  color: #083388;
  font-size: 1.6rem;
}
.c-list-arrow.white-icon li:before {
  color: #ffffff;
}
.c-list-arrow .c-link-blank:after {
  padding-left: 20px;
}

.c-list-detail dl dt,
.c-list-detail dl dd {
  padding: 5px;
  text-align: center;
}
.c-list-detail dl dt {
  background-color: #f2f4f8;
}

.c-list-indent__02 {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-indent__02 li {
  text-indent: -2em;
  padding-left: 2em;
}

/*
---
name: nav
category:
  - object
  - object/component/nav
---

nav

*/
.c-nav-process {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .c-nav-process.u-mb-80 {
    margin-bottom: 40px !important;
  }
  .c-nav-process.u-mt-50 {
    margin-top: 25px !important;
  }
}
.c-nav-process__item {
  position: relative;
  width: 33%;
  text-align: center;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  line-height: 1.5;
  background: #F2F2F2;
  color: #1c1f21;
}
.c-nav-process.column4 .c-nav-process__item {
  width: 25%;
}
.c-nav-process__item:not(:last-child)::before, .c-nav-process__item:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 100%;
  content: "";
  border: 32px solid transparent;
  border-left: 37px solid #F2F2F2;
  margin: auto;
}
.c-nav-process__item:not(:last-child)::before {
  margin-left: 1px;
  border-left-color: #fff;
}
@media screen and (max-width: 992px) {
  .c-nav-process__item {
    font-size: 11px;
    line-height: 1.4;
    padding: 10px 0;
  }
  .c-nav-process__item:not(:last-child)::before, .c-nav-process__item:not(:last-child)::after {
    border-width: 18px;
    border-left-width: 12px;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .c-nav-process__item:not(:last-child)::before, .c-nav-process__item:not(:last-child)::after {
    border-left-width: 5px;
  }
}
.c-nav-process__item.active {
  z-index: 1;
  background: #355BC8;
  color: #fff;
  font-weight: bold;
}
.c-nav-process__item.active:not(:last-child)::after {
  border-left-color: #355BC8;
}

.c-nav-submenu {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 20px 40px;
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  .c-nav-submenu {
    gap: 10px 15px;
  }
}
@media screen and (max-width: 768px) {
  .c-nav-submenu {
    margin-top: 15px;
  }
}
.c-nav-submenu li a.current {
  text-decoration-line: underline;
  text-decoration-color: rgb(53, 91, 200);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.5em;
}
.c-nav-submenu li a {
  font-weight: bold;
}
.c-nav-submenu li a:visited {
  color: inherit;
}

.c-nav-submenu.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1005;
  width: 100vw;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-top: 0;
}
@media screen and (max-width: 992px) {
  .c-nav-submenu.is-fixed {
    flex-wrap: nowrap;
    gap: 10px 20px;
    padding: 15px;
    padding-top: 5px;
    overflow-x: auto; /* 横スクロール有効 */
    -webkit-overflow-scrolling: touch; /* スマホでスムーズスクロール */
    scrollbar-width: none; /* Firefoxのスクロールバー非表示 */
  }
  .c-nav-submenu.is-fixed::-webkit-scrollbar .c-nav-submenu::-webkit-scrollbar {
    display: none; /* スマホSafari/Chromeのスクロールバー非表示 */
  }
  .c-nav-submenu.is-fixed > li {
    flex: 0 0 auto;
  }
  .c-nav-submenu.is-fixed li a {
    font-size: 1.6rem;
  }
}

.c-nav-pagemenu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  border-bottom: 1px solid #707070;
}
.c-nav-pagemenu__item {
  background-color: #ebebeb;
  text-align: center;
}
.c-nav-pagemenu__item--cart {
  align-self: center;
  justify-self: flex-end;
  grid-column: 5;
  color: #7a7f88;
}
.c-nav-pagemenu__item--cart .material-symbols-outlined {
  font-size: 4.5rem;
  font-weight: 300;
}
.c-nav-pagemenu__item a {
  padding: 18px;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .c-nav-pagemenu__item a {
    white-space: nowrap;
  }
}
.c-nav-pagemenu__item.current {
  background-color: #355BC8;
  color: #fff;
  position: relative;
}
.c-nav-pagemenu__item.current::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-style: solid;
  border-color: #355BC8 transparent transparent transparent;
  border-width: 30px 110px 0 110px;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .c-nav-pagemenu__item.current::after {
    border-width: 30px 40px 0 40px;
  }
}

.c-nav-pagelink {
  display: flex;
  flex-wrap: wrap;
}
.c-nav-pagelink li {
  padding-right: 20px;
}
.c-nav-pagelink a:after {
  font-family: "Material Icons";
  content: "keyboard_arrow_down";
  display: inline-block;
  vertical-align: middle;
  color: #707070;
  font-size: 22px;
}
.c-nav-pagelink.type-icon-down {
  font-weight: bold;
}
.c-nav-pagelink.type-icon-down a:after {
  color: #355bc8;
  content: "expand_circle_down";
  padding-left: 5px;
}

.c-nav-tabmenu {
  display: flex;
  flex-wrap: wrap;
}
.c-nav-tabmenu__label {
  width: 50%;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  border-bottom: 3px solid #355BC8;
}
.c-nav-tabmenu__label p {
  padding-top: 15px;
  padding-bottom: 15px;
}
.c-nav-tabmenu__label.menu-link {
  background-color: #727272;
  color: #fff;
  border-bottom: initial;
}
.c-nav-tabmenu__label.menu-link a {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
}
.c-nav-tabmenu__label.menu-link a:after {
  font-family: "Material Icons";
  content: "chevron_right";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-size: 18px;
  padding-left: 5px;
}
.c-nav-tabmenu__label.page-link {
  border-bottom: 1px solid #7a7f88;
}
.c-nav-tabmenu__label.page-link a {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #7a7f88;
}

@media screen and (min-width: 992px) {
  .c-nav-pagelinkbtn {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .c-nav-pagelinkbtn__item:not(:first-child) {
    margin-top: 20px;
  }
}
.c-nav-pagelinkbtn__item {
  display: flex;
}
.c-nav-pagelinkbtn__item a {
  background-color: #f2f2f2;
  border-radius: 10px;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 65px;
  font-weight: bold;
  display: flex;
  align-items: center;
  width: 100%;
}
.c-nav-pagelinkbtn__item a:after {
  font-family: "Material Icons";
  content: "keyboard_arrow_down";
  font-size: 30px;
  color: #355bc8;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-nav-pagelinkbtn.type-conpact .c-nav-pagelinkbtn__item a {
  padding-top: 10px;
  padding-bottom: 10px;
}

/*
---
name: pagenation
category:
  - object
  - object/component/pagenation
---

ページネーション

*/
.c-pagenation-simple {
  margin-top: 20px;
}
.c-pagenation-simple__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

.c-pagenation-box {
  background-image: repeating-linear-gradient(90deg, #ACACAC, #ACACAC 2px, transparent 2px, transparent 4px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
.c-pagenation-box__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-top: 30px;
  margin-top: 30px;
}
.c-pagenation-box__item a {
  display: block;
  color: #7A7F88;
  font-weight: bold;
  font-size: 1.2rem;
  border: 1px solid #E2E2E2;
  background-color: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 5px;
  line-height: 30px;
}
.c-pagenation-box__item.current a {
  background-color: #355BC8;
  color: #fff;
}

/*
---
name: section
category:
  - object
  - object/component/section
---

section

*/
.c-section-top {
  margin-top: 54px;
}

.c-section-articletop {
  margin-top: 45px;
}

.c-section {
  margin-top: 40px;
}

.c-section-separate {
  margin-top: 60px;
}

.c-section-contentTop {
  margin-top: 28px;
}

.c-section-border {
  border-top: 3px solid #A3A3A3;
  margin-top: 50px;
}

.c-section-wide {
  margin-top: 80px;
}
@media screen and (max-width: 992px) {
  .c-section-wide {
    margin-top: 40px;
  }
}

/*
---
name: separate
category:
  - object
  - object/component/separate
---

区切り線

*/
.c-separate--01 {
  border-bottom: 1px dotted #000;
}

/*
---
name: svg
category:
  - object
  - object/component/svg
---

svg

*/
/*
---
name: tab
category:
  - object
  - object/component/tab
---

tab

*/
.c-tab-wrap {
  display: flex;
  flex-wrap: wrap;
}
.c-tab-wrap.tab-2col .c-tab-label {
  width: 50%;
}
.c-tab-wrap.tab-3col .c-tab-label {
  width: 33%;
}
@media screen and (max-width: 992px) {
  .c-tab-wrap.tab-3col .c-tab-label {
    width: 100%;
  }
}
.c-tab-wrap.tab-5col .c-tab-label {
  width: 20%;
}
@media screen and (max-width: 992px) {
  .c-tab-wrap.tab-5col .c-tab-label {
    width: 50%;
  }
}

.c-tab-label {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 1.8rem;
  order: -1;
  border: 1px solid #707070;
  text-align: center;
}

.c-tab-content {
  width: 100%;
  display: none;
}

.c-tab-switch:checked + .c-tab-label {
  background: #707070;
  color: #fff;
}

.c-tab-switch:checked + .c-tab-label + .c-tab-content {
  display: block;
}

.c-tab-switch {
  display: none;
}

.c-tab-wrap.tab-showunder {
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .c-tab-wrap.tab-showunder {
    gap: 0 15px;
  }
}
.c-tab-wrap.tab-showunder .c-tab-label {
  width: 380px;
  border: none;
  background-color: #ebebeb;
}
@media screen and (max-width: 992px) {
  .c-tab-wrap.tab-showunder .c-tab-label {
    width: 145px;
  }
}
.c-tab-wrap.tab-showunder .c-tab-switch:checked + .c-tab-label {
  background: #355bc8;
  border: 1px solid #355bc8;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 992px) {
  .c-tab-wrap.tab-showunder .c-tab-switch:checked + .c-tab-label {
    background-color: #000000;
  }
}
@media screen and (min-width: 992px) {
  .c-tab-wrap.tab-showunder .c-tab-switch:checked + .c-tab-label::after {
    content: "";
    height: 20px;
    width: 100%;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: #355bc8;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.c-tab-wrap.tab-showunder .c-tab-content {
  margin-top: 50px;
}
@media screen and (max-width: 992px) {
  .c-tab-wrap.tab-showunder .c-tab-content {
    margin-top: 30px;
  }
}

.c-tab-wrap.tab-topics-list {
  width: 57%;
  align-items: center;
}
.c-tab-wrap.tab-topics-list .tab-btn.c-tab-label {
  border: none;
  background-color: transparent;
  font-size: 1.6rem;
  font-weight: bold;
  width: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.c-tab-wrap.tab-topics-list .tab-btn.c-tab-label:not(:first-child) {
  border-left: 2px solid #D9DCE2;
}
.c-tab-wrap.tab-topics-list .tab-btn.is-active.c-tab-label {
  position: relative;
}
.c-tab-wrap.tab-topics-list .tab-btn.is-active.c-tab-label:after {
  content: "";
  width: 80%;
  height: 2px;
  background-color: #355BC8;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

/*
---
name: table
category:
  - object
  - object/component/table
---

table

*/
.c-table {
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 992px) {
  .c-table {
    overflow-x: auto;
    padding-bottom: 9px;
  }
}
.c-table table {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .c-table table {
    margin-left: 1px;
    white-space: nowrap;
    cursor: pointer;
    width: -moz-max-content;
    width: max-content;
  }
}
.c-table table thead th {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
  vertical-align: middle;
}
.c-table table tbody th,
.c-table table tbody td {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
  vertical-align: middle;
}
.c-table table .narrow-padding {
  padding: 5px;
}
.c-table.w-inherit table {
  width: -moz-max-content;
  width: max-content;
}
.c-table.scroll-x {
  overflow: auto;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .c-table.scroll-x-xl {
    overflow: auto;
    white-space: nowrap;
  }
}
.c-table-text th {
  font-weight: normal;
  vertical-align: top;
}
.c-table.td-center tr td {
  text-align: center;
}
.c-table .tr-td-center td {
  text-align: center;
}
.c-table.width-narrow {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.c-table.VerBorderCollapse table {
  border-collapse: collapse;
}
.c-table.VerBorderCollapse table thead th {
  background-color: #e5e5e5;
  border-bottom: 1px solid #707070;
  text-align: left;
  font-weight: normal;
}
.c-table.VerBorderCollapse table tbody th,
.c-table.VerBorderCollapse table tbody td {
  background-color: #fafafa;
  border-bottom: 1px solid #707070;
}
.c-table.VerBorderCollapse table tbody th {
  text-align: left;
  font-weight: normal;
}
.c-table.VerBorderCollapse table tbody th.th-head {
  background-color: #e5e5e5;
}
.c-table.VerBorderCollapse table tbody th.th-head__02 {
  background-color: #dbdbdb;
}
.c-table.VerBorderCollapse table tbody th.th-border {
  border-top: 1px solid #707070;
}
.c-table.VerBorderCollapse.color-ver02 tr:first-child td {
  border-top: 1px solid #c7ccd4;
}
.c-table.VerBorderCollapse.color-ver02 tr td {
  border-bottom: 1px solid #c7ccd4;
}
.c-table.VerBorderCollapse.color-ver02 tr:nth-child(odd) td {
  background-color: #ffffff;
}
.c-table.VerBorderCollapse.color-ver02 tr:nth-child(even) td {
  background-color: #f2f4f8;
}
.c-table.VerBorderCollapse__alternate table {
  border-collapse: collapse;
}
.c-table.VerBorderCollapse__alternate table tbody tr th {
  font-weight: normal;
}
.c-table.VerBorderCollapse__alternate table tbody tr:nth-child(odd) th,
.c-table.VerBorderCollapse__alternate table tbody tr:nth-child(odd) td {
  background-color: #f0f0f0;
  border-top: 1px solid #707070;
}
.c-table.VerBorderCollapse__alternate table tbody tr:nth-child(even) th,
.c-table.VerBorderCollapse__alternate table tbody tr:nth-child(even) td {
  background-color: #ffffff;
  border-top: 1px solid #707070;
}
.c-table.VerBorderCollapse__alternate table tbody tr:last-child th,
.c-table.VerBorderCollapse__alternate table tbody tr:last-child td {
  border-bottom: 1px solid #707070;
}
.c-table.VerBorderCollapse__alternate.ver-02 table {
  border-collapse: collapse;
}
.c-table.VerBorderCollapse__alternate.ver-02 table thead tr th,
.c-table.VerBorderCollapse__alternate.ver-02 table tbody tr th {
  font-weight: normal;
}
.c-table.VerBorderCollapse__alternate.ver-02 table thead tr th {
  background-color: #dbdbdb;
}
.c-table.VerBorderCollapse__alternate.ver-02 table tbody tr:nth-child(even) th,
.c-table.VerBorderCollapse__alternate.ver-02 table tbody tr:nth-child(even) td {
  background-color: #f0f0f0;
  border-top: 1px solid #707070;
}
.c-table.VerBorderCollapse__alternate.ver-02 table tbody tr:nth-child(odd) th,
.c-table.VerBorderCollapse__alternate.ver-02 table tbody tr:nth-child(odd) td {
  background-color: #ffffff;
  border-top: 1px solid #707070;
}
.c-table.VerBorderCollapse__alternate.ver-02 table thead tr th,
.c-table.VerBorderCollapse__alternate.ver-02 table tbody tr th,
.c-table.VerBorderCollapse__alternate.ver-02 table tbody tr td {
  border: 1px solid #707070;
}
.c-table.VerBorderCollapse__alternate.ver-02 table thead tr th:first-child,
.c-table.VerBorderCollapse__alternate.ver-02 table tbody tr th:first-child,
.c-table.VerBorderCollapse__alternate.ver-02 table tbody tr td:first-child {
  border-left: none;
}
.c-table.VerBorderCollapse__alternate.ver-02 table thead tr th:last-child,
.c-table.VerBorderCollapse__alternate.ver-02 table tbody tr th:last-child,
.c-table.VerBorderCollapse__alternate.ver-02 table tbody tr td:last-child {
  border-right: none;
}
.c-table.VerBorderCollapse__alternate.ver-02 table .th-head {
  background-color: #f0f0f0 !important;
}
.c-table.VerBorderCollapse__alternate.ver-02 table .th-head__02 {
  background-color: #dbdbdb !important;
}
.c-table.VerBorderCollapse__alternate.ver-02 table .td-color-odd td {
  background-color: #ffffff !important;
}
.c-table.VerBorderCollapse__alternate.ver-02 table .td-color-even td {
  background-color: #f0f0f0 !important;
}
.c-table.simpleBorder table {
  border-collapse: collapse;
}
.c-table.simpleBorder th,
.c-table.simpleBorder td {
  padding: 10px;
  border: 1px solid #707070;
}
.c-table.simpleBorder th {
  background-color: #eeeeee;
  font-weight: bold;
  text-align: center;
}
.c-table.simpleBorder.ver-02 table thead th {
  font-weight: normal;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
}
.c-table.simpleBorder.ver-02 table tbody th,
.c-table.simpleBorder.ver-02 table tbody td {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
}
.c-table.simpleBorder.ver-03 table thead tr th:first-child,
.c-table.simpleBorder.ver-03 table thead tr td:first-child,
.c-table.simpleBorder.ver-03 table tbody tr th:first-child,
.c-table.simpleBorder.ver-03 table tbody tr td:first-child {
  border-left: none;
  border-left-color: transparent;
}
.c-table.simpleBorder.ver-03 table thead tr th:last-child,
.c-table.simpleBorder.ver-03 table thead tr td:last-child,
.c-table.simpleBorder.ver-03 table tbody tr th:last-child,
.c-table.simpleBorder.ver-03 table tbody tr td:last-child {
  border-right: none;
  border-right-color: transparent;
}
.c-table.simpleBorder.ver-03 table thead tr th,
.c-table.simpleBorder.ver-03 table thead tr td {
  background-color: #f2f4f8;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
}
.c-table.simpleBorder.ver-03 table tbody tr th,
.c-table.simpleBorder.ver-03 table tbody tr td {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
}
.c-table.simpleBorder.ver-03 table tbody tr th.bac-color-01 {
  background-color: #f2f4f8;
}
.c-table.simpleBorder.ver-03 table tbody tr td.bac-color-01 {
  background-color: #f0f0f0;
}
.c-table.simpleBorder.ver-04 tbody tr th,
.c-table.simpleBorder.ver-04 tbody tr td {
  border: 1px solid #e2e2e2;
}
.c-table.simpleBorder.ver-04 tbody tr th:first-child,
.c-table.simpleBorder.ver-04 tbody tr td:first-child {
  border-left: none;
}
.c-table.simpleBorder.ver-04 tbody tr th:last-child,
.c-table.simpleBorder.ver-04 tbody tr td:last-child {
  border-right: none;
}
.c-table.simpleBorder.ver-04 tbody tr th {
  background-color: #f2f4f8;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
}
.c-table.simpleBorder.ver-04 tbody tr td {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
}
.c-table.simpleBorder.ver-05 thead tr th,
.c-table.simpleBorder.ver-05 thead tr td {
  color: #ffffff;
  font-weight: bold;
  background-color: #9ca2ad;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  border: 1px solid #e2e2e2;
  background-clip: padding-box;
}
.c-table.simpleBorder.ver-05 thead tr th:first-child,
.c-table.simpleBorder.ver-05 thead tr td:first-child {
  border-left: none;
  border-left-color: transparent;
}
.c-table.simpleBorder.ver-05 thead tr th:last-child,
.c-table.simpleBorder.ver-05 thead tr td:last-child {
  border-right: none;
  border-right-color: transparent;
}
.c-table.simpleBorder.ver-05 tbody tr th,
.c-table.simpleBorder.ver-05 tbody tr td {
  border: 1px solid #e2e2e2;
  background-clip: padding-box;
}
.c-table.simpleBorder.ver-05 tbody tr th:first-child,
.c-table.simpleBorder.ver-05 tbody tr td:first-child {
  border-left: none;
  border-left-color: transparent;
}
.c-table.simpleBorder.ver-05 tbody tr th:last-child,
.c-table.simpleBorder.ver-05 tbody tr td:last-child {
  border-right: none;
  border-right-color: transparent;
}
.c-table.simpleBorder.ver-05 tbody tr th {
  background-color: #f2f4f8;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 992px) {
  .c-table.simpleBorder.ver-05 tbody tr th {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.c-table.simpleBorder.ver-05 tbody tr td {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 992px) {
  .c-table.simpleBorder.ver-05 tbody tr td {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.c-table.simpleBorder.ver-06 tbody tr th,
.c-table.simpleBorder.ver-06 tbody tr td {
  border: 1px solid #e2e2e2;
}
.c-table.simpleBorder.ver-06 tbody tr th:first-child,
.c-table.simpleBorder.ver-06 tbody tr td:first-child {
  border-left: none;
}
.c-table.simpleBorder.ver-06 tbody tr th:last-child,
.c-table.simpleBorder.ver-06 tbody tr td:last-child {
  border-right: none;
}
.c-table.simpleBorder.ver-06 tbody tr th {
  background-color: #f2f4f8;
  padding: 10px;
}
.c-table.simpleBorder.ver-06 tbody tr td {
  background-color: #fff;
  padding: 10px;
}
@media screen and (max-width: 992px) {
  .c-table.simpleBorder.no-line {
    overflow-x: inherit;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 992px) {
  .c-table.simpleBorder.no-line table {
    width: 100%;
    white-space: wrap;
    cursor: auto;
  }
}
.c-table.simpleBorder.no-line table tbody tr th,
.c-table.simpleBorder.no-line table tbody tr td {
  vertical-align: top;
  border: none;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: transparent;
  text-align: left;
}
@media screen and (max-width: 992px) {
  .c-table.simpleBorder.no-line table tbody tr th,
  .c-table.simpleBorder.no-line table tbody tr td {
    width: 100%;
    display: block;
    padding-top: 20px;
    padding-bottom: 5px;
    padding-right: 0;
    padding-left: 0;
    white-space: wrap;
  }
}
.c-table.simpleBorder.no-line table tbody tr th {
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .c-table.simpleBorder.no-line table tbody tr th {
    white-space: wrap;
  }
}
@media screen and (max-width: 992px) {
  .c-table.simpleBorder.no-line table tbody tr td {
    width: 100%;
    display: block;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
.c-table.simpleBorder.wide-padding thead tr th,
.c-table.simpleBorder.wide-padding thead tr td,
.c-table.simpleBorder.wide-padding tbody tr th,
.c-table.simpleBorder.wide-padding tbody tr td {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 30px;
  padding-left: 30px;
}
.c-table.simpleBorder.narrow-padding thead tr th,
.c-table.simpleBorder.narrow-padding thead tr td,
.c-table.simpleBorder.narrow-padding tbody tr th,
.c-table.simpleBorder.narrow-padding tbody tr td {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
}
.c-table.simpleBorder.narrow-padding-tb thead tr th,
.c-table.simpleBorder.narrow-padding-tb thead tr td,
.c-table.simpleBorder.narrow-padding-tb tbody tr th,
.c-table.simpleBorder.narrow-padding-tb tbody tr td {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px;
  padding-left: 20px;
}
.c-table.simpleBorder.narrow-padding-rl thead tr th,
.c-table.simpleBorder.narrow-padding-rl thead tr td,
.c-table.simpleBorder.narrow-padding-rl tbody tr th,
.c-table.simpleBorder.narrow-padding-rl tbody tr td {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  padding-right: 10px !important;
  padding-left: 10px !important;
}
.c-table.simpleBorder.item-txt-small thead tr th {
  font-size: 1.4rem;
}
.c-table.simpleBorder.item-txt-small tbody tr th,
.c-table.simpleBorder.item-txt-small tbody tr td {
  font-size: 1.4rem;
}
.c-table.Underborder table {
  border-collapse: collapse;
}
.c-table.Underborder table thead th {
  border-bottom: 1px solid #707070;
  padding: 10px;
  text-align: left;
  font-weight: normal;
  font-size: 1.8rem;
}
.c-table.Underborder table tbody th,
.c-table.Underborder table tbody td {
  border-bottom: 1px solid #707070;
  padding: 10px;
}
.c-table.Underborder table tbody th {
  text-align: left;
  font-weight: normal;
}
.c-table.Underborder table tbody td {
  text-align: right;
  font-weight: normal;
}
.c-table.diagonal-line thead tr:first-child th:first-child {
  background-image: linear-gradient(to right top, transparent calc(50% - 0.5px), #000000 50%, #000000 calc(50% + 0.5px), transparent calc(50% + 1px));
  display: grid;
  width: 100%;
  justify-content: space-between;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 40px;
}
@media screen and (max-width: 992px) {
  .c-table.diagonal-line thead tr:first-child th:first-child {
    grid-auto-rows: 65px;
  }
}
.c-table.diagonal-line.line-2 thead tr:first-child th:first-child {
  grid-auto-rows: 60px;
}
@media screen and (max-width: 992px) {
  .c-table.diagonal-line.line-2 thead tr:first-child th:first-child {
    grid-auto-rows: 90px;
  }
}
.c-table.diagonal-line .col-header {
  grid-column-start: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-table.diagonal-line .row-header {
  grid-column-start: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-table.VerBox table {
  border-collapse: collapse;
}
.c-table.VerBox table tbody th,
.c-table.VerBox table tbody td {
  background-color: #e5e5e5;
}
.c-table.VerBox table tbody th {
  text-align: left;
  font-weight: normal;
}
.c-table.VerColor table thead th {
  background-color: #e2e2e2;
}
.c-table.VerColor table tbody tr:nth-child(odd) th,
.c-table.VerColor table tbody tr:nth-child(odd) td {
  background-color: #eeeeee;
}
.c-table.VerColor table tbody tr:nth-child(even) th,
.c-table.VerColor table tbody tr:nth-child(even) td {
  background-color: #ffffff;
}
.c-table.VerColor--ver01 table {
  border-collapse: collapse;
}
.c-table.VerColor--ver01 table tr {
  border: 1px solid #e2e2e2;
}
.c-table.VerColor--ver01 table thead th {
  background-color: #9ca2ad;
  color: #fff;
}
.c-table.VerColor--ver01 table th,
.c-table.VerColor--ver01 table td {
  border: 1px solid #e2e2e2;
}
.c-table.VerColor--ver02 table {
  border-collapse: collapse;
}
.c-table.VerColor--ver02 table tr {
  border: 1px solid #e2e2e2;
}
.c-table.VerColor--ver02 table thead th {
  background-color: #9ca2ad;
  color: #fff;
}
.c-table.VerColor--ver02 table th,
.c-table.VerColor--ver02 table td {
  border: 1px solid #e2e2e2;
}
.c-table.VerColor--ver02 table > tbody tr:nth-child(odd) th,
.c-table.VerColor--ver02 table > tbody tr:nth-child(odd) td {
  background-color: #fff;
}
.c-table.VerColor--ver02 table > tbody tr:nth-child(even) th,
.c-table.VerColor--ver02 table > tbody tr:nth-child(even) td {
  background-color: #f2f4f8;
}
.c-table.VerColor--ver03 table {
  border-collapse: collapse;
}
.c-table.VerColor--ver03 table thead th {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 18px;
  text-align: left;
  padding-left: 0;
}
.c-table.VerColor--ver03 table tbody tr th {
  text-align: left;
  font-weight: normal;
  border-top: 1px solid #e2e2e2;
}
.c-table.VerColor--ver03 table tbody tr td {
  border-top: 1px solid #e2e2e2;
}
.c-table.VerColor--ver03 table tbody tr:last-child {
  border-bottom: 1px solid #e2e2e2;
}
.c-table.VerColor--ver03 table tbody tr:nth-child(odd) th,
.c-table.VerColor--ver03 table tbody tr:nth-child(odd) td {
  background-color: #fff;
}
.c-table.VerColor--ver03 table tbody tr:nth-child(even) th,
.c-table.VerColor--ver03 table tbody tr:nth-child(even) td {
  background-color: #f2f4f8;
}
.c-table.text-center {
  text-align: center;
}
.c-table.text-center thead tr th {
  text-align: center;
}
.c-table table tr .border-bottom-none {
  border-bottom: none !important;
  padding-bottom: 0;
}
.c-table.head-padding-narrow thead th {
  padding-right: 5px;
  padding-left: 5px;
}
.c-table.body-padding-narrow tbody th,
.c-table.body-padding-narrow tbody td {
  padding-right: 5px !important;
  padding-left: 5px !important;
}
.c-table.narrow-padding-02 thead tr th,
.c-table.narrow-padding-02 thead tr td,
.c-table.narrow-padding-02 tbody tr th,
.c-table.narrow-padding-02 tbody tr td {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-right: 10px !important;
  padding-left: 10px !important;
}
.c-table.narrow-padding-03 thead tr th,
.c-table.narrow-padding-03 thead tr td,
.c-table.narrow-padding-03 tbody tr th,
.c-table.narrow-padding-03 tbody tr td {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  padding-right: 5px !important;
  padding-left: 5px !important;
}
.c-table table thead tr th.head-title {
  background-color: #dbdbdb !important;
  border: none;
}
.c-table table thead tr th.head-title-b {
  background-color: #f2f4f8 !important;
  color: #000000 !important;
  border: none;
}
.c-table .bac-color-01,
.c-table .bac-color-01 th,
.c-table .bac-color-01 td {
  background-color: #f2f4f8 !important;
}
.c-table .bac-color-02,
.c-table .bac-color-02 th,
.c-table .bac-color-02 td {
  background-color: #ffffff !important;
}
.c-table .bac-color-03,
.c-table .bac-color-03 th,
.c-table .bac-color-03 td {
  background-color: #9ca2ad !important;
}
.c-table .bac-color-04,
.c-table .bac-color-04 th,
.c-table .bac-color-04 td {
  background-color: #083388 !important;
}
.c-table.overflow-x {
  overflow-x: scroll;
}
.c-table.overflow-x table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
}
.c-table.sp-column {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-table.sp-column th,
  .c-table.sp-column td {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .c-table.sample-image img {
    width: 80%;
    display: block;
    margin-inline: auto;
  }
}

.thead-sticky table {
  border-collapse: separate;
  border-spacing: 0;
}
.thead-sticky thead tr {
  background-color: #fff;
}
.thead-sticky thead tr th {
  padding: 0 !important;
  height: 100px;
}
.thead-sticky thead tr:nth-child(1) th, .thead-sticky thead tr:nth-child(2) th {
  position: sticky;
}
.thead-sticky thead tr:nth-child(1) th {
  top: 70px;
}
@media screen and (max-width: 768px) {
  .thead-sticky thead tr:nth-child(1) th {
    top: 0;
  }
}
.thead-sticky thead tr:nth-child(2) th {
  top: 170px;
}
@media screen and (max-width: 768px) {
  .thead-sticky thead tr:nth-child(2) th {
    top: 100px;
  }
}
.thead-sticky thead tr th:nth-child(1),
.thead-sticky thead tr th:nth-child(2) {
  z-index: 1;
}

.c-table-scrollArea__table {
  position: relative;
}
.c-table-scrollArea__table .bg-gray {
  background-color: #eeeeee;
}
.c-table-scrollArea__table .sticky {
  position: sticky;
  left: -1px;
  z-index: 1;
}
.c-table-scrollArea__table .sticky-style:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #707070;
  z-index: -1;
}
.c-table-scrollArea__table .scrollBtn {
  width: 40px;
  height: 80px;
  background-color: #cbcbcb;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  position: absolute;
  top: 20%;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.c-table-scrollArea__table .scrollBtn.scrollBtn-right {
  right: 5%;
  visibility: visible;
}
.c-table-scrollArea__table .scrollBtn.scrollBtn-right span {
  border-bottom: 15px solid transparent;
  border-top: 15px solid transparent;
  border-left: 15px solid #626262;
}
.c-table-scrollArea__table .scrollBtn.scrollBtn-left {
  left: 250px;
  visibility: hidden;
}
.c-table-scrollArea__table .scrollBtn.scrollBtn-left span {
  border-bottom: 15px solid transparent;
  border-top: 15px solid transparent;
  border-right: 15px solid #626262;
}
.c-table-scrollArea__table .scrollBtn.scrollBtn-fixed {
  position: fixed;
  top: 30%;
  right: 15%;
}
.c-table-scrollArea__table .scrollBtn.scrollBtn-fixed.scrollBtn-left {
  left: 550px;
}

@media screen and (max-width: 576px) {
  .c-table.scroll-sticky {
    max-height: 500px;
    overflow: auto;
    position: relative;
    overscroll-behavior: none;
    overscroll-behavior-y: none;
  }
  .c-table.scroll-sticky table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }
  .c-table.scroll-sticky th,
  .c-table.scroll-sticky td {
    border-style: solid !important;
    border-width: 0 1px 1px 0 !important;
  }
  .c-table.scroll-sticky tr:first-child th {
    border-top-width: 1px !important;
  }
  .c-table.scroll-sticky th:first-child,
  .c-table.scroll-sticky td:first-child {
    border-left-width: 1px !important;
  }
  .c-table.scroll-sticky thead {
    position: sticky;
    top: 0;
    z-index: 5;
  }
  .c-table.scroll-sticky tbody {
    position: relative;
    z-index: 1;
  }
}

/*
---
name: text
category:
  - object
  - object/component/text
---

text

*/
.c-text-category {
  padding: 5px;
  text-align: center;
  background-color: #FFFFFF;
  display: inline-block;
  font-size: 1.2rem;
  min-width: 105px;
}
.c-text-category.lightgreen {
  background-color: #00ff66;
}
.c-text-category.pink {
  background-color: #ff0099;
}
.c-text-category.orange {
  background-color: #F19116;
  color: #fff;
}
.c-text-category.gray {
  background-color: #E2E2E2;
}
.c-text-category.round-gray {
  background-color: #707070;
  color: #fff;
  border-radius: 50px;
  min-width: 125px;
}
.c-text-category.products-category {
  background-color: #1F9970;
  color: #fff;
}
.c-text-category.use-category {
  background-color: #00699C;
  color: #fff;
}

.c-text-indent {
  text-indent: -2em;
  padding-left: 2em;
}

/*
---
name: title
category:
  - object
  - object/component/title
---

各種タイトル

*/
.c-title-simple {
  font-weight: normal !important;
  font-size: 1.8rem;
}
.c-title-simple__02 {
  font-weight: 500 !important;
  font-size: 1.8rem;
}
.c-title-simple__03 {
  font-size: 2rem;
}
.c-title-simple__04 {
  font-weight: 500 !important;
}

.c-title-simpleLarge {
  font-weight: normal !important;
  font-size: 2.2rem;
}
.c-title-simpleLarge__02 {
  font-weight: normal !important;
  font-size: 3.2rem;
}

.c-title-simpleBorder {
  font-weight: normal !important;
  font-size: 2.2rem;
  border-bottom: 1px solid #707070;
  padding-bottom: 20px;
}
.c-title-simpleBorder__02 {
  font-size: 1.8rem;
  border-bottom: 1px solid #7a7f88;
  padding-bottom: 10px;
  padding-left: 15px;
}
.c-title-simpleBorder__03 {
  font-weight: bold;
  font-size: 2.2rem;
  border-bottom: 1px solid #707070;
  padding-bottom: 20px;
}

.c-title-page {
  padding: 0 2.5em;
  display: flex;
  justify-content: center;
  text-align: center;
}

.c-title-center {
  font-size: 2.2rem;
  text-align: center;
  font-weight: normal !important;
}

.c-title-head01 {
  font-size: 2.8rem;
  color: #1c1f21;
  font-weight: 500;
}
.c-title-head01__ver1 {
  font-size: 2.8rem;
  color: #1c1f21;
  font-weight: normal;
}
.c-title-head01__border {
  font-size: 2.8rem;
  color: #1c1f21;
  font-weight: bold;
  border-bottom: 3px solid #a3a3a3;
  padding-bottom: 20px;
}

.c-title-head02__article {
  font-size: 3.2rem;
  color: #1c1f21;
  font-weight: normal;
}
.c-title-head02__article02 {
  font-size: 2.2rem;
  font-weight: normal;
}
.c-title-head02__articleMdi {
  font-size: 3.2rem;
  color: #000000;
  font-weight: 500;
}
.c-title-head02__articleBold {
  font-size: 3.2rem;
  color: #000000;
  font-weight: bold;
}
.c-title-head02__articleBold02 {
  font-size: 4rem;
  color: #000000;
  font-weight: bold;
}
.c-title-head02__box {
  color: #1c1f21;
  background-color: #e6e6e6;
  border: 1px solid #707070;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
}

.c-title-head03__article {
  font-size: 2.2rem;
  font-weight: normal;
}
.c-title-head03__box {
  color: #1c1f21;
  background-color: #e6e6e6;
  border: 1px solid #707070;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 2.2rem;
  font-weight: 500;
}

.c-title-head04__article {
  font-size: 2.2rem;
  font-weight: normal;
}

.c-title-bold {
  font-weight: bold;
  font-size: 1.6rem;
}

.c-title-boldLarge {
  font-weight: bold;
  font-size: 2.8rem;
}
.c-title-boldLarge__02 {
  font-weight: bold;
  font-size: 2.4rem;
}
.c-title-boldLarge__03 {
  font-weight: bold;
  font-size: 1.8rem;
}
.c-title-boldLarge__04 {
  font-weight: bold;
  font-size: 1.8rem;
  color: #083388;
}
.c-title-boldLarge__05 {
  font-weight: bold;
  font-size: 3rem;
}
.c-title-boldLarge__06 {
  font-weight: bold;
  font-size: 2rem;
}

.c-title-mediumLarge {
  font-weight: 500;
  font-size: 2.8rem;
}
.c-title-mediumLarge__02 {
  font-weight: 500;
  font-size: 3.2rem;
}

.c-title-dotmark {
  text-indent: -1em;
  padding-left: 1em;
}
.c-title-dotmark:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #000000;
  border-radius: 50%;
  position: relative;
  top: -1px;
  margin-right: 5px;
}

.c-title-normal {
  font-size: 1.6rem;
  font-weight: normal !important;
}

.c-title-border {
  margin-top: 100px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .c-title-border {
    margin-top: 50px;
  }
}
.c-title-border h1,
.c-title-border h2,
.c-title-border h3 {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 992px) {
  .c-title-border h1,
  .c-title-border h2,
  .c-title-border h3 {
    flex-direction: column;
  }
}
.c-title-border--main {
  color: #000000;
  font-weight: bold;
  font-size: 4rem;
}
@media screen and (max-width: 992px) {
  .c-title-border--main {
    font-size: 3rem;
  }
}
.c-title-border--sub {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2c4ba6;
  overflow: hidden;
  flex: 1;
  align-self: end;
  padding-bottom: 7px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .c-title-border--sub {
    align-self: center;
    margin-top: 15px;
    width: 100%;
  }
}
.c-title-border--sub::before, .c-title-border--sub::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
}
.c-title-border--sub::before {
  border-bottom: 4px solid #083388;
}
.c-title-border--sub::after {
  border-bottom: 4px solid #e2e2e2;
}
.c-title-border--logo {
  position: absolute;
  right: 0;
  bottom: 10px;
}
@media screen and (max-width: 992px) {
  .c-title-border--logo {
    margin-bottom: 10px;
  }
}

.c-title-border-center {
  margin-top: 100px;
  margin-bottom: 50px;
  white-space: nowrap;
  display: flex;
  justify-content: center;
}
.c-title-border-center:before, .c-title-border-center:after {
  background-color: #e2e2e2;
  content: "";
  width: 100%;
  height: 2px;
  position: relative;
  top: 15px;
}
.c-title-border-center:before {
  margin-right: 30px;
}
.c-title-border-center:after {
  margin-left: 30px;
}
.c-title-border-center span {
  text-align: center;
}
.c-title-border-center--main {
  font-size: 4rem;
  font-weight: bold;
}
.c-title-border-center--sub {
  font-size: 2rem;
  font-weight: bold;
}

.c-title-bottomDot {
  font-size: 2rem;
  font-weight: bold;
  background-image: repeating-linear-gradient(90deg, #355bc8, #355bc8 2px, transparent 2px, transparent 4px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  padding-bottom: 15px;
}
.c-title-bottomDot.ver-02 {
  font-size: 2.2rem;
}

.c-title-row {
  display: flex;
}
.c-title-row .main-txt {
  font-size: 2.8rem;
  font-weight: 500;
}
.c-title-row .sub-txt {
  color: #355bc8;
  margin-left: 10px;
  font-weight: normal;
  font-size: 1.6rem;
}

.c-title-bac {
  background-color: #000000;
  border-radius: 5px;
  color: #fff;
  padding-right: 25px;
  padding-left: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 114px;
}
.c-title-bac__blue {
  background-color: #083388;
  color: #fff;
  padding: 10px;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.c-title-bac__blue02 {
  background-color: #2c4ba6;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 30px;
  padding-left: 30px;
}
.c-title-bac__simple {
  background-color: #dbdbdb;
  display: inline-block;
  padding: 5px;
}

.c-title-numberBorder {
  border-bottom: 1px solid #707070;
  padding-bottom: 10px;
  font-size: 2.2rem;
  font-weight: normal;
  text-indent: -1.2em;
  padding-left: 1.2em;
  height: 80px;
}
.c-title-numberBorder .number-txt {
  margin-right: 10px;
}

@media screen and (min-width: 992px) {
  .c-title-pointnumber {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.c-title-pointnumber__head {
  background-color: #000000;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  width: 180px;
  height: 60px;
}
.c-title-pointnumber__i {
  background-color: #fff;
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.c-title-pointnumber__text {
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .c-title-pointnumber__text {
    margin-top: 10px;
  }
}

.c-title-headBar {
  font-weight: bold;
  font-size: 2.8rem;
  padding-left: 10px;
  border-left: 5px solid #083388;
}

.c-title-underLine {
  color: #083388;
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}
.c-title-underLine:before {
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #083388;
}

/*
Project
----------------------------- */
/*
---
name: index
category:
  - object
  - object/project/index
---
*/
/*
---
name: admin
category:
  - object
  - object/project/admin
---

会員管理サイト

*/
/* ▼ハンバーガーメニュー▼ */
.p-admin-pageMenu {
  background-color: #355BC8;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-admin-pageMenu {
    margin-top: 40px;
  }
}
.p-admin-pageMenu__inner {
  display: flex;
  padding: 20px 30px;
  align-items: center;
  cursor: pointer;
}
.p-admin-pageMenu__title {
  margin-right: 20px;
  color: #fff;
}
.p-admin-pageMenu__hamburgerBox {
  position: relative;
  display: flex;
}
.p-admin-pageMenu__hamburgerBox--button {
  position: relative;
  width: 25px;
  height: 25px;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #355BC8;
}
.p-admin-pageMenu__hamburgerBox--button .bar, .p-admin-pageMenu__hamburgerBox--button .bar:before, .p-admin-pageMenu__hamburgerBox--button .bar:after {
  position: absolute;
  height: 2px;
  width: 25px;
  background-color: #fff;
  display: block;
  content: "";
  cursor: pointer;
  transition: all 0.3s;
}
.p-admin-pageMenu__hamburgerBox--button .bar:before {
  top: -5px;
  width: 25px;
}
.p-admin-pageMenu__hamburgerBox--button .bar:after {
  bottom: -5px;
  width: 25px;
}
.p-admin-pageMenu .is-open .bar {
  background-color: transparent;
}
.p-admin-pageMenu .is-open .bar:before {
  transform: rotate(-45deg);
  top: 50%;
}
.p-admin-pageMenu .is-open .bar:after {
  transform: rotate(45deg);
  top: 50%;
}
.p-admin-pageMenu__drawer {
  display: none;
  box-shadow: 0 3px 10px rgba(122, 127, 136, 0.2);
  border: 1px solid #E2E2E2;
  position: absolute;
  left: 0;
  width: 310px;
  background-color: #fff;
  padding: 40px;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .p-admin-pageMenu__drawer {
    width: 100%;
  }
}
.p-admin-pageMenu__drawer--item {
  font-weight: bold;
  position: relative;
  padding-left: 1rem;
}
.p-admin-pageMenu__drawer--item > a {
  display: block;
  padding-left: 3rem;
}
.p-admin-pageMenu__drawer--item:before {
  position: absolute;
  font-family: "Material Icons";
  content: "chevron_right";
  font-size: 16px;
  color: #fff;
  background-color: #355BC8;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.p-admin-pageMenu__drawer--item:not(:last-child) {
  margin-bottom: 15px;
}
.p-admin-pageMenu__drawer.is-open {
  display: block;
}

/* ▲ハンバーガーメニュー▲ */
.p-admin-pageTitle {
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 30px;
}

.p-admin-memberTable {
  margin-bottom: 40px;
}
.p-admin-memberTable tr:nth-child(even) {
  background-color: #F2F4F8;
}
.p-admin-memberTable tr.is-waiting {
  font-weight: bold;
}
.p-admin-memberTable__imageBox {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.p-admin-memberTable--center {
  text-align: center;
}

.p-admin-memberTable.c-table.simpleBorder th, .p-admin-memberTable.c-table.simpleBorder td {
  border: 1px solid #E2E2E2;
}

.p-admin-memberTable.c-table.simpleBorder th {
  color: #fff;
  font-weight: bold;
  background-color: #9CA2AD;
}

.p-admin-search {
  margin-bottom: 20px;
}
.p-admin-search__inner {
  text-align: right;
}
@media screen and (max-width: 992px) {
  .p-admin-search__inner {
    text-align: left;
  }
}
.p-admin-search label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0 10px 0 30px;
}
.p-admin-search label:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: -2px;
  left: 0;
  background-color: #fff;
  border: 1px solid #E2E2E2;
  border-radius: 50%;
}
.p-admin-search input[type=radio] {
  display: none;
}
.p-admin-search input[type=radio]:checked + label:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 2px;
  left: 4px;
  background-color: #355BC8;
  border-radius: 50%;
}
.p-admin-search .border-r {
  border-right: 1px solid #E2E2E2;
  margin-right: 10px;
}

.p-admin-detail__table table {
  max-width: 100%;
  margin-left: 0;
}
.p-admin-detail__table--status table {
  width: 100%;
  margin-left: 0;
}
.p-admin-detail__table--status .c-form-group .other {
  display: inline-block;
}
.p-admin-detail__table--status input[type=text] {
  max-width: 200px;
}
.p-admin-detail__table--manager input[type=text] {
  max-width: 400px;
}
.p-admin-detail__printArea {
  text-align: right;
  padding-top: 20px;
}
.p-admin-detail__print {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: #355BC8;
}
.p-admin-detail__print .material-symbols-outlined {
  font-size: 36px;
}
.p-admin-detail__btn {
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .p-admin-detail__btn {
    flex-direction: column;
  }
}

/*
---
name: aside
category:
  - object
  - object/project/aside
---

aside

*/
@media screen and (max-width: 992px) {
  .p-aside {
    display: none;
  }
}
.p-aside__inner {
  position: fixed;
  right: 0;
  top: 100%;
  width: 100%;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.p-aside__btn {
  position: relative;
  z-index: 3;
}
.p-aside__btn--inner {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-bottom: 15px;
}
.p-aside__btn--inner li a {
  width: 106px;
  height: 100px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: 0.5s;
  color: #fff;
  font-size: 1.5rem;
}
@media screen and (max-width: 1420px) {
  .p-aside__btn--inner li a {
    width: 86px;
    height: 80px;
    font-size: 1.2rem;
  }
}
.p-aside__btn--inner li a.contact {
  background-color: #083388;
}
.p-aside__btn--inner li a.contact::after {
  font-family: "Material Symbols Outlined";
  content: "mail";
  color: #fff;
  font-size: 1.8rem;
  display: block;
}
.p-aside__btn--inner li a.products-search {
  background-color: #355bc8;
}
.p-aside__btn--inner li a.products-search::after {
  font-family: "Material Symbols Outlined";
  content: "search";
  color: #fff;
  font-size: 1.8rem;
  display: block;
}
.p-aside__btn--inner li a.documents {
  background-color: #083388;
}
.p-aside__btn--inner li a.documents::after {
  font-family: "Material Symbols Outlined";
  content: "stacks";
  color: #fff;
  font-size: 1.8rem;
  display: block;
}

#aside.visible .p-aside__inner {
  opacity: 1;
  pointer-events: auto;
}

/*
---
name: catalog
category:
  - object
  - object/project/catalog
---

WEBカタログ

*/
.p-catalog-title {
  font-size: 2.2rem;
  font-weight: normal;
}

.p-catalog-menuBox__inner {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .p-catalog-menuBox__inner {
    flex-direction: column;
  }
}
.p-catalog-menuBox__search {
  cursor: pointer;
  background-color: #355BC8;
  color: #fff;
  font-weight: bold;
  padding: 20px 90px 20px 30px;
  position: relative;
}
.p-catalog-menuBox__search:after {
  position: absolute;
  content: "＋";
  right: 20px;
}
.p-catalog-menuBox__search.is-open:after {
  content: "－";
}
.p-catalog-menuBox__search-detail {
  display: none;
  position: absolute;
  box-shadow: 0 3px 10px rgba(122, 127, 136, 0.16);
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #083388;
}
.p-catalog-menuBox__search-detail.is-open {
  display: block;
  z-index: 200;
}
.p-catalog-menuBox__search-detail .c-tab-content {
  padding: 40px;
}
.p-catalog-menuBox__search-detail .c-tab-content .c-column-4 {
  grid-row-gap: 30px;
}
@media screen and (max-width: 992px) {
  .p-catalog-menuBox__search-detail .c-tab-content .c-column-4 {
    display: grid;
  }
}
.p-catalog-menuBox__search-detail .c-tab-label {
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.6rem;
  color: #7a7f88;
  font-weight: bold;
  border: none;
  border-bottom: 1px solid #7a7f88;
}
.p-catalog-menuBox__search-detail .c-tab-switch:checked + .c-tab-label {
  background-color: #fff;
  color: #000000;
  border-bottom: 3px solid #355BC8;
}
.p-catalog-menuBox__search-detail .search-detail-button {
  margin-top: 40px;
  padding-top: 30px;
  text-align: center;
}
.p-catalog-menuBox__search-detail .search-detail-button__inner {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.p-catalog-menuBox__search-detail .search-detail-button button {
  max-width: 200px;
  line-height: 1.5;
}
.p-catalog-menuBox__search-detail .search-detail-button .js-reset-btn {
  border: 1px solid #707070;
  display: inline-block;
  line-height: 1.5;
}
.p-catalog-menuBox__search-detail .search-detail-close {
  margin-top: 5px;
  text-align: right;
}
.p-catalog-menuBox__search-detail .search-detail-close button {
  color: #083388;
  text-decoration: underline;
}
.p-catalog-menuBox__right {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .p-catalog-menuBox__right {
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 1.2rem;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 5px;
    margin-top: 5px;
  }
}
.p-catalog-menuBox__right .selectBox {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .p-catalog-menuBox__right .selectBox {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-catalog-menuBox__right .selectBox {
    gap: 5px;
  }
}
@media screen and (max-width: 992px) {
  .p-catalog-menuBox__right .selectBox:nth-child(1) {
    order: 2;
  }
  .p-catalog-menuBox__right .selectBox:nth-child(2) {
    order: 3;
  }
}
.p-catalog-menuBox__right .selectBox select {
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  .p-catalog-menuBox__right .selectBox select {
    padding: 15px 45px 15px 10px;
  }
}
.p-catalog-menuBox__cart a {
  font-size: 4.5rem;
  color: #7a7f88;
  font-weight: 200;
  font-variation-settings: "wght" 200;
}
@media screen and (max-width: 992px) {
  .p-catalog-menuBox__cart {
    order: 1;
    text-align: left;
  }
  .p-catalog-menuBox__cart .material-symbols-outlined {
    font-size: 3.5rem;
  }
}

.p-catalog-display {
  margin-top: 30px;
}
@media screen and (max-width: 992px) {
  .p-catalog-display__inner {
    display: block;
  }
}
.p-catalog-display__item-inner {
  padding: 30px;
  border: 1px solid #e2e2e2;
}
@media screen and (max-width: 768px) {
  .p-catalog-display__item-inner {
    padding: 15px;
  }
}
.p-catalog-display__item-image img {
  width: 100%;
}
.p-catalog-display__item-categoryBox {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1400px) {
  .p-catalog-display__item-categoryBox {
    align-items: center;
    justify-content: center;
    row-gap: 5px;
  }
}
@media screen and (max-width: 768px) {
  .p-catalog-display__item-categoryBox {
    margin-top: 0;
    width: 100%;
    row-gap: 0;
    flex-direction: column;
  }
}
.p-catalog-display__item-categoryBox .category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-catalog-display__item-categoryBox .category .c-text-category {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1400px) {
  .p-catalog-display__item-categoryBox .category {
    justify-content: flex-start;
    width: 100%;
  }
  .p-catalog-display__item-categoryBox .category .c-text-category {
    min-width: inherit;
    flex-basis: 40%;
  }
}
@media screen and (max-width: 992px) {
  .p-catalog-display__item-categoryBox .category .c-text-category {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-catalog-display__item-categoryBox .category {
    gap: 10px;
  }
  .p-catalog-display__item-categoryBox .category .c-text-category {
    min-width: 105px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 693px) {
  .p-catalog-display__item-categoryBox .category {
    justify-content: center;
    gap: 0;
    flex-direction: column;
  }
}
.p-catalog-display__item-categoryBox .favorite {
  color: #7a7f88;
}
@media screen and (max-width: 768px) {
  .p-catalog-display__item-categoryBox .favorite {
    margin-left: auto;
  }
}
.p-catalog-display__item-categoryBox .favorite a {
  display: block;
}
.p-catalog-display__item-categoryBox .favorite span {
  font-size: 2.6rem;
}
.p-catalog-display__item-categoryBox .favorite.is-active {
  color: #e61616;
}
.p-catalog-display__item-categoryBox .favorite.no-active {
  opacity: 0;
}
.p-catalog-display__item-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-catalog-display__item-name {
    min-height: 50px;
  }
}
.p-catalog-display__item-link {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 20px;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-catalog-display__item-link {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
.p-catalog-display__item-link .item01 {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media screen and (max-width: 992px) {
  .p-catalog-display__item-link .item01 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.p-catalog-display__item-link .item01 .icon {
  display: block;
  color: #7a7f88;
  text-align: center;
  font-size: 3.6rem;
  font-weight: 300;
  font-variation-settings: "wght" 300;
}
.p-catalog-display__item-link .item02 {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (max-width: 992px) {
  .p-catalog-display__item-link .item02 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.p-catalog-display__item-link .item03 {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 992px) {
  .p-catalog-display__item-link .item03 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.p-catalog-display__item-link .item04 {
  font-size: 1.6rem;
  position: relative;
  grid-column: 1/3;
  grid-row: 3/4;
}
@media screen and (max-width: 992px) {
  .p-catalog-display__item-link .item04 {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
.p-catalog-display__item-link .item04:after {
  font-family: "Material Icons";
  content: "add_shopping_cart";
  font-size: 2.6rem;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  color: #7a7f88;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .p-catalog-display__item-link .item04:after {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1200px) {
  .p-catalog-display__item-link .item04 .apply .c-link-colorBox {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .p-catalog-display__item-link .item04 .cart .c-link-colorBox {
    padding-top: 40px;
  }
}
.p-catalog-display .c-link-colorBox {
  padding: 10px;
}

/*
---
name: company
category:
  - object
  - object/project/company
---

会社情報

*/
.p-company__mainarea {
  background-image: url(../../shared/images/company/img_company_main.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-company__mainarea {
    height: 200px;
  }
}
.p-company__mainarea--txt {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
}
.p-company__lineup .item img {
  width: 100%;
}
.p-company__bnr {
  background-image: url(../../shared/images/company/bnr_products.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 150px;
  position: relative;
}
.p-company__bnr--txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
}
.p-company__guide {
  display: flex;
  gap: 0 90px;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-company__guide {
    flex-direction: column;
    gap: 20px 0;
    margin-top: 40px;
  }
}
.p-company__guide--btn {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .p-company__guide--btn {
    width: 380px;
  }
}

.p-company-profile .c-table.simpleBorder.wide-padding tbody tr th,
.p-company-profile .c-table.simpleBorder.wide-padding tbody tr td {
  padding: 15px 20px;
}
@media screen and (min-width: 992px) {
  .p-company-profile__location {
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 20px;
    align-items: center;
  }
}
@media screen and (max-width: 992px) {
  .p-company-profile__location .item:not(:first-child) {
    margin-top: 10px;
  }
}
@media screen and (min-width: 992px) {
  .p-company-profile__years {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 20px;
    align-items: center;
  }
}
@media screen and (max-width: 992px) {
  .p-company-profile__years .item:not(:first-child) {
    margin-top: 10px;
  }
}
.p-company-profile__modal .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.p-company-profile__modal .modal:target {
  display: flex;
}
.p-company-profile__modal .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: black;
  text-decoration: none;
  cursor: pointer;
  transform: translate(50%, -50%);
}
.p-company-profile__modal .modal-wrapper {
  position: relative;
  width: 80%;
  max-width: 800px;
  max-height: 70%;
  margin: auto;
  border-radius: 5px;
}

@media screen and (max-width: 992px) {
  .p-company-publicnotice__table.c-table {
    overflow-x: visible;
  }
  .p-company-publicnotice__table table {
    width: 100%;
  }
  .p-company-publicnotice__table.c-table table tbody th, .p-company-publicnotice__table.c-table table tbody td {
    padding: 15px;
  }
}

.p-company-history__timeline dl {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.p-company-history__timeline dl:nth-child(even) {
  background-color: #f2f4f8;
}
.p-company-history__timeline dl dt {
  width: 160px;
  padding-left: 20px;
  padding-top: 24px;
  padding-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .p-company-history__timeline dl dt {
    padding-left: 32px;
    padding-top: 32px;
    padding-bottom: 5px;
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .p-company-history__timeline {
    width: 100%;
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 0;
  }
}
.p-company-history dl dd {
  position: relative;
  padding-left: 60px;
  padding-top: 30px;
  padding-bottom: 30px;
  flex: 1;
}
@media screen and (max-width: 992px) {
  .p-company-history dl dd {
    padding-left: 30px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 20px;
    flex: inherit;
  }
}
.p-company-history dl dd:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 34px;
  width: 20px;
  height: 20px;
  color: #3d5cb8;
  border: 0.3rem solid;
  border-radius: 50%;
  z-index: 2;
  background-color: #fff;
}
@media screen and (max-width: 992px) {
  .p-company-history dl dd:before {
    top: -32px;
    left: 5px;
  }
}
.p-company-history dl dd:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  bottom: -15px;
  background-color: #e2e2e2;
  width: 2px;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .p-company-history dl dd:after {
    top: -25px;
    left: 14px;
    height: 220%;
  }
}
.p-company-history dl:last-child dd::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  bottom: -15px;
  background-color: #e2e2e2;
  width: 2px;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .p-company-history dl:last-child dd::after {
    top: -25px;
    left: 14px;
    height: 150%;
  }
}
.p-company-history .year-area {
  color: #3d5cb8;
  font-weight: bold;
  font-size: 2.4rem;
}
.p-company-history .month-area {
  color: #7a7f88;
  font-weight: bold;
}
.p-company-history .detail-area {
  color: #242933;
}

.p-company-branch__content .c-table.simpleBorder.ver-05 thead tr th,
.p-company-branch__content .c-table.simpleBorder.ver-05 thead tr td,
.p-company-branch__content .c-table.simpleBorder.ver-05 tbody tr th,
.p-company-branch__content .c-table.simpleBorder.ver-05 tbody tr td {
  padding: 15px 20px;
}

.p-company-about__detail02--icon {
  display: flex;
  align-items: center;
}
.p-company-about__detail02--reason .c-column-3__wide02 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: 1fr;
  grid-row-gap: 20px;
}
@media screen and (max-width: 992px) {
  .p-company-about__detail02--reason .c-column-3__wide02 {
    grid-row-gap: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .p-company-about__detail02--reason .c-column-3__wide02 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 20px;
  }
}

.p-products-submenu.company .p-products-submenu__list {
  font-weight: bold;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-products-submenu.company .p-products-submenu__list {
    padding: 15px 0;
  }
}

/*
---
name: contact
category:
  - object
  - object/project/contact
---

お問い合わせ

*/
.p-contact-top__item {
  margin-top: 50px;
  text-align: center;
  padding: 50px;
  border: 2px solid #e2e2e2;
  border-radius: 10px;
}
.p-contact-top__item .c-icon-mail:before {
  font-size: 4rem;
  font-weight: normal;
}
.p-contact-top__telArea {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-contact-top__telArea {
    text-align: left;
  }
}
.p-contact-top__telArea .c-icon-tel:before {
  width: 1.2em;
  height: 1.2em;
  margin-right: 10px;
}
.p-contact-top__telText {
  margin-top: 30px;
}
.p-contact-top__telBox {
  margin-top: 30px;
}
@media screen and (max-width: 992px) {
  .p-contact-top__telBox .c-column-3 .p-contact-top__telItem {
    margin-top: 10px;
  }
}
.p-contact-top__telItem {
  border: 2px solid #e2e2e2;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.p-contact-top__telItem .area {
  font-weight: bold;
}
.p-contact-top__telItem .telNumber {
  margin-top: 10px;
}
.p-contact-top__telItem .telNumber span {
  font-size: 2rem;
}
@media screen and (min-width: 992px) {
  .p-contact-top__telItem .telNumber a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.p-contact-top__telItem .faxNumber {
  margin-top: 10px;
}

.p-contact-form__form .contactCategory select {
  width: 100%;
}
.p-contact-form__form .productsBrand-box label {
  font-weight: normal;
}
.p-contact-form__form .productsBrand-box {
  display: none;
}
.p-contact-form__form .productsBrand-box.is-active {
  display: table-row; /* 表示状態 */
}

.p-contact-qa__tabs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .p-contact-qa__tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.p-contact-qa__tabs .tab {
  padding: 5px 20px;
  font-weight: bold;
  font-size: 1.6rem;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .p-contact-qa__tabs .tab {
    width: 100%;
  }
}
.p-contact-qa__tabs .tab:not(:first-child) {
  border-left: 1px solid #d9dce2;
}
@media screen and (max-width: 992px) {
  .p-contact-qa__tabs .tab:not(:first-child) {
    border-left: none;
  }
}
.p-contact-qa__tabs .tab.active {
  position: relative;
}
.p-contact-qa__tabs .tab.active:after {
  content: "";
  width: 80%;
  height: 2px;
  background-color: #355bc8;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 992px) {
  .p-contact-qa__tabs .tab.active:after {
    left: 46%;
  }
}
.p-contact-qa__content {
  border-bottom: 1px solid #e2e2e2;
  margin-top: 50px;
}
.p-contact-qa__content .tab-content {
  display: none;
}
.p-contact-qa__content .tab-content.is-active {
  display: block;
}
.p-contact-qa__content .faq-item {
  border-top: 1px solid #e2e2e2;
  padding: 20px;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
.p-contact-qa__content .faq-question {
  cursor: pointer;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .p-contact-qa__content .faq-question {
    flex-wrap: wrap;
  }
}
.p-contact-qa__content .faq-question:before {
  content: "Q";
  color: #fff;
  background-color: #3d5cb8;
  font-size: 1.8rem;
  font-weight: bold;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
}
.p-contact-qa__content .faq-question:after {
  font-family: "Material Symbols Outlined";
  content: "add";
  color: #242933;
  vertical-align: middle;
  font-size: 2.4rem;
  position: absolute;
  top: -4px;
  right: 0;
}
.p-contact-qa__content .faq-item.active .faq-question:after {
  font-family: "Material Symbols Outlined";
  content: "remove";
}
.p-contact-qa__content .faq-question__q {
  color: #3d5cb8;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  .p-contact-qa__content .faq-question__q {
    width: 100%;
  }
}
.p-contact-qa__content .faq-question__cate {
  font-size: 1.2rem;
  color: #355bc8;
  background-color: #e2e2e2;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 5px;
}
.p-contact-qa__content .faq-answer {
  display: none;
  position: relative;
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
.p-contact-qa__content .faq-answer:before {
  content: "A";
  color: #3d5cb8;
  background-color: #fff;
  border: 1px solid #3d5cb8;
  font-size: 1.8rem;
  font-weight: bold;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
}
.p-contact-qa__content .faq-item.active .faq-answer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.p-contact-qa__content .faq-answer__a {
  color: #242933;
  font-size: 1.8rem;
  font-weight: normal;
  width: 100%;
}
.p-contact-qa__content .faq-answer__img {
  display: block;
  margin-top: 20px;
}
.p-contact-qa__content .faq-answer img {
  cursor: pointer;
}
.p-contact-qa__btn {
  text-align: center;
  margin-top: 60px;
}

/*
---
name: footer
category:
  - object
  - object/project/footer
---

フッターの中身。

*/
.p-footer__container {
  padding-top: 40px;
  padding-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .p-footer__container {
    padding-top: 60px;
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 992px) {
  .p-footer__container {
    padding-top: 20px;
  }
}
.p-footer__menu--list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (min-width: 992px) {
  .p-footer__menu--list {
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
    flex-wrap: wrap;
  }
}
.p-footer__menu--list .footer-list-item a {
  font-size: 1.8rem;
  display: inline-block;
  width: 100%;
  border-left: 2px solid #d9dce2;
  border-right: 2px solid #d9dce2;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 992px) {
  .p-footer__menu--list .footer-list-item a {
    width: auto;
    text-align: left;
    border-left: none;
    border-right: none;
  }
  .p-footer__menu--list .footer-list-item:not(:first-child) a::before {
    content: "";
    width: 2px;
    background-color: #d9dce2;
    height: 34px;
    position: absolute;
    top: 0;
    left: -15px;
  }
}
@media screen and (max-width: 1200px) {
  .p-footer__menu--list .footer-list-item a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 992px) {
  .p-footer__menu--list .footer-list-item a {
    font-size: 1.6rem;
    border-left: none;
    border-right: none;
    position: relative;
    padding-top: 10px;
    padding-left: 20px;
    text-align: left;
  }
  .p-footer__menu--list .footer-list-item:not(:first-child) > a {
    border-top: 1px solid #d9dce2;
  }
  .p-footer__menu--list .footer-list-item:last-child > a {
    border-bottom: 1px solid #d9dce2;
    padding-bottom: 10px;
  }
  .p-footer__menu--list .footer-list-item a::after {
    font-family: "Material Icons";
    content: "chevron_right";
    display: inline-block;
    vertical-align: middle;
    color: #083388;
    font-size: 23px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}
.p-footer__linkarea {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #9ca2ad;
}
@media screen and (max-width: 992px) {
  .p-footer__linkarea {
    background-color: #083388;
    color: #fff;
  }
}
.p-footer__linkarea--list {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .p-footer__linkarea--list {
    display: flex;
    flex-wrap: wrap;
  }
  .p-footer__linkarea--list li:not(:first-child) {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .p-footer__linkarea--list li:not(:first-child) {
    margin-left: 15px;
  }
  .p-footer__linkarea--list li a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 992px) {
  .p-footer__linkarea--list {
    text-align: left;
    margin-left: 15px;
  }
  .p-footer__linkarea--list li:not(:first-child) {
    margin-top: 15px;
    margin-left: 0;
  }
  .p-footer__linkarea--list.c-link-arrow-list a::before {
    color: #fff;
  }
}
.p-footer__bottomarea {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #9ca2ad;
}
@media screen and (min-width: 992px) {
  .p-footer__bottomarea--inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 992px) {
  .p-footer__bottomarea--l .p-footer__logo img {
    margin: 0 auto;
  }
}
.p-footer__bottomarea--r .p-footer__signlogo {
  width: 263px;
}
@media screen and (max-width: 992px) {
  .p-footer__bottomarea--r .p-footer__signlogo {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-footer__bottomarea--r .p-footer__signlogo img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 992px) {
  .p-footer__bottomarea .CopyRight {
    margin-top: 10px;
    text-align: center;
  }
}

/*
---
name: header
category:
  - object
  - object/project/header
---

ヘッダーの中身。

*/
.p-header__logo.top-logo {
  display: none;
}

.top-page .p-header__logo.top-logo {
  display: block;
}
.top-page .p-header__logo.under-logo {
  display: none;
}

.p-header__head {
  margin: 0 44px;
  position: relative;
  padding: 23px 0 0;
  height: 133px;
  display: flex;
  justify-content: space-between;
  z-index: 999;
}
@media screen and (max-width: 992px) {
  .p-header__head {
    margin: 0 15px;
    padding-top: 10px;
    padding-bottom: 15px;
    justify-content: inherit;
    height: 65px;
  }
}
.p-header__logo {
  width: 230px;
  position: relative;
  z-index: 1;
  margin-top: 3px;
}
@media screen and (max-width: 992px) {
  .p-header__logo {
    width: 110px;
  }
}
.p-header__logo a {
  line-height: 1;
  display: block;
}
.p-header__navarea {
  display: flex;
  flex-direction: column;
}
.p-header__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .p-header__link {
    display: none;
  }
}
.p-header__link--list {
  display: flex;
  align-items: baseline;
}
.p-header__link--listitem.search {
  margin-left: 15px;
}
.p-header__link--listitem.contact {
  margin-left: 15px;
}
.p-header__link--listitem.company {
  margin-left: 15px;
}
.p-header__signlogo {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
  margin-left: 30px;
  margin-top: -3px;
  width: 208px;
}
.p-header__signlogo--sp {
  display: none;
}
@media screen and (max-width: 992px) {
  .p-header__signlogo--sp {
    display: block;
    margin-top: 5px;
    width: 110px;
  }
}
.p-header__login--sp {
  display: none;
}
@media screen and (max-width: 992px) {
  .p-header__login--sp {
    display: inline-block;
    animation: nav-slide-in-left 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
  @keyframes nav-slide-in-left {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .p-header__login--sp {
    position: relative;
    width: 100%;
  }
  .p-header__login--sp .c-link-login {
    position: absolute;
    top: 10px;
    right: 50px;
  }
  .p-header__login--sp .c-link-login a {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-header__login--sp {
    animation: nav-slide-in-right 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
  @keyframes nav-slide-in-right {
    from {
      opacity: 0;
      transform: translateX(24px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
@media screen and (max-width: 576px) {
  .p-header__login--sp .c-link-login {
    left: inherit;
    right: 50px;
    transition: all 0.5s;
    animation: nav-slide-in-right 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
  @keyframes nav-slide-in-right {
    from {
      opacity: 0;
      transform: translateX(24px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
@media screen and (max-width: 992px) {
  .p-header__gnav.pc-nav {
    display: none;
  }
}
.p-header__gnav.pc-nav .p-header__gnav--inner {
  display: block;
}
.p-header__gnav.pc-nav .p-header__gnav--inner .p-header__gnav--list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.p-header__gnav.pc-nav .p-header__gnav--inner .p-header__gnav--list .p-header__gnav--listitem a {
  position: relative;
  display: inline-block;
  padding: 0px 15px;
  margin: 20px 0;
  box-sizing: border-box;
  border-left: 2px solid #eee;
  font-weight: 500;
  color: #242933;
}
.p-header__gnav.pc-nav .p-header__gnav--inner .p-header__gnav--list .p-header__gnav--listitem a:hover,
.p-header__gnav.pc-nav .p-header__gnav--inner .p-header__gnav--list .p-header__gnav--listitem a.active {
  border-bottom: 2px solid #355bc8;
}
.p-header__gnav.pc-nav .p-header__gnav--inner .p-header__gnav--list .p-header__gnav--listitem:last-child a {
  border-right: 2px solid #d9dce2;
}
.p-header__gnav.pc-nav .p-header__gnav--sublist {
  position: absolute;
  background-color: #fff;
  border-bottom: 2px solid #355bc8;
  padding: 10px;
  z-index: 2;
  width: 100%;
  box-shadow: 0px 3px 6px 0px rgba(8, 51, 136, 0.2);
  top: 133px;
  left: 0;
}
.p-header__gnav.pc-nav .p-header__gnav--sublistInner {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
}
@media screen and (min-width: 992px) {
  .p-header__gnav .sp-nav {
    display: none;
  }
}
.p-header__gnav .sp-nav {
  width: 100%;
  height: 100svh;
  margin-top: 65px;
  z-index: 99999;
  padding-bottom: 80px;
}
.p-header__gnav .sp-nav .p-header__gnav--submenu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
}
.p-header__gnav .sp-nav .p-header__gnav--submenu.login-before {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
}
.p-header__gnav .sp-nav .p-header__gnav--submenu .submenu-item a {
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  display: inline-block;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 7px 0 5px 0;
}
@media screen and (max-width: 576px) {
  .p-header__gnav .sp-nav .p-header__gnav--submenu .submenu-item a {
    font-size: 1.6rem;
  }
}
.p-header__gnav .sp-nav .p-header__gnav--submenu .submenu-item.contact a {
  background-color: #083388;
}
.p-header__gnav .sp-nav .p-header__gnav--submenu .submenu-item.contact a::after {
  font-family: "Material Symbols Outlined";
  content: "mail";
  color: #fff;
  font-size: 1.8rem;
  display: block;
}
.p-header__gnav .sp-nav .p-header__gnav--submenu .submenu-item.products-search a {
  background-color: #355bc8;
}
.p-header__gnav .sp-nav .p-header__gnav--submenu .submenu-item.products-search a::after {
  font-family: "Material Symbols Outlined";
  content: "search";
  color: #fff;
  font-size: 1.8rem;
  display: block;
}
.p-header__gnav .sp-nav .p-header__gnav--submenu .submenu-item.documents a {
  background-color: #083388;
}
.p-header__gnav .sp-nav .p-header__gnav--submenu .submenu-item.documents a::after {
  font-family: "Material Symbols Outlined";
  content: "stacks";
  color: #fff;
  font-size: 1.8rem;
  display: block;
}
.p-header__gnav .sp-nav .p-header__gnav--list {
  background-color: #fff;
}
.p-header__gnav .sp-nav .p-header__gnav--listitem > a {
  padding: 15px;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  position: relative;
}
.p-header__gnav .sp-nav .p-header__gnav--listitem > a::after {
  font-family: "Material Icons";
  content: "chevron_right";
  display: inline-block;
  vertical-align: middle;
  color: #083388;
  font-size: 23px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-header__gnav .sp-nav .p-header__gnav--listitem:not(:first-child) > a {
  padding: 15px;
  font-weight: bold;
  border-top: 1px solid #d9dce2;
}
.p-header__gnav .sp-nav .p-header__gnav--listitem.c-js-gnav-ac > a::after {
  content: "keyboard_arrow_down";
}
.p-header__gnav .sp-nav .p-header__gnav--listitem.c-js-gnav-ac > a.is-open::after {
  content: "keyboard_arrow_up";
}
.p-header__gnav .sp-nav .p-header__gnav--sublist {
  background-color: #f2f4f8;
}
.p-header__gnav .sp-nav .p-header__gnav--sublist li a {
  padding: 15px;
  display: inline-block;
  width: 100%;
  position: relative;
  padding-left: 50px;
}
.p-header__gnav .sp-nav .p-header__gnav--sublist li a:before {
  font-family: "Material Icons";
  content: "chevron_right";
  display: inline-block;
  vertical-align: middle;
  color: #083388;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-header__gnav .sp-nav .p-header__gnav--search {
  padding: 15px;
  background-color: #f2f4f8;
  border-top: 1px solid #d9dce2;
}
.p-header__gnav .sp-nav .p-header__gnav--search form {
  box-sizing: border-box;
  position: relative;
  border: 1px solid #a1a7b3;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  height: 40px;
  width: 345px;
  overflow: hidden;
  background-color: #fff;
  margin: 0 auto;
}
.p-header__gnav .sp-nav .p-header__gnav--search form input[type=text] {
  border: none;
  display: flex;
  align-items: center;
}
.p-header__gnav .sp-nav .p-header__gnav--search form input[type=text]:focus {
  outline: 0;
}
.p-header__gnav .sp-nav .p-header__gnav--search form input[type=submit] {
  cursor: pointer;
  outline: none;
  font-family: "Material Symbols Outlined";
  border: none;
  background: none;
  font-size: 2.7rem;
  color: #083388;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-header__gnav .sp-nav .p-header__gnav--listBottom {
  background-color: #083388;
  color: #fff;
  padding: 15px;
}
.p-header__gnav .sp-nav .p-header__gnav--listBottom li:not(:first-child) {
  margin-top: 10px;
}

@media screen and (min-width: 1200px) {
  .is-fixed .p-header__head {
    height: 72px;
    margin: 0 20px;
    padding: 15px 0 0;
  }
  .is-fixed .p-header__head .p-header__logo.top-logo,
  .is-fixed .p-header__head .p-header__logo.under-logo {
    width: 180px;
  }
  .is-fixed .p-header__head .p-header__signlogo {
    width: 150px;
  }
  .is-fixed .p-header__head .p-header__navarea {
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .is-fixed .p-header__head .p-header__link {
    order: 2;
  }
  .is-fixed .p-header__head .p-header__link--list .c-link-arrow-l.p-header__link--listitem.company {
    display: none;
  }
  .is-fixed .p-header__head .p-header__link .p-header__signlogo {
    display: none;
  }
  .is-fixed .p-header__head .p-header__gnav.pc-nav {
    order: 1;
  }
  .is-fixed .p-header__head .p-header__gnav--sublist {
    top: 70px;
  }
}
@media screen and (max-width: 1200px) {
  .is-fixed .p-header__head {
    margin: 0 15px;
    padding-top: 10px;
    padding-bottom: 15px;
    justify-content: inherit;
    height: 65px;
  }
  .is-fixed .p-header__head .p-header__logo {
    width: 110px;
  }
  .is-fixed .p-header__head .p-header__signlogo--sp {
    display: block;
    margin-top: 5px;
    width: 110px;
  }
  .is-fixed .p-header__head .p-header__link {
    display: none;
  }
  .is-fixed .p-header__head .p-header__gnav.pc-nav {
    display: none;
  }
  .is-fixed .p-header__head .p-header__login--sp {
    display: inline-block;
    position: relative;
    width: 100%;
  }
  .is-fixed .p-header__head .p-header__login--sp .c-link-login {
    margin-left: 30px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 992px) {
  .is-fixed .p-header__head .p-header__login--sp .c-link-login {
    margin-left: auto;
    margin-top: auto;
  }
}

@media screen and (max-width: 1200px) {
  .is-fixed .p-header__gnav.sp-nav {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .is-fixed-in .p-header__head,
  .is-fixed-out .p-header__head {
    animation: header-fade 400ms ease-in-out both;
  }
}

@keyframes header-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-header__login--sp {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, visibility 0s linear 0.3s;
}

@media screen and (max-width: 992px) {
  .p-header__login--sp {
    opacity: 1;
    visibility: visible;
    max-height: 60px;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, visibility 0s;
  }
}
@media screen and (max-width: 1200px) {
  .p-header.is-fixed .p-header__login--sp {
    opacity: 1;
    visibility: visible;
    max-height: 60px;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, visibility 0s;
  }
  .p-header.is-fixed .p-header__login--sp .c-link-login {
    position: absolute;
    top: 10px;
    right: 50px;
    margin-left: auto;
    margin-top: auto;
  }
}

.p-header.admin-site {
  border-bottom: 1px solid #d9dce2;
}
@media screen and (max-width: 992px) {
  .p-header.admin-site .p-header__logoarea {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0 15px;
    align-items: center;
  }
  .p-header.admin-site .p-header__signlogo--sp {
    grid-column-start: 1;
    grid-row-start: 2;
  }
  .p-header.admin-site .p-header__admin {
    grid-column: span 2/span 2;
    grid-row: span 2/span 2;
    grid-column-start: 2;
    grid-row-start: 1;
  }
  .p-header.admin-site .p-header__admin--txt a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #242933;
  }
}
@media screen and (min-width: 992px) {
  .p-header.admin-site .p-header__logoarea {
    display: flex;
  }
  .p-header.admin-site .p-header__admin--txt a {
    font-size: 2.8rem;
    font-weight: bold;
    color: #242933;
  }
}

.login-after .p-header__Headloginmessage {
  text-align: right;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  .login-after .p-header__Headloginmessage {
    display: none;
  }
}
.login-after .p-header__link--listitem.login {
  margin-left: 15px;
}
.login-after .p-header__login--sp .p-header__link--listitem.cart {
  position: absolute;
  right: 170px;
  top: 7px;
}
.login-after .p-header__gnav .sp-nav {
  margin-top: 96px;
}
@media screen and (max-width: 992px) {
  .login-after .p-header__gnav .sp-nav {
    margin-top: 65px;
  }
}
.login-after .p-header__gnav.sp-nav .p-header__gnav--submenu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
}

/*
---
name: member
category:
  - object
  - object/project/member
---

ユーザー関連

*/
.p-member__title {
  margin-bottom: 30px;
}
.p-member__title.ver-02 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .p-member__title.ver-02 {
    align-items: inherit;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.p-member__title.ver-02 .c-title-head01 {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  .p-member__title.ver-02 .c-title-head01 {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
.p-member__title.ver-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.p-member__title.ver-cart .title-item01 {
  display: flex;
  gap: 45px;
}
@media screen and (max-width: 992px) {
  .p-member__title.ver-cart .title-item01 {
    flex-direction: column;
    align-items: normal;
    gap: 10px;
  }
}
.p-member__title.ver-cart .title-item02 {
  display: flex;
  gap: 45px;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .p-member__title.ver-cart .title-item02 {
    gap: 10px;
  }
}
.p-member__title--btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .p-member__title--btn {
    gap: 10px;
  }
}
@media screen and (max-width: 576px) {
  .p-member__title--btn {
    gap: 5px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 576px) {
  .p-member__title--btn > div {
    display: flex;
  }
}
.p-member__title--btn .c-btn-blue {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 576px) {
  .p-member__title--btn .c-btn-blue {
    white-space: nowrap;
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
@media screen and (max-width: 576px) {
  .p-member__title--btn button.c-btn-blue {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding-block: 0;
    padding-inline: 0;
    border-width: 0;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
.p-member__title--center {
  margin-left: 45px;
}
@media screen and (max-width: 992px) {
  .p-member__title--center {
    margin-left: 0;
  }
}
.p-member__title--right {
  margin-left: auto;
}
@media screen and (max-width: 992px) {
  .p-member__title--right {
    margin-left: 0px;
  }
}
.p-member__title.center {
  text-align: center;
}
.p-member__title-sortBox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .p-member__title-sortBox {
    font-size: 1.2rem;
    align-items: center;
    margin-top: 20px;
  }
}
.p-member__title-radio {
  display: flex;
  align-items: center;
}
.p-member__title-radio label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0 30px;
}
.p-member__title-radio label:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: -2px;
  left: 0;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 50%;
}
.p-member__title-radio input[type=radio] {
  display: none;
}
.p-member__title-radio input[type=radio]:checked + label:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 1px;
  left: 3px;
  background-color: #355BC8;
  border-radius: 50%;
}
.p-member__title-selectBox {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .p-member__title-selectBox {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-member__title-selectBox {
    gap: 5px;
  }
}
.p-member__title-selectBox .selectWrap {
  position: relative;
}
.p-member__title-selectBox .selectWrap:after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 20px;
  border-right: 8px solid rgba(0, 0, 0, 0);
  border-left: 8px solid rgba(0, 0, 0, 0);
  border-top: 12px solid #000;
  border-bottom: 0;
}
.p-member__title-selectBox select {
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #c7ccd4;
  padding: 15px 60px 15px 20px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-member__title-selectBox select {
    padding: 15px 55px 15px 10px;
  }
}

@media screen and (max-width: 992px) {
  .p-member-login__item:not(:first-child) {
    margin-top: 40px;
  }
}
.p-member-login__item {
  background-color: #f2f2f2;
  border-radius: 6px;
  padding: 50px 40px;
}
.p-member-login__item.item01 {
  display: flex;
  flex-direction: column;
}
.p-member-login__item-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.p-member-login__form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.p-member-login__form label {
  display: block;
}
.p-member-login__form .c-form-group:not(:first-child) {
  margin-top: 30px;
}
.p-member-login__submit {
  text-align: center;
  margin-top: auto;
}
@media screen and (max-width: 992px) {
  .p-member-login__submit {
    margin-top: 10px;
  }
}
.p-member-login__link {
  margin-top: 10px;
}
.p-member-login__link .c-link-default {
  font-size: 1.4rem;
}
.p-member-login__list {
  margin-top: 28px;
  font-weight: bold;
}
.p-member-login__list li:not(:first-child) {
  margin-top: 14px;
}
.p-member-login__list li {
  line-height: 1;
}
.p-member-login__list .c-icon-stacks:before,
.p-member-login__list .c-icon-mail:before,
.p-member-login__list .c-icon-favorite:before,
.p-member-login__list .c-icon-schedule:before {
  font-size: 3.6rem;
  font-weight: normal;
}
.p-member-login__btn {
  text-align: center;
  margin-top: 28px;
}
.p-member-login__btn a {
  color: #fff;
}
.p-member-login .c-link-default {
  color: #083388;
  text-decoration: underline;
}
.p-member-login .pass-switch-wrapper {
  display: block;
}

.p-member-logout__login {
  margin-top: 28px;
  background-color: #f2f2f2;
  border-radius: 6px;
  padding: 50px 40px;
}
.p-member-logout__login-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.p-member-logout__form {
  margin-top: 18px;
}
.p-member-logout__form label {
  display: block;
}
.p-member-logout__form .c-form-group:not(:first-child) {
  margin-top: 18px;
}
.p-member-logout__submit {
  margin-top: 28px;
  text-align: center;
}
.p-member-logout__link {
  margin-top: 10px;
}
.p-member-logout__link .c-link-default {
  color: #083388;
  text-decoration: underline;
  font-size: 1.4rem;
}

.p-member-forget__content02 {
  margin-top: 40px;
}
.p-member-forget__form {
  margin-top: 38px;
}
.p-member-forget__form label {
  display: block;
}
.p-member-forget__submit {
  margin-top: 30px;
}

.p-member-pwcng__form {
  margin-top: 28px;
}
.p-member-pwcng__form .c-form-group:not(:first-child) {
  margin-top: 20px;
}
.p-member-pwcng__form label {
  display: block;
}
@media screen and (min-width: 992px) {
  .p-member-pwcng__form input[type=password],
  .p-member-pwcng__form input[type=text] {
    width: 540px;
  }
}
@media screen and (min-width: 992px) {
  .p-member-pwcng__form .pass-switch-wrapper {
    width: 540px;
  }
}
.p-member-pwcng__submit {
  margin-top: 30px;
}

.p-member-pwthanx__login {
  margin-top: 28px;
  background-color: #f2f2f2;
  border-radius: 6px;
  padding: 50px 40px;
}
.p-member-pwthanx__login-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.p-member-pwthanx__form {
  margin-top: 18px;
}
.p-member-pwthanx__form label {
  display: block;
}
.p-member-pwthanx__form .c-form-group:not(:first-child) {
  margin-top: 18px;
}
.p-member-pwthanx__submit {
  margin-top: 28px;
  text-align: center;
}
.p-member-pwthanx .pass-switch-wrapper {
  display: block;
}

.p-member-accountthanx__title {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .p-member-accountthanx__title {
    flex-direction: column;
    justify-content: initial;
    row-gap: 10px;
  }
}

.p-member-register__content {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 992px) {
  .p-member-register__content {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 992px) {
  .p-member-register__content .c-link-arrow-l-circle {
    display: block;
    margin-top: 20px;
  }
}
.p-member-register__item {
  flex-basis: 50%;
}
.p-member-register__checkbox label a {
  color: #355BC8;
}
.p-member-register__list:not(:first-child) {
  margin-top: 20px;
}
.p-member-register__list-title {
  font-weight: bold;
}
.p-member-register .c-icon-stacks:before,
.p-member-register .c-icon-mail:before,
.p-member-register .c-icon-favorite:before,
.p-member-register .c-icon-schedule:before {
  font-size: 3.6rem;
  font-weight: normal;
}

.p-member-registerthanx__login {
  margin-top: 28px;
  background-color: #f2f2f2;
  border-radius: 6px;
  padding: 50px 40px;
}
.p-member-registerthanx__login-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.p-member-registerthanx__form {
  margin-top: 18px;
}
.p-member-registerthanx__form label {
  display: block;
}
.p-member-registerthanx__form .c-form-group:not(:first-child) {
  margin-top: 18px;
}
.p-member-registerthanx__submit {
  margin-top: 28px;
  text-align: center;
}

.p-member-confirm {
  max-width: 1000px;
  margin-inline: auto;
}
.p-member-confirm__table table {
  border-collapse: collapse;
  width: 100%;
}
.p-member-confirm__table .c-form-confirm-group {
  margin-top: 0;
}
.p-member-confirm__table .c-form-confirm-label {
  background-color: #f2f4f8;
  text-align: left;
  padding: 20px;
  border: 1px solid #e2e2e2;
  width: 350px;
}
@media screen and (max-width: 992px) {
  .p-member-confirm__table .c-form-confirm-label {
    width: 100%;
    display: block;
  }
}
.p-member-confirm__table .c-form-confirm-input {
  padding: 20px;
  border: 1px solid #e2e2e2;
  margin-left: 0;
  display: block;
  min-height: 67px;
}
@media screen and (max-width: 992px) {
  .p-member-confirm__table .c-form-confirm-input {
    min-height: 60px;
  }
}
@media screen and (max-width: 992px) {
  .p-member-confirm__table .c-form-confirm.thead-on .c-form-confirm-label {
    display: table-cell;
  }
}
.p-member-confirm__table .c-form-confirm.thead-on .c-form-confirm-input {
  display: table-cell;
}
.p-member-confirm__btnArea {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  margin-inline: auto;
}
@media screen and (max-width: 992px) {
  .p-member-confirm__btnArea {
    flex-direction: column;
  }
}
@media screen and (max-width: 992px) {
  .p-member-confirm__btnArea .correction {
    margin-bottom: 20px;
  }
}
.p-member-confirm__btnArea .c-btn-simple {
  width: 400px;
}
@media screen and (max-width: 1200px) {
  .p-member-confirm__btnArea .c-btn-simple {
    width: 200px;
  }
}
@media screen and (max-width: 992px) {
  .p-member-confirm__btnArea .c-btn-simple {
    width: 100%;
  }
}
.p-member-confirm__textarea textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid #e2e2e2;
}

.p-member-accountconfirm .c-btn-simple {
  width: 200px;
}

.p-member-registerconfirm__withdrawal {
  line-height: 1.1;
}
.p-member-registerconfirm__withdrawal .c-btn-simple {
  padding: 15px;
}

.p-member-mypage {
  position: relative;
}
@media screen and (min-width: 576px) {
  .p-member-mypage__inner > .l-container-maxWidth {
    max-width: inherit;
    margin-left: inherit;
    margin-right: inherit;
  }
}
@media screen and (min-width: 576px) {
  .p-member-mypage__inner > .l-container-maxWidth > .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-member-mypage__contentWrapper {
  display: block;
  margin-left: 260px;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-member-mypage__contentWrapper {
    margin-left: 0;
  }
}
.p-member-mypage__container {
  padding-bottom: 160px;
  width: 1360px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-member-mypage__container {
    width: inherit;
    padding-bottom: 60px;
    padding-right: 0;
    padding-left: 0;
  }
}
.p-member-mypage__container .c-section-top {
  margin-top: 0;
  padding-top: 54px;
}
.p-member-mypage__aside {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  background-color: #f2f4f8;
  flex-basis: 260px;
  flex-shrink: 0;
  padding-top: 54px;
}
@media screen and (max-width: 768px) {
  .p-member-mypage__aside {
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    width: auto;
    padding-top: 0;
    background-color: transparent;
    text-align: right;
    z-index: 100;
    overflow: visible;
  }
}
.p-member-mypage__menuButton {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-member-mypage__menuButton {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 8px;
    padding: 6px 12px;
    font-size: 1.4rem;
    border-radius: 4px;
    border: 1px solid #c7ccd4;
    background-color: #f2f4f8;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .p-member-mypage__menuButton.is-open {
    background-color: #c7ccd4;
  }
}
.p-member-mypage__menuButton-icon {
  font-size: 18px;
  line-height: 1;
}
.p-member-mypage__aside-body {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-member-mypage__aside-body {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 240px;
    background-color: #f2f4f8;
    padding: 16px 0;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: none;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .p-member-mypage__aside.is-open .p-member-mypage__aside-body {
    display: block;
  }
}
.p-member-mypage__aside-item {
  margin-bottom: 30px;
}
.p-member-mypage__aside-itemTitle {
  font-size: 1.8rem;
  color: #242933;
  font-weight: bold;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 10px;
}
.p-member-mypage__aside-link a {
  display: block;
  padding: 10px 30px;
  position: relative;
  font-size: 1.4rem;
}
.p-member-mypage__aside-link a:after {
  font-family: "Material Icons";
  content: "keyboard_arrow_down";
  font-size: 30px;
  color: #355BC8;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-90deg);
}
.p-member-mypage__aside-link.current a {
  background-color: #c7ccd4;
}
@media screen and (max-width: 768px) {
  .p-member-mypage__title .title-item01 {
    display: flex;
    align-items: center;
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 4px;
    flex-wrap: wrap;
  }
}

.p-member-mypage-billingTable--center {
  text-align: center;
}
.p-member-mypage-billingTable--imageBox a {
  display: inline-block;
}
.p-member-mypage-billingTable--imageBox .modal-icon {
  position: relative;
}
.p-member-mypage-billingTable--imageBox .modal-icon:after {
  position: absolute;
  font-family: "Material Icons";
  content: "add";
  display: inline-block;
  text-align: center;
  font-size: 20px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  background-color: #fff;
  border-radius: 50%;
  top: 5px;
  right: 5px;
}
.p-member-mypage-billingTable--trigger {
  width: 40px;
  height: 40px;
  background-color: #355BC8;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.p-member-mypage-billingTable--trigger span {
  position: absolute;
  display: block;
  content: "";
  width: 20px;
  height: 3px;
  background-color: #fff;
  transform: all 0.5s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-member-mypage-billingTable--trigger span:before {
  position: absolute;
  display: block;
  content: "";
  width: 20px;
  height: 3px;
  background-color: #fff;
  transition: all 0.5s;
  transform: rotate(90deg);
}
.p-member-mypage-billingTable--trigger span.is-active:before {
  transform: rotate(180deg);
}
.p-member-mypage-billingTable--detail {
  display: none;
}
.p-member-mypage-billingTable--detail.is-open {
  display: table-row;
}
.p-member-mypage-billingTable--detail > td {
  padding: 0 !important;
}
.p-member-mypage-billingTable--detail > td .inner-table th,
.p-member-mypage-billingTable--detail > td .inner-table td {
  text-align: left;
}
.p-member-mypage-billingTable--detail > td .inner-table th {
  background-color: #f2f2f2;
}

/* 行クリックのUI感をプラス（任意） */
.c-table.VerColor--ver01.p-member-mypage-billingTable tbody > tr:not(.p-member-mypage-billingTable--detail) {
  cursor: pointer;
}

.c-table.VerColor--ver01.p-member-mypage-billingTable tbody > tr:not(.p-member-mypage-billingTable--detail):hover {
  background: #fafafa;
}

/* もう＋ボタンを使わない場合は非表示（任意） */
.p-member-mypage.favorite-page .p-thumbmodal {
  background-color: rgb(255, 255, 255);
}

.p-member-mypage-favoriteList {
  margin-top: 20px;
}
.p-member-mypage-favoriteList__inner {
  margin-inline: auto;
}
@media screen and (max-width: 992px) {
  .p-member-mypage-favoriteList__inner.c-column-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  .p-member-mypage-favoriteList__inner.c-column-3 .item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (max-width: 992px) {
  .p-member-mypage-favoriteList__inner.c-column-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  .p-member-mypage-favoriteList__inner.c-column-4 .item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (max-width: 992px) {
  .p-member-mypage-favoriteList .p-catalog-display__item-link {
    margin-top: 5px;
  }
}
.p-member-mypage-favoriteList .p-catalog-display__item-link .c-link-colorBox {
  padding: 10px;
}

.p-member-cartthanx__title {
  display: flex;
  justify-content: space-between;
}

.p-member-cartTable {
  margin-top: 50px;
}
.p-member-cartTable--title {
  font-size: 2.4rem;
  font-weight: bold;
}
.p-member-cartTable table thead th {
  padding: 10px;
}
.p-member-cartTable table tbody td {
  padding: 10px;
}
.p-member-cartTable table {
  margin-top: 20px;
  text-align: center;
}
.p-member-cartTable table img {
  margin-inline: auto;
}
.p-member-cartTable table select {
  width: 100%;
  padding: 8px 20px;
  border-radius: 5px;
}
.p-member-cartTable .selectWrap {
  max-width: 100px;
  margin-inline: auto;
}
.p-member-cartTable .btn-delete .c-label {
  line-height: 1.5;
}
.p-member-cartTable .btn-delete button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.p-member-cartUnderLink {
  margin-inline: auto;
  padding-top: 20px;
  text-align: right;
}
.p-member-cartUnderLink a {
  text-align: center;
}

.p-member-cartguestList__top {
  max-width: 640px;
  margin-inline: auto;
}

.p-member-cartList,
.p-member-cartguestList,
.p-member-cartconfirmList {
  margin-top: 20px;
}
.p-member-cartList__inner,
.p-member-cartguestList__inner,
.p-member-cartconfirmList__inner {
  max-width: 940px;
  margin-inline: auto;
}

.p-thumb-list .border {
  border: 1px solid #e2e2e2;
}
.p-thumb-list__item-image {
  position: relative;
}
.p-thumb-list__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-thumb-list__item-image .new {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 100;
  font-size: 1.2rem;
  color: #e61616;
  background-color: #fff;
  padding: 5px;
  line-height: 1.4;
  font-weight: 500;
}
.p-thumb-list__item-image .haiban {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 100;
  font-size: 1.2rem;
  color: #707070;
  background-color: #fff;
  padding: 5px;
  line-height: 1.4;
  font-weight: 500;
}
.p-thumb-list__item-infoWrap {
  margin-top: 15px;
  gap: 10px;
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}
@media screen and (max-width: 992px) {
  .p-thumb-list__item-infoWrap {
    gap: 0;
  }
}
.p-thumb-list__item-contents .item {
  margin-top: 10px;
}
.p-thumb-list__item-brand {
  height: 30px;
}
.p-thumb-list__item-brand img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center left;
     object-position: center left;
}
.p-thumb-list__item-number {
  font-size: 1.8rem;
  font-weight: bold;
}
.p-thumb-list__item-name {
  font-size: 1.8rem;
  font-weight: bold;
}
.p-thumb-list__item-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-basis: 13%;
  padding-top: 10px;
}
@media screen and (max-width: 992px) {
  .p-thumb-list__item-button {
    align-items: flex-end;
    flex-basis: inherit;
  }
}
.p-thumb-list__item-cart {
  text-align: center;
}
.p-thumb-list__item-cart img {
  width: 100%;
}
.p-thumb-list__item-cart button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 1.2rem;
  color: #a0a0a0;
}
.p-thumb-list__item-cart .material-icons {
  color: #7a7f88;
  font-size: 2.6rem;
}
.p-thumb-list__item-favorite button {
  cursor: pointer;
  background-color: #7a7f88;
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 2px 10px;
  color: #fff;
  border: none;
  white-space: nowrap;
}
.p-thumb-list__item-favorite.addIcon button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
}
.p-thumb-list__item-favorite.addIcon .material-symbols-outlined {
  font-size: 2.6rem;
  color: #7a7f88;
}
.p-thumb-list__item-favorite.addIcon .material-icons {
  font-size: 2.6rem;
  color: #e61616;
}
.p-thumb-list__item-number {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .p-thumb-list__item-number {
    font-size: 1.6rem;
    margin-right: 0 !important;
  }
}
.p-thumb-list__item-number.selectBox .selectWrap {
  position: relative;
}
.p-thumb-list__item-number.selectBox .selectWrap:after {
  position: absolute;
  font-family: "Material Icons";
  content: "chevron_right";
  color: #707070;
  transform: rotate(90deg);
  display: inline-block;
  font-size: 20px;
  right: 0px;
}
.p-thumb-list__item-number.selectBox select {
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  padding: 2px 20px 2px 5px;
}
.p-thumb-list__item-numberBox {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.p-thumb-list__item-numberBox button {
  cursor: pointer;
  border: 1px solid #707070;
  font-size: 1.4rem;
  padding: 5px 7px;
  color: #1c1f21;
}
.p-thumb-list__item-numberBox .number-confirmation span {
  display: inline-block;
  padding-left: 20px;
}

.p-member-separate {
  background-image: repeating-linear-gradient(90deg, #acacac, #acacac 2px, transparent 2px, transparent 4px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

/* ----------------
マイページドロップダウン
------------------- */
/* 親を基準点にする */
.js-mypage-wrap {
  position: relative;
}

/* ドロップダウン本体 */
.mypage-dropdown {
  position: absolute;
  top: calc(100% + 8px); /* トリガー直下に少し余白を空けて出す */
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1200;
  /* 初期は非表示（アクセシビリティとJS都合で visibility + opacity で制御） */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

/* 開いた状態 */
.mypage-dropdown.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.mypage-dropdown ul {
  margin: 0;
  padding: 6px 0;
  list-style: none;
}

.mypage-dropdown li + li {
  border-top: 1px solid #f0f0f0;
}

.c-link-login .mypage-dropdown a:visited {
  color: #222;
}

.mypage-dropdown a {
  display: block;
  padding: 10px 14px;
  color: #222;
  text-decoration: none;
  line-height: 1.5;
  font-size: 14px;
  background-color: #fff;
  border-radius: 0;
  width: inherit !important;
  height: auto;
}
.mypage-dropdown a:before {
  display: none;
}

.mypage-dropdown a:hover,
.mypage-dropdown a:focus {
  background: #f7f9fc;
  outline: none;
  text-decoration: none;
}

/* スマホでヘッダーが固定＆狭い場合のはみ出し対策（必要なら有効化） */
@media (max-width: 767.98px) {
  .js-mypage-wrap {
    position: static;
  }
  .js-mypage-wrap .mypage-dropdown {
    position: absolute;
    left: 0;
    right: 16px;
    min-width: 140px;
  }
}
/*
---
name: modal
category:
  - object
  - object/project/modal
---

モーダル関連

*/
.modal-icon {
  position: relative;
}
.modal-icon:after {
  position: absolute;
  font-family: "Material Icons";
  content: "add";
  display: inline-block;
  text-align: center;
  font-size: 20px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  background-color: #fff;
  border-radius: 50%;
  top: 10px;
  right: 10px;
}

.p-thumbmodal {
  display: none;
  opacity: 0;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.2);
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow-y: scroll;
}
.p-thumbmodal__bg {
  position: fixed;
  width: 100%;
  height: 100%;
}
.p-thumbmodal__bg.white-bg {
  background-color: #fff;
}
.p-thumbmodal__content {
  background-color: #fff;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 550;
}
.p-thumbmodal__title {
  margin-bottom: 60px;
}
.p-thumbmodal__title .thumb-head-row {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal__title .thumb-head-row {
    flex-direction: column-reverse;
    gap: 0;
  }
}
.p-thumbmodal__title .thumb-head-row .thumb-head-left {
  flex-basis: 50%;
}
.p-thumbmodal__title .thumb-head-row .thumb-head-left .p-thumbmodal__brandLogo {
  margin-bottom: 10px;
}
.p-thumbmodal__title .thumb-head-row .thumb-head-left .thumb-head-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-thumbmodal__title .thumb-head-row .thumb-head-left .new {
  color: #e61616;
}
.p-thumbmodal__title .thumb-head-row .thumb-head-left .haiban {
  color: #707070;
}
.p-thumbmodal__title .thumb-head-row .thumb-head-right {
  flex-basis: 50%;
  text-align: right;
}
.p-thumbmodal__top {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal__top {
    flex-direction: column;
    gap: 30px;
  }
}
.p-thumbmodal__thumb {
  flex-basis: 50%;
}
.p-thumbmodal__thumb img {
  width: 100%;
}
.p-thumbmodal__infoArea {
  flex-basis: 50%;
}
.p-thumbmodal__infoArea .new {
  font-size: 1.2rem;
  color: #e61616;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal__infoArea .new {
    display: none;
  }
}
.p-thumbmodal__mainInfoWrap {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal__mainInfoWrap {
    flex-direction: column;
  }
}
.p-thumbmodal__productName {
  font-size: 2.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 1;
}
.p-thumbmodal__favoriteButton {
  cursor: pointer;
  border: none;
  background-color: transparent;
  margin-left: 20px;
  color: #7a7f88;
  font-size: 3.6rem;
}
.p-thumbmodal__favoriteButton.is-active {
  color: #e61616;
}
.p-thumbmodal__detail-item {
  display: flex;
  margin-top: 15px;
}
.p-thumbmodal__detail-item dt {
  min-width: 110px;
  position: relative;
  background-image: linear-gradient(to bottom, rgb(36, 41, 51) 1px, transparent 1px);
  background-size: 1px 3px;
  background-repeat: repeat-y;
  background-position: right top;
}
.p-thumbmodal__detail-item dd {
  padding-left: 10px;
}
.p-thumbmodal__closeButton button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.p-thumbmodal__closeButton .material-symbols-outlined {
  font-size: 6rem;
  color: #7a7f88;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal__closeButton .material-symbols-outlined {
    font-size: 3rem;
  }
}
.p-thumbmodal__brandLogo {
  margin-top: 15px;
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal__brandLogo {
    margin-bottom: 30px;
  }
}
.p-thumbmodal__actionButton .button {
  color: #000000;
  display: block;
  padding: 20px;
  border: 1px solid #242933;
  text-align: center;
  margin-top: 15px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal__actionButton .button {
    padding: 15px;
    font-size: 1.2rem;
  }
}
.p-thumbmodal__actionButton .button:before {
  font-family: "Material Icons";
  font-size: 3.6rem;
  display: inline-block;
  vertical-align: middle;
  left: 20px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.p-thumbmodal__actionButton .button.addCart {
  color: #fff;
  background-color: #242933;
}
.p-thumbmodal__actionButton .button.addCart:before {
  content: "add_shopping_cart";
  color: #fff;
}
.p-thumbmodal__actionButton .button.download:before {
  content: "download";
  color: #000000;
}
.p-thumbmodal__actionButton .button.request:before {
  font-family: "Material Symbols Outlined";
  content: "stacks";
  color: #000000;
}
.p-thumbmodal__actionButton .button.mail {
  padding-left: 60px;
}
.p-thumbmodal__actionButton .button.mail:before {
  font-family: "Material Symbols Outlined";
  content: "mail";
  color: #000000;
}
.p-thumbmodal__actionButton .attention {
  font-size: 1.4rem;
  margin-top: 15px;
}
.p-thumbmodal__about {
  margin-top: 15px;
}
.p-thumbmodal__about--item {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e1e4eb;
}
.p-thumbmodal__table {
  word-break: break-all;
  margin-top: 60px;
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal__table {
    margin-top: 30px;
    white-space: normal;
    overflow-x: scroll;
  }
}
.p-thumbmodal__table {
  /* 共通設定 */
}
.p-thumbmodal__table__tableInner {
  display: flex;
  flex-direction: column;
}
.p-thumbmodal__table .table-row {
  display: flex;
  flex-grow: 1;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal__table .table-row {
    flex-wrap: wrap;
  }
}
.p-thumbmodal__table .table-item {
  display: flex;
  flex-direction: column;
  width: 50%;
  box-sizing: border-box;
  flex-grow: 1;
  border: 1px solid #707070;
  text-align: center;
}
.p-thumbmodal__table .table-header {
  padding: 20px;
  border-bottom: 1px solid #707070;
  background-color: #d9dce2;
  display: flex;
  height: 67px;
  align-items: center;
  justify-content: center;
}
.p-thumbmodal__table .table-data {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  text-align: center;
  height: 120px;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal__table .table-data {
    height: 100%;
  }
}
.p-thumbmodal__table {
  /* PC時の設定 */
}
@media screen and (min-width: 992px) {
  .p-thumbmodal__table .p-thumbmodal__tableInner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .p-thumbmodal__table .table-row {
    display: flex;
    flex-direction: row;
    width: auto;
  }
  .p-thumbmodal__table .table-item {
    display: flex;
    flex-direction: column;
    width: auto;
  }
}
.p-thumbmodal__attention {
  padding-top: 10px;
  padding-bottom: 10px;
}
.p-thumbmodal__sameDesign {
  padding-bottom: 30px;
}
.p-thumbmodal .thumbHeading {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e1e4eb;
}

.p-secondmodal {
  display: none;
  opacity: 0;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.2);
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow-y: scroll;
}
.p-secondmodal__bg {
  height: 100%;
  width: 100%;
}
.p-secondmodal__content {
  background-color: #fff;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  transform: translate(-50%, -50%);
  width: 60%;
}
.p-secondmodal__content img {
  margin-inline: auto;
}

.p-thumbmodal.is-active {
  display: block;
  opacity: 1;
}

body.thumbmodal-fixed {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.p-thumbmodal__detailWrap {
  display: flex;
  gap: 60px;
}
.p-thumbmodal__detail__thumb a {
  display: inline-block;
}
.p-thumbmodal__detail__info {
  width: 100%;
}
.p-secondmodal.is-active {
  display: block;
  opacity: 1;
}

.swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  align-self: center;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.searchsliderWrap {
  position: relative;
}
.searchsliderWrap .swiper-button-prev {
  left: -30px;
}
.searchsliderWrap .swiper-button-next {
  right: -30px;
}

.thumbslider img {
  width: inherit;
}

.p-thumbmodal-spDisplay {
  display: none;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal-spDisplay {
    display: block;
    margin-bottom: 30px;
  }
}
.p-thumbmodal-spDisplay__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-thumbmodal-spDisplay__right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.p-thumbmodal-spDisplay__name {
  font-size: 2.8rem;
  font-weight: bold;
}
.p-thumbmodal-spDisplay .new {
  color: #e61616;
}
.p-thumbmodal-spDisplay .haiban {
  color: #707070;
}

.p-thumbmodal__combo {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #e1e4eb;
}
.p-thumbmodal__combo .title-txt {
  font-size: 1.8rem;
  font-weight: bold;
}
.p-thumbmodal__combo .detail-txt {
  margin-top: 15px;
}

.p-thumbmodal__coating {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #e1e4eb;
}
.p-thumbmodal__coating--btn {
  margin-top: 15px;
  text-align: center;
}

.p-thumbmodal__listbtn {
  padding-top: 30px;
  padding-bottom: 30px;
}
.p-thumbmodal__listbtn--row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal__listbtn--row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-thumbmodal__listbtn--item {
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal__listbtn--item:nth-child(2) {
    margin-top: 10px;
  }
}

.p-thumb-list__item-brand.item .brand-logo {
  width: inherit;
}

.p-thumbmodal__related--grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
@media screen and (max-width: 992px) {
  .p-thumbmodal__related--grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
.p-thumbmodal__related--grid .grid-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #cccccc;
  padding: 10px;
}
.p-thumbmodal__related--grid .grid-item .bland-name {
  color: #242933;
  font-weight: bold;
  font-size: 1.2rem;
}
.p-thumbmodal__related--grid .grid-item .bland-image {
  margin: 0 auto;
  margin-top: 5px;
}

.js-thumbmodal-open {
  cursor: pointer;
}

.p-thumbmodal__othertxt {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #e1e4eb;
}

@media screen and (min-width: 992px) {
  .p-thumbmodal .p-thumbmodal__content .p-catalog-display__item {
    max-width: 33%;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-thumbmodal .p-thumbmodal__content .p-catalog-display__item .c-link-colorBox {
  padding: 10px;
}

/*
---
name: news
category:
  - object
  - object/project/news
---

トピックス一覧・詳細用

*/
.p-news__head {
  margin-top: 25px;
}
@media screen and (min-width: 992px) {
  .p-news__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 20px;
  }
  .p-news__head .item-title {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .p-news__head .item-select {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.p-news__head .item-select .news_year_select {
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #c7ccd4;
  border-radius: 10px;
  background-color: #fff;
  color: #242933;
}
.p-news__head .item-select .news_year_select::after {
  font-family: "Material Symbols Outlined";
  content: "arrow_drop_down";
  display: inline-block;
  vertical-align: middle;
  color: #000000;
  font-size: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8em;
  padding-left: 0;
  pointer-events: none;
}
.p-news__head .item-select .news_year_select select {
  width: 100%;
  padding: 10px;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (max-width: 992px) {
  .p-news__head .item-title {
    border-bottom: 1px solid #acacac;
    padding-bottom: 10px;
  }
  .p-news__head .item-select {
    margin-top: 20px;
  }
}
.p-news-tab {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-news-tab__area {
    overflow-x: scroll;
    height: 80px;
  }
}
.p-news-tab__areaInner {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .p-news-tab__areaInner {
    width: 575px;
  }
}
.p-news-tab__label {
  width: 20%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f2f4f8;
  color: #242933;
  font-weight: bold;
  height: 65px;
  border-bottom: 1px solid #c7ccd4;
  border-right: 2px solid #ffffff;
  border-left: 2px solid #fff;
  padding: 0 15px;
}
.p-news-tab__label.active, .p-news-tab__label:hover {
  background-color: #fff;
  border-bottom: 3px solid #355bc8;
}
@media screen and (min-width: 992px) {
  .p-news-tab__panel {
    margin-top: 80px;
  }
}
.p-news-tab .p-news-list__content {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e2e2;
}
.p-news-tab .p-news-list__date-category {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 576px) {
  .p-news-tab .p-news-list__date-category {
    gap: 20px;
  }
}
.p-news-tab .p-news-list__category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .p-news-tab .p-news-list__category {
    gap: 5px;
  }
}
.p-news-tab .p-news-list__category .category-item {
  font-size: 1.2rem;
  width: 130px;
  padding: 5px;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 576px) {
  .p-news-tab .p-news-list__category .category-item {
    width: 110px;
  }
}
.p-news-tab .p-news-list__category .category-item.products-cat {
  background-color: #00699c;
  color: #fff;
}
.p-news-tab .p-news-list__category .category-item.exhibition-cat {
  background-color: #99d6aa;
  color: #fff;
}
.p-news-tab .p-news-list__category .category-item.web-cat {
  background-color: #f18416;
  color: #fff;
}
.p-news-tab .p-news-list__category .category-item.other-cat {
  background-color: #b1b7c4;
  color: #fff;
}
.p-news-tab .p-news-list__article {
  margin-top: 20px;
  padding-right: 40px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .p-news-tab .p-news-list__article {
    padding-right: 30px;
  }
}
.p-news-tab .p-news-list__article::after {
  font-family: "Material Icons";
  content: "chevron_right";
  color: #242933;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-news-tab .p-news-list__link {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #242933;
}

.p-news-detail__container {
  overflow: hidden;
  position: relative;
}
.p-news-detail__content {
  width: 100%;
  padding-right: 300px;
  float: left;
  margin: 25px -300px 0 0;
}
@media screen and (max-width: 992px) {
  .p-news-detail__content {
    margin-right: 0;
    padding-right: 0;
    float: none;
  }
}
.p-news-detail__head {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
.p-news-detail__head .p-news-detail__category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .p-news-detail__head .p-news-detail__category {
    gap: 5px;
  }
}
.p-news-detail__head .p-news-detail__category .category-item {
  font-size: 1.2rem;
  width: 130px;
  padding: 5px;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 576px) {
  .p-news-detail__head .p-news-detail__category .category-item {
    width: 110px;
  }
}
.p-news-detail__head .p-news-detail__category .category-item.products-cat {
  background-color: #00699c;
  color: #fff;
}
.p-news-detail__head .p-news-detail__category .category-item.exhibition-cat {
  background-color: #99d6aa;
  color: #fff;
}
.p-news-detail__head .p-news-detail__category .category-item.web-cat {
  background-color: #f18416;
  color: #fff;
}
.p-news-detail__head .p-news-detail__category .category-item.other-cat {
  background-color: #b1b7c4;
  color: #fff;
}
.p-news-detail__date-category {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 576px) {
  .p-news-detail__date-category {
    gap: 20px;
  }
}
.p-news-detail__title {
  margin-top: 30px;
}
.p-news-detail__article {
  margin-top: 40px;
}
.p-news-detail__article p {
  margin-bottom: 2rem;
}
.p-news-detail__sidemenu {
  width: 255px;
  float: right;
  margin: 30px 0 0;
  padding-left: 15px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .p-news-detail__sidemenu {
    float: none;
    width: 100%;
    padding-left: 0;
    margin-top: 50px;
  }
}
.p-news-detail__sidemenu--list {
  border-top: 1px solid #e2e2e2;
}
.p-news-detail__sidemenu--list > li {
  border-left: 1px solid #e2e2e2;
}
.p-news-detail__sidemenu--list li a {
  display: block;
  line-height: 1.4;
  position: relative;
  border-bottom: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  font-weight: bold;
  color: #242933;
}
.p-news-detail__sidemenu--list > li > a {
  position: relative;
  background-color: #f2f2f2;
  padding: 1.2em 1em 1.3em 2em;
}
.p-news-detail__sidemenu--list .IsClose .newsAccordion {
  position: relative;
}
.p-news-detail__sidemenu--list .IsClose .newsAccordion:before, .p-news-detail__sidemenu--list .IsClose .newsAccordion:after {
  content: "";
  background-color: #355bc8;
  position: absolute;
  width: 20px;
  height: 3px;
  top: 48%;
  right: 20px;
}
.p-news-detail__sidemenu--list .IsClose .newsAccordion:before {
  transform: translateY(-50%) rotate(90deg);
  top: 50%;
}
.p-news-detail__sidemenu--list .IsClose ul {
  display: none;
}
.p-news-detail__sidemenu--list .IsMenu .newsAccordion {
  position: relative;
}
.p-news-detail__sidemenu--list .IsMenu .newsAccordion:before, .p-news-detail__sidemenu--list .IsMenu .newsAccordion:after {
  content: "";
  background-color: #355bc8;
  position: absolute;
  width: 20px;
  height: 3px;
  top: 48%;
  right: 20px;
}
.p-news-detail__sidemenu--list .IsMenu .newsAccordion:before {
  transform: rotate(180deg);
  transition: 0.2s;
}
.p-news-detail__sidemenu--list .IsMenu .newsAccordion:after {
  opacity: 0;
  transition: 0.1s;
}
.p-news-detail__sidemenu--list .IsMenu ul {
  display: block;
}
.p-news-detail__sidemenu--list .IsMenu ul li {
  border-left: 3px solid #355bc8;
}
.p-news-detail__sidemenu--list .IsMenu ul li a {
  background-color: #fff;
  color: #242933;
  padding: 1em 1em 1em 2em;
  font-size: 1.4rem;
  font-weight: 500;
}

/*
---
name: non-flammable
category:
  - object
  - object/project/non-flammable
---

各種認定取得製品について

*/
.p-nonflammable__mainarea {
  background-image: url(../../shared/images/non_flammable/img_non-flammable_main.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  position: relative;
}
.p-nonflammable__mainarea--txt {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
}
.p-nonflammable__text {
  margin-top: 50px;
}
.p-nonflammable__link {
  margin-top: 40px;
}
.p-nonflammable__link--item img {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-nonflammable__link--item:nth-child(3) {
    display: none;
  }
}
.p-nonflammable__submenu {
  margin-top: 50px;
}

@media screen and (min-width: 992px) {
  .p-nonflammable-procedure__detail02 .c-box-step__item {
    grid-template-rows: auto 150px 1fr;
  }
}

.p-nonflammable-number__pagelinkbtn {
  margin-top: 50px;
}

.p-nonflammable-number-simple__detail01 .thead-sticky-2 {
  overflow: auto;
  height: 600px;
}
@media screen and (max-width: 992px) {
  .p-nonflammable-number-simple__detail01 .thead-sticky-2 {
    height: 500px;
  }
}
.p-nonflammable-number-simple__detail01 .thead-sticky-2 thead tr th {
  position: sticky;
  padding: 10px !important;
}
.p-nonflammable-number-simple__detail01 .thead-sticky-2 thead tr:nth-child(1) th {
  top: 0;
}
.p-nonflammable-number-simple__detail01 .thead-sticky-2 thead tr:nth-child(2) th {
  top: 46px;
}
.p-nonflammable-number-simple__detail01 .thead-sticky-2 thead tr:nth-child(2) th:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  border-top: 2px solid #fff;
}
@media screen and (max-width: 1200px) {
  .p-nonflammable-number-simple__detail01 .thead-sticky-2 thead tr:nth-child(2) th {
    top: 42px;
  }
}
@media screen and (max-width: 992px) {
  .p-nonflammable-number-simple__detail01 .thead-sticky-2 thead tr:nth-child(2) th {
    top: 40px;
  }
}
.p-nonflammable-number-simple__detail01 .number_simple_cate {
  font-size: 1.4rem;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.p-nonflammable-printer .p-nonflammable__searchChange {
  text-align: right;
  /* タブ */
}
.p-nonflammable-printer .p-nonflammable__searchChange .search-tabs {
  display: none;
}
.p-nonflammable-printer .p-nonflammable__searchChange .search-tabs .tab-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  cursor: pointer;
}
.p-nonflammable-printer .p-nonflammable__searchChange .search-tabs .tab-button.active {
  color: #1c1f21;
  border-bottom: 3px solid #2c4ba6;
}
.p-nonflammable-printer .p-nonflammable__searchChange {
  /* タブ中身 */
}
.p-nonflammable-printer .p-nonflammable__searchChange .tab-content {
  display: block;
}
.p-nonflammable-printer .p-nonflammable__searchChange .tab-content.active {
  display: block;
}
.p-nonflammable-printer .p-nonflammable__searchChange {
  /* メーカー/製品のボタン群 */
}
.p-nonflammable-printer .p-nonflammable__searchChange .sort-btn-list {
  padding: 0;
  list-style: none;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .p-nonflammable-printer .p-nonflammable__searchChange .sort-btn-list {
    grid-template-columns: repeat(2, 1fr) !important;
    font-size: 1.4rem;
    margin-right: 10px !important;
    margin-left: 10px !important;
    margin-top: 10px !important;
  }
}
.p-nonflammable-printer .p-nonflammable__searchChange .sort-btn-list li {
  background: #ffffff;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.p-nonflammable-printer .p-nonflammable__searchChange .sort-btn-list li .sort-btn-text {
  padding: 17px 12px !important;
}
@media screen and (max-width: 992px) {
  .p-nonflammable-printer .p-nonflammable__searchChange .sort-btn-list li .sort-btn-text {
    padding: 10px !important;
    border-radius: 30px !important;
  }
}
.p-nonflammable-printer .p-nonflammable__searchChange .sort-btn-list li.is-selected .sort-btn-text {
  color: #ffffff;
  background-color: #2c4ba6;
}
.p-nonflammable-printer .p-nonflammable__searchChange .maker-area-title,
.p-nonflammable-printer .p-nonflammable__searchChange .products-area-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1c1f21;
  border-bottom: 3px solid #2c4ba6;
  padding-bottom: 10px;
}
.p-nonflammable-printer .p-nonflammable__searchChange .maker-area-title {
  margin-bottom: 30px;
}
.p-nonflammable-printer .p-nonflammable__searchChange {
  /* メーカー名アコーディオン */
}
.p-nonflammable-printer .p-nonflammable__searchChange .maker-area {
  margin-right: 40px;
  margin-left: 40px;
  overflow-y: auto;
  padding-top: 40px;
}
@media screen and (max-width: 992px) {
  .p-nonflammable-printer .p-nonflammable__searchChange .maker-area {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.p-nonflammable-printer .p-nonflammable__searchChange .sort-ac-category {
  margin-bottom: 10px;
  overflow: hidden;
}
.p-nonflammable-printer .p-nonflammable__searchChange .sort-ac-head {
  position: relative;
  padding: 12px 40px 12px 36px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 700;
  border-bottom: 1px solid #c7ccd4;
}
.p-nonflammable-printer .p-nonflammable__searchChange .sort-ac-head::before {
  /* 左端チェックマーク */
  font-family: "Material Symbols Outlined";
  content: "check";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  font-size: 12px;
  color: #ffffff;
  background: #e2e2e2;
}
.p-nonflammable-printer .p-nonflammable__searchChange .sort-ac-category.is-open .sort-ac-head::before {
  background-color: #2c4ba6;
  color: #fff;
}
.p-nonflammable-printer .p-nonflammable__searchChange .sort-ac-head::after {
  /* 右端 + / － */
  font-family: "Material Symbols Outlined";
  content: "add";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #355bc8;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  text-align: center;
}
.p-nonflammable-printer .p-nonflammable__searchChange .sort-ac-category.is-open .sort-ac-head::after {
  font-family: "Material Symbols Outlined";
  content: "remove";
}
.p-nonflammable-printer .p-nonflammable__searchChange {
  /* 折りたたみ中身 */
}
.p-nonflammable-printer .p-nonflammable__searchChange .sort-ac-content {
  display: none;
  background: #ffffff;
}
.p-nonflammable-printer .p-nonflammable__searchChange .sort-ac-category.is-open .sort-ac-content {
  display: block;
}
.p-nonflammable-printer .p-nonflammable__searchChange .products-area {
  margin-right: 40px;
  margin-left: 40px;
  overflow-y: auto;
}
@media screen and (max-width: 992px) {
  .p-nonflammable-printer .p-nonflammable__searchChange .products-area {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.p-nonflammable-printer .p-nonflammable__searchChange .sort-btn-list {
  margin-top: 17px;
  margin-bottom: 30px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.p-nonflammable-printer .p-nonflammable__searchChange {
  /* 選択チップ表示 */
}
.p-nonflammable-printer .p-nonflammable__searchChange .selected-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.p-nonflammable-printer .p-nonflammable__searchChange .selected-filters .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #242933;
  font-weight: 500;
  height: 40px;
  padding-left: 17px;
  padding-right: 17px;
  background: #fff;
  border: 1px solid #7a7f88;
  border-radius: 30px;
}
@media screen and (max-width: 992px) {
  .p-nonflammable-printer .p-nonflammable__searchChange .selected-filters .chip {
    padding-left: 7px;
    padding-right: 7px;
    font-size: 1rem;
    height: auto;
  }
}
.p-nonflammable-printer .p-nonflammable__searchChange .selected-filters .chip .chip-type {
  opacity: 0.8;
  font-weight: 600;
}
.p-nonflammable-printer .p-nonflammable__searchChange .selected-filters .chip .chip-x {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  background: #ffffff;
  color: #666666;
  cursor: pointer;
  font-weight: 700;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table {
  position: relative;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table {
  border-collapse: collapse;
  width: 100%;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table thead .thead-th {
  text-align: right;
}
@media screen and (max-width: 992px) {
  .p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table thead .thead-th {
    text-align: center;
  }
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table thead th,
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table thead td {
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
  border: 1px solid #e2e2e2;
  background-color: #fff;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table tbody th,
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table tbody td {
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
  border: 1px solid #e2e2e2;
  background-color: #fff;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table {
  /* テーブルの列/行を隠す */
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table .table-hidden {
  display: none !important;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table {
  /* フッターボタン */
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table .tab-footer {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table .tab-footer .reset-btn,
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table .tab-footer .search-btn,
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table .tab-footer .close-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #d9d9d9;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table thead td.bac-color-04.mimaki {
  background-color: #ff0000 !important;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table thead td.bac-color-04.nihonhp {
  background-color: #00b0f0 !important;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table thead td.bac-color-04.roland {
  background-color: #0070c0 !important;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table thead td.bac-color-04.muto {
  background-color: #0c2850 !important;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table thead td.bac-color-04.canon {
  background-color: #cc0000 !important;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table thead td.bac-color-04.fujifilm {
  background-color: #404040 !important;
}
.p-nonflammable-printer .p-search-resultList .p-nonflammable-resultList__table table thead td.bac-color-04.ricohjp {
  background-color: #ff0000 !important;
}
.p-nonflammable-printer .p-search-resultList .scrollBtn {
  width: 40px;
  height: 80px;
  background-color: #cbcbcb;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
  position: absolute;
  top: 20%;
  opacity: 0.6;
}
.p-nonflammable-printer .p-search-resultList .scrollBtn.scrollBtn-right {
  right: 5%;
  visibility: visible;
}
.p-nonflammable-printer .p-search-resultList .scrollBtn.scrollBtn-right span {
  border-bottom: 15px solid transparent;
  border-top: 15px solid transparent;
  border-left: 15px solid #626262;
}
.p-nonflammable-printer .p-search-resultList .scrollBtn.scrollBtn-left {
  left: 5%;
  visibility: hidden;
}
.p-nonflammable-printer .p-search-resultList .scrollBtn.scrollBtn-left span {
  border-bottom: 15px solid transparent;
  border-top: 15px solid transparent;
  border-right: 15px solid #626262;
}
.p-nonflammable-printer .p-search-resultList .scrollBtn.scrollBtn-fixed {
  position: fixed;
  top: 25%;
  right: 15%;
}
@media screen and (max-width: 576px) {
  .p-nonflammable-printer .p-search-resultList .scrollBtn.scrollBtn-fixed {
    top: 40%;
    right: 10%;
  }
}
.p-nonflammable-printer .p-search-resultList .scrollBtn.scrollBtn-fixed.scrollBtn-left {
  left: 15%;
}
@media screen and (max-width: 576px) {
  .p-nonflammable-printer .p-search-resultList .scrollBtn.scrollBtn-fixed.scrollBtn-left {
    left: 40px;
  }
}

/*
---
name: products
category:
  - object
  - object/project/products
---

製品

*/
/*
---------------------
製品共通
---------------------
*/
@media screen and (max-width: 992px) {
  .p-products-under__link .c-column-3__flex {
    row-gap: 20px;
  }
}

.p-products__mainarea {
  background-image: url(../../shared/images/products/img_products_main.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  position: relative;
}
.p-products__mainarea--txt {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 3px 10px #496f85;
}
.p-products__material {
  margin-top: 40px;
}
.p-products__material .img-wrap {
  margin-top: 30px;
}
.p-products .p-top-product {
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .p-products .p-top-product {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
.p-products .p-top-product .c-title-border {
  margin-top: 0;
}
.p-products .p-top-product .p-top-product__btnarea {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .p-products .p-top-product .p-top-product__btnarea {
    margin-top: 30px;
    flex-direction: column;
    gap: 15px;
  }
}
@media screen and (min-width: 992px) {
  .p-products .p-top-product .p-top-product__btnarea .c-btn-boxarrow {
    width: 400px;
    height: 84px;
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 992px) {
  .p-products-head {
    display: flex;
    justify-content: space-between;
  }
}
.p-products-head__title {
  display: flex;
  flex: 1;
  align-items: center;
}
.p-products-head__title .main-txt {
  font-size: 3.2rem;
  font-weight: 500;
}
.p-products-head__title .sub-txt {
  margin-left: 40px;
  color: #355bc8;
}
.p-products-head__title.long-txt {
  display: block;
}
.p-products-head__title.long-txt .sub-txt {
  margin-top: 5px;
  margin-left: 0;
  color: #355bc8;
}
.p-products-head__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}
@media screen and (max-width: 992px) {
  .p-products-head__link {
    justify-content: inherit;
    margin-top: 30px;
    gap: 5px;
  }
}
.p-products-tabmenu {
  display: flex;
  flex-wrap: wrap;
}
.p-products-tabmenu__label {
  width: 50%;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  border-bottom: 3px solid #355bc8;
}
@media screen and (max-width: 992px) {
  .p-products-tabmenu__label {
    font-size: 1.2rem;
  }
}
.p-products-tabmenu__label p {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 992px) {
  .p-products-tabmenu__label p {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.p-products-tabmenu__label.product-link {
  background-color: #f2f2f2;
  border-bottom: 1px solid #7a7f88;
  border-radius: 10px 10px 0 0;
}
.p-products-tabmenu__label.product-link a {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 992px) {
  .p-products-tabmenu__label.product-link a {
    padding-top: 6px;
    padding-bottom: 6px;
    text-align: center;
  }
}
.p-products-tabmenu__label.product-link.no-link a {
  pointer-events: none;
  color: #999999;
}
.p-products-tabmenu.is-fixed {
  position: fixed;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  top: 42px; /* PC */
}
@media (max-width: 992px) {
  .p-products-tabmenu.is-fixed .p-products-tabmenu.is-fixed {
    top: 35px;
  }
  .p-products-tabmenu.is-fixed {
    /* 992px以下 */
  }
}
.p-products-submenu {
  position: relative;
}
.p-products-submenu.u-mt-10 {
  margin-top: 0 !important;
}
@media screen and (max-width: 992px) {
  .p-products-submenu__nav {
    height: 0;
    overflow: hidden;
    transition: height 0.3sease;
    padding: 0;
    box-sizing: border-box;
    background-color: #f2f4f8;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  }
}
.p-products-submenu__nav.is-open {
  height: auto;
}
.p-products-submenu__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px 40px;
  padding: 15px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* スマホでスムーズスクロール */
  padding-bottom: 20px;
}
.p-products-submenu__list::-webkit-scrollbar {
  width: 15px;
  height: 7px;
  border-radius: 20px;
}
.p-products-submenu__list::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 20px;
}
@media screen and (max-width: 576px) {
  .p-products-submenu__list::-webkit-scrollbar {
    display: none;
  }
}
.p-products-submenu__list li {
  flex: 0 0 auto;
}
.p-products-submenu__list li a {
  font-weight: bold;
}
.p-products-submenu__list li a.current {
  text-decoration-line: underline;
  text-decoration-color: rgb(53, 91, 200);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.5em;
}
@media screen and (min-width: 992px) {
  .p-products-submenu__bar {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .p-products-submenu__bar {
    width: 50%;
    height: 30px;
    position: absolute;
    background-color: #355bc8;
    color: #fff;
    top: 0;
    right: 0;
    transition: all 0.5s;
    padding: 5px;
    display: flex;
    align-items: center;
  }
  .p-products-submenu__bar--inner {
    background-color: transparent;
    width: 20px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
  }
  .p-products-submenu__bar--inner span,
  .p-products-submenu__bar--inner span::before,
  .p-products-submenu__bar--inner span::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.5s;
  }
  .p-products-submenu__bar--inner span::before {
    top: -7px;
  }
  .p-products-submenu__bar--inner span::after {
    bottom: -7px;
  }
  .p-products-submenu__bar.is-open span {
    background-color: transparent;
  }
  .p-products-submenu__bar.is-open span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .p-products-submenu__bar.is-open span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
}
.p-products-submenu.is-fixed {
  position: fixed;
  top: 0; /* JSで上書きされます */
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  z-index: 9;
  transform: translateY(0);
  max-width: 1360px;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (max-width: 1420px) {
  .p-products-submenu.is-fixed {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media screen and (max-width: 576px) {
  .p-products-submenu.is-fixed {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 992px) {
  .p-products-submenu.is-fixed {
    animation: none;
    transform: none;
  }
}
@media screen and (max-width: 992px) {
  .p-products-submenu.is-fixed .p-products-submenu__list {
    flex-wrap: nowrap;
    padding-top: 15px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    overflow-x: auto; /* 横スクロール有効 */
    -webkit-overflow-scrolling: touch; /* スマホでスムーズスクロール */
  }
  .p-products-submenu.is-fixed .p-products-submenu__list > li {
    flex: 0 0 auto;
  }
  .p-products-submenu.is-fixed .p-products-submenu__list li a {
    font-size: 1.6rem;
  }
}

/* 固定化されたタブは margin-top を必ず0に（!importantに勝つ） */
.p-products-tabmenu.is-stuck {
  margin-top: 0 !important;
}

/*
---------------------
パロア
---------------------
*/
.p-products-paroi__mainvisual img {
  margin-left: auto;
  margin-right: auto;
}
.p-products-paroi__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-paroi__lineup {
    margin-top: 30px;
  }
}
.p-products-paroi__lineup--item {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-products-paroi__lineup--item img {
    width: 100%;
  }
}
.p-products-paroi__link {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-paroi__link--item:not(:first-child) {
    margin-top: 30px;
  }
}
.p-products-paroi__inquiry--txt {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .p-products-paroi__inquiry--txt {
    margin-top: 15px;
  }
}
.p-products-paroi__inquiry--btn {
  margin-top: 35px;
}
@media screen and (max-width: 992px) {
  .p-products-paroi__inquiry--btn {
    margin-top: 30px;
  }
}

.p-products-paroibasic__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-paroibasic__title {
    margin-top: 30px;
  }
}
.p-products-paroibasic__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-paroibasic__mainimg {
    margin-top: 30px;
  }
}

.p-products-paroiconstruction__content .p-products-paroiconstruction__pagemenu {
  margin-top: 25px;
}
.p-products-paroiconstruction__content .p-products-paroiconstruction__pagelink {
  margin-top: 60px;
}

.p-products-paroilist__table table thead tr th {
  font-size: 1.2rem;
}
.p-products-paroilist__table table tbody tr th,
.p-products-paroilist__table table tbody tr td {
  font-size: 1.2rem;
}

.p-products-comfort__mainimg {
  margin-top: 36px;
}
.p-products-comfort__voice--coment {
  margin-top: 48px;
}
.p-products-comfort__construction--content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 992px) {
  .p-products-comfort__construction--content {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }
}
.p-products-comfort__construction--content .content-item {
  background-color: #eee;
  padding: 20px;
  padding-top: 40px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: 130px 1fr;
}
@media screen and (max-width: 992px) {
  .p-products-comfort__construction--content .content-item {
    padding-top: 20px;
    padding-bottom: 20px;
    grid-template-rows: auto;
  }
}
.p-products-comfort__construction--content .content-item-img {
  margin-top: 20px;
}
.p-products-comfort__construction--content .content-item-img img {
  margin-right: auto;
  margin-left: auto;
}

.p-products-relief__mainimg {
  margin-top: 36px;
}

.p-products-deco__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-deco__lineup {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .p-products-deco__lineup--item img {
    width: 100%;
  }
}

/*
---------------------
タペシート
---------------------
*/
.p-products-tapesheet__mainvisual img {
  margin-left: auto;
  margin-right: auto;
}
.p-products-tapesheet__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tapesheet__lineup {
    margin-top: 30px;
  }
}
.p-products-tapesheet__lineup--item {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-products-tapesheet__lineup--item img {
    width: 100%;
  }
}
.p-products-tapesheet__link {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tapesheet__link--item:not(:first-child) {
    margin-top: 30px;
  }
}
.p-products-tapesheet__inquiry--txt {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .p-products-tapesheet__inquiry--txt {
    margin-top: 15px;
  }
}
.p-products-tapesheet__inquiry--btn {
  margin-top: 35px;
}
@media screen and (max-width: 992px) {
  .p-products-tapesheet__inquiry--btn {
    margin-top: 30px;
  }
}

.p-products-tapesheetbasic__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tapesheetbasic__title {
    margin-top: 30px;
  }
}
.p-products-tapesheetbasic__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tapesheetbasic__mainimg {
    margin-top: 30px;
  }
}
.p-products-tapesheetbasic__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tapesheetbasic__lineup {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .p-products-tapesheetbasic__lineup--item img {
    width: 100%;
  }
}

/*
---------------------
タックペイント
---------------------
*/
.p-products-tacpaint__mainvisual img {
  margin-left: auto;
  margin-right: auto;
}
.p-products-tacpaint__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tacpaint__lineup {
    margin-top: 30px;
  }
}
.p-products-tacpaint__lineup--item {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-products-tacpaint__lineup--item img {
    width: 100%;
  }
}
.p-products-tacpaint__link {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tacpaint__link--item:not(:first-child) {
    margin-top: 30px;
  }
}
.p-products-tacpaint__inquiry--txt {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .p-products-tacpaint__inquiry--txt {
    margin-top: 15px;
  }
}
.p-products-tacpaint__inquiry--btn {
  margin-top: 35px;
}
@media screen and (max-width: 992px) {
  .p-products-tacpaint__inquiry--btn {
    margin-top: 30px;
  }
}

.p-products-tacpaintbasic__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tacpaintbasic__title {
    margin-top: 30px;
  }
}
.p-products-tacpaintbasic__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tacpaintbasic__mainimg {
    margin-top: 30px;
  }
}
.p-products-tacpaintbasic__listtable.table04 .image-fit {
  overflow: hidden;
}
.p-products-tacpaintbasic__listtable.table04 .image-fit img {
  transform: translate(-30%, -10%) scale(1.6);
}

.p-products-tacpainttk__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tacpainttk__title {
    margin-top: 30px;
  }
}
.p-products-tacpainttk__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tacpainttk__mainimg {
    margin-top: 30px;
  }
}

.p-products-tacpainteco-palet__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tacpainteco-palet__title {
    margin-top: 30px;
  }
}
.p-products-tacpainteco-palet__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tacpainteco-palet__mainimg {
    margin-top: 30px;
  }
}

.p-products-tacpaintnbs-bs__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tacpaintnbs-bs__title {
    margin-top: 30px;
  }
}
.p-products-tacpaintnbs-bs__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-tacpaintnbs-bs__mainimg {
    margin-top: 30px;
  }
}

/*
---------------------
ハルカラー
---------------------
*/
.p-products-harucolor__mainvisual img {
  margin-left: auto;
  margin-right: auto;
}
.p-products-harucolor__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-harucolor__lineup {
    margin-top: 30px;
  }
}
.p-products-harucolor__lineup--item {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-products-harucolor__lineup--item img {
    width: 100%;
  }
}
.p-products-harucolor__link {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-harucolor__link--item:not(:first-child) {
    margin-top: 30px;
  }
}
.p-products-harucolor__inquiry--txt {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .p-products-harucolor__inquiry--txt {
    margin-top: 15px;
  }
}
.p-products-harucolor__inquiry--btn {
  margin-top: 35px;
}
@media screen and (max-width: 992px) {
  .p-products-harucolor__inquiry--btn {
    margin-top: 30px;
  }
}

.p-products-harucoloreco-palet__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-harucoloreco-palet__title {
    margin-top: 30px;
  }
}
.p-products-harucoloreco-palet__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-harucoloreco-palet__mainimg {
    margin-top: 30px;
  }
}

.p-products-harucolorbasic__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-harucolorbasic__title {
    margin-top: 30px;
  }
}
.p-products-harucolorbasic__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-harucolorbasic__mainimg {
    margin-top: 30px;
  }
}

/*
---------------------
グラフィカル
---------------------
*/
.p-products-graphical .p-products-headarea img {
  width: clamp(158px, 20vw, 180px);
  height: auto;
}
.p-products-graphical__mainvisual img {
  margin-left: auto;
  margin-right: auto;
}
.p-products-graphical__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-graphical__lineup {
    margin-top: 30px;
  }
}
.p-products-graphical__lineup--item {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-products-graphical__lineup--item img {
    width: 100%;
  }
}
.p-products-graphical__link {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-graphical__link--item:not(:first-child) {
    margin-top: 30px;
  }
}
.p-products-graphical__inquiry--txt {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .p-products-graphical__inquiry--txt {
    margin-top: 15px;
  }
}
.p-products-graphical__inquiry--btn {
  margin-top: 35px;
}
@media screen and (max-width: 992px) {
  .p-products-graphical__inquiry--btn {
    margin-top: 30px;
  }
}

.p-products-graphicalbasic__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-graphicalbasic__title {
    margin-top: 30px;
  }
}
.p-products-graphicalbasic__content .c-table-scrollArea__table .scrollBtn.scrollBtn-left {
  left: 5%;
}
.p-products-graphicalbasic__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-graphicalbasic__mainimg {
    margin-top: 30px;
  }
}
.p-products-graphicalbasic__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-graphicalbasic__lineup {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .p-products-graphicalbasic__lineup--item img {
    width: 100%;
  }
}

.p-products-graphicalproduct__list .c-table thead tr th {
  font-size: 1.3rem;
}
.p-products-graphicalproduct__list .c-table tbody tr th {
  color: #fff;
  font-size: 1.3rem;
}
.p-products-graphicalproduct__list .c-table tbody tr td {
  font-size: 1.3rem;
}
.p-products-graphicalproduct__list .c-table.simpleBorder.narrow-padding thead tr th {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  padding-left: 10px;
}
.p-products-graphicalproduct__list .c-table.simpleBorder.narrow-padding thead tr td,
.p-products-graphicalproduct__list .c-table.simpleBorder.narrow-padding tbody tr th,
.p-products-graphicalproduct__list .c-table.simpleBorder.narrow-padding tbody tr td {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
}

.p-products-graphicalreference__table01 table tbody tr:nth-child(odd) th,
.p-products-graphicalreference__table01 table tbody tr:nth-child(even) th,
.p-products-graphicalreference__table01 table tbody tr:nth-child(even) td,
.p-products-graphicalreference__table01 table tbody tr:nth-child(odd) td {
  border-top: none !important;
}
.p-products-graphicalreference__table01 table tbody tr:last-child th,
.p-products-graphicalreference__table01 table tbody tr:last-child td {
  border-bottom: none !important;
}
.p-products-graphicalreference__table01 table tbody tr th.bac-color-head {
  background-color: #ffc1c1 !important;
  border-top: 1px solid #707070 !important;
  border-bottom: 1px solid #707070;
}
.p-products-graphicalreference__table02 table tbody tr:nth-child(odd) th,
.p-products-graphicalreference__table02 table tbody tr:nth-child(even) th,
.p-products-graphicalreference__table02 table tbody tr:nth-child(even) td,
.p-products-graphicalreference__table02 table tbody tr:nth-child(odd) td {
  border-top: none !important;
}
.p-products-graphicalreference__table02 table tbody tr:last-child th,
.p-products-graphicalreference__table02 table tbody tr:last-child td {
  border-bottom: none !important;
}
.p-products-graphicalreference__table02 table tbody tr th.bac-color-head {
  background-color: #bcffff !important;
  border-top: 1px solid #707070 !important;
  border-bottom: 1px solid #707070;
}
.p-products-graphicalreference__table03 table tbody tr:nth-child(odd) th,
.p-products-graphicalreference__table03 table tbody tr:nth-child(even) th,
.p-products-graphicalreference__table03 table tbody tr:nth-child(even) td,
.p-products-graphicalreference__table03 table tbody tr:nth-child(odd) td {
  border-top: none !important;
}
.p-products-graphicalreference__table03 table tbody tr:last-child th,
.p-products-graphicalreference__table03 table tbody tr:last-child td {
  border-bottom: none !important;
}
.p-products-graphicalreference__table03 table tbody tr th.bac-color-head {
  background-color: #b2ffb2 !important;
  border-top: 1px solid #707070 !important;
  border-bottom: 1px solid #707070;
}

.p-products-printerior__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-printerior__title {
    margin-top: 30px;
  }
}
.p-products-printerior__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-printerior__mainimg {
    margin-top: 30px;
  }
}
.p-products-printerior__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-printerior__lineup {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .p-products-printerior__lineup--item img {
    width: 100%;
  }
}
.p-products-printerior__texturecolumn .c-column-flex {
  align-items: flex-start;
  flex-wrap: nowrap;
}
.p-products-printerior__texturecolumn .c-column-flex dt {
  flex-shrink: 0;
}
.p-products-printerior__texturecolumn .c-column-flex dd {
  margin-left: 2em;
  text-indent: -2em;
}
@media screen and (min-width: 576px) {
  .p-products-printerior__texturerow.c-column-row {
    display: flex;
    gap: 10px 26px;
  }
}
.p-products-printerior__texturetable.c-table.simpleBorder.narrow-padding thead tr th, .p-products-printerior__texturetable.c-table.simpleBorder.narrow-padding thead tr td, .p-products-printerior__texturetable.c-table.simpleBorder.narrow-padding tbody tr th, .p-products-printerior__texturetable.c-table.simpleBorder.narrow-padding tbody tr td {
  font-size: 1.3rem;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 15px;
  padding-left: 15px;
}
.p-products-printerior__texturetable.c-table.simpleBorder.narrow-padding thead tr th {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 15px;
  padding-left: 15px;
}
.p-products-printerior__listtable.c-table.narrow-padding-03 thead tr th, .p-products-printerior__listtable.c-table.narrow-padding-03 thead tr td, .p-products-printerior__listtable.c-table.narrow-padding-03 tbody tr th, .p-products-printerior__listtable.c-table.narrow-padding-03 tbody tr td {
  font-size: 1.3rem;
}

.p-products-wallcos__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-wallcos__title {
    margin-top: 30px;
  }
}
.p-products-wallcos__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-wallcos__mainimg {
    margin-top: 30px;
  }
}
.p-products-wallcos__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-wallcos__lineup {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .p-products-wallcos__lineup--item img {
    width: 100%;
  }
}
.p-products-wallcos__listtable.c-table.simpleBorder.narrow-padding thead tr th, .p-products-wallcos__listtable.c-table.simpleBorder.narrow-padding tbody tr th, .p-products-wallcos__listtable.c-table.simpleBorder.narrow-padding tbody tr td {
  font-size: 1.3rem;
}

.p-products-floor-deco__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-floor-deco__title {
    margin-top: 30px;
  }
}
.p-products-floor-deco__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-floor-deco__mainimg {
    margin-top: 30px;
  }
}
.p-products-floor-deco__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-floor-deco__lineup {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .p-products-floor-deco__lineup--item img {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .p-products-floor-deco__construction .c-column-4 {
    grid-row-gap: 50px;
  }
  .p-products-floor-deco__construction .c-box-changearrow__item:not(:first-child)::before {
    top: -30px;
  }
}
.p-products-floor-deco__listtable.c-table.simpleBorder.narrow-padding thead tr th, .p-products-floor-deco__listtable.c-table.simpleBorder.narrow-padding thead tr td, .p-products-floor-deco__listtable.c-table.simpleBorder.narrow-padding tbody tr th, .p-products-floor-deco__listtable.c-table.simpleBorder.narrow-padding tbody tr td {
  font-size: 1.3rem;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 15px;
  padding-left: 15px;
}
.p-products-floor-deco__listtable.c-table.simpleBorder.narrow-padding thead tr th {
  padding-top: 5px;
  padding-bottom: 5px;
}

/*
---------------------
コントラビジョンORS
---------------------
*/
.p-products-contravision__mainvisual img {
  margin-left: auto;
  margin-right: auto;
}
.p-products-contravision__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-contravision__lineup {
    margin-top: 30px;
  }
}
.p-products-contravision__lineup--item {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-products-contravision__lineup--item img {
    width: 100%;
  }
}
.p-products-contravision__link {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-contravision__link--item:not(:first-child) {
    margin-top: 30px;
  }
}
.p-products-contravision__inquiry--txt {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .p-products-contravision__inquiry--txt {
    margin-top: 15px;
  }
}
.p-products-contravision__inquiry--btn {
  margin-top: 35px;
}
@media screen and (max-width: 992px) {
  .p-products-contravision__inquiry--btn {
    margin-top: 30px;
  }
}

.p-products-contravisionbasic__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-contravisionbasic__title {
    margin-top: 30px;
  }
}
.p-products-contravisionbasic__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-contravisionbasic__mainimg {
    margin-top: 30px;
  }
}
.p-products-contravisionbasic__maintxt {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.p-products-contravisionbasic__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-contravisionbasic__lineup {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .p-products-contravisionbasic__lineup--item img {
    width: 100%;
  }
}

/*
---------------------
グラステックス
---------------------
*/
.p-products-glasstex__mainvisual img {
  margin-left: auto;
  margin-right: auto;
}
.p-products-glasstex__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-glasstex__lineup {
    margin-top: 30px;
  }
}
.p-products-glasstex__lineup--item {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-products-glasstex__lineup--item img {
    width: 100%;
  }
}
.p-products-glasstex__link {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-glasstex__link--item:not(:first-child) {
    margin-top: 30px;
  }
}
.p-products-glasstex__inquiry--txt {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .p-products-glasstex__inquiry--txt {
    margin-top: 15px;
  }
}
.p-products-glasstex__inquiry--btn {
  margin-top: 35px;
}
@media screen and (max-width: 992px) {
  .p-products-glasstex__inquiry--btn {
    margin-top: 30px;
  }
}

.p-products-glasstexbasic__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-glasstexbasic__title {
    margin-top: 30px;
  }
}
.p-products-glasstexbasic__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-glasstexbasic__mainimg {
    margin-top: 30px;
  }
}
.p-products-glasstexbasic__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-glasstexbasic__lineup {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .p-products-glasstexbasic__lineup--item img {
    width: 100%;
  }
}

/*
---------------------
ラグフレックス
---------------------
*/
.p-products-lagflex__mainvisual img {
  margin-left: auto;
  margin-right: auto;
}
.p-products-lagflex__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-lagflex__lineup {
    margin-top: 30px;
  }
}
.p-products-lagflex__lineup--item {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-products-lagflex__lineup--item img {
    width: 100%;
  }
}
.p-products-lagflex__link {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-lagflex__link--item:not(:first-child) {
    margin-top: 30px;
  }
}
.p-products-lagflex__inquiry--txt {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .p-products-lagflex__inquiry--txt {
    margin-top: 15px;
  }
}
.p-products-lagflex__inquiry--btn {
  margin-top: 35px;
}
@media screen and (max-width: 992px) {
  .p-products-lagflex__inquiry--btn {
    margin-top: 30px;
  }
}

.p-products-lagflexbasic__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-lagflexbasic__title {
    margin-top: 30px;
  }
}
.p-products-lagflexbasic__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-lagflexbasic__mainimg {
    margin-top: 30px;
  }
}

/*
---------------------
ラミネーター・シート加工機
---------------------
*/
.p-products-laminator__mainvisual img {
  margin-left: auto;
  margin-right: auto;
}
.p-products-laminator__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-laminator__lineup {
    margin-top: 30px;
  }
}
.p-products-laminator__lineup--item {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-products-laminator__lineup--item img {
    width: 100%;
  }
}
.p-products-laminator__link {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-laminator__link--item:not(:first-child) {
    margin-top: 30px;
  }
}
.p-products-laminator__inquiry--txt {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .p-products-laminator__inquiry--txt {
    margin-top: 15px;
  }
}
.p-products-laminator__inquiry--btn {
  margin-top: 35px;
}
@media screen and (max-width: 992px) {
  .p-products-laminator__inquiry--btn {
    margin-top: 30px;
  }
}

.p-products-laminatorshield50__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-laminatorshield50__title {
    margin-top: 30px;
  }
}
.p-products-laminatorshield50__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-laminatorshield50__mainimg {
    margin-top: 30px;
  }
}

.p-products-laminatorrollsroller__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-laminatorrollsroller__title {
    margin-top: 30px;
  }
}
.p-products-laminatorrollsroller__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-laminatorrollsroller__mainimg {
    margin-top: 30px;
  }
}

.p-products-laminatorxy__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-laminatorxy__title {
    margin-top: 30px;
  }
}
.p-products-laminatorxy__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-laminatorxy__mainimg {
    margin-top: 30px;
  }
}

.p-products-laminatorroller__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-laminatorroller__title {
    margin-top: 30px;
  }
}
.p-products-laminatorroller__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-laminatorroller__mainimg {
    margin-top: 30px;
  }
}

/*
---------------------
副資材
---------------------
*/
.p-products-auxiliary-materials__mainvisual img {
  margin-left: auto;
  margin-right: auto;
}
.p-products-auxiliary-materials__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materials__lineup {
    margin-top: 30px;
  }
}
.p-products-auxiliary-materials__lineup--item {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-products-auxiliary-materials__lineup--item img {
    width: 100%;
  }
}
.p-products-auxiliary-materials__link {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materials__link--item:not(:first-child) {
    margin-top: 30px;
  }
}
.p-products-auxiliary-materials__inquiry--txt {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materials__inquiry--txt {
    margin-top: 15px;
  }
}
.p-products-auxiliary-materials__inquiry--btn {
  margin-top: 35px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materials__inquiry--btn {
    margin-top: 30px;
  }
}

.p-products-auxiliary-materialstape__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialstape__title {
    margin-top: 30px;
  }
}
.p-products-auxiliary-materialstape__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialstape__mainimg {
    margin-top: 30px;
  }
}
.p-products-auxiliary-materialstape__lineup {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialstape__lineup {
    margin-top: 30px;
  }
}
.p-products-auxiliary-materialstape__lineup--item {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-products-auxiliary-materialstape__lineup--item img {
    width: 100%;
  }
}

.p-products-auxiliary-materialssqueegee__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialssqueegee__title {
    margin-top: 30px;
  }
}
.p-products-auxiliary-materialssqueegee__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialssqueegee__mainimg {
    margin-top: 30px;
  }
}

.p-products-auxiliary-materialsbrush__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialsbrush__title {
    margin-top: 30px;
  }
}
.p-products-auxiliary-materialsbrush__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialsbrush__mainimg {
    margin-top: 30px;
  }
}

.p-products-auxiliary-materialsbond__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialsbond__title {
    margin-top: 30px;
  }
}
.p-products-auxiliary-materialsbond__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialsbond__mainimg {
    margin-top: 30px;
  }
}

.p-products-auxiliary-materialsprimer__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialsprimer__title {
    margin-top: 30px;
  }
}
.p-products-auxiliary-materialsprimer__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialsprimer__mainimg {
    margin-top: 30px;
  }
}

.p-products-auxiliary-materialsrokuro__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialsrokuro__title {
    margin-top: 30px;
  }
}
.p-products-auxiliary-materialsrokuro__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialsrokuro__mainimg {
    margin-top: 30px;
  }
}

.p-products-auxiliary-materialsperfect__title {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialsperfect__title {
    margin-top: 30px;
  }
}
.p-products-auxiliary-materialsperfect__mainimg {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-products-auxiliary-materialsperfect__mainimg {
    margin-top: 30px;
  }
}

/*
---
name: related-bnr
category:
  - object
  - object/project/related-bnr
---

related-bnr

*/
.p-related-bnr {
  background-color: #F5F7FE;
  padding-top: 30px;
  padding-bottom: 60px;
  margin-top: 60px;
}
.p-related-bnr .c-title-border {
  margin-top: 0;
  margin-bottom: 30px;
}
.p-related-bnr__btnarea {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
@media screen and (max-width: 768px) {
  .p-related-bnr__btnarea {
    max-width: 348px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .p-related-bnr__btnarea {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }
}
@media screen and (min-width: 992px) {
  .p-related-bnr__btnarea {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }
}
.p-related-bnr__btnarea--item img {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .p-related-bnr__btnarea--item img {
    width: 100%;
    height: 100px;
    max-width: 100%;
    height: auto;
  }
}

/*
---
name: search
category:
  - object
  - object/project/search
---

製品検索

*/
.p-thumbmodal__top * {
  min-height: 0;
  min-width: 0;
}

.p-search-displayChange {
  display: flex;
  gap: 10px;
  align-items: center;
}
.p-search-displayChange svg {
  fill: #7a7f88;
}
.p-search-displayChange svg.current {
  fill: #355BC8;
}

.p-search-top {
  position: relative;
  background-color: #f5fbfe;
  padding-top: 20px;
}
.p-search-top.result-page {
  background-color: #fff;
}
.p-search-top.result-page .p-search-top__inner {
  text-align: left;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .p-search-top.result-page .p-search-top__inner {
    flex-direction: column;
  }
}
.p-search-top__result-bg {
  background-color: #f2f4f8;
  padding: 10px;
}
.p-search-top__inner {
  text-align: right;
}
.p-search-top__changeBtn {
  cursor: pointer;
  background-color: #355BC8;
  color: #fff;
  font-weight: bold;
  padding: 20px 90px 20px 30px;
  position: relative;
  width: 280px;
}
@media screen and (max-width: 992px) {
  .p-search-top__changeBtn {
    margin-top: 10px;
  }
}
.p-search-top__changeBtn:after {
  position: absolute;
  content: "＋";
  right: 20px;
}
.p-search-top__changeBtn.is-open:after {
  content: "－";
}

.p-search-searchBox-btnarea {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  padding: 0;
  box-sizing: border-box;
  background-color: #f2f4f8;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
}
.p-search-searchBox-btnarea.is-open {
  height: auto;
}
.p-search-searchBox {
  background-color: #f5fbfe;
}
.p-search-searchBox__wrap {
  padding-top: 30px;
  padding-bottom: 60px;
}
.p-search-searchBox .searchWindow__title {
  font-size: 1.8rem;
  font-weight: bold;
  min-width: 200px;
  display: none;
}
.p-search-searchBox .searchWindow__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .p-search-searchBox .searchWindow__wrap {
    flex-direction: column;
  }
}
.p-search-searchBox .searchWindow__box {
  min-width: 500px;
  min-height: 50px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .p-search-searchBox .searchWindow__box {
    min-width: inherit;
    width: 100%;
  }
}
.p-search-searchBox .searchWindow__box:before {
  content: "品番検索";
  position: absolute;
  font-size: 1.8rem;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  left: -125px;
}
.p-search-searchBox .searchWindow__box input[type=text] {
  background-color: #fff;
  border: 1px solid #c7ccd4;
  height: 50px;
  width: 405px;
  padding: 15px 0 15px 30px;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 992px) {
  .p-search-searchBox .searchWindow__box input[type=text] {
    width: 80%;
  }
}
.p-search-searchBox .searchWindow__box input[type=submit] {
  cursor: pointer;
  border: 0;
  background-color: #2c4ba6;
  padding: 0;
  width: 95px;
  height: 50px;
  position: absolute;
  left: 405px;
  top: 0;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  .p-search-searchBox .searchWindow__box input[type=submit] {
    width: 20%;
    right: 0;
    left: inherit;
  }
}
.p-search-searchBox .searchWindow__form {
  position: relative;
}
.p-search-searchBox .searchRadio__inner .radio-type-02 {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-search-searchBox .searchRadio__inner .radio-type-02 {
    flex-direction: column;
  }
}
.p-search-searchBox .searchRadio label {
  margin-bottom: 0;
}
.p-search-searchBox .searchButton__inner {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.p-search-searchBox .searchButton .btn {
  cursor: pointer;
  width: 200px;
  padding: 15px;
  font-weight: bold;
  color: #fff;
  border: none;
}
.p-search-searchBox .searchButton .btn:hover {
  opacity: 0.8;
}
.p-search-searchBox .searchButton .btn.clear {
  background-color: #7a7f88;
}
.p-search-searchBox .searchButton .btn.number {
  background-color: #355BC8;
}

.hidden-item {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  padding: 0;
  box-sizing: border-box;
  background-color: #fff;
}
.hidden-item.is-open {
  height: auto;
}

.p-search-resultList {
  margin-top: 20px;
}
.p-search-resultList--table .p-search-resultList__inner {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .p-search-resultList--table .p-search-resultList__inner {
    justify-content: space-between;
  }
}
.p-search-resultList .p-thumb-list__item {
  flex-basis: 23%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .p-search-resultList .p-thumb-list__item {
    flex-basis: 48%;
  }
}
.p-search-resultList__inner {
  gap: 30px;
}
@media screen and (max-width: 1300px) {
  .p-search-resultList__inner {
    gap: 25px;
  }
}
@media screen and (max-width: 1200px) {
  .p-search-resultList__inner {
    gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .p-search-resultList__inner {
    gap: 0;
    row-gap: 20px;
  }
}
.p-search-resultList__table {
  position: relative;
}
.p-search-resultList__table table {
  border-collapse: collapse;
  width: 100%;
}
.p-search-resultList__table table tr:hover td {
  background-color: #f2f4f8;
}
.p-search-resultList__table th {
  font-weight: bold;
  color: #fff;
  background-color: #083388;
}
.p-search-resultList__table th,
.p-search-resultList__table td {
  border: 1px solid #7a7f88;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
}
.p-search-resultList__table img {
  display: block;
  width: 100%;
  height: auto;
}
.p-search-resultList__table .bg-gray {
  background-color: #eeeeee;
}
.p-search-resultList__table .product-img {
  padding: 0;
  width: 100px;
}
@media screen and (max-width: 992px) {
  .p-search-resultList__table .product-img {
    width: 52px;
  }
}
.p-search-resultList__table .product-img .new {
  color: #e61616;
}
.p-search-resultList__table .cartBtn .material-symbols-outlined {
  color: #7a7f88;
  font-size: 4.2rem;
}
.p-search-resultList__table .favoriteBtn {
  cursor: pointer;
}
.p-search-resultList__table .favoriteBtn .material-symbols-outlined {
  color: #7a7f88;
  font-size: 3.6rem;
}
.p-search-resultList__table .favoriteBtn.add .material-icons {
  color: #e61616;
  font-size: 3.6rem;
}
.p-search-resultList__table .favoriteBtn.is-active {
  color: #e61616;
}
.p-search-resultList__table .favoriteBtn.is-active .material-icons {
  font-size: 3.6rem;
}
@media screen and (max-width: 992px) {
  .p-search-resultList__table .p-thumb-list__item-number {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 992px) {
  .p-search-resultList .scrollBtn {
    width: 40px;
    height: 80px;
    background-color: #cbcbcb;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 100;
    position: absolute;
    top: 20%;
    opacity: 0.6;
  }
  .p-search-resultList .scrollBtn.scrollBtn-right {
    right: 5%;
    visibility: visible;
  }
  .p-search-resultList .scrollBtn.scrollBtn-right span {
    border-bottom: 15px solid transparent;
    border-top: 15px solid transparent;
    border-left: 15px solid #626262;
  }
  .p-search-resultList .scrollBtn.scrollBtn-left {
    left: 250px;
    visibility: hidden;
  }
  .p-search-resultList .scrollBtn.scrollBtn-left span {
    border-bottom: 15px solid transparent;
    border-top: 15px solid transparent;
    border-right: 15px solid #626262;
  }
  .p-search-resultList .scrollBtn.scrollBtn-fixed {
    position: fixed;
    top: 10%;
    right: 15%;
  }
  .p-search-resultList .scrollBtn.scrollBtn-fixed.scrollBtn-left {
    left: 550px;
  }
  .p-search-resultList .scrollBtn {
    display: none;
  }
  .p-search-resultList__table {
    position: static;
  }
  .p-search-resultList__table .c-table.scroll-x {
    overflow: inherit;
    white-space: inherit;
  }
  .p-search-resultList__table .c-table table {
    white-space: inherit;
  }
  .p-search-resultList__table thead th,
  .p-search-resultList__table thead td,
  .p-search-resultList__table tbody th,
  .p-search-resultList__table tbody td {
    font-size: 1rem;
    padding: 5px !important;
  }
  .p-search-resultList__table .product-img {
    padding: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .p-search-resultList__table .c-table.scroll-x {
    overflow: scroll;
  }
  .p-search-resultList__table .c-table table {
    border-collapse: collapse;
    white-space: nowrap;
    cursor: pointer;
    width: 100%;
  }
  .p-search-resultList__table thead th,
  .p-search-resultList__table thead td,
  .p-search-resultList__table tbody th,
  .p-search-resultList__table tbody td {
    font-size: 0.8rem;
    padding: 3px !important;
  }
  .p-search-resultList__table .product-img {
    width: 40px;
  }
  .p-search-resultList__table .favoriteBtn .material-symbols-outlined {
    font-size: 2.6rem;
  }
}

.p-search-resultList__table-sp {
  display: none;
}
@media screen and (max-width: 992px) {
  .p-search-resultList__table-sp {
    display: block;
  }
}
.p-search-resultList__table-sp__item {
  border-bottom: 1px solid #efefef;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 320px) {
  .p-search-resultList__table-sp__item {
    flex-direction: column;
  }
}
.p-search-resultList__table-sp__item:first-child {
  border-top: 1px solid #efefef;
}
.p-search-resultList__table-sp__item .thumb img {
  border: 1px solid #7a7f88;
  min-width: 100px;
}
.p-search-resultList__table-sp__item .btn {
  flex-shrink: 0;
}
.p-search-resultList__table-sp__item .btn button {
  width: 100%;
  border: 2px solid #e2e2e2;
  background-color: #efefef;
  padding: 20px;
  cursor: pointer;
}
.p-search-resultList__table-sp__item .btn .btn-item01 {
  margin-bottom: 10px;
}

@media screen and (max-width: 992px) {
  .p-search__container .p-member__title-sortBox {
    justify-content: flex-start;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 5px;
    margin-top: 5px;
  }
  .p-search__container .p-member__title-selectBox:nth-child(1) {
    order: 2;
  }
  .p-search__container .p-member__title-selectBox:nth-child(2) {
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .p-search__container .p-member__title-sortBox {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}

@media screen and (max-width: 992px) {
  .p-search-cartIcon {
    order: 1;
    text-align: left;
  }
}
.p-search-cartIcon .material-symbols-outlined {
  font-size: 4.5rem;
  color: #7a7f88;
}
@media screen and (max-width: 992px) {
  .p-search-cartIcon .material-symbols-outlined {
    font-size: 3.5rem;
  }
}

.thumb-subslider {
  margin-top: 10px;
}
.thumb-subslider__inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.thumb-subslider__item {
  flex-basis: calc(20% - 10px);
}
.thumb-subslider__item:hover {
  cursor: pointer;
}

.thumb-subslider-active {
  opacity: 0.3;
}

.searchCondition {
  margin-top: 30px;
  margin-bottom: 30px;
}
.searchCondition.r-tabs {
  position: relative;
}
.searchCondition.r-tabs .search-list.r-tabs-nav {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .searchCondition.r-tabs .search-list.r-tabs-nav {
    display: none;
  }
}
.searchCondition.r-tabs .search-list .r-tabs-tab {
  margin: 0;
  list-style: none;
  flex: 1;
  flex-basis: 32%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
}
.searchCondition.r-tabs .search-list .r-tabs-tab .r-tabs-anchor {
  height: 100%;
  display: inline-block;
  padding: 20px;
  border: 1px solid #ccc;
  font-weight: bold;
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  color: #242933;
  position: relative;
  transition: all 0.3s;
  font-size: 1.4rem;
}
.searchCondition.r-tabs .search-list .r-tabs-tab .r-tabs-anchor .large {
  font-size: 1.8rem;
}
.searchCondition.r-tabs .search-list .r-tabs-tab.r-tabs-state-active .r-tabs-anchor {
  color: #fff;
  background-color: #355BC8;
}
.searchCondition.r-tabs .search-list .r-tabs-tab.r-tabs-state-active .r-tabs-anchor:after {
  transform: rotate(180deg);
  color: #fff;
}
.searchCondition.r-tabs .search-list .r-tabs-tab.no-active .r-tabs-anchor {
  color: #7a7f88;
}
.searchCondition.r-tabs .search-list .r-tabs-tab.no-active .r-tabs-anchor:after {
  color: #242933;
}
.searchCondition.r-tabs .search-list__content.r-tabs-panel {
  display: none;
  background-color: #fff;
  border: 1px solid #cccccc;
  padding: 30px;
}
.searchCondition.r-tabs .search-list__content.r-tabs-panel.r-tabs-state-active {
  display: block;
}
.searchCondition.r-tabs .r-tabs-accordion-title {
  display: none;
}
@media screen and (max-width: 992px) {
  .searchCondition.r-tabs .r-tabs-accordion-title {
    display: block;
  }
}
.searchCondition.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
  display: block;
  padding: 20px;
  background-color: #fff;
  color: #242933;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.searchCondition.r-tabs .r-tabs-accordion-title .r-tabs-anchor:after {
  font-family: "Material Icons";
  content: "keyboard_arrow_down";
  font-weight: normal;
  font-size: 1.5rem;
  color: #242933;
  transition: all 0.3s;
}
.searchCondition.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
  background-color: #355BC8;
  color: #fff;
}
.searchCondition.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor:after {
  transform: rotate(180deg);
  color: #fff;
}
.searchCondition.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
  opacity: 0.5;
}
.searchCondition .r-tabs:not(:first-child) {
  margin-top: 15px;
}
@media screen and (max-width: 992px) {
  .searchCondition .r-tabs:not(:first-child) {
    margin-top: 0;
  }
}

.p-search-tab {
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 30px;
}
@media screen and (max-width: 576px) {
  .p-search-tab {
    display: block;
  }
}

/* 各タブボタンの設定 */
.p-search-tab > label {
  flex: 1;
  order: -1;
  position: relative;
  padding: 30px;
  background-color: #fff;
  color: #242933;
  text-align: center;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.p-search-tab > label span {
  font-size: 1.8rem;
}
@media screen and (max-width: 576px) {
  .p-search-tab > label {
    margin-top: 10px;
    color: #c7ccd4;
  }
}

/* タブボタンのホバーおよび選択状態のスタイル */
.p-search-tab > label:hover,
.p-search-tab > label:has(:checked) {
  background-color: #2c4ba6;
  color: #fff;
}

.p-search-tab__label.no-active {
  background-color: #fff !important;
  color: #7a7f88;
}
@media screen and (max-width: 576px) {
  .p-search-tab__label.no-active {
    color: #c7ccd4;
  }
}

.p-search-tab__label.is-active {
  background-color: #2c4ba6;
  color: #fff;
}

/* ラジオボタン自体は非表示 */
.p-search-tab input[type=radio] {
  display: none;
}
/* タブコンテンツのスタイル */
.p-search-tab__content {
  display: none; /* 初期状態では非表示 */
  width: 100%; /* コンテンツ幅を全体に */
  padding: 30px; /* 内側余白 */
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  z-index: 1;
}
.p-search-tab__content.reset-area {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-search-tab__content {
    padding: 10px;
  }
}
.p-search-tab__content .close-btn-bottom {
  display: block;
  margin: 30px auto 0;
  font-size: 1.6rem;
  color: #333333;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  background-color: #fff;
}
.p-search-tab__content .close-btn-bottom:hover {
  opacity: 0.8;
}

/* 選択されたタブのコンテンツを表示 */
.p-search-tab > .p-search-tab__label:has(:checked) + .p-search-tab__content {
  display: block;
}

/* タブ内アコーディオンここから */
.p-search-tab__accordion-title {
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 35px;
  border-bottom: 2px solid #cccccc;
  position: relative;
  cursor: pointer;
}
.p-search-tab__accordion-title:before {
  position: absolute;
  content: "keyboard_arrow_down";
  font-family: "Material Icons";
  font-size: 2.8rem;
  font-weight: normal;
  right: 0;
  top: 50%;
  transition: transform 0.4s;
  transform: translate(-50%, -50%);
  color: #355BC8;
}
.p-search-tab__accordion-title.active:before {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.p-search-tab__accordion-contents {
  overflow: hidden;
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  height: 0;
  opacity: 0;
  padding-top: 30px;
}
.p-search-tab__accordion-contents.is-open {
  height: auto;
  opacity: 1;
}
.p-search-tab .no-active > div {
  color: #7a7f88;
}
@media screen and (max-width: 768px) {
  .p-search-tab .no-active > div {
    color: #c7ccd4;
  }
}

.p-search-tab .checkBox-style01 label {
  position: relative;
}
.p-search-tab .checkBox-style01 input[type=checkbox] {
  display: none;
}
.p-search-tab .checkBox-style01 > label:has(:checked) {
  border: 1px solid #355BC8;
  background-color: #E2E9FD;
}
.p-search-tab .checkBox-style01 label a {
  width: 100%;
}
.p-search-tab .group {
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
}
.p-search-tab .group label {
  flex-basis: 33%;
  order: -1;
  position: relative;
  cursor: pointer;
  border: 1px solid #ccc;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100px;
}
@media screen and (max-width: 576px) {
  .p-search-tab .group label {
    height: auto;
  }
}
.p-search-tab .group label .bland-name {
  color: #242933;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  top: 10px;
  left: 10px;
}
@media screen and (max-width: 576px) {
  .p-search-tab .group label .bland-name {
    left: 5px;
  }
}
.p-search-tab .group label .bland-image {
  margin: 0 auto;
  margin-top: 7%;
  width: 100% !important;
  height: 55px;
  max-width: 85%;
  min-width: 85%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 576px) {
  .p-search-tab .group label .bland-image {
    margin-top: 40px;
    height: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .p-search-tab .group label {
    flex-basis: 50%;
    padding: 5px;
  }
}
.p-search-tab .condition-filter {
  margin-top: 30px;
}
.p-search-tab .condition-filter__item {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 2px dotted #cccccc;
}
@media screen and (max-width: 576px) {
  .p-search-tab .condition-filter__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-search-tab .condition-filter__item:not(:first-child) {
  padding-top: 30px;
}
.p-search-tab .condition-filter__item:last-child {
  border-bottom: none;
}
.p-search-tab .condition-filter__title {
  font-weight: bold;
  font-size: 1.6rem;
  min-width: 150px;
  padding-left: 25px;
}
@media screen and (max-width: 576px) {
  .p-search-tab .condition-filter__title {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
.p-search-tab .condition-filter__input {
  width: 100%;
}

.p-search-subTab__group {
  position: static;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 16px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-search-subTab__group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 8px;
  }
}
.p-search-subTab__group .p-search-subTab__label {
  border-bottom: 2px solid #ccc;
}
.p-search-subTab__group .p-search-subTab__item:nth-child(1) .p-search-subTab__label,
.p-search-subTab__group .p-search-subTab__item:nth-child(2) .p-search-subTab__label,
.p-search-subTab__group .p-search-subTab__item:nth-child(3) .p-search-subTab__label {
  border-top: 2px solid #ccc;
}
@media screen and (max-width: 992px) {
  .p-search-subTab__group .p-search-subTab__item:nth-child(3) .p-search-subTab__label {
    border-top: none;
  }
}
@media screen and (max-width: 576px) {
  .p-search-subTab__group:first-child .p-search-subTab__label {
    border-top: none;
  }
}
.p-search-subTab__label.no-active {
  background-color: #fff !important;
  color: #000 !important;
  box-shadow: none !important;
}
.p-search-subTab__item {
  display: contents;
}
.p-search-subTab__label {
  position: relative;
  padding: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  float: none !important;
  width: auto;
  margin: 0;
}
@media screen and (max-width: 576px) {
  .p-search-subTab__label {
    padding: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
  }
}
.p-search-subTab__label input[type=radio] {
  display: none;
}
.p-search-subTab__label:has(:checked) {
  background-color: #E2E9FD;
  color: #083388;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
.p-search-subTab__label:has(:checked)::before, .p-search-subTab__label:has(:checked)::after {
  display: none;
}
.p-search-subTab__label:hover {
  background-color: #E2E9FD;
  color: #083388;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 576px) {
  .p-search-subTab__label {
    display: block;
    width: 100%;
  }
}

/* タブコンテンツのスタイル */
.p-search-subTab__content {
  box-sizing: border-box;
  display: none; /* 初期状態では非表示 */
  padding: 30px; /* 内側余白 */
  padding-top: 10px;
  padding-bottom: 15px;
  background-color: #fff;
  border-bottom: 1px solid #cccccc;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  z-index: 10;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
}
.p-search-subTab__content .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
.p-search-subTab__content .close-btn-bottom {
  display: block;
  margin: 30px auto 0;
  font-size: 1.6rem;
  color: #333333;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  background-color: #fff;
}
.p-search-subTab__content .close-btn-bottom:hover {
  opacity: 0.8;
}

.p-search-subTab__content.is-closed {
  display: none !important;
}

.p-search-resultNumber {
  background-color: #f2f4f8;
}
.p-search-resultNumber__inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
.p-search-resultNumber__area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.p-search-resultWrapper {
  position: relative;
}
.p-search-resultWrapper .c-js-sortAccordion {
  margin-bottom: 0;
}

.p-search-tab__content.is-closed,
.p-search-subTab__content.is-closed {
  display: none !important;
}

/* 「製品ブランドから探す」タブ内だけ、縦スクロールにする */
.p-search-tab__content.brand-pane.content-brand {
  max-height: var(--paneHeight, 60vh);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* スクロールバーが重ならないよう少し余白 */
  padding-right: 8px;
}
/* モバイル時はやや高めに（必要なら） */
/* 樹種・もくりの非表示状態 */
.condition-filter__item.category-wood.is-hidden {
  display: none;
}

/* 表示時に背景色を変更 */
.condition-filter__item.category-wood.is-active {
  background-color: #f2f4f8;
}

/* 検索結果モーダル内 */
.p-thumbmodal__brandLogo img {
  -o-object-fit: contain;
     object-fit: contain;
  min-height: 45px;
  max-height: 60px;
}
.p-thumbmodal__thumb .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
}
.p-thumbmodal__thumb .modal-icon:after {
  border: 1px solid #ccc;
}
.p-thumbmodal__thumb .thumb-subslider__item img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
}

/*
---
name: site-search
category:
  - object
  - object/project/site-search
---

サイト内検索

*/
.p-search-site__btn a#search-site-pc {
  display: inline-block;
  vertical-align: middle;
  height: 24px;
}
.p-search-site__btn a#search-site-pc span {
  color: #083388;
  font-size: 2.4rem;
}
.p-search-site__box {
  display: none;
}

.p-search-site.is-active .p-search-site__btn {
  display: none;
}
.p-search-site.is-active .p-search-site__box {
  display: flex;
  align-items: center;
}
.p-search-site.is-active .p-search-site__box form {
  box-sizing: border-box;
  position: relative;
  border: none;
  padding: 0 20px;
  border-radius: 25px;
  height: 30px;
  width: 200px;
  overflow: hidden;
  background: #ededed;
  font-size: 13px;
  transition: width 0.3s;
}
.p-search-site.is-active .p-search-site__box form input[type=text] {
  border: none;
  height: 30px;
  background: #ededed;
  color: #000;
  outline: none;
}
.p-search-site.is-active .p-search-site__box form input[type=submit] {
  cursor: pointer;
  font-family: "Material Icons";
  font-size: 2.4rem;
  border: none;
  background: #ededed;
  color: #083388;
  position: absolute;
  width: 30px;
  height: 30px;
  right: 10px;
  top: 0;
  outline: none;
}

/* ===== PCサイト内検索バー ===== */
.p-search-bar {
  display: block; /* hidden属性で初期非表示 */
  width: 100%;
  background: #eaf3ff; /* 薄い青 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-height: 0; /* スライドダウン用 */
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  z-index: 1200; /* ヘッダー下に出したい場合はヘッダーより下/上を調整 */
}

.p-search-bar.is-open {
  max-height: 160px; /* 十分大きければOK（中身の高さより大きく） */
  opacity: 1;
}

.p-search-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
}

.p-search-bar__form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-search-bar__label {
  font-size: 1.4rem;
  color: #083388;
  white-space: nowrap;
}

.p-search-bar__input {
  flex: 1 1 auto;
  height: 44px;
  padding: 0 48px 0 14px;
  font-size: 1.6rem;
  border: 1px solid #b9d1ff;
  background: #fff;
  border-radius: 8px;
  outline: none;
}

.p-search-bar__input:focus {
  box-shadow: 0 0 0 3px rgba(8, 51, 136, 0.15);
}

.p-search-bar__submit {
  position: absolute;
  right: 48px; /* ×ボタン分の余白確保 */
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
}

.p-search-bar__submit .material-icons {
  font-size: 2.4rem;
  line-height: 1;
  color: #083388;
}

.p-search-bar__close {
  position: absolute;
  right: 8px;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
}

.p-search-bar__close .material-icons {
  font-size: 2.4rem;
  line-height: 1;
  color: #083388;
}

/* PCのみバーを使う（SPは既存を使用） */
@media (max-width: 767.98px) {
  .p-search-bar {
    display: none !important;
  }
}
/* 既存の .p-search-site の“開閉UI”はPCでは無効化しておくと誤作動しない */
@media (min-width: 768px) {
  .p-search-site__box {
    display: none !important;
  }
  .p-search-site.is-active .p-search-site__box {
    display: none !important;
  }
}
/*
---
name: top
category:
  - object
  - object/project/top
---

トップページ

*/
.p-top-mainvisual {
  position: relative;
  box-shadow: 0px 5px 20px 0px rgba(38, 24, 0, 0.2);
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .p-top-mainvisual {
    margin-top: 65px;
  }
}
.p-top-mainvisual a:hover {
  opacity: 1;
}
.p-top-mainvisual .swiper-container,
.p-top-mainvisual .swiper-wrapper,
.p-top-mainvisual .swiper-slide {
  width: 100%;
}
.p-top-mainvisual .swiper-slide a {
  width: 100%;
}
.p-top-mainvisual .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-content01 {
  margin-top: 90px;
}
.p-top-content01__inner {
  background-color: #f5fbfe;
  padding-top: 30px;
}
.p-top-content01__inner .c-title-border {
  margin-top: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .p-top-content01 .p-search-top {
    padding-top: 0;
  }
}
.p-top-content02 {
  margin-top: 60px;
}
@media screen and (min-width: 992px) {
  .p-top-content02__title {
    max-width: 1140px;
    margin: 0 auto;
  }
}
.p-top-content02__text {
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-top-content02__text {
    text-align: left;
  }
}
.p-top-content02__tabpanel {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-top-content02__tabpanel {
    margin-top: 30px;
  }
}
.p-top-content02__btnarea {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-top-content02__btnarea {
    margin-top: 30px;
  }
}
.p-top-content03 {
  margin-top: 60px;
}
.p-top-content03__inner {
  background-color: #f5f7fe;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-top-content03__boxarea {
    max-width: 348px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 5px;
  }
}
.p-top-content03__boxarea--item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-content03__boxarea--item {
    text-align: center;
  }
  .p-top-content03__boxarea--item p {
    text-align: left;
  }
}
.p-top-content03__boxarea--img img {
  display: inline-block;
  box-shadow: 0px 0px 30px 0px rgba(8, 51, 136, 0.1);
  width: 100%;
}
.p-top-content03__boxarea--txt {
  position: absolute;
  left: 0;
  bottom: 6px;
  background-color: rgba(36, 41, 51, 0.5);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  color: #ffffff;
  width: 100%;
}
.p-top-product {
  margin-top: 120px;
  background-color: #f2f4f8;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .p-top-product {
    margin-top: 60px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-product__title {
    max-width: 1140px;
    margin: 0 auto;
  }
}
.p-top-product__list {
  margin-top: 30px;
}
.p-top-product__list.c-column-4 {
  grid-column-gap: 25px;
  grid-row-gap: 30px;
}
@media screen and (max-width: 992px) {
  .p-top-product__list.c-column-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.p-top-product__list--item {
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #e2e2e2;
}
.p-top-product__list--item a {
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .p-top-topics__title .main-txt {
    font-size: 2.4rem;
  }
  .p-top-topics__title .sub-txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 992px) {
  .p-top-topics__title--btn {
    margin-top: 15px;
  }
}
.p-top-topics__tabpanel {
  width: auto !important;
  justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .p-top-topics__tabpanel {
    display: none;
  }
}
.p-top-topics__tabpanel .tab-btn {
  cursor: pointer;
}
.p-top-topics__tabselect {
  display: none;
}
@media screen and (max-width: 992px) {
  .p-top-topics__tabselect {
    display: block;
    margin-top: 30px;
    position: relative;
  }
  .p-top-topics__tabselect::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 8px solid #000000;
    border-bottom: 0;
    position: absolute;
    top: 26px;
    right: 20px;
  }
}
.p-top-topics__tabcontents {
  margin-top: 15px;
}
@media screen and (max-width: 992px) {
  .p-top-topics__tabcontents {
    margin-top: 10px;
  }
}
.p-top-topics__tabcontents .tab-content {
  display: none;
}
.p-top-topics__tabcontents .tab-content.is-active {
  display: block;
}
@media screen and (max-width: 992px) {
  .p-top-topics__tabcontents .tab-content.is-active {
    display: block;
  }
}

/*
---
name: topics
category:
  - object
  - object/project/topics
---

トピックス（トップ）

*/
@media screen and (min-width: 992px) {
  .p-topics__content {
    display: flex;
    align-items: center;
  }
}
.p-topics__content {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: repeating-linear-gradient(90deg, #707070, #707070 2px, transparent 2px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
.p-topics__date {
  color: #9CA2AD;
}
@media screen and (min-width: 992px) {
  .p-topics__date {
    margin-right: 20px;
    flex: 0 1 140px;
  }
}
@media screen and (max-width: 992px) {
  .p-topics__date {
    margin-right: 10px;
    display: inline-block;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-topics__category {
    margin-right: 20px;
    flex: 0 1 130px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 992px) {
  .p-topics__category {
    display: inline-block;
    font-size: 1.2rem;
  }
}
.p-topics__category .category-item {
  font-size: 1.2rem;
  padding: 5px;
  text-align: center;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .p-topics__category .category-item {
    width: 110px;
  }
}
.p-topics__category .category-item.products-cat {
  background-color: #00699c;
  color: #fff;
}
.p-topics__category .category-item.exhibition-cat {
  background-color: #99D6AA;
  color: #fff;
}
.p-topics__category .category-item.web-cat {
  background-color: #F18416;
  color: #fff;
}
.p-topics__category .category-item.other-cat {
  background-color: #b1b7c4;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .p-topics__article {
    flex: 1;
  }
}
@media screen and (max-width: 992px) {
  .p-topics__article {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.p-topics__article.c-link-arrow-r {
  position: relative;
  padding-right: 30px;
}
.p-topics__article.c-link-arrow-r a::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #242933;
  font-size: 36px;
}

/*
---
name: works
category:
  - object
  - object/project/works
---

施工事例

*/
.p-works .tab-content#tab-use .sort-btn-img {
  overflow: hidden;
  aspect-ratio: 4/2;
}
@media screen and (max-width: 992px) {
  .p-works .tab-content#tab-use .sort-btn-img {
    aspect-ratio: inherit;
  }
}
.p-works .tab-content#tab-use .sort-btn-img img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
}
.p-works__searchContent .title-area {
  margin-top: 10px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-works__searchContent .title-area {
    min-height: 90px;
  }
}
.p-works__searchContent .category-area {
  margin-top: 10px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.p-works__searchContent a:visited .title-area {
  color: #242933;
}
.p-works__searchContent .works-thumb {
  overflow: hidden;
  aspect-ratio: 3/2;
}
.p-works__searchContent .works-thumb img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
}
.p-works__searchDetail .category-area {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.p-works__searchDetail .detail-area {
  margin-top: 20px;
}
.p-works__searchDetail .detail-area .detail-text {
  margin-top: 20px;
}
.p-works__searchDetail .detail-area .detail-table {
  margin-top: 20px;
}
.p-works__searchDetail .detail-area .used-products {
  margin-top: 40px;
}
.p-works__searchDetail .detail-area .used-products-title {
  color: #242933;
  font-weight: bold;
  font-size: 1.8rem;
}
.p-works__searchDetail .detail-area .used-products-colum {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 28px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 992px) {
  .p-works__searchDetail .detail-area .used-products-colum {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-works__searchDetail .detail-area .used-products-item {
  color: #242933;
}
.p-works__searchDetail .detail-area .used-products-item.dis-products {
  pointer-events: none;
}
.p-works__searchDetail .detail-area .used-products-item.dis-products:after {
  content: "廃番品です";
  color: red;
}
.p-works__searchDetail .detail-area .used-products-name {
  margin-top: 15px;
  color: #242933;
  font-weight: bold;
}
.p-works__searchDetail .detail-area .used-products-parts {
  margin-top: 10px;
}
.p-works__searchDetail .modal-card__close {
  margin-top: 50px;
}

.p-works-bottom__container {
  background-image: repeating-linear-gradient(90deg, #707070, #707070 2px, transparent 2px, transparent 6px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  padding-top: 30px;
  padding-bottom: 100px;
}
@media screen and (min-width: 992px) {
  .p-works-bottom__btnarea {
    display: grid;
    grid-template-columns: repeat(2, 436px);
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 0px;
    justify-content: center;
  }
}
@media screen and (max-width: 992px) {
  .p-works-bottom__btnarea--item:not(:first-child) {
    margin-top: 10px;
  }
}

/*
Utility
----------------------------- */
/*
---
name: index
category:
  - object
  - object/utility/index
---
*/
/*
---
name: align
category:
  - object
  - object/utility/align
---

text-alignの設定

*/
.u-align-left {
  text-align: left !important;
}

.u-align-center {
  text-align: center !important;
}

.u-align-right {
  text-align: right !important;
}

.u-align-justify {
  text-align: justify !important;
}

@media screen and (min-width: 768px) {
  .u-md-align-left {
    text-align: left !important;
  }
  .u-md-align-center {
    text-align: center !important;
  }
  .u-md-align-right {
    text-align: right !important;
  }
  .u-md-align-justify {
    text-align: justify !important;
  }
}
@media screen and (max-width: 768px) {
  .u-sm-align-left {
    text-align: left !important;
  }
  .u-sm-align-center {
    text-align: center !important;
  }
  .u-sm-align-right {
    text-align: right !important;
  }
  .u-sm-align-justify {
    text-align: justify !important;
  }
}
.u-align-center-left {
  display: table;
  margin: 0 auto;
}

/*
---
name: color
category:
  - object
  - object/utility/color
---

カラー設定

*/
.u-color-blue01 {
  color: #083388;
}
.u-color-blue02 {
  color: #355BC8;
}
.u-color-red01 {
  color: #E61616;
}
.u-color-black {
  color: #242933;
}
.u-color-white {
  color: #fff;
}

.u-color-bg-lightblue {
  background-color: #F5FBFE;
}
.u-color-bg-lightblue02 {
  background-color: #f2f4f8 !important;
}

/*
---
name: responsive-helper
category:
  - object
  - object/utility/responsive-helper
---

responsiveの設定

*/
@media screen and (min-width: 992px) {
  .u-lg-no {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-md-no {
    display: none;
  }
}

@media screen and (min-width: 576px) {
  .u-sm-no {
    display: none;
  }
}

.u-lg-block {
  display: none;
}
@media screen and (max-width: 992px) {
  .u-lg-block {
    display: block;
  }
}

.u-md-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md-block {
    display: block;
  }
}

.u-sm-block {
  display: none;
}
@media screen and (max-width: 576px) {
  .u-sm-block {
    display: block;
  }
}

.u-lg-upblock {
  display: none;
}
@media screen and (min-width: 992px) {
  .u-lg-upblock {
    display: block;
  }
}

.u-md-upblock {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-md-upblock {
    display: block;
  }
}

.u-sm-upblock {
  display: none;
}
@media screen and (min-width: 576px) {
  .u-sm-upblock {
    display: block;
  }
}

/*
---
name: spacing
category:
  - object
  - object/utility/spacing
---

spacingの設定

*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-mt-10 {
  margin-top: 1rem !important;
}

.u-mt-20 {
  margin-top: 2rem !important;
}

.u-mt-30 {
  margin-top: 3rem !important;
}

.u-mt-40 {
  margin-top: 4rem !important;
}

.u-mt-50 {
  margin-top: 5rem !important;
}

.u-mt-60 {
  margin-top: 6rem !important;
}

.u-mt-70 {
  margin-top: 7rem !important;
}

.u-mt-80 {
  margin-top: 8rem !important;
}

.u-mt-90 {
  margin-top: 9rem !important;
}

.u-mt-100 {
  margin-top: 10rem !important;
}

.u-mb-10 {
  margin-bottom: 1rem !important;
}

.u-mb-20 {
  margin-bottom: 2rem !important;
}

.u-mb-30 {
  margin-bottom: 3rem !important;
}

.u-mb-40 {
  margin-bottom: 4rem !important;
}

.u-mb-50 {
  margin-bottom: 5rem !important;
}

.u-mb-60 {
  margin-bottom: 6rem !important;
}

.u-mb-70 {
  margin-bottom: 7rem !important;
}

.u-mb-80 {
  margin-bottom: 8rem !important;
}

.u-mb-90 {
  margin-bottom: 9rem !important;
}

.u-mb-100 {
  margin-bottom: 10rem !important;
}

.u-mr-10 {
  margin-right: 1rem !important;
}

.u-mr-20 {
  margin-right: 2rem !important;
}

.u-mr-30 {
  margin-right: 3rem !important;
}

.u-mr-40 {
  margin-right: 4rem !important;
}

.u-mr-50 {
  margin-right: 5rem !important;
}

.u-mr-60 {
  margin-right: 6rem !important;
}

.u-mr-70 {
  margin-right: 7rem !important;
}

.u-mr-80 {
  margin-right: 8rem !important;
}

.u-mr-90 {
  margin-right: 9rem !important;
}

.u-mr-100 {
  margin-right: 10rem !important;
}

.u-ml-10 {
  margin-left: 1rem !important;
}

.u-ml-20 {
  margin-left: 2rem !important;
}

.u-ml-30 {
  margin-left: 3rem !important;
}

.u-ml-40 {
  margin-left: 4rem !important;
}

.u-ml-50 {
  margin-left: 5rem !important;
}

.u-ml-60 {
  margin-left: 6rem !important;
}

.u-ml-70 {
  margin-left: 7rem !important;
}

.u-ml-80 {
  margin-left: 8rem !important;
}

.u-ml-90 {
  margin-left: 9rem !important;
}

.u-ml-100 {
  margin-left: 10rem !important;
}

.u-p-10 {
  padding: 10px;
}

.u-mr-5 {
  margin-right: 5px;
}

.u-mt-5 {
  margin-top: 5px;
}

.u-mt-15 {
  margin-top: 15px;
}

.u-mt-25 {
  margin-top: 25px;
}

.u-mt-35 {
  margin-top: 35px;
}

.u-mt-45 {
  margin-top: 45px;
}

.u-mt-55 {
  margin-top: 55px;
}

.u-mt-65 {
  margin-top: 65px;
}

.u-mt-75 {
  margin-top: 75px;
}

.u-mt-85 {
  margin-top: 85px;
}

.u-mt-95 {
  margin-top: 95px;
}

.u-pb-20 {
  padding-bottom: 20px;
}

.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.u-mx-inherit {
  margin-left: inherit !important;
  margin-right: inherit !important;
}

@media screen and (max-width: 992px) {
  .u-mt-10-sp {
    margin-top: 10px !important;
  }
  .u-mt-15-sp {
    margin-top: 15px;
  }
  .u-mt-20-sp {
    margin-top: 20px;
  }
  .u-mt-25-sp {
    margin-top: 25px;
  }
  .u-mt-30-sp {
    margin-top: 30px;
  }
  .u-mt-35-sp {
    margin-top: 35px;
  }
  .u-mt-40-sp {
    margin-top: 40px;
  }
  .u-mt-45-sp {
    margin-top: 45px;
  }
  .u-mt-50-sp {
    margin-top: 50px;
  }
  .u-mt-55-sp {
    margin-top: 55px;
  }
}
/*
---
name: text
category:
  - object
  - object/utility/text
---

テキスト設定

*/
.u-text-10 {
  font-size: 1rem !important;
}

.u-text-11 {
  font-size: 1.1rem !important;
}

.u-text-12 {
  font-size: 1.2rem !important;
}

.u-text-13 {
  font-size: 1.3rem !important;
}

.u-text-14 {
  font-size: 1.4rem !important;
}

.u-text-15 {
  font-size: 1.5rem !important;
}

.u-text-16 {
  font-size: 1.6rem !important;
}

.u-text-17 {
  font-size: 1.7rem !important;
}

.u-text-18 {
  font-size: 1.8rem !important;
}

.u-text-19 {
  font-size: 1.9rem !important;
}

.u-text-20 {
  font-size: 2rem !important;
}

.u-text-21 {
  font-size: 2.1rem !important;
}

.u-text-22 {
  font-size: 2.2rem !important;
}

.u-text-23 {
  font-size: 2.3rem !important;
}

.u-text-24 {
  font-size: 2.4rem !important;
}

.u-text-25 {
  font-size: 2.5rem !important;
}

.u-text-26 {
  font-size: 2.6rem !important;
}

.u-text-27 {
  font-size: 2.7rem !important;
}

.u-text-28 {
  font-size: 2.8rem !important;
}

.u-text-29 {
  font-size: 2.9rem !important;
}

.u-text-30 {
  font-size: 3rem !important;
}

.u-text-normal {
  font-weight: normal !important;
}

.u-text-middle {
  font-weight: 500;
}

.u-text-bold {
  font-weight: bold;
}
.u-text-bold__02 {
  font-weight: bold;
  color: #242933;
}

.u-text-lh125 {
  line-height: 1.25;
}

.u-text-lh2 {
  line-height: 2 !important;
}

.u-text-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.u-text-sup {
  font-size: 60%;
}

.u-text-sub {
  font-size: 60%;
}

.u-text-vertical-top {
  vertical-align: top !important;
}

.u-text-vertical-middle {
  vertical-align: middle !important;
}

.u-text-vertical-bottom {
  vertical-align: bottom !important;
}

.u-text-white-space-nowrap {
  white-space: nowrap;
}

.u-text-vertical {
  writing-mode: vertical-rl;
}

/*
---
name: width
category:
  - object
  - object/utility/width
---

幅

*/
.w2 {
  width: 2%;
}

.w3 {
  width: 3%;
}

.w4 {
  width: 4%;
}

.w5 {
  width: 5%;
}

.w6 {
  width: 6%;
}

.w7 {
  width: 7%;
}

.w8 {
  width: 8%;
}

.w9 {
  width: 9%;
}

.w10 {
  width: 10%;
}

.w12 {
  width: 12%;
}

.w14 {
  width: 14%;
}

.w15 {
  width: 15%;
}

.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w40 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w50 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w60 {
  width: 60%;
}

.w65 {
  width: 65%;
}

.w70 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w80 {
  width: 80%;
}

.w85 {
  width: 85%;
}

.w90 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w100 {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .w100-sp {
    width: 100% !important;
  }
}
.max-w-400 {
  max-width: 400px;
}/*# sourceMappingURL=style.css.map */