@charset "utf-8";

/* MV
----------------------------------------------------------------------------------------------------*/
.mv-top {
  position: relative;
  width: 100%;
  background-color: #FFF;
  margin-top: 15rem;
}

.mv-top__bg {
  position: absolute;
}

.mv2__image1 {
  position: absolute;
  left: calc(30 / 1920 * 100%);
  top: 0;
  width: calc(596.1899 / 1920 * 100%);
}

.mv2__image2 {
  position: absolute;
  left: calc(438 / 1920 * 100%);
  top: calc(98 / 680 * 100%);
  width: calc(596.1899 / 1920 * 100%);
}

.mv-top__title {
  position: absolute;
  left: calc(308 / 1920 * 100%);
  top: calc(90 / 680 * 100%);
  width: calc(460 / 1920 * 100%);
}

/* MV アニメーション */
.mv2-scene {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.mv2-scene.active {
  opacity: 1;
}

@keyframes topfadeDownAnime {
  0% {
    opacity: 0;
    transform: translate(50px, -100px);
  }

  30% {
    opacity: 1;
    transform: translate(0, 0);
  }

  70% {
    opacity: 1;
    transform: translate(0, 0);
  }

  100% {
    opacity: 0;
    transform: translate(-50px, 100px);
  }
}

@keyframes topfadeUpAnime {
  0% {
    opacity: 0;
    transform: translate(-50px, 100px);
  }

  30% {
    opacity: 1;
    transform: translate(0, 0);
  }

  70% {
    opacity: 1;
    transform: translate(0, 0);
  }

  100% {
    opacity: 0;
    transform: translate(50px, -100px);
  }
}

.topfadeDown {
  animation-name: topfadeDownAnime;
  animation-duration: 0s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.topfadeUp {
  animation-name: topfadeUpAnime;
  animation-duration: 0s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.change-time5 {
  animation-duration: 5s;
}

.mv-top {
  content: "";
  display: block;
  padding-bottom: calc(680 / 1920 * 100%);
}

@media screen and (max-width: 1367px) {
  .mv-top {
    margin-top: 10rem;
  }
}

@media screen and (max-width: 767px) {
  .mv-top {
    padding-bottom: calc(546 / 375 * 100%);
    margin-top: 8.5rem;
    overflow-x: hidden;
  }

  .mv2__image1 {
    position: absolute;
    left: calc(15 / 390 * 100%);
    top: 0;
    width: calc(296.3517 / 390 * 100%);
    max-width: none;
  }

  .mv2__image2 {
    position: absolute;
    left: calc(217 / 390 * 100%);
    top: calc(48 / 546 * 100%);
    width: calc(296.3517 / 390 * 100%);
    max-width: none;
    transform: none;
  }

  .mv-top__title {
    position: absolute;
    left: calc(145 / 390 * 100%);
    top: calc(45 / 546 * 100%);
    width: calc(228 / 390 * 100%);
  }
}

/* Section - Common
----------------------------------------------------------------------------------------------------*/
.main {
  text-align: left;
}

.sec-title {
  display: flex;
  align-items: center;
  margin: 0 auto 3rem;
}

.sec-title__en {
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  margin-left: 1.8rem;
  background: #60B867;
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 2rem;
  height: 2.8rem;
  /* 平行四辺形のための変形 */
  transform: skew(-20deg);
  /* 左上が上がる形に傾ける */
}

/* 中のテキストを逆に傾けてまっすぐにする */
.sec-title__en>* {
  transform: skew(20deg);
}

.sec-title__jp {
  color: #000;
  font-size: 3rem;
  font-weight: 700;
}

.sec-title__copy {
  margin-bottom: 3rem;
  font-size: 3.5rem;
  font-weight: 600;
  text-align: left;
}

.sec-title__text {
  margin-bottom: 3rem;
  font-size: 2rem;
  text-align: left;
  line-height: 1.75;
  font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
}

.sec-link__button {
  display: inline-block;
  border: 2px solid #006CB8;
  background: #FFF;
  transition: background-color 0.3s ease;
  overflow: hidden;
}

.sec-link__button a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 29rem;
  padding: 0 3rem 0 0;
  color: #006CB8;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* 左の斜めの緑帯 */
.sec-link__button .slant {
  width: 20px;
  height: 60px;
  background: #6CBB63;
  clip-path: polygon(0 0, 100% 0, 0% 100%);
  flex-shrink: 0;
  margin-right: 1rem;
}

/* テキスト */
.sec-link__button .text {
  position: relative;
  z-index: 1;
}

/* ホバー時の色変更 */
.sec-link__button:hover {
  background: #006CB8;
}

.sec-link__button:hover .text {
  color: #FFF;
}

@media screen and (max-width: 1367px) {
  .sec-title__copy {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 1024px) {
  .sec-title__jp {
    margin-bottom: 0;
  }

  .sec-title__copy {
    margin-bottom: 2rem;
    font-size: 2.3rem;
  }

  .sec-title__text {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .sec-title {
    margin: 0 auto 2rem;
  }

  .sec-title__en {
    padding: 0 0.5rem;
    font-size: 1.2rem;
    height: 1.3rem;
  }

  .sec-title__jp {
    font-size: 1.8rem;
  }

  .sec-title__copy {
    margin-bottom: 2rem;
    font-size: 2rem;
  }

  .sec-title__text {
    font-size: 1.8rem;
  }

  .sec-link__button a {
    width: 24rem;
    font-size: 1.6rem;
  }
}

/* Section Company
----------------------------------------------------------------------------------------------------*/
.sec-company {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 6rem);
  margin: 0 auto 4rem;
  text-align: left;
}

.sec-company__left {
  width: 100%;
  max-width: 76rem;
  margin: 0 auto;
}

.sec-company .sec-title__text {
  max-width: 60rem;
}

.sec-company .sec-title__image {
  width: 90.7rem;
  height: 67.7rem;
  margin: 0 auto;
  overflow: hidden;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.sec-company .sec-title__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

@media screen and (max-width: 1367px) {
  .sec-company {
    width: 100%;
    margin: 0 auto 4rem;
    text-align: left;
  }

  .sec-company__left {
    width: 100%;
    margin: 0 auto 0 3rem;
  }

  .sec-company__right {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
}

@media screen and (max-width: 1023px) {
  .sec-company .sec-title__image {
    width: 75.7rem;
    height: 52.7rem;
  }

  .sec-company__left {
    width: 55%;
  }

  .sec-company__right {
    width: 45%;
  }
}

@media screen and (max-width: 767px) {
  .sec-company {
    flex-direction: column;
    width: 100%;
    margin: 0 auto 4rem;
    text-align: left;
  }

  .sec-company__left {
    width: 100%;
    padding: 0 3rem;
    margin: 0;
  }

  .sec-company__right {
    position: relative;
    min-height: 37rem;
    width: 100%;
    margin-top: 5rem;
  }

  .sec-company .sec-title__image {
    position: absolute;
    top: 0;
    left: -15rem;
    width: 49.5rem;
    height: 37rem;
  }
}

/* Section business
----------------------------------------------------------------------------------------------------*/
.sec-business {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 5rem;
}

.sec-business__right {
  width: calc(945 / 1920 * 100%);
  margin-top: 16rem;
}

.sec-business__right .sticky-item {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 54vw;
  background: url("../img/bg_foot_business.png") no-repeat bottom right;
  background-size: 80%;
}

.sec-business__left {
  width: calc(789 / 1920 * 100%);
  background: url("../img/bg_top_business.png") no-repeat;
  background-size: 240%;
  padding-top: 8.5rem;
}

.business-box__item {
  margin-bottom: 4rem;
}

.business-box__image {
  position: relative;
}

.business-box__image figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-right: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: #FFF;
  font-size: 3rem;
  font-weight: 700;
  transition: 0.5s;
  gap: 2rem;
  /* ラインと文字の間隔 */
}

/* ラインのスタイル */
.caption-line {
  display: block;
  width: 28.7rem;
  height: 0.2rem;
  background-color: #fff;
}

/* テキストのスタイル（必要に応じて分離） */
.caption-text {
  white-space: nowrap;
}

/* ホバー時の挙動も適用可能 */
.business-box__image figcaption:hover {
  background: rgba(255, 255, 255, 0.26);
  color: #000;
}

.business-box__image figcaption:hover .caption-line {
  background-color: #000;
}

@media screen and (max-width: 1367px) {
  .sec-business__right {
    width: 53%;
    margin-top: 1rem;
  }

  .sec-business__right .sticky-item {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    height: 95vw;
    background: url("../img/bg_foot_business.png") no-repeat bottom right;
    background-size: 80%;
  }

  .sec-business__left {
    width: 43%;
    background: url("../img/bg_top_business.png") no-repeat;
    background-size: 240%;
    padding-top: 8.5rem;
  }

  .business-box__image figcaption {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 1023px) {
  .sec-business__right .sticky-item {
    padding-right: 3rem;
  }

  .business-box__image figcaption {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .sec-business {
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    margin-bottom: 5rem;
  }

  .sec-business__right {
    width: 100%;
    padding: 0 3rem;
    margin-top: 0;
  }

  .sec-business__right .sticky-item {
    position: static;
    top: 0;
    width: 100%;
    height: auto;
    background: none;
    background-size: 80%;
    padding-right: 0;
  }

  .sec-business__left {
    position: relative;
    width: 100%;
    background-size: 185%;
    margin-top: 0;
    padding-top: 2rem;
  }

  .sec-business__left .business-box {
    background: url("../img/bg_foot_business.png") no-repeat bottom right;
    background-size: 110%;
    padding-bottom: 15rem;
  }

  .business-box__item {
    margin: 0 3rem 2rem;
  }

  .business-box__image figcaption {
    padding-right: 1rem;
    font-size: 1.6rem;
    gap: 1rem;
    /* ラインと文字の間隔 */
  }

  .caption-line {
    display: block;
    width: 10rem;
    height: 0.2rem;
    background-color: #fff;
  }
}

.hero-button {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 270px;
  overflow: hidden;
}

.hero-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5);
  /* 少し暗くして文字を目立たせる */
}

.hero-button .overlay {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-button .line {
  width: 200px;
  height: 2px;
  background-color: #FFF;
}

.hero-button .text {
  color: #FFF;
  font-size: 2rem;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .hero-button {
    max-width: 330px;
    height: 160px;
  }
}

/* Section Product
----------------------------------------------------------------------------------------------------*/
.sec-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  width: calc(100% - 6rem);
  margin: 0 auto;
  text-align: left;
}

.sec-product__left {
  width: 100%;
  max-width: 76rem;
  margin: 0 auto;
}

.sec-product .sec-title__text {
  max-width: 60rem;
}

.sec-product__right .sec-title__image {
  width: 90.7rem;
  height: 67.7rem;
  margin: 0 auto;
  overflow: hidden;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.sec-product__right .sec-title__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

@media screen and (max-width: 1367px) {
  .sec-product {
    width: 100%;
    margin: 0 auto 4rem;
    text-align: left;
  }

  .sec-product__left {
    width: 55%;
  }

  .sec-product__right {
    position: relative;
    width: 40%;
    min-height: 68rem;
  }

  .sec-product__right .sec-title__image {
    position: absolute;
    top: 0;
    left: -55rem;
  }
}

@media screen and (max-width: 1023px) {
  .sec-product__left {
    width: 55%;
    padding-right: 3rem;
  }

  .sec-product__right {
    position: relative;
    min-height: 60rem;
    width: 45%;
    margin-top: 5rem;
  }

  .sec-product__right .sec-title__image {
    position: absolute;
    top: 0;
    left: -45rem;
    width: 75.7rem;
    height: 52.7rem;
  }
}

@media screen and (max-width: 767px) {
  .sec-product {
    flex-direction: column;
    width: 100%;
    margin: 0 auto 4rem;
    text-align: left;
  }

  .sec-product__left {
    width: 100%;
    padding: 0 3rem;
    margin: 0;
  }

  .sec-product__right {
    position: relative;
    min-height: 37rem;
    margin-top: 5rem;
  }

  .sec-product__right .sec-title__image {
    position: absolute;
    top: 0;
    left: -27rem;
    width: 49.5rem;
    height: 37rem;
  }
}

/* Section News
----------------------------------------------------------------------------------------------------*/
.sec-news {
  width: 100%;
  margin-top: 12rem;
  background: url("../img/bg_top_news.png") no-repeat;
  background-size: contain;
}

.sec-news__head {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 123rem;
  margin: 0 19rem 2.5rem auto;
}

.sec-news__head .sec-title {
  width: 25rem;
  margin: 0;
}

.sec-news__body {
  width: 100%;
  max-width: 123rem;
  margin: 0 19rem 2.5rem auto;
}

.sec-news .sec-title {
  margin-top: 0;
  text-align: left;
}

.newsList {
  width: 100%;
  max-width: 123rem;
  margin: 0;
  padding: 0;
}

ul.newsList {
  list-style-type: none;
}

.newsList li {
  border-top: 1px solid #CCC;
  text-align: left;
}

.newsList li:last-child {
  border-bottom: 1px solid #CCC;
}

.newsList li a {
  display: block;
  min-width: 110rem;
  color: #333333;
  text-decoration: none;
  transition: .5s;
}

.newsList li a:hover {
  background-color: #006CB8;
  color: #FFF;
}

.newsList li .label {
  background: #FCC454;
  padding: 0;
  margin-right: 2rem;
  width: 9rem;
  border-radius: 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

.newsList li .link {
  display: block;
  padding: 3rem 1rem;
}

.newsList .note {
  display: block;
  padding: 0 2rem;
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: top;
  word-wrap: break-word;
}

.newsList .date {
  width: 22.7rem;
  padding-left: 2rem;
  margin-right: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  word-wrap: break-word;
}

@media screen and (max-width: 1580px) {
  .sec-news {
    padding: 0 2rem 0 30rem;
  }

  .newsList li .link {
    display: block;
    padding: 2rem 1rem;
  }
}

@media screen and (max-width: 1367px) {
  .sec-news {
    background: url("../img/bg_top_news.png") no-repeat;
    background-size: 200%;
    padding: 0 2rem 0 30rem;
  }

  .newsList {
    width: 100%;
    max-width: inherit;
    margin: 0 auto;
    padding: 0;
  }

  .newsList li a {
    min-width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .sec-news {
    background: url("../img/bg_top_news.png") no-repeat;
    background-size: 180%;
    padding: 0 2rem 0 20rem;
  }
}

@media screen and (max-width: 767px) {
  .sec-news {
    flex-direction: column;
    width: calc(100% - 6rem);
    background: none;
    padding: 0;
    margin: 0 auto 4rem;
    text-align: left;
  }

  .sec-news__left {
    width: 100%;
  }

  .sec-news__right {
    max-width: 33rem;
    margin: 0 auto;
  }

  .sec-news .sec-title {
    margin-bottom: 0;
    text-align: center;
  }

  .sec-news__left .sec-title__image {
    position: absolute;
    top: 14rem;
    left: 0;
  }

  .sec-news__left .sec-title__image img {
    width: 100%;
    max-width: 34rem;
  }

  .newsList {
    max-width: 100%;
    margin: 0 0 3rem;
  }

  .newsList li a {
    min-width: 33rem;
  }

  .newsList li .link {
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* justify-content: space-between; */
    padding: 1.5rem 1rem;
  }

  .newsList li .label {
    padding: 0;
    margin-right: 0;
    width: 12rem;
    font-size: 1.6rem;
  }

  .newsList .note {
    display: block;
    padding: 0;
    margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0;
    vertical-align: top;
    word-wrap: break-word;
  }

  .newsList .date {
    /* width: 50%; */
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
    font-size: 1.6rem;
  }

  .sec-news .sec-link__button {
    justify-content: center;
    width: 29rem;
    margin-bottom: 3rem;
  }
}

/* Section Recruit
----------------------------------------------------------------------------------------------------*/
.sec-recruit {
  position: relative;
  width: 100%;
  min-height: 78.3rem;
  margin-top: 12rem;
  background: #006CB8;
  color: #FFF;
  text-align: left;
}

.sec-recruit__left {
  position: sticky;
  z-index: 90;
  width: 100%;
  max-width: 60rem;
  padding-top: 10rem;
  margin-left: 10rem;
}

.sec-recruit__right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

.sec-recruit .sec-title__jp {
  color: #FFF;
}

.sec-recruit .sec-title__en {
  background: #FC9023;
}

.sec-recruit .sec-title__image {
  width: 126.9rem;
  height: 78.3rem;
  overflow: hidden;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.sec-recruit .sec-title__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

@media screen and (max-width: 1367px) {
  .sec-recruit {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    min-height: 60rem;
    margin-top: 12rem;
  }

  .sec-recruit__left {
    position: sticky;
    z-index: 90;
    width: 50%;
    max-width: inherit;
    padding-top: 2.5rem;
    margin-left: 2.5rem;
  }

  .sec-recruit__right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 50%;
    overflow: hidden;
  }

  .sec-recruit .sec-title__image {
    width: 126.9rem;
    height: 60rem;
    overflow: hidden;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  }
}

@media screen and (max-width: 1023px) {
  .sec-recruit {
    margin-top: 6rem;
  }

  .sec-recruit__left {
    width: 46%;
  }

  .sec-recruit__right {
    width: 54%;
  }

  .sec-recruit .sec-title__image {
    width: 70rem;
  }
}

@media screen and (max-width: 767px) {
  .sec-recruit {
    flex-direction: column;
    width: 100%;
    margin: 0 auto 4rem;
    text-align: left;
    min-height: auto;
    margin-top: 0;
  }

  .sec-recruit__left {
    position: inherit;
    z-index: 100;
    width: 100%;
    max-width: 33rem;
    padding-top: 3rem;
    margin: 0 auto;
  }

  .sec-recruit__right {
    position: inherit;
    overflow: hidden;
    width: 100%;
    margin-top: 4.5rem;
  }

  .sec-recruit .sec-title__image {
    width: 47.5rem;
    height: 35.5rem;
    margin-left: 3rem;
  }
}




/*-------------------------------------
ニュース
-------------------------------------*/
.chip__notice::after {
  content: "お知らせ";
  padding: 2px 20px;
  margin: 0 0 0 20px;
  font-size: 1.6rem;
  background: #fcc454;
}

.chip__info::after {
  content: "商品情報";
  padding: 2px 20px;
  margin: 0 0 0 20px;
  font-size: 1.6rem;
  background: #fcc454;
}

.chip__event::after {
  content: "イベント";
  padding: 2px 20px;
  margin: 0 0 0 20px;
  font-size: 1.6rem;
  background: #fcc454;
}