@charset 'UTF-8';

/**
 * Layout Settings
 * ================================================================================
 * Table of Contents:
 *
 * Layout Settings
 * Component Settings
 * Utility Settings
 * Page Settings
 * Ep01 Page Settings
 * Ep02 Page Settings
 * ================================================================================
 */



/**
 * ================================================================================
 * Layout Settings
 * ================================================================================
 */

/**
 * Loader
 * -------------------------------
 */

.l-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: #e36b00;
  transition: 0.2s all ease-out 1.2s;
}

body.--loaded .l-loader {
  transform: translateY(-100%);
}

.l-loader::before,
.l-loader::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  content: '';
}

.l-loader::before {
  width: 13.0rem;
  height: 18.1rem;
  background-image: url('/special/genki/assets/img/common/logo_yoshinoya_vertical.svg');
  animation: opacity 1s linear alternate;
}

.l-loader::after {
  width: 3.5rem;
  height: 3.5rem;
  margin-top: 18.0rem;
  background-image: url('/special/genki/assets/img/common/loader.png');
  animation: opacity 0.5s linear alternate;
}

@keyframes opacity {
  0%{
    opacity: 0;
  }  
  100%{
    opacity: 1;
  }
}

@media all and (max-width: 767px) {
  .l-loader {
    transition: 0.3s all ease-out 1.2s;
  }

  .l-loader::before {
    width: calc(13.0rem * 0.6);
    height: calc(18.1rem * 0.6);
  }

  .l-loader::after {
    width: 2.8rem;
    height: 2.8rem;
    margin-top: calc(18.0rem * 0.6);
  }
}
 

/**
 * Header
 * -------------------------------
 */

@media all and (max-width: 767px) {
  .l-header {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 4.7rem;
  }
}


/**
 * Header Logo
 * -------------------------------
 */

@media all and (max-width: 767px) {
  .l-header__logo {
    position: absolute;
    top: 0.8rem;
    left: 1.4rem;
    line-height: 1;
  }

  .l-header__logo img {
    width: 6.0rem;
  }
}


/**
 * Global Navigation
 * -------------------------------
 */

@media all and (max-width: 767px) {
  .l-gnav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translateY(-100vh);
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    padding: 9.0rem 3.7rem 6.5rem 3.7rem;
    overflow-y: scroll;
    background: linear-gradient(90deg,rgba(227, 107, 0, 1) 0%, rgba(239, 130, 0, 1) 30%, rgba(239, 130, 0, 1) 70%, rgba(227, 107, 0, 1) 100%);
    transition: var(--transition);
  }

  .l-gnav.--active {
    transform: translateY(0);
  }

  .l-gnav__item {
    position: relative;
  }
  
  .l-gnav__item::before,
  .l-gnav__item::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.35rem;
    background-image: url('/special/genki/assets/img/common/gnav_sep_sp.svg');
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 100% auto;
    content: '';
  }
  
  .l-gnav__item::before {
    display: none;
    top: 0;
  }
  
  .l-gnav__item::after {
    bottom: 0;
  }
  
  .l-gnav__item:nth-of-type(1)::before {
    display: block;
  }

  .l-gnav__item > * {
    display: block;
    position: relative;
    padding: 3.5rem 4.5rem 3.5rem 0;
    color: #fff;
    font-size: 2.0rem;
    font-weight: 900;
    line-height: 1.4rem;
  }

  .l-gnav__item > *::before,
  .l-gnav__item > *::after {
    position: absolute;
    top: 50%;
    content: '';
  }

  .l-gnav__item > *::before {
    right: 0;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-width: 0.15rem;
    border-radius: 100.0rem;
  }

  .l-gnav__item > *::after {
    right: 1.0rem;
    width: 0.8rem;
    height: 0.8rem;
    border-top-width: 0.15rem;
    border-right-width: 0.15rem;
    transform: translateY(-50%) rotate(45deg);
  }

  .l-gnav__close {
    margin-top: 4.5rem;
    text-align: center;
  }

  .l-gnav__close > button {
    display: inline-block;
    width: 2.6rem;
    height: 7.5rem;
    overflow: hidden;
    background-image: url('/special/genki/assets/img/common/gnav_close.svg');
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 100% auto;
    text-indent: 100%;
    white-space: nowrap;
  }
}


/**
 * Header Hamburger
 * -------------------------------
 */

@media all and (max-width: 767px) {
  .l-hamburger {
    position: absolute;
    top: 0;
    right: 1.0rem;
    z-index: 1;
    width: 4.6rem;
    height: 4.6rem;
  }

  .l-hamburger > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.7rem;
    height: 0.35rem;
    background-color: #fff;
  }

  .l-hamburger > span:nth-of-type(1) {
    margin-top: -1.0rem;
  }
  
  .l-hamburger > span:nth-of-type(3) {
    margin-top: 1.0rem;
  }
}


/**
 * Main
 * -------------------------------
 */
 
.l-main {
  min-width: 128.0rem;
  overflow: hidden;
}

@media all and (max-width: 767px) {
  .l-main {
    min-width: 100%;
  }
}


/**
 * Footer
 * -------------------------------
 */
 
.l-footer {
  min-width: 128.0rem;
  padding-top: 5.0rem;
  padding-bottom: 5.0rem;
  background-color: #fff;
  text-align: center;
}

.l-footer .l-container {
  padding-left: 0;
  padding-right: 0;
}

.l-footer__inner {
  display: inline-flex;
  align-items: center;
}

.l-footer__inner > * {
  flex: 0 0 auto;
}

@media all and (max-width: 767px) {
  .l-footer {
    min-width: 100%;
    padding-top: 2.5rem;
    padding-bottom: 2.0rem;
  }

  .l-footer .l-container {
    padding-left: 3.0rem;
    padding-right: 3.0rem;
  }

  .l-footer__inner {
    display: block;
  }
}


/**
 * Footer Page Top
 * -------------------------------
 */

.l-footer__pagetop {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.l-footer__pagetop.--active {
  opacity: 1;
  visibility: visible;
}

.l-footer__pagetop > a {
  display: block;
  position: relative;
  width: 7.8rem;
  height: 7.8rem;
  overflow: hidden;
  background-image: url('/special/genki/assets/img/common/footer_pagetop.svg');
  background-repeat: no-repeat;
  background-size: 100% auto;
  text-indent: 100%;
  white-space: nowrap;
}

@media all and (max-width: 767px) {
  .l-footer__pagetop {
    bottom: 1.0rem;
    right: 1.0rem;
  }

  .l-footer__pagetop > a {
    width: 4.0rem;
    height: 4.0rem;
  }
}


/**
 * Footer SNS
 * -------------------------------
 */

.l-footer-sns {
  display: inline-flex;
  align-items: center;
}

.l-footer-sns > * {
  flex: 0 0 auto;
}

.l-footer-sns__head {
  display: block;
  color: #f08300;
  font-size: 2.4rem;
  margin-right: 5.0rem;
}

.l-footer-sns__list {
  display: flex;
  margin-left: -2.0rem;
}

.l-footer-sns__item {
  width: 6.4rem;
  margin-left: 2.0rem;
}

.l-footer-sns__item > a {
  display: block;
}

.l-footer-sns__item img {
  width: 100%;
}

@media all and (max-width: 767px) {
  .l-footer-sns {
    display: inline-block;
  }

  .l-footer-sns__head {
    font-size: 1.5rem;
    margin-right: 0;
    margin-bottom: 1.0rem;
  }

  .l-footer-sns__list {
    display: flex;
    margin-left: -1.2rem;
  }

  .l-footer-sns__item {
    width: 4.2rem;
    margin-left: 1.2rem;
  }
}


/**
 * Footer Copyright
 * -------------------------------
 */

.l-footer__copyright {
  margin-left: 7.5rem;
  color: #f08300;
  font-size: 1.4rem;
  font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', 'serif';
}

@media all and (max-width: 767px) {
  .l-footer__copyright {
    margin-left: 0;
    margin-top: 1.6rem;
    font-size: 0.9rem;
  }
}


/**
 * Background
 * -------------------------------
 */

.l-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  min-width: 128.0rem;
  height: 100%;
  overflow: hidden;
}

.l-bg::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 192.0rem;
  height: 100%;
  background: linear-gradient(90deg,rgba(227, 107, 0, 1) 0%, rgba(239, 130, 0, 1) 30%, rgba(239, 130, 0, 1) 70%, rgba(227, 107, 0, 1) 100%);
  content: '';
}

@media all and (max-width: 767px) {
  .l-bg {
    min-width: 100%;
  }

  .l-bg::before {
    width: 100%;
  }
}


/**
 * Container
 * -------------------------------
 */

.l-container {
  position: relative;
  width: 112.0rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 4.0rem;
  padding-right: 4.0rem;
}

@media all and (max-width: 767px) {
  .l-container {
    width: 100%;
    padding-left: 3.0rem;
    padding-right: 3.0rem;
  }
}



/**
 * ================================================================================
 * Component Settings
 * ================================================================================
 */

/**
 * Button
 * -------------------------------
 */
 
.c-btn {
  display: inline-block;
  position: relative;
  width: 67.3rem;
  height: 15.7rem;
  padding-top: 4.1rem;
  background-image: url('/special/genki/assets/img/common/btn_bg.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
}

.c-btn::before,
.c-btn::after {
  position: absolute;
  top: 50%;
  margin-top: -1.3rem;
  content: '';
}

.c-btn::before {
  right: 7.0rem;
  transform: translateY(-50%);
  width: 4.2rem;
  height: 4.2rem;
  border: 0.2rem solid #fff;
  border-radius: 100.0rem;
}

.c-btn::after {
  right: 8.7rem;
  width: 1.3rem;
  height: 1.3rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* -- Color -- */
.c-btn.--white  {
  background-image: url('/special/genki/assets/img/common/btn_bg_wt.png');
}

.c-btn.--white::before {
  border-color: #f08300;
}

.c-btn.--white::after {
  border-top-color: #f08300;
  border-right-color: #f08300;
}

@media all and (max-width: 767px) {
  .c-btn {
    width: 37.4rem;
    height: 8.7rem;
    margin-left: -3.0rem;
    padding-top: 2.3rem;
    background-image: url('/special/genki/assets/img/common/btn_bg_sp.png');
  }

  .c-btn::before,
  .c-btn::after {
    margin-top: -0.6rem;
  }


  .c-btn::before {
    right: 4.0rem;
    width: 2.4rem;
    height: 2.4rem;
    border-width: 0.15rem;
  }

  .c-btn::after {
    right: 5.0rem;
    width: 0.7rem;
    height: 0.7rem;
    border-top-width: 0.15rem;
    border-right-width: 0.15rem;
  }

  /* -- Color -- */
  .c-btn.--white  {
    background-image: url('/special/genki/assets/img/common/btn_bg_wt_sp.png');
  }
}


/**
 * Iframe
 * -------------------------------
 */
 
.c-iframe {
  position: relative;
  padding-top: 56.25%;
}

.c-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/**
 * ================================================================================
 * Utility Settings
 * ================================================================================
 */

/**
 * Hover
 * -------------------------------
 */

.u-hover { transition: var(--transition); }

.u-hover:hover { opacity: 0.6; }

@media all and (max-width: 767px) {
  .u-hover:hover { opacity: 1.0; }
}


/**
 * Device
 * -------------------------------
 */

@media all and (min-width: 768px) {
  .u-sm:not(.u-lg) { display: none; }
}
@media all and (max-width: 767px) {
  .u-lg:not(.u-sm) { display: none; }
}


/**
 * Background Color
 * -------------------------------
 */

.u-bgc-white {
  background-color: #fff;
}


/**
 * Animation
 * -------------------------------
 */

*[data-animate-type].--animated,
*[data-slickslider-animate-type].--animated {
  transition-property: all;
  transition-timing-function: ease-out;
}

*[data-animate-type="move-x1"],
*[data-slickslider-animate-type="move-x1"] {
  opacity: 0;
  visibility: hidden;
  transform: translate(4.0rem, 0) rotate(0.0001deg);
  will-change: transform, opacity;
}
*[data-animate-type="move-x1"].--animated,
*[data-slickslider-animate-type="move-x1"].--animated {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0) rotate(0.0001deg);
  transition-duration: 0.8s;
}

*[data-animate-type="move-x2"],
*[data-slickslider-animate-type="move-x2"] {
  opacity: 0;
  visibility: hidden;
  transform: translate(-4.0rem, 0) rotate(0.0001deg);
  will-change: transform, opacity;
}
*[data-animate-type="move-x2"].--animated,
*[data-slickslider-animate-type="move-x2"].--animated {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0) rotate(0.0001deg);
  transition-duration: 0.8s;
}

*[data-animate-type="move-y1"],
*[data-slickslider-animate-type="move-y1"] {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 4.0rem) rotate(0.0001deg);
  will-change: transform, opacity;
}
*[data-animate-type="move-y1"].--animated,
*[data-slickslider-animate-type="move-y1"].--animated {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0) rotate(0.0001deg);
  transition-duration: 0.8s;
}

*[data-animate-type="move-y2"],
*[data-slickslider-animate-type="move-y2"] {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, -4.0rem) rotate(0.0001deg);
  will-change: transform, opacity;
}
*[data-animate-type="move-y2"].--animated,
*[data-slickslider-animate-type="move-y2"].--animated {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0) rotate(0.0001deg);
  transition-duration: 0.8s;
}

*[data-animate-type="zoom1"],
*[data-slickslider-animate-type="zoom1"] {
  transform: scale(1, 1) rotate(0.0001deg);
  will-change: transform;
}
*[data-animate-type="zoom1"].--animated,
*[data-slickslider-animate-type="zoom1"].--animated {
  transform: scale(1.1, 1.1) rotate(0.0001deg);
  transition-duration: 0.8s;
}

*[data-animate-type="zoom2"],
*[data-slickslider-animate-type="zoom2"] {
  transform: scale(0, 0) rotate(0.0001deg);
  will-change: transform;
}
*[data-animate-type="zoom2"].--animated,
*[data-slickslider-animate-type="zoom2"].--animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.4s;
}

*[data-animate-type="scale-x1"],
*[data-slickslider-animate-type="scale-x1"] {
  transform: scale(0, 1) rotate(0.0001deg);
  will-change: transform;
}
*[data-animate-type="scale-x1"].--animated,
*[data-slickslider-animate-type="scale-x1"].--animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.8s;
}

*[data-animate-type="scale-x2"],
*[data-slickslider-animate-type="scale-x2"] {
  transform-origin: left top;
  transform: scale(0, 1) rotate(0.0001deg);
  will-change: transform;
}
*[data-animate-type="scale-x2"].--animated,
*[data-slickslider-animate-type="scale-x2"].--animated{
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.8s;
}

*[data-animate-type="scale-x3"],
*[data-slickslider-animate-type="scale-x3"] {
  transform-origin: right top;
  transform: scale(0, 1) rotate(0.0001deg);
  will-change: transform;
}
*[data-animate-type="scale-x3"].--animated,
*[data-slickslider-animate-type="scale-x3"].--animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.8s;
}

*[data-animate-type="scale-y1"],
*[data-slickslider-animate-type="scale-y1"] {
  transform: scale(1, 0) rotate(0.0001deg);
  will-change: transform;
}
*[data-animate-type="scale-y1"].--animated,
*[data-slickslider-animate-type="scale-y1"].--animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.8s;
}

*[data-animate-type="scale-y2"],
*[data-slickslider-animate-type="scale-y2"] {
  transform-origin: left top;
  transform: scale(1, 0) rotate(0.0001deg);
  will-change: transform;
}
*[data-animate-type="scale-y2"].--animated,
*[data-slickslider-animate-type="scale-y2"].--animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.8s;
}

*[data-animate-type="scale-y3"],
*[data-slickslider-animate-type="scale-y3"] {
  transform-origin: left bottom;
  transform: scale(1, 0) rotate(0.0001deg);
  will-change: transform;
}
*[data-animate-type="scale-y3"].--animated,
*[data-slickslider-animate-type="scale-y3"].--animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.8s;
}

*[data-animate-type="blur1"],
*[data-slickslider-animate-type="blur1"] {
  background: transparent;
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  will-change: filter;
}
*[data-animate-type="blur1"].--animated,
*[data-slickslider-animate-type="blur1"].--animated {
  opacity: 1;
  visibility: visible;
  -webkit-filter: blur(0);
  filter: blur(0);
  transition-duration: 0.8s;
}
*[data-animate-type="blur2"],
*[data-slickslider-animate-type="blur2"] {
  background: transparent;
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  will-change: filter;
}
*[data-animate-type="blur2"].--animated,
*[data-slickslider-animate-type="blur2"].--animated {
  opacity: 1;
  visibility: visible;
  -webkit-filter: blur(0);
  filter: blur(0);
  transition-duration: 1.0s;
}

@media all and (max-width: 767px) {
  *[data-animate-type="move-x1"],
  *[data-slickslider-animate-type="move-x1"] {
    transform: translate(3.0rem, 0) rotate(0.0001deg);
  }

  *[data-animate-type="move-x2"],
  *[data-slickslider-animate-type="move-x2"] {
    transform: translate(-3.0rem, 0) rotate(0.0001deg);
  }

  *[data-animate-type="move-y1"],
  *[data-slickslider-animate-type="move-y1"] {
    transform: translate(0, 3.0rem) rotate(0.0001deg);
  }

  *[data-animate-type="move-y2"],
  *[data-slickslider-animate-type="move-y2"] {
    transform: translate(0, -3.0rem) rotate(0.0001deg);
  }
}



/**
 * ================================================================================
 * Page Settings
 * ================================================================================
 */


/**
 * Key Visual
 * -------------------------------
 */

.kv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 73.2rem;
  margin-bottom: 35.0rem;
  background-color: #d45c02;
}

.kv__ttl {
  text-align: center;
}

.kv__ttl img {
  width: 114.0rem;
}

.kv__img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 192.0rem;
}

.kv__img img {
  width: 100%;
}

@media all and (max-width: 1919px) {
  .kv__img::before {
    width: 1920px;
  }
}
@media all and (max-width: 767px) {
  .kv {
    min-width: 100%;
    height: 46.2rem;
    margin-bottom: 18.5rem;
  }
  
  .kv__ttl img {
    width: 100%;
  }

  .kv__img {
    width: 100%;
  }
}


/**
 * Menu
 * -------------------------------
 */

.menu {
  position: absolute;
  width: 100%;
  min-width: 128.0rem;
  top: 73.2rem;
  left: 0;
}

.menu__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.menu__slide {
  width: 44.5rem;
  margin: 0 1.0rem;
  background-color: #fff;
  cursor: pointer;
}

.menu__slide.--comingsoon {
  background-color: #f7c17f;
  pointer-events: none;
}

.menu__btn {
  display: block;
  padding: 3.5rem 4.5rem 5.5rem 4.5rem;
}

.menu__head {
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  background-image: url('/special/genki/assets/img/common/menu_sep.svg');
  background-repeat: no-repeat;
  background-position: 0 bottom;
  background-size: 100% auto;
}

.menu__head::before,
.menu__head::after {
  position: absolute;
  content: '';
}

.menu__head::before {
  top: 0;
  right: 0;
  width: 4.0rem;
  height: 4.0rem;
  border: 0.2rem solid #f08300;
  border-radius: 100.0rem;
}

.menu__head::after {
  top: 1.4rem;
  right: 1.65rem;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 0.2rem solid #f08300;
  border-right: 0.2rem solid #f08300;
  transform: rotate(45deg);
}

.menu__slide.--comingsoon .menu__head::before,
.menu__slide.--comingsoon .menu__head::after {
  display: none;
}

.menu__txt {
  width: 13.5rem;
}

.menu__txt img {
  width: 12.7rem;
}

.menu__num {
  width: 8.5rem;
}

.menu__num img {
  width: 7.0rem;
}

.menu__label {
  width: 7.4rem;
}

.menu__ttl {
  display: flex;
  align-items: center;
  height: 6.0rem;
}

.menu__ttl picture {
  width: 100%;
}

@media all and (max-width: 767px) {
  .menu {
    top: 46.2rem;
    min-width: 100%;
  }

  .menu__slide {
    width: 29.0rem;
    margin: 0 1.0rem;
  }

  .menu__btn {
    padding: 1.5rem 2.5rem 2.0rem 2.5rem;
  }

  .menu__head {
    padding-bottom: 1.2rem;
    margin-bottom: 1.5rem;
    background-image: url('/special/genki/assets/img/common/menu_sep_sp.svg');
  }

  .menu__head::before {
    width: 2.5rem;
    height: 2.5rem;
    border-width: 0.15rem;
  }

  .menu__head::after {
    top: 0.8rem;
    right: 1.0rem;
    width: 0.8rem;
    height: 0.8rem;
    border-top-width: 0.15rem;
    border-right-width: 0.15rem;
  }

  .menu__slide.--comingsoon .menu__head::before,
  .menu__slide.--comingsoon .menu__head::after {
    display: none;
  }

  .menu__txt {
    width: 9.0rem;
  }

  .menu__txt img {
    width: 8.2rem;
  }

  .menu__num {
    width: 5.5rem;
  }

  .menu__num img {
    width: 4.5rem;
  }

  .menu__label {
    width: 4.6rem;
  }

  .menu__ttl {
    height: 4.0rem;
  }
}


/**
 * Lead
 * -------------------------------
 */

.lead__inner {
  position: relative;
  padding: 0 4.0rem 14.0rem 4.0rem;
}

.lead__txt {
  margin-top: 4.0rem;
  margin-right: -3.0rem;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.8;
}

.lead__txt:nth-of-type(1) {
  margin-top: 0;
}

.lead__txt > span {
  display: block;
}

.lead__logo {
  margin-top: 0.5rem;
}

.lead__logo img {
  width: 75.2rem;
}

.lead__img {
  position: absolute;
  right: 6.0rem;
  bottom: 14.0rem;
}

.lead__img img {
  width: 13.0rem;
}

@media all and (max-width: 767px) {
  .lead__inner {
    position: relative;
    padding: 0 0 6.0rem 0;
  }

  .lead__ttl.u-sm {
    margin-bottom: 3.5rem;
  }

  .lead__ttl.u-lg img {
    width: 100%;
  }

  .lead__txt {
    margin-top: 2.5rem;
    font-size: 1.7rem;
  }

  .lead__logo {
    margin-top: 1.0rem;
  }

  .lead__logo img {
    width: 30.1rem;
  }

  .lead__img {
    position: absolute;
    right: -3.5rem;
    bottom: -2.0rem;
  }

  .lead__img img {
    width: 20.1rem;
  }
}


/**
 * Collaboration
 * -------------------------------
 */

.collab {
  padding-top: 9.0rem;
  padding-bottom: 10.0rem;
  background-color: #fff;
}

.collab__inner {
  position: relative;
  z-index: 1;
  padding-left: 16.0rem;
  padding-right: 16.0rem;
}

.collab__inner::before,
.collab__ttl::before,
.collab__ttl::after {
  position: absolute;
  z-index: -1;
  width: 100vw;
  min-width: 128.0rem;
  height: 1.5rem;
  background-image: url('/special/genki/assets/img/common/sep_or.svg');
  background-repeat: repeat-x;
  background-size: auto 1.45rem;
  content: '';
}

.collab__inner::before {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-position: 0 50%;
}

.collab__ttl {
  position: relative;
  z-index: 1;
  text-align: center;
}

.collab__ttl::before,
.collab__ttl::after {
  top: 50%;
  transform: translateY(-50%);
}

.collab__ttl::before {
  right: 50%;
  margin-right: calc(61.0rem / 2 + 2.0rem);
  background-position: right 50%;
}

.collab__ttl::after {
  left: 50%;
  margin-left: calc(61.0rem / 2 + 3.0rem);
  background-position: 0 50%;
}

.collab__ttl > span {
  display: inline-block;
  position: relative;
  background-color: #fff;
}

.collab__ttl > span:before,
.collab__ttl > span::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5.0rem;
  height: 5.0rem;
  content: '';
}

.collab__ttl > span:before {
  left: -6.2rem;
  background: linear-gradient(to bottom right, rgba(255,255,255,0) 50%, #fff 50.5%) no-repeat top left/100% 100%;
}

.collab__ttl > span:after {
  right: -6.1rem;
  background: linear-gradient(to top left, rgba(255,255,255,0) 50%, #fff 50.5%) no-repeat top left/100% 100%;
}

.collab__ttl img {
  width: 61.0rem;
}

.collab__txt {
  padding-top: 8.0rem;
  padding-bottom: 11.0rem;
  color: #f08300;
  font-size: 3.0rem;
  font-weight: 900;
  line-height: 1.8;
}

@media all and (max-width: 767px) {
  .collab {
    padding-top: 4.0rem;
    padding-bottom: 4.5rem;
  }

  .collab__inner {
    padding-left: 2.0rem;
    padding-right: 2.0rem;
  }

  .collab__inner::before {
    width: 33.6rem;
    min-width: 100%;
    height: 27.5rem;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 100% auto;
  }

  .collab__inner::before {
    top: 1.5rem;
    background-image: url('/special/genki/assets/img/common/collab_sep_sp.svg');
  }

  .collab__ttl::before,
  .collab__ttl::after,
  .collab__ttl > span::before,
  .collab__ttl > span::after {
    display: none;
  }

  .collab__ttl img {
    width: 23.2rem;
  }

  .collab__txt {
    padding-top: 1.5rem;
    padding-bottom: 3.0rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}


/**
 * CM
 * -------------------------------
 */

.cm__item {
  margin-top: 7.5rem;
}

.cm__item:nth-of-type(1) {
  margin-top: 0;
}

.cm__ttl {
  margin-bottom: 3.5rem;
  text-align: center;
}

.cm__slide {
  width: 50.5rem;
  margin-right: 3.0rem;
}

.cm__fig {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.cm__figcaption {
  width: 100%;
  margin-top: 1.5rem;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.4;
}

.u-bgc-white .cm__figcaption {
  color: #f08300;
}


@media all and (max-width: 767px) {
  .cm .l-container {
    padding-left: 0;
    padding-right: 0;
  }

  .cm__item {
    margin-top: 7.5rem;
  }

  .cm__ttl {
    margin-bottom: 1.0rem;
  }

  .cm__slider {
    padding-left: 3.5rem;
  }

  .cm__slide {
    width: 30.5rem;
    margin-right: 2.0rem;
  }

  .cm__fig {
    flex-direction: column-reverse;
  }

  .cm__figcaption {
    margin-top: 0;
    margin-bottom: 1.0rem;
    font-size: 1.55rem;
  }

  .cm__slider .slick-dots {
    bottom: -2.8rem;
    margin-left: -3.5rem;
  }
}


/**
 * Obsession
 * -------------------------------
 */

.obsession {
  padding-top: 6.5rem;
  padding-bottom: 2.5rem;
  background-color: #fff;
  text-align: center;
}

.obsession__ttl img {
  width: 59.0rem;
}

.obsession__fig {
  margin-top: 2.5rem;
}

.obsession__btn img {
  width: 39.8rem;
}

.obsession__img {
  margin-top: 1.5rem;
}

.obsession__img img {
  width: 45.0rem;
}

@media all and (max-width: 767px) {
  .obsession {
    padding-top: 4.0rem;
    padding-bottom: 1.5rem;
  }

  .obsession__ttl img {
    width: 32.7rem;
  }

  .obsession__fig {
    margin-top: 1.5rem;
  }

  .obsession__btn img {
    width: 22.1rem;
  }

  .obsession__img {
    margin-top: 1.5rem;
  }

  .obsession__img img {
    width: 26.8rem;
  }
}


/**
 * Slider Pagination
 * -------------------------------
 */

.slick-dots,
.splide__pagination {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  bottom: -5.0rem;
  width: 100%;
}

.slick-dots > li,
.splide__pagination > li {
  flex: 0 0 auto;
  width: auto;
  margin: 0.5rem;
  line-height: 1;
}

.slick-dots > li > button,
.splide__pagination > li > button {
  display: block;
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  margin: 0;
  border: none;
  border-radius: 100rem;
  opacity: 1;
  background-color: transparent !important;
  font-size: 0;
  text-indent: -999rem;
}

.slick-dots > li > button::before,
.splide__pagination > li > button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.0rem;
  height: 1.0rem;
  border-radius: 100rem;
  background-color: rgba(255, 255, 255, 0.5);
  content: '';
  transition: var(--transition);
}

.slick-dots > li > button:hover::before,
.splide__pagination > li > button:hover::before {
  opacity: 1;
  background-color: rgba(255, 255, 255, 1);
}

.splide__pagination > li > button.is-active {
  transform: scale(1);
}

.slick-dots > li.slick-active > button::before,
.slick-dots > li.slick-active > button:hover::before,
.splide__pagination > li > button.is-active::before,
.splide__pagination > li > button.is-active:hover::before {
  background-color: rgba(255, 255, 255, 1);
}

/* -- Color -- */
.u-bgc-white .slick-dots > li > button::before,
.u-bgc-white .splide__pagination > li > button::before {
  background-color: rgba(240, 131, 0, 0.5);
}

.u-bgc-white .slick-dots > li > button:hover::before,
.u-bgc-white .splide__pagination > li > button:hover::before {
  background-color: rgba(240, 131, 0, 1);
}

.u-bgc-white .slick-dots > li.slick-active > button::before,
.u-bgc-white .slick-dots > li.slick-active > button:hover::before,
.u-bgc-white .splide__pagination > li > button.is-active::before,
.u-bgc-white .splide__pagination > li > button.is-active:hover::before {
  background-color: rgba(240, 131, 0, 1);
}

@media all and (max-width: 767px) {
  .slick-dots,
  .splide__pagination {
    bottom: -3.5rem;
  }

  .slick-dots > li,
  .splide__pagination > li {
    margin: 0.3rem;
  }

  .slick-dots > li > button,
  .splide__pagination > li > button {
    width: 1.0rem;
    height: 1.0rem;
  }

  .slick-dots > li > button::before,
  .splide__pagination > li > button::before {
    width: 0.7rem;
    height: 0.7rem;
  }

  .slick-dots > li > button:hover::before,
  .splide__pagination > li > button:hover::before {
    background-color: rgba(255, 255, 255, 0.5);
  }

  .slick-dots > li.slick-active > button:hover::before,
  .splide__pagination > li > button.is-active:hover::before {
    background-color: rgba(255, 255, 255, 1);
  }
}



/**
 * ================================================================================
 * Ep01 Page Settings
 * ================================================================================
 */

.ep01 {
  padding-top: 10.5rem;
}

.ep01 .cm__item.--list1 .cm__ttl img {
  width: 57.2rem;
}
.ep01 .cm__item.--list2 .cm__ttl img {
  width: 50.0rem;
}
.ep01 .cm__item.--list3 .cm__ttl img {
  width: 21.5rem;
}

@media all and (max-width: 767px) {
  .ep01 {
    padding-top: 7.0rem;
  }

  .ep01 .cm__item.--list3 .cm__ttl {
    margin-bottom: 2.0rem;
  }

  .ep01 .cm__item.--list1 .cm__ttl img {
    width: 24.5rem;
  }
  .ep01 .cm__item.--list2 .cm__ttl img {
    width: 21.4rem;
  }
  .ep01 .cm__item.--list3 .cm__ttl img {
    width: 12.2rem;
  }
}



/**
 * ================================================================================
 * Ep02 Page Settings
 * ================================================================================
 */

.ep02 {
  position: relative;
  z-index: 1;
  margin-top: 12.0rem;
  padding-top: 13.5rem;
  padding-bottom: 5.0rem;
  color: #fff;
}

.ep02::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1.5rem;
  background-image: url('/special/genki/assets/img/common/sep_wt.svg');
  background-repeat: repeat-x;
  background-position: 0 50%;
  background-size: auto 1.45rem;
  content: '';
}

.ep02 .cm__item.--list1 .cm__ttl img {
  width: 55.2rem;
}

.ep02 .overview {
  margin-top: 9.0rem;
  text-align: center;
}

.ep02 .overview__ttl img {
  width: 42.3rem;
}

.ep02 .overview__txt {
  margin-top: 5.5rem;
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 1.8;
}

.ep02 .overview__btn {
  position: relative;
  z-index: 2;
  margin-top: 3.0rem;
}

.ep02 .overview__btn img {
  width: 13.2rem;
}

.ep02 .overview__img {
  position: relative;
  z-index: 1;
  margin-top: -12.0rem;
  text-align: center;
}

.ep02 .overview__img img {
  width: 69.0rem;
}

@media all and (max-width: 767px) {
  .ep02 {
    margin-top: 5.0rem;
    padding-top: 5.0rem;
    padding-bottom: 2.5rem;
  }

  .ep02::before {
    height: 0.75rem;
    background-size: auto 0.725rem;
  }

  .ep02 .cm__item.--list1 .cm__ttl img {
    width: 23.6rem;
  }

  .ep02 .overview {
    margin-top: 5.5rem;
  }

  .ep02 .overview__ttl img {
    width: 18.2rem;
  }

  .ep02 .overview__txt {
    margin: 2.5rem -3.0rem 0 -3.0rem;
    font-size: 1.55rem;
    line-height: 1.8;
    letter-spacing: -0.03em;
  }

  .ep02 .overview__btn {
    margin-top: 2.0rem;
  }

  .ep02 .overview__btn img {
    width: 7.3rem;
  }

  .ep02 .overview__img {
    margin-top: -6.5rem;
  }

  .ep02 .overview__img img {
    width: 34.5rem;
  }
}