@charset "UTF-8";

/*==========================================
color
===========================================*/
.c-bg--key {
  background-color: #000000;
}

.c-bg--accent {
  background-color: #eb6100;
}

.c-bg--gray {
  background: #f4f4f4;
}

.c-bg--lightorange {
  background: #fdf1e8;
}

.c-bg--white {
  background-color: white;
}

/*==========================================
global
===========================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Helvetica, Verdana, Arial, Helvetica;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  /*overflow-x: hidden;*/
  overflow-wrap: break-word;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  color: inherit;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

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

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

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

th,
td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  /*border: 1px solid $color-table;*/
}

/*==========================================
setting
===========================================*/
/*==========================================
btn
===========================================*/
.c-btn {
  width: 100%;
  height: auto;
  color: white;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: none;
  background: #eb6100;
  text-align: center;
  -webkit-appearance: none;
  position: relative;
  display: flex;
  flex-direction: row;
  place-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 30;
  border: 4px solid #eb6100;
  position: relative;
  box-shadow: 10px 10px 0px 0px #e5e5e5;
  /*
    &:after {
      content: " ";
      display: block;
      background: $gray;
      width: 100%;
      height: 100%;
      position: absolute;
      right: -10px;
      bottom: -10px;
      z-index: -1;
      margin: auto;
    }*/
}

@media screen and (min-width: 768px) {
  .c-btn {
    height: auto;
  }
}

.c-btn:not(:disabled) {
  cursor: pointer;
}

.c-btn:hover,
.c-btn:focus {
  background: white;
  outline: none;
  transform: translateY(5px);
  box-shadow: none;
  border: 4px solid #eb6100;
  color: #eb6100;
}

.c-btn::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.c-btn__wrap {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .c-btn__wrap {
    width: 100%;
    max-width: 425px;
  }
}

.c-btn {
  padding: 6.6666666667vw 5.3333333333vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.6666666667vw;
  font-weight: 500;
  line-height: 1.1428571429;
}

@media screen and (min-width: 768px) {
  .c-btn {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    padding: 3rem 5rem;
  }
}

.c-btn--s {
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.3571428571;
  padding: 2.6666666667vw 1.3333333333vw;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .c-btn--s {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5555555556;
    padding: 1.5rem 2rem;
  }
}

/*==========================================
title
===========================================*/
.c-heading {
  font-size: 6.6666666667vw;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 5rem;
}

@media screen and (min-width: 768px) {
  .c-heading {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.5555555556;
    letter-spacing: 0.2rem;
    margin-bottom: 12rem;
  }
}

.c-heading .en {
  font-size: 6.6666666667vw;
  font-weight: 700;
  line-height: 1.4;
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 768px) {
  .c-heading .en {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1111111111;
    letter-spacing: 0.1rem;
  }
}

.c-heading .small {
  font-size: 6.6666666667vw;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .c-heading .small {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.25;
  }
}

.c-heading .xsmall {
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.3333333333;
}

@media screen and (min-width: 768px) {
  .c-heading .xsmall {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.4285714286;
  }
}

.c-title-lineBt {
  display: block;
  text-align: center;
}

.c-title-lineBt__inner {
  text-align: center;
  padding: 1.3333333333vw;
  position: relative;
  display: block;
}

@media screen and (min-width: 768px) {
  .c-title-lineBt__inner {
    display: inline-block;
    padding: 0 4rem;
  }
}

.c-title-lineBt__inner:before {
  content: "";
  display: block;
  background: #eb6100;
  width: 18.6666666667vw;
  height: 10px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -16px;
}

@media screen and (min-width: 768px) {
  .c-title-lineBt__inner:before {
    width: 75px;
  }
}

.c-title-lineBt__inner:after {
  content: "";
  display: block;
  background: black;
  width: 34.6666666667vw;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -12px;
}

@media screen and (min-width: 768px) {
  .c-title-lineBt__inner:after {
    width: 60%;
  }
}

/*==========================================
setting
===========================================*/
/*==========================================
layout
===========================================*/
.l-wrapper {
  width: 100%;
  overflow: hidden;
}

.l-inner {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1000px;
  height: inherit;
  padding-right: 6.6666666667vw;
  padding-left: 6.6666666667vw;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .l-inner {
    padding-right: 2.4rem;
    padding-left: 2.4rem;
  }
}

@media (min-width: 1400px) {
  .l-inner {
    padding: 0;
  }
}

.l-inner--narrow {
  max-width: 900px;
}

.l-inner--middle {
  max-width: 1100px;
}

.l-inner--wide {
  max-width: 1350px;
}

.l-inner--full {
  padding-right: 6.6666666667vw;
  padding-left: 6.6666666667vw;
  max-width: 100%;
}

/* header.css */
/*==========================================
header
===========================================*/
.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}

.p-header {
  background-color: white;
  width: 100%;
}

.p-header__inner {
  position: relative;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 0 1rem;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

.p-header__logo a {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.3s all;
}

.p-header__logo a:hover {
  opacity: 0.6;
}

.p-header__logo a img {
  width: 86vw;
  max-width: 97%;
}

@media screen and (min-width: 768px) {
  .p-header__logo a img {
    /* width: auto; */
  }
}

.p-header__nav {
  display: flex;
  z-index: 10;
  position: absolute;
  top: 0;
  right: -100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: transparent;
  font-weight: 700;
  opacity: 0;
  transition: 0.6s;
}

@media screen and (min-width: 768px) {
  .p-header__nav {
    position: static;
    height: 100%;
    opacity: initial;
    align-items: flex-end;
  }
}

.p-header__nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  background: #eb6100;
  border-bottom: 30px solid black;
  opacity: 1;
  transition: 0.6s;
}

.p-nav {
  padding: 1rem 0;
}

.p-nav__list {
  display: block;
  width: 100%;
  padding: 0 2rem;
}

@media screen and (min-width: 768px) {
  .p-nav__list {
    display: flex;
    padding-right: 0;
  }
}

.p-nav__item {
  position: relative;
  width: auto;
  flex: 1 0 auto;
}

.p-nav__link {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6666666667;
  text-decoration: none;
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-nav__link {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6666666667;
  }
}

.p-nav__link:after {
  background-color: black;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 10%;
  bottom: 1rem;
  position: absolute;
  transition: 0.5s all;
  width: 0;
}

@media screen and (min-width: 768px) {
  .p-nav__link:after {
    background-color: #eb6100;
  }
}

.p-nav__link:hover:after {
  width: 80%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.p-header__hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
}

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

.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  cursor: pointer;
}

.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 30px;
  height: 2px;
  transform: translateX(-50%);
  background: #000;
  transition: all 0.4s;
}

.c-hamburger span:nth-of-type(1) {
  top: -4px;
}

.c-hamburger span:nth-of-type(2) {
  top: 1px;
}

.c-hamburger span:nth-of-type(3) {
  top: 6px;
}

.c-hamburger span.c-hamburger__text {
  display: block;
  top: 12px;
  background: transparent;
  color: #000;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  width: 40px;
  height: auto;
}

.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}

.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}

.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}

/*==========================================
hero
===========================================*/
.p-hero {
  width: 100%;
  height: fit-content;
  background: white;
  position: relative;
  z-index: 15;
}

@media screen and (min-width: 768px) {
  .p-hero {
    position: relative;
    height: auto;
  }
}

.p-hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 0 auto;
  padding-top: 13.3333333333vw;
}

@media screen and (min-width: 768px) {
  .p-hero__inner {
    padding-top: 10rem;
  }
}

.p-hero__catch {
  width: 100%;
  height: auto;
  aspect-ratio: 750/218;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 6.6666666667vw);
  margin: auto;
  z-index: 10;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-hero__catch {
    width: 860px;
    aspect-ratio: 860/218;
    left: calc(50% - 43.4343434343vw);
    right: inherit;
    top: inherit;
    bottom: 10%;
    margin: inherit;
  }
}

.ac-wrap {
  width: 100%;
  height: 800px;
  background: black;
  position: relative;
}

.active2 {
  width: 100%;
  height: 200px;
  background: black;
  animation-name: kf_c01;
  animation-duration: 150ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  transform: scale(1.05);
}

@keyframes kf_c01 {
  100% {
    clip-path: polygon(100% 0, 4% 0, 0 100%, 96% 100%);
  }
}

/*==========================================
panel gsap
===========================================*/
.p-hero__panel {
  width: 130vw;
  height: auto;
  left: -22vw;
  position: relative;
  aspect-ratio: 1300/1700;
}

@media screen and (min-width: 768px) {
  .p-hero__panel {
    width: 118%;
    left: -9%;
    aspect-ratio: 2340/790;
    overflow: hidden;
  }
}

.p-hero__panel div.ac {
  width: 62%;
  aspect-ratio: 770/790;
  height: auto;
  position: absolute;
  color: #e7d4e3;
  background: #ffffff;
  font-size: 5rem;
  font-weight: 700;
  line-height: 2;
  clip-path: polygon(32% 0, 100% 0%, 68% 100%, 0% 100%);
  /*clip-path: polygon(50% 0, 50% 0, 18% 100%, 18% 100%);*/
  /*transition: transform .32s cubic-bezier(0.23, 1, 0.32, 1);*/
  transform: scale(1.05);
  /*&.active {
    animation-name: kf_c03;
    animation-duration: 150ms;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    transform: scale(1.05);
  }*/
  /*
    &:nth-child(1){
    left: -5%;
  }
    &:nth-child(2){
    left: 21%;
  }
    &:nth-child(3){
    left: 47%;
  }
    &:nth-child(4){
    left: 73%;
  }*/
}

@media screen and (min-width: 768px) {
  .p-hero__panel div.ac {
    width: 32%;
    aspect-ratio: 770/790;
  }
}

.p-hero__panel div.ac:nth-child(1) {
  left: 0;
  background: url(../images/slider_pic01.jpg) no-repeat;
  background-size: auto 100%;
}

@media screen and (min-width: 768px) {
  .p-hero__panel div.ac:nth-child(1) {
    left: -10px;
  }
}

.p-hero__panel div.ac:nth-child(2) {
  left: calc(38% + 10.6666666667vw);
  background: url(../images/slider_pic02.jpg) no-repeat;
  background-size: auto 100%;
}

@media screen and (min-width: 768px) {
  .p-hero__panel div.ac:nth-child(2) {
    left: calc(23% - 6px);
  }
}

.p-hero__panel div.ac:nth-child(3) {
  top: 86.6666666667vw;
  left: 0;
  background: url(../images/slider_pic03.jpg) no-repeat;
  background-size: auto 100%;
}

@media screen and (min-width: 768px) {
  .p-hero__panel div.ac:nth-child(3) {
    top: 0;
    left: calc(46% - 2px);
  }
}

.p-hero__panel div.ac:nth-child(4) {
  top: 86.6666666667vw;
  left: calc(38% + 10.6666666667vw);
  background: url(../images/slider_pic04.jpg) no-repeat;
  background-size: auto 100%;
}

@media screen and (min-width: 768px) {
  .p-hero__panel div.ac:nth-child(4) {
    top: 0;
    left: calc(69% + 2px);
  }
}

.p-hero__panel div.ac img {
  max-width: inherit;
  max-width: inherit;
  width: auto;
  height: 100%;
}

@keyframes kf_c03 {
  100% {
    /*clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);*/
    clip-path: polygon(32% 0, 100% 0%, 68% 100%, 0% 100%);
  }
}

.post-content img {
  border: 0;
}

@media screen and (max-width: 1240px) {
  .left-content .main-inner {
    margin-right: 360px;
  }
}

.acl {
  display: block;
  background: white;
  clip-path: polygon(0 0, 100% 0%, 45% 100%, 0% 100%);
  width: 90vw;
  height: 104%;
  position: absolute;
  left: 0;
  top: -1%;
  bottom: 0;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .acl {
    clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
    width: 72vw;
  }
}

.acr {
  display: block;
  background: white;
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 0% 100%);
  width: 90vw;
  height: 104%;
  position: absolute;
  right: 0;
  top: -1%;
  bottom: 0;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .acr {
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    width: 72vw;
  }
}

.item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  background: #c9c9ca;
}

.floating__banner {
  position: fixed;
  z-index: 99999;
  bottom: 0;
  right: 0;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  background: url(../images/floating_btn_bg.png) no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .floating__banner {
    width: 157px;
    height: 165px;
  }
}

.c-anchor__wrap {
  /*width: vw(300);*/
  display: none;
}

@media screen and (min-width: 768px) {
  .c-anchor__wrap {
    display: block;
    height: auto;
    aspect-ratio: 157/165;
    position: absolute;
    width: 157px;
    bottom: 15%;
    right: 10%;
    z-index: 50;
  }
}

.c-anchor__btn {
  position: relative;
  z-index: 60;
  width: 100%;
  height: 100%;
  background: url(../images/floating_btn_bg.png) no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s;
}

.c-anchor__btn:not(:disabled) {
  cursor: pointer;
}

.c-anchor__btn:hover,
.c-anchor__btn:focus {
  outline: none;
  transform: translateY(-5px);
  opacity: 0.8;
}

.c-anchor__en {
  color: #eb6100;
  font-family: "Mulish", sans-serif;
  font-size: 6vw;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 2.6666666667vw;
}

@media screen and (min-width: 768px) {
  .c-anchor__en {
    padding-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 0.7142857143;
  }
}

.c-anchor__en:after {
  content: " ";
  display: block;
  background: url(../images/arrow_type06.svg) no-repeat center right;
  width: 26.6666666667vw;
  height: auto;
  aspect-ratio: 107/11;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(50% + 1.3333333333vw);
  margin: auto;
}

@media screen and (min-width: 768px) {
  .c-anchor__en:after {
    bottom: calc(50% + 5px);
    width: 107px;
  }
}

.c-anchor__txt {
  color: white;
  text-align: center;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .c-anchor__txt {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3333333333;
  }
}

.c-floating__wrap {
  display: none;
  width: 33.3333333333vw;
  height: auto;
  aspect-ratio: 157/165;
  position: fixed;
  bottom: 10px;
  right: -10px;
  z-index: 150;
}

@media screen and (min-width: 768px) {
  .c-floating__wrap {
    width: 157px;
    right: 10px;
  }
}

/* footer.scss */
.p-footer {
  position: relative;
  padding-top: 6.6666666667vw;
  background: #000000;
}

@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 6rem;
  }
}

.p-footer__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.p-footer__bg {
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.p-footer__menu {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-footer__menu {
    padding-bottom: 0;
    flex-direction: row;
    grid-gap: 6rem;
  }
}

.p-footer a {
  text-decoration: none;
  transition: all 0.3s;
}

.p-footerBanner {
  width: 100%;
  padding-bottom: 6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-footerBanner {
    width: 85%;
    padding-bottom: 6rem;
  }
}

.p-footerBanner__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  grid-gap: 6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-footerBanner__list {
    grid-gap: 2vw;
  }
}

.p-footerBanner__list li {
  position: relative;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.6666666667;
  color: white;
  width: calc((100% - 6.6666666667vw) / 2);
}

@media screen and (min-width: 768px) {
  .p-footerBanner__list li {
    display: flex;
    flex-direction: column;
    width: calc((100% - 6vw) / 4);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.75;
  }
}

@media (min-width: 1100px) {
  .p-footerBanner__list li {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5555555556;
  }
}

.p-footerBanner__list li p {
  padding: 2rem 0;
  display: block;
  position: relative;
}

.p-footerBanner__list li p:after {
  content: " ";
  display: block;
  background: url(../images/arrow_type05.svg) no-repeat;
  width: auto;
  height: 8px;
  aspect-ratio: 40/8;
  position: absolute;
  right: 0;
  bottom: 7.3333333333vw;
  margin: auto;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .p-footerBanner__list li p:after {
    width: 40px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

.p-footerBanner__list li a:hover {
  opacity: 0.7;
}

.p-footerBanner__pic {
  width: 100%;
  background: white;
  text-align: center;
  padding: 2.6666666667vw;
  position: relative;
}

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

.p-footerBanner__pic:after {
  content: " ";
  display: block;
  background: #eb6100;
  width: 70%;
  height: 11px;
  position: absolute;
  left: 0;
  top: -5px;
  margin: auto;
}

.p-footerNav {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-footerNav {
    width: 10%;
    display: flex;
    padding-top: 2rem;
    padding-bottom: 6rem;
  }
}

.p-footerNav__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p-footerNav__list li {
  position: relative;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.6666666667;
  color: white;
  text-align: left;
  padding: 2.6666666667vw 0;
  padding-left: 6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-footerNav__list li {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.875;
    padding: 0;
    padding-left: 2rem;
  }
}

.p-footerNav__list li:before {
  content: " ";
  display: block;
  background: white;
  width: 10px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
}

.p-footerNav__list a {
  display: inline-block;
  position: relative;
}

.p-footerNav__list a:after {
  background-color: #eb6100;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  bottom: -5px;
  position: absolute;
  transition: 0.3s all;
  width: 0;
}

.p-footerNav__list a:hover:after {
  width: 100%;
}

.p-footerInfo {
  background: white;
  padding: 6.6666666667vw;
}

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

.p-footerInfo__container {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto auto;
  gap: 2vw 0;
  grid-template-areas: "logo" "company" "address" "copy";
}

@media screen and (min-width: 768px) {
  .p-footerInfo__container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 0px 30px;
    grid-template-areas: "logo company ." "logo address copy";
  }
}

.p-footer__logo {
  grid-area: logo;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-footer__logo {
    text-align: left;
    transition: 0.3s all;
  }

  .p-footer__logo:hover {
    opacity: 0.6;
  }
}

.p-footer__logo img {
  width: 100vw;
}

@media screen and (min-width: 768px) {
  .p-footer__logo img {
    width: auto;
    max-width: 449px;
  }
}

.p-footer__company {
  grid-area: company;
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.3333333333;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-footer__company {
    text-align: left;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3636363636;
  }
}

.p-footer__company .en {
  font-family: "Roboto", sans-serif;
}

.p-footer__address {
  grid-area: address;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.3333333333;
}

@media screen and (min-width: 768px) {
  .p-footer__address {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
  }
}

.p-footer__copy {
  grid-area: copy;
  padding-top: 2.6666666667vw;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-footer__copy {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
    text-align: right;
    padding-top: 0;
  }
}

/*==========================================
Utility
===========================================*/
/*==========================================
hidden
===========================================*/
.u-hidden-pc {
  display: inline;
}

@media screen and (min-width: 1060px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-hidden-tab {
  display: inline;
}

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

.u-hidden-sp {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-hidden-sp {
    display: inline;
  }
}

/*==========================================
visible
===========================================*/
.u-visible-pc {
  display: none;
}

@media screen and (min-width: 1060px) {
  .u-visible-pc {
    display: inline;
  }
}

.u-visible-tab {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-visible-tab {
    display: inline;
  }
}

.u-visible-sp {
  display: inline;
}

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

/*==========================================
movie
===========================================*/
.c-movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: white;
  z-index: 50;
}

@media screen and (min-width: 480px) {
  .c-movie {
    padding-top: 53%;
  }
}

.c-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*==========================================
flexbox
===========================================*/
@media screen and (min-width: 768px) {
  .flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

.u-overflow {
  overflow: hidden;
}

/*==========================================
text
===========================================*/
.number {
  font-family: "Roboto", sans-serif;
  font-size: 110%;
}

.u-italic {
  font-style: italic;
}

.u-red {
  color: #c72929;
}

.u-blue {
  color: #408eff;
}

.u-key {
  color: #000000;
}

.u-black {
  color: black;
}

.u-white {
  color: white;
}

.u-yellow {
  color: #e8d77c;
}

.u-orange {
  color: #eb3200;
}

.u-bold {
  font-weight: 700;
}

.u-bold--s {
  font-weight: 500;
}

.u-bold--l {
  font-weight: 900;
}

.u-marker--red {
  background: linear-gradient(transparent 80%, rgba(196, 0, 75, 0.28) 80%);
}

.u-marker--yellow {
  background: linear-gradient(transparent 70%, #ffff00 70%);
}

.u-marker--blue {
  background: linear-gradient(transparent 80%, rgba(0, 78, 255, 0.25) 80%);
}

.u-center,
p.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-left {
  text-align: right;
}

.u-font--s01 {
  font-size: 90%;
}

.u-font--s02 {
  font-size: 80%;
}

.u-font--s03 {
  font-size: 70%;
}

.u-font--l01 {
  font-size: 110%;
}

.u-font--l02 {
  font-size: 120%;
}

.u-font--l03 {
  font-size: 130%;
}

.u-underline {
  border-bottom: 1px solid #000;
}

.u-underline--red {
  border-bottom: 1px solid red;
}

.u-underline--orange {
  border-bottom: 3px solid #eb6100;
  text-underline-offset: 8px;
}

.u-underline--key {
  position: relative;
}

.u-underline--key:after {
  content: " ";
  display: block;
  background: #000000;
  width: 86%;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  margin: auto;
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-justify {
  text-align-last: justify;
  text-justify: inter-character;
}

.u-japanease {
  overflow: hidden;
  writing-mode: vertical-rl;
}

.u-word-break {
  word-break: break-all;
}

.u-white-space {
  white-space: nowrap;
}

.u-marker--yellow {
  background: rgb(253, 240, 55);
  background: linear-gradient(0deg, rgba(255, 247, 153, 0.7) 30%, rgba(255, 247, 153, 0) 30%);
}

/*==========================================
setting
===========================================*/
/*********** c-box ***********/
.c-box {
  padding: 2rem;
  border: 6px solid #000000;
  background: white;
}

@media screen and (min-width: 768px) {
  .c-box {
    padding: 5rem;
    border-width: 10px;
  }
}

.c-letter p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .c-letter p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.7777777778;
    letter-spacing: 0.1rem;
    font-feature-settings: "palt" 1;
    margin-bottom: 3rem;
  }
}

.ofi-cover {
  object-fit: cover;
  font-family: "object-fit: cover";
}

/*********** arrow ***********/
.u-arrow {
  position: relative;
  display: inline-block;
}

.u-arrow:before {
  content: " ";
  display: block;
  background: #eb6100;
  width: auto;
  height: 2.6666666667vw;
  aspect-ratio: 90/13;
  position: absolute;
  right: 9.3333333333vw;
  bottom: -5.8666666667vw;
  margin: auto;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .u-arrow:before {
    height: 13px;
    right: -190px;
    bottom: -6px;
  }
}

.u-arrow:after {
  content: " ";
  display: block;
  background: url(../images/arrow_type02.svg) no-repeat;
  width: 93.3333333333vw;
  height: auto;
  aspect-ratio: 180/8;
  position: absolute;
  right: -40vw;
  bottom: -6.8vw;
  margin: auto;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .u-arrow:after {
    width: 180px;
    right: -220px;
  }
}

.u-arrow--reverse:before {
  right: inherit;
  left: 46.6666666667vw;
}

@media screen and (min-width: 768px) {
  .u-arrow--reverse:before {
    left: -190px;
  }
}

.u-arrow--reverse:after {
  transform: scale(-1, 1);
  right: inherit;
  left: -6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .u-arrow--reverse:after {
    width: 180px;
    left: -220px;
    bottom: 0;
  }
}

.u-arrow--bt {
  position: relative;
  display: inline-block;
}

.u-arrow--bt:before {
  width: auto;
  height: 2.6666666667vw;
  aspect-ratio: 84/11;
  right: -1.3333333333vw;
  bottom: -5.8666666667vw;
}

@media screen and (min-width: 768px) {
  .u-arrow--bt:before {
    height: 11px;
    right: -30px;
    bottom: -15px;
  }
}

.u-arrow--bt:after {
  right: -53.3333333333vw;
  bottom: -6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .u-arrow--bt:after {
    width: 180px;
    right: -60px;
    bottom: -10px;
  }
}

.u-arrow--bt-l {
  position: relative;
  display: inline-block;
}

.u-arrow--bt-l:before {
  width: auto;
  height: 8px;
  aspect-ratio: 142/13;
  left: -6.6666666667vw;
  bottom: -6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .u-arrow--bt-l:before {
    height: 13px;
    left: -500px;
    bottom: -25px;
  }
}

.u-arrow--bt-l:after {
  background: url(../images/arrow_type02.svg) no-repeat right;
  width: 53.3333333333vw;
  height: auto;
  aspect-ratio: 180/8;
  right: 6.6666666667vw;
  bottom: -5.8666666667vw;
}

@media screen and (min-width: 768px) {
  .u-arrow--bt-l:after {
    aspect-ratio: 490/8;
    background: url(../images/arrow_type03.svg) no-repeat;
    width: 490px;
    bottom: -20px;
    right: 0;
  }
}

.u-arrow--bt-xl {
  width: 80vw;
  height: 11px;
  position: relative;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .u-arrow--bt-xl {
    width: 80%;
  }
}

.u-arrow--bt-xl:before {
  width: 100px;
  height: 13px;
  right: 6.6666666667vw;
  bottom: calc(13.3333333333vw - 5px);
}

@media screen and (min-width: 768px) {
  .u-arrow--bt-xl:before {
    right: -250px;
    bottom: -24px;
  }
}

.u-arrow--bt-xl:after {
  background: url(../images/arrow_type04.svg) no-repeat right;
  width: 100%;
  height: 8px;
  right: -6.6666666667vw;
  bottom: 13.3333333333vw;
}

@media screen and (min-width: 768px) {
  .u-arrow--bt-xl:after {
    aspect-ratio: 1110/11;
    background: url(../images/arrow_type04.svg) no-repeat right;
    width: 80vw;
    height: 11px;
    bottom: -20px;
    right: -20vw;
  }
}

/*==========================================
about
===========================================*/
.p-about {
  position: relative;
  padding-top: 13.3333333333vw;
}

@media screen and (min-width: 768px) {
  .p-about {
    padding-top: 15rem;
  }
}

.p-about__bg {
  position: relative;
  margin-top: 26.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-about__bg {
    margin-top: 0;
  }
}

.p-about__bg01 {
  max-width: inherit;
  width: 100vw;
  position: absolute;
  top: -26.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-about__bg01 {
    width: 2601px;
    height: auto;
    top: -350px;
    left: calc(50% - 1500px);
  }
}

.p-about__bg01 img {
  max-width: inherit;
}

.p-about__bg02 {
  max-width: inherit;
  width: 100vw;
  position: absolute;
  left: -6.6666666667vw;
  top: 26.6666666667vw;
  z-index: -2;
}

@media screen and (min-width: 768px) {
  .p-about__bg02 {
    width: 3104px;
    height: auto;
    top: -350px;
    left: calc(50% - 1500px);
  }
}

.p-about__bg02 img {
  max-width: inherit;
}

.p-aboutMain {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  grid-gap: 6.6666666667vw;
  padding-top: 26.6666666667vw;
  padding-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .p-aboutMain {
    flex-direction: row;
    grid-gap: 3%;
    padding-top: 9rem;
    padding-bottom: 4rem;
  }
}

.p-aboutMain__heading {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-aboutMain__heading {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.p-aboutMain__sign {
  aspect-ratio: 257/110;
  width: auto;
  height: 17.3333333333vw;
  position: absolute;
  top: 5.3333333333vw;
  right: -2.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-aboutMain__sign {
    height: 110px;
    top: 10px;
    right: inherit;
    left: -60px;
  }
}

.p-aboutMain__title {
  font-size: 6.6666666667vw;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .p-aboutMain__title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.1rem;
    display: grid;
    place-content: center;
    place-items: center;
  }
}

.p-aboutMain__body {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-aboutMain__body {
    width: 39%;
    padding-right: 2%;
  }
}

.p-movie {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  padding-top: 13.3333333333vw;
}

@media screen and (min-width: 768px) {
  .p-movie {
    flex-direction: row-reverse;
    padding-top: 14rem;
  }
}

.p-movie__body {
  width: 100%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-movie__body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}

.p-movie__sign {
  aspect-ratio: 314/113;
  width: auto;
  height: 16vw;
  position: absolute;
  top: -21.3333333333vw;
  right: -2.6666666667vw;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .p-movie__sign {
    height: 113px;
    top: -105px;
    right: inherit;
    left: calc(50% + 50px);
  }
}

.p-movie__mv {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-movie__mv {
    position: absolute;
    bottom: 0;
    width: 60%;
    padding: 0 4% 4%;
    z-index: 5;
  }
}

.p-movie__link {
  position: relative;
  display: block;
}

.p-movie__title {
  width: 100%;
  font-size: 6.6666666667vw;
  font-weight: 700;
  line-height: 1.2;
  padding-top: 6.6666666667vw;
  margin-bottom: 6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-movie__title {
    width: auto;
    padding-left: 60%;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    padding-top: 1rem;
    margin-bottom: 7rem;
  }
}

.p-movie__text {
  width: 90%;
  margin: 0 auto;
  margin-top: 6.6666666667vw;
  margin-bottom: 6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-movie__text {
    width: inherit;
    margin-top: 0;
    margin: 0;
    padding: 4%;
    padding-left: 60%;
    border: 3px solid #eb6100;
  }
}

.p-movie__text p:last-child {
  margin-bottom: 0;
}

.p-movie__arrow {
  position: relative;
  display: inline-block;
}

.p-movie__arrow:after {
  content: " ";
  display: block;
  background: url(../images/arrow_type02.svg) no-repeat;
  width: 93.3333333333vw;
  height: auto;
  aspect-ratio: 180/8;
  position: absolute;
  left: 33.3333333333vw;
  bottom: -5.3333333333vw;
  margin: auto;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .p-movie__arrow:after {
    transform: scale(-1, 1);
    width: 180px;
    bottom: -40px;
    left: -70px;
  }
}

.c-btn-player {
  position: absolute;
  top: calc(50% - 6.6666666667vw);
  left: 0;
  right: 0;
  margin: auto;
  width: 20vw;
  height: 20vw;
  transition: all 0.2s ease-out;
}

@media screen and (min-width: 768px) {
  .c-btn-player {
    top: calc(50% - 60px);
    width: 100px;
    height: 100px;
  }
}

.c-btn-player:before {
  content: "";
  display: block;
  border-radius: 50%;
  background: #eb6100;
  border: 3px solid #eb6100;
  width: 17.3333333333vw;
  height: 17.3333333333vw;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.2s ease-out;
}

@media screen and (min-width: 768px) {
  .c-btn-player:before {
    width: 80px;
    height: 80px;
  }
}

.c-btn-player:after {
  content: "";
  display: block;
  width: 5.3333333333vw;
  height: 7.7333333333vw;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: white;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1.6vw);
  margin: auto;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .c-btn-player:after {
    left: calc(50% - 8px);
    width: 20px;
    height: 26px;
  }
}

.c-btn-player .more {
  position: absolute;
  bottom: -15px;
  width: 100%;
  display: block;
  color: #eb6100;
  text-align: center;
  font-size: 3.4666666667vw;
  font-weight: 500;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .c-btn-player .more {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
  }
}

.c-btn-player:hover {
  transform: translateY(-8px);
}

.c-btn-player:hover:before {
  background: none;
  border-radius: 50%;
  border: 3px solid #eb6100;
}

.c-btn-player:hover:after {
  background: #eb6100;
}

.btn__play {
  width: 120px;
  height: 120px;
  position: absolute;
  top: calc(50% - 90px);
  left: 0;
  right: 0;
  margin: auto;
}

.btn__play:hover .outer_circle {
  stroke-dashoffset: 410;
  transition: stroke 0.7s 0.4s ease-out, stroke-dashoffset 0.4s ease-out;
}

.btn__play:hover .inner-circle {
  /*fill: #BF2428;*/
  transition: fill 0.4s 0.3s ease-out;
}

.btn__play:hover .play {
  /*fill: white;*/
  transition: fill 0.4s 0.3s ease-out;
}

.outer_circle {
  stroke-width: 4;
  stroke-dasharray: 410;
  stroke-dashoffset: 0;
  stroke-linecap: square;
  transition: all 0.4s ease-out;
}

.p-about__wrap {
  width: 100%;
  margin-top: 13.3333333333vw;
  display: grid;
  grid-gap: 6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-about__wrap {
    margin-top: 20rem;
    grid-gap: 6.6666666667vw;
  }
}

.p-about__block {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  position: relative;
  grid-gap: 26.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-about__block {
    flex-direction: row;
    grid-gap: 0;
  }
}

.p-about__body {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-about__body {
    width: 50%;
  }
}

.p-about__body-inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-about__body-inner {
    width: 80%;
    margin: 0 auto;
    margin-right: 18.5%;
  }
}

@media (min-width: 1400px) {
  .p-about__body-inner {
    width: 70%;
  }
}

.p-about__sign {
  aspect-ratio: 213/118;
  width: auto;
  height: 17.3333333333vw;
  position: absolute;
  top: -21.3333333333vw;
  left: 8vw;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .p-about__sign {
    top: -135px;
    left: calc(50% + 150px);
    height: 118px;
  }
}

.p-about__img {
  width: 100%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-about__img {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .p-about__block:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.p-about__block:nth-child(even) .p-about__body {
  align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .p-about__block:nth-child(even) .p-about__body-inner {
    margin-right: inherit;
    margin-left: 18.5%;
  }
}

.p-about__title {
  width: 100%;
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.2222222222;
  margin-bottom: 2.5rem;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .p-about__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.5714285714;
    margin-bottom: 4rem;
  }
}

.p-about__text {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-about__text {
    /*width: 90%;*/
  }
}

.p-about__text p:last-child {
  margin-bottom: 0;
}

/*********** brackets ***********/
.c-frame-brackets {
  width: 100%;
  position: relative;
}

.c-frame-brackets:before,
.c-frame-brackets:after {
  content: "";
  display: block;
  background: black;
  background-size: contain;
  width: 20vw;
  height: auto;
  aspect-ratio: 100/100;
  position: absolute;
  z-index: 10;
}

@media screen and (min-width: 768px) {

  .c-frame-brackets:before,
  .c-frame-brackets:after {
    width: 178px;
  }
}

.c-frame-brackets:before {
  clip-path: polygon(0 0, 100% 0, 100% 12%, 12% 12%, 12% 100%, 0 100%);
  top: -2.4vw;
  left: -2.4vw;
}

@media screen and (min-width: 768px) {
  .c-frame-brackets:before {
    top: -21.36px;
    left: -21.36px;
  }
}

.c-frame-brackets:after {
  clip-path: polygon(88% 88%, 88% 0, 100% 0, 100% 100%, 0 100%, 0 88%);
  bottom: -2.4vw;
  right: -2.4vw;
}

@media screen and (min-width: 768px) {
  .c-frame-brackets:after {
    bottom: -18.36px;
    right: -18.36px;
  }
}

.c-frame-brackets--revers {
  width: 100%;
  position: relative;
}

.c-frame-brackets--revers:before {
  transform: scale(-1, 1);
  top: -2.4vw;
  left: inherit;
  right: -2.4vw;
}

@media screen and (min-width: 768px) {
  .c-frame-brackets--revers:before {
    top: -21.36px;
    left: inherit;
    right: -21.36px;
  }
}

.c-frame-brackets--revers:after {
  transform: scale(-1, 1);
  bottom: -2.4vw;
  right: inherit;
  left: -2.4vw;
}

@media screen and (min-width: 768px) {
  .c-frame-brackets--revers:after {
    bottom: -18.36px;
    right: inherit;
    left: -18.36px;
  }
}

.c-frame-brackets--tp,
.c-frame-brackets--tp--orange {
  width: 100%;
  position: relative;
}

.c-frame-brackets--tp:before,
.c-frame-brackets--tp--orange:before {
  content: "";
  display: block;
  background: black;
  background-size: contain;
  width: 20vw;
  height: auto;
  aspect-ratio: 100/100;
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 100% 15%, 15% 15%, 15% 100%, 0 100%);
  top: -3vw;
  left: -3vw;
  z-index: 10;
}

@media screen and (min-width: 768px) {

  .c-frame-brackets--tp:before,
  .c-frame-brackets--tp--orange:before {
    width: 178px;
    clip-path: polygon(0 0, 100% 0, 100% 12%, 12% 12%, 12% 100%, 0 100%);
    top: -21.36px;
    left: -21.36px;
  }
}

.c-frame-brackets--tp--orange:before {
  background: #eb6100;
  left: 0;
}

.c-frame-brackets--bt,
.c-frame-brackets--bt02 {
  width: 100%;
  position: relative;
}

.c-frame-brackets--bt:after,
.c-frame-brackets--bt02:after {
  content: "";
  display: block;
  background: black;
  background-size: contain;
  width: 20vw;
  height: auto;
  aspect-ratio: 100/100;
  position: absolute;
  clip-path: polygon(85% 85%, 85% 0, 100% 0, 100% 100%, 0 100%, 0 85%);
  bottom: 0;
  right: 0;
  z-index: 10;
}

@media screen and (min-width: 768px) {

  .c-frame-brackets--bt:after,
  .c-frame-brackets--bt02:after {
    width: 178px;
    clip-path: polygon(88% 88%, 88% 0, 100% 0, 100% 100%, 0 100%, 0 88%);
    bottom: 5rem;
    /*right: -2.0rem;*/
  }
}

.c-frame-brackets--bt02:after {
  bottom: -3vw;
  right: 0;
}

@media screen and (min-width: 768px) {
  .c-frame-brackets--bt02:after {
    bottom: -21.36px;
  }
}

.c-frame-thumb {
  width: 100%;
  position: relative;
}

.c-frame-thumb:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid black;
  position: absolute;
  z-index: -1;
}

.c-frame-thumb:before {
  content: "";
  display: block;
  background: black;
  background-size: contain;
  width: 20vw;
  height: auto;
  aspect-ratio: 100/100;
  position: absolute;
  bottom: -2.4vw;
}

@media screen and (min-width: 768px) {
  .c-frame-thumb:before {
    width: 178px;
    bottom: -21.36px;
  }
}

.c-frame-thumb--left:after {
  top: 6.6666666667vw;
  left: -6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .c-frame-thumb--left:after {
    top: 5rem;
    left: -5rem;
  }
}

.c-frame-thumb--left:before {
  clip-path: polygon(0 0, 15% 0, 15% 85%, 100% 85%, 100% 100%, 0 100%);
  left: -2.4vw;
}

@media screen and (min-width: 768px) {
  .c-frame-thumb--left:before {
    clip-path: polygon(0 0, 12% 0, 12% 88%, 100% 88%, 100% 100%, 0 100%);
    left: -21.36px;
  }
}

.c-frame-thumb--right:after {
  top: 6.6666666667vw;
  right: -6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .c-frame-thumb--right:after {
    top: 5rem;
    right: -5rem;
  }
}

.c-frame-thumb--right:before {
  clip-path: polygon(85% 85%, 85% 0, 100% 0, 100% 100%, 0 100%, 0 85%);
  right: -2.4vw;
}

@media screen and (min-width: 768px) {
  .c-frame-thumb--right:before {
    clip-path: polygon(88% 88%, 88% 0, 100% 0, 100% 100%, 0 100%, 0 88%);
    right: -21.36px;
  }
}

/*==========================================
job
===========================================*/
.p-job {
  position: relative;
  padding-top: 13.3333333333vw;
}

@media screen and (min-width: 768px) {
  .p-job {
    padding-top: 15rem;
  }
}

.p-job__block {
  position: relative;
}

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

  .p-job__block:after {
    content: " ";
    display: block;
    background: white;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    right: 0;
  }
}

.p-job__en {
  font-family: "Mulish", sans-serif;
  white-space: nowrap;
  font-size: 10.6666666667vw;
  font-weight: 800;
  line-height: 1;
  color: rgb(229, 229, 229);
  width: fit-content;
  position: absolute;
  top: -3rem;
  right: -5rem;
  /*mix-blend-mode: color-burn;*/
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .p-job__en {
    color: black;
    font-size: 6.6666666667vw;
    font-weight: 800;
    line-height: 1;
    top: inherit;
    bottom: -3.7333333333vw;
    right: 0;
  }
}

@media (min-width: 1300px) {
  .p-job__en {
    font-size: 9rem;
    font-weight: 800;
    line-height: 1;
    bottom: -5rem;
  }
}

.p-job__en-inner {
  top: inherit;
  bottom: -4rem;
  right: inherit;
  left: -4rem;
  color: rgb(229, 229, 229);
}

@media screen and (min-width: 768px) {
  .p-job__en-inner {
    color: rgba(229, 229, 229, 0.8);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    bottom: -3.7333333333vw;
    left: inherit;
    right: 0;
    z-index: 10;
    /*mix-blend-mode: luminosity;*/
  }
}

@media (min-width: 1300px) {
  .p-job__en-inner {
    bottom: -5rem;
  }
}

.p-job__row {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  position: relative;
  z-index: 10;
  background: white;
  box-shadow: 0px 0px 28px 0px rgba(42, 41, 91, 0.24);
}

@media screen and (min-width: 768px) {
  .p-job__row {
    width: 100%;
    flex-direction: row-reverse;
    background: none;
    box-shadow: none;
  }
}

@media (min-width: 1450px) {
  .p-job__row {
    width: 100%;
    max-width: 1400px;
  }
}

.p-job__label {
  width: 100%;
  display: flex;
  flex-direction: row;
  grid-gap: 1rem;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .p-job__label {
    margin-bottom: 5rem;
  }
}

.p-job__position {
  background: #eb6100;
  padding: 0.4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .p-job__position {
    padding: 0.4rem 2rem;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
  }
}

.p-job__name {
  flex: 1;
  padding: 0.5rem 2rem;
  text-align: left;
  border-bottom: 2px solid black;
  font-size: 5.3333333333vw;
  font-weight: 500;
  line-height: 1;
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 768px) {
  .p-job__name {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
  }
}

.p-job__info {
  font-size: 4vw;
  font-weight: 600;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .p-job__info {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
  }
}

.p-job__title {
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.4444444444;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .p-job__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.5714285714;
    margin-bottom: 5rem;
    letter-spacing: 0.1rem;
  }
}

.p-job__body {
  flex: 1;
  padding: 3rem;
}

@media screen and (min-width: 768px) {
  .p-job__body {
    box-shadow: none;
    padding: 5rem;
    position: relative;
    z-index: 11;
  }
}

.p-job__thumb {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-job__thumb {
    width: 52.380952381%;
    margin-bottom: 0;
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .p-job__img {
    height: 100%;
    position: relative;
    z-index: 1;
  }
}

.p-job__btn-area {
  padding-bottom: 13.3333333333vw;
}

@media screen and (min-width: 768px) {
  .p-job__btn-area {
    padding-bottom: 7rem;
  }
}

.p-jobFlow {
  position: relative;
  width: 90%;
  margin: 0 auto;
  margin-top: 26.6666666667vw;
  margin-bottom: 10.6666666667vw;
  padding: 6.6666666667vw;
  padding-top: 10.6666666667vw;
  background: white;
  border: 3px solid black;
}

@media screen and (min-width: 768px) {
  .p-jobFlow {
    width: calc(100% - 8rem);
    max-width: 1400px;
    padding: 5%;
    margin-top: 10rem;
    margin-bottom: 7rem;
  }
}

@media (min-width: 1400px) {
  .p-jobFlow {
    width: 100%;
    padding: 7rem;
  }
}

.p-jobFlow__title {
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  top: -7.2vw;
}

@media screen and (min-width: 768px) {
  .p-jobFlow__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6666666667;
    letter-spacing: 0.1rem;
    top: -3rem;
  }
}

.p-jobFlow__title:after {
  content: " ";
  display: block;
  background: white;
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% + 2vw);
  margin: auto;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .p-jobFlow__title:after {
    top: calc(50% + 2px);
  }
}

.p-jobFlow__title-inner {
  position: relative;
  z-index: 10;
  padding: 0 2rem;
}

.p-jobFlow__inner {
  display: flex;
  flex-direction: row;
}

@media screen and (min-width: 768px) {
  .p-jobFlow__inner {
    flex-direction: column;
  }
}

.p-jobFlow__timetable {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .p-jobFlow__timetable {
    flex-direction: row;
  }
}

.p-jobFlow .p-jobFlow__timetable {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 47% 48% auto;
  gap: 0px 7%;
  grid-template-areas: "start flow" "am flow" "pm flow" "gole flow";
}

@media screen and (min-width: 768px) {
  .p-jobFlow .p-jobFlow__timetable {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto auto;
    gap: 0 0;
    grid-auto-flow: row;
    grid-template-areas: "start gole" "am pm" "flow flow";
  }
}

.p-jobFlow .p-jobFlow__start,
.p-jobFlow .p-jobFlow__gole {
  writing-mode: horizontal-tb;
  position: relative;
  font-size: 4vw;
  font-weight: 600;
  line-height: 1.3333333333;
  text-align: center;
}

@media screen and (min-width: 768px) {

  .p-jobFlow .p-jobFlow__start,
  .p-jobFlow .p-jobFlow__gole {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    padding-bottom: 1rem;
  }
}

.p-jobFlow .p-jobFlow__start span,
.p-jobFlow .p-jobFlow__gole span {
  display: block;
  width: 50vw;
  position: absolute;
  left: 0;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {

  .p-jobFlow .p-jobFlow__start span,
  .p-jobFlow .p-jobFlow__gole span {
    width: auto;
    position: inherit;
  }
}

.p-jobFlow .p-jobFlow__start {
  grid-area: start;
}

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

.p-jobFlow .p-jobFlow__start span {
  top: 5.3333333333vw;
}

@media screen and (min-width: 768px) {
  .p-jobFlow .p-jobFlow__start span {
    top: 0;
  }
}

.p-jobFlow .p-jobFlow__gole {
  grid-area: gole;
}

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

.p-jobFlow .p-jobFlow__gole span {
  bottom: 6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-jobFlow .p-jobFlow__gole span {
    bottom: 0;
    right: 0;
  }
}

.p-jobFlow .p-jobFlow__am,
.p-jobFlow .p-jobFlow__pm {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 0.4rem;
}

@media screen and (min-width: 768px) {

  .p-jobFlow .p-jobFlow__am,
  .p-jobFlow .p-jobFlow__pm {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
    writing-mode: horizontal-tb;
    padding: 1rem;
  }
}

.p-jobFlow .p-jobFlow__am:after,
.p-jobFlow .p-jobFlow__pm:after {
  content: " ";
  display: block;
  background: black;
  width: calc(100% + 10px);
  height: 3px;
  position: absolute;
}

@media screen and (min-width: 768px) {

  .p-jobFlow .p-jobFlow__am:after,
  .p-jobFlow .p-jobFlow__pm:after {
    width: 5px;
    height: calc(100% + 10px);
    top: inherit;
    bottom: 0;
  }
}

.p-jobFlow__am {
  grid-area: am;
  background: #fed6b9;
  text-align: left;
}

.p-jobFlow__am:after {
  top: 0;
  left: 0;
}

.p-jobFlow__pm {
  grid-area: pm;
  background: #eeeeee;
  text-align: right;
}

.p-jobFlow__pm:after {
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .p-jobFlow__pm:after {
    left: inherit;
    right: 0;
  }
}

.p-jobFlow__wrap {
  grid-area: flow;
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 6.6666666667vw;
  padding-top: 13.3333333333vw;
  padding-bottom: 13.3333333333vw;
}

@media screen and (min-width: 768px) {
  .p-jobFlow__wrap {
    flex-direction: row;
    grid-gap: 4.5rem;
    padding: 0;
    margin-top: 5rem;
  }
}

.p-jobFlow__block {
  width: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .p-jobFlow__block {
    width: calc((100% - 135px) / 4);
  }
}

.p-jobFlow__pic {
  text-align: center;
  position: relative;
}

.p-jobFlow__pic:before {
  content: " ";
  display: block;
  background: url(../images/arrow_type01.svg) no-repeat center right;
  width: 20vw;
  height: 2.6666666667vw;
  /*aspect-ration: 60/8;*/
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22.6666666667vw;
  margin: auto;
  z-index: 10;
  transform: rotate(90deg);
}

@media screen and (min-width: 768px) {
  .p-jobFlow__pic:before {
    background-position: right center;
    width: 5vw;
    top: calc(50% - 20px);
    bottom: inherit;
    left: inherit;
    right: -2.9166666667vw;
    transform: rotate(0deg);
    z-index: 5;
  }
}

.p-jobFlow__pic img {
  width: 90%;
  margin: 0 auto;
  border-radius: 100vh;
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .p-jobFlow__pic img {
    width: auto;
    z-index: 10;
  }
}

.p-jobFlow__block:last-child .p-jobFlow__pic:before {
  display: none;
}

.p-jobFlow__text {
  width: 90%;
  margin: 0 auto;
  padding-top: 6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-jobFlow__text {
    padding-top: 3.5rem;
  }
}

.p-jobFlow__text p {
  font-size: 4.5333333333vw;
  font-weight: 400;
  line-height: 1.1764705882;
  text-align: center;
  background: white;
  padding: 0.5rem;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .p-jobFlow__text p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.6666666667;
    margin-bottom: 0;
  }
}

/*********** tab ***********/
.c-tab__menu {
  display: flex;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .c-tab__menu {
    width: 90%;
  }
}

@media (min-width: 1500px) {
  .c-tab__menu {
    width: 100%;
    max-width: 1500px;
  }
}

.c-tab__menu li {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 2px 0 0;
  list-style: none;
  cursor: pointer;
  color: #fff;
  background: black;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transition: all 0.3s ease-in;
  font-size: 4.5333333333vw;
  font-weight: 500;
  line-height: 1.0588235294;
  min-height: 32vw;
}

@media screen and (min-width: 768px) {
  .c-tab__menu li {
    padding: 1.8rem 0;
    margin-right: 10px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.0833333333;
    writing-mode: horizontal-tb;
    min-height: inherit;
    min-height: 100px;
  }
}

.c-tab__menu li:last-child {
  margin-right: 0;
}

.c-tab__menu li.selected {
  background: #eb6100;
  clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  margin-bottom: -2.5rem;
  transition: margin 0.3s;
}

@media screen and (min-width: 768px) {
  .c-tab__menu li.selected {
    clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
    margin-bottom: -4.5rem;
  }
}

.c-tab__menu li:hover {
  background: #eb6100;
}

.c-tab__menu li img {
  display: inline-block;
  padding: 0 5px 2px 0;
}

.c-tab__wrap {
  background: #f4f4f4;
  padding-top: 21.3333333333vw;
}

@media screen and (min-width: 768px) {
  .c-tab__wrap {
    padding-top: 10rem;
  }
}

.c-tab__panel {
  overflow: hidden;
  height: 0;
  opacity: 0;
}

.c-tab__panel.is-show {
  overflow: visible;
  height: auto;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

/*==========================================
member
===========================================*/
.p-member {
  position: relative;
  padding-top: 13.3333333333vw;
}

@media screen and (min-width: 768px) {
  .p-member {
    padding-top: 15rem;
  }
}

.p-member__bg01 {
  max-width: inherit;
  width: 100vw;
  position: absolute;
  top: 266.6666666667vw;
  z-index: -2;
}

@media screen and (min-width: 768px) {
  .p-member__bg01 {
    width: 3105px;
    height: auto;
    bottom: inherit;
    top: 280px;
    left: calc(50% - 1500px);
  }
}

.p-member__bg01 img {
  max-width: inherit;
}

.p-member__bg02 {
  max-width: inherit;
  width: 100vw;
  position: absolute;
  top: -26.6666666667vw;
  left: 0;
  z-index: -2;
}

@media screen and (min-width: 768px) {
  .p-member__bg02 {
    width: 3105px;
    height: auto;
    top: 350px;
    left: calc(50% - 1500px);
  }
}

.p-member__bg02 img {
  max-width: inherit;
}

.p-member__heading {
  position: relative;
}

.p-member__title {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .p-member__title {
    padding-left: 4rem;
  }
}

.p-member__sign01 {
  /*
  position: relative;
  top: vw(-50);
  left: 0;*/
  aspect-ratio: 522/114;
  width: auto;
  height: 13.3333333333vw;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .p-member__sign01 {
    height: 114px;
  }
}

.p-member__sign02 {
  aspect-ratio: 332/114;
  width: auto;
  height: 14.6666666667vw;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .p-member__sign02 {
    height: 114px;
  }
}

.p-memberData {
  width: 70%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .p-memberData {
    width: 100%;
    max-width: 1140px;
  }
}

.p-memberData__list {
  grid-area: flow;
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-memberData__list {
    flex-direction: row;
    grid-gap: 10%;
  }
}

.p-memberData__list li {
  width: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-memberData__list li {
    width: 26.6666666667%;
  }
}

.p-memberData__label {
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.3333333333;
  border: 3px solid black;
  background: #f4f4f4;
  padding: 2rem 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-memberData__label {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6666666667;
    letter-spacing: 0.1rem;
    padding: 3rem 0;
  }
}

.p-memberData__label:after {
  content: " ";
  display: block;
  background: #eb6100;
  width: 30%;
  height: 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  margin: auto;
  z-index: 0;
}

.p-memberData__numbers {
  font-size: 20vw;
  font-weight: 500;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  padding: 2rem 0;
  color: #eb6100;
}

@media screen and (min-width: 768px) {
  .p-memberData__numbers {
    font-size: 13rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.1rem;
    padding: 4rem 0 3rem;
  }
}

.p-memberData__numbers .ratio {
  font-size: 13.3333333333vw;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .p-memberData__numbers .ratio {
    font-size: 11rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1rem;
  }
}

.p-memberData p {
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.3333333333;
}

@media screen and (min-width: 768px) {
  .p-memberData p {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.4117647059;
  }
}

.p-memberSlider {
  margin-top: 13.3333333333vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-memberSlider {
    margin-top: 16rem;
  }
}

.p-memberSlider__wrap {
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-memberSlider__wrap {
    margin-inline: auto;
    max-width: 1100px;
    padding: 0 30px;
  }
}

@media screen and (min-width: 768px) {
  .p-memberSlider__inner {
    margin-left: calc(50% - 55vw);
    margin-top: 40px;
    padding-left: calc(50vw - 50%);
    width: 110vw;
  }
}

.p-memberSlider__name {
  font-size: 4.5333333333vw;
  font-weight: 600;
  line-height: 1.1764705882;
  padding: 1rem;
  padding-right: 10%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-memberSlider__name {
    padding: 2rem;
    padding-top: 4rem;
    padding-bottom: 0;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.3636363636;
    letter-spacing: 0.2rem;
  }
}

.p-memberSlider__name .en {
  font-family: "Mulish", sans-serif;
  font-size: 6.6666666667vw;
  font-weight: 600;
  line-height: 1;
  padding-right: 1rem;
}

@media screen and (min-width: 768px) {
  .p-memberSlider__name .en {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
  }
}

@media (min-width: 1100px) {
  .p-memberSlider__name .en {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
  }
}

.p-memberSlider__notice {
  position: relative;
}

.c-click {
  position: absolute;
  right: 5%;
  top: -10px;
  background: #eb6100;
  padding: 0.3rem 3rem;
  clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
}

.c-click-text {
  position: absolute;
  right: 2.6666666667vw;
  top: 0.2666666667vw;
  font-size: 3.7333333333vw;
  font-weight: 400;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .c-click-text {
    right: 2rem;
    top: -2rem;
    font-size: 0.9333333333vw;
    font-weight: 400;
    line-height: 1.1428571429;
  }
}

/*********** splide ***********/
.splide__slide {
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  position: relative;
}

.splide__slide button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

.splide__slide .p-movie__link {
  color: black;
}

.splide__slide .p-movie__link img {
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

#sloder2 .splide__slide:hover,
#sloder2 .splide__slide img:hover {
  color: black;
}

@media screen and (min-width: 768px) {

  #sloder2 .splide__slide:hover,
  #sloder2 .splide__slide img:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

#loop-slider {
  margin: 0 -6.6666666667vw 8rem;
}

@media screen and (min-width: 768px) {
  #loop-slider {
    margin: 3rem -6.6666666667vw 20rem;
  }
}

@media screen and (min-width: 768px) {
  #slider2 .splide__track {
    padding-top: 20px;
    clip-path: polygon(7% 0, 100% 0%, 100% 100%, 0% 100%);
  }
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border: 1px solid black;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 16vw;
  width: 16vw;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .splide__arrow {
    height: 5.3333333333vw;
    width: 5.3333333333vw;
  }
}

@media (min-width: 1400px) {
  .splide__arrow {
    height: 96px;
    width: 96px;
  }
}

.splide__arrow--prev {
  left: 5%;
}

@media screen and (min-width: 768px) {
  .splide__arrow--prev {
    left: 0;
  }
}

.splide__arrow--next {
  right: 5%;
}

@media screen and (min-width: 768px) {
  .splide__arrow--next {
    right: 15%;
  }
}

/*********** modal ***********/
.c-modal__container {
  width: 100%;
  max-width: 800px;
  padding: 30px;
  background-color: #fff;
  overflow-y: auto;
  position: relative;
}

.c-modal__inner {
  padding: 2rem;
}

.c-modal__header {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
}

.c-modal__title {
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-modal__title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.25;
  }
}

.c-modal__close {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  right: 20px;
  top: 20px;
}

.c-modal__close:before,
.c-modal__close:after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  /* 棒の幅（太さ） */
  height: 30px;
  /* 棒の高さ */
  background: #333;
}

.c-modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-modal p {
  font-size: 4.8vw;
  font-weight: 500;
  line-height: 1.1111111111;
}

@media screen and (min-width: 768px) {
  .c-modal p {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.7647058824;
  }
}

.lity-wrap:before {
  margin-right: 0;
}

.lity-close {
  display: none;
}

.lity {
  background: rgba(0, 0, 0, 0.6);
}

.lity-content {
  width: 98%;
  margin: 0 auto;
}

.p-memberMovie {
  position: relative;
  padding-top: 13.3333333333vw;
}

@media screen and (min-width: 768px) {
  .p-memberMovie {
    padding-top: 20rem;
  }
}

.p-memberMovie__title {
  margin-bottom: 5rem;
}

@media screen and (min-width: 768px) {
  .p-memberMovie__title {
    margin-bottom: 5rem;
  }
}

.p-memberMovie__btn-area {
  padding-top: 13.3333333333vw;
  padding-bottom: 6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-memberMovie__btn-area {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}

/*==========================================
faq
===========================================*/
.p-faq {
  position: relative;
  padding-top: 20vw;
}

@media screen and (min-width: 768px) {
  .p-faq {
    padding-top: 10rem;
  }
}

.p-faq__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.p-faq__sign {
  text-align: center;
  aspect-ratio: 213/118;
  width: auto;
  height: 16vw;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .p-faq__sign {
    height: 118px;
  }
}

.p-faq__tab-wrap {
  padding-top: 20vw;
  padding-bottom: 13.3333333333vw;
}

@media screen and (min-width: 768px) {
  .p-faq__tab-wrap {
    padding-top: 11rem;
    padding-bottom: 9rem;
  }
}

.p-faq__thumbnails {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.p-faq__thumbnails img {
  flex-grow: 1;
  width: 50%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-faq__thumbnails img {
    flex-grow: 1;
    width: 33.3333333333%;
  }
}

.p-faq__en {
  font-family: "Mulish", sans-serif;
  font-size: 12vw;
  font-weight: 800;
  line-height: 1;
  color: #e5e5e5;
  width: fit-content;
  position: absolute;
  bottom: -4rem;
  right: -4rem;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .p-faq__en {
    font-size: 9rem;
    font-weight: 800;
    line-height: 1;
  }
}

.p-faq__en-inner {
  font-family: "Mulish", sans-serif;
  font-size: 12vw;
  font-weight: 800;
  line-height: 1;
  color: black;
  width: fit-content;
  position: absolute;
  bottom: -4rem;
  right: -4rem;
  clip-path: polygon(0 0, 100% 0, 100% 55%, 0 55%);
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .p-faq__en-inner {
    font-size: 9rem;
    font-weight: 800;
    line-height: 1;
  }
}

/*--------------------------
accordion
----------------------------*/
.c-accordion {
  display: flex;
  flex-direction: column;
  position: relative;
}

.c-accordion:before,
.c-accordion:after {
  content: " ";
  display: block;
  background: black;
  position: absolute;
  left: 0;
  top: 0;
}

.c-accordion:before {
  width: 50%;
  height: 2px;
  top: -10px;
}

@media screen and (min-width: 768px) {
  .c-accordion:before {
    top: -20px;
  }
}

.c-accordion:after {
  width: 2px;
  height: 100%;
  left: -10px;
}

@media screen and (min-width: 768px) {
  .c-accordion:after {
    left: -20px;
  }
}

.c-accordion__no {
  position: relative;
  counter-increment: number;
}

@media screen and (min-width: 768px) {
  .c-accordion__no {
    padding-left: 70px;
  }
}

.c-accordion__no:after {
  content: "0" counter(number);
  display: block;
  background: #f4f4f4;
  width: fit-content;
  height: fit-content;
  padding: 5px;
  position: absolute;
  left: -20px;
  top: -40px;
  font-size: 8vw;
  font-weight: 400;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}

@media screen and (min-width: 768px) {
  .c-accordion__no:after {
    font-size: 6rem;
    font-weight: 400;
    line-height: 1;
    left: 0;
  }
}

.c-accordion__wrap {
  position: relative;
  width: 100%;
  outline: 0;
  cursor: pointer;
  display: grid;
  grid-gap: 13.3333333333vw;
}

@media screen and (min-width: 768px) {
  .c-accordion__wrap {
    grid-gap: 6rem;
  }
}

.c-accordion-q {
  width: 100%;
  margin: 0;
  text-decoration: none;
  display: block;
  cursor: pointer;
  position: relative;
  background: white;
  transition: all 0.3s ease;
  padding: 1.7rem;
  padding-left: 2.5rem;
  padding-right: 4rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7333333333;
}

@media screen and (min-width: 768px) {
  .c-accordion-q {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.8181818182;
    padding: 2.8rem 5rem;
  }
}

.c-accordion-q:before {
  content: "Q.";
  font-family: "Oswald", sans-serif;
  width: 20px;
  height: 100%;
  color: #eb6100;
  position: absolute;
  top: 1.7rem;
  left: 6px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .c-accordion-q:before {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 0.8333333333;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 20px;
    top: 0;
    margin: auto;
  }
}

.c-accordion-q:after {
  content: "";
  text-align: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  background: url(../images/toggle_dark.png) no-repeat;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .c-accordion-q:after {
    right: 20px;
  }
}

@media screen and (min-width: 768px) {
  .c-accordion-q:hover {
    background: #000000;
    color: white;
  }

  .c-accordion-q:hover:before {
    /*color: white;*/
  }

  .c-accordion-q:hover:after {
    background: url(../images/toggle_light.png) no-repeat;
  }
}

.c-accordion-a {
  overflow: hidden;
  transition-property: all;
  transition-timing-function: ease;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8666666667;
  word-break: break-all;
}

@media screen and (min-width: 768px) {
  .c-accordion-a {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.8333333333;
  }
}

.c-accordion-a p {
  margin: 0;
  padding: 1.5rem;
}

@media screen and (min-width: 768px) {
  .c-accordion-a p {
    padding: 4rem 4rem 2rem;
  }
}

.c-accordion.js-enabled>.c-accordion-a {
  visibility: hidden;
}

.c-accordion.is-active>.c-accordion-a {
  visibility: visible;
}

.c-accordion.js-enabled.is-active>.c-accordion-q {
  background: #000000;
  color: white;
}

.c-accordion.js-enabled.is-active>.c-accordion-q:before {
  /*color: white;*/
}

.c-accordion.js-enabled.is-active>.c-accordion-q:after {
  height: 2px;
  background: url(../images/toggle_light.png) no-repeat center left;
}

.c-accordion-q:focus {
  outline: 0;
}

/*==========================================
recruit
===========================================*/
.p-recruit {
  position: relative;
  padding-top: 20vw;
  padding-bottom: 20vw;
  /*********** table ***********/
}

@media screen and (min-width: 768px) {
  .p-recruit {
    padding-top: 10rem;
    padding-bottom: 20rem;
  }
}

.p-recruit__table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  /*    tr:last-child {
    td,
    th {
      @include media(m) {
        border-bottom: none;
      }
    }
  }*/
}

.p-recruit__table tr {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .p-recruit__table tr {
    flex-direction: row;
  }
}

.p-recruit__table th,
.p-recruit__table td {
  display: flex;
  flex-direction: column;
  grid-gap: 3rem;
  padding: 1.5rem 0;
  font-size: 4.2666666667vw;
  font-weight: 400;
  line-height: 1.5625;
  text-align: left;
  vertical-align: top;
}

@media screen and (min-width: 768px) {

  .p-recruit__table th,
  .p-recruit__table td {
    padding: 3rem 1.8rem;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.6666666667;
    border-bottom: 2px solid #000;
  }
}

.p-recruit__table th {
  text-align: left;
  position: relative;
  border-bottom: 2px solid #000;
  width: 100%;
  padding-left: 1rem;
  font-size: 4.8vw;
  font-weight: 500;
  line-height: 1.3888888889;
}

@media screen and (min-width: 768px) {
  .p-recruit__table th {
    text-align: center;
    width: 20%;
    padding-left: 0;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.3636363636;
  }
}

.p-recruit__table th:after {
  content: " ";
  display: block;
  background: #eb6100;
  width: 30%;
  height: 10px;
  position: absolute;
  left: 5px;
  bottom: -5px;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .p-recruit__table th:after {
    width: 60%;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.p-recruit__table td {
  width: 100%;
  padding-top: 3rem;
}

@media screen and (min-width: 768px) {
  .p-recruit__table td {
    width: 80%;
    padding-left: 3rem;
  }
}

.p-recruit__table h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.p-recruit__table p {
  font-size: 4.2666666667vw;
  font-weight: 400;
  line-height: 1.5625;
}

@media screen and (min-width: 768px) {
  .p-recruit__table p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.6666666667;
  }
}

.p-recruit__table dl {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.p-recruit__table dl dt {
  width: 100%;
  position: relative;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.5625;
  padding-left: 14px;
}

@media screen and (min-width: 768px) {
  .p-recruit__table dl dt {
    width: 26%;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.7777777778;
    padding-left: 20px;
  }
}

.p-recruit__table dl dt:after {
  content: " ";
  display: block;
  background: #eb6100;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  position: absolute;
  left: 0;
  padding-left: 1rem;
  top: calc((6.6666666667vw - 10px) / 2);
}

@media screen and (min-width: 768px) {
  .p-recruit__table dl dt:after {
    top: 20px;
  }
}

.p-recruit__table dl dd {
  width: 100%;
  font-size: 4.2666666667vw;
  font-weight: 400;
  line-height: 1.5625;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-recruit__table dl dd {
    width: 74%;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.7777777778;
    margin-bottom: 0;
  }
}

.p-recruit__table dl dd:last-child {
  margin-bottom: 0;
}

.p-recruit__table ul li {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .p-recruit__table ul li {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.2222222222;
  }
}

.p-recruit__notice {
  margin-top: 3.5rem;
}

.p-recruit__notice p {
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.6666666667;
}

@media screen and (min-width: 768px) {
  .p-recruit__notice p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.6666666667;
  }
}

.p-recruit__bg {
  max-width: inherit;
  width: 100vw;
  position: absolute;
  bottom: -66.6666666667vw;
  left: 0;
  z-index: -2;
  transform: scale(-1, 1);
}

@media screen and (min-width: 768px) {
  .p-recruit__bg {
    aspect-ratio: 3105/1225;
    width: 3104px;
    height: auto;
    bottom: -450px;
    left: calc(50% - 1500px);
  }
}

.p-recruit__bg img {
  max-width: inherit;
}

.c-list {
  width: fit-content;
  margin: 0 auto;
}

.c-list li {
  padding-left: 1rem;
  text-align: left;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.6666666667;
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-list li {
    padding-left: 1rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .c-list li {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.1rem;
  }
}

.c-list-disc {
  width: fit-content;
  margin: 0 auto;
}

.c-list-disc li {
  padding-left: 2rem;
  text-align: left;
  font-size: 3.7333333333vw;
  font-weight: 400;
  line-height: 1.6428571429;
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-list-disc li {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2;
  }
}

.c-list-disc li:after {
  content: " ";
  display: block;
  background: black;
  width: 9px;
  height: 9px;
  border-radius: 50px;
  position: absolute;
  left: 0;
  padding-left: 1rem;
  top: calc((6.1333333333vw - 9px) / 2);
}

@media screen and (min-width: 768px) {
  .c-list-disc li:after {
    top: 13.5px;
  }
}

.c-list-s li {
  padding-left: 1rem;
  text-align: left;
  font-size: 3.4666666667vw;
  font-weight: 400;
  line-height: 1.6923076923;
  position: relative;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .c-list-s li {
    padding-left: 1rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .c-list-s li {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.2666666667;
  }
}

/*==========================================
contact
===========================================*/
.p-contact {
  padding-top: 6.6666666667vw;
  padding-bottom: 13.3333333333vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 15rem;
    padding-bottom: 10rem;
  }
}

.p-contact__wrap {
  position: relative;
}

.p-contact__catch {
  text-align: center;
  margin-bottom: 6.6666666667vw;
}

@media screen and (min-width: 768px) {
  .p-contact__catch {
    margin-bottom: 5rem;
  }
}

.p-contact__inner {
  position: relative;
  padding: 4vw 8vw;
}

.pc_br {
  display: inline;
}

.sp_br {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc_br,
  .for-pc {
    display: none;
  }
  .sp_br {
    display: inline;
  }
}