@charset "utf-8";
/* リセットCSS */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  line-height: 1;
  font-feature-settings: "palt"1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
li {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}
/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
main {
  display: block;
}
/*border-box*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
}
/*-------------------- SP --------------------*/
/*●●●●●● 共通レイアウト ●●●●●●*/
body {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
}
.contents {
  padding: 45px 15px;
}
.sub_ttl {
  color: #0068b6;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.arrow {
  position: relative;
}
.arrow::after {
  position: absolute;
  content: "";
  border-top: 2px solid #797979;
  border-right: 2px solid #797979;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  top: 42%;
  right: 30px;
}

.arrow.arrow--before::after {
  position: absolute;
  content: "";
  border-top: 2px solid #797979;
  border-right: 2px solid #797979;
  width: 8px;
  height: 8px;
  transform: rotate(-135deg);
  top: 42%;
  right: 30px;
}

.arrow:hover::after {
  right: 25px;
  border-color: #036eb8;
  transition: 0.3s;
}
.arrow_white::after, .arrow_white:hover::after {
  border-color: #fff;
}
.arrow_blue::after {
  border-color: #0068b6;
}
.arrow_bk::after, .arrow_bk:hover::after {
  border-color: #000000;
}
.arrow_more_link::after {
  top: 36%;
  right: -30px;
}
.arrow.arrow_more_link:hover::after {
  right: -35px;
}
.arrow.arrow_column_link::after {
  border-color: #20aee5;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  top: 41%;
  right: 25px;
}
.arrow.arrow_column_link:hover::after {
  right: 20px;
}
.bg_gray {
  background-color: #e6e6e6;
}
.bg_white {
  background-color: #fff;
}
.triangle {
  position: relative;
}
.triangle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #f7931e;
  border-bottom: 0;
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translate(-50%, 0);
}
.triangle.triangle_purple::after {
  border-top: 10px solid #bd7bac;
}
.triangle.triangle_bk::after {
  border-top: 10px solid #000;
}
#page_top {
  position: fixed;
  bottom: 0;
  right: 0;
}
#page_top a {
  background-color: rgba(0, 104, 182, 0.8);
  color: rgba(29, 32, 136, 0.70);
  text-align: center;
  text-decoration: none;
  padding: 10px 30px;
  font-size: 2rem;
  position: relative;
}
#page_top a::before, #page_top a::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 28px;
  width: 2px;
  height: 20px;
  display: block;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.80);
  transform-origin: 50% 2px;
  transform: rotate(45deg);
}
#page_top a::after {
  transform: rotate(-45deg);
  right: 26px;
}
#page_top a:hover {
  background: #0068b6;
  opacity: 1;
}
/*header*/
header {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 63px;
  padding: 15px;
  background: #fff;
}
header .logo {
  width: 200px;
}
.open_btn {
  position: fixed;
  top: 17px;
  right: 15px;
  z-index: 999;
}
.open_btn_line {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 20px;
}
/*ボタン内側*/
.open_btn_line span {
  display: inline-block;
  transition: ease 0.3s;
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #797979;
}
.open_btn_line span:nth-of-type(1) {
  top: 0;
  animation: open_btn_line-bar01 .5s forwards;
}
@keyframes open_btn_line-bar01 {
  0% {
    transform: translateY(20px) rotate(0);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.open_btn_line.active span:nth-of-type(1) {
  top: -12px;
  width: 97%;
  animation: active-open_btn_line-bar01 ease-out .3s forwards;
}
@keyframes active-open_btn_line-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(20px) rotate(0);
  }
  100% {
    transform: translateY(20px) rotate(45deg);
  }
}
.open_btn_line span:nth-of-type(2) {
  top: 7px;
  opacity: 1;
}
.open_btn_line.active span:nth-of-type(2) {
  opacity: 0;
}
.open_btn_line span:nth-of-type(3) {
  bottom: 3px;
  animation: open_btn_line-bar03 .5s forwards;
}
@keyframes open_btn_line-bar03 {
  0% {
    transform: translateY(-20px) rotate(0);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.open_btn_line.active span:nth-of-type(3) {
  bottom: -10px;
  width: 97%;
  animation: active-open_btn_line-bar03 ease-out 0.3s forwards;
}
@keyframes active-open_btn_line-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(0);
  }
  100% {
    transform: translateY(-20px) rotate(-45deg);
  }
}
.open_btn_line span.menu {
  font-size: 11px;
  background-color: transparent;
  color: #797979;
  top: 16px;
}
.g_nav {
  position: fixed;
  z-index: 99;
  top: -200%;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100vh;
  background: #e6f4fd;
  transition: all 0.6s ease;
}
.g_nav.active {
  top: 63px;
  opacity: 1;
}
.g_nav.active .g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 640px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.g_nav ul {
  width: 100%;
  position: absolute;
  /*  top: 73px;*/
  z-index: 99;
}
.g_nav ul li {
  border-bottom: solid 1px #fff;
}
.g_nav ul li a {
  display: block;
  padding: 30px 40px;
  letter-spacing: 0.1px;
  color: #727171;
  position: relative;
}
.g_nav ul:first-child li a:hover {
  color: #036eb8;
}
.contact_link {
  /*  width: 90%;*/
  max-width: 300px;
  margin: auto;
  background-color: #d368a4;
  border-radius: 5px;
}
.contact_link a {
  display: block;
  padding: 20px 20px 20px 30px;
  text-align: center;
  color: #fff;
  position: relative;
}
.contact_link a:hover {
  color: #fff;
}
.contact_link a::before {
  content: '';
  display: inline-block;
  width: 21px;
  height: 13px;
  background: url("../img/common/contact_link.png") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 27px;
  left: 12%;
}
.g_nav .contact_link {
  margin-top: 60px;
}
.g_nav ul li.contact_link_gnav a {
  padding: 20px 20px 20px 30px;
  text-align: center;
  color: #fff;
  position: relative;
}
.g_nav ul li.contact_link_gnav a:hover {
  color: #fff;
}
.g_nav ul li.contact_txt {
  border-bottom: none;
}
.g_nav ul li p {
  width: 90%;
  max-width: 300px;
  margin: 30px auto;
}
.g_nav .contact_btn {
  position: absolute;
  top: 770px;
}
.g_nav .contact_btn li, .contact_btn li {
  position: relative;
  width: 100%;
  max-width: 275px;
  height: 90px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  border: none;
}
.g_nav .contact_btn li a, .contact_btn li a {
  line-height: 1.4;
  padding: 15px 20px 15px 85px;
  display: table-cell;
  color: #fff;
  font-size: 14px;
  vertical-align: middle;
}
.g_nav .contact_btn li:hover, .contact_btn li:hover {
  opacity: 0.5;
}
.contact_btn li a::after {
  content: '';
  display: inline-block;
  width: 70px;
  height: 70px;
  background-repeat: no-repeat;
  background-size: 50px;
  vertical-align: middle;
  position: absolute;
  left: 20px;
}
.contact_btn li:first-child {
  background-color: #0168b7;
}
.contact_btn li:first-child a {
  padding-left: 85px;
}
.contact_btn li:first-child a::after {
  top: 11px;
  background-image: url(../img/common/contact_btn01.png);
}
.contact_btn li:nth-of-type(2) {
  background-color: #00a99d;
}
.contact_btn li:nth-of-type(2) a {
  padding-left: 95px;
}
.contact_btn li:nth-of-type(2) a::after {
  top: 3px;
  background-image: url(../img/common/contact_btn02.png);
}
.contact_btn li:last-child {
  background-color: #bbdcf4;
}
.contact_btn li:last-child a {
  padding-left: 110px;
  color: #000;
}
.contact_btn li:last-child a::after {
  width: 90px;
  height: 90px;
  top: -17px;
  left: 0;
  background-size: contain;
  background-image: url(../img/common/contact_btn03.png);
}
main {
  position: relative;
  top: 63px;
}
footer {
  position: relative;
  top: 63px;
}
footer .footer_logo {
  width: 100%;
  max-width: 300px;
  margin: auto;
}
footer a:hover {
  opacity: 0.5;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
footer ul li {
  margin-top: 10px;
  padding: 0 10px;
}
footer ul li a {
  color: #666;
  font-size: 16px;
}
footer ul li a::before {
  content: "・";
  display: inline-block;
  margin-right: 5px;
  color: #666;
}
footer .copyright {
  padding: 25px 15px;
  background: #fff;
  position: relative;
}
footer .copyright a {
  display: block;
  font-size: 16px;
  text-align: center;
  color: #666666;
  position: relative;
}
footer .copyright a::after {
  content: '';
  display: inline-block;
  margin-left: 5px;
  width: 50px;
  height: 50px;
  background-image: url(../img/index/blank.png);
  background-repeat: no-repeat;
  background-size: 14px;
  vertical-align: middle;
  position: absolute;
  top: 7px;
}
footer .copyright p {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  color: #666666;
}
.fade_up {
  opacity: 0;
}
.fade_up_on {
  animation-name: js-fadeUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes js-fadeUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade_top {
  animation-name: open-fadeUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes open-fadeUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*●●●●●● トップページ ●●●●●●*/
.mv {
  height: 300px;
  overflow: hidden;
}
.slider {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
}
.slider-item {
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
/*　背景画像設定　*/
.bg_slider li {
  
}
.bg_slider li a {
  display: flex;
  width: 100%;
  height: 100vh;
}
.bg_slider .slider-item01 {
  background-image: url(../img/index/bg_slider01.jpg);
}
.bg_slider .slider-item02 {
  background-image: url(../img/index/bg_slider02.jpg);
}
.bg_slider .slider-item03 {
  background-image: url(../img/index/bg_slider03.jpg);
}
.txt_slider {
  position: relative;
  top: -380px;
}
.txt_slider .slider-item01 {
  background-image: url(../img/index/txt_slider01.png);
  background-size: 250px;
  background-position: top 110px left 50%;
}
.txt_slider .slider-item02 {
  background-image: url(../img/index/txt_slider02.png);
  background-size: 200px;
  background-position: top 200px left 15px;
}
.txt_slider .slider-item03 {
  background-image: url(../img/index/txt_slider03.png);
  background-size: 280px;
  background-position: top 220px left 15px;
}
.parallax {
  position: relative;
  overflow: hidden;
}
.parallax::after {
  content: "";
  background: url("../img/index/column_bg_sp.jpg") no-repeat left center / cover;
  background-size: cover;
  width: 100%;
  height: 95%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
}
.intoro .intoro_txt {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 500;
}
.intoro .intoro_txt img {
  display: inline-block;
  width: 60px;
  margin-right: 5px;
  position: relative;
  top: -6px;
}
.search_window {
  max-width: 600px;
  margin: 0 20px;
  padding: 40px 15px;
  background-color: #0068b6;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}
.search_window p {
  text-align: center;
  color: #fff;
}
.search_window .search_window_parts p {
  font-size: 19px;
}
.search_window .search_window_parts .search_window_parts_input {
  display: inline-block;
  width: 100%;
  height: 36px;
  margin: 10px auto 14px;
  border: none;
  border-radius: 5px;
}
.search_window .search_window_parts .search_window_parts_submit {
  display: block;
  margin: auto;
  padding: 6px 30px 8px 50px;
  background-color: #231815;
  font-size: 16px;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: relative;
}
.search_window .search_window_parts .search_window_parts_submit::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/index/search.png) no-repeat left center / 15px;
  vertical-align: middle;
  position: absolute;
  top: 10px;
  left: 20px;
}
.search_window .popular_tags p {
  display: flex;
  align-items: center;
}
.search_window .popular_tags p::before, .search_window .popular_tags p::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.5);
}
.search_window .popular_tags p::before {
  margin-right: 16px;
}
.search_window .popular_tags p::after {
  margin-left: 16px;
}
.popular_tags {
  margin-top: 30px;
}
.popular_tags ul {
  margin: 15px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
}
.popular_tags ul li {
  margin: 12px 5px 0;
  background-color: #fff;
  border-radius: 25px;
  width: 45%;
  max-width: 150px;
}
.popular_tags ul li a {
  display: block;
  padding: 5px 10px;
  color: #0068b6;
  font-size: 15px;
  text-align: center;
}
.product_list {
  padding: 100px 0 45px;
  position: relative;
  top: -55px;
  z-index: 0;
}
.product_list .contents_product_list {
  padding-top: 0;
  padding-bottom: 0;
}
.shape_ttl {
  width: 200px;
  margin: 0 auto 20px;
}
.triangle {
  padding-bottom: 15px;
  font-size: 21px;
  text-align: center;
  border-bottom: 1px solid #231815;
}
.triangle02 {
  padding-top: 15px;
  border-top: 1px solid #231815;
}
.product_list ul {
  margin-top: 30px;
}
.product_list ul li {
  height: 80px;
  margin: 20px;
  background-color: #fff;
  box-shadow: 3px 3px 5px 0px rgba(119, 119, 119, 0.3);
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
}
.product_list ul li::before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url(../img/index/door01.png);
  background-repeat: no-repeat;
  background-size: 20px;
  vertical-align: middle;
  position: absolute;
  top: 31px;
  left: 20px;
}
.product_list ul li.door01::before {
  background-image: url(../img/index/door01.png);
}
.product_list ul li.door02::before {
  background-image: url(../img/index/door02.png);
}
.product_list ul li.door03::before {
  background-image: url(../img/index/door03.png);
}
.product_list ul li.door04::before {
  background-image: url(../img/index/door04.png);
  top: 34px;
}
.product_list .partition {
  margin-top: 60px;
}
.product_list ul li.partition01::before {
  background-image: url(../img/index/partition01.png);
}
.product_list ul li.partition02::before {
  background-image: url(../img/index/partition02.png);
}
.product_list ul li.partition03::before {
  background-image: url(../img/index/partition03.png);
}
.product_list ul li.partition04::before {
  background-image: url(../img/index/partition04.png);
  top: 34px;
}
.product_list ul li.partition05::before {
  background-image: url(../img/index/partition05.png);
}
.product_list ul li .product_ttl {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding: 26px 0 26px 15px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}
.product_list ul li .product_ttl:hover, .product_list ul li:hover::before {
  opacity: 0.5;
}
.product_list ul li .product_ttl span {
  position: absolute;
  top: 50%;
}
.link_btn {
  margin-top: 20px;
  text-align: center;
}
.link_btn a {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 10px 20px;
  color: #fff;
  background-color: #0068b6;
  border-radius: 5px;
}
.link_btn.link_btn_white a, .link_btn.link_btn_bk a {
  padding: 9px 19px;
  color: #0068b6;
  background-color: #fff;
  border: 1px solid #0068b6;
  border-radius: 5px;
}
.link_btn.link_btn_bk a {
  color: #000000;
  border-color: #000000;
}
.info_top h2 {
  font-size: 28px;
  text-align: center;
}
.info ul {
  margin-top: 45px;
  border-top: 1px solid #808080;
}
.info ul li {
  padding: 35px 0;
  border-bottom: 1px solid #808080;
}
.info ul li p {
  width: 98%;
  margin: auto;
}
.info ul li .info_date {
  margin-bottom: 10px;
  position: relative;
}
.info ul li a:not(.wp-block-button__link):hover {
  color: #0068b6;
}
.info_top h2 {
  font-size: 28px;
  text-align: center;
}
.more_link {
  text-align: right;
  margin: 30px 50px 0 0;
}
.more_link a {
  color: #0068b6;
}
.column.column_top h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #20aee5;
}
.column.column_top h2 img {
  display: inline-block;
  width: 80px;
  margin-right: 10px;
  position: relative;
  top: -6px;
}
.column ul {
  margin-top: 45px;
}
.column ul li {
  max-width: 500px;
  margin: 30px auto 0;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
}
.column ul li p {
  text-align: center;
  margin: 20px 0 13px;
}
.column ul li .column_link {
  margin-bottom: 0;
}
.column ul li .column_link a {
  display: inline-block;
  padding: 7px 40px 6px 34px;
  font-size: 12px;
  color: #20aee5;
  border: 1px solid #20aee5;
  border-radius: 25px;
  text-align: center;
}
.contact_link.contact_link_top a {
  padding: 10px 20px 10px 30px
}
.contact_link.contact_link_top a::before {
  top: 17px;
}
.contact_link.contact_link_top a::after {
  width: 8px;
  height: 8px;
  top: 43%;
}
.contact .contact_txt_top {
  margin: 55px 0 60px;
}
.contact .contact_btn li:first-child a::after {
  top: 20px;
}
.contact .contact_btn li:nth-of-type(2) a::after {
  top: 21px;
}
.contact .contact_btn li:last-child a::after {
  top: 1px;
}
/*●●●●●● 下層ページ ●●●●●●*/
.page_ttl {
  padding: 65px 15px;
  height: 200px;
}
.page_ttl::before {
  content: "";
  background: url("../img/common/page_ttl_bg_sp.jpg") no-repeat center left / cover;
  background-size: cover;
  width: 100%;
  height: 290px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.page_ttl.scroll::before, #about .page_ttl.page_ttl_about.scroll::before {
  background: none;
}
.page_ttl .page_ttl_name {
  margin-top: 10px;
  text-align: center;
  font-size: 24px;
  font-weight: normal;
}
#about .page_ttl.page_ttl_about {
  padding: 90px 15px;
  height: 260px;
}
#about .page_ttl.page_ttl_about::before {
  background: url("../img/about/page_ttl_bg_sp.jpg") no-repeat no-repeat center left /cover;
  height: 323px;
}
#about .page_ttl.page_ttl_about .page_ttl_name span {
  position: relative;
  left: 5px;
  top: 6px;
  font-size: 14px;
}
#about .page_ttl.page_ttl_about .page_ttl_name img {
  display: inline-block;
  width: 180px;
}
#about .intoro_about .intoro_txt {
  margin: 0 0 30px;
  color: #0068b6;
  line-height: 1.8;
}
#about .intoro_about p {
  line-height: 2;
}
#about .naming {
  margin-top: 60px;
}
#about .naming h3 {
  max-width: 500px;
  margin: auto;
}
#about .naming p {
  margin-top: 30px;
  text-align: center;
}
#about .naming p span.bg_gray {
  display: inline-block;
  padding: 3px 10px 5px;
}
#about .problem ul li .triangle_problem {
  margin: 40px 0 20px;
  text-align: center;
}
#about .problem ul li:first-child .triangle_problem {
  margin-top: 0;
}
#about .problem ul li .youtube {
  width: 100%;
  margin-bottom: 50px;
  aspect-ratio: 16 / 9;
}
#about .problem ul li .youtube iframe {
  width: 100%;
  height: 100%;
}
#about .problem ul li .triangle_problem span {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background-color: #0068b6;
  text-align: center;
  border-radius: 5px;
}
#about .problem ul li .triangle_problem::after {
  bottom: -9px;
}
#about .sub_ttl_network {
  text-align: center;
}
#about .network h3 {
  margin: 20px 0 50px;
  font-weight: 500;
  line-height: 1.6;
}
#about figure {
  width: 80%;
  max-width: 450px;
  margin: auto;
}
#column .column_page .contents {}
#column .column_page .contents ul {
  margin-top: -70px;
}
#column .column_page .contents ul li {
  margin-top: 70px;
  background-color: transparent;
  padding: 0;
}
.c-image-square {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
#single_column .ttl_single_column {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.7;
}
#single_column ul li {
  margin-top: 50px;
}
#single_column ul li p {
  margin-bottom: 30px;
}
#single_column .head_single_column,
#single_column .wp-block-heading {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: bold;
  color: #036eb8;
  padding-bottom: 15px;
  border-bottom: 1px solid #036eb8;
}
.p-column-body {
  margin-top: 50px;
}
.p-column-body > * {
  margin-bottom: 30px;
}
.link_btn.link_btn_list {
  margin-top: 120px;
}
.link_btn.link_btn_list a {
  max-width: 220px;
}
.breadcrumb {
  padding: 10px 15px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.breadcrumb.breadcrumb_product {
  padding: 0;
}
.breadcrumb li {
  padding-right: 24px;
  position: relative;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding-left: 8px;
  position: absolute;
  top: 1px;
}
.breadcrumb li:last-child::after {
  content: "";
}
.breadcrumb li a {
  font-size: 14px;
}
.breadcrumb li a:hover {
  opacity: 0.5;
}
#info .info.info_page .contents {
  padding-top: 15px;
}
#info .info.info_page ul {
  margin-top: 0;
  border-top: none;
}
#info .info ul li a p.info_date_page span.update, #info .info ul li p.info_date_page span.update {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 7px 2px;
  color: #fff;
  font-size: 77%;
  line-height: 1;
  background-color: #ed1c24;
  position: absolute;
  top: 5px;
}
#info .info ul li p.info_date_page span.update {
  top: 7px;
}
#pagination {
  padding-top: 40px;
  display: flex;
  justify-content: center;
}
#pagination li {
  border-bottom: none !important;
}
#pagination li a {
  padding: 2px 10px;
  font-size: 14px;
}
#pagination li.select {
  /* margin: 0 6px 0 -26px; */
  margin: 0 6px;
}
#pagination li.select a {
  padding: 2px 9px;
  background: #0068b6;
  color: #fff;
  border-radius: 50px;
}
#pagination li.select a:hover {
  opacity: 0.8;
}
#pagination .arrow.arrow_pagination::after {
  top: 9px;
  right: 4px;
}
#info .info.info_single ul li {
  border-bottom: none;
}
#info .info.info_single ul li .line_info {
  border-bottom: 1px solid #808080;
}
#info .info.info_single ul li .line_info p.info_ttl.info_single {
  font-size: 22px
}
#info .info.info_single ul li p,
#info .info.info_single ul li .line_info p,
#info .info.info_single ul li .line_info p.info_date_page,
#info .info.info_single .wp-block-heading,
#info .info.info_single .wp-block-separator,
#info .info.info_single .wp-block-list {
  width: 90%;
  margin: auto;
  position: relative;
}
#info .info.info_single .wp-block-heading {
  font-weight: bold;
  color: #0168b7;
  font-size: 1.25em;
  margin: 20px auto 15px auto;
}
#info .info.info_single .wp-block-list {
  margin: 20px auto;
}
#info .info.info_single .wp-block-list li {
  padding: 0;
  margin-left: 1em;
  list-style: disc;
}
#info .info.info_single .line_info {
  padding-bottom: 30px;
  margin-bottom: 30px;
}
#info .info.info_single .line_info {
  padding-bottom: 30px;
  margin-bottom: 30px;
}
#info .info.info_single .lead_txt {
  margin-bottom: 40px;
}
#info .info.info_single .lead_txt p {
  margin-bottom: 20px;
}
#info .info.info_single .lead_txt a:not(.wp-block-button__link) {
  display: inline;
  text-decoration: underline;
}
#info .info.info_single figure {
  max-width: 720px;
  margin: auto;
  margin-bottom: 20px;
}


#info .info.info_single .info_other {
  margin-top: 70px;
}
#info .info.info_single .info_other p {
  margin-bottom: 10px;
}
#contact .contents p.head {
  margin-bottom: 40px;
}
#contact .form_box {
  background-color: #eaebeb;
  margin: auto;
  padding: 30px 20px 45px;
  position: relative;
}
#contact .form_box.form_box_02 {
  margin-top: 50px;
  background-color: #eaf1f9;
}
#contact .form_box h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
#contact .form_box .required::after {
  content: "*";
  color: #e60012;
  margin-left: 5px;
  display: inline-block;
  font-weight: 100;
  font-size: 45px;
  line-height: 0;
  position: relative;
  top: 22px;
  left: -4px;
}
#contact .form_box dl {
  margin-top: 30px;
}
#contact .form_box dl dt {
  margin-bottom: 5px;
  padding-left: 5px;
}
#contact .form_box dt span {
  padding-top: 2px;
}
#contact .form_box input, #contact .form_box select, #contact .form_box textarea {
  display: block;
  width: 100%;
  height: 58px;
  padding: 20px;
  background-color: #fff;
  border: none;
  border-radius: 0;
  font-size: 16px;
}
.c-form-flex p,
.mwform-tel-field,
.mwform-zip-field {
  display: flex;
  align-items: center;
}
.c-form-flex input {
  margin-left: 10px;
}
.mwform-tel-field input {
  max-width: 6em;
  margin: 0 10px;
}
.mwform-tel-field input:first-child {
  margin-left: 0;
}
.mwform-tel-field input:last-child {
  margin-right: 0;
}
.mwform-zip-field input {
  max-width: 6em;
  margin-left: 10px;
}

#contact .form_box textarea {
  height: 250px;
}
#contact .form_box dd .bg_white input {
  height: inherit;
  padding: 10px 15px;
}
#contact .form_btn {
  width: 100%;
  max-width: 250px;
  margin: 30px auto 0;
}
#contact .form_btn {
  width: 100%;
  max-width: 250px;
  margin: 30px auto 0;
}
#contact .form_btn input {
  width: 100%;
  padding: 9px 0 11px;
  background-color: #09529D;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}
#contact .form_btn input:hover {
  opacity: 0.6;
}
#contact .contents_form {
  padding-top: 0;
}
#contact .contents_form .contact_txt_top {
  margin: 0;
}
#contact .contents_form .contact_txt_top p {
  margin-bottom: 20px;
}
#items .page_ttl.page_ttl_about {
  padding: 90px 15px;
  height: 260px;
}
#items .page_ttl.page_ttl_items::before {
  background: url("../img/items/page_ttl_bg.jpg") no-repeat no-repeat center center /cover;
}
#items .page_ttl.page_ttl_items .page_ttl_name {
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.5px;
  position: relative;
}
#items .bg_gray .contents h2 {
  margin-top: 15px;
}
#items .product_list_items ul li {
  height: inherit;
  flex-wrap: wrap;
  margin: 20px 0 45px;
  box-shadow: none;
}
#items .product_list_items ul li:hover {
  opacity: 0.8;
}
#items .product_list_items ul li a {
  display: block;
  width: 100%;
}
#items .product_list_items ul li a:hover {
  opacity: inherit;
}
#items .product_list_items ul li figure {
  width: 100%;
}
#items .product_list.product_list_items ul li .product_ttl {
  width: 12%;
  padding: 10px 0 0;
}
#items .product_list_items ul li .product_ttl span {
  position: static;
  top: 100%;
  font-size: 14px;
}
#items .product_list_items ul li::before {
  top: inherit;
  bottom: -30px;
}
#items .product_list_items ul li.door03::before {
  top: inherit;
  bottom: -16px;
}
#items .product_list_items ul li.door04::before {
  top: inherit;
  bottom: -33px;
}
#items .product_list_items ul li.partition01::before {
  top: inherit;
  bottom: -24px;
}
#items .product_list_items ul li.partition02::before {
  top: inherit;
  bottom: -29px;
}
#items .product_list_items ul li.partition03::before {
  top: inherit;
  bottom: -20px;
}
.link_list .contact_link {
  margin-top: 20px;
}
#product .page_ttl_product {
  padding: 35px 15px;
  height: 120px;
}
#product .page_ttl_product .page_ttl_name {
  color: #0068b6;
  font-weight: bold;
}
.product_description {
  margin-top: 40px;
}
.product_description .product_description_ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
.product_description .product_description_subttl {
  font-size: 20px;
  font-weight: 700;
}
#product .product_overview .product_description .product_description_text {
  margin: 20px 0 30px;
}
.product_menu_btn li {
  max-width: 300px;
  margin: 10px auto 0;
}
.product_menu_btn li a {
  display: block;
  width: 100%;
  padding: 10px;
  background: #0068b6;
  color: #fff;
  text-align: center;
}
.product_menu_btn li a:hover {
  opacity: 0.8;
}
#product .product_overview .product_main_img {
  max-width: 660px;
  margin: 40px auto;
}
#product .product_overview .product_img_slider {
  max-width: 660px;
  margin: 0 auto;
}
#product .product_overview .product_img_slider li {
  margin-right: 15px;
}
#product .product_overview .product_img_slider li img {
  max-width: 100%;
  height: auto;
}
.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  padding: 12px 31px 28px 9px;
  background-color: #999999;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  position: absolute; /*絶対配置にする*/
  top: 45%;
  z-index: 1;
}
.slick-prev { /*戻る矢印の位置と形状*/
  padding: 12px 24px 28px 16px;
  left: -1.5%;
}
.slick-next { /*次へ矢印の位置と形状*/
  right: -1.5%;
}
.slick-prev::before, .slick-next::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff; /*矢印の色*/
  border-right: 2px solid #fff; /*矢印の色*/
}
.slick-prev::before { /*戻る矢印の位置と形状*/
  transform: rotate(-135deg);
}
.slick-next::before { /*次へ矢印の位置と形状*/
  transform: rotate(45deg);
}
#product .product_details .sc_ttl {
  margin-bottom: 40px;
  font-size: 20px;
  text-align: center;
  position: relative;
}
#product .product_details .sc_ttl::after {
  content: "";
  display: block;
  width: 43px;
  height: 2px;
  border-bottom: 2px solid #0068b6;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 21px);
}
#product .product_details .sc_subttl {
  color: #0068B6;
  font-weight: 500;
}
#product .product_details .disc::before {
  content: "●";
  display: inline-block;
  margin-right: 2px;
  color: #0068B6;
}
#product .product_details ul {
  margin-top: 24px;
}
#product .product_details ul li {
  margin-bottom: 10px;
}
#product .product_details ul li:last-child {
  margin-bottom: 0;
}
#product .product_details .product_details_schematic {
  margin-top: 24px;
}
#product .product_details .product_details_schematic p {
  margin-bottom: 8px;
}
#product .product_details .product_details_schematic p a {
  text-decoration: underline;
}
#product .product_details .product_details_schematic figure {
  max-width: 800px;
  margin: auto;
}
#product .product_details table {
  width: 100%;
  border: 1px solid #999999;
  border-bottom: none;
}
#product .product_details table tr {
  display: block;
  border-bottom: 1px solid #999;
  background-color: #dceaf3;
}
#product .product_details table tr th, #product .product_details table tr td {
  display: block;
  width: 100%;
  padding: 10px;
}
#product .product_details table tr th {
  text-align: left;
}
#product .product_details table tr td {
  background-color: #fff;
}

#product .product_details table.table-ptn02 {
}

#product .product_details table.table-ptn02 tr {
  display: table-row;
}
#product .product_details table.table-ptn02 th {
  text-align: center;
  vertical-align: middle;
}

#product .product_details table.table-ptn02 tr th,
#product .product_details table.table-ptn02 tr td {
  border: 1px solid #999999;
  display: table-cell;
  padding: 10px;
}
#product .product_details table.table-ptn02 tr td {
  font-size: .85em;
  vertical-align: middle;
}


#product .product_details .table_txt {
  margin-top: 10px;
}
#product .link_btn_back {
  padding-top: 0;
  text-align: right;
}
#product .link_btn_back a {
  max-width: 90px;
  padding: 10px 25px;
  font-size: 16px;
  text-align: left;
  color: #4d4d4d;
  background: #fff;
  border: 1px solid #4d4d4d;
}
#product .link_btn_back .arrow::after {
  right: 15px;
}
#product .product_series .sc_ttl_product_series {
  padding-bottom: 10px;
  font-size: 20px;
  text-align: center;
  color: #0068b6;
  border-bottom: 1px solid #0068B6;
}
#product .product_series_wrap {
  background: url(../img/index/column_bg_sp.jpg) no-repeat left center / cover;
  background-attachment: fixed;
}


#product .product_series ul li {
  width: calc(100% - 10px);
  margin: 40px 0 0 10px;
  padding: 20px 15px;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
}
#product .product_series ul li a:hover {
  opacity: 0.8;
}
#product .product_series ul li figure {
  width: 100px;
  position: absolute;
  top: -10px;
  left: -10px;
}
#product .product_series ul li .product_series_ttl, #product .product_series ul li .product_series_subttl, #product .product_series ul li p {
  width: calc(100% - 90px);
  margin-left: 90px;
}
#product .product_series ul li .product_series_ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
#product .product_series ul li .product_series_subttl {
  margin-top: 10px;
  font-weight: 700;
}
#product .product_series ul li .product_series_content {
  margin-top: 10px;
  font-size: .912em;
}

.p-catalog {
  display: flex;
  flex-wrap: wrap;
}
.p-catalog__box {
  margin: 24px 2% 0 2%;
  text-align: center;
}
.p-catalog__box--col2,
.p-catalog__box--col3,
.p-catalog__box--col4 {
  width: 46%;
}
.p-catalog__title {
  color: #0068b6;
  font-size: .912em;
  margin-bottom: 5px;
}
.p-catalog__description {
  margin-top: 5px;
  font-size: .85em;
  /* text-align: left; */
}
.p-catalog__image {
  display: block;
  margin: 0 auto;
}
.p-catalog__image img {
  width: auto;
  max-width: 100%;
  height: auto;
}


/*-----製品一覧ページ-----*/
/*サイドバー*/
/*キーワード検索*/
#product aside .search_sidebar p {
  margin-bottom: 5px;
}
#product aside .search_sidebar .search_sidebar_input {
  position: relative;
}
#product aside .search_sidebar .search_sidebar_input input {
  width: 100%;
  padding: 10px 5px;
  border: 1px solid #969696;
  box-shadow: 3px 3px 5px 0px rgba(119, 119, 119, 0.3);
}
#product aside .search_sidebar .search_sidebar_input button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 7px;
  right: 10px;
}
/*ハッシュタグ*/
#product aside .popular_tags_sidebar {
  margin-top: 0;
}
#product aside .product_link_sidebar {
  margin-top: 50px;
}
#product aside .product_link_sidebar.partition {
  margin-top: 30px;
}
#product aside .popular_tags_sidebar ul li {
  border: 1px solid #0068b6;
}
/*カテゴリ別リンク*/
#product aside .product_link_sidebar_head {
  color: #fff;
  text-align: center;
  background-color: #0068b6;
  border-radius: 25px;
}
#product aside .product_link_sidebar_head_arrow {
  display: block;
  width: 100%;
  position: relative;
}
#product aside .product_link_sidebar_head_arrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-color: #f7931e;
  position: absolute;
  top: -11%;
  right: 0;
  border-radius: 25px;
}
#product aside .partition .product_link_sidebar_head_arrow::before {
  background-color: #bd7bac;
}
#product aside .product_link_sidebar_head_arrow::after {
  top: 10px;
  right: 13px;
}
/*
#product aside .product_link_sidebar_head_arrow:hover::before {
  right: -5px;
  transition: 0.3s;
}
#product aside .product_link_sidebar_head_arrow:hover::after {
  right: 8px;
}
*/
#product aside .product_link_sidebar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#product aside .product_link_sidebar ul li {
  width: 49%;
  margin-top: 10px;
  background-color: #fde9d2;
  border-radius: 5px;
  display: block;
  align-items: center;
  position: relative;
}
#product aside .partition.product_link_sidebar ul li {
  background-color: #f2e5ee;
}
#product aside .product_link_sidebar ul li a {
  display: table-cell;
  width: 100vw;
  height: 60px;
  vertical-align: middle;
  padding: 10px 0 10px 15px;
  line-height: 1.3;
  font-size: 16px
}
#product aside .product_link_sidebar ul li a span {
  margin-left: -3px;
  font-size: 10px;
  display: block;
}
#product aside .product_link_sidebar ul li .product_link_sidebar_ul_arrow::after {
  right: 15px;
}
#product aside .product_link_sidebar ul li:hover .product_link_sidebar_ul_arrow::after {
  right: 10px;
}
/*アコーディオンメニュー*/
#product aside .sidebar_accordion, #product aside .sidebar_accordion .partition {
  margin-top: 50px;
}
#product aside .sidebar_accordion ul li {
  box-shadow: none;
  border-bottom: 1px solid #262626;
}
#product aside .sidebar_accordion ul li .product_ttl {
  padding: 20px 15px;
  font-size: 18px;
  text-align: left;
  position: relative;
}
#product aside .sidebar_accordion ul li .product_ttl span {
  font-size: 90%;
}
#product aside .sidebar_accordion ul li .product_ttl::before, #product aside .sidebar_accordion ul li .product_ttl::after {
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: 48%;
  right: 15px;
}
#product aside .sidebar_accordion ul li .product_ttl::after {
  transform: rotate(90deg);
}
#product aside .sidebar_accordion ul li .open.product_ttl::after {
  opacity: 0;
  transition: 0.3s;
}
#product aside .sidebar_accordion ul li .accordion_menu {
  display: none;
  background-color: #f2f2f2;
  padding: 10px 0;
}
#product aside .sidebar_accordion ul li .accordion_menu ul {
  padding: 10px 0;
}
#product aside .sidebar_accordion ul li .accordion_menu ul li {
  padding: 3px 15px;
  font-size: 14px;
  border: none;
}
#product aside .sidebar_accordion ul li .accordion_menu ul li.sf-level-0 {
  padding: 3px 0;
}
#product aside .sidebar_accordion ul li .accordion_menu ul li .accordion_menu_head,
.searchandfilter h4 {
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #979797;
}
/*製品情報*/
#product .product_thumb_list .product_box {
  margin-bottom: 20px;
  padding: 20px 20px 30px;
  border: 1px solid #ddd;
}
#product .product_thumb_list .product_box .product_menu_btn_thumb_list {
  margin: 30px 0 40px;
}
#product .product_thumb_list .product_box .product_menu_btn_thumb_list li {
  max-width: 100%;
}
#product .product_thumb_list .product_box .product_menu_btn_thumb_list li a {
  background-color: #dceaf3;
  color: #000;
}
/*-------------------- TB --------------------*/
/*768px以上*/
@media (min-width: 768px) {
  /*●●●●●● 共通レイアウト ●●●●●●*/
  .contact_link a::before {
    left: 70px;
  }
  .g_nav .contact_btn li a, .contact_btn li a {
    font-size: 16px;
  }
  .contact_btn li:first-child a::after {
    top: 12px;
  }
  /*●●●●●● トップページ ●●●●●●*/
  .txt_slider .slider-item02 {
    background-position: top 200px left 20%;
  }
  .txt_slider .slider-item03 {
    background-position: top 220px left 18%;
  }
  .intoro .intoro_txt {
    text-align: center;
  }
  .intoro .intoro_txt span {
    display: block;
  }
  .search_window {
    /*    width: 80%;*/
    max-width: inherit;
    margin: 0 25px;
  }
  .search_window form .search_window_parts {
    display: flex;
    flex-wrap: wrap;
  }
  .search_window .search_window_parts p {
    padding-top: 12px;
  }
  .search_window form .search_window_parts .search_window_parts_input {
    width: calc(100% - 240px);
    height: 54px;
    margin: 0 0 0 15px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .search_window .search_window_parts .search_window_parts_submit {
    margin: -1px 0 0 5px;
    padding: 14px 25px 15px 49px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .search_window .search_window_parts .search_window_parts_submit::before {
    top: 20px;
  }
  .search_window .popular_tags ul {
    width: 680px;
  }
  .search_window .popular_tags ul li {
    width: 22%;
  }
  .product_list {
    top: -160px;
    padding-top: 220px;
  }
  .product_list .contents .flex {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
  }
  .product_list .contents .door, .product_list .contents .partition {
    width: 48%;
  }
  .product_list ul li {
    margin: 20px 0;
  }
  .product_list ul li::before {
    width: 60px;
    height: 60px;
    background-size: 40px;
    top: 21px;
    left: 20px;
  }
  .product_list ul li.door03::before {
    background-size: 34px;
    top: 19px;
    left: 23px;
  }
  .product_list ul li.door04::before {
    top: 27px;
  }
  .product_list .partition {
    margin-top: 0;
  }
  .product_list ul li.partition01::before {
    top: 23px;
  }
  .product_list ul li.partition02::before {
    background-size: 33px;
  }
  .product_list ul li.partition04::before {
    top: 18px;
  }
  .product_list ul li .product_ttl {
    font-size: 18px;
  }
  .contact .contact_txt_top {
    text-align: center;
  }
  /*●●●●●● 下層ページ ●●●●●●*/
  .page_ttl.page_ttl_about .page_ttl_name {
    margin-top: 20px;
  }
  .page_ttl.page_ttl_about .page_ttl_name img {
    width: 250px;
  }
  .page_ttl.page_ttl_about .page_ttl_name span {
    font-size: 16px;
  }
  #about .page_ttl.page_ttl_about {
    padding: 115px 15px;
    height: 320px;
  }
  #about .page_ttl.page_ttl_about::before {
    height: 390px;
  }
  #about .intoro_about p {
    text-align: center;
  }
  #about .intoro_about p span {
    display: block;
  }
  #about .problem ul li p {
    text-align: center;
  }
  #about .problem ul li p span {
    display: block;
  }
  #about .sub_ttl_network, #about .network h3 {
    text-align: left;
    margin-left: 15%;
  }
  #about .network h3 span {
    display: block;
  }
  #about figure {
    max-width: 530px;
    position: relative;
    top: -90px;
    right: -10%;
    margin-bottom: -90px;
  }
  .breadcrumb {
    padding-left: 50px;
  }
  #contact .contents p.head {
    text-align: center;
  }
  #contact .contents p.head span {
    display: block;
  }
  #contact .form_box dl {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 30px auto 0;
  }
  #contact .form_box dl dt {
    width: 180px;
    display: flex;
    align-items: center;
  }
  #contact .form_box dl dt span {
    display: table-cell;
  }
  #contact .form_box dl dt span.break {
    display: block;
  }
  #contact .form_box dl dd {
    width: calc(100% - 180px);
  }
  #contact .form_box dl.long_box {
    display: inherit;
    width: 100%;
  }
  #contact .form_box dl.long_box dt {
    margin-bottom: 10px
  }
  #contact .form_box dl.long_box dd {
    width: 100%;
  }
  #contact .form_box dl.short_box dd input {
    width: 60%;
  }
  #contact .form_box .address {
    line-height: 1.2;
  }
  #contact .form_box .address .required::after {
    line-height: 1.2;
    top: -27px;
  }
  #contact .form_box .address_01 .required::after {
    left: 74px;
  }
  #contact .form_box .address_02 {
    margin: -12px auto -42px;
  }
  #contact .form_box .address_02 .required::after {
    left: 111px;
  }
  #contact .contents_form .contact_txt_top p {
    text-align: center;
  }
  #items .bg_gray .contents h3 {
    text-align: center;
  }
  #items .bg_gray .contents h3 span {
    display: block;
  }
  #items .product_list.product_list_items ul li .product_ttl {
    width: 18%;
    height: 70px;
  }
  #items .product_list_items ul li::before {
    bottom: -13px;
  }
  #items .product_list_items ul li.door03::before {
    bottom: -8px;
  }
  #items .product_list_items ul li.door04::before {
    bottom: -17px;
  }
  #items .product_list_items ul li.partition01::before {
    bottom: -18px;
  }
  #items .product_list_items ul li.partition02::before {
    bottom: -7px;
  }
  #items .product_list_items ul li.partition03::before {
    bottom: -11px;
  }
  #items .product_list_items ul li.partition04::before {
    bottom: -8px;
  }
  #items .link_list {
    margin: 30px auto -100px;
  }
  .link_list {
    width: 740px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .link_list p {
    width: 300px;
    margin: 0 auto
  }
  .link_list .contact_link {
    margin-top: 0;
  }
  .product_menu_btn {
    display: flex;
    justify-content: space-between;
  }
  .product_menu_btn li {
    width: 32.5%;
  }
  #product .product_details table tr {
    display: flex;
    align-items: center;
    align-items: stretch;
  }
  #product .product_details table tr th, #product .product_details table tr td {
    display: table-cell;
  }
  #product .product_details table tr th {
    width: 25%;
  }
  #product .product_details table tr td {
    width: 75%;
    border-left: 1px solid #999999;
  }
  /*製品一覧*/
  #product .product_thumb_list .product_box .product_menu_btn_thumb_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0 20px;
  }
  #product .product_thumb_list .product_box .product_menu_btn_thumb_list li {
    width: 19%;
    margin: 10px 0 0;
  }
  #product .product_thumb_list .product_box .product_menu_btn_thumb_list li a {
    font-size: 14px;
  }
}
/*-------------------- PC小 --------------------*/
/*960px以上*/
@media (min-width: 960px) {
  /*●●●●●● 共通レイアウト ●●●●●●*/
  /*header*/
  .open_btn, .g_nav .contact_txt, .g_nav ul.contact_btn {
    display: none;
  }
  .g_nav {
    width: calc(100% - 250px);
    height: inherit;
    top: 12px;
    left: inherit;
    right: 15px;
    background-color: transparent;
    opacity: 1;
  }
  .g_nav ul {
    display: flex;
    justify-content: flex-end;
  }
  .g_nav ul li {
    border: none;
  }
  .g_nav ul li a {
    padding: 6px 20px 20px 0;
  }
  .g_nav ul li a::after {
    display: none;
  }
  .g_nav ul li.contact_link {
    width: 170px;
    height: 37px;
    margin: 0;
  }
  .g_nav ul li.contact_link a {
    padding: 2px 20px 4px 50px;
  }
  .g_nav ul li.contact_link a::before {
    top: 12px;
    left: 20px;
  }
  footer .copyright {
    padding: 25px 50px;
  }
  /*●●●●●● トップページ ●●●●●●*/
  .contents {
    padding: 90px 50px;
  }
  .contents.contents_small {
    max-width: 800px;
    margin: auto;
  }
  .sub_ttl {
    font-size: 20px;
  }
  .mv {
    height: 550px;
  }
  .slider-item {
    position: relative;
    z-index: -1;
    height: 550px;
    background-repeat: no-repeat;
  }
  .txt_slider {
    position: relative;
    top: -500px;
    pointer-events: none;
  }
  .txt_slider li {
    pointer-events: none;
  }
  .txt_slider .slider-item01 {
    background-image: url(../img/index/txt_slider01.png);
    background-size: 400px;
    background-position: top 50px left 20%;
  }
  .txt_slider .slider-item02 {
    background-image: url(../img/index/txt_slider02.png);
    background-size: 300px;
    background-position: top 200px left 20%;
  }
  .txt_slider .slider-item03 {
    background-image: url(../img/index/txt_slider03.png);
    background-size: 380px;
    background-position: top 220px left 18%;
  }
  .intoro .intoro_txt {
    margin-top: 20px;
    font-size: 26px;
  }
  .intoro .intoro_txt img {
    width: 73px;
    top: -7px;
  }
  .search_window {
    width: 100%;
    max-width: 1100px;
    margin: auto;
  }
  .search_window .search_window_parts p {
    font-size: 24px;
    padding-top: 0;
    line-height: 2.2;
  }
  .search_window .popular_tags p, .search_window form .search_window_parts {
    max-width: 830px;
    margin: auto;
  }
  .search_window form .search_window_parts .search_window_parts_input {
    width: calc(100% - 274px);
  }
  .search_window .popular_tags ul {
    width: 540px;
  }
  .product_list {
    padding: 220px 0 90px;
  }
  .product_list .contents {
    width: 85%;
    margin: 50px auto 0;
  }
  .product_list .contents .door, .product_list .contents .partition {
    width: 44%;
  }
  .product_list .shape_ttl {
    width: 270px;
  }
  .product_list ul li {
    height: 130px;
  }
  .product_list ul li::before, .product_list ul li.door03::before, .product_list ul li.partition01::before, .product_list ul li.partition04::before {
    top: 45px;
  }
  .product_list ul li.door04::before {
    top: 50px;
  }
  .product_list ul li .product_ttl {
    padding: 51px 0 51px 15px;
    /*    font-size: 18px;*/
  }
  .info_top {
    margin-top: -160px;
  }
  .info ul li a {
    display: flex;
  }
  .info ul li a p.info_date {
    width: 180px;
    margin-bottom: 0;
  }
  .column.column_top::before {
    background: url("../img/index/column_bg.jpg") no-repeat center center / cover;
  }
  .column ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 45px;
    margin-left: -2%;
  }
  .column ul li {
    width: 31.333%;
    margin: 0 0 0 2%;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
  }
  .contact .contact_btn {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: auto;
  }
  footer .footer_logo {
    max-width: 370px;
    margin: 0 0 0 7px;
  }
  footer ul {
    width: 350px;
    position: absolute;
    top: 40px;
    right: 15%;
  }
  footer ul li {
    width: 50%;
  }
  footer .copyright > div {
    display: flex;
    justify-content: flex-start;
  }
  footer .copyright p {
    margin: 1.5px 0 0 40px;
  }
  /*●●●●●● 下層ページ ●●●●●●*/
  .page_ttl {
    height: 270px;
    padding: 80px 15px;
  }
  .page_ttl::before {
    height: 335px;
  }
  .page_ttl .sub_ttl_page {
    font-size: 20px;
  }
  .page_ttl .page_ttl_name {
    font-size: 40px;
  }
  .page_ttl.page_ttl_about .page_ttl_name {
    margin-top: 40px;
  }
  .page_ttl.page_ttl_about .page_ttl_name img {
    width: 470px;
  }
  .page_ttl.page_ttl_about .page_ttl_name span {
    font-size: 24px;
  }
  #about .page_ttl.page_ttl_about {
    padding: 115px 15px;
    height: 380px;
  }
  .page_ttl::before {
    content: "";
    background: url(../img/common/page_ttl_bg.jpg) no-repeat center left / cover;
  }
  #pagination li.select a {
    padding: 2px 10px;
  }
  #about .page_ttl.page_ttl_about::before {
    background: url(../img/about/page_ttl_bg.jpg) no-repeat center left / cover;
    height: 445px;
  }
  #about .page_ttl.page_ttl_about .page_ttl_name img {
    width: 370px;
  }
  #about .naming h3 {
    max-width: 440px;
  }
  #about .page_ttl.page_ttl_about .page_ttl_name span {
    font-size: 24px;
    top: 10px;
  }
  #column .column_page .contents ul li {
    width: calc(31% - 20px);
  }
  #single_column .ttl_single_column {
    margin-bottom: 40px;
    font-size: 32px;
  }
  #single_column ul li {
    margin-top: 40px;
  }
  #single_column ul li p {
    margin-bottom: 40px;
  }
  #single_column .head_single_column {
    margin-bottom: 40px;
    font-size: 26px;
    padding-bottom: 10px;
  }
  .link_btn.link_btn_list {
    margin-top: 130px;
  }
  .breadcrumb {
    margin: auto;
    padding-left: 0;
    max-width: 800px;
  }
  .breadcrumb_product {
    max-width: inherit;
    /*  padding: 0;*/
  }
  .breadcrumb.breadcrumb_product li::after {
    content: "|";
    font-size: 12px;
    top: 4px;
  }
  #info .info.info_page .contents {
    padding-left: 0;
    padding-right: 0;
  }
  #info .info.info_page ul li a {
    display: block;
  }
  
  
  #info .info.info_page ul li a p.info_date_page {
    width: 98%;
    margin-right: 5px;
    margin-bottom: 10px;
    position: relative;
  }
  #info .info.info_page .pagination li a {
    padding: 4px 10px;
  }
  #info .info.info_page .pagination li.select a {
    padding: 4px 12px;
  }
  #items .page_ttl.page_ttl_items {
    height: 400px;
    padding: 165px 0 165px 15%;
  }
  #items .page_ttl.page_ttl_items::before {
    height: 504px;
  }
  #product .page_ttl_product {
    height: 200px;
    padding: 60px 0 60px 15%;
  }
  #items .page_ttl.page_ttl_items .page_ttl_name, #product .page_ttl_product .page_ttl_name {
    text-align: left;
  }
  #product .product_overview .breadcrumb.breadcrumb_product {
    margin-top: -10px;
  }
  #product .contents_product {
    max-width: 900px;
    margin: auto;
  }
  #product .product_details .sc_ttl {
    margin-bottom: 55px;
    font-size: 24px;
    line-height: 1.5;
  }
  #product .product_details .sc_ttl::after {
    width: 55px;
    bottom: -15px;
    left: 47%;
  }
  #product .product_overview .flex {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  #product .product_overview .flex > div {
    width: 45%
  }
  #product .product_overview .flex .product_main_img {
    width: 48%;
    margin-top: 0;
  }
  #product .product_overview .product_main_img {
    max-width: 100%;
    margin: 0 0 60px;
  }
  #product .product_overview .product_description .product_description_text {
    margin: 20px 0 45px;
  }
  .p-catalog {
  }
  .p-catalog__box {
    margin: 24px 1% 0 1%;
  }
  .p-catalog__box--col2 {
    width: 48%;
  }
  .p-catalog__box--col3 {
    width: 31.333%;
  }
  .p-catalog__box--col4 {
    width: 23%;
  }
  .product_menu_btn {
    flex-wrap: wrap;
    align-content: flex-start;
  }
  .product_menu_btn li {
    width: 49%;
    margin: 8px 0 0;
  }
  #product .product_overview .product_img_slider {
    max-width: 100%;
    margin: 0 auto;
  }
  #product .product_details table tr th, #product .product_details table tr td {
    padding: 10px 30px;
  }
  #product .product_series .sc_ttl_product_series {
    padding-bottom: 10px;
    font-size: 20px;
    text-align: center;
    color: #0068b6;
    border-bottom: 1px solid #0068B6;
  }
  #product .product_series ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #product .product_series ul li {
    width: calc(48% - 10px);
  }
  #product .product_series ul li figure {
    width: 120px;
  }
  #product .product_series ul li .product_series_ttl, #product .product_series ul li .product_series_subttl, #product .product_series ul li p {
    width: calc(100% - 120px);
    margin-left: 120px;
  }
  /*製品一覧*/
  #product .product_list_wrap {
    display: flex;
    justify-content: space-between;
  }
  #product .product_list_wrap aside {
    width: 320px;
  }
  #product .product_list_wrap .product_thumb_list {
    width: calc(100% - 380px);
    padding-left: 0;
    margin: 0;
  }
  #product .product_thumb_list .product_box .product_menu_btn_thumb_list li {
    width: 32%;
  }
  #product .product_thumb_list .product_box .product_menu_btn_thumb_list::after {
    content: "";
    display: block;
    width: 32%;
  }
}
/*-------------------- PC大 --------------------
/*1280px以上*/
@media (min-width: 1280px) {
  /*●●●●●● 共通レイアウト ●●●●●●*/
  body {
    font-size: 18px;
  }
  header {
    height: 104px;
    padding: 30px;
  }
  header .logo {
    width: 270px;
  } 
  .g_nav {
    width: calc(100% - 340px);
    top: 32px;
    right: 30px;
  }
  .g_nav ul li.contact_link {
    width: 177px;
    margin-top: 3px;
  }
  .contents {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 0;
  }
  main {
    top: 104px;
  }
  footer ul {
    right: 20%;
    top: 30px;
  }
  footer .copyright > div {
    width: 1100px;
    margin: auto;
  }
  .page_ttl::before {
    height: 350px;
  }
  .product_list ul li .product_ttl {
    font-size: 24px;
  }
  .product_list ul li::before {
    background-size: 60px;
    top: 37px;
    left: 30px;
  }
  .product_list ul li.door03::before {
    background-size: 45px;
    top: 33px;
    left: 38px;
  }
  .product_list ul li.door04::before {
    top: 45px;
  }
  .product_list ul li.partition01::before {
    top: 40px;
  }
  .product_list ul li.partition02::before {
    background-size: 48px;
    top: 34px;
    left: 36px;
  }
  .product_list ul li.partition04::before {
    background-size: 52px;
    top: 37px;
    left: 37px;
  }
  .contact .contact_btn {
    max-width: 1100px;
  }
  .contact .contact_btn li {
    max-width: 340px;
    height: 100px;
    margin: 0;
  }
  .contact .contact_btn li a {
    padding-left: 130px;
  }
  .contact .contact_btn li:first-child a {
    padding-left: 110px;
  }
  .contact .contact_btn li:first-child a::after, .contact .contact_btn li:nth-of-type(2) a::after {
    left: 30px;
    top: 25px !important;
  }
  .contact .contact_btn li:last-child a::after {
    width: 100px;
    height: 100px;
    background-size: 100px;
  }
  .contact .contact_btn li:last-child a {
    padding-left: 140px;
  }
  .page_ttl::before {
    height: 374px;
  }
  #about .page_ttl.page_ttl_about::before {
    height: 490px;
  }
  #contact .form_box .address .required::after {
    top: -29px;
  }
  #contact .form_box .address_01 .required::after {
    left: 83px;
  }
  #contact .form_box .address_02 .required::after {
    left: 126px;
  }
  #items .product_list_items ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #items .product_list_items ul li {
    width: 48%;
  }
  #items .product_list_items ul li::before {
    background-size: 40px;
    left: 2px;
  }
  #items .product_list_items ul li.partition02::before {
    left: 13px;
  }
  #items .product_list.product_list_items ul li .product_ttl {
    font-size: 18px;
    padding: 10px 0 0 23px;
  }
  #items .link_list {
    margin-top: 30px;
  }
  /*  製品一覧*/
  #product aside .product_link_sidebar_head_arrow::before {
    width: 34px;
    height: 34px;
    top: -8%;
    right: -1px;
  }
  #product aside .product_link_sidebar ul li a span {
    display: inline-block;
    margin-left: -3px;
    font-size: 11px;
  }
  #product .product_list_wrap {
    max-width: 1100px;
    margin: auto;
  }
  #product .product_list_wrap .product_thumb_list {
    width: 730px;
    margin-left: 50px;
  }
  #product .product_thumb_list .product_box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-bottom: 20px;
  }
  #product .product_thumb_list .product_description {
    margin-top: 20px
  }
  #product .product_thumb_list .product_box .product_menu_btn_thumb_list {
    flex-wrap: nowrap;
    gap: 0 5px;
    margin-bottom: 0;
  }
  #product .product_thumb_list .product_box figure {
    width: 180px;
  }
  #product .product_thumb_list .product_box .product_box_txt {
    width: calc(100% - 210px);
  }
  #product .product_thumb_list .product_box .product_menu_btn_thumb_list li {
    width: 100%;
    margin-top: 0;
  }
  #product .product_thumb_list .product_box .product_menu_btn_thumb_list li a {
    font-size: 12px;
    padding: 5px 0;
  }
}