@charset 'utf-8';
/* 
 Theme Name:   happy-peter
 Theme URI:    
 Description:  
 Author:       
 Author URI:   
 Template:     montblanc
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

 /* == Add your own styles below this line ==
--------------------------------------------*/
/* ===========================================
  common
============================================*/
:root {
  --color-text: #333333;
  --color-link: #1d3994;
  --color-gray: #999c99;
  --color-dark: #1d1600;
  --color-key: #52c2d0;
  --color-table-law: #3eb1c6;
  --color-faq-bg: #e4e6e8;
  --color-faq-hover: #c41b0f;
  --color-faq-text: #313131;
  --color-form-btn: #08374f;
  --color-form-bg: #f5f5f5;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--color-text);
}

body *:not(i) {
  font-family: inherit !important;
}

p {
  margin-bottom: 1em;
}

a,
a:visited {
  color: var(--color-link);
}

a:hover {
  text-decoration: underline;
}

@media (min-width: 992px) {
  body {
    font-size: 1.6rem;
  }
}

/* ===========================================
  theme styles
============================================*/
#masthead,
#contentwrapper,
#colophon,
.sitewidth {
  max-width: 1100px;
}

.site-content::before,
.site-content::after {
  display: none;
}

.page #primary,
.blog #primary,
.archive #primary,
.single-post #primary {
  width: 100%;
}

.content-area {
  line-height: 1.8;
}

/* ===========================================
  header
============================================*/
.site {
  padding-top: 60px;
}

#masthead {
  padding: 10px;
  padding-right: 45px;
  width: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--bs-white);
  z-index: 100;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.site-branding {
  height: 40px;
  width: auto;
}

.site-logo {
  margin-bottom: 0;
}

.site-logo img {
  height: 40px;
}

#cart-navigation {
  padding: 0;
  text-align: right;
}

@media (min-width: 992px) {
  .site {
    padding-top: 0px;
  }

  #masthead {
    padding: 15px 0;
    position: static;
    box-shadow: none;
  }

  #header-serch {
    padding-bottom: 0;
  }

  .site-branding {
    height: auto;
    width: 33%;
  }

  .site-logo img {
    height: 78px;
  }
}

/* ===========================================
  global navi
============================================*/
.menu-container {
  background: transparent;
  border: none;
}

.menu-container .menu {
  width: 100%;
  font-size: 1.4rem;
}

.menu-container .menu-mobile {
  color: var(--color-key) !important;
  font-size: 0;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
}

.menu-mobile:after {
  font-size: 28px;
  font-family: "FontAwesome";
  content: "\f0c9";
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  position: absolute;
}

.menu-mobile.opened:after {
  content: "\f00d";
}

.menu-container .menu .show-on-mobile {
  background-color: var(--color-key);
  padding: 0 15px;
  position: fixed;
  top: 60px;
  z-index: 100;
  animation: slideDown 0.5s;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.menu-container .menu .show-on-mobile::before {
}

.menu-container .menu > ul > li {
  background-color: transparent;
  border-bottom: 1px solid var(--bs-white);
  position: relative;
}

.menu-container .menu > ul > li:hover {
  background-color: transparent;
}

.menu-container .menu > ul > li a {
  color: var(--bs-white);
}

.menu-container .menu > ul > li.no-link > a {
  pointer-events: none;
}

.menu-container .menu > ul > li::before {
  font-family: "FontAwesome";
  color: var(--bs-white);
  content: "\f105";
  padding: 1.5em 0;
  font-size: 1em;
  float: right;
}

.menu-container .menu > ul > li.menu-item-has-children::before {
  content: "\f107";
}

.menu-container .menu > ul > li > ul {
  background: transparent;
}

.menu-container .menu > ul > li > ul > li a {
  color: var(--bs-white);
  width: 100%;
}

@media (min-width: 992px) {
  .menu-container {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

  .menu-container.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgb(255 255 255 / 70%);
    animation: slideDown 0.8s;
  }

  .menu-container .menu > ul > li a {
    color: inherit;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-container .menu > ul > li:hover {
    border-bottom: 0 !important;
    position: relative;
  }

  .menu-container .menu > ul > li::before {
    display: none;
  }

  .menu-container .menu > ul > li::after {
    content: "";
    height: 4px;
    background-color: #e36e3a;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
  }

  .menu-container .menu > ul > li:hover::after {
    width: 100%;
  }

  .menu-container .menu > ul > li > ul.normal-sub {
    margin: 0;
    background: rgba(250, 250, 250, 0.95);
    padding: 0;
    overflow: hidden;
  }

  .menu-container .menu > ul > li > ul.normal-sub > li a {
    color: inherit;
    position: relative;
    padding: 1em;
  }

  .menu-container .menu > ul > li > ul.normal-sub > li a:hover {
    color: var(--bs-white);
    background-color: var(--color-key);
  }

  @keyframes slideDown {
    0% {
      transform: translateY(-100%);
    }

    100% {
      transform: translateY(0%);
    }
  }
}

/* ===========================================
  Sidebar
============================================*/
#secondary {
  padding: 0 0 100px;
}

#secondary .widget {
  width: 100%;
  background-color: var(--bs-white);
  border-radius: 0.5rem;
  margin: 0 0 15px;
  padding: 15px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-top: none;
}

#secondary .widget.woocommerce {
  margin-right: 0;
}

.widget-title {
  border-top: 2px solid;
  padding-top: 0.8em;
  margin-bottom: 0.5em;
  font-size: 1em;
}

#secondary a {
  color: inherit;
}

@media (min-width: 992px) {
  #secondary .widget {
    padding: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
  }
}

/* ===========================================
  footer
============================================*/
.site-footer {
  background-color: var(--color-dark);
}

/* pagetop */
#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
}

#pagetop img {
  width: 50px;
}

@media (min-width: 992px) {
  #pagetop img {
    width: 90px;
  }
}

/* menu */
.footer-navigation .widget {
  border-top: none;
  margin: 0;
  padding: 0;
}

.footer-navigation ul {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.footer-navigation li {
  border-bottom: 1px solid var(--bs-white);
}

.footer-navigation a {
  padding: 1em;
  display: block;
  color: var(--bs-white) !important;
}

.footer-navigation .no-link > a {
  pointer-events: none;
}

.footer-navigation .sub-menu {
  display: none;
  border-top: 1px solid var(--bs-white);
}

/* copyright */
#colophon {
  color: var(--bs-white) !important;
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-navigation .sub-menu {
    display: flex;
  }
}

@media (min-width: 992px) {
  .site-footer {
    padding: 60px 0 0;
  }

  /* menu */
  .footer-navigation li {
    border-bottom: none;
  }

  .footer-navigation a {
    text-align: left;
    padding: 0.6em 0;
  }

  .footer-navigation .sub-menu {
    border-top: none;
    padding-left: 2em;
  }

  .footer-navigation .sub-menu li {
    position: relative;
  }

  .footer-navigation .sub-menu li::before {
    content: "-";
    position: absolute;
    top: 50%;
    left: -1em;
    transform: translateY(-50%);
  }
}

/* ===========================================
  Top page
============================================*/
/* slider */
.topbanner {
  margin-bottom: 0;
}

.topbanner img {
  height: auto;
  object-fit: cover;
  width: 100%;
}

@media (min-width: 992px) {
  .topbanner img {
    height: 600px;
  }
}

/* featured products */
.featured {
}

.featured__lead {
  line-height: 1.5;
  margin-bottom: 3em;
}

.featured__lead strong {
  font-size: 1.2em;
  margin-bottom: 0.5em;
  display: inline-block;
}

.woocommerce ul.products li.product a img {
  border: 1px solid #eee;
  display: block;
  object-fit: contain;
  height: 45vw !important;
}

.woocommerce ul.products li.product h2 {
  color: var(--color-link);
  margin-top: 0.5em;
}

.woocommerce ul.products li.product h2:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 14% 6%;
  }

  .woocommerce ul.products::before {
    display: none;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 20.45%;
    float: none;
    margin: 0 0 2em;
  }

  .woocommerce ul.products li.product a img {
    height: 250px !important;
  }
}

@media (min-width: 992px) {
  .front-page .featured {
    padding-top: 95px;
  }

  .featured__lead {
    margin-bottom: 90px;
  }

  .featured__lead strong {
    font-size: 1.7em;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
  }

  .woocommerce ul.products li.product a img {
    height: 340px !important;
  }
}

/* news */
@media (min-width: 768px) {
  .news ul {
    display: flex;
    flex-wrap: wrap;
    grid-gap: var(--gap);
    --gap: 4%;
  }

  .news ul::before {
    display: none;
  }

  .news ul li {
    width: calc((100% - 2 * var(--gap)) / 3);
    border-bottom: none;
    margin: 0;
  }
}

/* ===========================================
  Entry 
============================================*/
/* Header */
.entryheaderimg {
  position: relative;
  margin-bottom: 25px;
}

.entryheaderimg .sitewidth {
  width: 100%;
  max-width: 100%;
}

.entryheaderimg img {
  height: calc(100vw * (200 / 750));
  max-height: 200px;
  margin: 0 calc((100% - 100vw) / 2);
  width: 100vw;
}

.entryheaderimg .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: serif !important;
  text-shadow: -2px -2px 4px #fff, 2px -2px 4px #fff, -2px 2px 4px #fff, 2px 2px 4px #fff;
}

@media (min-width: 992px) {
  .entryheaderimg {
    margin-bottom: 90px;
  }

  .entryheaderimg .page-title {
    font-size: 3rem;
  }
}

/* Blog Header */
.blog .entryheaderimg {
  margin-bottom: 50px;
  background-color: rgb(239, 239, 239);
  height: 40px;
}

@media (min-width: 992px) {
  .blog .entryheaderimg {
    height: 80px;
  }
}

/* Title */
.entry-content h2:first-child {
  margin-top: 0;
}

/* ===========================================
  Sub Page：About
============================================*/
.about-child .entry-content h2 {
  color: var(--bs-white);
  background-color: var(--color-key);
  position: relative;
  padding: 0.5em 0.7em;
  border-radius: 0.5em;
  font-family: inherit;
  font-size: 1.2em;
  width: fit-content;
}

.about-child .entry-content h2::before {
  content: "";
  border: 0.5em solid transparent;
  border-top: 0.5em solid var(--color-key);
  position: absolute;
  top: calc(100% - 1px);
  left: 1em;
}

.about-child .pager a {
  font-weight: bold;
}

.about-child .pager--next a {
  color: var(--color-link);
}

.about-child .pager--prev a {
  color: var(--color-gray);
}

.about-child .pager a:hover {
  text-decoration: underline;
}

.about-child .pager i {
  font-weight: inherit;
  margin: 0 1em;
}

@media (min-width: 992px) {
  .about-child .entry-content h2 {
    margin-top: 0;
  }
}

/* ===========================================
  Sub Pagei：Members
============================================*/
.member__item .elementor-widget-image-box {
  background-color: rgb(255 255 255 / 70%);
  padding: 15px;
  height: 100%;
}

.member__item figure.elementor-image-box-img {
  margin-bottom: 0.5em !important;
}

.member__item figure.elementor-image-box-img img {
  object-fit: cover;
  width: 100%;
}

.member__item .elementor-image-box-title {
  color: var(--bs-white);
  background-color: #0a496a;
  padding: 0.2em;
  font-size: inherit;
}

.member__item .elementor-image-box-description {
  text-align: left;
}

@media (min-width: 992px) {
  .member__lead {
    margin-top: -40px;
    margin-bottom: 40px;
  }

  .member__item .elementor-image-box-content {
    font-size: 1.4rem;
  }
}

/* ===========================================
  Sub Page：FAQ
============================================*/
/* title */
.faq .entry-content h2 {
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid var(--color-faq-bg);
  width: fit-content;
  padding: 0.2em 1.5em;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* QA */
.ewd-ufaq-faq-list {
  max-width: 980px;
  margin: 0 auto 20px;
}

.ewd-ufaq-faqs {
  display: grid;
  grid-gap: 0.5em;
}

.ewd-ufaq-faq-div {
  background-color: var(--color-faq-bg);
  border-radius: 0.5rem;
}

.ewd-ufaq-faqs .ewd-ufaq-faq-title .ewd-ufaq-post-margin-symbol span {
  position: relative;
  font-size: 0;
}

.ewd-ufaq-faq-title .ewd-ufaq-post-margin-symbol span::before {
  content: "Q";
  font-family: serif;
  font-size: 2rem;
  color: var(--color-faq-bg);
  background-color: var(--color-faq-text);
  display: block;
  border-radius: 50%;
  padding: 0.2em;
  width: 1.5em;
  height: 1.5em;
}

div.ewd-ufaq-faq-title div.ewd-ufaq-post-margin-symbol {
  margin: 0 0.5em 0 0;
  padding: 0;
}

.ewd-ufaq-faq-toggle a {
  color: inherit;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0.5em;
  position: relative;
  text-decoration: none;
  outline: none;
}

.ewd-ufaq-clear {
  display: none;
}

.ewd-ufaq-faq-toggle a::after {
  content: "+";
  font-size: 2em;
  line-height: 1;
  height: 100%;
}

.ewd-ufaq-post-active .ewd-ufaq-faq-toggle a::after {
  content: "-";
}

.ewd-ufaq-post-active .ewd-ufaq-faq-toggle a {
  color: var(--color-faq-hover);
}

.ewd-ufaq-post-active .ewd-ufaq-post-margin-symbol span::before {
  background-color: var(--color-faq-hover);
}

.ewd-ufaq-faqs .ewd-ufaq-faq-body {
  padding: 0.5em;
}

.ewd-ufaq-faqs .ewd-ufaq-faq-post {
  background-color: var(--bs-white);
  border-radius: 0.5em;
  padding: 0.5em 1em;
}

.ewd-ufaq-faqs .ewd-ufaq-faq-post p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .faq .entry-content h2 {
    margin: 0 auto 30px;
    font-size: 1.7rem;
    padding: 0.2em 4em;
  }

  .ewd-ufaq-faq-list {
    margin-bottom: 80px;
  }

  .ewd-ufaq-faqs {
    grid-gap: 15px;
  }

  .ewd-ufaq-faq-toggle a {
    padding: 10px 20px;
  }

  .ewd-ufaq-faqs .ewd-ufaq-faq-body {
    padding: 10px 20px;
  }

  .ewd-ufaq-faqs .ewd-ufaq-faq-post {
    padding: 10px 25px;
  }
}

/* ===========================================
  Sub Page：Contact
============================================*/
.wpcf7 {
  background-color: var(--color-form-bg);
  max-width: 760px;
  margin: 1em calc((100% - 100vw) / 2);
  padding: 2em;
  position: relative;
  border-radius: 0.5em;
}

.wpcf7 .form-label {
  display: block;
}

.wpcf7 .form-control-lg {
  font-size: 1.6rem;
  padding: 0.5rem 1rem;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

.wpcf7 input[type="submit"] {
  width: 20em;
  max-width: 100%;
  padding: 1em;
  margin: 0 auto;
  display: block;
  border-radius: 0.5em;
  font-size: inherit;
}

.wpcf7 input[type="submit"]:not(:disabled) {
  background-color: var(--color-form-btn);
  color: var(--bs-white);
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: var(--bs-danger);
  background-color: var(--bs-danger);
  color: var(--bs-white);
}

@media (min-width: 768px) {
  .wpcf7 {
    margin: 2em auto;
  }

  .wpcf7 input[type="submit"] {
    font-size: 1.2em;
  }
}

@media (min-width: 992px) {
  .wpcf7 {
    padding: 45px 70px;
  }
}

/* ===========================================
  Sub Page：Privacy Policy
============================================*/
.privacy-policy .entry-content {
  max-width: 960px;
  margin: 0 auto;
}

.privacy-policy .entry-content dl {
  margin-bottom: 1.5em;
}

.privacy-policy .entry-content dd {
  margin: 0;
}

.privacy-policy .entry-content ol,
.privacy-policy .entry-content ul {
  padding-left: 0;
  margin-left: 1em;
}

/* ===========================================
  Sub Page：Transactions Law
============================================*/
.transactions-law .entry-content h2 {
  text-align: center;
}

.table--law {
  color: inherit;
  border-color: var(--color-table-law);
  max-width: 900px;
  margin: 0 auto;
}

.table--law th,
.table--law td {
  padding: 0.5em;
  display: block;
}

.table--law th {
  color: var(--bs-white);
  background-color: var(--color-table-law);
  text-align: center;
  font-weight: 500;
  vertical-align: top;
}

@media (min-width: 992px) {
  .transactions-law .entry-content h2 {
    font-size: 1.7rem;
  }

  .table--law {
    margin-top: 40px;
    margin-bottom: 80px;
  }

  .table--law th,
  .table--law td {
    display: table-cell;
    padding: 1em;
  }

  .table--law th {
    border-bottom: 1px solid var(--bs-white);
    width: 270px;
  }

  .table--law tr:last-child th {
    border-bottom-color: var(--color-table-law);
  }
}

/* ===========================================
  Sub Page：Company
============================================*/
.table--company {
  margin: 25px auto 50px;
  max-width: 900px;
  color: inherit;
  border-color: transparent;
}

.table--company th,
.table--company td {
  display: block;
  padding: 0.5em;
}

.table--company th {
  color: var(--bs-white);
  background-color: var(--color-dark);
  text-align: center;
  font-weight: 500;
  vertical-align: top;
}

.table--company td {
  background-color: #eeeeee;
}

@media (min-width: 992px) {
  .table--company {
    margin-top: 10px;
  }

  .table--company th,
  .table--company td {
    display: table-cell;
    padding: 1em;
  }

  .table--company th,
  .table--company td {
    border-bottom: 2px solid var(--bs-white);
  }

  .table--company tr:last-child th {
    border-bottom-color: var(--color-dark);
  }
}

/* ===========================================
  Sub Pagei：Salon
============================================*/
.salon__lead {
  text-align: center;
}

.salon__list {
}

.salon__item {
  padding: 40px 0;
}

.salon__item + .salon__item {
  border-top: 1px solid;
}

.salon .salon__title {
  background-image: linear-gradient(-45deg, #e4e4e4 25%, transparent 25%, transparent 50%, #e4e4e4 50%, #e4e4e4 75%, transparent 75%, transparent);
  background-size: 0.6rem 0.6rem;
  padding: 6px;
  margin: 0 auto 30px;
  text-transform: inherit;
}

.salon__title span {
  text-align: center;
  background-color: #e4e4e4;
  position: relative;
  padding: 0.5em 1em 0.2em;
  font-family: "Galada", cursive !important;
  font-size: 160%;
  display: block;
}

.salon__title span::before,
.salon__title span::after {
  content: "";
  width: 6px;
  height: 1.3em;
  background-color: var(--color-text);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.salon__title span::before {
  left: 0.5em;
}

.salon__title span::after {
  right: 0.5em;
}

.salon__gallery {
  display: flex;
  flex-wrap: wrap;
  --gap: 10px;
  grid-gap: var(--gap);
  margin-bottom: 30px;
}

.salon__imgBox {
  width: calc((100% - 3 * var(--gap)) / 4);
  transition: 0.3s;
}

.salon__imgBox.active {
  opacity: 0.5;
}

.salon__imgBox > img {
  width: 100%;
}

.salon__imgBox--1 {
  width: 100%;
}

.salon__info {
  margin-bottom: 15px;
}

.salon__info tr {
  border-bottom: 1px dashed;
}

.salon__info th,
.salon__info td {
  padding: 1em 0 0 0;
}

.salon__info th {
  width: 6em;
}

.salon__info td {
}

.salon__description {
}

@media (min-width: 992px) {
  .salon__lead {
    font-size: 110%;
    margin-bottom: 10px;
  }

  .salon__list {
  }

  .salon__item {
    padding: 80px 0;
  }

  .salon .salon__title {
    width: fit-content;
  }

  .salon .salon__title span {
    padding-left: 4em;
    padding-right: 4em;
    font-size: 200%;
  }

  .salon__item .row > * {
    --bs-gutter-x: 30px;
  }
}

/* ===========================================
  Blog
============================================*/
.blog #main {
  background-color: rgb(249, 249, 249);
}

.blog #contentwrapper {
  width: calc(100% - 12px);
}

/* post list */
.blog article.hentry {
  background-color: var(--bs-white);
  border-bottom: none;
  border-radius: 0.5rem;
  margin: 0 0 15px;
  padding: 15px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.blog article.hentry:last-child {
  margin-bottom: 0;
}

.blog .entry-title {
  text-transform: none;
}

.blog .entry-title a {
  color: var(--color-key);
}

.blog .entry-header {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 20px;
}

.single .byline {
  display: none;
}

.blog .entry-content h2 {
  color: var(--bs-white);
  background-color: var(--color-key);
  font-weight: normal;
  padding: 0.5em;
  text-transform: none;
}

.blog .entry-content h3 {
  background-image: linear-gradient(180deg, #fff 75%, var(--color-key) 75%);
  font-weight: 500;
  padding: 0 0 0.5em 0;
  margin: 40px 0 20px 0;
}

/* Related Posts */
.yarpp-related .yarpp-thumbnail-title {
  margin: 0;
  padding: 7px;
  font-size: 80%;
  max-height: none;
}

.yarpp-thumbnails-horizontal .yarpp-thumbnail {
  margin: 0;
  padding: 5px;
  height: auto;
}

.yarpp-thumbnail > img,
.yarpp-thumbnail-default {
  margin: 0;
  padding: 0;
}

.yarpp-thumbnails-horizontal {
  display: flex;
  grid-gap: 5px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .blog #contentwrapper {
    display: flex;
    justify-content: space-between;
    grid-gap: 40px;
  }

  .blog #primary {
    flex: 1 1 100%;
  }

  .blog #secondary {
    flex: 0 0 240px;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .blog article.hentry {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .blog .entry-header {
    margin-bottom: 45px;
  }

  .blog .entry-title {
    font-size: 1.8em;
  }

  .entry-header .entry-meta {
    display: block;
    margin-top: 0;
    text-align: left;
  }

  .blog .entry-content h2 {
    font-size: 1.2em;
  }
}

/* ===========================================
  Sub Page：Wholesale
============================================*/
.wholesale .elementor-heading-title {
  margin-top: 0;
}

.wholesale .entry-content {
  font-size: 120%;
}

.wholesale .entry-content ul {
  padding-left: 0;
  margin-left: 1em;
}

.wholesale .text-larger {
  font-size: 120%;
}

.wholesale .elementor-image-box-title {
  color: #fff;
  background-color: #52c2d0;
  border: 1px solid #52c2d0;
  width: fit-content;
  padding: 0 2em;
  margin: auto;
}

.wholesale .elementor-image-box-title::after {
  content: ">";
  margin-left: 0.5em;
}

.wholesale .elementor-image-box-title:hover {
  background-color: #fff;
  color: #52c2d0;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.1));
}

.wholesale .elementor-image-box-title a {
  text-decoration: none;
}

.wholesale .mesh-red {
  background: linear-gradient(-45deg, #f26261 25%, #e5342e 25%, #e5342e 50%, #f26261 50%, #f26261 75%, #e5342e 75%, #e5342e);
  background-size: 4px 4px;
  color: #fff;
  padding: 0.3em;
}

/* ===========================================
  Woocommerce
============================================*/
/* 商品一覧の価格を非表示 */
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  display: none;
}

/* ===========================================
  Sub Page：Product（商品ページ）
============================================*/

:is(.single-product) .entryheaderimg {
  margin-bottom: 25px;
}

:is(.single-product) .entryheaderimg .page-title {
  display: none;
}

:is(.single-product) #main {
  padding-top: 0;
}

:is(.woocommerce.single-product) .product::after {
  content: "";
  clear: both;
  display: block;
}

:is(.woocommerce.single-product) #contentwrapper {
  max-width: 1000px;
}

:is(.woocommerce.single-product .product) .product_title {
  margin-bottom: 1.5em;
}

:is(.woocommerce.single-product .product) .woocommerce-product-details__short-description {
  padding-top: 0;
}

:is(.woocommerce.single-product .product) .shopNav {
  margin: 0 auto 2em;
  max-width: 550px;
}

:is(.woocommerce.single-product .product) .shopNav__title {
  margin: 0 auto 1em;
  padding: 0 3em;
  font-size: 120%;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

:is(.woocommerce.single-product .product) .shopNav__title::before,
:is(.woocommerce.single-product .product) .shopNav__title::after {
  content: "";
  height: 3px;
  width: 1em;
  background-color: #666;
  margin: 0 0.5em;
}

:is(.woocommerce.single-product .product) .shopNav img {
  transition: 0.3s;
}

:is(.woocommerce.single-product .product) .shopNav img:hover {
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

:is(.woocommerce.single-product .product) .price {
  display: none;
}

:is(.woocommerce.single-product .product) .cart {
  display: none;
}

:is(.woocommerce.single-product .product) .product_meta {
  display: none;
}

:is(.woocommerce.single-product .product) .woocommerce-tabs .wc-tabs {
  display: none;
}

:is(.woocommerce.single-product .product) .woocommerce-tabs .panel {
  padding-top: 0;
  padding-bottom: 0;
  border-top: none;
}

:is(.woocommerce.single-product .product) .related {
  display: none;
}

@media (min-width: 769px) {
  :is(.woocommerce.single-product .product) .images {
    width: 34%;
    position: sticky;
    top: 0;
  }

  :is(.woocommerce.single-product .product) .summary {
    width: 63%;
  }
}
