@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@200..900&display=swap');

/* Box sizing rules */
:root {
  --color-main: #1587D1;
  --color-sub: #EAF7FF;
  --color-text: #333333;
  --color-gray: #B7B7B7;
  
  --font-normal: 400;
  --font-medium: 500;
  --font-bold: 700;
  --font-heavy: 900;
}
.noto-serif {
  font-family: "Noto Serif JP";
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
  height: 100%;
}
body {
  font-family: "Noto Sans JP";
  color: var(--color-text);
  height: 100%;
}
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;
  margin-block-end: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}
ul[role='list'],
ol[role='list'] {
  list-style: none;
}
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

h2, h3, h4 {
  letter-spacing: 0.5rem;
}
li {
  list-style: none;
}
a {
  color: var(--color-text);
  text-decoration: none;
  transition : all 0.3s;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}
a.link-underline {
  text-decoration: underline;
}
img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
input, button,
textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
button {
  transition : all 0.3s;
}

textarea {
  padding: 7px;
  resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {  
  position: absolute;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
}
input[type='submit'],
input[type='button'],
label, button, select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'] {
  padding: 7px;
}
input, select {
	vertical-align: middle;
}
textarea:not([rows]) {
  min-height: 10em;
}
:target {
  scroll-margin-block: 5ex;
}

.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-none {
  display: none !important;
}
@media (min-width: 601px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-none {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-none {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-none {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-none {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hide-tablet {
    display: none;
  }
}
@media (max-width: 428px) {
  .hide-ph {
    display: none;
  }
}
/* ボタン */
.link-btn {
  position: relative;
  display: flex;
  max-width: 250px;
  height: 50px;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin: 0 auto;
  color: #FFF;
  background-color: var(--color-main);
  font-weight: bold;
  border-radius: 5px;
}
/* ホバー */
.link-btn::after {
  font-family: "icomoon";
  content: "\e903";
  position: absolute;
  right: 0;
  padding-right: 12%;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}
a:hover {
  opacity: 0.7;
}
.link-btn:hover,
.check-btn:hover {
  opacity: 1;
  color: var(--color-main);
  background-color: #FFF;
  border: 1px solid var(--color-main);
}
.link-btn:hover::after,
.check-btn:hover {
  opacity: 1;
  color: var(--color-main);
}
.back-btn:hover {
  opacity: 0.7;
}
.logo:hover,
.products-list li a:hover {
  opacity: 1;
}
#comfirm_btn:hover,
.form-container .send-btn:hover,
.products-list li:hover,
.mail-link:hover,
.header-contact:hover,
.ttl-small:hover {
  opacity: 1;
  color: #FFF;
  background-color: #0065A6;
}
.font-12 {
  font-size: 0.75rem;
}
/*三本線*/
.drawer_open {
  z-index: 1;/*ボタンを最前面に*/
  position: absolute;
  right: 0;
  display: none;
  cursor: pointer;
  width: 25px;
  height: 40px;
  margin-right: 16px;
}
/*×に変化*/  
.drawer_open span {
  position: absolute;
  display: inline-block;
  transition: all .4s;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-text);
  width: 25px;
}
.drawer-nav-con {
  margin-top: 30px;
}
.drawer-nav .link-btn::after {
  content: "";
}
.drawer_open span:nth-of-type(1) {
  top: 10px; 
}
.drawer_open span:nth-of-type(2) {
  top: 18px;
}
.drawer_open span:nth-of-type(3) {
  top: 26px;
}

.drawer_open.active span:nth-of-type(1) {
  top: 14px;
  left: 0;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
.drawer_open.active span:nth-of-type(2) {
  opacity: 0;
}
.drawer_open.active span:nth-of-type(3){
  top: 26px;
  left: 0;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}
/* メニューリンク */
.drawer-nav {
  display: none;
}

.drawer-nav-inner {
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0 15px;
  background-color: #FFF;
  z-index: 1000;
}
.drawer-nav-inner li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-gray);
}
.drawer-nav-inner li a::after {
  font-family: "icomoon";
  content: "\e900";
  position: absolute;
  right: 0;
  padding-right: 2%;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text);
}
.drawer-nav.open {
  display: block;
}
body.no_scroll {
  overflow: hidden;
}
@media (min-width: 960px) {
  .drawer-nav.open {
    display: none;
  }
  body.no_scroll {
    overflow: scroll;
  }
}
/* トップページ */
.logo {
  display: inline-block;
  /*width: 340px;*/
  margin-left: clamp(0.938rem, -1.483rem + 9.05vw, 9.375rem);/*  min15px max150px,*/
}
.logo h1 {
  display: flex;
  align-items: center;
  width: 320px;
}
.logo h1 img {
  width: 14%;  
}
.logo-text {
  margin-left: 6.2%;
  font-size: 1.9375rem;
  font-weight: 400;
  white-space: nowrap;
}
.header-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 90px;
  background-color: #FFF;
  border-bottom: var(--color-gray) solid 1px;
}
.header-menu-wrap {
  position: absolute;
  right: 0;
  display: flex;
}
.header-menu-wrap li a {
  display: block;
  padding: 0 35px;
  line-height: 90px;
  font-weight: bold;
}
.header-menu {
  display: flex;
  align-items: center;
}
.header-contact {
  width: 215px;
  line-height: 90px;
  color: #FFFFFF;
  background-color: var(--color-main);
  font-weight: bold;
  text-align: center;
  margin-left: 20px;
}
.main-bg {
  width: 100%;
  height: clamp(16.875rem, -4.955rem + 81.61vw, 56.25rem);/*  min270px max900px,*/
  background-image: url(../images/main-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-title-wrap {
  padding-top: clamp(1.125rem, -2.586rem + 13.87vw, 14.063rem);/*  min18px max900px * 25%,*/
  padding-left: clamp(0.938rem, -1.483rem + 9.05vw, 9.375rem);/*  min15px max150px,*/
} 
.bg-title {
  display: inline;
  color: #FFF;
  padding: 0 15px;
  font-size: clamp(1.75rem, 1.057rem + 2.59vw, 3rem);/*  min28px max48px,*/
  line-height: calc(100% * 1.8);
  letter-spacing: clamp(0.087rem, 0.07rem + 0.07vw, 0.15rem);/*  min28px * 5% max48px * 5%,*/
  background-color: var(--color-main);
  -webit-box-decoration-break: clone;
  box-decoration-break: clone;
} 
.bg-title span {
  font-size: 0.83em;
}
.bg-sub-text {
  margin-top: 40px;
  color: #FFF;
  font-size: clamp(0.75rem, 0.334rem + 1.55vw, 1.5rem);/*  min12px max24px, */
  line-height: calc(100% * 2.1);
}

@media (max-width: 1200px) {
  .header-menu-wrap {
    font-size: 0.875rem;
  }
  .header-menu-wrap li a {
    padding: 0 20px;
  }
  .header-contact {
    width: 180px;
  }
}
@media (max-width: 768px) {
  .bg-sub-text {
    margin-top: 7px;
  }
}
@media (max-width: 960px) {
  .logo h1 {
    width: 240px;
  }
  .logo h1 img {
    width: 16%;  
  }
  .logo-text {
    font-size: 1.406rem;
  }
  .header-menu-wrap {
    display: none;
  }
  .header-wrap {
    height: 55px;
  }
  .drawer_open {
    display: block;
  }
}
@media (max-width: 428px) {
  .bg-title {
    padding: 0 5px;
  } 
}

/* 事業内容 */
.business {
  display: flex;
  max-width: 1430px;
  width: 100%;
  margin: 90px auto 150px;
}
.business-img,
.business-left {
  width: 50%;
}
.business-left {
  order: 1;
  width: 50%;
  margin-top: 60px;
  padding-left: 15px;
}
.business-img {
  order: 2;
}
.sec-ttile {
  color: var(--color-main);
  font-size: clamp(0.875rem, 0.84rem + 0.13vw, 0.938rem);
  font-weight: bold;
  letter-spacing: normal;
}
.sec-ttile em {
  display: block;
  margin-top: 5px;
  color: var(--color-text);
  font-style: normal;
  font-size: clamp(1.5rem, 0.946rem + 2.07vw, 3rem);
}
.color-text {
  margin-top: 60px;
  color: var(--color-main);
  font-size: clamp(1rem, 0.723rem + 1.04vw, 1.5rem);
  font-weight: 500;
  line-height: calc(100% * 1.6);
}
.white-title,
.white-title em {
  color: #FFF;
}
.center-title {
  text-align: center;
}
.products {
  width: 100%;
  padding: 90px 0 125px;
  background-image: url(../images/products.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.products-inner {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.products-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 90px;
}
.products-list li {
  width: calc(100% / 3);
  text-align: center;
  background-color: var(--color-main);
  color: #FFF;
  font-size:  1.25rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  border: 1px solid var(--color-gray);
  margin-bottom: -1px;
  margin-right: -1px;
}
.products-list li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 170px;
  padding-right: 16.5%;
  padding-left: 16.5%;
}
.products-list li a::after {
  font-family: "icomoon";
  content: "\e900";
  position: absolute;
  right: 0;
/*  margin-top: 2px;*/
  padding-right: 11.25%;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 768px) {
  .business {
    /* flex-direction: column-reverse; */
    display: block;
    margin: 35px 0 60px;
  }
  .business-img {
    margin: 0 auto;
  }
  .color-text {
    margin-top: 20px;
  }
  .products {
    padding: 45px 0 50px;
  }
  .products-list {
    margin-top: 25px;
  }
  .products-list li {
    width: calc(100% / 2);
    height: 75px;
  }
  .products-list li a {
    height: 75px;
    font-size: 0.75rem;
    letter-spacing: normal;
  }
  .products-list li a::after {
    padding-right: 7.5%;
    font-size: 0.625rem;
    letter-spacing: normal;
  }
  .business-left {
    width: 100%;
    margin-top: 35px;
    padding-right: 15px;
  }
  .business-img {
    width: 70%;
  }
}
@media (max-width: 428px) {
  .products-list li a {
    padding-right: 16%;
    padding-left: 16%;
  }
  .products-list li a::after {
    padding-right: 6%;
    font-size: 0.625rem;
    letter-spacing: normal;
  }
}
/* お知らせ */
.section-wrap {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.news {
  margin-top: 150px;
  margin-bottom: 150px;
  padding: 70px 0;
  background-color: var(--color-sub);
}
.news-wrap {
  max-width: 920px;
  width: 100%;
  margin: 50px auto;
  padding: 0 10px;
}
.news-wrap a {
  display: block;
  padding: 20px 15px;
  border-top: 1px solid var(--color-gray);
}
.news-wrap li:last-of-type a {
  border-bottom: 1px solid var(--color-gray);
  
}
.news-post-item {
  display: flex;
}
.news-post-item time {
  width: 28%;
  color: var(--color-main);
  font-size: 1rem;
  font-weight: bold;
}
.news-post-item p {
  width: 100%;
}
/* お問い合わせ */
.contact {
  width: 100%;
  height: 480px;
  padding: 50px 0 90px;
  background-image: url(../images/contact.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.white-text {
  text-align: center;
  color: #FFF;
  margin: 25px 0 50px;
}
.contact-items-wrap {
  display: flex;
  justify-content: center;
  padding: 0 15px;
}
.contact-items {
  max-width: 480px;
  width: 100%;
  height: 175px;
  border-radius: 5px;
}
.ph-row {
  display: flex;
  flex-direction: column;
} 
.tel {
  background-color: #FFF;
  margin-right: 25px;
}
.tel-icon {
  display: flex;
  justify-content: center;
  color: var(--color-main);
  font-size: 1.875rem;
  margin: 30px 0 5px;
}
.mail-icon {
  display: flex;
  justify-content: center;
  color: #FFF;
  font-size: 1.875rem;
  margin: 30px 0 15px;
}
.tel-num {
  text-align: center;
  color: var(--color-main);
  font-size: 2.25rem;
  font-weight: bold;
}
.tel-num span {
  font-size: 1rem;
  margin-right: 5px;
}
.business-hours {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-text);
  font-weight: bold;
}
.mail-link {
  position: relative;
  background-color: var(--color-main);
}
.mail-link p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.5rem;
  font-weight: bold;
}
.mail-link p::after {
  font-family: "icomoon";
  content: "\e903";
  position: absolute;
  right: 0;
  padding-right: 7.2%;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 960px) {
  .mail-link p {
    font-size: 1.375rem;
  }
}
@media (max-width: 768px) {
  .news {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 30px 0;
  }
  .news .center-title {
    padding-left: 25px;
    text-align: left;
  }
  .news-wrap {
    margin: 30px auto;
  }
  .news-post-item {
    flex-direction: column;
  }
  .tel-icon ,
  .mail-icon {
    margin: 0 10px 0 0;
    font-size: 1.25rem;
  }
  .tel-icon {
    margin-top: 10px;
  }
  .ph-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 35px 0 15px;
  }
  .ph-mail {
    margin-top: 60px;
  }
  .news-post-item p {
    margin-top: 10px;
  }
  .tel {
    margin-bottom: 15px;
  }
  .tel-num {
    font-size: 2rem;
  }
  .mail-link p {
    font-size:  1.25rem;;
  }
  .contact {
    height: auto;
    padding: 50px 0 50px;
  }
  .white-text {
    margin: 20px 0 35px;
  }
  .contact-items-wrap {
    flex-direction: column;
  }
  .contact-items {
    height: 150px;
    margin-right: auto;
    margin-left: auto;
  }
  .mail-link p::after {
    padding-right: 5%;
  }
}
@media (max-width: 428px) {
  .tel-num{
    font-size: 1.75rem;
  }
  .mail-link p {
    font-size: 1rem;
  }
}
/* フッター */
.footer {
  position: sticky;
  top: 100vh;
}
.footer-wrap {
  width: 100%;
  padding: 70px 0 190px;
  color: #FFF;
  background-color: #0065A6;
}
.footer-inner {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.footer-above {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-gray);
}
.footer-nav {
  display: flex;
  font-size: 0.9375rem;
}
.footer-nav li {
  margin-right: 30px;
}
.footer-nav li:last-child {
  margin-right: 0;
}
.footer-logo {
  display: flex;
  align-items: center;
  max-width: 275px;
  width: 100%;
}
.footer-logo img {
  width: 14%;
}
.footer-logo-text {
  margin-left: 6.2%;
  font-size: 1.7145rem;
  font-weight: 300;
  white-space: nowrap;
}
.footer-under {
  display: flex;
  justify-content: end;
  font-size: 0.875rem;
}
.text-bottom {
  margin-bottom: 15px;
  font-size: 0.875rem;
}
.footer-under p:last-child {
  padding-left: 40px;
  position: relative;
}
.footer-under p:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0.4375rem;
  background-color: #FFF;
  margin: auto 0 auto 20px;
}
.ph-show {
  display: none;
}
@media (max-width: 960px) {
/*  .footer-logo {
    width: 250px;
  }*/
  .footer-nav li {
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .footer-wrap {
    padding: 30px 0;
  }
  .footer-logo {
    margin-bottom: 25px;
  }
  .footer-above {
    display: block;
    margin-bottom: 30px;
    /* padding-top: 30px; */
  }
  .footer-nav {
    display: block;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav li:last-child {
    margin-bottom: 0;
  }
  .ph-show {
    display: block;
  }
  .footer-under {
    display: block;
    text-align: right;
    font-size: 0.75rem;
  }
  .footer-under p {
    margin-top: 7px;
  }
  .text-bottom {
    margin-bottom: 30px;
  }
  .footer-under p:last-child::before {
    display: none;
  }
}
/* 取扱品目 */
.page-container {
  margin-top: 90px;
  margin-bottom: 100px;
}
.page-about {
  margin: 35px 0 50px;
  font-size: 1.25rem;
  line-height: calc( 1.25rem * 1.6 );
}
.product-bottom {
  margin-bottom: 200px;
}
.products-summary{
  display: flex;
}
.products-nav {
  min-width: 295px;
  font-weight: bold ;
  margin-bottom: 50px;
}
.products-nav div {
  position: sticky;
  top: 30px;
}
.products-nav ul {
  margin-right: 20px;
}
.products-nav li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 20px;
  border-bottom: 1px solid #F1F1F1; 
}
.products-nav li a.highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 60px;
  background-color: var(--color-main);
}
.products-nav li a:hover {
  opacity: 1;
  background-color: var(--color-sub);
  color: var(--color-text);
  cursor: pointer;
}
.products-summary-list {
  flex-grow: 1;
}
.summary-list-category {
  margin-bottom: 30px;
}
.summary-list-category:last-of-type {
  margin-bottom: 200px;
}
.products-list-title {
  display: flex;
  align-items: center;
  height: 65px;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 1.5rem;
  background-color: var(--color-sub);
  letter-spacing: normal;
}
.summary-list-item-wrap {
  margin-left: 50px;
  margin-right: 50px;
}
.summary-list-category li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
  list-style: none;
}
.summary-list-category li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  margin-top: 0.6rem;
  display: inline-block;
  background-color: #6E6E6E;
  border-radius: 50%;
}
.summary-list-category li > a,
.check-wrap a {
  color: var(--color-main);
  text-decoration: underline var(--color-main);
  cursor: pointer;
}
.summary-list-category li > a::after {
  content: "\ea7e";
  display: inline-block;
  padding-left: 5px;
  font-family: "icomoon";
  font-weight: 100;
  text-decoration: none;
}
.products-item-detail {
  display: flex;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 60px;
}

.products-item-detail-img {
  width: 220px;
  height: 220px;
  
}
.products-item-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
} 
.products-item-detail-about {
  padding-left: 15px;
  max-width: 530px;
  width: 100%;
  /* flex-grow: 1; */
}
.co-name {
  font-size: 0.875rem;
}
.product-name {
  margin: 10px 0 13px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: normal;
}
.product-about {
  line-height: calc( 1rem * 1.6 );
}
.site-link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 35px;
  margin: 10px 0 0 auto;
  color: var(--color-main);
  background-color: #FFF;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 960px) {
  .products-nav .close {
    display: block!important;
  }
}
@media (max-width: 960px) {
  .products-summary {
    display: block;
  }
  .products-nav .close {
    display: none;
  }
  .products-nav {
    min-width: auto;
    max-width: 100%;
    /* padding-top: 25px; */
    font-weight: bold;
  }
  .products-nav ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0;
    /* margin-bottom: 50px; */
  }
  .products-nav li {
    width: calc(( 100% - 10px ) / 2);
    font-size: clamp( 0.813rem, 0.705rem + 0.49vw, 1rem);
    white-space: nowrap;
  }
  .products-nav li:nth-child(2n-1) {
    margin-right: 10px;
  }
  .products-nav li a {
    position: relative;
    padding: 0 10px;
    font-weight: 600;
  }
  .products-nav li a.highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 40px;
    background-color: var(--color-main);
  }
  .summary-list-category:last-of-type {
    margin-bottom: 30px;
  }
  .products-nav li a::after {
    font-family: "icomoon";
    content: "\e900";
    position: absolute;
    right: 15px;
    padding-right: 0;
    transform: rotate(90deg);
    font-size: clamp( 0.813rem, 0.705rem + 0.49vw, 0.9rem);
    font-weight: 100;
    color: var(--color-text);
  }
  .products-nav li a::after {
    right: 13px;
  }
}
@media (max-width: 768px) {
  .page-container {
    margin-top: 30px;
    margin-bottom: 60px;
  }
  .products-nav {
    margin-bottom: 35px;
  }
  .page-about {
    margin: 15px 0 25px;
    font-size: 1rem;
    line-height: calc( 1rem * 1.6 );
  }
  .products-item-detail {
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .products-list-title {
    padding-left: 10px;
    font-size: 1.25rem;   
  }
  .summary-list-category li {
    margin-bottom: 5px;
  }
  .summary-list-item-wrap {
    margin-left: 0;
    margin-right: 0;
    padding: 0 10px;
  }
  .products-item-detail-about {
    max-width: 100%;
    padding-left: 0;
  }
  .co-name {
    font-size: 0.7rem;
  }
  .product-name {
    font-size: 1.125rem;
  }
  .site-link-btn {
    margin: 30px 0 0 auto;
  }
}
@media (max-width: 600px) {
  .products-item-detail {
    flex-direction: column;
  }
  .products-item-detail-img {
    width: 55%;
    margin: 0 auto;
  }
}
@media (max-width: 428px ) {
  .products-nav li {
    width: 100%;
  }
  .products-nav li a {
    padding-left: 15px;
  }
  .products-nav li:nth-child(2n-1) {
    margin-right: 0;
  }
  .products-nav li a {
    height: 45px;
  }
  .products-nav li a.highlight::before {
    height: 45px;
  }
  .products-nav ul {
    margin-bottom: 30px;
  }
}
/* 会社概要 */
.company-table {
  display: flex;
  flex-wrap: wrap;
}
.company-table > dt:first-of-type,
.company-table > dd:first-of-type {
  border-top: 1px solid var(--color-gray);
}
.company-table > dt,
.company-table > dd {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-gray);
  line-height: calc( 1rem * 1.6);
}
.company-table > dt {
  width: 25%;
  background-color: var(--color-sub);
  text-align: center;
}
.company-table > dd {
  width: 75%;
  padding-left: 60px;
  padding-right: 15px;
}
.map-wrap {
  /* max-width: 700px; */
  width: 100%;
  margin: 100px auto 130px;
}
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  /* アスペクト比　3:2 */
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .company-table > dd:first-of-type {
    border-top: none;
  }
  .company-table {
    display: block;
  }
  .company-table > dt {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    text-align: left;
  }
  .company-table > dd {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .map-wrap {
    margin: 50px auto 75px;
  } 
}
/* お知らせ */
.post-news {
  margin: 50px 0 100px;
}
.post time {
  color: var(--color-main);
  font-size: 1rem;
  font-weight: bold;
}
.post p {
  margin-top: 15px;
}
.post a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px 40px;
  border-bottom: 1px solid var(--color-gray);
}
.post a::after {
  font-family: "icomoon";
  content: "\e903";
  position: absolute;
  right: 0;
  padding-right: 2%;
  font-size: 1.5rem;
  font-weight: 100;
  color: var(--color-text);
}
.post:first-of-type {
  border-top: 1px solid var(--color-gray);
}


/*WP用*/
.pagination {
  display: flex;
  justify-content: center;
}
.pagination > a,
.pagination > span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;  
  height: 40px;
  border: 1px solid #DDD!important;
  font-size: 1rem;
  font-weight: normal!important;
  border-radius: 3px;
  margin: 0 calc( 15px / 2 )!important;
}
.pagination span.current {
  background-color: var(--color-sub);
}
.pagination > .pagination {
  background-color: var(--color-sub);
  border: none;
}
.pagination > .nextpostslink,
.pagination > .previouspostslink {
  position: relative;
  font-size: 0;
}
.nextpostslink::after {
  display: flex;
  align-items: center;
  text-align: center;
  font-family: "icomoon";
  content: "\e900";
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);;
}
.previouspostslink::after {
  display: flex;
  align-items: center;
  text-align: center;
  font-family: "icomoon";
  content: "\e900";
  transform: rotate(180deg); 
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);;
}

.posts-nav {
  display: flex;
  justify-content: center;
}
.posts-nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;  
  height: 40px;
  margin-right: 15px;
  border: 1px solid #DDD;
  font-size: 1rem;
  border-radius: 3px;
}
.posts-nav li:last-of-type a {
  margin-right: 0;
}
.posts-nav .active-nav {
  background-color: var(--color-sub);
  border: none;
}
@media (max-width:768px) {
  .post-news {
    margin: 30px 0 60px;
  }
  .post a {
    padding: 30px 40px 30px 15px;
  }
  .post time {
    font-size: 0.875rem;
  } 
  .post p {
    margin-top: 10px;
  }
}
/* お知らせ詳細 */
.post-container {
  margin: 50px 0 130px;
}
.post-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 20px;
  border-left: 5px solid var(--color-main);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: normal;
}
.post-title time {
  display: block;
  margin-bottom: 15px;
  color: var(--color-main);
  font-size: 1.125rem;
  font-weight: bold;
}

.post-link-btn {
  margin-top: 80px;
}
.post-link-btn::after {
  content: "\e900";
}
@media (max-width:768px) {
  .post-container {
    margin: 30px 0 80px;
  }
  .post-title {
    margin-bottom: 30px;
    padding-left: 20px;
    font-size: 1.125rem;
  }
  .post-title time {
    margin-bottom: 5px;
    font-size: 0.875rem;
  }
  .post-link-btn {
    margin-top: 60px;
  }
}
.pri-fi-text {
  margin-bottom: 60px;
  text-align: center;
}
.privacy .post-container {
  margin-top: 60px;
}
.privacy-article {
  margin-bottom: 50px;
  padding-left: 15px;
  line-height: calc( 1rem * 1.6);
}
.privacy-article ol li {
  list-style-type: decimal;
  margin-left: 1rem;
}
.privacy-title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 20px;
  border-left: 5px solid var(--color-main);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: normal;
}
.privacy-title span {
  margin-left: 10px;
  font-size: 1rem;
}
.ttl-small {
  position: relative;
  display: flex;
  padding: 20px 10px;
  font-size: 1rem;
  border-top: 1px solid var(--color-gray);
  align-items: center;
  background-color: var(--color-main);
  color: #FFF;
}
.ttl-small::after {
  font-family: "icomoon";
  content: "\e900";
  transform: rotate(90deg);
  position: absolute;
  right: 0;
  margin-right: 13px;
  font-size: 1rem;
  font-weight: 400;
  color: #FFF;
}
.rotate.ttl-small::after {
  transform: rotate(270deg);
}
.mb-20 {
  margin-bottom: 20px;
}
.privacy-article ol > ol {
  margin-left: 1rem;
}
@media (max-width:768px) {
  .pri-fi-text {
  margin-bottom: 40px;
  text-align: left;
  } 
  .privacy .post-container {
    margin-top: 40px
  }
  .privacy-title {
    margin-bottom: 15px;
  }
  .privacy-article {
    margin-bottom: 30px;
  }
}
.form-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.contact-text {
  margin-top: 80px;
  margin-bottom: 50px;
}
.form-container dt {
  margin-bottom: 10px;
  font-weight: bold;
}
.form-container dd input {
  width: 100%;
  height: 48px;
  margin-bottom: 25px;
  padding-right: 1rem;
  padding-left: 1rem;
  background-color: #F1F1F1;  
  border-radius: 5px;
  font-size: 0.875rem;
}
.form-container dd textarea {
  width: 100%;
  height: 360px;
  /* margin-bottom: 55px; */
  margin-bottom: 25px;
  padding: 1rem;
  background-color: #F1F1F1;  
  border-radius: 2px;
}
.required {
  margin-left: 10px;
  padding: 2px 5px;
  color: #FFF;
  background-color: #E34646;
  border-radius: 2px;
  font-size: 0.8125rem;
  font-weight: normal;
}
input[type="checkbox"] {
  position: relative;
  opacity: 1;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  vertical-align: -5px;
}
input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}
.check-wrap.err-check input[type="checkbox"] {
  border: 1px solid #E34646;
}
.check-wrap.err-check label {
  color: #E34646;
}
/* .privacy-check[type='checkbox'] {
  position: static;
  opacity: 1;
  width: 10px;
  height: 10px;
  border: 1px solid var(--color-text);
  cursor: pointer;
} */
.check-btn {
  display: flex;
  max-width: 250px;
  width: 100%;
  height: 50px;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin: 0 auto;
  color: #FFF;
  background-color: var(--color-main);
  font-weight: bold;
  border-radius: 5px;
}
.err-text {
  margin-left: 1rem;
  color: #E34646;
  font-weight: normal;
}
.hide {
  display: none;
}
.send-form {
  margin-top: 80px;
}
.send-form dt {
  margin-bottom: 0.5rem
}
.btn-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.check-wrap {
  margin-top: 25px;
  margin-bottom: 55px;
  text-align: center;
}
.check-wrap p {
  text-align: left;
  margin-bottom: 20px;
  font-weight: normal;
}
.check-wrap label {
  cursor: auto;
}
.form-border {
  width: 100%;
  margin-bottom: 1.5rem;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-gray);
}
.send-form dd:last-of-type .form-border {
  margin-bottom: 55px;
}
.back-btn {
  margin: 0 1rem 0 0;
  color: var(--color-main);
  background-color: #FFF;
  border: 1px solid var(--color-main);
}
.send-btn {
  margin: 0;
} 
.contact-subtitle {
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}
.contact-compete {
  margin-bottom: 20px;
}
.contact-notice-block {
  margin-bottom: 30px;
}
.contact-notice-title {
  font-weight: bold;
}
.contact-notice-block li {
  list-style: inside;
  list-style-type: disc;
}
.form-container input[type='checkbox']:focus,
.form-container textarea:focus,
input[type='text']:focus {
  border: 2px solid var(--color-text);
}
.no-news {
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .no-news {
    padding-left: 25px;
    text-align: left;
   }
  .contact-text {
    margin-top: 25px;
    margin-bottom: 30px;
  }
  .form-container dd input {
    margin-bottom: 15px;
  }
  .contact-subtitle {
    margin-top: 25px;
    font-size: 1.125rem;
  }
  .err-text {
    font-size: 0.875rem;
  }
  .check-wrap {
    margin-bottom: 30px;
    text-align: left;
  }
  .err-text::before {
    content: '\A';
    white-space: pre;
  }
}
@media (max-width: 428px) {
  .form-container dd textarea {
    height: 250px;
  }
  .btn-wrap {
    display: block;
    margin: 0 auto
  }
  .btn-wrap button{
    margin-right: auto;
    margin-left: auto;
  }
  .back-btn {
    margin-bottom: 1rem;
  }
}
.tel-link {
  color: var(--color-main);
}
@media (min-width: 600px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}
/* a[href^="tel:"] {
  text-decoration: none!important;
  pointer-events: none!important;
} */
.tel-link:hover {
  opacity: 1;
}

/*ブロックエディター用*/

/*見出し*/
.post-container h1,
.post-container h2,
.post-container h3,
.post-container h4,
.post-container h5,
.post-container h6 {
  padding-bottom: 10px;
  line-height: 1.6;
}
/*テキスト*/
.post-container p {
  margin-bottom: 1rem;
}
/*テーブル　ヘッダーあり・なし*/
.post-container table {
  border-collapse: collapse;
  width: 100%;
  margin: 30px 0;
  border: 1px solid #B7B7B7;
}
.post-container th {
  background-color: #EAF7FF;
  padding: 5px 10px;
  border: 1px solid #B7B7B7;    
}
.post-container td {
  padding: 5px 10px;
  border: 1px solid #B7B7B7;
}
/*テーブル　ストライプ*/
.wp-block-table.is-style-stripes {
  border-bottom: none;
}
.post-container .is-style-stripes tbody tr:nth-child(odd) {
  background: #EAF7FF;
}
.post-container ul,
.post-container ol {
  position: relative;
  margin: 20px 0;
}
.post-container ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
}
.post-container ul li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  margin-top: 0.6rem;
  display: inline-block;
  background-color: #6E6E6E;
  border-radius: 50%;
}
.post-container ul ul,
.post-container ol ol {
  margin: 10px 0!important;
}
.post-container ol li {
  margin-left: 17px;
  margin-bottom: 10px;
  list-style-type: decimal;
}
.post-container p > a {
  color: #1587D1;
  text-decoration: underline;
}
.wp-block-file a {
  font-size: 1rem;
  text-decoration: underline;
  color: #1587D1;
}
.wp-block-file__button {
  color: #fff!important;
  font-size: 1.2em;
  text-decoration: none!important;
  background: #1587D1!important;
}