@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
body {
  color: #000;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション（タッチデバイス除く） */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* ヘッダーの高さ分オフセットして、アンカー位置が隠れないようにする */
  scroll-padding-top: 90px;
}

/* Set core body defaults */
body {
  min-width: 375px;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  max-width: 780px;
  padding-inline: 20px;
  margin-inline: auto;
}

.hamburger {
  z-index: 9999;
  width: 2.5rem;
  padding: 0;
}

.hamburger span {
  display: block;
  position: relative;
  background-color: #000;
  height: 0.1875rem;
  width: 2rem;
  margin-top: 0.625rem;
  -webkit-transition: -webkit-transform 0.3s 0s ease;
  transition: -webkit-transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease, -webkit-transform 0.3s 0s ease;
}

.hamburger.is-openSP span:nth-child(1) {
  top: 0;
  width: 2rem;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #000;
}

.hamburger.is-openSP span:nth-child(2) {
  top: -0.8125rem;
  width: 2rem;
  left: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #000;
}

body.js-fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.header {
  height: 5.625rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #FFF;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.header__inner,
.header__nav,
.header__nav-item,
.header__nav-item a {
  height: inherit;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.1875rem;
}

.header__logo {
  max-width: 5.625rem;
  width: 100%;
}

.header__logo a {
  -webkit-transition: opacity 0.8s 0s ease;
  transition: opacity 0.8s 0s ease;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item {
  display: -ms-grid;
  display: grid;
  gap: 2.5rem;
}

.header__nav-item a {
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin-block: auto;
  padding: 1.4375rem 1.25rem;
  position: relative;
  color: #000;
  line-height: normal;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header__nav-item a.is-current {
  color: #000;
}

.header__nav-item a.is-current::before {
  opacity: 1;
}

.header__entry-link {
  display: -ms-grid;
  display: grid;
  place-items: center;
  min-width: 10rem;
  max-width: 9.375rem;
  height: 2rem;
  padding-left: 0.75rem;
  padding-right: 1.125rem;
  background-color: #ef4a8a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.375rem;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.header__entry-text {
  display: block;
  font-size: 0.5rem;
  font-weight: 300;
  line-height: normal;
  text-align: center;
}

.header__entry-link.header__entry-link--drawer {
  max-width: 23.4375rem;
  height: 3.125rem;
}

.header__entry-text.header__entry-text--drawer {
  font-size: 1rem;
}

.sp-nav {
  position: fixed;
  top: 5.625rem;
  right: -100%;
  width: 100%;
  height: calc(100vh - 5.625rem);
  background-color: #FFF;
  z-index: 9998;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
}

.sp-nav.is-openSP {
  right: 0;
  opacity: 1;
  visibility: visible;
}

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

.sp-nav__item {
  margin-bottom: 1.25rem;
}

.sp-nav__link {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
}

.sp-nav__entry {
  display: block;
  margin-top: 1.875rem;
  padding: 0.9375rem;
  background-color: #000;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  border-radius: 0.3125rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.sp-nav__entry:hover {
  opacity: 0.8;
}

.sp-nav__entry-text {
  display: block;
  font-size: 0.875rem;
  line-height: 1.6;
}

.staff__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.25rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.25rem;
  margin-top: 1.25rem;
  position: relative;
}

.staff__member {
  position: relative;
  text-decoration: none;
  color: inherit;
  font-family: "Shippori Mincho", serif;
}

/* 偶数番目を下にずらす */
.staff__member:nth-child(even) {
  -webkit-transform: translateY(2.8125rem);
          transform: translateY(2.8125rem);
}

/* 奇数番目は上に寄せる（デフォルトでOK） */
.staff__member:nth-child(odd) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.staff__member-image {
  aspect-ratio: 150/226;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.staff__member-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.staff__member-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-title {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  padding: 0.625rem 2.1875rem;
  background-color: red;
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  -webkit-margin-before: 0rem;
          margin-block-start: 0rem;
}

.section-title--happiness {
  font-size: 0.9375rem;
}

.fv {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 5.625rem;
  z-index: 0;
}
@media screen and (max-width: 375px) {
  .fv {
    overflow: hidden;
  }
}

.fv__inner {
  margin-inline: auto;
  width: 100vw;
  max-width: 48.75rem;
  padding-inline: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fv__slider {
  margin-inline: calc(50% - 50vw);
  max-width: 780px;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 780px) {
  .fv__slider {
    margin-inline: 0;
    width: 100%;
  }
}
.fv__slider .splide__slide {
  pointer-events: auto;
}

.fv__image {
  aspect-ratio: 375/722;
  width: 100%;
  position: relative;
  pointer-events: auto;
}

.fv__image a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 4;
  pointer-events: auto;
}

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

.fv__catch {
  position: absolute;
  top: 34%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: left;
  font-family: "Shippori Mincho", serif;
  color: #FFF;
  font-weight: 400;
  font-size: 2.3125rem;
  line-height: normal;
  text-shadow: 0 2px 8px rgb(0, 0, 0);
  z-index: 3;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 780px) {
  .fv__catch {
    font-size: 3rem;
    margin-left: 5rem;
  }
}

.fv__texts-container {
  position: absolute;
  top: 74%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  width: 100%;
  max-width: calc(100% - 20px * 2);
  padding-inline: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  z-index: 3;
}

.fv__image::after {
  content: "";
  position: absolute;
  top: 57.5%;
  bottom: 0;
  right: 0;
  width: 16%;
  max-width: calc(100% - 20px * 2);
  background-color: red;
  z-index: 5;
  pointer-events: none;
}
@media screen and (max-width: 375px) {
  .fv__image::after {
    width: 22%;
    max-width: calc(100% - 20px * 2);
  }
}
@media screen and (min-width: 780px) {
  .fv__image::after {
    left: 31%;
    top: 57.5%;
    -webkit-transform: translateX(24.375rem);
            transform: translateX(24.375rem);
    right: auto;
    width: 16%;
    max-width: none;
  }
}

.fv__texts {
  position: static;
  -webkit-transform: none;
          transform: none;
  display: -ms-grid;
  display: grid;
  max-width: 28.125rem;
  width: 100%;
  text-align: left;
  font-size: 0.75rem;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: #FFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  gap: 1.25rem;
  margin-inline: auto;
  padding-right: 3.75rem;
}
@media screen and (min-width: 780px) {
  .fv__texts {
    padding-right: 5rem;
    font-size: 1.125rem;
  }
}

.fv__text:last-child {
  margin-top: 0.625rem;
}

.section-staff {
  margin-top: 1.5625rem;
}

.section-philosophy {
  margin-top: 2.5rem;
}

.philosophy__sub-title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: normal;
  text-align: left;
  margin-top: 1.25rem;
  font-family: "Shippori Mincho", serif;
}

.philosophy__text {
  font-size: 1rem;
  line-height: normal;
  text-align: left;
  margin-top: 0.625rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

.philosophy__logo-image,
.philosophy__image {
  width: 100%;
  display: block;
  margin-inline: auto;
  margin-top: 1.25rem;
}

.philosophy__logo-image img,
.philosophy__image img {
  width: 100%;
  height: auto;
  display: block;
}

.philosophy__company {
  margin-top: 2.5rem;
  text-align: center;
  position: relative;
  min-height: 25rem;
  padding: 1.25rem;
  z-index: 0;
}

.philosophy__company::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/building.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.25; /* 文字を読みやすくするため薄く */
  z-index: -1;
  pointer-events: none;
}

.philosophy__company-title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: normal;
  text-align: center;
  margin-top: 1.25rem;
  display: inline-block;
  border: 2px solid black;
  padding-inline: 2.5rem;
}

.philosophy__company-list {
  list-style: none;
  margin-top: 2.5rem;
  text-align: left;
  font-size: 1rem;
  line-height: normal;
  font-weight: 700;
}

.philosophy__company-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: -webkit-max-content 1fr;
  -ms-grid-columns: max-content 1fr;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  text-align: left;
  margin-top: 1.25rem;
}

.philosophy__company-term {
  white-space: nowrap;
}

.philosophy__recruit {
  margin-top: 2.5rem;
}

.philosophy__recruit-title,
.philosophy__hope-title {
  color: red;
  font-weight: 700;
  position: relative;
}

.philosophy__recruit-title::after,
.philosophy__hope-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4.8125rem;
  width: 15.5rem;
  height: 0.0625rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 0.0625rem;
  background-color: #ff9900;
  opacity: 1;
}

.philosophy__hope {
  margin-top: 1.25rem;
}

.section-business {
  margin-top: 1.5625rem;
}

.business__lead {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: normal;
  font-weight: 700;
}

.business__list {
  list-style: none;
  -webkit-padding-start: 0rem;
          padding-inline-start: 0rem;
  margin-top: 1.25rem;
  display: -ms-grid;
  display: grid;
}

.business__item {
  padding: 1rem 1rem;
  color: #FFF;
}

.business__item.business__item--store {
  background-color: #93c47d;
}

.business__item.business__item--ec {
  background-color: #6fa8dc;
}

.business__item.business__item--welfare {
  background-color: #f6b26b;
}

.business__item.business__item--factory {
  background-color: #8e7cc3;
}

.business__item.business__item--hq {
  background-color: #e59ddc;
}

/* 見出し（中央＋上下ライン） */
.business__item-title {
  position: relative;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  padding-block: 0.4375rem;
}

.business__item-title::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 0.125rem;
  background-color: #FFF;
  opacity: 0.7;
}

.business__item-title::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  width: 100%;
  height: 0.125rem;
  background-color: #FFF;
  opacity: 0.7;
}

/* 箇条書き */
.business__item-points {
  list-style: none;
  -webkit-padding-start: 0rem;
          padding-inline-start: 0rem;
  margin-top: 0.75rem;
}

.business__item-point {
  position: relative;
  padding-left: 0.875rem;
  margin-top: 0.5rem;
  font-size: 1.0625rem;
  line-height: 1;
  font-weight: 700;
}

.business__item-point::before {
  content: "・";
  position: absolute;
  top: 0rem;
  left: 0rem;
}

.section-sales {
  margin-top: 1.5625rem;
}

.sales__visual {
  position: relative;
  display: inline-block;
  aspect-ratio: 375/300;
  max-width: 48.75rem;
  width: 100%;
}

.sales__visual img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.sales__head .section-title {
  -webkit-margin-before: 0rem;
          margin-block-start: 0rem;
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
}

.sales__highlights-list {
  text-align: center;
  list-style: none;
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
}

.sales__highlights-item {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sales__highlights-item--top {
  top: 65%;
}

.sales__highlights-wrapper {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  white-space: nowrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  padding-bottom: 0.375rem;
  max-width: 100%;
  overflow-wrap: normal;
}

.sales__highlights-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.125rem;
  width: 100%;
  background-color: red;
}

.sales__highlights-text {
  font-size: 1.5625rem;
  color: red;
  font-weight: 700;
}
@media screen and (min-width: 780px) {
  .sales__highlights-text {
    font-size: 2rem;
  }
}

.sales__highlights-strong {
  font-size: 2.625rem;
  font-weight: 700;
  color: red;
  line-height: 1;
}
@media screen and (min-width: 780px) {
  .sales__highlights-strong {
    font-size: 3.5rem;
  }
}

.sales__graph {
  /*margin-top: -3.9375rem;*/
}

.sales__graph-image {
  aspect-ratio: 335/230;
}

.sales__graph-image img {
  width: 100%;
  height: auto;
  display: block;
}

.sales__growth {
  font-weight: 700;
  margin-top: 0.625rem;
  font-size: 1.125rem;
}

.sales__growth-emphasis {
  color: red;
}

.sales__area-title {
  position: relative;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  padding-block: 0.4375rem;
  color: red;
  margin-block: 0.9375rem;
}

.sales__area-title::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 0.125rem;
  background-color: red;
  opacity: 0.7;
}

.sales__area-title::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  width: 100%;
  height: 0.125rem;
  background-color: red;
  opacity: 0.7;
}

.sales__store {
  margin-top: 1.25rem;
}

.sales__store-block {
  margin-top: 1.25rem;
}

.sales__store-title {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.4375rem 1.875rem;
  width: 22.5rem;
}

.sales__store-title.sales__store-title--tenjin {
  background-color: #ff9900;
}

.sales__store-title.sales__store-title--hakata {
  background-color: #6aa84f;
}

.sales__store-title.sales__store-title--new {
  background-color: #e2bad0;
}

.sales__store-image {
  margin-top: 1.25rem;
  aspect-ratio: 335/177;
}

.sales__store-image.sales__store-image--new {
  max-width: 37.5rem;
  width: 100%;
}

.sales__store-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.sales__store-photo {
  margin-top: 0.9375rem;
  aspect-ratio: 335/250;
}

.sales__store-photo img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-ranking {
  margin-top: -0.3125rem;
}

.ranking__text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-block: 1.25rem;
}

.ranking__image {
  width: 100%;
  height: auto;
  display: block;
}

.ranking__caption {
  margin-top: 0.75rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ranking__note {
  margin-top: 0.1875rem;
  font-size: 0.5625rem;
  font-weight: 700;
  text-align: center;
}

.section-celebrity {
  margin-top: 1.5625rem;
}

.celebrity__images {
  margin-top: 1.5625rem;
}

.celebrity__image {
  aspect-ratio: 335/216;
}

.celebrity__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.celebrity__names {
  background-color: #fff2cc;
  padding-top: 1.25rem;
}

.celebrity__names-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.6;
}

.celebrity__names-list strong {
  font-weight: 700;
  font-size: 2.125rem;
}

.celebrity__names-note {
  margin-top: 0.5rem;
  text-align: right;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.8;
}

.section-happiness {
  margin-top: 1.5625rem;
}

.happiness__text {
  margin-top: 0.3125rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-weight: 700;
  color: #FFF;
  background-color: #000;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  padding-block: 0.625rem;
  padding-inline: 0.9375rem;
  text-align: center;
  max-width: 13.75rem;
  width: 100%;
}

.happiness__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.3125rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.happiness__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.happiness__item.happiness__item--full {
  grid-column: 1/-1;
}

.happiness__item:nth-child(3),
.happiness__item:nth-child(4) {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}

#happiness2 .happiness__item:nth-child(3),
#happiness2 .happiness__item:nth-child(4) {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

.happiness__image {
  width: 100%;
  aspect-ratio: 336/200;
}

.happiness__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.happiness__title {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

.happiness__title::after {
  content: "";
  display: block;
  width: 10rem;
  height: 0.1875rem;
  background-color: red;
  margin-inline: auto;
  margin-top: 0.25rem;
}

.happiness__description {
  font-size: 0.75rem;
  color: #000;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}

.happiness__description .happiness__red {
  color: red;
}

.happiness__message {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: red;
  margin-top: 0;
}

.message__visual {
  position: relative;
}

.message__entry {
  background-color: #ef4a8a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.375rem;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  padding-block: 0.4375rem;
  padding-inline: 1.25rem;
  text-align: center;
  margin-top: 1.25rem;
}

.message__entry-link {
  color: #FFF;
  text-decoration: none;
}

.message__text {
  position: absolute;
  top: 19%;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #FFF;
  font-weight: 700;
  padding: 1.25rem;
  z-index: 1;
}

.message__title {
  font-size: 1.375rem;
  text-shadow: -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF, -2px -2px 0 #FFF, 2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px 2px 0 #FFF;
  color: #000;
}
@media screen and (min-width: 780px) {
  .message__title {
    font-size: 1.875rem;
  }
}

.message__lead {
  font-size: 1.375rem;
  line-height: 1.6;
  text-shadow: -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF, -2px -2px 0 #FFF, 2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px 2px 0 #FFF;
  margin-top: 0.625rem;
  color: #000;
}
@media screen and (min-width: 780px) {
  .message__lead {
    font-size: 1.875rem;
  }
}

.message__magic {
  color: red;
  text-decoration: underline;
  text-decoration-color: red;
  text-underline-offset: 0.125rem;
  font-size: 1.625rem;
}
@media screen and (min-width: 780px) {
  .message__magic {
    font-size: 2.1875rem;
  }
}

.message__box-title {
  margin-top: 0.625rem;
  color: #FFF;
  background-color: #000;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  padding-block: 0.1875rem;
  padding-inline: 0.9375rem;
  text-align: center;
  max-width: 15.625rem;
  width: 100%;
}

.message__box-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 0.625rem;
}

.message__poster {
  margin-top: 0.625rem;
  position: relative;
}

.message__poster-text {
  position: absolute;
  top: 38%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  color: #FFF;
  font-weight: 700;
  font-size: 1.625rem;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .message__poster-text {
    font-size: 3.125rem;
  }
}

.message__name {
  text-align: right;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 1.25rem;
}

.message__image {
  aspect-ratio: 335/280;
}

.message__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.message__poster-image {
  margin-top: 0.625rem;
  width: 100%;
  aspect-ratio: 335/350;
}

.message__poster-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.message__video {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 1.25rem;
  margin-inline: auto;
  overflow: hidden;
}
.message__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.message__video::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.message .section-title {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  text-align: left;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.message__entry.message__entry--text {
  margin-top: -4.0625rem;
}

.section-recruit {
  margin-top: 1.5625rem;
  position: relative;
}

.recruit__label {
  font-size: 1.5rem;
  text-align: left;
  font-weight: 700;
}

.recruit__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  text-align: center;
  max-width: 31.25rem;
  margin-inline: auto;
}

.recruit__body {
  position: relative;
}

.recruit__body::after {
  content: "";
  position: absolute;
  top: -4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform-origin: center;
          transform-origin: center;
  width: 12.875rem;
  height: 16.125rem;
  background-image: url("../images/Q.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

.recruit__highlight {
  font-size: 1.5rem;
  color: red;
}

.recruit__merit {
  margin-top: 2.5rem;
}

.recruit__lead {
  font-size: 1.125rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.8;
}

.u-red {
  color: red;
  font-size: 1rem;
  font-weight: 700;
}

.recruit__list {
  counter-reset: number;
  list-style: none;
  padding: 0;
  margin-block: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.recruit__item {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.8;
  padding-left: 1.75rem;
  font-weight: 700;
  text-align: left;
  width: 100%;
  font-size: 1.125rem;
  margin-inline: auto;
}

.recruit__item::before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: -0.3125rem;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  color: #000;
}

.footer {
  margin-block: 1.4375rem 1.875rem;
  text-align: center;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.footer__logo {
  max-width: 14.375rem;
  width: 100%;
  display: block;
  margin-inline: auto;
  margin-block: 3.75rem 1.5rem;
}

.footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer__info {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 300;
  color: #000;
  line-height: 1.3125rem;
  margin-top: 1.25rem;
}

.footer__info a {
  color: #000;
  text-decoration: none;
}

.footer__links {
  font-size: 0.875rem;
  margin-top: 1.875rem;
}

.footer__links .footer__link {
  color: #000;
}

.footer__button {
  width: 100%;
  max-width: 25rem;
  margin-inline: auto;
  margin-block: 1.875rem;
}

.footer__btn {
  position: relative;
  display: block;
  padding: 0.75rem 1rem;
  padding-right: 2rem;
  text-decoration: none;
  font-size: 0.875rem;
  text-align: center;
  border: 1px solid #000;
  color: #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.footer__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.75rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 0.625rem;
  height: 0.625rem;
  border-top: solid 0.125rem #000;
  border-right: solid 0.125rem #000;
}

.footer__btn-text {
  display: inline-block;
}

.footer__copyright {
  font-size: 0.75rem;
  color: #000;
}

.section-company {
  margin-top: 1.5625rem;
}

.company__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  max-width: 37.5rem;
  width: 100%;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-block: 1rem;
  padding-inline: 0.75rem;
  position: relative;
  isolation: isolate;
}

.company__info-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 22.5rem;
          flex: 0 1 22.5rem;
  max-width: 25rem;
  position: relative;
  z-index: 2;
  margin-right: -6.25rem;
}

.company__info-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 13.125rem;
          flex: 0 0 13.125rem;
  width: 30%;
  max-width: 14.375rem;
  aspect-ratio: 150/200;
}

.company__info-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.company__image {
  margin-top: 1.25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 7.5rem;
  width: 50%;
  aspect-ratio: 150/200;
  position: relative;
  z-index: 1;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, black), color-stop(80%, black), to(transparent)), -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, black), color-stop(80%, black), to(transparent));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
          mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, black), color-stop(80%, black), to(transparent)), -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, black), color-stop(80%, black), to(transparent));
          mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(40%, black), color-stop(80%, black), to(transparent)), -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, black), color-stop(71%, black), to(transparent));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%, black 80%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 20%, black 71%, transparent 100%);
  -webkit-mask-composite: source-in;
}

.company__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.company__info-list {
  list-style: none;
  font-size: 1rem;
  line-height: normal;
  font-weight: 700;
}
@media screen and (min-width: 780px) {
  .company__info-list {
    font-size: 1.125rem;
  }
}

.company__info-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: -webkit-max-content 1fr;
  -ms-grid-columns: max-content 1fr;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  text-align: left;
  margin-top: 1.125rem;
}

.company__info-desc {
  white-space: normal;
}

.company__info-item:last-child .company__info-desc {
  white-space: nowrap;
}

.company__info-term {
  white-space: nowrap;
}

.company__sub-title {
  color: red;
  font-weight: 700;
  position: relative;
  margin-top: 2.5rem;
  font-size: 0.875rem;
}

.company__sub-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4.8125rem;
  width: 100%;
  height: 0.125rem;
  background-color: #ff9900;
  opacity: 1;
}

.company__recruit {
  margin-top: 2.5rem;
}

.company__hope {
  margin-top: 1.25rem;
}

.company__recruit-text,
.company__hope-text {
  font-size: 0.875rem;
  line-height: normal;
  font-weight: 700;
  margin-top: 0.625rem;
}

.tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.125rem;
  margin-top: 0.1875rem;
}

.tag-list__item {
  font-size: 0.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#666));
  background: linear-gradient(to bottom, #999, #666);
  padding: 0.125rem 0.3125rem;
  border-radius: 1.25rem;
  border: 1px solid #000;
  color: #FFF;
  font-weight: 300;
}

.tag-list__item.tag-list__item--detail {
  font-size: 0.8125rem;
  padding: 0.1875rem 0.625rem;
}

.staff-profile {
  font-size: 0.625rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
}

.staff-profile__name-jp {
  font-size: 0.9375rem;
}

.staff-profile__meta {
  font-size: 0.625rem;
}

.staff-profile.staff-profile--detail {
  font-size: 0.75rem;
}

.staff-profile__name-jp.staff-profile__name-jp--detail {
  font-size: 1.5rem;
}

.staff-profile__meta.staff-profile__meta--detail {
  font-size: 0.875rem;
}

.staff-detail__fv {
  text-align: center;
  position: relative;
}

.staff-detail__inner {
  max-width: 48.75rem;
  margin-inline: auto;
}

.staff-detail__image.staff-detail__image--top,
.staff-detail__image.staff-detail__image--bottom {
  width: 100%;
  aspect-ratio: 375/423;
  margin: 0;
  overflow: hidden;
}

.staff-detail__image--top picture,
.staff-detail__image--bottom picture {
  width: 100%;
  height: 100%;
  display: block;
}

.staff-detail__image--top img,
.staff-detail__image--bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.staff-detail__copy {
  position: absolute;
  top: 43%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  font-family: "Shippori Mincho", serif;
  color: #FFF;
  font-size: 2.0625rem;
  color: #FFF;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 37.5rem;
  width: 100%;
  padding-inline: 1.25rem;
}

.staff-detail__profile {
  background: #FFF;
  padding-top: 0.625rem;
}

.staff-detail__profile-inner {
  max-width: 37.5rem;
  margin-inline: auto;
}

.staff-detail__kicker,
.staff-detail__name,
.staff-detail__meta,
.staff-detail__tag {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
}

.staff-detail__name-jp {
  font-size: 1.5rem;
}

.staff-detail__meta {
  font-size: 0.875rem;
}

.staff-detail__heading {
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.625rem;
}

.staff-detail__heading-text {
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 1.25rem;
}

.staff-detail__story {
  background: #f4e5db;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

.staff-detail__story-inner {
  max-width: 37.5rem;
  margin-inline: auto;
}

.staff-detail__story-image {
  width: 100%;
  aspect-ratio: 335/223;
  -o-object-fit: cover;
     object-fit: cover;
}

.staff-detail__story-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.staff-detail__question {
  font-size: 0.9375rem;
  color: #FFF;
  margin-top: 0.9375rem;
  margin-left: 0.9375rem;
  font-weight: 700;
}

.staff-detail__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.625rem;
}

.staff-detail__question-text {
  margin-top: 1.5625rem;
  font-size: 0.75rem;
  font-weight: 400;
}

.staff-detail__message {
  background: #f4e5db;
  padding-top: 1.25rem;
}

.staff-detail__message-inner {
  max-width: 37.5rem;
  margin-inline: auto;
}

.staff-detail__lead {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.staff-detail__message-image {
  width: 100%;
  aspect-ratio: 335/211;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 0.9375rem;
}

.staff-detail__message-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.staff-detail__gallery {
  background: #f4e5db;
  padding-top: 1.25rem;
}

.staff-detail__gallery-inner {
  max-width: 37.5rem;
  margin-inline: auto;
}

.staff-detail__gallery-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin-top: 0.9375rem;
}

.staff-detail__gallery-image {
  margin: 0;
  width: calc((100% - 0.5rem) / 2);
  aspect-ratio: 160/120;
  overflow: hidden;
}

.staff-detail__gallery-image picture {
  width: 100%;
  height: 100%;
  display: block;
}

.staff-detail__gallery-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.staff-detail__gallery-image--top img {
  -o-object-position: center top;
     object-position: center top;
}

.staff-detail__back {
  text-align: center;
}

.staff-detail__back-link {
  font-size: 0.875rem;
  text-decoration: underline;
}

.staff-detail__back-image {
  width: 8.75rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}
