@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&family=Mochiy+Pop+P+One&display=swap');
:root {
  --main-color :#c69c6d;
  --main-color-d :#8c6239;
}
html {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  height: 100%;
  font-size: 0.67vw;
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0 0 2rem 0;
  font-family: "M PLUS 1", sans-serif;
  color: #1e2123;
  font-size: 1.6rem;
  font-feature-settings: "palt" 1;
}
@media (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}
label {
  width: auto;
  max-width: auto;
}
p {
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Mochiy Pop P One", sans-serif;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.1rem;
}
h3 {
  font-size: 2.1rem;
}
h4 {
  font-size: 1.8rem;
}
h5 {
  font-size: 1.6rem;
}
a {
  color: inherit;
  text-decoration: underline;
}
a:link {
  color: inherit;
  text-decoration: underline;
}
a:visited {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:active {
  color: rgba(71, 71, 71, 1.00);
}
a img {
  transition: 0.5s;
}
a:hover img {
  opacity: 0.8;
  transition: 0.5s;
}
@media screen and (min-width:598px) {
  a.tel_link {
    color: inherit;
    text-decoration: none;    
  }
}
.hover_img {
  overflow: hidden;
  display: block;
}
.hover_img img{
 transition:1s all;
}
.hover_img img:hover{
  transform:scale(1.04,1.04);
  transition:0.4s all;
}
/*-form
-------------------------------------------------------------------*/
 
.form_small {
  width: 5rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(247,247,247,1.00);
}
.form_middle {
  width: 1.2rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,1.00);
}
.form_long {
  width: 26rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,1.00);
}
input[type="text"],input[type="email"],input[type="tel"],textarea {
  box-shadow: none;
  border: none;
  padding: 1.5rem;
  border-radius: 1rem;
  width: 100%;
  background-color: rgba(255,255,255,1.00);
}
/*  header#globalHeader　----------------------------------------------------*/
header#globalHeader {
}
ul.navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.navbar-nav li {
  list-style: none;
  display: inline;
  padding: 0;
  margin: 0;
}
ul.navbar-nav li a {
  text-decoration: none;
  color: #333333;
}
header#globalHeader.fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
  background-color: #FFFFFF;
  animation: DownAnime 1s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.navbar-brand {
  position: relative;
  z-index: 9999;
  margin-block: 10px;
}
.fixed .navbar-brand img {
  width: 40px;
  height: auto;
}
@media (max-width: 690px) {
  .navbar-brand img {
    width: 50px;
    height: auto;
  }
}
/*トグルボタン----------------------------------*/
.toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: transparent;
  border-style: none;
  z-index: 9999;
}
.toggle:focus {
  outline: none;
}
.pc {
  display: none;
}
@media (min-width: 991px) {

  .smp {
    display: none;
  }
  .pc {
    display: inline-block;
  }
}

  .navbar-collapse {
    width: 100%;
    height: 100vh;
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9998;
  }
  ul.navbar-nav {
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  ul.navbar-nav li {
    display: block;
    margin: 0 0 2rem 0;
    margin-left: 2rem;
  }

.navbar-toggle-anime, .navbar-toggle-anime span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.navbar-toggle-anime {
  position: relative;
  width: 26px;
  height: 26px;
}
.navbar-toggle-anime span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111111;
  border-radius: 4px;
}
.navbar-toggle-anime span:nth-of-type(1) {
  top: 0;
}
.navbar-toggle-anime span:nth-of-type(2) {
  top: 10px;
}
.navbar-toggle-anime span:nth-of-type(3) {
  bottom: 5px;
}
.navbar-toggle-anime.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.navbar-toggle-anime.active span:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggle-anime.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(315deg);
  transform: translateY(-9px) rotate(315deg);
}

/*  footer#globalFooter　----------------------------------------------------*/
footer#globalFooter {
  width: 98%;
  padding: 2.5rem;
  background-color:#E2CDB6;
  margin: 2rem 2rem 0;
  margin-inline: auto;
  border-radius: 5rem;
  position: relative;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flogo {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.flogo .mark {
  margin-bottom: 3rem;
}
footer#globalFooter nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer#globalFooter nav ul li {
  list-style: none;
  display: block;
  padding-block: 0.5rem;
  margin: 0;
  position: relative;
}
footer#globalFooter nav ul li a {
  text-decoration: none;
}
footer#globalFooter nav ul li a i {
  margin-right: 0.6rem;
}
footer#globalFooter nav ul li a:hover {
  color: var(--main-color);
}
.page-top {
  right: -50px;
  bottom: 50px;
  position: fixed;
  z-index: 999;
}
.page-top a {
  border-radius: 10rem;
  background-color: var(--main-color-d);
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  display:block;
  position: relative;
}
.page-top a:after {
  content: "";
  display: block;
  background: #ffffff;
  height: calc(tan(60deg) * 60px / 2);
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%,-50%);
}

@media (max-width: 768px) {
  .footer .roku {
    width: 200px;
  }
  .footer .roku img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 690px) {
  footer#globalFooter {
  width: 92%;
}
  .footer {
    flex-direction: column;
  }
  .footer .roku {
    width: 100%;
  }
  .flogo {
    position: static;
    top: auto;
    left: auto;
    transform: none;
  }
  footer#globalFooter nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-block: 3rem;
  }
  footer#globalFooter nav ul li {
    list-style: none;
    display: block;
    padding-block: 0.5rem;
    margin: 0 1.5rem;
    position: relative;
  }
}

/* copyright　----------------------------------------------------*/
footer#globalFooter p.copyright {
  text-align: center;
  color: var(--main-color);
  font-size: 1.2rem;
  font-weight: 700;
}

/* common ----------------------------------------------------*/
.contentSec {
  margin-bottom: 15rem;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-start {
  justify-content: flex-start;
}
.flex-center {
  justify-content:center;
}
.flex-end {
  justify-content:flex-end;
}
.flex-around {
  justify-content:space-around;
}
.center_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width:767px) {
  .flex {
    display: block;
  }
  .contentSec {
    margin-bottom: 5rem;
  }
}

.wp-pagenavi {
  clear: both;
    margin-block: 4rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.wp-pagenavi .pages {
    margin-right: 0.5rem
}
.wp-pagenavi a.nextpostslink {
    color: #111111;
    text-decoration: none;
    margin-left: 0.5rem
}
.wp-pagenavi a.previouspostslink {
    color: #111111;
    text-decoration: none;
    margin-inline: 0.5rem;
}
.wp-pagenavi a.page, .wp-pagenavi span.current {
  text-decoration: none;
  border: 1px solid #BFBFBF;
  margin-inline: 3px;
    border-radius: 100px;
    height: 30px;
    width: 30px;
}

.wp-pagenavi a, .wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi span.current {
  font-weight: 700;
}

.title {}
.title.center {
  text-align: center;
}
.title span {
  font-family: "Mochiy Pop P One", sans-serif;
  color: #8c6239;
  display: block;
  margin-bottom: 0.6rem;
  font-size: 2.1rem;
}
.title h2 {
  font-size: 3rem;
}
.home .title {
  margin-bottom: 6rem;
}
@media (max-width: 690px) {
  .home .title {
    margin-bottom: 3rem;
  }
  .title span {
    font-size: 1.8rem;
  }
  .title h2 {
    font-size: 2rem;
  }
}

.anime-left {
  position: fixed;
  top: 30%;
  left: -5rem;
  z-index: 0;
  animation: ashi-left 0.2s forwards;
  animation-timeline: scroll();
}
.anime-right {
  position: fixed;
  top: 50%;
  right: -15rem;
  z-index: 0;
  animation: ashi-left 0.2s forwards;
  animation-timeline: scroll();
}
@keyframes ashi-left{
  0% {
  transform: rotate(-20deg);
  }
  20% {
  transform: rotate(20deg);
  }
  40% {
  transform: rotate(-20deg);
  }
  60% {
  transform: rotate(20deg);
  }
  80% {
  transform: rotate(-20deg);
  }
  100% {
  transform: rotate(20deg);
  }
}

header {
  position: relative;
  z-index: 2;
}
main,footer {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}
.titleWrap .row {
  align-items: center;
}
.titleWrap p {

}
/*  ------------------------------------------------------------------------------*/
/* BUTTON */

.button a {
  display: inline-block;
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
  background-color: var(--main-color);
  color: #fff;
  text-decoration: none!important;
  font-weight: bold;
  padding: 2rem 5rem;
  border-radius: 100px;
  transition: .4s;
  position: relative;
}

.button a:hover {
  background-color: var(--main-color-d);
  color: #FFF;
}
.button a:before {
  content: "";
  background-image: url(../images/share/icon-button.svg);
  background-size: 32px 29px;
  width: 32px;
  height: 29px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.button a.icon:before {
  display: none;
}
.button a.icon {
  display: flex;
  padding: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}
/*　privacy-------------------------------------------------------------------------*/
.privacy {
  text-align: left;
  padding-bottom: 6rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.privacy h2 {
  font-size: 2rem;
  margin-top: 5rem;
  margin-bottom: 1.5rem;
}
.privacy h3 {
  font-size:1.8rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h4 {
  font-size: 1.7rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h5 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h6 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy p {
  margin-bottom: 1.5rem;
}
.privacy ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  line-height: 1.6;
}
.privacy ul li{
  margin-bottom: 0.7rem;
}
.privacy ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  line-height: 1.6;
}
.privacy ol li {
  margin-bottom: 0.7rem;
}
.privacy a {
  text-decoration: underline;
}

/***********
 * お問い合わせ
 * *********/
.contact {
  padding-block-end: 5rem;
}
.contact p {
  text-align: center;
}
/
.contact__mc {
  text-align: center;
  border-bottom: 1px solid #939393;
  padding-bottom: 10rem;
}
.contact_tel {
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 7rem;
  border-bottom: 1px solid #939393;
}
.contact_tel h2 {
  margin-bottom: 2rem;
}
.contact_tel .tel {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  padding-block: 0;
  font-size: 4rem;
  line-height: 1;
}
.contact_tel .tel a {
  text-decoration: none;
}
.contact_tel .tel i {
  margin-inline-end: 1rem;
}
.contact_tel .tel i img {
  margin-block-start: -0.8rem;
}
.form {
  padding-top: 5rem;
}
.form h2 {
  text-align: center;
}
.form p {
  margin-bottom: 0;
}
.form_title {
  margin-block-end: 3rem;
}

.form__inner {
  width: 100%;
  max-width: 73rem;
  margin-right: auto;
  margin-left: auto;
}
.form__inner dl {
  display: flex;
  margin-bottom: 2.3rem;
  text-align: left;
  align-items: center;
}
.form__inner dl dt {
  width: 25%;
  font-size: 1.3rem;
}
.form__inner span.red {
  color: red;
}
.form__inner dl dd {
  width: 75%;
}
.form__inner dl dd #preview {
  width: 100%;
  height: auto;
}
.form__inner dl dd a {
  text-decoration: underline;
}
.ex p {
  text-align: left;
  font-size: 1.3rem;
  margin-block-end: 0.5rem;
}
.confirm .form__inner dl {
  text-align: left;
  border-bottom: 1px solid #cccccc;
}
.form.confirm p {
text-align: left;
}
.grecaptcha-badge { visibility: hidden; }

.form.finish p {
 margin-block-end: 3rem;
}
.confirm .btn p {
  display: flex;
  justify-content: center;
}
.form__inner .btn {
  padding-top: 4rem;
}
.form__inner .btn input {
  background: var(--gold-gra);
  width: 26rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #111111;
  text-shadow: 1px 1px 1px #ffffff;
  border-radius: 6rem;
  margin-block-end: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.6s;
  background-color: #ffffff;
}
.form__inner .btn input:hover {
  background-position: right center;
  background-size: 200%;
  transition: 0.6s;
}
input[type="text"],input[type="tel"],input[type="email"],input[type="submit"],textarea {
  width: 100%;
  box-shadow: none;
  border: 1px solid #dfdfdf;
  background-color: #F4F4F4;
  border-radius: 0;
  padding:1rem 1rem;
  border-radius: 8px;
}
.finish__inner {
  text-align: left;
}
.finish__inner h2 {
  font-family: var(--title-font);
  font-size: 2.4rem;
  margin-block-end: 4rem;
  text-align: center;
}
.finish__inner p {
  margin-block-end: 2rem;
}
#formWrap {}
#formWrap dl {
 border-bottom: 1px solid #cccccc;
}
#formWrap dt {
  width: 28%;
}
#formWrap dd {
  width: 72%;
}
/* home ------------------------------------------------------------------------------*/
.mv {
  opacity: 0;
  animation: fadein 6s 0.3s forwards;
}
@keyframes fadein {
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}
.homeAbout {}
.homeAbout h3 {
  margin-bottom: 2rem;
}
.homeAbout p {
  margin-bottom: 4rem;
}
.homeAbout .col-sm-7 {
  margin-bottom: 3rem;
}
.homeAbout .anime {
  opacity: 0;
}
.homeAbout .anime.active {
  opacity: 1;
  animation: run 3s forwards;
}
@keyframes run {
  0% {
  transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.products {

}
.allitem {
  margin-block: 2rem 3rem;
}
.products__box {}
.products__box picture img {
  border-radius: 4rem;
  width: 100%;
  height: auto;
}
.products__box-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 1.5rem 1rem;
}
.products__box-name h3 {
  font-size: 2rem;
}
.products__box-name p {
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
}
.products__box-name.recommend {
  display: block;
}
.products__box .button {
  padding-inline: 1.5rem;
  margin-block: 1rem 3rem;
}
.products__box .button a {
  padding-block: 1.5rem;
}
.products .button.center {
  display: block;
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
}
.news {}
.news .img {}
.news ul {
  list-style: none;
  padding: 0;
}
.news ul li {
  border-radius: 16px;
}
.news ul li .day {
  display: inline-block;
  padding: 2rem 3rem 2rem 1rem;
  background-image: url(../images/share/icon-topics.svg);
  background-repeat: no-repeat;
  background-position: center center;
  font-weight: 700;
}
.news ul li .ttle {
  display: inline-block;
   padding: 2rem 1rem;
 }
.news ul li:nth-of-type(odd) {
  background-color: #F2f2f2;
}
.news ul li a {
  text-decoration: none;
}

/**　ろくのごはんについて
 * *****************************************************************************/
.aboutBlock {}
.aboutBlock .row {
  margin-bottom: 8rem;
}
.aboutBlock img {
  margin-bottom: 3rem;
}
.aboutBlock h3 {
font-size: 2.1rem;
margin-bottom: 2rem;
}
.aboutBlock p {
margin-bottom: 1.5rem;
}
.aboutRoku {
  background-color: var(--main-color);
  border-radius: 6rem;
  padding: 4rem 3rem;
  color: #ffffff;
}

/** 特定商法に基づく表記 
 * **********************************************************************/
.tokusho {}
.tokusho table {
  width: 100%;
}
.tokusho table th,
.tokusho table td {
  border: 1px solid #c6c6c6;
  padding: 2rem;
  font-weight: 400;
}
/** 商品詳細
 * **********************************************************************/
.product_title {
  margin-bottom: 1.5rem;
}
.price {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
}
.woocommerce-product-details__short-description {
  margin-bottom: 2rem;
}
.woocommerce div.product form.cart div.quantity {
  margin-right: 1.5rem;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
  background-color: var(--main-color);
  border-radius: 10rem;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover {
  background-color: var(--main-color-d);
}
.tagged_as {
  display: block;
}
.posted_in {
  display: block;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    min-height: 3em;
    background-color: var(--main-color);
    border: none;
    border-radius: 16px;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}
.breadcrumb__list {
  display: none;
}
.woocommerce-product-gallery__image a {
  cursor: default;
  pointer-events: none; /* クリック自体を無効化 */
}
.woocommerce table.shop_table {
  background-color: #fff;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    max-width: 100%;
    padding: 0;
    background-color: #fff;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    max-width: 100%;
    padding: 0;
    background-color: #fff;
}
.woocommerce ul.order_details {
  margin: 2rem 0 3em;
  list-style: none;
  padding: 0;
  width: 100%;
}
.woocommerce-product-details__description {
  margin-block: 2rem;
}
.woocommerce-product-details__description p {
  margin-bottom: 1.6rem;
}
.woocommerce ul.order_details li {
  float: none;
  margin-bottom: 1rem;
}
.package {
  clear: both;
  padding-top: 5rem;
}
.package h3 {
  margin-bottom: 1.5rem;
}
.package p {
  margin-bottom: 2rem;
}
.related {
  margin-top: 3rem;
}
.related h2 {
  margin-bottom: 1.5rem;
}
.free {
  width: 100%;
  background-color: var(--main-color);
  color: #ffffff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  padding-block: 1rem;
}
.home .free {
  display: none;
}
.more_pay a {
  display: inline-block;
  width: 100%;
  max-width: 40rem;
  font-size: 1.4rem;
  text-align: center;
  background-color: var(--main-color);
  color: #fff;
  text-decoration: none!important;
  font-weight: bold;
  padding: 1.5rem 0;
  border-radius: 100px;
  transition: .4s;
  position: relative;
}

.more_pay a:hover {
  background-color: var(--main-color-d);
  color: #FFF;
}
.wc-block-cart__payment-options {
  margin: 0 0 2rem 0;
}
@container (max-width: 699px) {
    .wc-block-cart .wc-block-components-sidebar .wc-block-cart__totals-title, .wc-block-cart-item__total .wc-block-components-sale-badge {
        display: block;
        margin-block: 3rem 1rem;
    }
    .wc-block-components-main {
      margin-top: 3rem;
    }
}
.row {
  clear: both;
}
#order-fields {
  display: none;
}
ul.woocommerce-order-overview + h2 {
  display: none;
}
.wp-block-button__link {
  background-color: var(--main-color);
  color: #ffffff !important;
  text-decoration: none !important;
}
h2.wp-block-heading {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}
/** お知らせ
 * ***********************************************************************/
 .newsContents {}
 .newsContents h2 {
  margin-block: 2rem 1rem;
 }
  .newsContents .day {
    text-align: right;
    font-size:1.2rem;
    font-weight: 600;
    color: #666666;
  }
 .newsContents__inner {}
 .newsContents__inner p {
  margin-bottom: 1.6rem;
 }
 .newsContents__inner .nav {
  margin-top: 3rem;
 }

/**　お問い合わせ
 * **************************************************************************/
 #wpcf7cpcnf {
  margin-block: 3rem;
 }
 #wpcf7cpcnf table {
  width: 100%;
 }
  #wpcf7cpcnf table th,
   #wpcf7cpcnf table td {
    padding: 2.5rem;
    border: 1px solid #999999;
   }
   div.wpcf7cp-btns {
      margin-top: 2em;
      display: flex;
      justify-content: center;
  }
  div.wpcf7cp-btns button {
        border: none;
        padding: 1rem 2rem;
        border-radius: 15px;
        
  }
  div.wpcf7cp-btns button:last-child {
    background-color: var(--main-color);
    color: #ffffff;
    font-weight: 700
}
/*　Media Queries　-------------------------------------------------------*/
@media (max-width:1280px) {}
@media (max-width:1120px) {}
@media (max-width:919px) {}
@media (max-width:767px) {
  /**********
   * お問い合わせ
   * *************/
  .contact__page {
    padding-top: 3rem;
  }
  .contact__mc {
    padding-bottom: 5rem;
  }
  .contact_tel {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .contact_tel h2 {
    font-size: 2rem;
    margin-block-end: 1rem;
  }
  .contact_tel .tel {
    font-family: "Arial";
    padding-block: 0;
    font-size: 2.4rem;
  }
  .contact_tel .tel img {
    width: 2.3rem;
    height: auto;
  }
  .form {
    padding-top: 5rem;
  }
  .form h2 {
  font-size: 2rem;
  margin-block-end: 2rem;
  }
  .contact__page h2 {
    margin-bottom: 2rem;
  }
  .contact__page .form h2 {
    margin-bottom: 1rem;
  }
  .form__inner dl {
    display: block;
    margin-bottom: 2rem;
  }
  .form__inner dl dt {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .form__inner dl dt sup {
    color: red;
  }
  .form__inner dl dd {
    width: 100%;
  }
  .form__inner dl dd.file {
    text-align: center;
    padding-top: 3rem;
  }
  .form__inner dl dd #preview {
    width: 100%;
    height: auto;
    padding: 2rem;
  }
  .form__inner .btn {
    padding-top: 2rem;
  }
  #formWrap dt {
    width: 100%;
    text-align: left;
  }
  #formWrap dd {
    width: 100%;
  }
  a.privacy {
    display: block;
    margin: 0.5rem auto;
  }
  .privacypolicy h2 {
    font-size: 2.4rem;
  }
  .cookie__block h2 {
    font-size: 2.4rem;
  }
}
@media (max-width:690px) {
  .homeAbout h3 br {
    display: none;
  }
  .aboutRoku {
    border-radius: 0;
  }
  .tokusho table th,
  .tokusho table td {
    display: block;
    width: 100%;
  }
  .tokusho table th {
    background-color: #f5f5f5;
    padding: 1rem;
    margin-top: -1px;
  }
  .tokusho table td {
    margin-top: -1px;
    padding: 1rem;
    background-color: #fff;
  }
  .anime-left img, 
  .anime-right img {
    zoom: 0.5;
  }
  .woocommerce div.product form.cart .button {
    float: none;
    display: block ;
    width: 100%;
    margin-block: 2rem;
    padding-block: 1.5rem;
  }
  .woocommerce .quantity .qty {
    width: 100%;
    margin: 0 auto 0px auto;
  }
  .woocommerce div.product form.cart div.quantity {
    float: none;
    margin: 0;
  }
}
@media (max-width:414px) {}
@media (max-width:320px) {}