@charset "UTF-8";
/*
Theme Name:KabuK Style
Theme URI:
Description:WordPress Original Theme for KabuK Style
Text Domain: kabukstyle_theme
Version:1.0.0
*/
/* -----------------------------------------------------------------
 base
----------------------------------------------------------------- */
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
/*======================
  reset
======================*/
html, body, div, span, iframe, h1, h2, h3, h4, p, a, img, dl, dt, dd, ol, ul, li, label, table, tbody, tr, th, td, figure, blockquote {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, figure, footer, header, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

video {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

/************************
　スクロールアニメーション用
*************************/
.fadeIn {
  opacity: 0;
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeIn.is-scrolled {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInUp.is-scrolled {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInLeft.is-scrolled {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInRight.is-scrolled {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fadeInZoomOut {
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInZoomOut.is-scrolled {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.fadeInZoomIn {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInZoomIn.is-scrolled {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* ----------------------
  keyframes
---------------------- */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes btnLineOne {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes btnLineOne {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@-webkit-keyframes btnLine {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(2, 1);
            transform: scale(2, 1);
  }
}

@keyframes btnLine {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(2, 1);
            transform: scale(2, 1);
  }
}

@-webkit-keyframes scrollLine {
  from {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes scrollLine {
  from {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

/*======================
  base
======================*/
body {
  color: #3B3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.11em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.11em;
  }
}

body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* -----------------------------------------------------------------
 Layout
----------------------------------------------------------------- */
/*=======================
  footer
=======================*/
.l-footer {
  z-index: 10;
  position: relative;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333333;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .l-footer {
    background-position: center;
  }
}

.l-footer__inner {
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 100px 0 0;
}

@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding: calc(60vw / 3.75) 0 0;
    display: block;
  }
}

.l-footer__logo {
  display: block;
  font-weight: bold;
  letter-spacing: 0.02em;
  font-size: calc(32vw / 14.4);
  color: #E64961;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .l-footer__logo {
    font-size: calc(20vw / 3.75);
    text-align: center;
  }
}

.l-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(14vw / 14.4);
  letter-spacing: 0.02em;
  margin-top: 100px;
  padding: 10px;
  text-align: center;
  color: #A4A4A4;
  background-color: #F5F5F5;
}

@media screen and (max-width: 767px) {
  .l-footer__copyright {
    text-align: center;
    width: 100%;
    font-size: calc(14vw / 3.75);
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 72px;
  gap: calc(35vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    margin: 40px auto;
    gap: 20px;
  }
}

.l-footer__nav > li > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: calc(22vw / 14.4);
  letter-spacing: 0.02em;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l-footer__nav > li > a {
    font-size: calc(min(4.27vw, 16px));
  }
}

.l-footer__nav > li > a > img {
  width: calc(20vw / 14.4);
  height: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-footer__nav > li > a > img {
    width: calc(18vw / 3.75);
    height: calc(18vw / 3.75);
  }
}

.l-footer__nav > li > a::before {
  display: block;
  content: '';
  width: 0;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -4px;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-footer__nav > li > a:hover::before {
  width: 100%;
  opacity: 1;
}

.l-footer__nav > li.m-contact > a {
  width: 88px;
  height: 32px;
  line-height: 30px;
  border: 1px solid #fff;
  text-align: center;
}

.l-footer__nav > li.m-contact > a::before {
  content: none;
}

@media screen and (min-width: 1024px) {
  .l-footer__nav > li.m-contact > a {
    width: 106px;
    height: 40px;
    line-height: 38px;
  }
}

.l-footer__nav > li.m-contact > a:hover {
  background-color: #fff;
  color: #3B3C3E;
}

.l-footer__cv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .l-footer__cv {
    gap: 10%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
  }
}

.l-footer__cv-item {
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: calc(18vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-footer__cv-item {
    font-size: calc(14vw / 3.75);
  }
}

.l-footer__cv-item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-footer__cv-item > a > img {
  width: calc(16vw / 14.4);
  height: calc(16vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-footer__cv-item > a > img {
    width: calc(12vw / 3.75);
    height: calc(12vw / 3.75);
  }
}

@media screen and (max-width: 767px) {
  .l-footer__others {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l-footer__privacy {
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .l-footer__privacy {
    margin-left: 20px;
  }
}

.l-footer__privacy > a:hover {
  opacity: .75;
}

.l-footer .c-language-swich {
  margin: 38px 0 38px;
}

@media screen and (max-width: 767px) {
  .l-footer .c-language-swich {
    margin: 0;
    font-weight: normal;
  }
}

/*=======================
  header
=======================*/
.l-header {
  width: 100%;
  height: calc(72vw / 14.4);
  min-height: 72px;
  background-color: white;
  -webkit-transition: .3s;
  transition: .3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 994;
}

@media screen and (max-width: 767px) {
  .l-header {
    height: 72px;
  }
}

.l-header.is-hidden {
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
}

.l-header__inner {
  position: relative;
  height: 100%;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  font-size: calc(24vw / 14.4);
  padding-left: calc(50vw / 14.4);
  color: #E64961;
}

@media screen and (max-width: 767px) {
  .l-header__logo {
    font-size: calc(18vw / 3.75);
  }
}

.l-header__logo a {
  -webkit-transition: .3s;
  transition: .3s;
}

.l-header__logo a:hover {
  opacity: .6;
}

.l-header__logo a img {
  width: 100%;
}

.l-header__logo a.m-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 56px;
}

@media screen and (min-width: 768px) {
  .l-header__logo a.m-logo {
    width: 80px;
  }
}

@media screen and (min-width: 1441px) {
  .l-header__logo a.m-logo {
    width: 91px;
  }
}

.l-header__logo a.m-text {
  display: block;
  width: 120px;
  margin-left: 16px;
}

@media screen and (min-width: 768px) {
  .l-header__logo a.m-text {
    width: 160px;
    margin-left: 30px;
  }
}

@media screen and (min-width: 1441px) {
  .l-header__logo a.m-text {
    width: 171px;
    margin-left: 72px;
  }
}

.l-navbtn {
  display: inline-block;
  width: 64px;
  height: 100%;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  top: 0;
  bottom: 0;
  right: 0;
  margin: 0 0 0 auto;
  z-index: 999;
  background-color: #E64961;
}

@media screen and (min-width: 768px) {
  .l-navbtn {
    display: none;
  }
}

.l-navbtn__sp {
  display: none;
  position: fixed;
  bottom: 0;
  height: 72px;
  width: 100%;
  z-index: 1000;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

@media screen and (max-width: 767px) {
  .l-navbtn__sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-navbtn__sp.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.l-navbtn__sp > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.l-navbtn__sp > ul > li .l-gnav__link {
  font-size: 16px;
}

.l-navbtn__bar {
  display: block;
  width: 32px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 16px;
  top: calc(50% - 1px);
  -webkit-transition: .3s;
  transition: .3s;
}

.l-navbtn__bar:nth-child(1) {
  -webkit-transform: translateY(-13px);
          transform: translateY(-13px);
}

.l-navbtn__bar:nth-child(2) {
  width: 28px;
}

.l-navbtn__bar:nth-child(3) {
  -webkit-transform: translateY(13px);
          transform: translateY(13px);
}

.l-gnav {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .l-gnav {
    width: 100%;
    height: 100vh;
    padding: 152px 40px 124px;
    background-color: white;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    overflow-y: scroll;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
  }
  .l-gnav.is-open {
    display: block;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (min-width: 768px) {
  .l-gnav {
    display: block !important;
  }
}

.l-gnav__list {
  color: #2F3034;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .l-gnav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 60px;
  }
}

.l-gnav__item {
  margin-right: calc(40vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-gnav__item {
    text-align: center;
    position: relative;
    z-index: 1000;
  }
}

.l-gnav__item:nth-last-child(2) {
  color: #fff;
  height: 100%;
  width: calc(205vw / 14.4);
  background-color: #F18A9D;
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .l-gnav__item:nth-last-child(2) {
    width: 50%;
  }
}

.l-gnav__item:nth-last-child(2) > a {
  font-size: calc(20vw / 14.4);
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-gnav__item:nth-last-child(2) > a > img {
  width: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-gnav__item:nth-last-child(2) > a > img {
    width: 16px;
  }
}

.l-gnav__item:last-child {
  color: #fff;
  height: 100%;
  width: calc(205vw / 14.4);
  margin-right: 0;
  background-color: #5DB8E9;
}

@media screen and (max-width: 767px) {
  .l-gnav__item:last-child {
    width: 50%;
  }
}

.l-gnav__item:last-child > a {
  gap: 10px;
  font-size: calc(20vw / 14.4);
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-gnav__item:last-child > a > img {
  width: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-gnav__item:last-child > a > img {
    width: 16px;
  }
}

.l-gnav__item > a {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.05rem;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .l-gnav__item > a {
    color: #fff;
    font-size: calc(20vw / 3.75);
    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;
  }
}

.l-gnav__item > a:hover {
  opacity: .6;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-gnav__item.m-contact > a {
  width: 140px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #3B3C3E;
  background-color: #3B3C3E;
  text-align: center;
  color: #fff;
}

.l-gnav__item.m-contact > a::before {
  content: none;
}

@media screen and (min-width: 768px) {
  .l-gnav__item.m-contact > a {
    width: 160px;
    height: 80px;
    line-height: 78px;
  }
}

.l-gnav__item.m-contact > a:hover {
  background-color: #fff;
  color: #3B3C3E;
}

.l-gnav__item-hover > a::before {
  display: block;
  content: '';
  width: 0;
  height: 2px;
  background-color: #3B3C3E;
  position: absolute;
  left: 0;
  bottom: -4px;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-gnav__item-hover > a:hover::before {
  width: 100%;
  opacity: 1;
}

.l-gnav__link-contact {
  line-height: 80px;
  width: 150px;
  text-align: center;
  background-color: blue;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-gnav__link-contact:hover {
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .7;
}

.is-open {
  background-color: #E64961;
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(1) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(2) {
  display: none;
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(3) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.l-gnav.is-open + .l-navbtn__sp,
.l-navbtn__sp.show-force {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/*=======================
  main
=======================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(72px, calc(100vw * 0.05), 9999px);
}

@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 72px;
  }
}

.l-main {
  display: block;
  padding-top: clamp(72px, calc(100vw * 0.05), 9999px);
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02rem;
}

@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 72px;
  }
}

/* -----------------------------------------------------------------
 Component
----------------------------------------------------------------- */
/*=======================
  404
=======================*/
.c-404 {
  padding: 100px 0;
}

.c-404__title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 1em;
}

.c-404__description {
  line-height: 2;
  letter-spacing: 0;
  text-align: center;
}

.c-404__link {
  display: block;
  margin-top: 1em;
  color: #004EA2;
  text-align: center;
  text-decoration: underline;
}

.c-btn > a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
  width: 320px;
  height: 70px;
  border: 1px solid #3B3C3E;
  background-color: #3B3C3E;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .c-btn > a {
    font-size: 16px;
    width: 240px;
    height: 56px;
  }
}

.c-btn > a::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: .4s;
  transition: .4s;
  z-index: -1;
}

.c-btn > a > .arrow::before, .c-btn > a > .arrow::after {
  display: block;
  content: '';
  height: 1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn > a > .arrow::before {
  width: 60px;
  background-color: #3B3C3E;
  right: -22px;
}

@media screen and (max-width: 1023px) {
  .c-btn > a > .arrow::before {
    width: 40px;
    right: -15px;
  }
}

.c-btn > a > .arrow::after {
  width: 30px;
  background-color: #fff;
  right: 8px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

@media screen and (max-width: 1023px) {
  .c-btn > a > .arrow::after {
    width: 20px;
    right: 4px;
  }
}

.c-btn > a:hover {
  color: #3B3C3E;
}

.c-btn > a:hover::before {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

.c-btn > a:hover > .arrow::before {
  background-color: transparent;
}

.c-btn > a:hover > .arrow::after {
  background-color: #3B3C3E;
  -webkit-animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
          animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
}

.c-btn.m-small > a {
  width: 225px;
  height: 55px;
  font-size: 14px;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-small > a {
    width: 190px;
    height: 50px;
  }
}

.c-btn.m-small > a > .arrow::before {
  width: 40px;
  right: -20px;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-small > a > .arrow::before {
    width: 30px;
    right: -15px;
  }
}

.c-btn.m-white > a {
  color: #3B3C3E;
  font-weight: 300;
  background-color: #fff;
}

.c-btn.m-white > a::before {
  background-color: #F0F0F0;
}

.c-btn.m-white > a > .arrow::before {
  background-color: #3B3C3E;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.c-btn.m-white > a > .arrow::after {
  content: none;
}

.c-btn.m-white > a:hover > .arrow::before {
  background-color: #3B3C3E;
  -webkit-animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
          animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
}

.c-btn.m-align-center {
  text-align: center;
}

.c-btn.m-align-right {
  text-align: right;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-align-right {
    margin-right: 20px;
  }
}

.c-btn.m-fw-normal > a {
  font-weight: 400;
}

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

.sp-only {
  display: none;
}

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

.c-requierment {
  background-image: url(../img/component/requierment-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.c-requierment__container {
  padding: calc(88vw / 14.4) calc(221vw / 14.4) calc(75vw / 14.4);
}

@media screen and (max-width: 767px) {
  .c-requierment__container {
    padding: calc(60vw / 3.75) calc(16vw / 3.75);
  }
}

.c-requierment__title {
  font-weight: bold;
  font-size: calc(40vw / 14.4);
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-requierment__title {
    font-size: calc(20vw / 3.75);
  }
}

.c-requierment__boxes {
  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;
  gap: calc(28vw / 14.4);
  margin-top: calc(49vw / 14.4);
}

@media screen and (max-width: 767px) {
  .c-requierment__boxes {
    margin-top: calc(20vw / 3.75);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(6vw / 3.75);
  }
}

.c-requierment__box {
  width: calc(480vw / 14.4);
  height: calc(140vw / 14.4);
  border-radius: 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .c-requierment__box {
    width: 100%;
    height: calc(80vw / 3.75);
    border-radius: 8px;
  }
}

.c-requierment__box:first-child {
  background-color: #F18A9D;
}

.c-requierment__box:first-child > img {
  position: absolute;
  width: calc(140vw / 14.4);
  top: calc(-249vw / 14.4);
  left: calc(90vw / 14.4);
}

@media screen and (max-width: 767px) {
  .c-requierment__box:first-child > img {
    width: calc(71vw / 3.75);
    top: calc(-126vw / 3.75);
    left: calc(6vw / 3.75);
  }
}

.c-requierment__box:first-child > img:nth-child(2) {
  position: absolute;
  width: calc(71vw / 3.75);
  top: calc(-66vw / 3.75);
  right: calc(1vw / 3.75);
  left: unset;
}

.c-requierment__box:last-child {
  background-color: #5DB8E9;
}

.c-requierment__box:last-child > img {
  position: absolute;
  width: calc(172vw / 14.4);
  top: calc(-161vw / 14.4);
  right: calc(50vw / 14.4);
}

.c-requierment__box > a {
  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;
  gap: calc(24vw / 14.4);
  height: 100%;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
  font-size: calc(32vw / 14.4);
  letter-spacing: 0.04em;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c-requierment__box > a {
    border-radius: 8px;
    font-size: calc(20vw / 3.75);
    gap: unset;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 24px calc(71vw / 3.75);
  }
}

.c-requierment__box > a > img {
  width: calc(28vw / 14.4);
}

@media screen and (max-width: 767px) {
  .c-requierment__box > a > img {
    width: calc(28vw / 3.75);
  }
}

/* -----------------------------------------------------------------
 Utility
----------------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .u-pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .u-sp-none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-only-tl {
    display: none !important;
  }
}

/* -----------------------------------------------------------------
Project
----------------------------------------------------------------- */
/*=======================
  contact
=======================*/
.ctt-fv__container {
  position: relative;
}

.ctt-fv__img {
  display: block;
}

.ctt-fv__title {
  position: absolute;
  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;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-weight: 600;
  font-size: calc(56vw / 14.4);
  letter-spacing: 0.28em;
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .ctt-fv__title {
    font-size: calc(28vw / 3.75);
    letter-spacing: 0.3em;
  }
}

.ctt-main {
  background-color: #FFFDF6;
}

.ctt-main__container {
  padding: calc(100vw / 14.4) calc(220vw / 14.4);
}

@media screen and (max-width: 767px) {
  .ctt-main__container {
    padding: calc(60vw / 3.75) calc(16vw / 3.75);
  }
}

.ctt-main__text {
  text-align: center;
  font-weight: bold;
  font-size: calc(20vw / 14.4);
  line-height: 1.4;
  letter-spacing: 1.8px;
}

@media screen and (max-width: 767px) {
  .ctt-main__text {
    font-size: calc(14vw / 3.75);
  }
}

.ctt-main__label {
  display: block;
}

.ctt-main__label:nth-child(n+2) {
  margin-top: 24px;
}

.ctt-main__title {
  font-size: calc(15vw / 14.4);
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #080808;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .ctt-main__title {
    font-size: calc(16vw / 3.75);
  }
}

.ctt-main__title > span {
  font-size: calc(14vw / 14.4);
  line-height: 2;
  letter-spacing: 0;
  color: #E64961;
  font-family: "Shippori Mincho", serif;
}

@media screen and (max-width: 767px) {
  .ctt-main__title > span {
    font-size: calc(15vw / 3.75);
  }
}

.ctt-main__privacy {
  text-align: center;
  font-size: calc(16vw / 14.4);
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .ctt-main__privacy {
    font-size: calc(14vw / 3.75);
  }
}

.ctt-main__privacy > a {
  text-decoration: underline;
  -webkit-transition: .3s;
  transition: .3s;
}

.ctt-main__privacy > a:hover {
  opacity: .6;
}

select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: calc(6.5vw / 14.4) calc(16vw / 14.4);
  border-radius: 6px;
  border: 1px solid #D3D3D3;
  font-size: calc(16vw / 14.4);
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #333;
  margin-top: 8px;
  text-align: left;
  cursor: pointer !important;
  width: 100%;
  height: calc(40vw / 14.4);
}

@media screen and (max-width: 767px) {
  select {
    padding: calc(9.5vw / 3.75) calc(13vw / 3.75);
    font-size: calc(16vw / 3.75);
    width: 100%;
    height: auto;
  }
}

input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid #D3D3D3;
  background-color: #fff;
  padding: calc(7vw / 14.4) calc(13vw / 14.4);
  font-weight: 500;
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-top: 8px;
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 767px) {
  input {
    padding: calc(5.5vw / 3.75) calc(13vw / 3.75);
    font-size: calc(16vw / 3.75);
  }
}

input::-webkit-input-placeholder {
  color: #D3D3D3;
}

input:-ms-input-placeholder {
  color: #D3D3D3;
}

input::-ms-input-placeholder {
  color: #D3D3D3;
}

input::placeholder {
  color: #D3D3D3;
}

textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid #D3D3D3;
  background-color: #fff;
  padding: calc(7vw / 14.4) calc(13vw / 14.4);
  font-weight: 500;
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-top: 8px;
  text-align: left;
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 767px) {
  textarea {
    padding: calc(13vw / 3.75) calc(13vw / 3.75);
    font-size: calc(16vw / 3.75);
    height: 300px;
  }
}

textarea::-webkit-input-placeholder {
  color: #D3D3D3;
}

textarea:-ms-input-placeholder {
  color: #D3D3D3;
}

textarea::-ms-input-placeholder {
  color: #D3D3D3;
}

textarea::placeholder {
  color: #D3D3D3;
}

/* input自体を非表示 */
input[type="checkbox"] {
  opacity: 0;
  left: 0;
  height: 24px;
  width: 24px;
  position: absolute;
}

.ctt-main__privacy .wpcf7-list-item {
  position: relative;
  display: inline-block;
  /* 横並びにしたい場合 */
}

/* カスタムチェックボックス：span::before */
.wpcf7-list-item::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  border-radius: 6px;
  border: 1px solid #D3D3D3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  margin-right: 8px;
  background-color: #fff;
}

/* チェック時：チェックマーク表示 */
.ctt-main__privacy .wpcf7-list-item.checked::before {
  content: "✔";
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 19px;
  background-color: #0075FF;
}

input[type="submit"] {
  width: calc(291vw / 14.4);
  border-radius: 100px;
  background-color: #333333;
  color: #fff;
  padding: calc(26vw / 14.4) calc(64vw / 14.4) calc(26vw / 14.4) calc(96vw / 14.4);
  font-weight: 900;
  font-size: calc(20vw / 14.4);
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
  margin: 40px auto 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  input[type="submit"] {
    width: calc(291vw / 3.75);
    padding: calc(26vw / 3.75) calc(92vw / 3.75) calc(24vw / 3.75) calc(64vw / 3.75);
    font-size: calc(20vw / 3.75);
  }
}

.wpcf7-spinner {
  margin: 0 0 0 auto;
}

.submit-button {
  background: url(../img/home/icon-arrow-black.png) no-repeat center;
  background-size: 20px auto;
  background-position: right calc(64vw / 14.4) center;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .submit-button {
    background-position: right calc(64vw / 3.75) center;
  }
}

/*=======================
  home
=======================*/
.hm-fv {
  background-color: #FFFDF6;
}

.hm-fv__img {
  display: block;
  position: relative;
  z-index: 1;
}

.hm-about {
  background-color: #FFFDF6;
  position: relative;
}

.hm-about__bg01 {
  position: absolute;
  width: calc(190vw / 14.4);
  left: calc(80vw / 14.4);
  top: calc(-110vw / 14.4);
  z-index: 0;
}

.hm-about__bg02 {
  position: absolute;
  width: calc(190vw / 14.4);
  right: calc(80vw / 14.4);
  top: calc(-110vw / 14.4);
  z-index: 0;
}

.hm-about__container {
  padding: calc(40vw / 14.4) calc(80vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-about__container {
    padding: calc(32vw / 3.75) calc(16vw / 3.75) calc(40vw / 3.75);
  }
}

.hm-about__text {
  font-weight: bold;
  font-size: calc(24vw / 14.4);
  line-height: 2;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .hm-about__text {
    font-size: calc(14vw / 3.75);
  }
}

.hm-about__text:nth-child(n+2) {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .hm-about__text:nth-child(n+2) {
    margin-top: 20px;
  }
}

.hm-about__text > span {
  color: #E64961;
}

.hm-about__title {
  font-weight: bold;
  font-size: calc(56vw / 14.4);
  letter-spacing: 0;
  line-height: 1;
  color: #E64961;
  margin-top: 78px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .hm-about__title {
    font-size: calc(26vw / 3.75);
    margin-top: 40px;
  }
}

.hm-company {
  background-color: #FFFDF6;
}

.hm-company__container {
  padding: calc(100vw / 14.4) calc(120vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-company__container {
    padding: 0 calc(16vw / 3.75) calc(60vw / 3.75);
  }
}

.hm-company__boxes {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: calc(60vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-company__boxes {
    padding: calc(24vw / 3.75) calc(16vw / 3.75) calc(33vw / 3.75);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(20vw / 3.75);
  }
}

.hm-company__boxes::before {
  position: absolute;
  content: "";
  background-image: url(../img/home/company-flower.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(-27vw / 14.4);
  right: calc(106vw / 14.4);
  width: calc(80vw / 14.4);
  height: calc(131vw / 14.4);
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .hm-company__boxes::before {
    background-image: url(../img/home/company-flower-sp.png);
    right: calc(58vw / 3.75);
    top: calc(-11vw / 3.75);
    width: calc(55vw / 3.75);
    height: calc(81vw / 3.75);
  }
}

.hm-company__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hm-company__bg > img {
  width: 100%;
  height: 100%;
}

.hm-company__img {
  position: relative;
  z-index: 1;
  width: calc(240vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-company__img {
    width: calc(180vw / 3.75);
  }
}

.hm-company__box {
  position: relative;
  width: calc(800vw / 14.4);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .hm-company__box {
    width: 100%;
  }
}

.hm-company__box-title {
  display: inline-block;
  font-size: calc(40vw / 14.4);
  font-weight: bold;
  line-height: 1.48;
  padding-bottom: 8px;
  border-bottom: 3px solid #F18A9D;
}

@media screen and (max-width: 767px) {
  .hm-company__box-title {
    font-size: calc(20vw / 3.75);
    padding-bottom: 20px;
    display: block;
    text-align: center;
  }
}

.hm-company__box-text {
  font-size: calc(14vw / 14.4);
  line-height: 1.8;
  margin-top: 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .hm-company__box-text {
    line-height: 1.6;
    margin-top: 16px;
    font-size: calc(14vw / 3.75);
  }
}

.hm-company__box-text:last-child {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .hm-company__box-text:last-child {
    margin-top: 16px;
  }
}

.hm-movie {
  background-image: url(../img/home/movie-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .hm-movie {
    background-image: url(../img/home/movie-bg-sp.png);
  }
}

.hm-movie__container {
  padding: calc(100vw / 14.4);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .hm-movie__container {
    padding: calc(60vw / 3.75) calc(43.5vw / 3.75) calc(88vw / 3.75);
  }
}

.hm-movie__title {
  position: relative;
  display: inline-block;
  padding: calc(24vw / 14.4) calc(60vw / 14.4);
  background-color: #F18A9D;
  color: #fff;
  font-weight: bold;
  font-size: calc(32vw / 14.4);
  border-radius: 30px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .hm-movie__title {
    padding: calc(12vw / 3.75) calc(32vw / 3.75);
    font-size: calc(20vw / 3.75);
    line-height: 1.2;
    border-radius: 16PX;
  }
}

.hm-movie__title > span {
  font-size: calc(44vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-movie__title > span {
    font-size: calc(28vw / 3.75);
  }
}

.hm-movie__title::before {
  position: absolute;
  content: "";
  bottom: calc(-17vw / 14.4);
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: calc(11vw / 14.4) solid transparent;
  border-left: calc(11vw / 14.4) solid transparent;
  border-top: calc(18vw / 14.4) solid #f18a9d;
  border-bottom: 0;
}

@media screen and (max-width: 767px) {
  .hm-movie__title::before {
    bottom: calc(-12vw / 3.75);
    border-right: calc(8vw / 3.75) solid transparent;
    border-left: calc(8vw / 3.75) solid transparent;
    border-top: calc(13vw / 3.75) solid #f18a9d;
  }
}

.hm-movie__img {
  display: block;
  margin: 42px auto 0;
  width: calc(425vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-movie__img {
    width: calc(280vw / 3.75);
    min-height: 28px auto 0;
  }
}

.hm-movie__boxes {
  position: relative;
}

.hm-movie__box {
  position: absolute;
  -webkit-box-shadow: 0 0 calc(30vw / 14.4) #0000001f;
          box-shadow: 0 0 calc(30vw / 14.4) #0000001f;
  background-color: #fff;
  padding: calc(20vw / 14.4) calc(60vw / 14.4) calc(20vw / 14.4) calc(40vw / 14.4);
  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;
  gap: calc(16vw / 14.4);
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .hm-movie__box {
    gap: 6px;
    padding: calc(8vw / 3.75) calc(20vw / 3.75) calc(8vw / 3.75) calc(16vw / 3.75);
  }
}

.hm-movie__box:nth-child(1) {
  border-radius: 20px 20px 0 20px;
  top: calc(215vw / 14.4);
  left: calc(-14vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-movie__box:nth-child(1) {
    border-radius: 8px 8px 0 8px;
    top: calc(187vw / 3.75);
    left: calc(-27.5vw / 3.75);
  }
}

.hm-movie__box:nth-child(2) {
  border-radius: 20px 20px 0 20px;
  top: calc(369vw / 14.4);
  left: calc(-48vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-movie__box:nth-child(2) {
    border-radius: 8px 8px 0 8px;
    top: calc(350vw / 3.75);
    left: calc(-26.5vw / 3.75);
  }
}

.hm-movie__box:nth-child(3) {
  border-radius: 20px 20px 20px 0;
  top: calc(137vw / 14.4);
  right: calc(141vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-movie__box:nth-child(3) {
    border-radius: 8px 8px 8px 0;
    top: calc(114vw / 3.75);
    right: calc(8.5vw / 3.75);
  }
}

.hm-movie__box:nth-child(4) {
  border-radius: 20px 20px 20px 0;
  top: calc(275vw / 14.4);
  right: calc(-48vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-movie__box:nth-child(4) {
    border-radius: 8px 8px 8px 0;
    top: calc(156vw / 3.75);
    right: calc(-27.5vw / 3.75);
  }
}

.hm-movie__box:nth-child(5) {
  border-radius: 20px 20px 20px 0;
  top: calc(413vw / 14.4);
  right: calc(-17vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-movie__box:nth-child(5) {
    border-radius: 8px 8px 8px 0;
    top: calc(284vw / 3.75);
    right: calc(-27.5vw / 3.75);
  }
}

.hm-movie__box > img {
  width: calc(38vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-movie__box > img {
    width: calc(18vw / 3.75);
  }
}

.hm-movie__box-text {
  text-align: left;
  font-size: calc(20vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  .hm-movie__box-text {
    font-size: calc(11vw / 3.75);
    line-height: 1.28;
    letter-spacing: 0.02em;
  }
}

.hm-work {
  background-color: #FFFDF6;
}

.hm-work__container {
  padding: calc(100vw / 14.4) calc(120vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-work__container {
    padding: calc(60vw / 3.75) calc(16vw / 3.75);
  }
}

.hm-work__title-box {
  text-align: center;
}

.hm-work__title {
  position: relative;
  display: inline-block;
  padding: calc(24vw / 14.4) calc(60vw / 14.4);
  background-color: #F18A9D;
  color: #fff;
  font-weight: bold;
  font-size: calc(32vw / 14.4);
  border-radius: 30px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .hm-work__title {
    padding: calc(12vw / 3.75) calc(32vw / 3.75);
    font-size: calc(20vw / 3.75);
    line-height: 1.2;
    border-radius: 16PX;
  }
}

.hm-work__title::before {
  position: absolute;
  content: "";
  bottom: calc(-17vw / 14.4);
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: calc(11vw / 14.4) solid transparent;
  border-left: calc(11vw / 14.4) solid transparent;
  border-top: calc(18vw / 14.4) solid #f18a9d;
  border-bottom: 0;
}

@media screen and (max-width: 767px) {
  .hm-work__title::before {
    bottom: calc(-12vw / 3.75);
    border-right: calc(8vw / 3.75) solid transparent;
    border-left: calc(8vw / 3.75) solid transparent;
    border-top: calc(13vw / 3.75) solid #f18a9d;
  }
}

.hm-work__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 54px;
}

@media screen and (max-width: 767px) {
  .hm-work__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 28px;
    gap: calc(60vw / 3.75);
  }
}

.hm-work__box {
  width: calc(580vw / 14.4);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .hm-work__box {
    width: 100%;
  }
}

.hm-work__box:nth-child(n+3) {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .hm-work__box:nth-child(n+3) {
    margin-top: 0;
  }
}

.hm-work__img {
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  .hm-work__img {
    border-radius: 15px;
  }
}

.hm-work__box-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: calc(40vw / 14.4);
  text-align: center;
  font-weight: bold;
  font-size: calc(28vw / 14.4);
  line-height: 1;
  padding: 6px calc(53vw / 14.4);
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .hm-work__box-title {
    font-size: calc(20vw / 3.75);
  }
}

.hm-work__box-title > img {
  width: calc(13vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-work__box-title > img {
    width: calc(7vw / 3.75);
  }
}

.hm-work__text {
  text-align: left;
  font-size: calc(16vw / 14.4);
  line-height: 1.8;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .hm-work__text {
    font-size: calc(16vw / 3.75);
    margin-top: 16px;
  }
}

.hm-work__link {
  width: calc(341vw / 14.4);
  height: calc(72vw / 14.4);
  margin: 28px auto 0;
}

@media screen and (max-width: 767px) {
  .hm-work__link {
    width: calc(294vw / 3.75);
    height: calc(68vw / 3.75);
  }
}

.hm-work__link > a {
  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;
  height: 100%;
  font-size: calc(20vw / 14.4);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  background-color: #333333;
  color: #fff;
  border-radius: 100px;
  gap: calc(32vw / 14.4);
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.hm-work__link > a:hover {
  opacity: .6;
}

@media screen and (max-width: 767px) {
  .hm-work__link > a {
    font-size: calc(14vw / 3.75);
    gap: calc(32vw / 3.75);
  }
}

.hm-work__link > a > img {
  width: calc(20vw / 14.4);
  height: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-work__link > a > img {
    width: calc(16vw / 3.75);
    height: calc(16vw / 3.75);
  }
}

.hm-president {
  background: url(../img/home/president-bg-line.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hm-president__container {
  padding: calc(130vw / 14.4) calc(39vw / 14.4) 0;
}

@media screen and (max-width: 767px) {
  .hm-president__container {
    padding: calc(60vw / 3.75) calc(16vw / 3.75) 0;
  }
}

.hm-president__title-box {
  text-align: center;
}

.hm-president__title {
  font-weight: bold;
  font-size: calc(45vw / 14.4);
  line-height: 1;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 767px) {
  .hm-president__title {
    font-size: calc(24vw / 3.75);
  }
}

.hm-president__title::after {
  position: absolute;
  content: "";
  background-image: url(../img/home/president-title01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(35vw / 14.4);
  height: calc(49vw / 14.4);
  left: calc(-55vw / 14.4);
  top: calc(13vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-president__title::after {
    width: calc(20vw / 3.75);
    height: calc(27vw / 3.75);
    top: calc(4vw / 3.75);
    left: calc(-26vw / 3.75);
  }
}

.hm-president__title::before {
  position: absolute;
  content: "";
  background-image: url(../img/home/president-title02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(35vw / 14.4);
  height: calc(49vw / 14.4);
  right: calc(-40vw / 14.4);
  top: calc(13vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-president__title::before {
    width: calc(20vw / 3.75);
    height: calc(27vw / 3.75);
    top: calc(4vw / 3.75);
    right: calc(-18vw / 3.75);
  }
}

.hm-president__boxes {
  position: relative;
  text-align: center;
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  .hm-president__boxes {
    margin-top: 23px;
  }
}

.hm-president__img {
  position: relative;
  display: block;
  z-index: 1;
  width: calc(440vw / 14.4);
  margin-left: calc(148vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-president__img {
    width: calc(280vw / 3.75);
    margin-left: 0;
    display: inline;
  }
}

.hm-president__box {
  padding: calc(20vw / 14.4) calc(40vw / 14.4);
  background-color: #E64961;
  color: #fff;
  display: inline-block;
  position: absolute;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .hm-president__box {
    z-index: 2;
    padding: calc(8vw / 3.75) calc(20vw / 3.75) calc(8vw / 3.75) calc(24vw / 3.75);
  }
}

.hm-president__box:nth-child(1) {
  top: calc(60vw / 14.4);
  right: calc(210vw / 14.4);
  border-radius: 20px 20px 0 20px;
}

@media screen and (max-width: 767px) {
  .hm-president__box:nth-child(1) {
    border-radius: 10px 10px 0 10px;
    top: calc(164vw / 3.75);
    right: calc(25vw / 3.75);
  }
}

.hm-president__box:nth-child(1) > img {
  position: absolute;
  width: calc(84vw / 14.4);
  right: calc(-60vw / 14.4);
  bottom: calc(-39vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-president__box:nth-child(1) > img {
    width: calc(58vw / 3.75);
    right: calc(-27vw / 3.75);
    top: calc(23vw / 3.75);
    bottom: unset;
  }
}

.hm-president__box:nth-child(2) {
  top: calc(164vw / 14.4);
  right: calc(311vw / 14.4);
  border-radius: 20px 20px 20px 0;
  background-color: #5DB8E9;
  color: #FFEA73;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .hm-president__box:nth-child(2) {
    border-radius: 10px 10px 10px 0;
    top: calc(230vw / 3.75);
    right: unset;
    left: calc(0vw / 3.75);
  }
}

.hm-president__box:nth-child(3) {
  top: calc(300vw / 14.4);
  right: calc(190vw / 14.4);
  border-radius: 20px 20px 0 20px;
}

@media screen and (max-width: 767px) {
  .hm-president__box:nth-child(3) {
    border-radius: 10px 10px 0 10px;
    top: calc(286vw / 3.75);
    right: calc(20vw / 3.75);
  }
}

.hm-president__box:nth-child(3) > img {
  position: absolute;
  width: calc(65vw / 14.4);
  right: calc(-40vw / 14.4);
  bottom: calc(-40vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-president__box:nth-child(3) > img {
    width: calc(44vw / 3.75);
    right: calc(-21vw / 3.75);
    top: calc(10vw / 3.75);
    bottom: unset;
  }
}

.hm-president__box:nth-child(4) {
  top: calc(404vw / 14.4);
  right: calc(350vw / 14.4);
  border-radius: 20px 20px 20px 0;
  background-color: #5DB8E9;
  color: #FFEA73;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .hm-president__box:nth-child(4) {
    border-radius: 10px 10px 10px 0;
    top: calc(338vw / 3.75);
    right: unset;
    left: calc(0vw / 3.75);
  }
}

.hm-president__box:nth-child(5) {
  top: calc(540vw / 14.4);
  right: calc(219vw / 14.4);
  border-radius: 20px 20px 0 20px;
}

@media screen and (max-width: 767px) {
  .hm-president__box:nth-child(5) {
    border-radius: 10px 10px 0 10px;
    top: calc(394vw / 3.75);
    right: calc(34vw / 3.75);
  }
}

.hm-president__box:nth-child(5) > img {
  position: absolute;
  width: calc(65vw / 14.4);
  right: calc(-40vw / 14.4);
  bottom: calc(-40vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-president__box:nth-child(5) > img {
    width: calc(58vw / 3.75);
    right: calc(-34vw / 3.75);
    top: calc(8vw / 3.75);
    bottom: unset;
  }
}

.hm-president__box:nth-child(6) {
  top: calc(616vw / 14.4);
  right: calc(371vw / 14.4);
  border-radius: 20px 20px 20px 0;
  background-color: #5DB8E9;
  color: #FFEA73;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .hm-president__box:nth-child(6) {
    border-radius: 10px 10px 10px 0;
    top: calc(432vw / 3.75);
    right: unset;
    left: calc(0vw / 3.75);
  }
}

.hm-president__box-text {
  text-align: left;
  font-size: calc(20vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .hm-president__box-text {
    font-size: calc(11vw / 3.75);
    line-height: 1.28;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

.hm-point {
  background-image: url(../img/home/point-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: calc(-100vw / 14.4);
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .hm-point {
    background-image: url(../img/home/point-bg-sp.png);
    margin-top: calc(-21vw / 3.75);
  }
}

.hm-point__container {
  padding: calc(100vw / 14.4) calc(40vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-point__container {
    padding: calc(60vw / 3.75) calc(16vw / 3.75);
  }
}

.hm-point__title-box {
  text-align: center;
}

.hm-point__title {
  position: relative;
  display: inline-block;
  padding: calc(24vw / 14.4) calc(60vw / 14.4);
  background-color: #F18A9D;
  color: #fff;
  font-weight: bold;
  font-size: calc(32vw / 14.4);
  border-radius: 30px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .hm-point__title {
    padding: calc(12vw / 3.75) calc(32vw / 3.75);
    font-size: calc(20vw / 3.75);
    line-height: 1.2;
    border-radius: 16PX;
  }
}

.hm-point__title::before {
  position: absolute;
  content: "";
  bottom: calc(-17vw / 14.4);
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: calc(11vw / 14.4) solid transparent;
  border-left: calc(11vw / 14.4) solid transparent;
  border-top: calc(18vw / 14.4) solid #f18a9d;
  border-bottom: 0;
}

@media screen and (max-width: 767px) {
  .hm-point__title::before {
    bottom: calc(-12vw / 3.75);
    border-right: calc(8vw / 3.75) solid transparent;
    border-left: calc(8vw / 3.75) solid transparent;
    border-top: calc(13vw / 3.75) solid #f18a9d;
  }
}

.hm-point__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(20vw / 14.4);
  margin-top: 54px;
}

@media screen and (max-width: 767px) {
  .hm-point__boxes {
    gap: calc(15vw / 3.75);
    margin-top: 28px;
  }
}

.hm-point__box {
  padding: calc(20vw / 14.4) calc(26vw / 14.4);
  background-color: #F8EFD3;
  border-radius: 20px;
  width: calc(440vw / 14.4);
  height: calc(400vw / 14.4);
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .hm-point__box {
    width: calc(164vw / 3.75);
    height: calc(150vw / 3.75);
    border-radius: 8px;
  }
}

.hm-point__box:nth-child(1) > img {
  width: calc(187vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-point__box:nth-child(1) > img {
    width: calc(67vw / 3.75);
  }
}

.hm-point__box:nth-child(2) > img {
  width: calc(274vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-point__box:nth-child(2) > img {
    width: calc(107vw / 3.75);
  }
}

.hm-point__box:nth-child(3) > img {
  width: calc(252vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-point__box:nth-child(3) > img {
    width: calc(106vw / 3.75);
  }
}

.hm-point__box:nth-child(4) > img {
  width: calc(233vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-point__box:nth-child(4) > img {
    width: calc(91vw / 3.75);
  }
}

.hm-point__box:nth-child(5) > img {
  width: calc(309vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-point__box:nth-child(5) > img {
    width: calc(121vw / 3.75);
  }
}

.hm-point__box:nth-child(6) > img {
  width: calc(320vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-point__box:nth-child(6) > img {
    width: calc(120vw / 3.75);
  }
}

.hm-point__box > img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 0;
}

.hm-point__number {
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: calc(32vw / 14.4);
  line-height: 1.6;
  color: #F18A9D;
  border-bottom: 3px solid #F18A9D;
  top: calc(20vw / 14.4);
  left: calc(26vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-point__number {
    font-size: calc(18vw / 3.75);
    top: calc(3vw / 3.75);
    left: calc(10vw / 3.75);
  }
}

.hm-point__box-title {
  position: absolute;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  font-weight: bold;
  font-size: calc(40vw / 14.4);
  line-height: 1.6;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .hm-point__box-title {
    font-size: calc(20vw / 3.75);
  }
}

.hm-point__box-title > span {
  display: block;
  font-size: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-point__box-title > span {
    font-size: calc(11vw / 3.75);
    margin-top: 6px;
  }
}

.rqmt-fv__container {
  position: relative;
}

.rqmt-fv__img {
  display: block;
}

.rqmt-fv__title {
  position: absolute;
  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;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-weight: 600;
  font-size: calc(56vw / 14.4);
  letter-spacing: 0.28em;
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .rqmt-fv__title {
    font-size: calc(28vw / 3.75);
    letter-spacing: 0.3em;
  }
}

.rqmt-main {
  background-color: #FFFDF6;
}

.rqmt-main__container {
  padding: calc(100vw / 14.4) calc(220vw / 14.4) calc(120vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rqmt-main__container {
    padding: calc(60vw / 3.75) calc(16vw / 3.75);
  }
}

.rqmt-main__title-box {
  text-align: center;
}

.rqmt-main__title {
  position: relative;
  display: inline-block;
  padding: calc(24vw / 14.4) calc(60vw / 14.4);
  background-color: #f18a9d;
  color: #fff;
  font-weight: bold;
  font-size: calc(32vw / 14.4);
  border-radius: 30px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .rqmt-main__title {
    padding: calc(12vw / 3.75) calc(32vw / 3.75);
    font-size: calc(20vw / 3.75);
    line-height: 1.2;
    border-radius: 16px;
  }
}

.rqmt-main__title::before {
  position: absolute;
  content: "";
  bottom: calc(-17vw / 14.4);
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: calc(11vw / 14.4) solid transparent;
  border-left: calc(11vw / 14.4) solid transparent;
  border-top: calc(18vw / 14.4) solid #f18a9d;
  border-bottom: 0;
}

@media screen and (max-width: 767px) {
  .rqmt-main__title::before {
    bottom: calc(-12vw / 3.75);
    border-right: calc(8vw / 3.75) solid transparent;
    border-left: calc(8vw / 3.75) solid transparent;
    border-top: calc(13vw / 3.75) solid #f18a9d;
  }
}

.rqmt-main__list {
  margin: 54px auto 0;
  width: calc(888vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rqmt-main__list {
    width: 100%;
    margin-top: 28px;
  }
}

.rqmt-main__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: calc(40vw / 14.4);
  border-bottom: 1px solid;
  /* 太さ調整可能 */
  -o-border-image: linear-gradient(to right, #E64961 0%, #E64961 18%, #D3D3D3 18%, #D3D3D3 64%, #D3D3D3 100%) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#E64961), color-stop(18%, #E64961), color-stop(18%, #D3D3D3), color-stop(64%, #D3D3D3), to(#D3D3D3)) 1;
     border-image: linear-gradient(to right, #E64961 0%, #E64961 18%, #D3D3D3 18%, #D3D3D3 64%, #D3D3D3 100%) 1;
}

@media screen and (max-width: 767px) {
  .rqmt-main__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: calc(16vw / 3.75);
  }
}

@media screen and (max-width: 767px) {
  .rqmt-main__item:first-child {
    padding-top: calc(16vw / 3.75);
    border-top: 1px solid;
    /* 太さ調整可能 */
    -o-border-image: linear-gradient(to right, #E64961 0%, #E64961 18%, #D3D3D3 18%, #D3D3D3 64%, #D3D3D3 100%) 1;
       border-image: -webkit-gradient(linear, left top, right top, from(#E64961), color-stop(18%, #E64961), color-stop(18%, #D3D3D3), color-stop(64%, #D3D3D3), to(#D3D3D3)) 1;
       border-image: linear-gradient(to right, #E64961 0%, #E64961 18%, #D3D3D3 18%, #D3D3D3 64%, #D3D3D3 100%) 1;
  }
}

.rqmt-main__item:nth-child(n+2) {
  padding-top: calc(32vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rqmt-main__item:nth-child(n+2) {
    padding-top: calc(16vw / 3.75);
  }
}

.rqmt-main__item > ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.rqmt-main__item > ul > li {
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #02001A;
  list-style: disc outside;
}

@media screen and (max-width: 767px) {
  .rqmt-main__item > ul > li {
    margin-left: calc(20vw / 3.75);
    font-size: calc(14vw / 3.75);
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.rqmt-main__name {
  width: calc(270vw / 14.4);
  color: #E64961;
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .rqmt-main__name {
    font-size: calc(14vw / 3.75);
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */