@charset "UTF-8";
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

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

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

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

select,
option {
  color: currentColor;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

a,
button {
  color: currentColor;
  text-decoration: none;
  transition: filter 0.1s ease;
}
@media (hover: hover) {
  a:hover,
  button:hover {
    filter: brightness(1.12);
  }
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

*:focus {
  outline: none;
}

@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

br {
  display: none;
}
@media (min-width: 600px) {
  br {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
body.scroll_lock {
  overflow: hidden;
}

/**  common  **/
html {
  scroll-padding: 6.5rem;
}

body {
  color: #000;
  font-family: "Yu Gothic Pr6N D", sans-serif;
}

header {
  height: 6.5rem;
  background-color: #B7C0C1;
  position: sticky;
  top: 0;
  z-index: 100;
}
header a,
header button {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}
header a:hover,
header button:hover {
  opacity: 0.5;
}
header .menu-toggle {
  margin-right: 0.8rem;
  margin-left: 0.8rem;
}
@media (min-width: 600px) {
  header .menu-toggle {
    order: 1;
    margin-right: 0;
    margin-left: 0;
  }
}
header div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 600px) {
  header div {
    margin-right: 1.6rem;
    margin-left: 1.6rem;
  }
}
header h1 {
  margin-right: auto;
}
header .badge {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1rem;
  background-color: #7FB9B6;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  z-index: 10;
}
header .nav_cart {
  position: relative;
}

.header-nav {
  position: relative;
  z-index: 100;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
}
@media (min-width: 600px) {
  .header-nav {
    width: min(100%, 37.5rem);
    margin-left: auto;
  }
}
.header-nav li {
  border-top: 1px solid currentColor;
}
.header-nav a {
  padding: 0.4em 1em;
  display: block;
}
.header-nav .global-menu {
  background-color: #B7C0C1;
}
.header-nav .global-menu a {
  background-color: #B7C0C1;
}
.header-nav .hobo-menu {
  background-color: #EDEDED;
}
.header-nav .hobo-menu a {
  background-color: #EDEDED;
}

.page-header {
  position: relative;
  aspect-ratio: 375/148;
  width: 100%;
}
@media (min-width: 600px) {
  .page-header {
    aspect-ratio: 1512/217;
    max-height: 21.7rem;
  }
}
.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

main a[target=_blank]::after {
  margin: 0 3px 0 1px;
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-size: 85%;
  position: relative;
  top: -3px;
}

.breadcrumbs {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.2rem;
  margin: 1em;
}
@media (min-width: 992px) {
  .breadcrumbs {
    font-size: 1.4rem;
    margin-right: 0;
    margin-left: 0;
  }
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs ul li:not(:last-of-type)::after {
  content: "/";
  margin: 0 0.5em;
}
.breadcrumbs a {
  color: #646464;
}

footer {
  background-color: #EDEDED;
  padding: 4rem 5.2rem;
}
footer a:hover {
  opacity: 0.5;
}
footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: min(100%, 120rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  footer .wrapper {
    gap: 2.8rem;
  }
}
footer .footer-share {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
}
footer .footer-share li:first-child {
  margin-right: 0.8rem;
}
footer .footer-hobo {
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 600px) {
  footer .footer-hobo {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem 4rem;
  }
}
footer .footer-store {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
footer .footer-store ul {
  font-size: 1rem;
}
footer .footer-store div {
  font-size: 1.2rem;
}
footer .footer-store div span {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  gap: 0.5em;
  line-height: 1;
}
.btn-arrow::after {
  content: "";
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  background-color: currentColor;
  mask-image: url(/store/taekokusaba/images/common/ico-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}
.btn-arrow.disabled {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
  pointer-events: none;
}
.btn-arrow.disabled::before {
  content: none;
}

.btn-orange {
  background-color: #D16F4C;
  border: 1.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  position: relative;
  gap: 0.5em;
  line-height: 1;
  color: currentColor;
}
.btn-orange.disabled, .btn-orange[disabled] {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
  color: #646464;
  pointer-events: none;
}
.btn-orange.disabled::before, .btn-orange[disabled]::before {
  content: none;
}

body {
  background-color: #EDEDED;
}

main {
  font-family: "Yu Gothic Pr6N B", sans-serif;
}

.index-hero {
  position: relative;
}
.index-hero .hero-bg {
  width: 100%;
}

@keyframes SlideIn {
  100% {
    opacity: 1;
    left: 0;
  }
}
section + section {
  margin-top: 0.4rem;
}

.hero-global-menu {
  font-size: 1.6rem;
  position: absolute;
  top: 2rem;
  left: 2rem;
}
@media (min-width: 600px) {
  .hero-global-menu {
    font-size: 1.6vw;
    top: initial;
    left: inherit;
    bottom: 8%;
    right: 6%;
  }
}
.hero-global-menu img {
  height: 1em;
  position: relative;
  left: 1em;
  opacity: 0;
  animation: SlideIn 0.8s ease-in-out forwards;
}
.hero-global-menu li:nth-child(1) img {
  animation-delay: 0s;
}
.hero-global-menu li:nth-child(1) a::before {
  animation-delay: 0s;
}
.hero-global-menu li:nth-child(2) img {
  animation-delay: 0.2s;
}
.hero-global-menu li:nth-child(2) a::before {
  animation-delay: 0.2s;
}
.hero-global-menu li:nth-child(3) img {
  animation-delay: 0.4s;
}
.hero-global-menu li:nth-child(3) a::before {
  animation-delay: 0.4s;
}
.hero-global-menu li:nth-child(4) img {
  animation-delay: 0.6s;
}
.hero-global-menu li:nth-child(4) a::before {
  animation-delay: 0.6s;
}
.hero-global-menu li:nth-child(5) img {
  animation-delay: 0.8s;
}
.hero-global-menu li:nth-child(5) a::before {
  animation-delay: 0.8s;
}
.hero-global-menu a {
  padding: 0.8em 0.5em;
  display: flex;
  align-items: center;
}
.hero-global-menu a::before {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-image: url("../images/index/ico-square.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5em;
  opacity: 0;
  animation: fadeIn 0.8s ease-in-out forwards;
}
.hero-global-menu a:hover {
  opacity: 0.5;
}
@media (min-width: 600px) {
  .hero-global-menu a {
    padding: 0.5em;
  }
}
.hero-global-menu li {
  position: relative;
}
.hero-global-menu li::before {
  content: "";
  width: 2em;
  height: 2em;
  display: inline-block;
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
}
@media (min-width: 600px) {
  .hero-global-menu li::before {
    top: 0;
  }
}
.hero-global-menu li.check::before, .hero-global-menu li:hover::before {
  background-image: url("../images/index/ico-check.svg");
}
.hero-global-menu li.check::before {
  animation: fadeIn 0.15s 1.45s ease-in-out forwards;
}
.hero-global-menu li:has(:hover)::before {
  animation: fadeIn 0.2s ease-in-out forwards;
}

.hero-title {
  color: #231815;
  position: absolute;
  bottom: 4rem;
  left: 3.2rem;
  width: 74%;
  aspect-ratio: 493/90;
  opacity: 0;
  animation: fadeIn 0.5s 1.2s ease-in-out forwards;
}
@media (min-width: 600px) {
  .hero-title {
    width: 36%;
    color: #fff;
    bottom: initial;
    top: 12%;
    left: 6%;
    animation: fadeIn 0.4s 1.6s ease-in-out forwards;
  }
}

.hero-hobo-text {
  position: absolute;
  font-size: 1.2rem;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #818181;
  top: 2rem;
  right: 2rem;
}
@media (min-width: 600px) {
  .hero-hobo-text {
    color: #D9D9D9;
    font-size: 1vw;
    top: 2%;
    right: 2%;
  }
}

.index-latest {
  font-size: 1.4rem;
}
.index-latest ul {
  display: grid;
  grid-template-rows: max-content 1fr 1fr;
  gap: 0.4rem;
}
@media (min-width: 600px) {
  .index-latest ul {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: max-content;
  }
}
.index-latest li {
  position: relative;
}
@media (min-width: 600px) {
  .index-latest li.order-1 {
    order: 1;
  }
  .index-latest li.order-2 {
    order: 2;
  }
  .index-latest li.order-3 {
    order: 3;
  }
}
.index-latest .category {
  display: flex;
  justify-content: space-between;
}
.index-latest .category::after {
  content: "";
  height: 1.8rem;
  width: 1.8rem;
  display: inline-block;
  mask-image: url("../images/index/ico-arrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
}
@media (min-width: 600px) {
  .index-latest .category::after {
    content: none;
    height: 1.6vw;
    width: 1.6vw;
  }
}
@media (min-width: 600px) {
  .index-latest .title-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
  }
  .index-latest .title-text::after {
    content: "";
    height: 1.6vw;
    width: 1.6vw;
    display: inline-block;
    mask-image: url("../images/index/ico-arrow.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    flex-shrink: 0;
  }
}
.index-latest .date {
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #646464;
  font-size: 1.8rem;
}
.index-latest .title-clamp {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media (min-width: 600px) {
  .index-latest .title-clamp {
    font-size: 1.6rem;
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
}
@media (min-width: 992px) {
  .index-latest .title-clamp {
    font-size: 2.2rem;
  }
}
.index-latest .thumbnail-wrapper .date {
  display: none;
}

.latest-content-special_feature {
  height: 100%;
}
.latest-content-special_feature .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.latest-content-special_feature .category {
  align-items: start;
  padding: 6%;
}
.latest-content-special_feature .category::after {
  content: "";
}
.latest-content-special_feature .category img {
  width: 32%;
}
@media (min-width: 600px) {
  .latest-content-special_feature .category img {
    width: 44%;
  }
}
.latest-content-special_feature .title {
  background-color: rgba(237, 237, 237, 0.5);
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  padding: 0.5em 1em;
  gap: 1em;
  backdrop-filter: blur(2px);
}
.latest-content-special_feature .title-text::after {
  content: none;
}
.latest-content-special_feature .title-clamp {
  line-clamp: 1;
  -webkit-line-clamp: 1;
}
.latest-content-special_feature .thumbnail-wrapper {
  height: 100%;
}
.latest-content-special_feature .thumbnail {
  object-fit: cover;
  aspect-ratio: 1/1;
  height: 100%;
  width: 100%;
}

.latest-item,
.latest-content-talk,
.latest-content-my_favorite,
.latest-content-how_to {
  height: 100%;
}
.latest-item a,
.latest-content-talk a,
.latest-content-my_favorite a,
.latest-content-how_to a {
  height: 100%;
  background-color: #B7C0C1;
  display: grid;
  grid-template-columns: 1fr 18rem;
  gap: 1.2rem;
  padding: 6% 4%;
}
@media (min-width: 600px) {
  .latest-item a,
  .latest-content-talk a,
  .latest-content-my_favorite a,
  .latest-content-how_to a {
    grid-template-columns: 1fr;
    padding: 6% min(8%, 4rem);
  }
}
.latest-item .inner,
.latest-content-talk .inner,
.latest-content-my_favorite .inner,
.latest-content-how_to .inner {
  display: flex;
  flex-direction: column;
}
.latest-item .category,
.latest-content-talk .category,
.latest-content-my_favorite .category,
.latest-content-how_to .category {
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.6rem;
}
@media (min-width: 600px) {
  .latest-item .category,
  .latest-content-talk .category,
  .latest-content-my_favorite .category,
  .latest-content-how_to .category {
    margin-bottom: 1.2rem;
  }
}
.latest-item .category img,
.latest-content-talk .category img,
.latest-content-my_favorite .category img,
.latest-content-how_to .category img {
  height: 1.8rem;
}
@media (min-width: 600px) {
  .latest-item .category img,
  .latest-content-talk .category img,
  .latest-content-my_favorite .category img,
  .latest-content-how_to .category img {
    height: 2vw;
  }
}
.latest-item .thumbnail,
.latest-content-talk .thumbnail,
.latest-content-my_favorite .thumbnail,
.latest-content-how_to .thumbnail {
  border: 1.5px solid #000;
  width: 100%;
}
.latest-item .title,
.latest-content-talk .title,
.latest-content-my_favorite .title,
.latest-content-how_to .title {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .latest-item .title .date,
  .latest-content-talk .title .date,
  .latest-content-my_favorite .title .date,
  .latest-content-how_to .title .date {
    display: none;
  }
}
@media (min-width: 600px) {
  .latest-item .title-clamp,
  .latest-content-talk .title-clamp,
  .latest-content-my_favorite .title-clamp,
  .latest-content-how_to .title-clamp {
    min-height: 3em;
  }
}
@media (min-width: 600px) {
  .latest-item .thumbnail-wrapper,
  .latest-content-talk .thumbnail-wrapper,
  .latest-content-my_favorite .thumbnail-wrapper,
  .latest-content-how_to .thumbnail-wrapper {
    display: grid;
    grid-template-columns: 6em 1fr;
    align-items: end;
    gap: 1em;
  }
  .latest-item .thumbnail-wrapper .date,
  .latest-content-talk .thumbnail-wrapper .date,
  .latest-content-my_favorite .thumbnail-wrapper .date,
  .latest-content-how_to .thumbnail-wrapper .date {
    display: block;
    flex-shrink: 0;
  }
}

.latest-item .thumbnail-wrapper .date {
  opacity: 0;
}

.latest-content-my_favorite .category img {
  height: 3.6rem;
}
@media (min-width: 600px) {
  .latest-content-my_favorite .category img {
    height: 2vw;
  }
}

.latest-item .category:after,
.latest-item .title-text:after {
  background-color: #00514D;
}
.latest-content-special_feature .category:after,
.latest-content-special_feature .title-text:after {
  background-color: #8E2726;
}
.latest-content-talk .category:after,
.latest-content-talk .title-text:after {
  background-color: #D16F4C;
}
.latest-content-my_favorite .category:after,
.latest-content-my_favorite .title-text:after {
  background-color: #E9FF7B;
}
.latest-content-how_to .category:after,
.latest-content-how_to .title-text:after {
  background-color: #00514D;
}

.index-news {
  background-color: #B7C0C1;
  padding-top: 3.2rem;
  padding-bottom: 6.4rem;
}
.index-news .wrapper {
  width: min(100% - 10.4rem, 100rem);
  margin-left: 5.2rem;
  margin-right: 5.2rem;
}
.index-news .title {
  margin-bottom: 0.8rem;
}
@media (min-width: 600px) {
  .index-news .title {
    margin-bottom: 1.6rem;
  }
}
.index-news .title img {
  width: 5.2rem;
}
@media (min-width: 600px) {
  .index-news .title img {
    width: 6.8rem;
  }
}
.index-news .news-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1.6rem;
}
@media (min-width: 600px) {
  .index-news .news-list {
    gap: 3.2rem;
  }
}
.index-news .news-date {
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #646464;
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .index-news .news-date {
    font-size: 1.6rem;
    line-height: 2;
  }
}
@media (min-width: 992px) {
  .index-news .news-title {
    font-size: 2rem;
  }
}
.index-news .news-title + .news-description {
  margin-top: 0.4rem;
}
.index-news .news-description {
  font-size: 1.2rem;
}
@media (min-width: 600px) {
  .index-news .news-description {
    font-size: 1.6rem;
  }
}
.index-news .news-description a {
  color: #D16F4C;
}/*# sourceMappingURL=index.css.map */