/* カスタマイズ用CSS */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

html,
body {
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium";
  color: #333;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.7;
  background: #fff;
}

/*=====================================
*
*header
*
=======================================*/
header {
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 4;
  width: 100%;
  transition: .3s;
  height: 130px;
}

header.active {
  border-bottom: 1px solid #efefef;
}

.header_content {
  display: flex;
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  padding: 0 40px;
  flex-wrap: wrap;
  height: 100%;
  padding-top: 10px;
}

.header_content .cta_box {
  width: auto;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}

.header_content .cta_box .tel_box01 a {
  font-size: 18px;
  font-weight: bold;
  pointer-events: none;
  color: #000;
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.header_content .cta_box .mail_box01 a {
  background: #000000;
  font-size: 14px;
  border: 1px solid #000000;
  position: relative;
  width: 200px;
  color: #fff;
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  transition: .3s;
  font-weight: bold;
  gap: 10px;
}

.header_content .cta_box .mail_box01 a i.fa-solid.fa-envelope {
  font-size: 20px;
}

.header_content .cta_box .mail_box01 a:hover {
  opacity: .7;
}

.header_content .cta_box .mail_box01 a:hover::before {
  background-image: url(img/mail1_2.png);
}

.header_content .logo {
  height: 60px;
  display: block;
  text-align: left;
}

.header_content .logo a {
  height: 100%;
  text-align: left;
  display: block;
}

.header_content .logo a img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* pc */
@media only screen and (min-width: 1025px) {
  .header_content .menu {
    width: 100%;
  }

  .header_content .cta_box .btn_ctaone {
    display: block;
    margin-right: 20px;
  }

  .header_content .cta_box .btn_ctaone a {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .header_content .cta_box .btn_ctaone a:hover {
    opacity: .7;
  }

  .header_content .cta_box .btn_ctatwo {
    display: block;
  }

  .header_content .cta_box .btn_ctatwo a {
    background: #A80000;
    color: #fff;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    gap: 5px;
    transition: .3s;
  }

  .header_content .cta_box .btn_ctatwo a:hover {
    opacity: .7;
  }

  .header_content .menu .Gmenu {
    height: 100%;
    display: grid;
    justify-content: flex-end;
    column-gap: 80px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0;
    margin: 0;
    align-items: end;
  }

  .header_content .menu ul li {
    position: relative;
    list-style: none;
  }

  .header_content .menu ul li a {
    font-size: 14px;
    color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    display: flex;
    align-items: center;
    transition: .3s;
    justify-content: center;
    background: #fff;
    padding: 6px 10px 6px;
    font-weight: 700;
  }

  .header_content .menu ul li a:hover {
    opacity: .7;
  }

  .header_content .cta_box .cart_box {
    display: block;
  }

  .header_content .cta_box .cart_box a {
    background: #085D8F;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    transition: .3s;
  }

  .header_content .cta_box .cart_box 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;
  }

  .mv_area {
    margin-top: 60px !important;
  }

  .header_content .menu {
    position: fixed;
    right: 0;
    left: 0;
    top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .3s;
    overflow-y: scroll;
    padding-bottom: 50px;
  }

  .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: 50px;
  }

  .header_content .menu ul li {
    width: 100%;
    position: relative;
  }

  .header_content .menu ul li a {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
  }

  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
  }

  /* ハンバーガーメニューの線 */
  .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 {
    transform: translateX(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 .cta_box.sp_tb {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }

  .header_content .cta_box .RequestCatalog01,
  .header_content .cta_box .mail_box01 {
    width: 50%;
    justify-content: center;
    display: flex;
  }

  .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 .cta_box .RequestCatalog01,
  .header_content .cta_box .mail_box01 {
    width: 50%;
    justify-content: center;
    display: flex;
  }

  .header_content .cta_box .tel_box01 a {
    pointer-events: all;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .header_content .logo {
    height: 40px;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .header_content .cta_box .btn_ctaone {
    margin-right: 0px;
  }

  .header_content .cta_box .btn_ctatwo a {
    width: 180px;
  }

  .header_content .cta_box .mail_box01 a {
    width: 180px;
  }
}



/*=====================================
*
*front
*
=======================================*/
.ec-layoutRole {
  margin-top: 130px;
}

.ec-role {
  max-width: 1300px;
}

.ec-layoutRole__contents {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  display: flex;
  gap: 30px;
}

.ec-layoutRole__contents {
  max-width: 1300px !important;
  padding: 0 20px;
  margin-top: 60px;
}


.ec-layoutRole .ec-layoutRole__left,
.ec-layoutRole .ec-layoutRole__right {
  position: relative;
  width: 280px;
}

/* .ec-layoutRole .ec-layoutRole__left,
.ec-layoutRole .ec-layoutRole__right .side_banner_img_box {
  position: sticky;
  top: 130px;
} */

.ec-layoutRole .ec-layoutRole__mainWithColumn {
  width: calc(100% - 310px);
  margin-right: 30px;
}

.topcontent_sec {
  position: relative;
  padding-bottom: 30px;
}

.topcontent_sec .topcontent_row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

.topcontent_sec .topcontent_row.fo {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 21px;
  margin-top: 50px;
}

.topcontent_sec .topcontent_row .topcontent_col {
  position: relative;
}

.topcontent_sec .topcontent_row .topcontent_col a {
  color: #333;
  position: relative;
  font-weight: bold;
  transition: .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.topcontent_sec .topcontent_row .topcontent_col a:hover {
  opacity: .7;
}

.topcontent_sec .topcontent_row .topcontent_col a .img_box {
  position: relative;
  border-radius: 50%;
}

.topcontent_sec .topcontent_row .topcontent_col a p {
  text-align: center;
  margin-top: 14px;
}


.title_box.yellow {}

.title_box {
  position: relative;
}

.title_box h2 {
  position: relative;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  padding: 26px 20px;
  margin: 0;
}

.title_box h2::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  background: #000;
  top: -1px;
  left: 0;
}

.title_box h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  background: #F6D500;
  bottom: -1px;
  right: 0;
}

.title_box.yellow h2::before {
  background: #F6D500;
}

.title_box.yellow h2::after {
  background: #F6D500;
}

.title_box h2 span.backtext {
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 40px;
  transform: translate(0px, -50%);
  color: #EFEFEF;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1;
}

.productList_sec {
  position: relative;
  padding: 30px 0;
}

.productList_sec .texts p {
  font-size: 14px;
  margin: 26px 0;
  line-height: 2;
}

.productList_sec .productList_row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.productList_sec .productList_row .productList_col {
  position: relative;
}

.productList_sec .productList_row .productList_col a {
  display: block;
  transition: .3s;
}

.productList_sec .productList_row .productList_col a:hover {
  opacity: .7;
}

.productList_sec .productList_row .productList_col a .img_box {
  position: relative;
}

.productList_sec .productList_row .productList_col a .img_box img {
  width: 100%;
}

.productList_sec .productList_row .productList_col a p.text {
  font-size: 14px;
  color: #333;
  line-height: 2;
  margin-top: 12px;
}

.productList_sec .productList_row .productList_col a .plice {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  margin-top: 14px;
}

.productList_sec .more_btn {
  position: relative;
  margin-left: auto;
  width: fit-content;
  margin-top: 50px;
}

.productList_sec .more_btn a {
  background: #F5F5F5;
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666666;
  font-size: 14px;
  font-weight: 500;
  transition: .3s;
}

.productList_sec .more_btn a:hover {
  opacity: .7;
}

.productList_sec .more_btn a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 25px;
  right: -5px;
  top: 50%;
  background: #333;
}

.title_box.pink h2::before,
.title_box.pink h2::after {
  background: #BB6699;
}

.title_box.blue h2::before,
.title_box.blue h2::after {
  background: #32A8CB;
}

.productList_sec .more_btn.yellow a {
  background: #FEFBE5;
}

.productList_sec .more_btn.pink a {
  background: #F8EFF5;
}

.productList_sec .more_btn.blue a {
  background: #EAF6FA;
}



.mv_area {
  height: 570px;
  background: linear-gradient(to right, #FEFBE5, #FFF5FC 50%, #F0FAFF 70%);
  position: relative;
  overflow: hidden;
}

.mv_area .img_back {
  position: absolute;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0px);
  width: 100%;
  max-width: 1920px;
}

.mv_area .white_box {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}

.mv_area .white_box .title_img {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 0;
  width: 140px;
}

.mv_area .white_box .im_box {
  position: relative;
  z-index: 1;
  background: rgb(255 255 255 / 50%);
  padding: 34px 57px;
}

.mv_area .white_box .im_box.title {}

.title {}

.mv_area .white_box .im_box .title {
  text-align: center;
  font-size: 45px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #333;
  margin-bottom: 0px;
  /* padding: 44px 57px; */
}

.mv_area .white_box .im_box h1.sub_text {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.mv_area .img_box01 {
  position: absolute;
  left: 18%;
  bottom: -10px;
  width: 276px;
}

.mv_area .img_box02 {
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 238px;
  transform: translate(-50%, 0px);
}

.mv_area .img_box02 img {
  width: 100%;
}

.mv_area .img_box01 img {
  width: 100%;
}

.mv_area .img_box03 {
  position: absolute;
  right: 18%;
  bottom: -5px;
  width: 270px;
}

.mv_area .white_box .title_img img {
  width: 100%;
}

.mv_area .img_box03 img {
  width: 100%;
}

.mv_area .img_back img {
  width: 100%;
  object-position: 0px -7px;
}

/*=====================================
*
*footer
*
=======================================*/
footer {
  background: #f5f5f5;
  padding: 60px 0 0;
  margin-top: 60px;
}

footer .footer_cta_sec {
  max-width: 1300px;
  padding: 0 20px;
  margin: 0 auto;
}

footer .footer_cta_sec .flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

footer .footer_cta_sec .footer_cta_row {
  display: block;
  margin-bottom: 50px;
  background: #fff;
}

footer .footer_cta_sec .footer_cta_row h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  /* margin-bottom: 20px; */
  background: #f5f5f5;
  padding-bottom: 20px;
}

footer .footer_cta_sec .footer_cta_row .white_box {
  background: #fff;
  position: relative;
  display: block;
  padding: 30px 20px;
  /* height: 100%; */
  /* display: flex; */
}

footer .footer_cta_sec .footer_cta_row .white_box .back_text {
  position: absolute;
  right: 0;
  color: #fff;
  top: 3px;
  transform: translate(0px, -100%);
  line-height: 1;
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
}

footer .footer_cta_sec .footer_cta_row .white_box h3 {
  display: block;
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 14px;
  /* margin-top: 0px; */
}

footer .footer_cta_sec .footer_cta_row .white_box p {
  /* margin-bottom: 30px; */
  font-size: 14px;
}

footer .footer_cta_sec .footer_cta_row .white_box .bottom_text {
  font-size: 12px;
  width: calc(100% + 40px);
  transform: translate(-20px, 0px);
  border-top: 1px solid #ccc;
  padding: 20px 20px 0;
  line-height: 2;
}

footer .footer_cta_sec .footer_cta_row .white_box table {
  display: block;
  margin-top: -30px;
}

footer .footer_cta_sec .footer_cta_row .white_box table tr {
  border-bottom: 1px solid #ccc;
}

footer .footer_cta_sec .footer_cta_row .white_box table tr td {
  display: flex;
  gap: 10px;
}

footer .footer_cta_sec .footer_cta_row .white_box table tr th,
footer .footer_cta_sec .footer_cta_row .white_box table tr td {
  padding: 26px 20px;
  font-size: 14px;
}

footer .footer_cta_sec .footer_cta_row .white_box .bottom02_text {
  font-size: 12px;
  margin-top: 20px;
}

footer .footer_cta_sec .flex .footer_cta_row .white_box p {
  margin-bottom: 30px;
}

footer .footer_cta_sec .footer_cta_row .white_box .dis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

footer .footer_cta_sec .footer_cta_row .white_box .dis .dis_col {
  position: relative;
}

footer .footer_cta_sec .footer_cta_row .white_box .dis .dis_col .flex_btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

footer .footer_cta_sec .footer_cta_row .white_box .dis .dis_col .flex_btn .btn {
  /* border: 1px solid #000; */
  padding: 0;
  /* width: 100%; */
}

footer .footer_cta_sec .footer_cta_row .white_box .dis .dis_col .flex_btn .btn a {
  border: 1px solid #000;
  display: flex;
  width: 100%;
  height: 60px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  transition: .3s;
}

footer .footer_cta_sec .footer_cta_row .white_box .dis .dis_col .flex_btn .btn a:hover {
  opacity: .7;
}

footer .footer_cta_sec .footer_cta_row .white_box .dis .dis_col .flex_btn .btn:nth-of-type(1) a {
  background: #fff;
  color: #333;
}

footer .footer_cta_sec .footer_cta_row .white_box .dis .dis_col .flex_btn .btn:nth-of-type(2) a {
  background: #000;
  color: #fff;
}

footer .footer_cta_sec .footer_cta_row .white_box .dis .dis_col .flex_btn .btn:nth-of-type(2) a i {
  font-size: 20px;
}

footer .footer_cta_sec .footer_cta_row .white_box .dis .dis_col .flex_btn .btn a i {
  margin-right: 10px;
}

.ec-footerNavi .ec-footerNavi__link a {
  font-size: 14px;
  font-weight: bold;
  margin: 0 15px;
  text-decoration: none;
  transition: .3s;
}

.ec-footerRole {
  padding-top: 50px;
}

.ec-footerTitle {
  padding: 30px 0 20px;
}

/*=====================================
*
*pc
*
=======================================*/
@media screen and (min-width: 1025px) {
  .sp {
    display: none !important;
  }

  .tb {
    display: none !important;
  }

  .sp_tb {
    display: none !important;
  }
}

/*=====================================
  *
  *tb
  *
=======================================*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: none !important;
  }

  .tb {
    display: inherit !important;
  }

  .tb_pc {
    display: inherit !important;
  }

  .sp_tb {
    display: inherit !important;
  }
}

/*=====================================
  *
  *sp
  *
=======================================*/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .tb_pc {
    display: none !important;
  }

  .sp {
    display: inherit !important;
  }

  .tb {
    display: none !important;
  }

  .sp_tb {
    display: inherit !important;
  }
}