@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4897579143vw;
  }
}
@media (min-width: 1074px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP";
  color: #fff;
  background: #000;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1074px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-section {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .l-section {
    margin-top: 9.375rem;
  }
}

.c-card--new {
  background: url(../../../images/pc/sp/Newiconpng.png) center center/cover;
  width: 3.75rem;
  height: 3.75rem;
  display: block;
  z-index: 10;
  position: absolute;
  top: -0.9375rem;
  left: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-card--new {
    top: -1.25rem;
    left: -1.25rem;
  }
}

.c-card {
  display: block;
  position: relative;
  background: #fff;
  color: #000;
}
.c-card:hover {
  background: #333;
  color: #fff;
}

.c-card__img img {
  width: 100%;
  aspect-ratio: 335/223;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card__title {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2.1875rem;
  padding-top: 0.625rem;
}

.c-card__text {
  line-height: 1.5625rem;
}

.c-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0.625rem;
  padding-bottom: 0.9375rem;
}

.c-card__category {
  display: inline-block;
  background: #FFEA2E;
  color: #000;
}

.c-section-btn {
  width: 100%;
  display: inline-block;
  text-align: center;
  background: #333;
  padding: 0.9375rem;
  border: 0.0625rem solid #fff;
  position: relative;
  overflow: hidden;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
@media screen and (min-width: 768px) {
  .c-section-btn {
    max-width: 21.875rem;
  }
}

/*ボタン内spanの形状*/
.c-section-btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}

.c-section-btn:hover span {
  color: #333;
}

.bgleft:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

@media screen and (min-width: 768px) {
  .c-section-title-box {
    width: 100%;
  }
}

.c-section-title1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3.125rem;
  color: #F9F871;
  opacity: 0.27;
  line-height: 1em;
}
@media screen and (min-width: 768px) {
  .c-section-title1 {
    font-size: 6.875rem;
  }
}

.c-section-title2 {
  font-size: 1.25rem;
  margin-top: -1.25rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-section-title2 {
    font-size: 1.875rem;
    margin-top: -5.625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-section__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    position: relative;
  }
}

.c-section__item:nth-child(even) {
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
      -ms-flex-direction: unset;
          flex-direction: unset;
}

.p-blog__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-blog__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .p-blog__sub-title {
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .p-blog__cards-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-blog__cards-box {
  display: block;
  padding-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-blog__cards-box {
    padding-top: 0;
    width: calc(33.33333% - 1.04167rem);
  }
}

.p-blog__cards-box-top {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .p-blog__cards-box:not(:nth-child(3n+1)) {
    margin-left: 1.5625rem;
  }
}

.p-blog__cards-box:nth-child(n+4) {
  margin-top: 3.125rem;
}

.p-card__btn {
  margin-top: 1.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-card__btn {
    margin-top: 3.125rem;
  }
}

.p-contact {
  background: #3D3D3D;
}

.p-contact__title {
  padding-top: 3.125rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-contact__sub-title {
    text-align: left;
  }
}

.p-contact__text {
  padding-top: 1.25rem;
  text-align: center;
}

.p-contact__btn {
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.p-footer {
  padding-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: myrem(80);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-footer__logo {
  max-width: 6.25rem;
  padding: 0.625rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__right {
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav {
    padding-right: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-footer__list a {
  padding-bottom: 0.5rem;
}
.p-footer__list a:hover {
  border-bottom: 0.0625rem solid #FFEA2E;
}

.p-footer__item:not(:first-child) {
  padding-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__item:not(:first-child) {
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__item:not(:last-child) {
    margin-right: 3.125rem;
  }
}

.p-footer__copyright {
  text-align: center;
  padding-top: 1.875rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    padding-bottom: 1.875rem;
  }
}

.c-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.p-hamburger {
  position: fixed;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 0.0625rem solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-hamburger {
    display: none;
  }
}

.p-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1.125rem;
  height: 0.125rem;
  background-color: #fff;
  -webkit-transition: inherit;
  transition: inherit;
}

.p-hamburger__line::before,
.p-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}

.p-hamburger__line::before {
  top: -0.3125rem;
}

.p-hamburger__line::after {
  top: 0.3125rem;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line {
  background-color: transparent;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::before,
.p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  top: 0;
  background-color: #fff;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  margin: -0.0625rem;
  position: fixed;
}

.p-menu {
  z-index: 99;
  position: fixed;
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #efefef;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .p-menu {
    display: none;
  }
}

.p-menu-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.9375rem;
}

.p-menu-list:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #FFEA2E;
          text-decoration-color: #FFEA2E;
  cursor: pointer;
}

.p-menu.is-drawerActive {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.p-header {
  background-color: rgba(17, 17, 17, .5);
  position: fixed;
  width: 100%;
  z-index: 100;
  height: 3.125rem;
}

@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-right: 0rem;
    margin-right: 0rem;
  }
}

.p-header__items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.p-header__logo {
  max-width: 6.25rem;
  padding: 0.625rem;
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  line-height: 3.125rem;
}

.p-header__list {
  color: #fff;
  display: none;
  min-width: 7.5rem;
  height: 3.125rem;
}
.p-header__list a {
  display: inline;
  padding-bottom: 0.5rem;
}
.p-header__list a:hover {
  border-bottom: 0.0625rem solid #FFEA2E;
}
@media screen and (min-width: 768px) {
  .p-header__list {
    display: block;
  }
}

.p-header__list--contact {
  color: #333;
  background: #fff;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  display: none;
  min-width: 7.5rem;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-header__list--contact {
    display: block;
  }
}

.p-header__list--contact span {
  position: relative;
  z-index: 3;
  color: #333;
}

.p-header__list--contact:hover span {
  color: #fff;
}

.bgleft2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #333;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.bgleft2:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.p-header.change-color {
  background-color: #111;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-overview__title {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-overview__sub-title {
    text-align: left;
  }
}

.p-overview__inner {
  background: #333;
}
@media screen and (min-width: 768px) {
  .p-overview__inner {
    background: none;
  }
}

.c-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .c-inner {
    max-width: 1074px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.p-overview__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-overview__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    position: relative;
  }
  .p-overview__item:nth-child(even) {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
  .p-overview__item::after {
    content: "";
    position: absolute;
    background-color: #333;
    z-index: -1;
    height: 100%;
    width: 200vw;
    right: 25%;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}
.p-overview__box-image {
  aspect-ratio: 375/261;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-overview__box-image {
    width: 50%;
    padding-right: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-overview__box-image-sub {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-overview__box-image-sub img {
  margin-right: -3.125rem;
}

.p-overview__box {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-overview__box {
    width: 50%;
    position: relative;
    text-align: left;
    padding-top: 5.625rem;
    padding-bottom: 5.625rem;
    padding-left: 1.5625rem;
    padding-right: 6.25rem;
  }
}

.p-overview__box-title {
  font-size: 1.5625rem;
}

.p-overview__box-text {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-overview__box-text {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    line-height: 2.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-overview__box-btn {
    width: 21.875rem;
    bottom: 5.3125rem;
    position: absolute;
  }
}

.p-swiper {
  width: 100%;
}

.swiper-container {
  overflow: hidden;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
          animation: zoomUp 10s linear 0s 1 normal both;
}

.slide-img .pc,
.slide-img .sp {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
}

.pc {
  display: block !important;
  aspect-ratio: 1280/850;
  width: 100%;
}

.sp {
  display: none !important;
  aspect-ratio: 374/770;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.p-main-visual__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.p-main-visual__title {
  font-size: 1.75rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-main-visual__title {
    font-size: 3.125rem;
  }
}

.p-main-visual__lead {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-main-visual__lead {
    font-size: 1.5625rem;
  }
}

.p-main-visual__underbox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-main-visual__underbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 5rem;
  }
}

.p-main-visual__underbox-case1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-main-visual__underbox-case1 {
    padding-top: 0;
  }
}

.p-main-visual__underbox-label {
  border: 0.0625rem solid #fff;
  padding: 0.3125rem 1.25rem;
  margin-left: 2.5rem;
}

.p-main-visual__underbox-case2 {
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-main-visual__underbox-case2 {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-main-visual__underbox-title {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  line-height: 1.4375rem;
}
.p-main-visual__underbox-title:hover {
  -webkit-text-decoration: underline #fff;
          text-decoration: underline #fff;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .p-main-visual__underbox-title {
    white-space: nowrap;
  }
}

.p-main-visual__btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-main-visual__btn {
    padding-top: 0.3125rem;
    margin-left: 2.5rem;
  }
}

.p-main-visual__underbox-btn {
  padding: 0.3125rem 1.875rem;
  width: 100%;
  display: inline-block;
  background: #333;
  border: 0.0625rem solid #fff;
  color: #fff;
  position: relative;
  overflow: hidden;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.p-main-visual__underbox-btn span {
  position: relative;
  z-index: 3;
  color: #fff;
}

.p-main-visual__underbox-btn:hover span {
  color: #333;
}

.bgleft-mv:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.bgleft-mv:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

@media screen and (min-width: 768px) {
  .p-main-visual__btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding-top: 0.3125rem;
    margin-left: 2.5rem;
  }
  .p-main-visual__underbox-btn {
    padding: 0.3125rem 1.875rem;
    width: 100%;
    display: inline-block;
    background: #fff;
    border: none;
    color: #333;
    position: relative;
    overflow: hidden;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
  }
  .p-main-visual__underbox-btn span {
    position: relative;
    z-index: 3;
    color: #333;
  }
  .p-main-visual__underbox-btn:hover span {
    color: #fff;
  }
  .bgleft-mv:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #333;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  .bgleft-mv:hover:before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
#p-page_top {
  width: 3.125rem;
  height: 3.125rem;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  background: #FFFFFF;
}

#p-page_top a {
  position: relative;
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  text-decoration: none;
}

#p-page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f106";
  font-size: 1.5625rem;
  color: #333333;
  position: absolute;
  width: 3.125rem;
  height: 3.125rem;
  top: -0.3125rem;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#p-page_top a::before:hover {
  color: #FFFFFF;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
