@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

[data-btns=rl-rr] .l-header__body {
  grid-template-areas: "center left right menu search";
}

.l-header__right {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__right .shotive-right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .l-header__right .shotive-right {
    display: none;
  }
}
.l-header__right .shotive-right .contact-box {
  margin-right: 25px;
  transition: transform 0.2s ease-out;
}
.l-header__right .shotive-right .contact-box span {
  display: block;
  margin-bottom: 7px;
  color: #707070;
  font-size: 0.9rem;
}
.l-header__right .shotive-right .contact-box .contact-box01 {
  font-weight: 500;
  font-size: 1.1rem;
}
.l-header__right .shotive-right .contact-box .contact-box02 {
  font-size: 1.25rem;
}
.l-header__right .shotive-right .contact-box .contact-box03 {
  font-size: 0.85rem;
}
.l-header__right .shotive-right .contact-banner {
  border-radius: 50px;
  padding: 10px 30px;
  margin-left: 15px;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.l-header__right .shotive-right .contact-banner a {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  transition: transform 0.2s ease-out;
}
.l-header__right .shotive-right .contact-banner a:hover {
  transform: scale(1.05);
}
.l-header__right .shotive-right .contact-banner:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  animation: glowing 1.5s infinite alternate;
}
.l-header__right .shotive-right .cart {
  border-radius: 50px;
  padding: 10px 30px;
  margin-left: 15px;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.l-header__right .shotive-right .cart a {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  transition: transform 0.2s ease-out;
}
.l-header__right .shotive-right .cart a:hover {
  transform: scale(1.05);
}
.l-header__right .shotive-right .cart:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  animation: glowing2 1.5s infinite alternate;
}
.l-header__right .shotive-right .contact-banner {
  background: linear-gradient(to right, #ff002b 0%, #a50f4e 100%);
}
.l-header__right .shotive-right .contact-banner:hover {
  background: linear-gradient(to right, #ff758c 0%, #ff7eb3 50%, #ff758c 100%);
}
.l-header__right .shotive-right .cart {
  background: linear-gradient(to right, #007bff 0%, #0056b3 100%);
}
.l-header__right .shotive-right .cart:hover {
  background: linear-gradient(to right, #329dff 0%, #007bff 50%, #329dff 100%);
}
.l-header__right .shotive-right .cart .shotive_cart {
  color: red;
  background-color: #ffffff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}
@keyframes glowing {
  from {
    box-shadow: 0 0 5px #ff758c, 0 0 15px #ff7eb3, 0 0 30px #ff7eb3, 0 0 45px #ff758c;
  }
  to {
    box-shadow: 0 0 10px #ff758c, 0 0 20px #ff7eb3, 0 0 35px #ff7eb3, 0 0 50px #ff758c;
  }
}
@keyframes glowing2 {
  from {
    box-shadow: 0 0 5px #7593ff, 0 0 15px #75acff, 0 0 30px #75acff, 0 0 45px #7593ff;
  }
  to {
    box-shadow: 0 0 10px #7593ff, 0 0 20px #75acff, 0 0 35px #75acff, 0 0 50px #7593ff;
  }
}

@media screen and (max-width: 960px) {
  .my-custom-menu {
    display: none;
  }
}
.my-custom-menu ul {
  list-style: none;
  padding: 10px 0 0 0;
  margin: 0;
  display: flex;
  justify-content: end;
}
.my-custom-menu ul li {
  margin: 0 15px;
}
.my-custom-menu ul a {
  text-decoration: none;
  color: #333;
}
.my-custom-menu ul a:hover {
  color: #007bff;
}

body {
  font-family: "Noto Serif JP", serif;
}

#content {
  padding-top: 40px;
}

#iisyohin_sidebar {
  width: 260px;
  order: 1;
}

#main_content {
  order: 2;
  width: 900px;
}

#sidebar {
  order: 3;
  width: 200px;
}

#sidebar .c-widget__title {
  font-size: 18px;
  position: relative;
  padding: 0.5em;
  background: #000000;
  color: white;
}
#sidebar .c-widget__title::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px rgb(74, 74, 74);
}

#iisyohin_sidebar h2 {
  font-size: 18px;
  position: relative;
  padding: 0.5em;
  background: #000000;
  color: white;
}
#iisyohin_sidebar h2::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px rgb(74, 74, 74);
}

@media screen and (max-width: 960px) {
  #iisyohin_sidebar {
    display: none;
  }
  #main_content {
    width: auto;
  }
  #sidebar {
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  .front-cate .ark-block-columns__inner {
    margin: 0;
    row-gap: 0;
    justify-content: center;
  }
  .front-cate .ark-block-columns__inner .ark-block-column {
    width: 50%;
    --arkb-gap--x: 0;
  }
  .front-cate .ark-block-columns__inner .wp-block-cover {
    min-height: 200px;
    overflow: hidden;
  }
  .front-cate .ark-block-columns__inner .wp-block-cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (max-width: 600px) {
  .wc-block-grid__products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0;
  }
}

article.p-entry h2.wp-block-heading {
  position: relative;
  padding: 0.5em;
  background: #a6d3c8;
  color: white;
}
article.p-entry h2.wp-block-heading::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px rgb(149, 158, 155);
}
article.p-entry h3.wp-block-heading {
  position: relative;
  padding-left: 25px;
}
article.p-entry h3.wp-block-heading::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px #a6d3c8;
}
article.p-entry h3.wp-block-heading::after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 10px;
  width: 100%;
  border-bottom: solid 3px #a6d3c8;
}
article.p-entry .box7 {
  padding: 0.5em 1em;
  margin: 2em 0;
  color: #474747;
  background: whitesmoke;
  /*背景色*/
  border-left: double 7px #4ec4d3;
  /*左線*/
  border-right: double 7px #4ec4d3;
  /*右線*/
}
article.p-entry .box7 p {
  margin: 0;
  padding: 0;
}

.p-topArea__body {
  min-height: 400px;
}
.p-topArea__body .c-pageTitle__main {
  line-height: 12;
}

/*contactfrom*/
/* 全幅指定 */
.contactForm {
  background-color: white;
  border-radius: 10px 10px;
  padding: 4%;
  max-width: 100%;
  margin: 0 auto;
  color: black;
  /* 各項目の下部余白と線 */
  /* 送信ボタン */
}
.contactForm .contact_item {
  border-bottom: solid 1px #8f8e8e;
  padding: 10px 0;
  /* labelとinputをflex */
}
.contactForm .contact_item:first-child {
  border-top: 1px solid #8f8e8e;
}
.contactForm .contact_item p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .contactForm .contact_item p {
    flex-direction: column;
  }
}
.contactForm .contact_item p .label {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: bold;
  /* 必須タグ */
  /* 任意タグ */
}
@media screen and (max-width: 960px) {
  .contactForm .contact_item p .label {
    text-align: left;
    width: 70%;
  }
}
.contactForm .contact_item p .label_tag {
  font-size: 1rem;
  color: white;
  border-radius: 0.2rem;
  margin-left: 0.5rem;
  padding: 2px 5px;
}
.contactForm .contact_item p .label_must {
  background-color: red;
}
.contactForm .contact_item p .label_option {
  background-color: #8f8e8e;
}
.contactForm .contact_item .wpcf7-form-control-wrap {
  width: 70%;
}
.contactForm .contact_item input[type=text],
.contactForm .contact_item input[type=email],
.contactForm .contact_item input[type=tel] {
  border: solid 1px #ccc;
  background-color: #f5f5f5;
  padding: 0.1rem;
  font-size: 18px;
  width: 100%;
}
.contactForm .contact_item textarea {
  border: solid 1px #ccc;
  background-color: #f5f5f5;
  height: 100px;
  font-size: 18px;
  width: 100%;
}
.contactForm .btn {
  margin-top: 10px;
  text-align: center;
}
.contactForm .btn input[type=submit] {
  background: #000000;
  border: 2px solid white;
  width: 164px;
  height: 56px;
  color: white;
  text-align: center;
  cursor: pointer;
  border-radius: 0.5rem;
  font-size: 18px;
  /* ボタンにホバーした時 */
}
.contactForm .btn input[type=submit]:hover {
  color: #000000;
  background-color: white;
  border-color: #000000;
}/*# sourceMappingURL=style.css.map */