@charset "UTF-8";

.mv {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.mv-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mv__img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.mv__right {
  width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mv__catch-copy {
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
  width: 100%;
}

.mv__logo {
  width: 27.5rem;
  height: auto;
}

/* Scroll Indicator */
.scroll {
  position: absolute;
  right: 50%;
  bottom: 2rem;
  text-align: center;
  letter-spacing: 0.2em;
  transform: translateX(50%);
  font-size: 0.75rem;
  color: #fff;
}

.scroll__arrow {
  display: block;
  width: 0;
  height: 0;
  margin: 0.4rem auto 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #fff;
  animation: scrollArrow 1.4s infinite ease-in-out;
}

@keyframes scrollArrow {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(6px);
    opacity: 0.5;
  }

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

/* About Section */
.about {
  width: 90%;
  max-width: 1440px;
  margin: 5rem auto;
}

.about__headline {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 7rem;
  text-align: center;
}

.about__container {
  display: flex;
  gap: 5rem;
}

.about__left {
  font-size: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.about__right {
  flex: 3;
}

/* Top News Section */
.top-news {
  width: 90%;
  max-width: 1440px;
  margin: 5rem auto;
}

.top-news h2 {
  font-size: 2rem;
}

.top-news__subtitle {
  color: #DE022E;
}

.top-news ul {
  margin-bottom: 3rem;
}

.top-news__btn {
  text-align: center;
  align-items: center;
}

.top-news__item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #ddd;
  list-style: none;
}

.top-news__item:first-child {
  border-top: 1px solid #ddd;
}

.top-news__link {
  display: grid;
  grid-template-columns: 6rem 8rem 1fr;
  gap: 1rem;
  color: inherit;
}

.top-news__meta {
  display: contents;
}

.top-news__time {
  font-size: 0.9rem;
  color: #666;
}

.top-news__category {
  flex: 0 0 6rem;
  background: #DE022E;
  color: #fff;
  padding: 0.2rem 0.5rem;
  text-align: center;
  border-radius: 4px;
}

/* Original Slider (Top Page) */
.original-slider {
  margin-bottom: 5rem;
  overflow: hidden;
}

.slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  padding: 0 30px;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
}

/* Archives / Products */
.original-archive {
  width: 90%;
  max-width: 1440px;
  margin: auto;
}

.original-archive__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
}

.original-item {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.original-item--right {
  flex-direction: row-reverse;
}

.original-item__img {
  flex: 0 0 48%;
}

.original-item__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.original-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.original-item__title {
  font-size: 1.25rem;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.original-item__text {
  line-height: 1.7;
  font-size: 1rem;
}

.slider__item {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0;
}

/* Subpages */
.s-title,
.entry-title {
  font-size: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

/* Business Customer */
.business-customer {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.business-box {
  display: flex;
  align-items: center;
}

.business-box .wp-block-media-text__content {
  padding-left: 2rem;
}

.business-request {
  text-align: center;
  font-size: 2rem;
}

.business-customer_img {
  border-radius: 0.5rem;
}

.wp-block-media-text__content {
  flex: 1;
}

.wp-block-media-text__media {
  flex: 1;
}

.contact__btn {
  display: flex;
  justify-content: center;
  margin: 30px 0 50px;
}

.style-square {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  font-size: 2rem;
}

.style-square li {
  position: relative;
  padding-left: 1.5rem;
  padding-bottom: 0.75rem;
}

.style-square li::before {
  content: "";
  position: absolute;
  top: -9px;
  left: -50px;
  width: 6rem;
  height: 6rem;
  display: inline-block;
  background-image: url(../img/logo_none_otoku.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.business-box__text {
  width: 50%;
  order: 1;
}

.business-box__item {
  width: 50%;
  text-align: center;
  order: 2;
}

/* Company Page */
.company {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.company-box {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin: 3rem 0;
}

.company-box__table {
  width: 50%;
  order: 1;
  padding-left: 8rem;
}

.company-box__item {
  width: 50%;
  text-align: center;
  order: 2;
}

.company-box__image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.table__item th,
.table__item td {
  padding: 0.5rem;
}

.table__item th {
  width: 80px;
}

.company__map {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.company__map iframe {
  width: 100%;
  height: 18.75rem;
  display: block;
}

.company-h2 {
  font-size: 1.75rem;
  margin-bottom: 3rem;
  margin-top: 8rem;
}

.company-h2__center {
  text-align: center;
}

/* Shop Page */
.shop-thumb {
  width: 100%;
  height: 20rem;
  margin-bottom: 3rem;
}

.shop-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center 15%;
}

.shop__content-wrapper {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.shop__attention {
  font-size: 2rem;
  text-align: center;
}

.shop__text {
  text-align: center;
}

.e-money {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.e-money__credit {
  grid-column: 1;
  grid-row: 1;
}

.e-money__money {
  grid-column: 1;
  grid-row: 2;
}

.e-money__barcode {
  grid-column: 2;
  grid-row: 1;
}

.e-money__title {
  background-color: #DE022E;
  color: #fff;
  padding: 0.5rem 3rem;
  max-width: 22.5rem;
  height: 3rem;
  border-radius: 1.5rem;
  text-align: center;
  margin: 0 auto 1.5rem;
  line-height: 32px;
}

.e-money__img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: auto;
  gap: 1rem 1.5rem;
  align-items: center;
}

.e-money__img--visa,
.e-money__img--master,
.e-money__img--jcb,
.e-money__img--diners,
.e-money__img--amex,
.e-money__img--paypay,
.e-money__img--d,
.e-money__img--rakuten,
.e-money__img--merpay,
.e-money__img--au,
.e-money__img--alipay,
.e-money__img--wechat {
  height: 3rem;
  width: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.shop__list-wrapper {
  margin-left: 9rem;
}

.shop__list {
  font-size: 1.5rem;
}

.shop__name {
  position: relative;
  padding: 0.5rem 1.5rem;
}

.shop__name::before {
  content: "";
  position: absolute;
  top: 16px;
  left: -5px;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/map-marker.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.shop__name a {
  text-decoration: underline;
  transition: 0.3s;
}

.shop__name a:hover {
  color: #DE022E;
}

.shop__address {
  padding: 0 1.5rem;
}

/* News Archive Page */
.archive-news {
  width: 90%;
  max-width: 1440px;
  margin: 5rem auto;
}

.archive-news-category__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0.75rem 1rem;
  margin-bottom: 3rem;
  margin-left: 0;
  list-style: none;
  background-color: rgba(222, 2, 46, 0.2);
}

.archive-news-category__item a {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
}

.archive-news-category__item a:hover {
  text-decoration: underline;
  color: #DE022E;
}

.news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news__item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #ccc;
}

.news__item:last-child {
  border-bottom: none;
}

.news__link {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 1.5rem;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

.news__link:hover {
  opacity: 0.8;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #666;
}

.news__time {
  grid-column: 1;
  color: #666;
  min-width: 100%;
}

.news__title {
  grid-column: 3;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.news__category {
  grid-column: 2;
}

.news__category span {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  background-color: #DE022E;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

/* Recruit Page */
.recruit {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 6rem;
}

.recruit-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 50px 5rem;
}

.recruit__title {
  font-size: 1.75rem;
  margin-bottom: 30px;
}

.recruit__sub-title {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.recruit_img {
  border-radius: 0.5rem;
}

.contact-box {
  width: 90%;
  margin: 0 auto;
}

/* Privacy Policy */
.privacy-policy {
  width: 100%;
}

.privacy-policy-body {
  width: 90%;
  max-width: 980px;
  margin: 5rem auto;
}

.privacy-policy-body h2 {
  padding: 0.5rem 1rem;
  background: #f4f4f4;
  border-left: 5px solid #DE022E;
  font-size: 1.25rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.privacy-policy-body h3 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.privacy-policy-body ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}

.privacy-contact-link a {
  display: inline-block;
  color: #0000EE;
  text-decoration: underline;
  font-weight: bold;
}

.privacy-contact-link a:hover {
  text-decoration: none;
}

/* Single Post */
.single-container {
  width: 90%;
  max-width: 980px;
  margin: 4rem auto;
}

.single-container .entry-header .entry-title {
  text-align: left;
}

.single-container .entry-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #666;
}

.cat-label {
  background-color: #DE022E;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.single-container .entry-title {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.entry-thumbnail {
  margin-top: 2rem;
  width: 100%;
}

.entry-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.single-container .entry-content {
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 4rem;
}

.single-container .entry-content h2 {
  font-size: 1.5rem;
  border-left: 5px solid #DE022E;
  padding: 0.75rem 1rem;
  background-color: #f9f9f9;
  margin: 3rem 0 1.5rem;
  font-weight: bold;
}

.single-container .entry-content h3 {
  font-size: 1.25rem;
  border-bottom: 2px solid #DE022E;
  padding-bottom: 0.5rem;
  margin: 2.5rem 0 1.25rem;
  font-weight: bold;
}

.single-container .entry-content h4 {
  font-size: 1.1rem;
  margin: 2rem 0 1rem;
  font-weight: bold;
}

.single-container .entry-content p {
  margin-bottom: 1.5rem;
}

.single-container .entry-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 4px;
}

.single-container .entry-content ul,
.single-container .entry-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.single-container .entry-content ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
}

.single-container .entry-content ol li {
  list-style: decimal;
  margin-bottom: 0.5rem;
}

/* Post Navigation */
.post-navigation {
  margin-top: 4rem;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.nav-previous,
.nav-next {
  width: 48%;
}

.nav-previous a,
.nav-next a {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s;
  height: 100%;
}

.nav-next a {
  align-items: flex-end;
  text-align: right;
}

.nav-previous a:hover,
.nav-next a:hover {
  background-color: #eee;
}

.nav-subtitle {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.nav-title {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.nav-index {
  margin-top: 2rem;
  text-align: center;
}