@charset "UTF-8";
/* 
---------------------------------------
WEBフォント追加
---------------------------------------
*/
@font-face {
  font-family: "Unbounded";
  /*要素に指定するときに使うフォント名*/
  src: url("../fonts/unbounded.woff2") format("woff2"), url("../fonts/unbounded.woff") format("woff");
  font-display: swap;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, header, footer, section, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-y: scroll;
  font-size: 62.5%;
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

img {
  height: auto;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: top;
}

th {
  text-align: left;
}

li {
  list-style: none;
}

a {
  will-change: transform, opacity;
  outline: none;
  color: #333333;
  text-decoration: none;
}

address {
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #fe9db0;
  color: #000000;
  font-size: 1.4rem;
  line-height: 2;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  transition: 0.5s ease;
}
@media screen and (max-width: 834px) {
  body {
    font-size: 1.4rem;
  }
}

.inner {
  max-width: 1580px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .inner {
    width: 100%;
  }
}

.s-inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.sp {
  display: none;
}
@media screen and (max-width: 834px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 834px) {
  .pc {
    display: none;
  }
}

.vertical {
  writing-mode: vertical-rl;
}

.fadein.scroll-activate {
  transition: all 0.8s ease-out;
  transform: scale(1, 1) translate3d(0, 30px, 0);
  opacity: 0;
}

.fadein.scroll-activate.active {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  transform: scale(1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

.detail-btn {
  display: flex;
  align-items: center;
  gap: 0 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  font-family: "Unbounded";
}
@media screen and (max-width: 834px) {
  .detail-btn {
    width: auto;
    font-size: 16px;
  }
}
.detail-btn .circle {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
}
@media screen and (max-width: 834px) {
  .detail-btn .circle {
    width: 40px;
    height: 40px;
  }
}
.detail-btn .circle img {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 834px) {
  .detail-btn .circle img {
    width: 10px;
    height: 10px;
  }
}

.detail-btn:hover .circle {
  transition: 0.5s ease;
  transform: translateX(7px);
}

@media screen and (max-width: 1400px) and (min-width: 835px) {
  br.tab {
    display: none;
  }
}

.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1e1e1e;
  z-index: 9999;
  animation: byeShutter 2.6s forwards;
}
.shutter::before, .shutter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.shutter::before {
  background-color: #fe9db0;
  width: 0;
  height: 1px;
  animation: shutterOpen1 2.6s forwards;
}
.shutter::after {
  width: 120%;
  height: 0;
  margin-left: -10%;
  background-color: #f3f3f3;
  animation: shutterOpen2 2.6s forwards;
}

.index-main {
  animation: contentScale 2.6s forwards;
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterOpen1 {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes shutterOpen2 {
  60% {
    width: 120%;
    height: 0;
    transform: rotate(5deg);
  }
  90% {
    width: 120%;
    height: 100%;
    transform: rotate(-5deg);
  }
  100% {
    width: 120%;
    height: 100%;
    transform: rotate(-5deg);
  }
}
@keyframes contentScale {
  70% {
    transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    transform: perspective(800px) scale(1) rotateX(0);
  }
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 37px 3% 10px 20px;
  position: absolute;
  background: transparent;
  width: 100%;
  transition: background-color 0.3s, color 0.3s;
  z-index: 1000;
}
@media screen and (min-width: 835px) {
  .header {
    margin: 0 0 0 auto;
    position: fixed;
    top: 0;
    right: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
  }
}
@media screen and (max-width: 834px) {
  .header {
    width: 100%;
    flex-direction: row;
    top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    right: 0;
    left: 0;
    padding: 0 5%;
    position: fixed;
  }
}
.header .header-left {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media screen and (max-width: 834px) {
  .header .header-left {
    width: 22%;
    max-width: 70px;
  }
}
.header .header-right {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 835px) {
  .header.hidden {
    transform: translateY(-100%);
    /* 上部に隠す */
    opacity: 0;
  }
}
@keyframes headerShowUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 834px) {
  .logo img {
    width: 200px;
  }
}

.haeder-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
}
@media screen and (max-width: 1200px) {
  .haeder-left {
    width: 80%;
  }
}
@media screen and (max-width: 834px) {
  .haeder-left {
    width: fit-content;
  }
}

.header-nav {
  width: 85%;
}
@media screen and (max-width: 834px) {
  .header-nav {
    display: none;
  }
}

.header__nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0 30px;
}

.header__nav a {
  text-align: right;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.3rem;
  font-family: "Unbounded";
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.header__nav li {
  line-height: 1;
}

.header__nav a:hover {
  opacity: 0.6;
}

.reserve-btn {
  background-color: #FF5885;
  border-radius: 20px;
  color: #fff !important;
  line-height: 1;
  padding: 9px 30px;
  font-size: 13px;
  font-family: "Unbounded";
}
@media screen and (max-width: 834px) {
  .reserve-btn {
    font-size: 12px;
    padding: 9px 20px;
  }
}

.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  position: relative;
  z-index: 1000;
  border-radius: 35px;
  padding: 13px 24px;
}
@media screen and (max-width: 834px) {
  .hamburger {
    padding: 13px 10px;
  }
}

.hamburger__line {
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s ease, background-color 0.3s ease;
  width: 20px;
  background-color: #333333;
}
.hamburger.open .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  background-color: #fff;
}

.hamburger.open .hamburger__line:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -2px);
  background-color: #fff;
}

.hamburger.open .hamburger__line:nth-child(3) {
  display: none;
}

body.shade {
  position: relative;
  touch-action: none;
}
body.shade::before {
  content: "";
  position: absolute;
  z-index: 997;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100%;
  top: -10vh;
  right: 0;
  transition: 0.5s ease;
}

body.no-scroll {
  position: fixed;
  overflow: hidden;
  width: 100%;
  touch-action: none;
}

body.shade::before {
  content: "";
  position: fixed;
  z-index: 997;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  transition: 0.5s ease;
  pointer-events: none;
}

.shade-click-layer {
  display: none;
  position: fixed;
  z-index: 996;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.shade-click-layer.active {
  display: block;
  cursor: pointer;
}

.menu-overlay {
  padding: 45px 2%;
  position: fixed;
  width: 460px;
  right: -60%;
  top: 0;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  color: #3D5877;
  transition: top 0.3s ease;
  background-color: #FF5885;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 834px) {
  .menu-overlay {
    width: 100%;
    top: -150%;
    left: 0;
    right: auto;
  }
}

.menu-overlay.open {
  right: 0;
  top: 0;
}
@media screen and (max-width: 834px) {
  .menu-overlay.open {
    top: 0;
    right: auto;
  }
}

@media screen and (max-width: 834px) {
  .menu-overlay .logo {
    width: 20%;
  }
}

.hamburger-nav {
  margin-top: clamp(3rem, 2vh, 9rem);
  color: #fff;
  width: 100%;
}

.global-navigation__list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vh, 3rem) 0;
  padding-bottom: 3rem;
  border-bottom: 1px solid #FE9DB0;
}
.global-navigation__list a {
  display: flex;
  color: #fff;
  flex-direction: column;
  align-items: center;
  gap: 0 10px;
}
.global-navigation__list a span.en {
  display: block;
  font-size: 21px;
  font-family: "Unbounded";
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .global-navigation__list a span.en {
    font-size: 18px;
  }
}
.global-navigation__list a span.ja {
  font-size: 12px;
  font-weight: 500;
}

.sub-menu {
  margin-top: 3rem;
  display: flex;
  gap: 0 3rem;
}
@media screen and (max-width: 834px) {
  .sub-menu {
    margin-top: 1.5rem;
  }
}
.sub-menu a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .sub-menu a {
    font-size: 12px;
  }
}

.line-btn {
  margin-top: 3rem;
  border-radius: 10px;
  background-color: #01B301;
  width: 100%;
  padding: 15px 0;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .line-btn {
    margin-top: 1.5rem;
  }
}
.line-btn .banner__lead {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}
.line-btn .banner__title {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .line-btn .banner__title {
    font-size: 20px;
  }
}

.contact-btn {
  margin-top: 3rem;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
}
@media screen and (max-width: 834px) {
  .contact-btn {
    margin-top: 1.5rem;
  }
}

.mv-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  background: #ff9db0;
  overflow: hidden;
}

.heart01 {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: #fff;
  opacity: 0.1;
}

.heart02 {
  fill: #fff;
  opacity: 0.5;
}

.heart03 {
  fill: #fff;
  opacity: 0.8;
}

.heart04 {
  fill: #fff;
  opacity: 0.2;
}

.heart05 {
  fill: #fff;
  opacity: 0.3;
}

svg {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  transform: translateZ(0px);
}

.indexd-main {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.mv {
  position: relative;
  height: 89vh;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-width: 1200px;
  padding: 10rem 0 0;
  margin: 0 auto 6rem;
}
@media screen and (min-width: 1700px) {
  .mv {
    height: 69vh;
    max-width: 1500px;
  }
}
@media (max-width: 835px) {
  .mv {
    padding: 0;
    margin: 7.6rem auto 0;
    flex-wrap: wrap;
    height: 90vh;
    gap: 20px 10px;
    align-items: anchor-center;
  }
}
@media (max-width: 480px) {
  .mv {
    padding: 0;
    margin: 7.6rem auto 0;
    flex-wrap: wrap;
    height: 90vh;
    gap: 20px 10px;
    align-items: anchor-center;
    max-height: 600px;
  }
}
.mv__main-text {
  width: 40%;
  position: relative;
  z-index: 5;
}
.mv .mv-picture {
  margin-left: -4vw;
  width: 35%;
}
@media screen and (max-width: 834px) {
  .mv .mv-picture {
    width: 69%;
    position: relative;
    z-index: 1;
  }
}
.mv .mv-picture picture {
  display: block;
  transform: scale(1.2);
}
@media screen and (max-width: 834px) {
  .mv .mv-picture picture {
    transform: scale(1.1);
  }
}
.mv .mv-picture img {
  display: block;
  transform: scale(1.2);
}
@media screen and (max-width: 834px) {
  .mv .mv-picture img {
    transform: scale(1);
  }
}
.mv .mv-point {
  width: 25%;
}
@media screen and (max-width: 834px) {
  .mv .mv-point {
    width: 30%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
  }
}
.mv .mv-point li {
  display: flex;
  justify-content: center;
}
.mv .mv-point picture {
  display: block;
}
.mv .mv-point img {
  max-width: 220px;
  height: auto;
}
@media screen and (max-width: 834px) {
  .mv .mv-point img {
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .mv .mv-picture.pc,
  .mv .mv-point.pc {
    display: none;
  }
}
.mv .mv__under-wrap.sp {
  display: none;
}
@media screen and (max-width: 834px) {
  .mv .mv__under-wrap.sp {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.mv .contents {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
@media screen and (max-width: 834px) {
  .mv__main-text {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.mv__main-text .mv-lead {
  margin-bottom: 4%;
}
@media screen and (max-width: 834px) {
  .mv__main-text .mv-lead {
    display: none;
  }
}
@media screen and (max-height: 700px) {
  .mv__main-text .mv-title img {
    height: 110px;
    width: auto;
  }
}
.mv__main-text.mv-fadein.scroll-activate {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 0.8s;
  transition-delay: 0.2s;
}
@media screen and (max-width: 834px) {
  .mv__main-text.mv-fadein.scroll-activate {
    transform: translate(-50%, -50%) translateY(30px);
    -webkit-transform: translate(-50%, -50%) translateY(30px);
    -ms-transform: translate(-50%, -50%) translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
  }
}
.mv__main-text.mv-fadein.scroll-activate.active {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 834px) {
  .mv__main-text.mv-fadein.scroll-activate.active {
    transform: translate(-50%, -20%) translateY(0);
    opacity: 1;
  }
}

.mv-catch {
  margin-top: 3rem;
}
@media screen and (max-width: 834px) {
  .mv-catch {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 834px) {
  .mv-catch .mv-company-logo {
    display: none;
  }
}
.mv-catch .mv-company-logo img {
  filter: invert(100%);
}
.mv-catch .mv-company-description {
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .mv-catch .mv-company-description {
    font-size: 12px;
    text-align: center;
  }
}

.mv.active {
  animation: mvShowUp 1s 1.5s ease-out forwards;
}

@keyframes mvShowUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.about {
  overflow: hidden;
  position: relative;
  padding: 40px 0 15rem;
  background-color: #FF5885;
  border-radius: 60px;
  z-index: 5;
}
@media screen and (max-width: 834px) {
  .about {
    border-radius: 30px;
    z-index: 5;
    padding: 40px 0 40rem;
  }
}
.about__title-en {
  margin: 0 50px;
  text-align: center;
  color: #FE9DB0;
  font-size: clamp(8rem, 9vw, 15rem);
  font-weight: 600;
  font-family: "Unbounded";
  line-height: 1.3;
  border-bottom: 1px solid #FE9DB0;
}
@media screen and (max-width: 834px) {
  .about__title-en {
    font-size: 4rem;
    margin: 0 5%;
  }
}
.about__text-wrap {
  margin-top: 8.6rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 834px) {
  .about__text-wrap {
    margin-top: 3rem;
  }
}
.about__text-wrap .about__title {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 2.7rem;
}
@media screen and (max-width: 834px) {
  .about__text-wrap .about__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}
.about__text-wrap .text {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 4rem;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .about__text-wrap .text {
    font-size: 1.4rem;
  }
}
.about__picture {
  position: absolute;
  right: 12%;
  bottom: -28rem;
  transform: rotate(-34deg);
  -webkit-transform: rotate(-34deg);
}
@media screen and (max-width: 1350px) and (min-width: 1000px) {
  .about__picture {
    right: 0;
  }
}
@media screen and (max-width: 999px) and (min-width: 835px) {
  .about__picture {
    right: -20%;
    bottom: -28rem;
  }
}
@media screen and (max-width: 834px) and (min-width: 700px) {
  .about__picture {
    right: -20%;
    bottom: 2rem;
  }
}
@media screen and (max-width: 699px) {
  .about__picture {
    right: -50%;
    bottom: -18rem;
  }
}
@media screen and (max-width: 1350px) and (min-width: 1000px) {
  .about__picture .item-wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 999px) and (min-width: 835px) {
  .about__picture .item-wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 834px) and (min-width: 700px) {
  .about__picture .item-wrapper {
    width: 70%;
  }
}
@media screen and (max-width: 699px) {
  .about__picture .item-wrapper {
    width: 60%;
  }
}
.about__picture img {
  filter: drop-shadow(-47px 92px 45px rgba(0, 0, 0, 0.3)) !important;
}

.what-is-liver {
  margin-top: 80px;
  background-color: #fff;
  border-radius: 60px;
  padding: 19rem 0 8rem;
  position: relative;
}
@media screen and (max-width: 834px) {
  .what-is-liver {
    border-radius: 30px;
    margin-top: 40px;
    padding: 14rem 0 8rem;
  }
}
.what-is-liver__loop {
  position: absolute;
  width: 100%;
  top: 40px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .what-is-liver__loop {
    bottom: 225px;
  }
}
.what-is-liver__loop .loop-track {
  display: flex;
  width: 4500px;
  animation: scroll-loop 60s linear infinite;
}
.what-is-liver__loop .loop-slide {
  flex-shrink: 0;
  padding-right: 5px;
  width: 1500px;
  max-width: unset;
}
@media screen and (max-width: 834px) {
  .what-is-liver__loop .loop-slide {
    max-width: 600px;
  }
}
.what-is-liver__info1 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 834px) {
  .what-is-liver__info1 {
    width: 100%;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 3rem 0;
  }
}
.what-is-liver__info1 .info1__picture-box {
  position: absolute;
  width: 50%;
  left: 0;
}
@media screen and (max-width: 834px) {
  .what-is-liver__info1 .info1__picture-box {
    position: relative;
    left: auto;
    width: 75%;
    margin: 0 auto;
  }
}
.what-is-liver__info1 .info1__picture-box .info__image1 {
  transform: rotate(344deg);
  display: block;
  width: 90%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1250px) {
  .what-is-liver__info1 .info1__picture-box .info__image1 img {
    width: 40%;
  }
}
@media screen and (max-width: 834px) {
  .what-is-liver__info1 .info1__picture-box .info__image1 {
    width: 50%;
  }
  .what-is-liver__info1 .info1__picture-box .info__image1 img {
    width: 100%;
  }
}
.what-is-liver__info1 .info1__picture-box .info__image2 {
  position: absolute;
  width: 90%;
  transform: rotate(21deg);
  display: block;
  bottom: -45%;
  z-index: 2;
  right: -25%;
}
@media screen and (max-width: 1250px) {
  .what-is-liver__info1 .info1__picture-box .info__image2 img {
    width: 40%;
  }
}
@media screen and (max-width: 834px) {
  .what-is-liver__info1 .info1__picture-box .info__image2 {
    width: 50%;
    bottom: -25%;
    right: -5%;
  }
  .what-is-liver__info1 .info1__picture-box .info__image2 img {
    width: 100%;
  }
}
.what-is-liver__info1 .info1__text-box {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .what-is-liver__info1 .info1__text-box {
    width: 100%;
  }
}
.what-is-liver__info1 .info1__text-box .info1__title-box {
  position: relative;
}
.what-is-liver__info1 .info1__text-box .info1__lead {
  font-size: 2.4rem;
  color: #FF5885;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .what-is-liver__info1 .info1__text-box .info1__lead {
    font-size: 1.8rem;
  }
}
.what-is-liver__info1 .info1__text-box .what-is-liver__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media screen and (max-width: 834px) {
  .what-is-liver__info1 .info1__text-box .what-is-liver__title {
    font-size: 2.5rem;
  }
}
.what-is-liver__info1 .info1__text-box .circle {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  width: 120px;
  height: 120px;
  background-color: #FF5885;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .what-is-liver__info1 .info1__text-box .circle {
    width: 95px;
    height: 95px;
    font-size: 14px;
    margin-top: -30px;
  }
}
.what-is-liver__info1 .info1__text-box span {
  font-size: 14px;
}
@media screen and (max-width: 834px) {
  .what-is-liver__info1 .info1__text-box span {
    font-size: 12px;
  }
}
.what-is-liver__info1 .info1__text-box .text {
  font-weight: 400;
}
.what-is-liver__streeming {
  margin-top: 92px;
  background-color: #F5F5F5;
  border-radius: 20px;
  padding: 6rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .what-is-liver__streeming {
    margin-top: 108px;
    border-radius: 10px;
    padding: 3rem 5%;
    flex-direction: column;
    gap: 3rem 0;
  }
}
.what-is-liver__streeming .streeming__title-box {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .what-is-liver__streeming .streeming__title-box {
    width: 100%;
  }
}
.what-is-liver__streeming .streeming__title {
  font-size: 24px;
  color: #FF5885;
  font-weight: 700;
  border-bottom: 1px solid #E4E4E4;
  margin-bottom: 2rem;
}
@media screen and (max-width: 834px) {
  .what-is-liver__streeming .streeming__title {
    font-size: 2rem;
  }
}
.what-is-liver__streeming .streeming__lead {
  font-size: 21px;
  font-weight: 600;
}
@media screen and (max-width: 834px) {
  .what-is-liver__streeming .streeming__lead {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}
.what-is-liver__streeming .text {
  font-size: 14px;
  font-weight: 400;
}
.what-is-liver__streeming .streeming__icture-box {
  width: 42%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 834px) {
  .what-is-liver__streeming .streeming__icture-box {
    width: 100%;
    align-items: center;
  }
}
.what-is-liver__streeming .streeming__icture-box .streeming__picture {
  background-color: #fff;
  padding: 20px 40px;
  border-radius: 10px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 834px) {
  .what-is-liver__streeming .streeming__icture-box .streeming__picture {
    padding: 10px 20px;
    border-radius: 5px;
  }
}
.what-is-liver__streeming .streeming__icture-box .note {
  font-size: 12px;
}
.what-is-liver__suitable {
  margin-top: 8rem;
}
@media screen and (max-width: 834px) {
  .what-is-liver__suitable {
    margin-top: 4rem;
  }
}
.what-is-liver__suitable .suitable__title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .what-is-liver__suitable .suitable__title-box {
    flex-direction: column;
    gap: 2rem 0;
  }
}
.what-is-liver__suitable .suitable__title {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .what-is-liver__suitable .suitable__title {
    font-size: 25px;
  }
  .what-is-liver__suitable .suitable__title img {
    width: 30px;
    height: auto;
  }
}
.what-is-liver__suitable ul.suitable__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 1rem;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .what-is-liver__suitable ul.suitable__list {
    gap: 0.5rem;
  }
}
.what-is-liver__suitable ul.suitable__list li {
  width: 32.7%;
  background: #FFF3F6;
  border-radius: 10px;
  padding: 20px 2%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 1rem;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 1300px) {
  .what-is-liver__suitable ul.suitable__list li {
    width: 49%;
  }
}
@media screen and (max-width: 834px) {
  .what-is-liver__suitable ul.suitable__list li {
    width: 49%;
    line-height: 1.5;
    font-size: 13px;
  }
}
.what-is-liver__suitable .detail-btn {
  color: #FF5885;
  justify-content: flex-end;
  margin-top: 5.8rem;
}
@media screen and (max-width: 834px) {
  .what-is-liver__suitable .detail-btn {
    margin-top: 3rem;
  }
}
.what-is-liver__suitable .detail-btn .circle {
  border: 1px solid #FF5885;
}
@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.message {
  position: relative;
  margin-top: 14.2rem;
}
@media screen and (max-width: 834px) {
  .message {
    margin-top: 5rem;
  }
}
.message__bg {
  position: absolute;
  z-index: 1;
  top: 90px;
  right: 0;
  border-radius: 370px 0 0 370px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .message__bg {
    border-radius: 110px 0 0 100px;
    max-height: 220px;
  }
  .message__bg picture {
    display: block;
    height: 100%;
  }
  .message__bg picture img {
    display: block;
  }
}
.message__bg .message__name {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 23%;
  color: #FF5885;
  text-align: left;
}
@media screen and (max-width: 834px) {
  .message__bg .message__name {
    right: 10%;
  }
}
.message__bg .message__name span {
  display: block;
}
.message__bg .message__name span.ja {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}
.message__bg .message__name span.en {
  display: block;
  line-height: 1.5;
  font-size: 50px;
  font-weight: 600;
  font-family: "Unbounded";
}
@media screen and (max-width: 834px) {
  .message__bg .message__name span.en {
    font-size: 30px;
  }
}
.message__contents {
  position: relative;
  z-index: 5;
}
.message__title-en {
  font-size: 90px;
  text-align: center;
  font-family: "Unbounded";
  color: #ff5885;
  font-weight: 600;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 834px) {
  .message__title-en {
    font-size: 50px;
    text-align: center;
  }
}
.message__text-box {
  width: 40%;
  color: #fff;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 834px) {
  .message__text-box {
    width: 100%;
    padding-top: 220px;
  }
}
.message__title {
  font-size: 32px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
@media screen and (max-width: 834px) {
  .message__title {
    font-size: 25px;
    margin-bottom: 2rem;
  }
}
.message .detail-btn {
  margin-top: 5.2rem;
}
@media screen and (max-width: 834px) {
  .message .detail-btn {
    margin-top: 3rem;
  }
}
.message__miki {
  margin-top: 10rem;
  background-color: #FFAFBF;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .message__miki {
    margin-top: 5rem;
    border-radius: 10px;
    flex-wrap: wrap;
    padding: 4rem 6% 0;
    gap: 2rem 2rem;
    justify-content: center;
  }
}
.message__miki .miki__icon {
  position: relative;
  width: 24.9%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 834px) {
  .message__miki .miki__icon {
    width: 100%;
  }
}
.message__miki .miki__icon picture {
  position: absolute;
  left: -70px;
  bottom: -10px;
  width: 90%;
}
.message__miki .miki__icon picture img {
  width: 100%;
}
@media screen and (max-width: 834px) {
  .message__miki .miki__icon picture {
    width: 80%;
    left: -30px;
    bottom: -20px;
  }
  .message__miki .miki__icon picture img {
    max-height: 170px;
    width: auto;
  }
}
.message__miki .miki__icon p {
  margin-top: -5px;
  color: #FE9DB0;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.05em;
  font-family: "Unbounded";
}
@media screen and (max-width: 834px) {
  .message__miki .miki__icon p {
    width: 68%;
    font-size: 28px;
    writing-mode: horizontal-tb;
  }
}
.message__miki .miki__history {
  padding: 35px 0;
  display: flex;
  flex-wrap: wrap;
  width: 56%;
  justify-content: flex-start;
}
@media screen and (max-width: 1080px) {
  .message__miki .miki__history {
    display: block;
  }
}
.message__miki .miki__history .column {
  width: 50%;
}
@media screen and (max-width: 1080px) {
  .message__miki .miki__history .column {
    width: 100%;
  }
}
.message__miki .miki__history .column .history__item {
  padding-left: 80px;
}
.message__miki .miki__history .column span.date {
  margin-left: -88px;
  width: 78px;
}
@media screen and (max-width: 834px) {
  .message__miki .miki__history {
    padding: 35px 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0;
    width: 100%;
  }
}
.message__miki .history__item {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  width: 100%;
}
.message__miki .history__item span.date {
  font-family: "Unbounded";
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  margin-right: 10px;
}
.message__miki .history__item span.rank {
  color: #D2FF00;
  margin-left: 5px;
  display: inline-block;
}
.message__miki .miki__streeming {
  width: 16%;
}
@media screen and (max-width: 834px) {
  .message__miki .miki__streeming {
    width: 60%;
    margin-bottom: -5%;
    margin-top: 2rem;
    max-width: 200px;
  }
}
.message__miki .miki__streeming img {
  transform: scale(1.2);
}

.feature {
  margin-top: 11.9rem;
  background-color: #fff;
  border-radius: 20px;
  padding: 15rem 0 19rem;
}
@media screen and (max-width: 834px) {
  .feature {
    padding: 9rem 0 4rem;
    margin-top: 8rem;
  }
}
.feature__contents {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1400px) {
  .feature__contents {
    flex-direction: column;
  }
}
@media screen and (max-width: 834px) {
  .feature__contents {
    gap: 4rem 0;
  }
}
.feature__title-box {
  display: flex;
  width: 22%;
  gap: 0 20px;
  position: relative;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1400px) {
  .feature__title-box {
    flex-direction: column;
    width: 100%;
    margin: 0 auto 5rem;
    flex-direction: column;
  }
}
.feature__title-en {
  color: #fe9db0;
  font-size: 150px;
  font-weight: 600;
  position: absolute;
  right: -36%;
  top: -21%;
  line-height: 1;
  font-family: "Unbounded";
}
@media screen and (max-width: 1400px) {
  .feature__title-en {
    writing-mode: horizontal-tb;
    right: auto;
    left: -7px;
    top: -40%;
  }
}
@media screen and (max-width: 834px) {
  .feature__title-en {
    font-size: 80px;
  }
}
@media screen and (max-width: 449px) {
  .feature__title-en {
    font-size: 60px;
  }
}
.feature__title {
  position: relative;
  z-index: 5;
  font-size: 42px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 1400px) {
  .feature__title {
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 834px) {
  .feature__title {
    font-size: 23px;
    margin-bottom: 1rem;
  }
}
.feature__title span {
  color: #FF5885;
}
.feature .feature__text {
  font-size: 15px;
}
@media screen and (max-width: 1400px) {
  .feature .feature__text {
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 834px) {
  .feature .feature__text {
    font-size: 14px;
  }
}
.feature__list {
  width: 74%;
  border-top: 1px solid #FE9DB0;
}
@media screen and (max-width: 1400px) {
  .feature__list {
    width: 100%;
  }
}
.feature__item {
  display: flex;
  align-items: center;
  gap: 0 40px;
  padding: 7rem 0;
  border-bottom: 1px solid #FE9DB0;
}
@media screen and (max-width: 834px) {
  .feature__item {
    gap: 2rem 0;
    padding: 3rem 0;
    flex-direction: column;
  }
}
.feature__item .item__picture {
  overflow: hidden;
  border-radius: 20px;
  width: 50%;
}
@media screen and (max-width: 834px) {
  .feature__item .item__picture {
    width: 80%;
    max-width: 410px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.feature__item .item__picture img {
  display: block;
  object-fit: cover;
}
.feature__item .item__text-box {
  width: 48%;
}
@media screen and (max-width: 834px) {
  .feature__item .item__text-box {
    width: 90%;
  }
}
.feature__item .item__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .feature__item .item__title {
    font-size: 25px;
    margin-bottom: 0.5rem;
  }
}
.feature__item .item__lead {
  color: #FF5885;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
@media screen and (max-width: 834px) {
  .feature__item .item__lead {
    font-size: 1.7rem;
  }
}
.feature__item .item__lead span {
  display: block;
  width: fit-content;
  background-color: #D2FF00;
  padding: 0 10px;
}
@media screen and (max-width: 834px) {
  .feature__item .item__lead span {
    padding: 0 5px;
  }
}
.feature__item .text {
  font-weight: 500;
  margin-top: 2rem;
}
@media screen and (max-width: 834px) {
  .feature__item .text {
    margin-top: 1rem;
  }
}
.feature__item5 {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
@media screen and (max-width: 1400px) {
  .feature__item5 {
    flex-direction: column;
    margin-top: 2rem;
    gap: 3rem 0;
  }
}
.feature__item5 .item5__title {
  font-size: 32px;
  font-weight: 700;
  width: 50%;
  line-height: 1.7;
}
@media screen and (max-width: 1400px) {
  .feature__item5 .item5__title {
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .feature__item5 .item5__title {
    font-size: 22px;
  }
}
.feature__item5 .item5__title .bg-pnk {
  display: inline-block;
  background-color: #FE9DB0;
  color: #fff;
  padding: 0 10px;
  line-height: 1.6;
}
@media screen and (max-width: 834px) {
  .feature__item5 .item5__title .bg-pnk {
    padding: 0 5px;
  }
}
.feature__item5 .detail-btn {
  color: #FF5885;
}
.feature__item5 .detail-btn .circle {
  border: #FF5885 1px solid;
}

.liver {
  margin-top: 8.4rem;
  position: relative;
  /* 次への矢印カスタマイズ */
  /* 画像サイズ調整 */
}
.liver__title-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
@media screen and (max-width: 834px) {
  .liver__title-box {
    display: inherit;
    margin-bottom: 2rem;
  }
}
.liver__title-en {
  font-size: 150px;
  font-weight: 600;
  font-family: "Unbounded";
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .liver__title-en {
    font-size: 70px;
    text-align: center;
  }
}
.liver__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .liver__title {
    font-size: 18px;
    text-align: center;
    margin-top: 2rem;
    line-height: 1.7;
  }
}
.liver .liver-border {
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 5rem;
}
@media screen and (max-width: 834px) {
  .liver .liver-border {
    margin-bottom: 3rem;
  }
}
.liver__swiper {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
.liver .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 17px 0;
}
.liver .slide__picture {
  border-radius: 50%;
  overflow: hidden;
  width: 220px;
  height: 220px;
}
.liver__name {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .liver__name {
    font-size: 14px;
    text-align: center;
  }
}
.liver .swiper-pagination {
  bottom: -20px;
  top: auto;
}
.liver .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.8);
}
.liver .swiper-pagination-bullet-active {
  background: #fff;
}
.liver .swiper-button-prev,
.liver .swiper-button-next {
  position: absolute;
  height: 55px;
  width: 55px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .liver .swiper-button-prev,
  .liver .swiper-button-next {
    height: 35px;
    width: 35px;
  }
}
.liver .swiper-button-prev {
  bottom: 19rem;
  top: auto;
  left: 7%;
}
.liver .swiper-button-next {
  bottom: 19rem;
  top: auto;
  right: 7%;
}
.liver .swiper-button-prev::after,
.liver .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 20px;
  width: 20px;
  margin: auto;
}
@media screen and (max-width: 834px) {
  .liver .swiper-button-prev::after,
  .liver .swiper-button-next::after {
    width: 10px;
    height: 10px;
  }
}
.liver .swiper-button-prev::after {
  background-image: url("../img/index/white-pink-arrow.png");
  transform: rotate(180deg);
}
.liver .swiper-button-next::after {
  background-image: url("../img/index/white-pink-arrow.png");
}
.liver .detail-btn {
  justify-content: flex-end;
}
@media screen and (max-width: 834px) {
  .liver .detail-btn {
    justify-content: center;
  }
}

.journal {
  background-color: #E9E9E9;
  border-radius: 60px 60px 0 0;
  margin-top: 7rem;
  padding-top: 13rem;
  padding-bottom: 11rem;
  border-bottom: 1px solid #D2D2D2;
}
@media screen and (max-width: 834px) {
  .journal {
    border-radius: 30px 30px 0 0;
    margin-top: 7rem;
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
.journal__title-en {
  text-align: center;
  font-family: "Unbounded";
  font-weight: 400;
  font-size: 32px;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .journal__title-en {
    font-size: 27px;
  }
}
.journal__detail-btn {
  justify-content: center;
  color: #FF5885;
  font-weight: 400;
  font-size: 13px;
}
.journal__detail-btn .circle {
  display: none;
}
.journal__list {
  margin-top: 5.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
@media screen and (max-width: 834px) {
  .journal__list {
    gap: 20px;
    width: 90%;
    margin: 3rem auto 0;
  }
}
.journal__item {
  width: 49%;
}
@media screen and (max-width: 834px) {
  .journal__item {
    width: 100%;
  }
}
.journal__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4%;
  background-color: #E3E3E3;
  border-radius: 20px;
  transition: all 0.5s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: translateY(0);
}
@media screen and (max-width: 834px) {
  .journal__item a {
    flex-direction: column;
    gap: 2rem 0;
    border-radius: 10px;
    padding: 20px 6%;
  }
}
.journal__picture {
  width: 39%;
  overflow: hidden;
  border-radius: 20px;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .journal__picture {
    width: 50%;
    border-radius: 10px;
  }
}
.journal__picture img {
  object-fit: cover;
  width: 100%;
  display: block;
  transition: all 0.5s ease;
  transform: scale(1);
}
.journal__text-box {
  width: 58%;
}
@media screen and (max-width: 834px) {
  .journal__text-box {
    width: 100%;
  }
}
.journal .item__title {
  font-size: 21px;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .journal .item__title {
    font-size: 17px;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 834px) {
  .journal__text {
    font-size: 13px;
  }
}
.journal .tags {
  margin-top: 10px;
  display: flex;
  gap: 0 10px;
  color: #FF5885;
  font-size: 14px;
}
@media screen and (max-width: 834px) {
  .journal .tags {
    font-size: 12px;
    margin-top: 5px;
  }
}
.journal .date {
  font-size: 15px;
  font-weight: 400;
  font-family: "Unbounded";
}
.journal .date span {
  font-size: 12px;
}
.journal__item a:hover {
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(255, 88, 133, 0.4);
  transform: translateY(-4px);
  transition: all 0.5s ease;
}
.journal__item a:hover picture img {
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.news {
  background-color: #E9E9E9;
  border-radius: 0 0 60px 60px;
  padding-top: 10rem;
  padding-bottom: 11rem;
  margin-top: -1px;
  border-top: 1px solid #D2D2D2;
}
@media screen and (max-width: 834px) {
  .news {
    border-radius: 0 0 30px 30px;
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}
.news__title-en {
  text-align: center;
  font-family: "Unbounded";
  font-weight: 400;
  font-size: 32px;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .news__title-en {
    font-size: 27px;
  }
}
.news__detail-btn {
  justify-content: center;
  color: #FF5885;
  font-size: 13px;
  font-weight: 400;
}
.news__detail-btn .circle {
  display: none;
}
.news__list {
  margin-top: 5.7rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 33px;
}
@media screen and (max-width: 834px) {
  .news__list {
    flex-wrap: wrap;
    width: 90%;
    margin: 3rem auto 0;
    gap: 2rem 0;
  }
}
.news__item {
  width: 24%;
}
@media screen and (max-width: 834px) {
  .news__item {
    width: 48%;
  }
}
.news__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem 0;
}
@media screen and (max-width: 834px) {
  .news__item a {
    gap: 1rem 0;
  }
}
.news__picture {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 834px) {
  .news__picture {
    border-radius: 10px;
  }
}
.news__picture picture {
  display: block;
}
.news__picture picture img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s ease;
}
.news__picture .date-box {
  position: absolute;
  top: 0;
  left: 0;
  gap: 0 5px;
  line-height: 1;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: "Unbounded";
  border-radius: 0 0 20px 0;
  padding: 10px 0 10px 10px;
}
@media screen and (max-width: 834px) {
  .news__picture .date-box {
    padding: 5px 0 5px 7px;
  }
}
.news__picture .date-box span.day {
  font-weight: 400;
  font-size: 40px;
}
@media screen and (max-width: 834px) {
  .news__picture .date-box span.day {
    font-size: 20px;
  }
}
.news__picture .date-box span.month {
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 834px) {
  .news__picture .date-box span.month {
    font-size: 12px;
  }
}
.news__picture .date-box span.day-of-Week {
  font-size: 12px;
}
@media screen and (max-width: 834px) {
  .news__picture .date-box span.day-of-Week {
    font-size: 10px;
  }
}
.news__text {
  font-size: 14px;
}
.news__item a:hover picture img {
  cursor: pointer;
  transition: all 0.5s ease;
  transform: scale(1.1);
}

.gallery__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .gallery__contents {
    flex-direction: column;
    margin-top: 4rem;
    margin-bottom: 4rem;
    gap: 4rem 0;
  }
}
.gallery__title-en {
  font-size: 90px;
  font-weight: 600;
  font-family: "Unbounded";
  color: #fff;
  line-height: 1.3;
}
@media screen and (max-width: 834px) {
  .gallery__title-en {
    font-size: 50px;
    text-align: center;
  }
}
.gallery .swiper-slide {
  padding-bottom: 1.5rem;
}
.gallery .swiper-slide {
  display: flex;
  align-items: center;
  position: relative;
}
.gallery .swiper-slide p {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-color: #fff;
  border-radius: 17.5px;
  color: #FE9DB0;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  width: max-content;
}
.gallery .swiper-slide picture {
  border-radius: 20px;
  overflow: hidden;
}
.gallery .swiper-slide picture img {
  width: 100%;
  object-fit: cover;
}
.gallery__slider--wrapper {
  width: 45%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .gallery__slider--wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
.gallery__slider--wrapper .slick1-pc, .gallery__slider--wrapper .slick2-pc {
  width: 49%;
  height: 100% !important;
}
.gallery__slider--wrapper .slick2-pc {
  transform: rotate(180deg) !important;
}
.gallery__slider--wrapper .slick2-pc .slick-track {
  display: flex !important;
  flex-direction: column-reverse !important;
}
.gallery__slider--wrapper .slick2-pc .slick-track img {
  transform: rotate(180deg) !important;
}
.gallery__slider--wrapper .slick2-pc .slick-track p {
  transform: rotate(180deg) translateX(50%) !important;
  bottom: auto;
  top: 3px;
  left: 50%;
}
.gallery .slick-arrow {
  display: none !important;
}
.gallery__list {
  display: none;
}
@media screen and (max-width: 834px) {
  .gallery__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 0;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    align-content: stretch;
  }
}
.gallery__item {
  width: 48%;
}
.gallery__item a {
  display: flex;
  position: relative;
  justify-content: center;
  position: relative;
}
.gallery__item a p {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-color: #fff;
  border-radius: 17.5px;
  color: #FE9DB0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  white-space: nowrap;
}
.gallery__item picture {
  display: block;
  border-radius: 5px;
  overflow: hidden;
}
.gallery__item picture img {
  display: block;
}
.gallery__item:nth-child(2n) {
  margin-top: 3rem;
}

.for-company {
  overflow: hidden;
}
.for-company a {
  display: block;
  position: relative;
}
.for-company__bg {
  position: relative;
  z-index: 1;
}
.for-company__bg picture {
  display: block;
}
.for-company__bg img {
  display: block;
  transform: scale(1);
  transition: all 0.5s ease;
}
@media screen and (max-width: 834px) {
  .for-company__bg img {
    display: block;
    height: 100%;
    object-fit: cover;
    transform: none;
    transition: none;
    aspect-ratio: 1/1.5;
  }
}
.for-company__bg::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.for-company a:hover .for-company__bg img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.for-company__text-wrap {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .for-company__text-wrap {
    flex-direction: column;
    gap: 3rem 0;
  }
}
.for-company__title-box {
  color: #fff;
}
.for-company__lead {
  font-size: 15px;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .for-company__lead {
    font-size: 13px;
  }
}
.for-company__title {
  font-size: 42px;
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 834px) {
  .for-company__title {
    font-size: 28px;
  }
}
.for-company .text {
  font-weight: 500;
}

.banner-contents {
  margin: 8rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 0 16px;
}
@media screen and (max-width: 834px) {
  .banner-contents {
    margin: 4rem auto 0;
    gap: 2rem 0;
    flex-direction: column;
  }
}
.banner-contents .banner__item {
  width: 32.5%;
}
@media screen and (max-width: 834px) {
  .banner-contents .banner__item {
    width: 100%;
  }
}
.banner-contents a {
  border: 1px solid #fff;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.5rem 6%;
  color: #fff;
}
.banner-contents a .circle {
  transition: 0.5s ease;
}
.banner-contents a .circle .default-arrow {
  display: block;
}
.banner-contents a .circle .hover-arrow {
  display: none;
}
@media screen and (max-width: 834px) {
  .banner-contents a {
    padding: 1.5rem 4%;
    border-radius: 10px;
  }
}
.banner-contents .banner__title-en {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Unbounded";
}
@media screen and (max-width: 834px) {
  .banner-contents .banner__title-en {
    font-size: 25px;
  }
}
.banner-contents .banner__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 834px) {
  .banner-contents .banner__title {
    font-size: 13px;
  }
}
.banner-contents a:hover {
  background-color: #fff;
  color: #ff9db0;
}
.banner-contents a:hover .circle {
  transform: translateX(5px);
  transition: 0.5s ease;
}
.banner-contents a:hover .circle .default-arrow {
  display: none;
}
.banner-contents a:hover .circle .hover-arrow {
  display: block;
}

.recruit {
  margin-top: 13rem;
  position: relative;
}
@media screen and (max-width: 834px) {
  .recruit {
    margin-top: 5rem;
    position: relative;
    width: 95%;
    max-width: 500px;
  }
}
.recruit__bg {
  position: relative;
  overflow: hidden;
  border-radius: 60px;
}
@media screen and (max-width: 834px) {
  .recruit__bg {
    border-radius: 30px;
  }
}
.recruit__bg img {
  display: block;
  min-height: 520px;
  object-fit: cover;
  width: auto;
}
.recruit__contents {
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1000px;
  justify-content: flex-end;
  position: absolute;
  z-index: 2;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 834px) {
  .recruit__contents {
    align-items: flex-start;
    padding-top: 2rem;
    justify-content: center;
  }
}
.recruit__text-wrap {
  text-align: center;
}
.recruit__title {
  font-size: 42px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media screen and (max-width: 834px) {
  .recruit__title {
    font-size: 26px;
  }
}
.recruit__title span {
  font-size: 32px;
}
@media screen and (max-width: 834px) {
  .recruit__title span {
    font-size: 12px;
    width: 82%;
    margin: 0 auto;
  }
}
.recruit .text {
  color: #fff;
  margin-bottom: 3rem;
}
.recruit .line-banner {
  border-radius: 10px;
  background-color: #01B301;
  padding: 2.5rem 0;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  transform: scale(1);
  transition: 0.5s ease;
}
@media screen and (max-width: 834px) {
  .recruit .line-banner {
    bottom: 60px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 90%;
    padding: 1.5rem 0;
  }
}
.recruit .line-banner:hover {
  transition: 0.5s ease;
  transform: scale(1.05);
}
@media screen and (max-width: 834px) {
  .recruit .line-banner:hover {
    transform: translateX(-50%) scale(1.05);
  }
}
.recruit .banner__lead {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .recruit .banner__lead {
    font-size: 12px;
  }
}
.recruit .banner__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .recruit .banner__title {
    font-size: 18px;
  }
}
.recruit .note {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-top: 1rem;
}
@media screen and (max-width: 834px) {
  .recruit .note {
    position: absolute;
    width: 95%;
    text-align: right;
    bottom: 34px;
    font-size: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}

.footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 13rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 834px) {
  .footer {
    margin-top: 5rem;
    padding-bottom: 9rem;
  }
}
@media screen and (max-width: 834px) {
  .footer .footer-logo {
    width: 30%;
    display: flex;
    justify-content: center;
  }
}
.footer .copy-right {
  font-size: 10px;
  font-weight: 300;
  font-family: "Unbounded";
  color: #fff;
  position: relative;
  z-index: 5;
}/*# sourceMappingURL=style.css.map */