@charset "utf-8";

/* << INDEX >> ----------------------------------------------------------------
*
* @ 共通
* @ トップページ
* @ サイトマップ
* @ 404
* @ 検索
* @ 投稿｜詳細
* @ アーカイブ
*
* -------------------------------------------------------------------------- */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 共通
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* @ カラム分割
---------------------------------------------------------------------------- */
.flex_cols {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
/* >>>> 2カラム分割 */
@media screen and (min-width: 481px) {
  .col2 {
    width: calc(((100% - 15px) / 2) - 0.1px);
    margin: 0 15px 15px 0;
  }
  .col2:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .col2 {
    width: 100%;
    margin: 0 auto 15px;
  }
}

/* >>>> 3カラム分割 */
@media screen and (min-width: 769px) {
  .col3 {
    width: calc(((100% - 15px * 2) / 3) - 0.1px);
    margin: 0 15px 15px 0;
  }
  .col3:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 481px) and ( max-width: 768px) {
  .col3 {
    width: calc(((100% - 15px) / 2) - 0.1px);
    margin: 0 15px 15px 0;
  }
  .col3:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .col3 {
    width: 100%;
    margin: 0 auto 15px;
  }
}

/* >>>> 4カラム分割 */
@media screen and (min-width: 769px) {
  .col4 {
    width: calc(((100% - 15px * 3) / 4) - 0.1px);
    margin: 0 15px 15px 0;
  }
  .col4:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 481px) and ( max-width: 768px) {
  .col4 {
    width: calc(((100% - 15px) / 2) - 0.1px);
    margin: 0 15px 15px 0;
  }
  .col4:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .col4 {
    width: 100%;
    margin: 0 auto 15px;
  }
}

/* @ 画像キャプション
---------------------------------------------------------------------------- */
.wp-caption {
  width: auto !important;
}
.wp-caption .wp-caption-text {
  margin: 5px 0;
  text-align: center;
}

/* @ その他
---------------------------------------------------------------------------- */
.wp-pagenavi {
  clear: both;
}
.c-red {
  color: #c33;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.f20 {
  font-size: 1.25rem;
}
.txtC {
  text-align: center;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ トップページ
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
  .mv figure img.pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .mv figure img.sp {
    display: none;
  }
}

.item-wrap {
  position: relative;
  margin-top: 80px;
  padding-bottom: 180px;
  background: url("../img/item-bg.webp") repeat-y top center / 100%;
  border-radius: 700px / 245px;
}
@media screen and (max-width: 640px) {
  .item-wrap {
    margin-top: 80px;
    overflow: hidden;
  }
}
@media screen and (max-width: 480px) {
  .item-wrap {
    padding-bottom: 100px;
  }
}
.item-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  display: block;
  max-width: min(48.697vw, 935px);
  width: 100%;
  min-width: 500px;
  height: 230px;
  background: #fff;
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.item-wrap .item-deco {
  position: absolute;
}
.item-wrap .item-deco.deco01 {
  top: 23%;
  left: 0;
  width: min(13.046vw, 250.5px);
}
.item-wrap .item-deco.deco02 {
  top: 48%;
  right: 0;
  width: min(6.692vw, 128.5px);
}
.item-wrap .item-deco.deco03 {
  top: 50%;
  left: 0;
  width: min(10.234vw, 196.5px);
}
.item-wrap .item-deco.deco04 {
  top: 83%;
  right: 0;
  width: min(9.635vw, 185px);
}
.item-wrap .wrap {
  position: relative;
  z-index: 1;
}
.item-wrap .wrap h2.order {
  margin-top: 0;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 480px) {
  .card-container {
    grid-template-columns: 1fr;
  }
}
.tea .card-container.product-column {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}
@media screen and (max-width: 480px) {
  .tea .card-container.product-column {
    grid-template-columns: 1fr;
  }
}
.card-container .card input {
  width: 80px;
  outline: none;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 5px;
}
.card-container .card .info {
  margin-top: 28px;
}
.card-container .card .info span {
  display: block;
}
.card-container .card .info span.item_price {
  margin-top: 4px;
}
.total {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .total {
    margin-top: 60px;
  }
}
.total p {
  display: inline-block;
  margin: 0;
  padding: 30px 40px;
  max-width: 580px;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  text-align: left;
  font-size: 1.5rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 480px) {
  .total p {
    padding: 25px 15px;
    font-size: 1.25rem;
  }
}
.total p span {
  padding: 0 10px;
  border-bottom: 1px solid #444;
}


.card-container.special-column {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}
@media screen and (max-width: 480px) {
  .card-container.special-column {
    grid-template-columns: 1fr;
  }
}
.card-container.special-column .card {
  position: relative;
}
.card-container.special-column .card:nth-of-type(2) {
  padding-top: 41px;
}
@media screen and (max-width: 480px) {
  .card-container.special-column .card:nth-of-type(2) {
    padding-top: 0;
  }
}
.card-container.special-column .card .cnt {
  display: grid;
  grid-template-columns: 55% 40%;
  gap: 5%;
  background: url("../img/item-monthly_center.webp") no-repeat top center / 100% 100%;
  padding: 30px 45px 15px;
}
@media screen and (max-width: 480px) {
  .card-container.special-column .card .cnt {
    display: flex;
    flex-direction: column;
    padding: 10px 45px 15px;
  }
}
@media screen and (max-width: 375px) {
  .card-container.special-column .card .cnt {
    display: flex;
    flex-direction: column;
    padding: 10px 25px 15px;
  }
}
.card-container.special-column .card:nth-of-type(2) .cnt {
  background-image: url("../img/item-kimagure_center.webp");
}
.card-container.special-column .card .cnt .sp-img {
  order: 1;
  margin-bottom: 20px;
}
@media screen and (min-width: 481px) {
  .card-container.special-column .card .cnt .sp-img {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .card-container.special-column .card .cnt .Lbox {
    order: 3;
  }
  .card-container.special-column .card .cnt .Lbox figure {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .card-container.special-column .card .cnt .Rbox {
    order: 2;
  }
}
.card-container.special-column .card .cnt .Rbox p {
  margin: 0 0 1em;
}
@media screen and (max-width: 480px) {
  .card-container.special-column .card .cnt .Rbox p br {
    display: none;
  }
}
.card-container.special-column .card .cnt .Rbox .instagram {
  margin-top: 30px;
  text-align: center;
}
.card-container.special-column .card .cnt .Rbox .instagram a {
  display: block;
  margin-top: 8px;
}
.card-container.special-column .card .under {
  margin-top: -2px;
}
.card-container.special-column .card .under img {
  vertical-align: top;
}

.card-container.product-column {
  margin-top: 48px;
}
.card-container.product-column .card {
  padding: 28px;
  border-radius: 6px;
  background: #fff;
}
@media screen and (max-width: 480px) {
  .card-container.product-column .card {
    padding: 20px;
  }
}
.card-container .card figure img {
  border-radius: 6px 73px;
}
.card-container.product-column .card .item_name {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.tea .card-container.product-column .card .item_name {
  margin-top: 0;
}
.card-container .card.unavailable .item_label {
  margin: 4px 0;
  text-align: right;
}
.card-container.special-column .card.unavailable .item_label {
  text-align: left;
}
.card-container .card.unavailable .item_label span {
  display: inline-block;
  padding: 2px 12px;
  background: #fb5730;
  border-radius: 50px;
  color: #fff;
}
.card-container.product-column .card .desc {
  margin: 8px 0 0;
}
.card-container.product-column .card .info-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
@media screen and (max-width: 480px) {
  .card-container.product-column .card .info-box {
    display: block;
  }
}
.card-container.product-column .card .info-box .item_price {
  margin: 0;
}
@media screen and (max-width: 480px) {
  .card-container.product-column .card .info-box .item_price {
    margin-bottom: 16px;
  }
}

section.category.tea {
  margin-top: 48px;
}
section.category.tea .catch-box {
  padding: 50px 90px 70px;
  background: #fff;
  border-radius: 6px;
}
@media screen and (max-width: 1200px) {
  section.category.tea .catch-box {
    padding: 48px;
  }
}
@media screen and (max-width: 480px) {
  section.category.tea .catch-box {
    padding: 20px;
  }
}
section.category.tea .catch-box .ttl {
  margin: 0 0 24px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  section.category.tea .catch-box .ttl span {
    display: inline-block;
    max-width: 400px;
  }
}
section.category.tea .catch-box .info {
  display: grid;
  align-items: center;
  grid-template-columns: 370px 1fr;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  section.category.tea .catch-box .info {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 480px) {
  section.category.tea .catch-box .info {
    gap: 20px;
  }
}
section.category.tea .catch-box .info .Lbox img {
  border-radius: 6px 73px;
}
section.category.tea .catch-box .info .Rbox p {
  margin: 0;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  section.category.tea .catch-box .info .Rbox p {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  section.category.tea .catch-box .info .Rbox p {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 1200px) {
  section.category.tea .catch-box .info .Rbox p br.none {
    display: none;
  }
}
section.category.tea .chart-box {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  section.category.tea .chart-box .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  section.category.tea .chart-box .sp {
    display: none;
  }
}

.order-deco01 {
  position: relative;
  margin-top: -18vw;
  background: url("../img/order-deco01.webp") no-repeat top right / contain;
  height: 47.395vw;
}
.order-deco01::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: min(7.395vw, 142.5px);
  height: min(11.5625vw, 222.5px);
  background: url("../img/order-deco01_2.webp") no-repeat center center / contain;
}
.order-box {
  position: relative;
}
.order-box::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  display: block;
  width: min(10.026vw, 192.5px);
  height: min(27.630vw, 530.5px);
  background: url("../img/order-box-deco01.webp") no-repeat center center / contain;
}
.order-box .wrap {
  position: relative;
  z-index: 1;
  background: #F6DEA5;
  /* 左上  右上  右下  左下 / 左上 右上 右下 左下 */
  border-radius: 700px 700px 50px 50px / 630px 630px 50px 50px;
}
@media screen and (max-width: 768px) {
  .order-box .wrap {
    border-radius: 700px 700px 50px 50px / 530px 530px 50px 50px;
  }
}
.order-box .wrap .order-inner {
  padding: 128px 100px;
}
@media screen and (max-width: 768px) {
  .order-box .wrap .order-inner {
    padding: 80px 0;
  }
}
.order-box .wrap .order-inner .order-ttl {
  display: flex;
  margin: 0 auto 60px;
  border-radius: 300px;
  background: #fff;
  max-width: 350px;
  width: 100%;
  aspect-ratio: 1 / 1;
}
@media screen and (max-width: 768px) {
  .order-box .wrap .order-inner .order-ttl {
    max-width: 300px;
  }
}
.order-box .wrap .order-inner .order-ttl h2 {
  margin: 0;
  width: 100%;
}
.order-box .wrap .order-inner .order-ttl h2::before {
  background-image: url("../img/h2_en_2.webp");
  max-width: 209px;
  aspect-ratio: 209 / 33;
}


.order-deco02 {
  position: relative;
  background: url("../img/order-deco02.webp") no-repeat top left / contain;
  height: 36.067vw;
}
.order-deco02::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: min(10.182vw, 195.5px);
  height: min(19.713vw, 378.5px);
  background: url("../img/order-deco02_2.webp") no-repeat center center / contain;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ サイトマップ
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.page-sitemaps .sitemaps-list {
  width: 48%;
  float: left;
  margin-left: 4%;
}
.page-sitemaps .sitemaps-list:first-child {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .page-sitemaps .sitemaps-list {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}
.page-sitemaps .sitemaps-list ul {
  padding: 0;
}
.page-sitemaps .sitemaps-list ul ul {
  padding-left: 1.5em;
}
.page-sitemaps .sitemaps-list li {
  list-style: none;
}
.page-sitemaps .sitemaps-list li a {
  display: block;
  padding: 0.5em;
  color: inherit;
  border-bottom: 1px dotted #ccc;
  text-decoration: none;
}
.page-sitemaps .sitemaps-list li a:hover {
  text-decoration: none;
  background-color: #f4f9fe;
}
.page-sitemaps .sitemaps-list li a:before {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: "\f105";
  margin-right: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 404
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* @ メッセージ
---------------------------------------------------------------------------- */
.error404 .er404-message {
  text-align: center;
}
.error404 .er404-message:before {
  display: block;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 140px;
  content: "\f071";
  color: #f66;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  .error404 .er404-message:before {
    font-size: 112px;
  }
}
.error404 .er404-message p:first-child {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  .error404 .er404-message p:first-child {
    font-size: 2.25em;
  }
}
.error404 .er404-message p:first-child span {
  font-size: 0.5em;
}

/* @ 検索フォーム
---------------------------------------------------------------------------- */
#er404-search {
  display: flex;
  width: 80%;
  min-width: 280px;
  max-width: 680px;
  margin: 5em auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #er404-search {
    margin: 2em auto;
  }
}
#er404-search label:first-of-type {
  width: 100%;
}
#er404-search input[type='text'] {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 10px;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: #eee;
}
#er404-search input[type='submit'] {
  font-family: 'FontAwesome';
  box-sizing: border-box;
  padding: 0.5em 0.75em;
  height: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: #2d3339;
  color: #fff;
  font-weight: normal;
  font-size: 1.25em;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: opacity 0.3s;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 検索
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.search #er404-search {
  margin: 3em auto;
}
.search .search-list {
  border-top: 1px solid #ccc;
}
.search .search-list ul {
  display: block;
  margin: 0;
  padding: 0;
}
.search .search-list > a {
  display: block;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.3s;
  transition: opacity 0.3s;
}
.search .search-list > a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.search .search-list h3 {
  margin-top: 0;
}
.search .search-list p:last-child {
  text-align: right;
  margin-bottom: 0;
  padding-top: 1em;
  border-top: 1px dotted #ccc;
  font-size: 0.875em;
  color: #999;
}
.search .search-count {
  margin: 2em 0;
}
.search-everything-highlight {
  font-weight: bold;
  text-decoration: underline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.search-everything-highlight:before {
  display: none;
}
.search .permalink {
  overflow: hidden;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 投稿｜詳細
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.single .post-data {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 1em;
  margin-bottom: 3em;
  font-weight: bold;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
