/*
* fontawesomeセット
* content:'\○○○';
* font: var(--fa-font-solid);
*/
/* @import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap'); */
/*=====================================
*
*header
*
=======================================*/
header{
    top: 0;
    z-index: 4;
    width: 100%;
    transition: .3s;
}
.header_content{
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  padding: 0 40px;
  flex-wrap: wrap;
  height: 100%;
}
.header_content .logo {
  height: 60px;
  display: block;
  text-align: left;
  position: absolute;
  top: 60px;
  left: 100px;
  z-index: 1;
}
.header_content .logo a {
  height: 100%;
  text-align: left;
  display: block;
  transition: .3s;
}
.header_content .logo a:hover{
  opacity: .7;
}
.header_content .logo a img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
header .header_content::before {
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0;
  background: rgb(0 0 0 / 50%);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 2;
}
header.active .header_content::before {
  opacity: 1;
  visibility: visible;
}
/* pc */
@media only screen and (min-width: 1025px) {
  .header_content .menu{
    width: fit-content;
    position: fixed;
    right: 35px;
    z-index: 1;
    top: 60px;
  }
  .header_content .menu .icon_img {
    margin-bottom: 10px;
}
  .header_content .menu .icon_img a{
    transition: .3s;
}
  .header_content .menu .icon_img a:hover{
    opacity: .7;
}
  .header_content .menu .Gmenu{
    height: 100%;
    display: flex;
    justify-content: flex-end;
    column-gap: 80px;
    flex-direction: column;
  }
  .header_content .menu ul li{
    position: relative;
  }
  .header_content .menu ul li a{
    font-size: 18px;
    color: #231815;
    display: flex;
    font-family: "Assistant", sans-serif;
    align-items: center;
    transition: .3s;
    justify-content: center;
    padding: 5px 0px 2px;
    justify-content: left;
    font-weight: 500;
    letter-spacing: .2em;
  }
  .header_content .menu ul li a:hover {
    opacity: .7;
  }
  .header__hamburger {
    display: none;
  }
  /*ドロップダウンメニュ*/
  li.menu-item-has-children{
    position: relative;
  }
  .Gmenu > li.menu-item-has-children > a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-weight: bold;
    font-size: 12px;
    transition: .3s;
    margin-left: 5px;
  }
  li.menu-item-has-children.active a::after{
    transform: rotate(-180deg) ;
  }
  .Gmenu > li.menu-item-has-children:hover > a::after{
    transform: rotate(-180deg);
  }
  .header_content .menu .Gmenu > li > ul{
    position: absolute;
    background-color: #fff;
    width: 430px;
    display: flex;
    flex-direction: row;
    padding: 20px 20px 10px;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
  }
  .header_content .menu .Gmenu > li:hover > ul{
    visibility: visible;
    opacity: 1;
  }
  .header_content .menu .Gmenu > li > ul.active{
    display: flex;
  }
  .header_content .menu ul li ul li{
    width: 100%;
  }
  .header_content .menu .Gmenu > li > ul > li > a {
    border-bottom: 1px solid #c73527;
    pointer-events: none;
    font-size: 16px;
    justify-content: flex-start;
    padding: 0;
    width: fit-content;
    padding-bottom: 10px;
  }
  .header_content .menu .Gmenu > li > ul > li > ul {
    margin-top: 10px;
  }
  .header_content .menu .Gmenu > li > ul > li > ul > li > a {
    padding: 0;
    margin: 0px 0 10px;
    justify-content: flex-start;
  }
}
/*ドロップダウンメニュend sp*/
@media only screen and (max-width: 1024px) {
  body.active{
    height: 100%;
    overflow: hidden;
  }
  /*ドロップダウンメニュ*/
  li.menu-item-has-children > a::after{
    right: 20px;
    top: 20px;
    font-size: 16px;
    transition: .3s;
    position: absolute;
    pointer-events: none;
    display: none;
  }
  .header_content .menu ul li ul{
    position: relative;
    margin-top: 0;
  }
  .Gmenu > li.menu-item-has-children::before {
    position: absolute;
    top: 0;
    right: 0;
    background: #efefef;
    width: 60px;
    height: 64px;
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-weight: bold;
    font-size: 12px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /*ドロップダウンメニュend*/

  .sec09_content {
    padding: 0px !important;
  }
  .header_content .menu {
    padding-bottom: 50px;
    z-index: 99;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100%;
    background-color: rgb(0 163 175 / 95%);
    transition: ease .3s;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    max-width: 300px;
    left: initial;
    transform: translate(100%, 0%);
    background: #fff;
    height: 100%;
    padding: 50px 30px 20px;
    border-top: 1px solid #efefef;
  }
  .header_content h1{
    width: 230px;
  }
  .header__hamburger {
    width: 30px;
    height: 100%;
    display: block;
  }
  .header_content .menu ul{
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 30px;
  }
  .header_content .menu ul li{
    width: 100%;
    position: relative;
  }
  .header_content .menu ul li a{
    width: 100%;
    display: flex;
    padding: 10px 0;
    font-size: 16px;
    color: #231815;
    font-family: "Assistant", sans-serif;
    letter-spacing: 0.1em;
  }
  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
    position: fixed;
    right: 20px;
    height: fit-content;
  }
  /* ハンバーガーメニューの線 */
  .hamburger span {
    width: 100%;
    height: 1px;
    background-color: #000;
    position: relative;
    transition: ease .3s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
    display: block;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }
  .hamburger span:nth-child(3) {
    top: 0;
  }
  /* ハンバーガーメニュークリック後のスタイル */
  .menu.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0%, 0%);
  }
  .hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
  }
  .header_content {
    padding: 0 20px;
    height: 60px;
    align-items: center;
}
.header_content .menu .Gmenu > li > ul {
  width: 100%;
  flex-direction: column;
  position: relative;
  border-bottom: 1px solid #cccccc;
  display: none;
  opacity: 0;
  height: 0;
  transition: .3s;
  padding: 0 20px;
  display: flex;
  transform: scaleY(0);
  transform-origin: center top;
}
.header_content .menu .Gmenu > li > ul.active {
  opacity: 1;
  height: 100%;
  padding: 20px 20px 10px;
  visibility: visible;
  transform: scaleY(1);
}
.header_content .menu .Gmenu > li > ul > li > ul > li > a {
  justify-content: flex-start;
  padding: 10px 0;
  margin: 0;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
}
.header_content .menu .Gmenu > li > ul > li {
  margin-bottom: 20px;
}
.header_content .cta_box .tel_box01 {
  width: 100%;
  display: flex;
  justify-content: center;
}
.header_content .logo {
  height: 40px;
  top: 20px;
  left: 20px;
}
}
@media only screen and (min-width: 1025px) and (max-width: 1050px) {
.header_content .menu ul li a {
  font-size: 14px;
}
}

/*=====================================
*
*header
*
=======================================*/
.mv_area {
  position: relative;
  height: 100vh;
}
.mv_area .img_box {
  width: 74.3%;
  margin-left: auto;
  height: 100%;
}
/* header {
  position: relative;
}
header .logo {
  position: absolute;
  width: 180px;
  left: 100px;
  top: 64px;
  z-index: 1;
}
header .logo a {
  width: 100%;
  height: 100%;
  display: block;
  transition: .3s;
}
header .logo a:hover{
  opacity: .7;
}
header .menu {
  position: fixed;
  right: 35px;
  top: 62px;
  z-index: 1;
}
header .menu .icon_img {
  width: 24px;
  margin-bottom: 17px;
}
header .menu .icon_img a{
  display: block;
  transition: .3s;
}
header .menu .icon_img a:hover{
  opacity: .7;
}
header .menu ul li a {
  font-size: 18px;
  color: #231815;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .2em;
  transition: .3s;
}
header .menu ul li a:hover{
  opacity: .7;
} */
.mv_area .in {
  position: absolute;
  top: 46%;
  max-width: 1920px;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0px);
  padding: 0 100px;
}
.mv_area .in .title_box h1.title {
  font-weight: 400;
  font-style: normal;
  font-size: 45px;
  letter-spacing: .3em;
  color: #231815;
  margin-bottom: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.mv_area .in .title_box p {
  font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 0.2em;
    color: #73797c;
    line-height: 2.4;
}
.mv_area .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*=====================================
*
*front
*
=======================================*/
.title_box01 h2 {
  font-size: 26px;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  color: #b0883c;
  text-align: center;
  letter-spacing: .3em;
}

.product_sec .productlist_con .product_row {
  background-image: url(../images/parts01.webp);
  height: 554px;
  /* width: 1586px; */
  background-size: cover;
  position: relative;
  width: 82.8%;
}

.product_sec .productlist_con .product_row .text_box {
  background: #fff;
  width: fit-content;
  position: absolute;
  right: 0;
  top: 64px;
  padding: 50px 45px;
  min-width: 584px;
}

.product_sec .productlist_con .product_row .text_box h3 {
  font-size: 23px;
  color: #b0883c;
  letter-spacing: .1em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 25px;
}

.product_sec .productlist_con .product_row .text_box p {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: .1em;
  line-height: 2;
  color: #73797c;
}

.product_sec .productlist_con .product_row .more_box {
  position: absolute;
  right: 0;
  bottom: 57px;
  right: 95px;
  z-index: 1;
}

.product_sec .productlist_con .product_row .more_box a {
  color: #b0883c;
  font-size: 20px;
  letter-spacing: .2em;
  border-bottom: 1px solid;
  position: relative;
  font-family: "Assistant", sans-serif;
  z-index: 1;
  background: initial;
}

.product_sec .productlist_con .product_row .more_box a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  background: #b0883c;
  transform: rotate(-45deg);
  bottom: -2px;
  right: 6px;
  z-index: -1;
  transition: .3s;
  opacity: 0;
}
.product_sec .productlist_con .product_row .more_box a:hover::after {
  right: -34px;
  opacity: 1;
}
.product_sec .productlist_con .product_row .more_box a::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  bottom: -1px;
  background: #b0883c;
  right: 0;
  transition: .3s;
  opacity: 0;
}
.product_sec .productlist_con .product_row .more_box a:hover::before {
  right: -40px;
  opacity: 1;
}
.product_sec .title_box01 {
  margin-bottom: 50px;
}
.product_sec .productlist_con .product_row.reverse {
  margin: 100px 0;
  margin-left: auto;
  background-image: url(../images/parts02.png);
}
.product_sec .productlist_con .product_row:nth-of-type(3) {
  background-image: url(../images/parts03.png);
  background-repeat: no-repeat;
  background-color: #f1f1f1;
}
.product_sec .productlist_con .product_row.reverse .text_box {
  left: 0;
}
.product_sec .productlist_con .product_row.reverse .more_box {
  left: 460px;
}
article.about_sec .about_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
article.about_sec .about_row .text_col h2 {
    font-size: 26px;
    letter-spacing: .3em;
    color: #b0883c;
    font-family: "Assistant", sans-serif;
    margin-bottom: 36px;
}

article.about_sec .about_row .text_col p {
    font-size: 16px;
    color: #73797c;
    letter-spacing: .2em;
    line-height: 2.6;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

article.about_sec .about_row .text_col .more_box{
  position: relative;
  z-index: 1;
  margin-top: 50px;
  margin-left: auto;
  width: fit-content;
  margin-right: 40px;
}
article.about_sec .about_row .text_col .more_box a {
  color: #b0883c;
  font-size: 20px;
  letter-spacing: .2em;
  border-bottom: 1px solid;
  position: relative;
  font-family: "Assistant", sans-serif;
  z-index: 1;
  background: #fff;
  width: fit-content;
}
article.about_sec .about_row .text_col .more_box a::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  bottom: -1px;
  background: #b0883c;
  right: 0;
  transition: .3s;
}
article.about_sec .about_row .text_col .more_box a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  background: #b0883c;
  transform: rotate(-45deg);
  bottom: -2px;
  right: 6px;
  z-index: -1;
  transition: .3s;
}
article.about_sec .about_row .text_col .more_box a:hover::before {
  right: -40px;
}
article.about_sec .about_row .text_col .more_box a:hover::after {
  right: -34px;
}

article.about_sec .about_row .img_col {
    width: 425px;
}
article.product_sec {
  margin-bottom: 150px;
}
article.about_sec {
  margin-bottom: 150px;
}
article.news_sec {
  margin-bottom: 150px;
}
article.news_sec h2 {
    font-size: 26px;
    color: #b0883c;
    letter-spacing: .3em;
    font-family: "Assistant", sans-serif;
    margin-bottom: 65px;
}
article.news_sec .news_row ul {
    row-gap: 40px;
    display: flex;
    flex-direction: column;
}
article.news_sec .news_row ul li a {
    display: flex;
    color: #73797c;
    column-gap: 125px;
    transition: .3s;
}
article.news_sec .news_row ul li a:hover{
  opacity: .7;
}
article.news_sec .news_row ul li a p {
    letter-spacing: .1em;
    font-family: "Zen Kaku Gothic New", sans-serif;
}
article.news_sec .news_row ul li a time {
    color: #b0883c;
    letter-spacing: .2em;
    font-family: "Assistant", sans-serif;
}
article.news_sec .news_row .more_box {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  margin-left: auto;
  width: fit-content;
  margin-right: 40px;
}
article.news_sec .news_row .more_box a{
  color: #b0883c;
  font-size: 20px;
  letter-spacing: .2em;
  border-bottom: 1px solid;
  position: relative;
  font-family: "Assistant", sans-serif;
  z-index: 1;
  background: #fff;
  width: fit-content;
}
article.news_sec .news_row .more_box a::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  bottom: -1px;
  background: #b0883c;
  right: 0;
  transition: .3s;
}
article.news_sec .news_row .more_box a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  background: #b0883c;
  transform: rotate(-45deg);
  bottom: -2px;
  right: 6px;
  z-index: -1;
  transition: .3s;
}
article.news_sec .news_row .more_box a:hover::after {
  right: -34px;
}
article.news_sec .news_row .more_box a:hover::before {
  right: -40px;
}

footer .logo {
    width: 410px;
    margin: 0 auto;
}
footer .logo a {
    display: block;
    transition: .3s;
}
footer .logo a:hover {
  opacity: .7;
}
footer .more_box {
  width: fit-content;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
}
footer .more_box a{
  color: #b0883c;
  font-size: 20px;
  letter-spacing: .2em;
  border-bottom: 1px solid;
  position: relative;
  font-family: "Assistant", sans-serif;
  z-index: 1;
  background: #fff;
  width: fit-content;
}
footer .more_box a::before{
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  bottom: -1px;
  background: #b0883c;
  right: 0;
  transition: .3s;
}
footer .more_box a::after{
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  background: #b0883c;
  transform: rotate(-45deg);
  bottom: -2px;
  right: 6px;
  z-index: -1;
  transition: .3s;
}
footer .more_box a:hover::after{
  right: -34px;
}
footer .more_box a:hover::before{
  right: -40px;
}
footer .menu_con {
  border-top: 1px solid #b0883c;
  padding-top: 50px;
}
footer .menu_con .menu_column ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 80px;
  row-gap: 40px;
}
footer .menu_con .menu_column ul li a {
  color: #b0883c;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: .2em;
  transition: .3s;
}
footer .menu_con .menu_column ul li a:hover{
  opacity: .7;
}
.copyright {
  color: #73797c;
  font-size: 15px;
  font-family: "Assistant", sans-serif;
  text-align: end;
  max-width: 1830px;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 80px;
  letter-spacing: .2em;
  padding: 0 20px;
}


/*=====================================
*section1
=======================================*/

/*=====================================
*section2
=======================================*/

/*=====================================
*section3
=======================================*/

/*=====================================
*section4
=======================================*/

/*=====================================
*section5
=======================================*/

/*=====================================
*section6
=======================================*/

/*=====================================
*section7
=======================================*/

/*=====================================
*section8
=======================================*/

/*=====================================
*section9
=======================================*/

/*=====================================
*section10
=======================================*/


/*=====================================
*
*single
*
=======================================*/

/*=====================================
*
*page
*
=======================================*/

/*=====================================
*
*archive
*
=======================================*/

/*=====================================
*
*breadcrumb
*
=======================================*/

/*=====================================
*
*toc
*
=======================================*/

/*=====================================
*
*footer
*
=======================================*/

/*=====================================
*
*sidenav
*
=======================================*/


/*=====================================
*
*page single arcive 他ページ
*
=======================================*/
/* div#page {
  padding-top: 160px;
} */
.productFirst_sec {
  margin-bottom: 80px;
  margin-top: 160px;
}
.productFirst_sec h1 {
  font-size: 45px;
  color: #b0883c;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  letter-spacing: .1em;
  margin-bottom: 50px;
}
.productFirst_sec p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #73797c;
  line-height: 1.4;
  letter-spacing: .2em;
  line-height: 2.4;
}
.productImg_sec {
  position: relative;
  height: 862px;
  margin-bottom: 150px;
}
.productImg_sec .img_box {
  position: relative;
  height: 100%;
  width: 100%;
}
.productImg_sec .img_box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0 0 0 / 15%);
}
.productImg_sec .img_box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productImg_sec .wp-block-group__inner-container {
  width: 100%;
  height: 100%;
}
.productImg_sec .title_text_box {
  position: absolute;
  bottom: 90px;
  max-width: 1506px;
  width: 100%;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%, 0px);
  padding: 0 20px;
}
.productImg_sec .title_text_box h2 {
  font-size: 25px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
  margin-bottom: 50px;
}
.productImg_sec .title_text_box p.text {
  color: #fff;
  letter-spacing: .1em;
  line-height: 2.3;
}
.productImgTextFlrex_sec {
  position: relative;
  margin-bottom: 150px;
}
.productImgTextFlrex_sec .flex {
  display: flex;
  column-gap: 85px;
  max-width: 1720px;
  width: 100%;
  padding-right: 20px;
}
.productImgTextFlrex_sec .flex .img_col {
  position: relative;
  width: 62.6%;
}
.productImgTextFlrex_sec .flex .img_col p {
  position: absolute;
  bottom: 55px;
  left: 19%;
  font-size: 20px;
  letter-spacing: .2em;
  color: #fff;
  line-height: 2.4;
}
.productImgTextFlrex_sec .flex .text_col h2 {
  border: 1px solid #b0883c;
  color: #b0883c;
  font-size: 44px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  padding: 25px 20px 30px;
  line-height: 1.45;
}
.productImgTextFlrex_sec .flex .text_col h3 {
  font-size: 20px;
  color: #b0883c;
  letter-spacing: .1em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 20px;
  margin-top: 77px;
}
.productImgTextFlrex_sec .flex .text_col p {
  font-size: 16px;
  letter-spacing: .07em;
  color: #73797c;
  line-height: 2.3;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.productImgTextFlrex_sec .flex .text_col p a {
  color: #b0883c;
  transition: .3s;
}
.productImgTextFlrex_sec .flex .text_col p a:hover{
  opacity: .7;
}
.productImgTextFlrex_sec .flex .img_col .wp-block-group__inner-container {
  width: 100%;
  height: 100%;
}
.productImgTextFlrex_sec .flex .img_col .wp-block-group__inner-container figure.wp-block-image {
  width: 100%;
  height: 100%;
}
.productImgTextFlrex_sec .flex .img_col .wp-block-group__inner-container figure.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productTitle2cols_sec {
  position: relative;
  margin-bottom: 150px;
}
.productTitle2cols_sec .contentwid {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.productTitle2cols_sec .contentwid h2 {
  font-size: 44px;
  color: #b0883c;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  letter-spacing: .2em;
  line-height: 1.45;
  margin-bottom: 93px;
}
.productTitle2cols_sec .contentwid .flex2col_row {
  display: grid;
  gap: 20px;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
}
.productTitle2cols_sec .contentwid .flex2col_row .flex2col_col h3 {
  font-size: 19px;
  color: #b0883c;
  letter-spacing: .1em;
  line-height: 1.85;
  margin-bottom: 14px;
}
.productTitle2cols_sec .contentwid .flex2col_row .flex2col_col p {
  font-size: 16px;
  letter-spacing: .1em;
  color: #73797c;
  line-height: 2.3;
}
.productImgTextFlrex_sec .flex .text_col {
  width: calc(37.4% - 85px);
}
.producttableimg_sec {
  position: relative;
  margin-bottom: 150px;
}
.producttableimg_sec .flex {
  max-width: 1720px;
  margin-left: auto;
  padding-left: 20px;
  display: flex;
  gap: 85px;
}
.producttableimg_sec .flex .img_col {
  width: 66.5%;
  position: relative;
}
.producttableimg_sec .flex .table_col {
  width: calc(33.5% - 85px);
  min-width: 480px;
}
.producttableimg_sec .flex .table_col table tr td {
  border: none;
  font-size: 16px;
  letter-spacing: .1em;
  color: #73797c;
  line-height: 2.3;
  padding: 38px 20px;
}
.producttableimg_sec .flex .table_col table tr {
  border-top: 1px solid #b0883c;
}
.producttableimg_sec .flex .table_col table tr td:nth-of-type(1) {
  font-size: 18px;
  color: #b0883c;
  letter-spacing: .1em;
  padding-left: 50px;
  width: 44%;
}
.producttableimg_sec .flex .table_col table tr:last-of-type {
  border-bottom: 1px solid #b0883c;
}
.producttableimg_sec .flex .img_col p {
  position: absolute;
  top: 100px;
  left: 120px;
  font-size: 35px;
  color: #fff;
  letter-spacing: .2em;
  line-height: 1.94;
}
.producttableimg_sec .flex .img_col .wp-block-group__inner-container {
  width: 100%;
  height: 100%;
}
.producttableimg_sec .flex .img_col .wp-block-group__inner-container figure.wp-block-image {
  width: 100%;
  height: 100%;
  position: relative;
}
.producttableimg_sec .flex .img_col .wp-block-group__inner-container figure.wp-block-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  left: 0;
  top: 0;
  opacity: 0.2;
}
.producttableimg_sec .flex .img_col .wp-block-group__inner-container figure.wp-block-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.producttableimg_sec .flex .table_col table tr td strong {
  font-size: 12px;
  font-weight: 400;
}
.productstore_sec {}

.productstore_sec .flex {
    display: flex;
    gap: 85px;
    max-width: 1540px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
}
.productstore_sec .flex .img_col {
    width: calc(44.2% - 85px);
}
.productstore_sec .flex .table_col {
    width: 55.8%;
}
.productstore_sec .flex .table_col .title_flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 19px;
}
.productstore_sec .flex .table_col .title_flex h2 {
  font-size: 30px;
  color: #b0883c;
  letter-spacing: .1em;
}
.productstore_sec .flex .table_col .title_flex p {
  font-size: 14px;
  line-height: 1.85;
  color: #73797c;
}
.productstore_sec .flex .table_col table tr td {
  border: none;
  font-size: 14px;
  color: #73797c;
  line-height: 1.85;
  padding: 20px  0px 20px 20px;
}
.productstore_sec .flex .table_col table tr td:nth-of-type(1) {
  border-right: 1px solid #b0883c;
  color: #b0883c;
  letter-spacing: .1em;
  width: 20%;
}
.productstore_sec .flex .table_col table {
  border-top: 1px solid #b0883c;
  border-bottom: 1px solid #b0883c;
}
.productstore_sec .btn_row {
  text-align: center;
  margin-top: 100px;
}
.productstore_sec .btn_row .btn a {
  width: 368px;
  height: 113px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #b0883c;
  font-size: 28px;
  letter-spacing: .2em;
  transition: .3s;
}
.productstore_sec .btn_row .btn a:hover{
 opacity: .7;
}
.productstore_sec {
  margin-bottom: 153px;
}
.beginningpart_row {
  border: 1px solid #b0883c;
  padding: 50px 30px;
  position: relative;
}
.beginningpart_row::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  border: 1px solid #efefef;
  width: 100%;
  height: 100%;
}
.beginningpart_row h2 {
  font-size: 24px;
  font-weight: 400;
  color: #b0883c;
  margin-bottom: 30px;
  letter-spacing: .05em;
}
.title_box02 {
  font-size: 24px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 10px;
}
.title_box02::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background: #b0883c;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0px);
}
.aboutTable_row table tr td {
    border: none;
    padding: 30px 20px;
    color: #73797c;
}
.aboutTable_row table tr {
    border-top: 1px solid #efefef;
}
.aboutTable_row table tr td:nth-of-type(1) {
    color: #b0883c;
    width: 180px;
}
.aboutTable_row table tr:last-of-type {
    border-bottom: 1px solid #efefef;
}
.mvarea_page {
  position: relative;
}
.mvarea_page .mv_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
}
.mvarea_page .mv_text h1.h1 {
  text-align: center;
  font-size: 45px;
  color: #b0883c;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  letter-spacing: .05em;
}
.mvarea_page .img_box {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.mvarea_page .img_box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pancu{
  padding-top: 10px;
}
.pancu .breadcrumb {
  display: flex;
}
.pancu .breadcrumb ul {
  display: flex;
  overflow: auto;
  white-space: nowrap;
}
.pancu .breadcrumb ul li:not(:last-of-type)::after {
  font-family: "Font Awesome 5 Free";
  content: "\/";
  font-weight: bold;
  color: #333;
  font-size: 12px;
  margin: 0 5px;
}
.pancu .breadcrumb ul li a {
  font-weight: 500;
  font-size: 12px;
  color: #333;
  letter-spacing: 0.05em;
  transition: .3s;
}
.pancu .breadcrumb ul li:last-of-type a {
  color: #333;
}
.pancu .breadcrumb ul li a:hover{
  opacity: .7;
}

#page .normalform {
  /* padding: 50px 20px 50px;
  border: 1px solid #ddd; */
  position: relative;
}
#page .normalform .cp_iptxt {
  margin: 20px 0;
}
#page .normalform .cp_iptxt p {
  margin-bottom: 10px;
  display: flex;
  font-weight: 500;
  align-items: center;
}
#page .normalform .cp_iptxt p span {
  background: #ccc;
  color: #fff;
  padding: 1px 10px 3px;
  font-size: 12px;
  border-radius: 2px;
  margin-left: 10px;
}
#page .normalform .cp_iptxt input {
  width: 100%;
  font-size: 16px;
  padding: 15px;
  border: 1px solid #DDDDDD;
}
#page .normalform .cp_iptxt input:focus, #page .normalform .cp_iptxt textarea:focus {
  outline: #005b6f 1px solid;
}
#page .normalform .cp_iptxt textarea {
  width: 100%;
  border: 1px solid #DDDDDD;
  font-size: 16px;
  resize: vertical;
  padding: 10px;
}
#page .normalform .sub {
  text-align: center;
  margin-top: 50px;
}
#page .normalform .sub input{
  background: #b0883c;
  color: #fff;
  border: 1px solid #b0883c;
  padding: 20px 20px 20px;
  border-radius: 50px;
  width: 250px;
  font-size: 16px;
  letter-spacing: 0.05em;
  transition: .3s;
  pointer-events: all;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#page .normalform .sub input:hover{
  opacity: .7;
}
.contactpage_sec {
  margin-top: 100px;
}
.cp_iptxt02{
  text-align: center;
}
input[type="checkbox"] {
  pointer-events: all;
  cursor: pointer;
}
.mwform-checkbox-field label, .mwform-radio-field label {
  font-weight: normal;
  margin-bottom: 0;
  cursor: pointer;
  pointer-events: all;
}


.qa_container {
  width: 100%;
}
.qa_container .qa_list:first-of-type{
  border-top: 1px solid #efefef;
}
.question_title {
  background: #fff;
  cursor: pointer;
  padding: 30px 40px 30px 20px;
  position: relative;
  border-bottom: 1px solid #efefef;
}
.question_title span:before {
  position: absolute;
  content: 'Q';
  top: -6px;
  left: 0px;
  color: #535d60;
  font-size: 20px;
  border: 1px solid;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.question_title:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 1px;
  width: 15px;
  background: #333;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.question_title:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 1px;
  width: 15px;
  background: #333;
  transition: all .3s ease-in-out;
}
.question_title.open:before {
  transform: rotate(180deg);
}
.answer_text {
  display: none;
  position: relative;
  background: #f5f5f5;
  padding: 30px 40px 30px 80px;
  font-size: 16px;
}
.answer_text:before {
  position: absolute;
  content: 'A';
  top: 24px;
  left: 20px;
  color: #535d60;
  font-size: 20px;
  border: 1px solid;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.question_title span {
  font-size: 18px;
  position: relative;
  padding-left: 60px;
  display: block;
  padding-right: 20px;
}
.answer_text p {
  line-height: 1.8;
}
#page .normalform h2 {
  font-size: 26px;
  color: #b0883c;
  margin-bottom: 30px;
}
.news02_sec .news02_row {
    position: relative;
}
.news02_sec .news02_row ol li a {
  display: flex;
  column-gap: 40px;
  transition: .3s;
  padding: 30px 0;
}
.news02_sec .news02_row ol li a:hover {
  opacity: .7;
}
.news02_sec .news02_row ol li a p {
    letter-spacing: .1em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    display: flex;
    color: #73797c;
}
.news02_sec .news02_row ol li a time {
    color: #b0883c;
    letter-spacing: .2em;
    font-family: "Assistant", sans-serif;
}
.news02_sec .news02_row ol {
    display: flex;
    flex-direction: column;
}
.news02_sec .news02_row ol li {
  border-top: 1px solid #efefef;
}
.news02_sec .news02_row ol li:last-of-type {
  border-bottom: 1px solid #efefef;
}
.pagination ul {
  margin-top: 50px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination ul li .current {
  color: #b0883c;
  border: 1px solid #b0883c;
  padding: 5px 10px;
  display: block;
  font-size: 14px;
}
.pagination ul li .dots {
  color: #b0883c;
  padding: 5px 0;
  display: block;
  font-size: 14px;
}
.pagination ul li a {
  color: #333;
  border: 1px solid #333;
  padding: 5px 10px;
  transition: .3s;
  display: block;
  font-size: 14px;
}
.pagination ul li a:hover{
  color: #b0883c;
  border: 1px solid #b0883c;
}


div#single {
  padding-top: 160px;
}
#single .contents ol, #single .contents ul {
  margin: initial;
  border: none;
  background: none;
  padding: initial;
}
#single .contents ol li, #single .contents ul li {
  margin: initial;
  position: relative;
}
#single .contents ol li::before, #single .contents ul li::before {
  display: none;
}
#single .contents time {
  margin-top: 40px;
  display: block;
}
#single .contents h1 {
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .05em;
  margin-bottom: 30px;
  margin-top: 10px;
}
#single .contents h2 {
  margin: 30px 0;
  font-size: 20px;
}
#single .contents > h2 {
    padding: 20px;
    font-size: 20px;
    margin: 50px 0 30px;
    border-left: 1px solid #b0883c;
    padding: 0.6em 1em;
    font-weight: 500;
}
#single .contents > h3 {
  font-size: 18px;
  margin: 50px 0 30px;
  border-bottom: 1px solid #b0883c;
  padding: 0.5em;
  position: relative;
  font-weight: 500;
}
#single .contents > h3::after {
  content: '';
  width: 2em;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
}
#single .contents > h4 {
  margin: 50px 0 30px;
  font-size: 17px;
  font-weight: 500;
  display: flex;
}
#single .contents > h4::before {
  content: "";
  background: #b0883c;
  width: 0.7em;
  height: 0.7em;
  min-width: 0.7em;
  min-height: 0.7em;
  margin-top: 0.5em;
  margin-right: 0.3em;
}
#single .contents a {
  color: #b0883c;
  transition: .3s;
}
#single .contents a:hover {
  opacity: .7;
}
#single .contents > ul,#single .contents > ol {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#single .contents > ul li,#single .contents > ol li {
  margin-left: 1.2em;
}
#single .contents > ul li {
  list-style: disc;
}
#single .contents > ol li {
  list-style: decimal;
}
blockquote.wp-block-quote {
  padding: 20px;
  margin: 30px 0;
  background: repeating-linear-gradient(-45deg, #fffdf6, #fffdf6 3px, #ffffff 0, #ffffff 6px);
}
blockquote.wp-block-quote cite a {
  font-size: 16px;
  margin-top: 0.6em;
  display: block;
  width: fit-content;
}
.wp-block-table{
  margin: 30px 0;
}
#single .contents .wp-block-table table {
  overflow-x: auto;
}
#single .contents .wp-block-table table td {
  min-width: 150px;
  background: none;

}
#single .contents .wp-block-table table td:first-of-type {
  font-weight: 500;
  background: #fbfbfb;
}
#single .contents time {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
#single .contents time::before {
  content: "\f017";
  font-family: "Font Awesome 5 Free";
  margin-right: 0.5em;
}
#single .contents > p {
  margin: 30px 0;
}
#single .page_pn ol {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
div#single .page_pn ol li {
    position: relative;
}
div#single .page_pn ol li a {
    background: #b0883c;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 5px;
    transition: .3s;
}
div#single .page_pn ol li a:hover{
opacity: .7;
}
.pri_row p {
    margin: 30px 0;
    color: #73797c;
}
.pri_row h3 {
    margin: 30px 0;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-top: 50px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #b0883c;
}
.pri_row h3 strong{
    font-weight: 500;
}
.pri_row ul li {
  color: #73797c;
  list-style: disc;
  margin-bottom: 20px;
}
.pri_row ul {
  padding-left: 1.4em;
}
.pageProductFlex_row {
  display: flex;
  margin-bottom: 50px;
  gap: 20px;
}
.pageProductFlex_row .text_col {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pageProductFlex_row .img_col {
  width: 50%;
}
.pageProductFlex_row .text_col h2 {
  font-size: 24px;
  color: #b0883c;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.pageProductFlex_row .text_col h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  background: #b0883c;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0px);
}
.pageProductFlex_row .text_col .btn_box {
  position: absolute;
  bottom: 0;
  right: 40px;
}
.pageProductFlex_row .text_col .btn_box .btn a {
    color: #b0883c;
    font-size: 20px;
    letter-spacing: .2em;
    border-bottom: 1px solid;
    position: relative;
    font-family: "Assistant", sans-serif;
    z-index: 1;
    background: #fff;
    border: none;
    padding: 0px;
}
.pageProductFlex_row .text_col .btn_box .btn a span{
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid;
}
.pageProductFlex_row .text_col .btn_box .btn a::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    bottom: -1px;
    background: #b0883c;
    right: 0;
    transition: .3s;
    opacity: 0;
}
.pageProductFlex_row .text_col .btn_box .btn a::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 15px;
    background: #b0883c;
    transform: rotate(-45deg);
    bottom: -2px;
    right: 6px;
    z-index: -1;
    transition: .3s;
    opacity: 0;
}
.pageProductFlex_row .text_col .btn_box .btn a:hover::before {
    right: -20px;
    opacity: 1;
}
.pageProductFlex_row .text_col .btn_box .btn a:hover::after {
    right: -14px;
    opacity: 1;
}
p.sebuntext {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 100px;
  font-size: 14px;
  color: #73797c;
  line-height: 2;
}
div#re404 {
  padding-top: 160px;
}
div#re404 h1 {
  font-size: 40px;
}
/* ---------------------------他ページlast ---------------------------*/

/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pcのみ
=======================================*/
@media screen and (min-width: 1025px){
  .pcnone{
    display: none;
  }
}
/*=====================================
*tablet用
=======================================*/
@media screen and (max-width: 1024px) and (min-width: 415px){
  .tabnone{
    display: none;
  }
}
/*=====================================
*sp用
=======================================*/
@media screen and (max-width:414px){
  .spnone{
    display: none;
  }
}

/*==========================================================================
*
*pcパソコン
*
============================================================================*/

@media screen and (min-width: 1500px) and (max-width: 1680px){
  .product_sec .productlist_con .product_row:nth-of-type(3) {
    background-position-x: -160px;
}
}
@media screen and (min-width: 1025px) and (max-width: 1499px){
  .product_sec .productlist_con .product_row:nth-of-type(1) {
    background-position-x: -300px;
}
.product_sec .productlist_con .product_row:nth-of-type(3) {
  background-position-x: -220px;
}
.productImgTextFlrex_sec .flex .text_col {
  width: calc(37.4% - 30px);
}
.productImgTextFlrex_sec .flex {
column-gap: 30px;
}
.productstore_sec .flex .img_col {
  width: calc(44.2% - 30px);
}
.productstore_sec .flex {
  gap: 30px;
}
}
@media screen and (min-width: 1280px) and (max-width: 1499px){
  .product_sec .productlist_con .product_row.reverse {
    background-position-x: -140px;
}
}
@media screen and (min-width: 1025px) and (max-width: 1279px){
  .product_sec .productlist_con .product_row.reverse {
    background-position-x: -350px;
}
.productImgTextFlrex_sec .flex .text_col h2 {
  font-size: 32px;
}
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .producttableimg_sec .flex .img_col p {
    left: 50px;
    font-size: 30px;
}
.productstore_sec .flex .table_col .title_flex h2 {
  font-size: 24px;
}
.productImgTextFlrex_sec .flex .img_col p {
  left: 10%;
}
}
@media only screen and (min-width: 768px){
  .wp-block-columns.is-style-default.is-layout-flex.wp-block-columns-is-layout-flex{
    flex-wrap: nowrap!important;
  }
}
/*==========================================================================
*
*tbタブレット
*
============================================================================*/
@media only screen and (max-width: 1300px) {
  .w126 {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .mvarea_page {
    margin-top: 20px;
}
div#single {
  padding-top: 30px;
}
}
@media only screen and (max-width: 1020px) {
  .w100 {
    padding: 0 20px;
}

}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mv_area .in {
    top: 30%;
    padding: 0 50px;
}
.mv_area {
  height: 500px;
}
.product_sec .productlist_con .product_row {
  height: 584px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0px 100%;
  background-color: #efefef;
}
.product_sec .productlist_con .product_row:nth-of-type(1) .more_box {
  bottom: 120px;
}
.product_sec .productlist_con .product_row.reverse .more_box {
  left: 10%;
  bottom: 150px;
}
.product_sec .productlist_con .product_row.reverse .more_box a{
  background: #f0f0f0;
}
.product_sec .productlist_con .product_row:nth-of-type(3) .more_box {
  bottom: 28%;
}
.product_sec .productlist_con .product_row:nth-of-type(3) .more_box a{
  background: #f4f4f4;
}
.mv_area .in .title_box h1.title {
  font-size: 35px;
}
.mv_area .in .title_box p {
  font-size: 16px;
}
article.about_sec .about_row {
  justify-content: center;
  gap: 20px;
}
article.news_sec .news_row ul li a {
  column-gap: 40px;
}
footer .menu_con .menu_column ul {
  column-gap: 20px;
}
footer .menu_con .menu_column ul li a {
  font-size: 15px;
}
.productImgTextFlrex_sec .flex {
  flex-direction: column;
  row-gap: 70px;
  padding-left: 20px;
}
.productImgTextFlrex_sec .flex .img_col {
  width: 100%;
}
.productImgTextFlrex_sec .flex .img_col p {
  left: 8%;
}
.productImgTextFlrex_sec .flex .text_col {
  width: 100%;
}
.productImgTextFlrex_sec .flex .text_col h2 {
  font-size: 34px;
}
.productTitle2cols_sec .contentwid h2 {
  font-size: 34px;
}
.producttableimg_sec .flex {
  flex-direction: column-reverse;
  padding-right: 20px;
}
.producttableimg_sec .flex .img_col {
  width: 100%;
}
.producttableimg_sec .flex .table_col {
  width: 100%;
}
.producttableimg_sec .flex .img_col p {
  top: 80px;
  left: 60px;
}
.productstore_sec .flex {
  gap: 30px;
}
.productstore_sec .flex .img_col {
  width: calc(44.2% - 30px);
}
.productstore_sec .flex .table_col .title_flex {
  flex-direction: column;
  gap: 20px;
}
.productstore_sec .flex .table_col .title_flex h2 {
  font-size: 24px;
}
.productstore_sec .flex .table_col table tr td:nth-of-type(1) {
  width: 130px;
}
article.about_sec .about_row .img_col {
  width: 400px;
  min-width: 400px;
}
.productTitle2cols_sec .contentwid .flex2col_row {
  flex-direction: column;
  grid-template-columns: 1fr;
}
.pageProductFlex_row .text_col p {
  margin-bottom: 40px;
}
.pageProductFlex_row .text_col .btn_box {
  right: 20px;
}
div#re404 {
  padding-top: 20px;
}
}
/* ---------------------------タブレットonlylast ---------------------------*/
/*==========================================================================
*
*sp
*
============================================================================*/
@media only screen and (max-width: 767px) {
  .mv_area .in {
    padding: 0 20px;
    top: initial;
    position: relative;
    transform: initial;
    left: initial;
}
.mv_area .in .title_box h1.title {
    font-size: 24px;
    margin-bottom: 20px;
}
.mv_area .in .title_box p {
    font-size: 14px;
}
.mv_area {
  height: initial;
  margin-bottom: 0px;
  margin-top: 20px;
}
.mv_area .img_box {
  height: 200px;
  margin-bottom: 40px;
  width: 80%;
}
footer .logo {
  width: 200px;
}
.product_sec .productlist_con .product_row.reverse .more_box {
  left: initial;
  background: #fff;
}
.product_sec .productlist_con .product_row .text_box {
  min-width: initial;
  top: initial;
  padding: 20px;
  width: 100%;
  position: relative;
}
.product_sec .productlist_con .product_row {
  background: initial;
  width: 100%;
  height: initial;
  display: block;
}
.product_sec .productlist_con .product_row.reverse {
  margin: 60px 0;
}
.product_sec .productlist_con .product_row .text_box h3 {
  font-size: 18px;
  margin-bottom: 20px;
}
.product_sec .productlist_con .product_row .text_box p {
  font-size: 13px;
}
.product_sec .productlist_con .product_row .more_box {
  position: relative;
  bottom: initial;
  right: 0;
  text-align: end;
  padding-right: 40px;
  background: #fff;
  padding-top: 20px;
}
.product_sec .productlist_con .product_row .more_box a {
  background: #fff;
  font-size: 16px;
}
.product_sec .title_box01 {
  margin-bottom: 50px;
}
article.product_sec {
  padding-top: 100px;
  margin-bottom: 100px;
}
article.about_sec .about_row {
  flex-direction: column-reverse;
  row-gap: 30px;
}
article.about_sec .about_row .text_col h2 {
  font-size: 20px;
  margin-bottom: 15px;
}
article.about_sec .about_row .text_col p {
  font-size: 14px;
}
article.about_sec .about_row .img_col {
  width: 100%;
}
article.about_sec {
  margin-bottom: 100px;
}
article.news_sec h2 {
  font-size: 20px;
  margin-bottom: 40px;
}
article.news_sec .news_row ul li a {
  flex-direction: column;
}
article.news_sec .news_row ul {
  row-gap: 30px;
}
article.news_sec .news_row ul li a time {
  font-size: 14px;
  margin-bottom: 10px;
}
article.news_sec .news_row ul li a p {
  font-size: 14px;
}
article.news_sec .news_row .more_box {
  margin-top: 50px;
}
article.news_sec .news_row .more_box a {
  font-size: 16px;
}
article.news_sec {
  margin-bottom: 150px;
}
footer .more_box a {
  font-size: 16px;
}
footer .more_box {
  margin-top: 70px;
  margin-bottom: 100px;
}
footer .menu_con .menu_column ul {
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
footer .menu_con .menu_column ul li a {
  font-size: 14px;
}
.copyright {
  font-size: 12px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 50px;
}
.product_sec .productlist_con .product_row:nth-of-type(3) {
  background: none;
  height: initial;
}
.producttableimg_sec .flex .table_col {
  min-width: initial;
  width: 100%;
}
.productFirst_sec h1 {
  font-size: 24px;
}
.productFirst_sec p {
  font-size: 14px;
}
/* div#page {
  padding-top: 100px;
} */
.productImg_sec {
  height: 500px;
  margin-bottom: 100px;
}
.productImg_sec .title_text_box h2 {
  font-size: 17px;
  margin-bottom: 20px;
}
.productImg_sec .title_text_box p.text {
  font-size: 13px;
  line-height: 1.8;
}
.productImg_sec .title_text_box {
  bottom: 20px;
  padding: 0px 20px;
  left: 0px;
  transform: initial;
}
.productImg_sec .img_box::after {
  content: "";
  background: rgb(0 0 0 / 20%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.productImgTextFlrex_sec .flex {
  flex-direction: column;
  padding-right: 0;
}
.productImgTextFlrex_sec .flex .img_col {
  width: 100%;
}
.productImgTextFlrex_sec .flex .img_col p {
  font-size: 13px;
  left: 20px;
  bottom: 20px;
}
.productImgTextFlrex_sec .flex .text_col {
  width: 100%;
  padding: 0 20px;
  margin-top: 50px;
}
.productImgTextFlrex_sec .flex .text_col h2 {
  font-size: 20px;
}
.productImgTextFlrex_sec .flex .text_col h3 {
  font-size: 18px;
  margin-top: 50px;
  margin-bottom: 10px;
}
.productImgTextFlrex_sec .flex .text_col p {
  font-size: 14px;
}
.productTitle2cols_sec .contentwid h2 {
  font-size: 20px;
  margin-bottom: 40px;
}
.productTitle2cols_sec .contentwid .flex2col_row .flex2col_col h3 {
  font-size: 17px;
}
.productTitle2cols_sec .contentwid .flex2col_row .flex2col_col p {
  font-size: 14px;
}
.productTitle2cols_sec .contentwid .flex2col_row {
  flex-direction: column;
  grid-template-columns: 1fr;
}
.producttableimg_sec .flex {
  flex-direction: column-reverse;
  gap: 30px;
  padding-right: 20px;
}
.producttableimg_sec .flex .img_col {
  width: 100%;
}
.producttableimg_sec .flex .img_col p {
  font-size: 18px;
  top: 20px;
  left: 20px;
}
.producttableimg_sec .flex .table_col table tr td:nth-of-type(1) {
  font-size: 14px;
  padding-left: 20px;
  width: 35%;
}
.producttableimg_sec .flex .table_col table tr td {
  font-size: 14px;
  padding: 20px 20px;
}
.productstore_sec .flex {
  flex-direction: column;
  gap: 40px;
}
.productstore_sec .flex .img_col {
  width: 100%;
}
.productstore_sec .flex .table_col {
  width: 100%;
}
.productstore_sec .flex .table_col .title_flex h2 {
  font-size: 20px;
}
.productstore_sec .flex .table_col .title_flex {
  flex-direction: column;
  gap: 20px;
}
.productstore_sec .flex .table_col table tr td:nth-of-type(1) {
  min-width: 130px;
  width: 130px;
}
.productstore_sec .flex .table_col table tr td {
  padding: 20px 0px 20px 15px;
}
.productstore_sec .btn_row .btn a {
  width: 300px;
  font-size: 20px;
  height: 80px;
}
.productstore_sec .btn_row {
  margin-top: 80px;
}
.productImgTextFlrex_sec {
  margin-bottom: 100px;
}
.productTitle2cols_sec {
  margin-bottom: 100px;
}
.producttableimg_sec {
  margin-bottom: 100px;
}
.productFirst_sec {
  margin-top: 100px;
}
.mvarea_page .mv_text h1.h1 {
  font-size: 26px;
}
.mvarea_page .img_box {
  height: 200px;
}
.beginningpart_row {
  padding: 40px 20px;
}
.beginningpart_row h2 {
  font-size: 19px;
}
.title_box02 {
  font-size: 20px;
  margin-bottom: 30px;
}
.aboutTable_row table tr td {
  padding: 25px 15px;
  font-size: 14px;
}
.aboutTable_row table tr td:nth-of-type(1) {
  width: 120px;
}
.title_box01 h2 {
  font-size: 20px;
}
.question_title span {
  font-size: 14px;
  padding-left: 50px;
}
.question_title span:before {
  width: 30px;
  height: 30px;
  font-size: 15px;
  left: 5px;
}
.question_title {
  padding: 30px 20px 30px 0px;
}
.question_title:after {
  right: 5px;
  height: 1px;
}
.question_title:before {
  right: 5px;
  height: 1px;
}
.answer_text p {
  font-size: 14px;
}
.answer_text:before {
  width: 30px;
  height: 30px;
  font-size: 16px;
  left: 5px;
  top: 25px;
}
.answer_text {
  padding: 30px 20px 30px 50px;
}
#page .normalform h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
#page .normalform .wp-block-group__inner-container > p {
  font-size: 14px;
  TEXT-ALIGN: left;
}
.news02_sec .news02_row ol li a {
  font-size: 14px;
  gap: 10px;
  flex-direction: column;
  padding: 20px 0;
}


#single .contents time {
  font-size: 12px;
  margin-top: 0px;
}
#single .contents h1 {
  font-size: 24px;
  margin-bottom: 20px;
}
#single .contents > h2 {
  font-size: 18px;
  margin: 50px 0 20px;
}
#single .contents > h3 {
  font-size: 16px;
  margin: 50px 0 20px;
}
#single .contents > h4 {
  font-size: 15px;
  margin: 50px 0 20px;
}
#single .contents > p {
  font-size: 14px;
  margin: 20px 0 20px;
}
blockquote.wp-block-quote {
  margin: 20px 0;
}
#single .contents .wp-block-table{
  margin: 20px 0;
}
#single .contents > ul li {
  font-size: 14px;
}
#single .contents > ol li {
  font-size: 14px;
}
#single .contents .wp-block-table table td {
  font-size: 14px;
}
div#single .page_pn ol li a {
  font-size: 14px;
  height: 40px;
}
#single .page_pn ol {
  gap: 10px;
}
.pri_row p {
  font-size: 14px;
  margin: 20px 0;
}
.pri_row h3 {
  font-size: 16px;
  margin: 20px 0;
  margin-top: 50px;
}
.pri_row ul li {
  font-size: 14px;
}
p.sebuntext {
  margin-top: 60px;
}
.pageProductFlex_row {
  flex-direction: column-reverse;
  gap: 20px;
}
.pageProductFlex_row.reverse {
  flex-direction: column;
}
.pageProductFlex_row .text_col {
  width: 100%;
}
.pageProductFlex_row .img_col {
  width: 100%;
}
.pageProductFlex_row .text_col h2 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.pageProductFlex_row .text_col p {
  font-size: 14px;
  margin-bottom: 70px;
}
.pageProductFlex_row .text_col .btn_box {
  right: 0px;
}
div#re404 {
  padding-top: 20px;
}
div#re404 h1 {
  font-size: 26px;
}
div#re404 p {
  font-size: 14px;
}
article.about_sec .about_row .text_col .more_box a {
  font-size: 16px;
}
/* ---------------------------携帯last ---------------------------*/
}

@media only screen and (min-width: 500px) and (max-width: 767px) {
  .mv_area .img_box {
    height: 350px;
  }
  .productstore_sec .flex .img_col {
    width: 50%;
    margin: 0 auto;
  }
  .producttableimg_sec .flex .img_col p {
    top: 90px;
  }
  .productImgTextFlrex_sec .flex .img_col p {
    font-size: 16px;
  }
  .beginningpart_row p {
    font-size: 14px;
  }
}