@charset "UTF-8";
/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

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

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 13px;
}
@media (max-width: 375px) {
  html {
    font-size: 3.4666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2807881773vw;
  }
}
@media (min-width: 1015px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: "メイリオ", "Meiryo", "ＭＳ ゴシック",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 400;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-column {
  display: flex;
  flex-direction: column;
  gap: 2.3076923077rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .l-column {
    flex-direction: row;
  }
}

.l-inner {
  margin: auto;
  padding: 0 20px;
  max-width: 49.2307692308rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding: 0 25px;
    max-width: 1015px;
  }
}

.l-main {
  display: contents;
  order: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-main {
    display: block;
  }
}

.l-sidebar {
  max-width: 30.7692307692rem;
  width: 100%;
  margin: 0 auto;
  order: 2;
}
@media screen and (min-width: 768px) {
  .l-sidebar {
    width: 43%;
  }
}

.l-top-cards {
  padding: 1.5384615385rem;
}

.l-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-wrap--red {
  background-color: #e4251e;
}

.l-wrap main {
  flex: 1;
}

.c-archive-btn {
  display: flex;
  justify-content: end;
  align-items: center;
}

.c-archive-btn--search,
.c-archive-btn--works {
  margin-top: 0.7692307692rem;
}

.c-archive-btn--works {
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .c-archive-btn--works {
    padding-right: 25px;
  }
}

.c-archive-btn a {
  display: flex;
  align-items: center;
  color: #e4251e;
}

.c-archive-btn span {
  margin-right: 0.3076923077rem;
  margin-bottom: 0.2307692308rem;
}

.c-archive-btn img {
  transform: rotate(90deg);
}

.c-archive-btn a:hover {
  opacity: 1;
  text-decoration: underline;
}

.c-catalog {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.3846153846rem;
  border-radius: 5px;
  background-color: #bc8d03;
}

.c-catalog.-flyer {
  line-height: 1.3;
}

.c-content-title {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  background: url(../images/common/back_strive_black.jpg) repeat-x;
  padding: 0.3846153846rem;
  padding-left: 0.6153846154rem;
}

.c-content-title span {
  position: relative;
  display: inline-block;
  width: 0.8em;
  top: 0.0769230769rem;
  margin-right: 0.3846153846rem;
}

.c-content-title img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-link {
  position: relative;
  display: inline-block;
  padding-top: 0.7692307692rem;
  padding-left: 1.5384615385rem;
  padding-bottom: 0.3846153846rem;
  text-transform: uppercase;
  color: #fff;
}

.c-link:hover {
  text-decoration: underline;
  opacity: 1;
}

.c-link::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.7692307692rem;
  transform: translateY(-34%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.3076923077rem 0 0.3076923077rem 0.5307692308rem;
  border-color: transparent transparent transparent #bc8d03;
}

.c-tel {
  width: 100%;
  max-width: 22.7692307692rem;
}

.c-tel a {
  display: inline-block;
}

.c-tel a[href^="tel:"] {
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .c-tel a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.c-tel img {
  width: 100%;
  aspect-ratio: 296/35;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-title {
  background: url(../images/common/back_strive_black.jpg) repeat-x center
    center/contain;
  font-size: 1.1538461538rem;
  color: #fff;
  padding: 0.4615384615rem 0.7692307692rem;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.c-title span {
  max-width: 1.1538461538rem;
  width: 100%;
  margin-right: 0.6153846154rem;
}

.c-title span img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.c-title__sub {
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #222;
  padding: 0.2307692308rem 0.6153846154rem;
  border-bottom: 0.0769230769rem dotted #fc0;
}

.c-title__sub span {
  max-width: 0.7692307692rem;
  width: 100%;
  margin-right: 0.3846153846rem;
}

.c-title__orange {
  padding-left: 0.2307692308rem;
  color: #f83;
  font-size: 1.2307692308rem;
  border-bottom: 1px dashed #aaa;
}

.p-breadcrumb {
  padding: 0.7692307692rem;
  line-height: 1;
}

.p-breadcrumb a {
  color: #903;
}

.p-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.p-breadcrumb .home {
  position: relative;
  padding-left: 1.0769230769rem;
}

.p-breadcrumb .home::before {
  position: absolute;
  content: "";
  background: url(../images/icon/icon_home.gif) no-repeat center/cover;
  width: 0.8461538462rem;
  aspect-ratio: 1/1;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.p-breadcrumb span[property="name"] {
  display: inline-block;
  max-width: 13.8461538462rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  font-size: 0.7692307692rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb span[property="name"] {
    font-size: 1rem;
  }
}

.p-card-contact {
  background: url(../images/top/back_top_catalog_request.jpg) no-repeat
    center/cover;
}

.p-card-contact .c-content-title {
  font-size: 1rem;
}
@media screen and (min-width: 520px) {
  .p-card-contact .c-content-title {
    font-size: 0.8846153846rem;
  }
}
@media screen and (min-width: 768px) {
  .p-card-contact .c-content-title {
    font-size: 1rem;
  }
}

.p-card-contact__body {
  padding: 1.0769230769rem 1.5384615385rem;
  text-align: justify;
  display: flex;
  flex-direction: column;
  height: calc(100% - 2.2153846154rem);
}

.p-card-contact__text span {
  font-size: 0.7692307692rem;
  color: #ccc;
}

.p-card-contact__btn {
  margin-top: auto;
  text-align: right;
}

.p-card-contact__btn .c-link {
  padding-left: 0;
}

.p-card-contact__btn .c-link::before {
  left: -0.7692307692rem;
}

.p-card-contact__download {
  margin: 0.7692307692rem auto 0;
  max-width: 14.8461538462rem;
  width: 100%;
}

.p-card-contact__flyer {
  margin-top: 0.7692307692rem;
}

.p-card-facility {
  background: url(../images/top/back_top_product_intro.jpg) no-repeat
    center/cover;
}

.p-card-facility__body {
  padding: 1.0769230769rem 1.5384615385rem;
  text-align: justify;
  display: flex;
  flex-direction: column;
  height: calc(100% - 2.2153846154rem);
}

.p-card-facility__btn {
  text-align: right;
  margin-top: auto;
}

.p-card-new-product {
  position: relative;
  background: url(../images/top/back_top_new_products.jpg) no-repeat
    center/cover;
}

.p-card-new-product__body {
  padding: 1.0769230769rem 1.5384615385rem;
  text-align: justify;
  display: flex;
  flex-direction: column;
  height: calc(100% - 2.2153846154rem);
}

.p-card-new-product__lists {
  margin-top: 1.5384615385rem;
}

.p-card-new-product__item a {
  max-width: 13.0769230769rem;
  width: 100%;
  display: block;
  padding: 0.5384615385rem 0.7692307692rem 0.5384615385rem 1.8461538462rem;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.p-card-new-product__item {
  position: relative;
  border-bottom: 1px dashed #fff;
}

.p-card-new-product__item::before {
  position: absolute;
  content: "";
  background: url(../images/icon/icon_check.gif) no-repeat center center/contain;
  width: 0.9230769231rem;
  height: 100%;
  left: 0.4615384615rem;
  top: 0;
  display: none;
}

.p-card-new-product__item:hover {
  background-color: #222;
}

.p-card-new-product__item:hover.p-card-new-product__item::before {
  display: inline-block;
}

.p-card-new-product__item:first-child {
  border-top: 1px dashed #fff;
}

.p-card-new-product__item .p-card-new-product__item:hover {
  background-color: #222;
}

.p-card-new-product__btn {
  margin-top: auto;
  text-align: right;
}

.p-card-new-product__img {
  max-width: 15.3846153846rem;
  margin: 1.5384615385rem auto 0;
}

.p-card-news {
  position: relative;
  background-color: #222;
}

.p-card-news__body {
  padding: 1.0769230769rem 1.5384615385rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 2.2153846154rem);
}

.p-card-news__item a {
  display: inline-block;
  padding: 0.7692307692rem 1.5384615385rem 0.7692307692rem 0;
  width: 100%;
  border-bottom: 1px dashed #bc8d03;
}

.p-card-news__content {
  font-weight: 700;
  color: #bc8d03;
  overflow: hidden;
  width: 100%;
  text-decoration: underline;
  white-space: nowrap;
  max-width: clamp(14.923rem, -7.961rem + 92.965vw, 29.154rem);
  text-overflow: ellipsis;
}
@media screen and (min-width: 520px) {
  .p-card-news__content {
    max-width: clamp(13.462rem, 3.198rem + 25.61vw, 18.308rem);
  }
}
@media screen and (min-width: 768px) {
  .p-card-news__content {
    max-width: 13.4615384615rem;
  }
}

.p-card-news__btn {
  margin-top: auto;
  text-align: right;
}

.p-card-news__date {
  position: relative;
}

.p-card-news__date::before {
  position: absolute;
  content: "";
  background: url(../images/icon/icon_arrow_lower_right.gif) no-repeat center
    center/contain;
  width: 0.6153846154rem;
  aspect-ratio: 8/18;
  top: 50%;
  transform: translateY(-50%);
  left: -0.9230769231rem;
}

.p-card-product {
  background: url(../images/top/back_top_product_intro.jpg) no-repeat
    center/cover;
}

.p-card-product__body {
  padding: 1.0769230769rem 1.5384615385rem;
  text-align: justify;
  display: flex;
  flex-direction: column;
  height: calc(100% - 2.2153846154rem);
}

.p-card-product__btn {
  text-align: right;
  margin-top: auto;
}

.p-card-product__img {
  max-width: 9.2307692308rem;
  margin: 1.5384615385rem auto 0;
}

.p-card-search {
  background: url(../images/top/back_top_search.jpg) no-repeat center/cover;
}

.p-card-search__body {
  padding: 1.0769230769rem 1.5384615385rem;
  text-align: justify;
}

.p-card-search__form {
  margin-top: 1.5384615385rem;
  text-align: right;
}

.p-card-search__form #searchform {
  width: 100%;
}

.p-card-search__form input {
  width: 100%;
}

.p-card-search__form button {
  background-color: #fc0;
  margin-top: 0.7692307692rem;
}

.p-card-valves__video {
  width: 100%;
  height: 100%;
}

.p-card-valves__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1920/1080;
}

.p-card-works {
  position: relative;
  background: url(../images/top/back_top_case_studies.jpg) no-repeat
    center/cover;
  height: 100%;
}

.p-card-works__body {
  padding: 1.0769230769rem 1.5384615385rem;
  text-align: justify;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 2.2153846154rem);
}

.p-card-works__lists {
  margin-top: 0.7692307692rem;
  list-style-type: disc;
  margin-left: 1.8461538462rem;
}

.p-card-works__item a {
  display: inline-block;
  width: 100%;
}

.p-card-works__item a:hover {
  text-decoration: underline;
  opacity: 1;
}

.p-card-works__btn {
  margin-top: auto;
  text-align: right;
}

.p-common-mv {
  position: relative;
  width: 100%;
  background-color: #000;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.p-common-mv__content {
  background: url(../images/common/test_page_img.jpg) no-repeat center
    center/cover;
  aspect-ratio: 965/160;
}

.p-common-mv::before {
  position: absolute;
  content: "";
  background: url(../images/common/line-red.jpg) repeat center/contain;
  top: 0;
  left: 0;
  height: 1rem;
  width: 100%;
}

.p-common-mv::after {
  position: absolute;
  content: "";
  background: url(../images/common/line-red.jpg) repeat center/contain;
  bottom: 0;
  left: 0;
  height: 1rem;
  width: 100%;
  transform: scaleY(-1);
}

.p-company__img {
  width: 100%;
}

.p-company__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 520px) {
  .p-company__table,
  .p-company .wp-block-table {
    padding: 0 1.8461538462rem;
  }
}

.p-company__table table,
.p-company .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}

.p-company__table th,
.p-company .wp-block-table th,
.p-company__table td,
.p-company .wp-block-table td {
  border: none;
  padding: 1.2307692308rem 0;
  vertical-align: top;
}

.p-company__table tr:not(:first-of-type) th,
.p-company .wp-block-table tr:not(:first-of-type) th,
.p-company__table tr:not(:first-of-type) td,
.p-company .wp-block-table tr:not(:first-of-type) td {
  border-top: 1px dashed #999;
}

.p-company__table th,
.p-company .wp-block-table td:nth-of-type(1) {
  text-align: left;
  font-weight: 400;
  width: 40%;
  padding: 1.2307692308rem 1.2307692308rem 1.2307692308rem 0;
}
@media screen and (min-width: 768px) {
  .p-company__table th,
  .p-company .wp-block-table td:nth-of-type(1) {
    width: 25%;
  }
}

.p-company__table td,
.p-company .wp-block-table td:nth-of-type(2) {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .p-company__table td,
  .p-company .wp-block-table td:nth-of-type(2) {
    width: 70%;
  }
}

.p-company__mail {
  color: #bc8d03;
  margin-left: 1.2307692308rem;
}

.p-company__link {
  color: #e4251e;
  margin-left: 1.2307692308rem;
}

.p-company__products {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.4615384615rem;
}
@media screen and (min-width: 520px) {
  .p-company__products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-company__products {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-company__section {
  margin-top: 2.3076923077rem;
}

.p-company__group-wrap {
  padding: 0 1.8461538462rem;
}

.p-company__group-list {
  width: 100%;
}

.p-company__group-item:not(:first-child) {
  border-top: 1px dashed #999;
}

.p-company__group-item {
  padding: 1.2307692308rem 0;
}

.p-company__message {
  padding: 0.7692307692rem 20px;
  color: #fff;
  background-color: #222;
}
@media screen and (min-width: 768px) {
  .p-company__message {
    padding: 0.7692307692rem 3.0769230769rem;
  }
}

.p-company__map iframe {
  width: 100%;
  aspect-ratio: 660/450;
}

.p-company__access {
  margin-top: 0.3846153846rem;
  background-color: #222;
  color: #fff;
  padding: 0.7692307692rem 20px;
}
@media screen and (min-width: 768px) {
  .p-company__access {
    padding: 0.7692307692rem 3.0769230769rem;
  }
}

.p-company__access-row {
  width: 100%;
  display: flex;
}

.p-company__access-row dt {
  min-width: 10.7692307692rem;
  width: 30%;
  margin-right: 0.7692307692rem;
}

@media screen and (min-width: 520px) {
  .p-company__dd-wrap {
    display: flex;
  }
}

.p-company__dd-wrap dd:first-of-type {
  min-width: 7.6923076923rem;
}

.p-contact__content {
  margin-top: 1.9230769231rem;
}

.p-contact__form-wrap {
  padding: 0 20px;
  margin-top: 1.2307692308rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form-wrap {
    padding: 0 25px;
  }
}

.p-contact__form-item {
  margin-top: 1.9230769231rem;
}
@media screen and (min-width: 520px) {
  .p-contact__form-item {
    display: flex;
    gap: 1.9230769231rem;
  }
}

.p-contact__form-wrap h2,
.p-contact__head {
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #222;
  padding: 0.2307692308rem 0.6153846154rem;
  border-bottom: 0.0769230769rem dotted #fc0;
}

.p-contact__head {
  margin-top: 1.5384615385rem;
}

.p-contact__form-wrap h2 img {
  aspect-ratio: 10/8;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 0.3846153846rem;
}

.p-contact__input-wrap {
  display: flex;
  gap: 0.3846153846rem;
}

.p-contact__form-item dt {
  position: relative;
  min-width: 11.5384615385rem;
}

.p-contact__form-item dt span {
  color: #f00;
  font-size: 0.7692307692rem;
}

.p-contact__form-item dt::before {
  position: absolute;
  content: "";
  top: 0.3846153846rem;
  left: -1.2307692308rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.3076923077rem 0 0.3076923077rem 0.5384615385rem;
  border-color: transparent transparent transparent #bc8d03;
}

.p-contact__form-item input,
.p-contact__form-item textarea {
  width: 100%;
  border: 1px solid #bbb;
}

.p-contact__form-item select {
  border: 1px solid #bbb;
}

.p-contact__form-item > dd {
  flex: 1;
}

@media screen and (min-width: 768px) {
  .p-contact__form-item #your-zip,
  .p-contact__form-item #your-tel {
    width: 50%;
  }
}

.p-contact__btn {
  margin-top: 1.5384615385rem;
  text-align: center;
}

.p-contact__submit input[type="submit"] {
  background-color: #fc0;
  cursor: pointer;
  padding: 0.3846153846rem 0.7692307692rem;
  line-height: 1.7;
  transition: all 0.3s ease 0s;
  border: 1px solid #222;
  color: #222;
}

.p-contact__submit input[type="submit"]:hover,
.p-contact__prev input[type="button"]:hover {
  opacity: 0.7;
}

.p-contact__submit input[disabled] {
  color: #fff;
  background-color: #a5a3a3;
  border: none;
}

.p-contact__atten {
  color: #f00;
  margin-top: 1.5384615385rem;
  text-align: center;
}

.p-contact__btns-wrap {
  margin-top: 1.5384615385rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2307692308rem;
}

.p-contact__prev input[type="button"] {
  cursor: pointer;
  padding: 0.3846153846rem 0.7692307692rem;
  line-height: 1.7;
  transition: all 0.3s ease 0s;
  color: #fff;
  background-color: #a5a3a3;
  border: 1px solid #222;
}

div.wpcf7 .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
}

.p-contact__catalogs {
  margin-top: 1.5384615385rem;
  display: flex;
  gap: 5%;
  justify-content: center;
}

.p-contact__catalog-link {
  max-width: 10.7692307692rem;
  width: 100%;
  text-align: center;
}

.p-contact__content-text {
  text-align: center;
}

.p-drawer-icon {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  padding: 0.8461538462rem;
  cursor: pointer;
  transition: transform 0.5s ease 0s;
  background-color: #e4251e;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon {
    display: none;
  }
}

.p-drawer-icon.is-active .p-drawer-icon__bars span:nth-child(1) {
  transform: translateY(0.6153846154rem) rotate(45deg);
  transition: transform 0.3s ease 0s;
}

.p-drawer-icon.is-active .p-drawer-icon__bars span:nth-child(2) {
  display: none;
}

.p-drawer-icon.is-active .p-drawer-icon__bars span:nth-child(3) {
  transform: translateY(-0.3076923077rem) rotate(-45deg);
  transition: transform 0.3s ease 0s;
}

.p-drawer-icon__bars {
  position: relative;
  width: 1.5384615385rem;
  height: 1.2307692308rem;
  top: 0;
  left: 0;
}

.p-drawer-icon__bars span {
  position: absolute;
  width: 100%;
  height: 0.1538461538rem;
  top: 0;
  left: 0;
  background-color: #fff;
}

.p-drawer-icon__bars span:nth-child(1) {
  top: 0;
  transition: transform 0.3s ease 0s;
}

.p-drawer-icon__bars span:nth-child(2) {
  top: 0.4615384615rem;
}

.p-drawer-icon__bars span:nth-child(3) {
  top: 0.9230769231rem;
  transition: transform 0.3s ease 0s;
}

.p-drawer-menu {
  width: 100%;
  max-width: 23.0769230769rem;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #e4251e;
  box-shadow: 0 0 0.2307692308rem rgba(0, 0, 0, 0.1607843137);
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  z-index: 299;
  overflow-y: scroll;
}

.p-drawer-menu.is-active {
  transform: translateX(0);
}

.p-drawer-menu ul {
  margin-top: 4.6153846154rem;
}

.p-drawer-menu__item {
  position: relative;
  border-bottom: 0.0769230769rem dotted #fff;
  transition: all 0.3s ease 0s;
}

.p-drawer-menu__item:first-of-type {
  border-top: 0.0769230769rem dotted #fff;
}

.p-drawer-menu__item a {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.2307692308rem;
  color: #fff;
  text-transform: uppercase;
  display: block;
  padding: 1.5384615385rem;
  padding-left: 2.3076923077rem;
}

.p-drawer-menu__item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 1.1538461538rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.3076923077rem 0 0.3076923077rem 0.5307692308rem;
  border-color: transparent transparent transparent #bc8d03;
}

.p-drawer-menu__item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease 0s;
}

.p-drawer-menu__tel a {
  margin-top: 1.5384615385rem;
  padding: 1.5384615385rem;
}

body.is-active {
  overflow: hidden;
}

.p-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #222;
  z-index: 298;
  display: none;
  opacity: 0.8;
}

.p-drawer-overlay.is-active {
  display: block;
}

.p-facility {
  margin-top: 1.2307692308rem;
}

.p-facility__info {
  margin: 0.7692307692rem auto 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 38.4615384615rem;
}
@media screen and (min-width: 768px) {
  .p-facility__info {
    max-width: 100%;
  }
}

.p-facility__info dt {
  width: 20%;
}
@media screen and (min-width: 768px) {
  .p-facility__info dt {
    width: 15%;
  }
}

.p-facility__info dd {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .p-facility__info dd {
    width: 85%;
  }
}

.p-facility .wp-block-gallery.has-nested-images figure.wp-block-image {
  max-width: 15.3846153846rem;
}

.p-facility figure.wp-block-gallery.has-nested-images {
  justify-content: center;
}

.p-footer {
  background-color: #e4251e;
  color: #fff;
  text-align: right;
}

.p-footer__list {
  display: flex;
  justify-content: center;
  font-size: 0.9230769231rem;
  padding-bottom: 0.3846153846rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-footer__list {
    justify-content: right;
  }
}

.p-footer__copyright {
  padding-top: 0.3846153846rem;
}

.p-footer__copyright small {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright small {
    flex-direction: row;
    justify-content: end;
  }
}

.p-footer__copyright a {
  color: #ccc;
}

.p-footer__line {
  background: url(../images/common/back_footer_line.jpg) repeat-x;
  min-height: 0.7692307692rem;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.p-header {
  background-color: #e4251e;
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-header__logo {
  max-width: 23.0769230769rem;
  display: inline-block;
  line-height: 1;
  margin-top: 0.3846153846rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 41.8461538462rem;
  }
}

.p-header__logo a {
  display: inline-block;
  width: 100%;
}

.p-header__logo img {
  width: 100%;
  aspect-ratio: 544/54;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-header__right {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__right {
    display: block;
  }
}

.p-header__list {
  display: flex;
  justify-content: right;
  font-size: 0.9230769231rem;
}

.p-main__inner {
  max-width: 47.2307692308rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-main__inner {
    margin-top: 1.9230769231rem;
  }
}

.p-main__container + .p-main__container {
  margin-top: 1.9230769231rem;
}

.p-main__bottom .wp-block-table td,
.p-main__bottom .wp-block-table th {
  border: none;
  padding: 0.3em;
}

.p-main__bottom .p-facility__info {
  display: none;
}

.p-message__content p:not(:first-child) {
  margin-top: 1.8461538462rem;
}

.p-message__content h2 {
  font-weight: 700;
  margin-top: 3.0769230769rem;
}

.p-message__content ul {
  list-style: disc;
  margin: 1.5384615385rem 1.5384615385rem 0;
}

.p-mv {
  position: relative;
  width: 100%;
  background-color: #000;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.p-mv::before {
  position: absolute;
  content: "";
  background: url(../images/common/line-red.jpg) repeat center/contain;
  top: 0;
  left: 0;
  height: 1rem;
  width: 100%;
}

.p-mv::after {
  position: absolute;
  content: "";
  background: url(../images/common/line-red.jpg) repeat center/contain;
  bottom: 0;
  left: 0;
  height: 1rem;
  width: 100%;
  transform: scaleY(-1);
}

.p-mv__content {
  position: relative;
  max-width: 74.2307692308rem;
  width: 100%;
}

.p-mv__content img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 965/378;
}

.p-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-nav {
    display: block;
    background: url(../images/common/menu_back.jpg) repeat center/contain;
    padding-top: 0.4615384615rem;
  }
}

.p-nav__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.p-nav__list-item {
  position: relative;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.2307692308rem;
  font-weight: 500;
  color: #523903;
  text-align: center;
  border: 0.0384615385rem solid #d1d1cf;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(
    136deg,
    transparent,
    transparent 4px,
    rgb(248, 248, 248) 4px,
    rgb(248, 248, 248) 6px
  );
}

.p-nav__list-item::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0.2307692308rem;
  background-color: #bc8d03;
  left: 0;
  top: -0.3846153846rem;
}

.p-nav__list-item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #523903 transparent transparent;
}

.p-nav__list-item a {
  display: inline-block;
  width: 100%;
  padding-top: 0.3846153846rem;
  padding-bottom: 0.2307692308rem;
}

.p-nav__list-item:hover.p-nav__list-item::before {
  width: 100%;
}

.p-nav__list-item:hover.p-nav__list-item::after {
  border-color: transparent #bc8d03 transparent transparent;
}

.p-news-archive__list {
  padding: 0 1.8461538462rem;
  width: 100%;
}

.p-news-archive__item {
  border-bottom: 1px dashed #999;
  position: relative;
}

.p-news-archive__item a {
  display: block;
  padding: 1.2307692308rem;
  color: #ff6816;
}
@media screen and (min-width: 520px) {
  .p-news-archive__item a {
    display: flex;
  }
}

.p-news-archive__item::before {
  position: absolute;
  content: "";
  background: url(../images/icon/icon_arrow_lower_right.gif) no-repeat center
    center/contain;
  width: 0.6153846154rem;
  aspect-ratio: 1/1;
  top: 50%;
  transform: translateY(-50%);
}

.p-news-archive__item a:hover {
  text-decoration: underline;
}

.p-news-archive__date {
  min-width: 10.7692307692rem;
  width: 25%;
}

.p-news-archive__title {
  max-width: 33.0769230769rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  width: 100%;
  color: #fff;
  margin-top: 2.3076923077rem;
  gap: 0.0769230769rem;
  flex-direction: row-reverse;
}

.nav-previous,
.nav-next {
  width: 50%;
  padding: 0.3846153846rem;
  background: #222;
}

.nav-links a {
  display: block;
  width: 100%;
  text-align: center;
}

.nav-previous {
  margin-left: auto;
}

.nav-next {
  margin-right: auto;
}

.p-news__date {
  display: block;
  text-align: right;
  margin-top: 0.7692307692rem;
}

.p-news__wrap {
  padding: 0 20px;
  width: 100%;
}

.p-news__content {
  margin-top: 3.0769230769rem;
}

.p-news__content img {
  max-width: 38.4615384615rem;
  width: 100%;
  margin: 1.5384615385rem auto 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-news__content .wp-block-group {
  margin-top: 1.5384615385rem;
}

.p-news__content a {
  color: #bc8d03;
}

.p-news__content a:hover {
  text-decoration: underline;
  opacity: 1;
}

.p-news__content p {
  margin-top: 0.7692307692rem;
}

.p-news__content h2 {
  color: #e4251e;
  font-weight: 700;
  font-size: 1.3846153846rem;
}
@media screen and (min-width: 768px) {
  .p-news__content h2 {
    font-size: 1.5384615385rem;
  }
}

.p-privacy__inner {
  padding: 0 1.8461538462rem;
}

.p-privacy__section:not(:first-child) {
  margin-top: 1.8461538462rem;
}

@media screen and (min-width: 768px) {
  .p-privacy__section:first-child {
    margin-top: 1.8461538462rem;
  }
}

.p-privacy__title {
  position: relative;
  background-color: #222;
  color: #fff;
  font-size: 1rem;
  padding: 0.1538461538rem 1.5384615385rem;
}

.p-privacy__title::before {
  position: absolute;
  content: "";
  background: url(../images/icon/icon_arrow_lower_right.gif) no-repeat center
    center/contain;
  width: 0.6153846154rem;
  aspect-ratio: 1/1;
  top: 50%;
  transform: translateY(-50%);
  left: 0.4615384615rem;
}

.p-privacy__text,
.p-privacy__list {
  margin-top: 0.3846153846rem;
}

.p-privacy__text,
.p-privacy__contact {
  margin-left: 0.7692307692rem;
}

.p-privacy__list {
  list-style: square;
  margin-left: 1.6923076923rem;
}

.p-privacy__contact {
  margin-top: 1.2307692308rem;
}

@media screen and (min-width: 768px) {
  .p-privacy__tel {
    margin-left: 0.7692307692rem;
  }
}

.p-product-single {
  margin-top: 1.5384615385rem;
}

.p-product-single h2 {
  padding-left: 0.2307692308rem;
  color: #f83;
  font-size: 1.2307692308rem;
  border-bottom: 1px dashed #aaa;
  margin-top: 1.5384615385rem;
}

.p-product-single h3 {
  padding-left: 0.2307692308rem;
  font-size: 1.2307692308rem;
  border-bottom: 1px dashed #aaa;
  margin-top: 1.5384615385rem;
}

.p-product-single tr td:first-child {
  width: 9.2307692308rem;
}

.p-product-single td {
  padding: 0.3846153846rem 0.7692307692rem 0;
  vertical-align: top;
  border: none;
}

.p-product-single__2column {
  margin-top: 1.5384615385rem;
}
@media screen and (min-width: 520px) {
  .p-product-single__2column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5384615385rem;
  }
}

.p-product-single .wp-block-image {
  margin: 1.5384615385rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 33.8461538462rem;
}

.p-product-single__2column .wp-block-image {
  max-width: 17.6923076923rem;
}
@media screen and (min-width: 520px) {
  .p-product-single__2column .wp-block-image {
    max-width: 33.8461538462rem;
  }
}

.p-product-single__3column {
  margin-top: 0.7692307692rem;
}

.p-product-single__3column .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1.5384615385rem;
}
@media screen and (min-width: 520px) {
  .p-product-single__3column .wp-block-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-product-single__3column
  .wp-block-gallery.has-nested-images.columns-default
  figure.wp-block-image:not(#individual-image) {
  width: 100%;
}

.p-product-single__3column
  .wp-block-gallery.has-nested-images.is-cropped
  figure.wp-block-image:not(#individual-image)
  img {
  -o-object-fit: contain;
  object-fit: contain;
}

.p-product-single__3column
  .wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption {
  position: relative;
  background: none;
  color: inherit;
}

.p-product-single p {
  margin-top: 0.7692307692rem;
}

.p-product-single ul {
  margin-top: 1.5384615385rem;
  margin-left: 1.5384615385rem;
  list-style: square;
}

.p-product-single li + li {
  margin-top: 0.7692307692rem;
}

.p-product-single .wp-block-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5384615385rem;
}

.p-product-single .wp-block-group img {
  max-height: calc((300 / 13) * 1rem);
}

.p-product__wrap {
  margin-top: 0.7692307692rem;
}

.p-product .c-title {
  margin-top: 4.6153846154rem;
}

.p-product__head {
  align-items: center;
  background-color: #222;
  padding: 0.2307692308rem 0.6153846154rem;
  border-bottom: 0.0769230769rem dotted #fc0;
}
@media screen and (min-width: 768px) {
  .p-product__head {
    display: flex;
  }
}

.p-product__head--2 {
  padding: 0.4615384615rem 0.7692307692rem;
  background: url(../images/common/back_strive_black.jpg) repeat-x center
    center/contain;
}

.p-product__title {
  display: flex;
  color: #fff;
  font-size: 1rem;
}

.p-product__title--2 {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.1538461538rem;
  color: #fff;
}

.p-product__title span {
  background: url(../images/icon/icon_check_blue.gif) no-repeat center
    center/contain;
  width: 0.7692307692rem;
  height: auto;
  display: block;
  margin-right: 0.2307692308rem;
}

.p-product__title--2 span {
  background: url(../images/icon/icon_product_intro.gif) no-repeat center
    center/cover;
  width: 1.1538461538rem;
  display: block;
  aspect-ratio: 10/9;
}

.p-product__sub-title {
  color: #ff0000;
  font-weight: 700;
}

.p-product__sub-title a:hover {
  opacity: 1;
  text-decoration: underline;
}

span.p-product__number {
  max-width: none;
  flex: 1;
  color: #fc0;
  font-size: 0.7692307692rem;
  margin-left: 1.0769230769rem;
  line-height: 1rem;
  font-weight: 700;
  display: block;
}
@media screen and (min-width: 768px) {
  span.p-product__number {
    margin-left: 1.2307692308rem;
  }
}

.p-product__container {
  display: flex;
  margin-top: 0.7692307692rem;
  margin-left: 0.7692307692rem;
}

.p-product__img {
  display: block;
  max-width: 5.3846153846rem;
  width: 100%;
}

.p-product__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-product__img--2 {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}

.p-product__excerpt {
  width: 100%;
  flex: 1;
  margin-left: 1.2307692308rem;
}

.p-product__btn {
  display: flex;
  justify-content: end;
  align-items: center;
}

.p-product__exp {
  margin-top: 0.7692307692rem;
}

.p-product__text {
  margin-top: 0.7692307692rem;
  padding: 0 0.3846153846rem;
}

.p-product__cat-list {
  margin-top: 1.9230769231rem;
}

.p-product__cat-list > li + li {
  margin-top: 1.9230769231rem;
}

.p-product__list {
  list-style: disc;
  line-height: 2;
  margin-top: 1.5384615385rem;
  margin-left: 1.5384615385rem;
}

.p-product__list a:hover {
  opacity: 1;
  text-decoration: underline;
}

.p-product__cat-content h3 {
  padding-left: 0.2307692308rem;
  color: #f83;
  font-size: 1.2307692308rem;
  border-bottom: 1px dashed #aaa;
  margin-top: 1.5384615385rem;
}

.p-product__cat-content tr td:first-child {
  width: 9.2307692308rem;
}

.p-product__cat-content td {
  padding: 0.3846153846rem 0.7692307692rem 0;
  vertical-align: top;
  border: none;
}

.p-product__cat-content .wp-block-image {
  margin: 1.5384615385rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 33.8461538462rem;
}

.p-product__cat-content p {
  margin-top: 0.7692307692rem;
}

.p-sb-valve__img {
  width: 100%;
  text-align: center;
}

.p-sb-valve__img img {
  display: inline-block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 233/212;
}

.p-sb-valve__text {
  text-align: justify;
}

.p-search__wrap:not(:first-child) {
  margin-top: 1.9230769231rem;
}

.p-search__wrap h2 a {
  display: flex;
  align-items: center;
}

.p-side-contact {
  background-color: #222;
}

.p-side-contact__img {
  margin-top: 0.3846153846rem;
  width: 100%;
}

.p-side-contact__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 280/244;
}

.p-side-contact__body {
  padding: 1.5384615385rem;
}

.p-side-contact__content {
  padding: 1.0769230769rem 0.7692307692rem;
  border-top: 1px dashed #fff;
  border-bottom: 1px dashed #fff;
}

.p-side-contact__large-btn {
  margin: 0.7692307692rem auto 0;
  max-width: 17.0769230769rem;
  width: 100%;
}

.p-side-contact__large-btn a {
  font-size: 0.9230769231rem;
  width: 100%;
  display: inline-block;
  background-image: linear-gradient(
    180deg,
    rgb(176, 174, 164),
    rgb(128, 124, 113) 53%,
    rgb(176, 174, 164)
  );
  border: 1px solid #000;
  border-radius: 5px;
  padding: 0.3846153846rem;
  text-align: center;
}

.p-side-contact__text {
  padding: 1.2307692308rem 0.7692307692rem 0;
  font-size: 0.9230769231rem;
}

.p-side-contact__text span {
  font-size: 0.7692307692rem;
  color: #ccc;
}

.p-side-contact__btn {
  text-align: right;
}

.p-side-contact__download,
.p-side-contact__flyer {
  margin: 0.7692307692rem auto 0;
  max-width: 17.0769230769rem;
  width: 100%;
}

.p-sidebar {
  color: #fff;
}

.p-sidebar__lists > li + li {
  margin-top: 1.0769230769rem;
}

.p-sitemap__item:not(:first-child) {
  margin-top: 1.9230769231rem;
}

.p-sitemap__title {
  font-size: 1rem;
  display: flex;
  align-items: center;
  line-height: 1.8;
  color: #fff;
  background-color: #222;
  padding: 0.2307692308rem 0.6153846154rem;
  border-bottom: 0.0769230769rem dotted #fc0;
}

.p-sitemap__title span {
  background: url(../images/icon/icon_arrow_lower_right.gif) no-repeat center
    center/contain;
  width: 0.7692307692rem;
  aspect-ratio: 1/1;
  display: inline-block;
  margin-right: 0.5384615385rem;
}

.p-sitemap .page_item {
  list-style: disc;
  margin-left: 1.5384615385rem;
}

.p-sitemap .page_item a:hover,
.p-sitemap__title:hover {
  opacity: 1;
  text-decoration: underline;
}

.p-sitemap__item > ul > .page_item_has_children:not(:first-child) {
  margin-top: 1.2307692308rem;
}

.p-sitemap__item > ul > .page_item_has_children > a {
  font-weight: 700;
}

.p-sitemap__item:not(:first-of-type) > ul {
  margin-top: 1.2307692308rem;
}

.p-sitemap__item:first-of-type > ul .page_item {
  position: relative;
  font-size: 1rem;
  display: flex;
  align-items: center;
  line-height: 1.8;
  color: #fff;
  background-color: #222;
  padding: 0.2307692308rem 0.6153846154rem;
  border-bottom: 0.0769230769rem dotted #fc0;
  margin-left: 0;
  padding-left: 2.0769230769rem;
}

.p-sitemap__item:first-of-type > ul .page_item::before {
  position: absolute;
  content: "";
  background: url(../images/icon/icon_arrow_lower_right.gif) no-repeat center
    center/contain;
  width: 0.7692307692rem;
  aspect-ratio: 1/1;
  top: 50%;
  transform: translateY(-50%);
  left: 0.5384615385rem;
}

.p-sitemap__item:first-of-type > ul .page_item + .page_item {
  margin-top: 1.2307692308rem;
}

.p-to-top {
  position: relative;
  display: flex;
  justify-content: end;
  margin-top: 3.0769230769rem;
  color: #e4251e;
  order: 3;
}

.p-to-top a {
  padding-left: 3.8461538462rem;
  display: inline-block;
}

.p-to-top:hover {
  text-decoration: underline;
}

.p-to-top::before {
  position: absolute;
  content: "";
  background: url(../images/icon/icon_arrow_top.gif) no-repeat center
    center/contain;
  width: 0.7692307692rem;
  aspect-ratio: 1/1;
  top: 50%;
  transform: translateY(-50%);
  right: 7.6923076923rem;
}

.p-top-cards {
  background-color: #e4251e;
  color: #fff;
}

.p-top-cards__wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.7692307692rem;
}
@media screen and (min-width: 520px) {
  .p-top-cards__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-top-cards__wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .p-top-cards__news {
    grid-area: 1/1/3/2;
  }
}

@media screen and (min-width: 768px) {
  .p-top-cards__new-product {
    grid-area: 1/2/3/3;
  }
}

@media screen and (min-width: 768px) {
  .p-top-cards__product01 {
    grid-area: 1/3/2/4;
  }
}

@media screen and (min-width: 768px) {
  .p-top-cards__product02 {
    grid-area: 1/4/2/5;
  }
}

@media screen and (min-width: 768px) {
  .p-top-cards__product03 {
    grid-area: 2/3/3/4;
  }
}

@media screen and (min-width: 768px) {
  .p-top-cards__contact {
    grid-area: 2/4/3/5;
  }
}

@media screen and (min-width: 768px) {
  .p-top-cards__search {
    grid-area: 3/1/4/2;
  }
}

@media screen and (min-width: 768px) {
  .p-top-cards__sb-valve {
    grid-area: 3/2/4/3;
  }
}

@media screen and (min-width: 520px) {
  .p-top-cards__valves {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 768px) {
  .p-top-cards__valves {
    grid-area: 3/3/4/5;
  }
}

.p-top-cards__product02 .p-card-product__img {
  flex: 1;
  margin-top: 3.0769230769rem;
}

.p-works-content .wp-block-image {
  margin-top: 1.5384615385rem;
  max-width: 38.4615384615rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-works-content__img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-works-content__title {
  margin-top: 1.9230769231rem;
}

.p-works-content__wrap {
  display: flex;
  margin-top: 0.7692307692rem;
  gap: 1.5384615385rem;
  padding: 0 0.7692307692rem;
}

.p-works-content__list2 {
  margin-top: 0.7692307692rem;
  margin-left: 2.3076923077rem;
}

.p-works-content ol {
  list-style: decimal;
}

.p-works-content__list2 li {
  list-style: circle;
}

.p-works-content__list2 h3 {
  font-size: 1rem;
}

.p-works-content__list2 ul:first-of-type {
  flex: 1;
}

@media screen and (min-width: 520px) {
  .p-works-content__list2 ul:nth-of-type(2) {
    width: 17.3076923077rem;
  }
}

.p-works-content__list2 + .p-works-content__list2 {
  margin-top: 3.0769230769rem;
}

.p-works-content__list2 .p-works-content__wrap {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-works-content__list2 .p-works-content__wrap {
    flex-direction: row;
  }
}

.p-works {
  margin-top: 0.7692307692rem;
  padding: 0 20px;
  display: flex;
  gap: 1.5384615385rem;
  flex-direction: column-reverse;
}
@media screen and (min-width: 520px) {
  .p-works {
    flex-direction: row;
    padding: 0 25px;
  }
}

.p-works__img {
  width: 40%;
}

.p-works__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-works__link {
  display: inline-block;
  height: -moz-fit-content;
  height: fit-content;
  flex: 1;
}

.p-works__link p {
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px dashed #bbb;
}

.p-works__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.p-works__gallery .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(2, auto);
  margin-top: 1.5384615385rem;
  gap: 1.2307692308rem;
}
@media screen and (min-width: 520px) {
  .p-works__gallery .wp-block-gallery {
    grid-template-columns: repeat(3, auto);
    gap: 1.5384615385rem;
  }
}

.p-works__gallery
  .wp-block-gallery.has-nested-images.columns-default
  figure.wp-block-image:not(#individual-image) {
  width: 100%;
}

.p-works__gallery
  .wp-block-gallery.has-nested-images.is-cropped
  figure.wp-block-image:not(#individual-image)
  img {
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 auto;
  width: auto;
}

.p-works__gallery
  .wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption {
  position: relative;
  background: none;
  color: inherit;
  font-size: 0.9230769231rem;
}
@media screen and (min-width: 520px) {
  .p-works__gallery
    .wp-block-gallery.has-nested-images
    figure.wp-block-image
    figcaption {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
