@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: bottom;
  text-decoration: none;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

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

input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
button::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus,
button::focus {
  outline-offset: -2px;
}

.green {
  color: #006837;
}

.red {
  color: #C1272D;
}

.colbl {
  color: #333333;
}

.colgrey {
  color: #808080;
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  color: #333333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  display: none;
}

a {
  color: #333333;
  transition: 0.3s;
  display: block;
  height: 100%;
  width: 100%;
}
a img {
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
a:hover span {
  opacity: 1;
}
a:hover img {
  opacity: 0.7;
  transition: 0.3s;
}

.transparent {
  background-color: rgb(255, 255, 255) !important; /* 透明度を設定した背景色 */
}

.l-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
  display: flex;
  transition: 0.3s;
  padding: 22px 30px;
}
.l-header.scroll {
  background: #fff;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .l-header {
    padding: 20px;
  }
}
.l-header__logo {
  position: relative;
  z-index: 1;
  max-width: 108px;
}
@media (max-width: 768px) {
  .l-header__logo {
    max-width: 80px;
  }
}
.l-header__menu {
  gap: 40px;
  margin: 0px 40px;
  align-items: center;
  font-weight: 200;
  display: flex;
}
@media (max-width: 768px) {
  .l-header__menu {
    margin: 0px 10px;
  }
}
@media (max-width: 1024px) {
  .l-header__menu {
    display: none;
  }
}
.l-header__menu-fade {
  display: none;
  transition: 0.5s;
}
.l-header__menu-fade.active {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 100px 5%;
  text-align: center;
  gap: 40px;
  align-items: center;
  font-weight: 200;
  padding: 100px 20px;
  overflow: scroll;
  opacity: 1;
  transition: 0.5s;
  width: 600px;
}
@media (max-width: 768px) {
  .l-header__menu-fade.active {
    width: 100%;
  }
}
.l-header__menu-fade.active-link img {
  filter: drop-shadow(3px 3px 0 rgba(195, 195, 195, 0.7));
}
.l-header__menu-fade-item {
  cursor: pointer;
  margin: 0;
  position: relative;
  width: 100%;
  padding: 25px 30px 25px 0;
  display: flex;
  color: #c71e1d;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  align-items: center;
}
.l-header__menu-trigger {
  position: absolute;
  display: flex;
  right: 15px;
  top: 35px;
  height: 40px;
  width: 80px;
  cursor: pointer;
  justify-content: end;
}
@media (max-width: 768px) {
  .l-header__menu-trigger {
    width: 50px;
    right: 15px;
    top: 20px;
    height: 30px;
  }
}
.l-header__menu-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #808080;
  position: absolute;
  transition: 0.3s ease;
}
.l-header__menu-trigger span:nth-of-type(1) {
  top: 0;
  width: 60px;
}
@media (max-width: 768px) {
  .l-header__menu-trigger span:nth-of-type(1) {
    width: 43px;
  }
}
.l-header__menu-trigger span:nth-of-type(2) {
  top: 50%;
  width: 80px;
}
@media (max-width: 768px) {
  .l-header__menu-trigger span:nth-of-type(2) {
    width: 50px;
  }
}
.l-header__menu-trigger span:nth-of-type(3) {
  top: 100%;
  width: 60px;
}
@media (max-width: 768px) {
  .l-header__menu-trigger span:nth-of-type(3) {
    width: 43px;
  }
}
.l-header__menu-trigger.active span:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
}
.l-header__menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.l-header__menu-trigger.active span:nth-of-type(3) {
  top: 50%;
  transform: rotate(-45deg);
}

.l-main {
  overflow: hidden;
}

footer {
  background-color: #333333;
}
footer .inner {
  max-width: 1080px;
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  footer .inner {
    width: 90%;
  }
}
footer .l-footer {
  display: flex;
  gap: 200px;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid #fff;
}
@media (max-width: 1024px) {
  footer .l-footer {
    gap: 5%;
    padding: 4rem 4rem;
  }
}
@media (max-width: 768px) {
  footer .l-footer {
    display: flex;
    flex-direction: column;
    padding: 3rem 0 4rem;
  }
}
footer .l-footer__logo {
  max-width: 108px;
  width: 100%;
}
@media (max-width: 768px) {
  footer .l-footer__logo {
    margin: 0 auto;
  }
}
footer .l-footer__menu {
  font-weight: 200;
  gap: 5px 40px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
@media (max-width: 768px) {
  footer .l-footer__menu {
    gap: 30px 10px;
    margin-top: 5rem;
    justify-content: space-evenly;
  }
}
footer .l-footer__menu-item a {
  color: #fff;
}
footer .l-footer__copyright {
  text-align: center;
  padding: 20px 0 10px;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #fff;
  font-weight: 100;
}
@media (max-width: 768px) {
  footer .l-footer__copyright {
    padding: 10px 0 20px;
  }
}

.l-container {
  position: relative;
  z-index: 1;
}

.l-form__dl {
  display: flex;
  margin-top: 26px;
}
.l-form__dl + .l-form__dl {
  margin-top: 21px;
  padding-top: 19px;
  border-top: dashed 1px #909090;
}
@media (max-width: 1024px) {
  .l-form__dl {
    display: block;
  }
}
.l-form__dt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7222222222;
  width: 250px;
}
@media (max-width: 1024px) {
  .l-form__dt {
    font-size: 1.6rem;
    width: 100%;
  }
}
.l-form__required {
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  background: #E1428B;
  border-radius: 5px;
  margin-left: 8px;
}
@media (max-width: 1024px) {
  .l-form__required {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
}
.l-form__dd {
  width: calc(100% - 250px);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 34px;
}
@media (max-width: 1024px) {
  .l-form__dd {
    width: 100%;
    font-size: 1.6rem;
    margin-top: 10px;
  }
}
.l-form input,
.l-form textarea,
.l-form select {
  font-size: 1.8rem;
  background: #F5F5F5;
  border: none;
  box-sizing: border-box;
  padding-left: 1em;
  outline: none;
  width: 100%;
}
.l-form input::-moz-placeholder, .l-form textarea::-moz-placeholder, .l-form select::-moz-placeholder {
  color: #969696;
}
.l-form input::placeholder,
.l-form textarea::placeholder,
.l-form select::placeholder {
  color: #969696;
}
@media (max-width: 1024px) {
  .l-form input,
  .l-form textarea,
  .l-form select {
    font-size: 1.6rem;
  }
}
.l-form input[type=text],
.l-form input[type=email] {
  height: 34px;
  width: 100%;
}
.l-form textarea {
  width: 100%;
  height: 155px;
  resize: none;
  padding: 1em;
}
.l-form__select-wrap {
  position: relative;
  display: inline-block;
  width: 230px;
  margin-right: 10px;
}
.l-form__select-wrap:before {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-right: solid 1px #323232;
  border-bottom: solid 1px #323232;
  transform: rotate(45deg);
  pointer-events: none;
}
.l-form__select-wrap select {
  width: 100%;
  height: 34px;
  cursor: pointer;
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
}
.l-form__select-wrap ::-ms-expand {
  display: none;
}
.l-form input[type=submit],
.l-form input[type=button],
.l-form button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  background: none;
}
.l-form input[type=submit]::-webkit-search-decoration,
.l-form input[type=button]::-webkit-search-decoration,
.l-form button::-webkit-search-decoration {
  display: none;
}
.l-form input[type=submit]::focus,
.l-form input[type=button]::focus,
.l-form button::focus {
  outline-offset: -2px;
}
.l-form__btn-row {
  text-align: center;
  margin-top: 31px;
}
@media (min-width: 1025px) {
  .l-form__btn {
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  .l-form__btn:hover {
    opacity: 0.7;
  }
}

.c-ttl__sub.en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 1.4rem;
  color: #808080;
  text-align: center;
  font-weight: 800;
}
@media (max-width: 768px) {
  .c-ttl__sub.en {
    font-size: 3.5vw;
  }
}
.c-ttl__sub.jp {
  display: block;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.c-ttl__main.jp {
  font-size: 6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #1A1A1A;
}
@media (max-width: 768px) {
  .c-ttl__main.jp {
    font-size: 7.5vw;
  }
}
.c-ttl__contttl {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .c-ttl__contttl {
    text-align: center;
  }
}
.c-ttl__contttl .mainttl {
  font-family: "Raleway", sans-serif;
  font-size: 6rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .c-ttl__contttl .mainttl {
    font-size: 10vw;
  }
}
.c-ttl__contttl .subttl {
  font-size: 1.4rem;
  line-height: 1;
  color: #808080;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .c-ttl__contttl .subttl {
    font-size: 3.5vw;
  }
}
.c-ttl__serttl {
  display: flex;
  flex-direction: column;
}
.c-ttl__serttl .mainttl {
  font-family: "Raleway", sans-serif;
  font-size: 3.9rem;
  color: #CCCCCC;
}
@media (max-width: 768px) {
  .c-ttl__serttl .mainttl {
    font-size: 8.75vw;
    margin-top: 3.75vw;
  }
}
.c-ttl__serttl .subttl {
  font-size: 3.3rem;
  line-height: 1;
  color: #333333;
  margin-top: 2rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .c-ttl__serttl .subttl {
    font-size: 7vw;
    margin-top: 6.25vw;
  }
}
.c-ttl__serttl .txt {
  margin-top: 4.5rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.4;
  color: #333333;
}
@media (max-width: 768px) {
  .c-ttl__serttl .txt {
    font-size: 1.6rem;
    margin-top: 10vw;
  }
}
.c-ttl__serttl .btn {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .c-ttl__serttl .btn {
    margin-top: 6.25vw;
    margin-left: 0;
  }
}

.c-deco {
  position: absolute;
}
.c-deco--mv1 {
  left: -10px;
  top: 115px;
}
@media (max-width: 1024px) {
  .c-deco--mv1 {
    max-width: 22%;
  }
}
.c-deco--club1 {
  max-width: 950px;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1024px) {
  .c-deco--club1 {
    max-width: initial !important;
    width: 100%;
  }
}
.c-deco--club1 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-deco--servicebg {
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1520px;
}
.c-deco--servicebg-1 {
  top: 0;
}
.c-deco--servicebg-2 {
  top: 20%;
}
.c-deco--servicebg-3 {
  top: 30%;
}
.c-deco--servicebg-4 {
  top: 40%;
}
.c-deco--servicebg-5 {
  top: 50%;
}

.c-txt-16 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.25;
}
@media (max-width: 1024px) {
  .c-txt-16 {
    font-size: 1.4rem;
  }
}

.c-fadein {
  opacity: 0;
  transition: 1s ease;
}
.c-fadein--right {
  transform: translateX(-100%);
}
.c-fadein--left {
  transform: translateX(100%);
}
.c-fadein--up {
  transform: translateY(100px);
}
.c-fadein--delay1 {
  transition-delay: 1s;
}
.c-fadein.js-fadein-show {
  transform: none;
  opacity: 1;
}

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

.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  top: 90%;
  left: 7.5%;
}
@media screen and (min-width: 640px) and (max-width: 768px) {
  .scrolldown2 {
    top: 110% !important;
  }
}
@media (max-width: 768px) {
  .scrolldown2 {
    top: 95%;
    left: 5%;
  }
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: -5px;
  top: -100px;
  font-size: 1.4rem;
  font-family: "Raleway", sans-serif;
  /*テキストの形状*/
  color: #808080;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -3px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #808080;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 1px;
  /*線の形状*/
  width: 1px;
  height: 50px;
  background: #808080;
}

/* 波紋アニメーション */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }
  50% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.circle {
  position: absolute;
  top: 91.5%;
  left: 7%;
}
@media (max-width: 768px) {
  .circle {
    top: 97%;
    left: 3%;
  }
}

.circle span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  z-index: -1;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  box-sizing: border-box;
  box-shadow: 0 0 0 0 #CCCCCC;
  opacity: 0;
  animation: circle 1.6s infinite;
  animation-delay: 1.55s; /* 開始を1.6秒遅らせる */
}
@media screen and (min-width: 640px) and (max-width: 768px) {
  .circle span::before {
    bottom: -9vw;
    left: 1vw;
  }
}

.c-btn {
  display: flex;
  width: 210px;
  height: 50px;
  border: 1px solid #333333;
  color: #333333;
  font-family: "Raleway", sans-serif;
  font-size: 1.8rem;
  justify-content: center;
  text-align: center;
  margin-top: 3rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .c-btn {
    font-size: 1.6rem;
  }
}
.c-btn a {
  align-content: space-around !important;
}
@media (max-width: 1024px) {
  .c-btn a {
    align-content: space-around !important;
  }
}
@media (max-width: 768px) {
  .c-btn a {
    line-height: 2.5;
  }
}
@media (max-width: 768px) {
  .c-btn {
    margin: 0 auto;
    margin-top: 3rem;
    width: 160px;
    height: 40px;
    font-size: 1.6rem;
  }
}
.c-btn.fadebtn {
  overflow: hidden;
  position: relative;
  transition-duration: 0.4s;
  z-index: 2;
}
.c-btn.fadebtn:after {
  background: #808080;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}
.c-btn.fadebtn:hover a {
  color: #fff !important;
}
.c-btn.fadebtn:hover:after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}

ul.slider > li:not(:first-child) {
  display: none;
}

.slick-slide {
  width: 330px !important;
  margin: 0 10px;
}
@media (max-width: 768px) {
  .slick-slide {
    width: 250px !important;
    margin: 0 10px;
  }
}

.lislider .slick-slide {
  width: initial !important;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .p-youtube .slick-list {
    max-height: 300px;
  }
}

.slick-arrow {
  top: -20%;
  left: 72% !important;
}
.slick-arrow:hover {
  background: auto !important;
}
@media (max-width: 768px) {
  .slick-arrow {
    left: 75% !important;
  }
}

.slick-prev {
  transform: rotate(-180deg);
  background-image: url(../images/arrow_r.png);
  z-index: 1;
  height: 35px;
  width: 35px;
  background-position: center;
  background-size: cover;
}
.slick-prev::before {
  display: none;
}
.slick-prev:hover {
  background: url(../images/arrow_r.png);
  background-position: center;
  background-size: contain;
  opacity: 0.5;
}

.slick-next {
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  background-image: url(../images/arrow_r.png);
  height: 35px;
  width: 35px;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: cover;
  transform: translate(50px, 0%) !important;
}
.slick-next::before {
  display: none;
}
.slick-next:hover {
  background: url(../images/arrow_r.png);
  background-position: center;
  background-size: contain;
  opacity: 0.5;
}

/*ドットナビゲーションの設定*/
.slick-track {
  display: contents;
}
@media (max-width: 768px) {
  .slick-track {
    left: 13%;
    display: flex;
  }
}

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

.c-head {
  margin-top: 115px;
  position: relative;
}
@media (max-width: 768px) {
  .c-head {
    margin-top: 80px;
  }
}
.c-head .inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 95%;
}
@media (max-width: 768px) {
  .c-head .inner {
    width: 90%;
  }
}
.c-head .c-ttl__head {
  background-image: url(../images/parts_head.png);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 11.5rem 5%;
}
@media (max-width: 1024px) {
  .c-head .c-ttl__head {
    padding: 10rem 5% !important;
    background-position: 80% 0;
  }
}
@media (max-width: 768px) {
  .c-head .c-ttl__head {
    padding: 8rem 5% !important;
  }
}
.c-head .c-ttl__head-en {
  position: absolute;
  font-size: 13.2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  top: 20%;
  color: #fff;
}
@media (max-width: 1024px) {
  .c-head .c-ttl__head-en {
    top: 25%;
  }
}
@media (max-width: 768px) {
  .c-head .c-ttl__head-en {
    font-size: 7rem;
    top: 30%;
  }
}
.c-head .c-ttl__head-jp {
  position: absolute;
  top: 20%;
  font-size: 4rem;
  color: #808080;
  transform: translate(0, 70px);
  line-height: 1.125;
  letter-spacing: 0.14em;
}
@media (max-width: 1024px) {
  .c-head .c-ttl__head-jp {
    top: 25%;
  }
}
@media (max-width: 768px) {
  .c-head .c-ttl__head-jp {
    top: 30%;
    font-size: 2rem;
    transform: translate(0, 40px);
  }
}
.c-head .breadcrumb {
  display: flex;
  gap: 25px;
  margin-top: 1rem;
  font-size: 1.4rem;
}
.c-head .breadcrumb .top {
  color: #333333;
  display: block;
  position: relative;
}
.c-head .breadcrumb .top:before, .c-head .breadcrumb .top:after {
  content: "";
  position: absolute;
  background: #808080;
  right: -20px;
  width: 15px;
  height: 1px;
}
.c-head .breadcrumb .top:before {
  top: 5px;
  transform: rotate(25deg);
}
.c-head .breadcrumb .top:after {
  top: 11px;
  transform: rotate(-25deg);
}
.c-head .breadcrumb .cat {
  color: #333333;
}
.c-head .breadcrumb .page {
  color: #006428;
  display: block;
  position: relative;
}
.c-head .breadcrumb .page:before, .c-head .breadcrumb .page:after {
  content: "";
  position: absolute;
  background: #808080;
  left: -20px;
  width: 15px;
  height: 1px;
}
.c-head .breadcrumb .page:before {
  top: 5px;
  transform: rotate(25deg);
}
.c-head .breadcrumb .page:after {
  top: 11px;
  transform: rotate(-25deg);
}

.c-services .inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
.c-services__conts {
  background-color: #F2F2F2;
  width: 100%;
  height: 100%;
  padding: 9rem 0;
  margin-top: 12rem;
}
.c-services .boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 50px;
  gap: min(30px, 2.77vw) min(50px, 4.62vw);
  margin-top: 3rem;
  text-align: center;
}
@media (max-width: 768px) {
  .c-services .boxes {
    grid-template-columns: 1fr 1fr;
  }
}
.c-services .boxes .item {
  background-size: cover;
  transition: 0.5s;
  max-width: 325px;
  max-height: 260px;
  width: 100%;
  height: 24.07vw;
}
@media (max-width: 768px) {
  .c-services .boxes .item {
    aspect-ratio: 325/260;
    height: 100%;
    width: 100%;
  }
}
.c-services .boxes .item:hover {
  opacity: 0.8;
  transition: 0.5s;
}
.c-services .boxes .item a {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-services .boxes .item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.c-services .boxes .item .ttl-en {
  display: block;
  font-size: min(2.1rem, 1.94vw);
  font-family: "Raleway", sans-serif;
  color: #c5c6c3;
}
@media (max-width: 768px) {
  .c-services .boxes .item .ttl-en {
    font-size: max(14px, 1.82vw);
  }
}
.c-services .boxes .item .ttl-jp {
  display: block;
  font-size: min(3.3rem, 3.05vw);
  color: #fff;
  margin-top: min(2rem, 1.85vw);
}
@media (max-width: 768px) {
  .c-services .boxes .item .ttl-jp {
    font-size: max(18px, 2.99vw);
  }
}
.c-services .boxes .item:nth-child(1) {
  background-image: url(../images/management01.png);
}
@media (max-width: 768px) {
  .c-services .boxes .item:nth-child(1) {
    background-position: right;
  }
}
.c-services .boxes .item:nth-child(2) {
  background-image: url(../images/sponsor01.png);
}
@media (max-width: 768px) {
  .c-services .boxes .item:nth-child(2) {
    background-position: center;
  }
}
.c-services .boxes .item:nth-child(3) {
  background-image: url(../images/casting01.png);
}
.c-services .boxes .item:nth-child(4) {
  background-image: url(../images/event01.png);
}
@media (max-width: 768px) {
  .c-services .boxes .item:nth-child(4) {
    background-position: right;
  }
}
.c-services .boxes .item:nth-child(5) {
  background-image: url(../images/consulting01.png);
}
.c-services .c-ttl__head {
  display: flex;
  align-items: flex-end;
}
.c-services .c-ttl__head-en {
  font-size: 6rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
}
@media (max-width: 768px) {
  .c-services .c-ttl__head-en {
    font-size: 4.5rem;
  }
}
.c-services .c-ttl__head-jp {
  transform: translate(15px, -10px);
  color: #808080;
  font-size: 1.4rem;
  font-weight: 200;
}

.p-mv {
  padding: 120px 0 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 768px) {
  .p-mv {
    padding: 80px 0 0;
    background: #fff;
  }
}
.p-mv:after {
  content: "";
  height: 45%;
  width: calc(100% - 110px);
  position: absolute;
  background: #F2F2F2;
  z-index: -1;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .p-mv:after {
    width: calc(100% - 80px);
    height: 60%;
  }
}
.p-mv__mv {
  position: relative;
  width: 85vw;
  height: 100vh;
  overflow: hidden;
  max-height: 700px;
}
@media (max-width: 768px) {
  .p-mv__mv {
    max-height: 388px;
  }
}
.p-mv__mv video {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateX(0%) translateY(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .p-mv__mv video {
    right: -5.5%;
  }
}
.p-mv .ttl {
  position: absolute;
  font-size: 6.8rem;
  font-family: "Raleway", sans-serif;
  color: #808080;
  line-height: 1.5;
  top: 25%;
  z-index: 1;
  font-weight: 800;
  left: 135px;
}
@media (max-width: 1024px) {
  .p-mv .ttl {
    left: 4vw;
  }
}
@media (max-width: 768px) {
  .p-mv .ttl {
    font-size: 10vw;
    right: 0;
    top: 80px;
    left: 5%;
  }
}
.p-mv__img {
  position: relative;
  text-align: center;
  margin-top: -178px;
}
.p-mv__img img {
  width: 100%;
}
@media (max-width: 900px) {
  .p-mv__img {
    margin-top: -100px;
    display: flex;
    justify-content: center;
  }
  .p-mv__img img {
    width: auto;
    max-width: none;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .p-mv__img {
    margin-top: -60px;
  }
  .p-mv__img img {
    height: 180px;
  }
}
.p-mv__philosophy {
  margin-top: -127px;
}
.p-mv__philosophy-txt {
  margin-top: 15px;
  text-align: center;
}
.p-mv__philosophy-img {
  text-align: center;
  margin-top: -120px;
}
@media (max-width: 1024px) {
  .p-mv__philosophy {
    padding: 0 5%;
    margin-top: -20px;
  }
  .p-mv__philosophy-img {
    margin-top: -50px;
  }
}
@media (max-width: 768px) {
  .p-mv__philosophy-img {
    margin-top: -20px;
  }
}

.p-about {
  padding: 10rem 0 13.2rem;
  position: relative;
}
@media (max-width: 768px) {
  .p-about {
    padding: 10vw 0 20vw;
    background: #fff;
    background-image: url(../images/clubsp.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
  }
}
.p-about__conts {
  text-align: center;
}
.p-about__conts .mainttl {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .p-about__conts .mainttl {
    line-height: 1.25em;
    width: 90%;
    margin: 0 auto;
    margin-top: 7.5vw;
    white-space: nowrap;
  }
}
.p-about__conts .txt {
  margin-top: 6.5rem;
}
@media (max-width: 768px) {
  .p-about__conts .txt {
    width: 95%;
    margin: 0 auto;
    margin-top: 13.5vw;
  }
}
.p-about__conts .txt p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .p-about__conts .txt p {
    font-size: 1.6rem;
  }
}

.p-news {
  padding: 10rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .p-news {
    padding: 17.5vw 0;
    background-color: #F2F2F2;
  }
}
.p-news:after {
  position: absolute;
  content: "";
  background-color: #F2F2F2;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-news:after {
    width: 100%;
  }
}
.p-news .inner {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-news .inner {
    width: 90%;
  }
}
.p-news__conts {
  display: grid;
  grid-template-columns: 210px auto;
  gap: 90px;
}
@media (max-width: 1024px) {
  .p-news__conts {
    gap: 5vw;
  }
}
@media (max-width: 768px) {
  .p-news__conts {
    display: flex;
    flex-direction: column;
  }
}
.p-news__conts-right .list {
  display: flex;
  flex-direction: column;
}
.p-news__conts-right .list .item {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #333333;
  padding: 2rem 0;
  align-items: center;
}
@media (max-width: 768px) {
  .p-news__conts-right .list .item {
    gap: 10px 30px;
    flex-wrap: wrap;
  }
}
.p-news__conts-right .list .item .date {
  font-size: 1.6rem;
  font-weight: 400;
}
.p-news__conts-right .list .item .cat {
  font-size: 1.4rem;
  background: #006837;
  color: #fff;
  padding: 4px 10px;
  white-space: nowrap;
}
.p-news__conts-right .list .item .ttl {
  font-size: 1.6rem;
  line-height: 1.5;
}

.p-service {
  margin: 10rem 0 0rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .p-service {
    margin: 7.69vw 0;
  }
}
@media (max-width: 768px) {
  .p-service {
    padding: 17.5vw 0;
    margin: 0;
    background-image: url(../images/servicebgsp.png);
    background-size: 110%;
    background-position: 0px -10vw;
  }
}
.p-service .ttlflame {
  text-align: center;
}
.p-service__conts {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .p-service__conts {
    margin-top: 7.5vw;
    position: relative;
  }
}
.p-service__conts .container-1 {
  background-image: url(../images/servicebg01.png);
  background-position: -15vw 1vw;
  background-size: 130%;
}
@media (max-width: 768px) {
  .p-service__conts .container-1 {
    background-image: none;
  }
}
.p-service__conts .container-2 {
  background-image: url(../images/servicebg02.png);
  background-position: -15vw -10vw;
  background-size: 130%;
}
@media (max-width: 768px) {
  .p-service__conts .container-2 {
    background-image: none;
  }
}
.p-service__conts .container-3 {
  background-image: url(../images/servicebg03.png);
  background-position: -10vw -10vw;
  background-size: 130%;
  padding-bottom: 15rem;
}
@media (max-width: 768px) {
  .p-service__conts .container-3 {
    background-image: none;
    padding-bottom: 0;
  }
}
.p-service__conts .item {
  display: grid;
  grid-template-columns: 1.5fr 1fr 5%;
  grid-template-rows: 410px;
}
@media (max-width: 768px) {
  .p-service__conts .item {
    display: flex;
    flex-direction: column;
  }
}
.p-service__conts .item.first .imgflame img {
  -o-object-position: bottom;
     object-position: bottom;
}
.p-service__conts .item.second .imgflame img {
  -o-object-position: center 85%;
     object-position: center 85%;
}
.p-service__conts .item.third {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .p-service__conts .item.third {
    margin-top: 12.5vw;
  }
}
.p-service__conts .item.fifth {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .p-service__conts .item.fifth {
    margin-top: 12.5vw;
  }
}
.p-service__conts .item.fifth .imgflame img {
  -o-object-position: center 90%;
     object-position: center 90%;
}
.p-service__conts .item.reverse {
  display: flex;
}
.p-service__conts .item.reverse .item-left .imgflame {
  margin-right: 0;
}
@media (max-width: 768px) {
  .p-service__conts .item.reverse .item-left .imgflame {
    margin-left: 10%;
    height: 50vw;
  }
}
.p-service__conts .item.reverse .item-left .imgflame img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 768px) {
  .p-service__conts .item.reverse .item-left .imgflame img {
    height: 50vw;
  }
}
.p-service__conts .item.reverse .item-right {
  margin-left: 10%;
  width: 45%;
}
@media (max-width: 1024px) {
  .p-service__conts .item.reverse .item-right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .p-service__conts .item.reverse .item-right {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .p-service__conts .item.reverse .item-right .c-ttl__serttl {
    align-items: end;
  }
}
@media (max-width: 768px) {
  .p-service__conts .item.reverse .item-right .c-ttl__serttl .btn {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .p-service__conts .item.reverse .item-right .c-ttl__serttl .txt {
    text-align: end;
  }
}
.p-service__conts .item:not(:nth-child(1)) {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .p-service__conts .item:not(:nth-child(1)) {
    margin-top: 12.5vw;
  }
}
.p-service__conts .item:nth-child(even) {
  flex-direction: row-reverse;
  gap: 10%;
}
@media (max-width: 768px) {
  .p-service__conts .item:nth-child(even) {
    flex-direction: column;
  }
}
.p-service__conts .item-left .imgflame {
  margin-right: 8rem;
  max-height: 410px;
  height: 100%;
}
@media (max-width: 768px) {
  .p-service__conts .item-left .imgflame {
    max-height: 50vw;
    margin: 0 calc(50% - 50vw);
    margin-right: 10%;
  }
}
.p-service__conts .item-left .imgflame img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .p-service__conts .item-left .imgflame img {
    height: 50vw;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.p-service__conts .item-right {
  width: 65%;
}
@media (max-width: 1024px) {
  .p-service__conts .item-right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .p-service__conts .item-right {
    width: 90%;
    margin: 0 auto;
  }
}

.p-talent {
  padding-top: 15rem;
  position: relative;
}
@media (max-width: 1024px) {
  .p-talent {
    padding-top: 11.5vw;
  }
}
@media (max-width: 768px) {
  .p-talent {
    padding: 17.5vw 0;
    background-color: #F2F2F2;
  }
}
.p-talent:after {
  position: absolute;
  content: "";
  background-color: #F2F2F2;
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-talent:after {
    width: 100%;
  }
}
.p-talent .ttlflame {
  text-align: center;
}
.p-talent__conts {
  margin-top: 7.5rem;
  padding-bottom: 10rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 768px) {
  .p-talent__conts {
    max-width: 100%;
    padding-bottom: 10vw;
    margin-top: 7.5vw;
  }
}
.p-talent__conts .lists {
  display: flex;
  gap: 3rem;
}
.p-talent__conts .lists .item .name {
  font-size: 2.7rem;
  font-family: "Raleway", sans-serif;
  line-height: 1.1666666667;
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-talent__conts .lists .item .name {
    font-size: 5.25vw;
    margin-top: 1.3rem;
  }
}
.p-talent .btn {
  margin: 0 auto;
  margin-top: 7.5rem;
  transform: translate(-30%, 0px);
}
@media (max-width: 768px) {
  .p-talent .btn {
    margin: 0 auto;
    transform: translate(0%, 0px);
    margin-top: 10vw;
  }
}

.p-youtube {
  padding: 16rem 0;
}
@media (max-width: 1024px) {
  .p-youtube {
    padding: 12.3vw 0;
  }
}
@media (max-width: 768px) {
  .p-youtube {
    padding: 17.5vw 0;
    background-color: #fff;
  }
}
.p-youtube .inner {
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-youtube .inner {
    width: 90%;
  }
}
.p-youtube .ttlflame {
  text-align: center;
}
.p-youtube__conts {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .p-youtube__conts {
    max-height: initial;
    margin-top: 7.5vw;
  }
}
.p-youtube__conts .slick-prev {
  top: 20% !important;
  left: -25px !important;
  z-index: 100;
  height: 35px;
  width: 35px;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1180px) {
  .p-youtube__conts .slick-prev {
    left: 0 !important;
  }
}
.p-youtube__conts .slick-prev:hover {
  background: url(../images/arrow_r.png);
  background-position: center;
  background-size: contain;
  opacity: 0.5;
}
.p-youtube__conts .slick-prev:before {
  display: none;
}
.p-youtube__conts .slick-next {
  top: 20% !important;
  right: -25px !important;
  height: 35px;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1180px) {
  .p-youtube__conts .slick-next {
    right: 0 !important;
  }
}
.p-youtube__conts .slick-next:hover {
  background: url(../images/arrow_r.png);
  background-position: center;
  background-size: contain;
  opacity: 0.5;
}
.p-youtube__conts .slick-next:before {
  display: none;
}
.p-youtube__conts .lists {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1024px) {
  .p-youtube__conts .lists {
    gap: 45px 10px;
  }
}
.p-youtube__conts .lists .item {
  max-height: 306px;
  max-width: 370px;
}
@media (max-width: 1024px) {
  .p-youtube__conts .lists .item {
    max-height: initial;
    max-width: 360px;
  }
}
.p-youtube__conts .lists .item a {
  display: block;
  width: 100%;
  height: 100%;
}
.p-youtube__conts .lists .item .thumbnail {
  height: 100%;
  max-height: 207px;
  max-width: 370px;
}
@media (max-width: 1024px) {
  .p-youtube__conts .lists .item .thumbnail {
    max-height: 277px;
    max-width: 360px;
  }
}
.p-youtube__conts .lists .item .thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-youtube__conts .lists .item .title p {
  margin-top: 1rem;
  line-height: 1.2em;
}
.p-youtube__conts .lists .item .data span {
  display: block;
  margin-top: 0.5rem;
  color: #808080;
}
.p-youtube .btn {
  margin: 0 auto;
  margin-top: 5rem;
}

.p-message {
  background-image: url(../images/bg_message02.png);
  background-size: 80%;
  padding: 10rem 0;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
@media (max-width: 1024px) {
  .p-message {
    padding: 7.69vw 0;
    background-position: top;
  }
}
@media (max-width: 768px) {
  .p-message {
    background-image: none;
  }
}
@media (max-width: 768px) {
  .p-message:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-image: url(../images/bg_message02sp.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (max-width: 768px) {
  .p-message {
    width: 100%;
    margin: 0 auto;
    padding: 14vw 0;
  }
}
@media (max-width: 768px) {
  .p-message .jp.mainttl {
    margin-top: 10vw !important;
  }
}
.p-message .ttlflame {
  text-align: center;
}
.p-message .jp.mainttl {
  text-align: center;
  font-size: 4rem;
  letter-spacing: 0.18em;
  margin-top: 10rem;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .p-message .jp.mainttl {
    font-size: 7.5vw;
  }
}
.p-message__conts {
  text-align: center;
}
.p-message__conts .txt {
  font-weight: 300;
  line-height: 3.5;
  font-size: 1.7rem;
}
@media (max-width: 768px) {
  .p-message__conts .txt {
    line-height: 2.6;
    font-size: 3.75vw;
  }
}
.p-message__conts .txt-1 {
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .p-message__conts .txt-1 {
    margin-top: 10vw;
  }
}
.p-message__conts .txt-2 {
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .p-message__conts .txt-2 {
    margin-top: 17.5vw;
  }
}
.p-message__conts .txt-3 {
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .p-message__conts .txt-3 {
    margin-top: 17.5vw;
  }
}

.p-company {
  margin-top: 20rem;
  position: relative;
  padding-bottom: 12rem;
}
@media (max-width: 1024px) {
  .p-company {
    margin-top: 15.3vw;
    padding-bottom: 9.2vw;
  }
}
@media (max-width: 768px) {
  .p-company {
    padding-bottom: 18.75vw;
    padding-top: 15.3vw;
  }
}
.p-company:after {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, #FFFFFF, #F2F2F2);
  width: 90%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-company:after {
    width: 100%;
  }
}
.p-company .ttlflame {
  text-align: center;
}
.p-company .ttlflame .subttl {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .p-company .ttlflame .subttl {
    margin-top: 1.5rem;
  }
}
.p-company__conts {
  display: grid;
  margin-left: 10%;
  grid-template-rows: 510px;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  width: 90%;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .p-company__conts {
    display: flex;
    flex-direction: column;
    margin: 5rem auto;
    gap: 5rem;
  }
}
@media (max-width: 768px) {
  .p-company__conts {
    display: flex;
    flex-direction: column-reverse;
    width: 90%;
    gap: 1rem;
    margin: 0 auto;
  }
}
.p-company__conts .txtflame {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .p-company__conts .txtflame {
    font-size: 1.6rem;
  }
}
.p-company__conts .txtflame .lists {
  margin-top: 1rem;
  line-height: 2.8em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-company__conts .txtflame .lists {
    line-height: 2.5;
  }
}
.p-company__conts .txtflame .lists .item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .p-company__conts .txtflame .lists .item {
    gap: 4rem;
    font-size: min(16px, 4vw);
  }
}
.p-company__conts .txtflame .lists .item .detail_ttl {
  display: flex;
  width: 90px;
  justify-content: space-between;
}
.p-company__conts .txtflame .lists .item .detail_ttl span {
  display: block;
}
.p-company__conts .imgflame {
  max-height: 420px;
}
@media (max-width: 768px) {
  .p-company__conts .imgflame {
    max-height: 291px;
    height: 291px;
    margin: 0 auto;
    margin-top: 10vw;
  }
}
.p-company__conts .imgflame img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 768px) {
  .p-company__conts .imgflame img {
    -o-object-position: 0;
       object-position: 0;
  }
}

body.single #contact.p-contact {
  margin-top: 10rem;
}
body.single #contact.p-contact .ttlflame {
  display: none;
}

.single-p-news + footer {
  margin-top: 10rem;
}

.archive-p-news + footer {
  margin-top: 10rem;
}

.page-p-contact + footer {
  margin-top: 10rem;
}

body.archive #contact .p-contact {
  margin-top: 5rem;
}
body.archive #contact .ttlflame {
  display: none;
}

.page-p-privacy + footer {
  margin-top: 10rem;
}

body.page #contact .p-contact {
  margin-top: 5rem;
}
body.page #contact .ttlflame {
  display: none;
}

.c-services + .p-contact {
  margin-top: 0;
}
@media (max-width: 768px) {
  .c-services + .p-contact {
    padding: 0;
  }
}
.c-services + .p-contact .ttlflame {
  display: none;
}
.c-services + .p-contact .p-contact__conts {
  margin-top: 0;
}

.p-contact {
  margin-top: 16rem;
}
@media (max-width: 1024px) {
  .p-contact {
    margin-top: 12.3vw;
  }
}
@media (max-width: 768px) {
  .p-contact {
    padding-top: 21.25vw;
    background: #fff;
    margin-top: 0;
  }
}
.p-contact .ttlflame {
  text-align: center;
}
.p-contact__conts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .p-contact__conts {
    display: flex;
    flex-direction: column;
    margin-top: max(3rem, 8vw);
  }
}
.p-contact__conts .imgflame {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-contact__conts .imgflame:nth-child(1) {
  background-image: url(../images/contact01.png);
}
.p-contact__conts .imgflame:nth-child(2) {
  background-image: url(../images/contact02.png);
}
@media (max-width: 768px) {
  .p-contact__conts .imgflame {
    height: 100%;
  }
}
.p-contact__conts .imgflame img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .p-contact__conts .imgflame img {
    min-height: 100%;
    height: 200px;
  }
}
.p-contact__conts .imgflame .txtflame {
  color: #fff;
  padding: 13rem 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 768px) {
  .p-contact__conts .imgflame .txtflame {
    padding: 8rem 0;
  }
}
.p-contact__conts .imgflame .txtflame .ttl {
  display: block;
  font-size: 2.7rem;
  line-height: 1.1666666667;
}
@media (max-width: 768px) {
  .p-contact__conts .imgflame .txtflame .ttl {
    font-size: 2rem;
  }
}
.p-contact__conts .imgflame .txtflame .txt {
  display: block;
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 300;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .p-contact__conts .imgflame .txtflame .txt {
    font-size: 1.3rem;
  }
}

.p-sponsor {
  margin: 12rem 0;
  display: none;
}
@media (max-width: 1024px) {
  .p-sponsor {
    margin: 9.2vw 0;
  }
}
@media (max-width: 768px) {
  .p-sponsor {
    padding: 9.2vw 0;
    margin: 0;
    background: #fff;
  }
}
.p-sponsor .inner {
  max-width: 1080px;
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-sponsor .inner {
    width: 90%;
  }
}
.p-sponsor .lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .p-sponsor .lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.p-sponsor .lists .item {
  display: grid;
  place-content: center;
  background-color: #808080;
  position: relative;
  max-width: 350px;
  position: relative;
  aspect-ratio: 350/140;
}
@media (max-width: 768px) {
  .p-sponsor .lists .item {
    width: 47%;
  }
}

.single-p-talent .inner {
  max-width: 1080px;
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .single-p-talent .inner {
    width: 90%;
  }
}
.single-p-talent__profile {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: end;
  margin-top: 10rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .single-p-talent__profile {
    display: flex;
    flex-direction: column;
  }
}
.single-p-talent__profile .imgflame {
  max-height: 500px;
  max-width: 400px;
}
@media (max-width: 768px) {
  .single-p-talent__profile .imgflame {
    max-height: 420px;
    max-width: 330px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
}
.single-p-talent__profile .imgflame img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .single-p-talent__profile .imgflame img {
    height: 420px;
    width: 330px;
  }
}
@media (max-width: 768px) {
  .single-p-talent__profile .txtflame {
    margin: 0 auto;
    width: 100%;
  }
}
.single-p-talent__profile .txtflame .nameflame {
  font-weight: 300;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
@media (max-width: 768px) {
  .single-p-talent__profile .txtflame .nameflame {
    margin-top: 1rem;
  }
}
.single-p-talent__profile .txtflame .nameflame .jp {
  font-size: 4rem;
  line-height: 1.2698412698;
}
@media (max-width: 768px) {
  .single-p-talent__profile .txtflame .nameflame .jp {
    font-size: 3rem;
    line-height: 0.9523809524;
  }
}
.single-p-talent__profile .txtflame .nameflame .en {
  font-size: 2.1rem;
  letter-spacing: 0.06em;
  color: #808080;
}
.single-p-talent__profile .txtflame .sns {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin: 1.5rem 0;
}
.single-p-talent__profile .txtflame .sns span {
  display: block;
  width: 40px;
  aspect-ratio: 40/40;
}
.single-p-talent__profile .txtflame .data {
  margin: 3rem 0 0;
  padding: 3rem 0;
  border-bottom: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
}
.single-p-talent__profile .txtflame .data .lists .item {
  display: flex;
  font-size: 1.8rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .single-p-talent__profile .txtflame .data .lists .item {
    font-size: 1.6rem;
  }
}
.single-p-talent__profile .txtflame .data .lists .item:not(:first-child) {
  margin-top: 3rem;
}
.single-p-talent__profile .txtflame .data .lists .item .ttl {
  width: 30%;
}
@media (max-width: 768px) {
  .single-p-talent__profile .txtflame .data .lists .item .ttl {
    width: 40%;
  }
}
.single-p-talent__profile .txtflame .data .lists .item .txt {
  width: 70%;
}
@media (max-width: 768px) {
  .single-p-talent__profile .txtflame .data .lists .item .txt {
    width: 60%;
  }
}
.single-p-talent__conts {
  width: 95%;
  margin: 5rem auto;
}
.single-p-talent__conts-txt p {
  font-weight: 400;
  margin-top: 2.5rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .single-p-talent__conts-txt p {
    letter-spacing: 0.05em;
  }
}
.single-p-talent__conts-archive {
  margin-top: 5rem;
}
.single-p-talent__conts-archive .ttl {
  font-size: 2.6rem;
  font-weight: 400;
  background: linear-gradient(to right, #000, #FFF);
  padding: 10px;
  color: #fff;
}
@media (max-width: 768px) {
  .single-p-talent__conts-archive .ttl {
    font-size: 2.4rem;
  }
}
.single-p-talent__conts-archive .lists {
  font-size: 1.8rem;
  font-weight: 300;
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .single-p-talent__conts-archive .lists {
    font-size: 1.6rem;
  }
}
.single-p-talent__conts-archive .lists .item {
  margin-top: 2.5rem;
  line-height: 2.25;
}
.single-p-talent__conts-archive .lists .item .title {
  margin-left: 5px;
}

.single-p-news .inner {
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .single-p-news .inner {
    width: 90%;
  }
}
.single-p-news__conts {
  margin-top: 10rem;
}
@media (max-width: 1024px) {
  .single-p-news__conts {
    margin-top: 15vw;
  }
}
.single-p-news__conts .ttl {
  padding: 1.5rem 2rem;
  border-bottom: 2px solid #CCCCCC;
  border-top: 2px solid #CCCCCC;
}
.single-p-news__conts .ttl h3 {
  font-size: 2.2rem;
  line-height: 1.75;
}
.single-p-news__conts .conts_inner {
  width: 95%;
  margin: 0 auto;
}
.single-p-news__conts .conts_inner .detail {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
}
.single-p-news__conts .conts_inner .detail .date {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
}
.single-p-news__conts .conts_inner .detail .cat {
  font-size: 1.2rem;
  background: #006837;
  padding: 2.5px 5px;
  color: #fff;
}
.single-p-news__conts .conts_inner .thumbnail {
  width: 100%;
  margin: 0 auto;
  margin-top: 3.5rem;
  text-align: center;
}
.single-p-news__conts .conts_inner .txtflame {
  font-weight: 300;
}
.single-p-news__conts .conts_inner .txtflame p {
  margin-top: 4rem;
  line-height: 1.75;
}
.single-p-news__conts .conts_inner .pagenation {
  display: flex;
  gap: 3.5rem;
  justify-content: center;
  margin-top: 10rem;
  align-items: center;
}
.single-p-news__conts .conts_inner .pagenation a {
  width: 85px;
  border-bottom: 1px solid #006837;
  padding-bottom: 1rem;
  text-align: center;
}
.single-p-news__conts .conts_inner .pagenation span {
  display: block;
  padding-bottom: 1rem;
  border-bottom: 1px solid #006837;
  width: 85px;
  text-align: center;
  position: relative;
}
.single-p-news__conts .conts_inner .pagenation span.next:after, .single-p-news__conts .conts_inner .pagenation span.prev:after {
  content: "<<";
  position: absolute;
  top: 5px;
  width: 10px;
  aspect-ratio: 1/1;
  font-size: 10px;
}
.single-p-news__conts .conts_inner .pagenation span.next:after {
  left: 5px;
}
.single-p-news__conts .conts_inner .pagenation span.prev:after {
  right: 5px;
  transform: rotate(180deg);
}

.archive-p-talent .inner {
  max-width: 1080px;
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .archive-p-talent .inner {
    width: 90%;
  }
}
.archive-p-talent__conts {
  margin-top: 10rem;
}
.archive-p-talent__conts .lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 5rem 4rem;
}
@media (max-width: 768px) {
  .archive-p-talent__conts .lists {
    gap: 2rem 1rem;
  }
}
@media (max-width: 1024px) {
  .archive-p-talent__conts .lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.archive-p-talent__conts .lists .talent {
  max-height: 386px;
}
@media (max-width: 768px) {
  .archive-p-talent__conts .lists .talent {
    width: 48%;
    height: 100%;
    max-height: 100%;
  }
}
.archive-p-talent__conts .lists .talent a {
  display: inline;
  transition: 0.5s;
}
.archive-p-talent__conts .lists .talent a:hover .imgflame {
  opacity: 0.8;
  transition: 0.5s;
}
.archive-p-talent__conts .lists .talent .imgflame {
  max-height: 300px;
  max-width: 240px;
  height: 100%;
  aspect-ratio: 240/300;
}
@media (max-width: 768px) {
  .archive-p-talent__conts .lists .talent .imgflame {
    max-height: initial !important;
    max-width: initial !important;
    height: 100%;
    aspect-ratio: initial !important;
    text-align: center;
  }
}
.archive-p-talent__conts .lists .talent .imgflame img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .archive-p-talent__conts .lists .talent .imgflame img {
    max-height: 300px;
  }
}
.archive-p-talent__conts .lists .talent .profile {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #333333;
  position: relative;
}
.archive-p-talent__conts .lists .talent .profile a:hover .imgflame {
  opacity: 0.8;
  transition: 0.5s;
}
.archive-p-talent__conts .lists .talent .profile::after {
  content: "";
  position: absolute;
  background: #333333;
  width: 10px;
  height: 1px;
  transform: rotate(45deg);
  right: -1px;
  bottom: 2.5px;
}
.archive-p-talent__conts .lists .talent .profile .name.en {
  font-family: "Raleway", sans-serif;
  font-size: 1.2rem;
  font-weight: 200;
}
.archive-p-talent__conts .lists .talent .profile .namebox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .archive-p-talent__conts .lists .talent .profile .namebox {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.archive-p-talent__conts .lists .talent .profile .namebox .name {
  font-size: 2.4rem;
  font-weight: 300;
}
.archive-p-talent__conts .lists .talent .profile .namebox .sns {
  display: flex;
  gap: 5px;
  justify-content: end;
}
.archive-p-talent__conts .lists .talent .profile .namebox .sns span {
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
}

.archive-p-news .inner {
  max-width: 1080px;
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .archive-p-news .inner {
    width: 90%;
  }
}
.archive-p-news__conts {
  margin-top: 10rem;
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .archive-p-news__conts {
    display: flex;
    flex-direction: column;
  }
}
.archive-p-news__conts-left .ttl {
  display: block;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #333333;
  font-weight: 200;
}
.archive-p-news__conts-left .lists {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.archive-p-news__conts-left .lists .item {
  font-weight: 200;
  padding-left: 20px;
  position: relative;
}
.archive-p-news__conts-left .lists .item:after {
  content: "";
  position: absolute;
  width: 5px;
  background: #333333;
  height: 1px;
  top: 50%;
  left: 2px;
}
.archive-p-news__conts .p-news__conts-right .list a:first-child {
  border-top: 1px solid #333333;
}
.archive-p-news__conts .p-news__conts-right .list .item {
  position: relative;
  gap: 2rem;
  padding: 3rem 0;
}
.archive-p-news__conts .p-news__conts-right .list .item:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-image: url(../images/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 6px;
}
@media (max-width: 768px) {
  .archive-p-news__conts .p-news__conts-right .list .item:after {
    right: 2%;
    top: 80%;
  }
}
@media screen and (max-width: 768px) and (min-width: 679px) {
  .archive-p-news__conts .p-news__conts-right .list .item:after {
    right: 0%;
    top: 80%;
  }
}
.archive-p-news__conts .p-news__conts-right .list .item .date {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}
.archive-p-news__conts .p-news__conts-right .list .item .cat {
  display: inline-block;
  white-space: nowrap;
}
.archive-p-news__conts .pagenation {
  display: flex;
  margin-top: 10rem;
  align-items: center;
  justify-content: center;
}
.archive-p-news__conts .pagenation span {
  display: block;
  padding-bottom: 1rem;
  width: 40px;
  text-align: center;
  position: relative;
}
.archive-p-news__conts .pagenation span.num {
  font-weight: 200;
  font-size: 2.4rem;
}
.archive-p-news__conts .pagenation span.num.active {
  position: relative;
}
.archive-p-news__conts .pagenation span.num.active:after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  background-color: #006837;
  z-index: -1;
}
.archive-p-news__conts .pagenation span.num.active a {
  color: #fff !important;
}
.archive-p-news__conts .pagenation span.next:after, .archive-p-news__conts .pagenation span.prev:after {
  content: "<";
  position: absolute;
  top: -5px;
  left: 15px;
  width: 10px;
  aspect-ratio: 1/1;
  font-size: 15px;
}
.archive-p-news__conts .pagenation span.next-most:after, .archive-p-news__conts .pagenation span.prev-most:after {
  content: "<<";
  position: absolute;
  top: -5px;
  width: 10px;
  aspect-ratio: 1/1;
  font-size: 15px;
}
.archive-p-news__conts .pagenation span.next:after {
  left: 5px;
  transform: rotate(180deg);
}
.archive-p-news__conts .pagenation span.prev:after {
  right: 5px;
}
.archive-p-news__conts .pageder .nav-links {
  display: flex;
  margin-top: 10rem;
  align-items: center;
  justify-content: center;
}
.archive-p-news__conts .pageder .nav-links .page-numbers {
  display: inline-block;
  padding: 8px 3px;
  margin-right: 5px;
  font-size: 2.4rem;
  width: 40px;
}
.archive-p-news__conts .pageder .nav-links .page-numbers.current {
  position: relative;
  color: #fff !important;
}
.archive-p-news__conts .pageder .nav-links .page-numbers.current:after {
  content: "";
  position: absolute;
  top: 0px;
  left: -10px;
  margin: 0 auto;
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  background-color: #006837;
  z-index: -1;
}
.page-p-privacy .inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .page-p-privacy .inner {
    width: 90%;
  }
}
.page-p-privacy__conts {
  margin-top: 10rem;
}
.page-p-privacy__conts .txt {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .page-p-privacy__conts .txt {
    font-size: 1.6rem;
  }
}
.page-p-privacy__conts .policy {
  text-align: center;
  font-size: 2.4rem;
  margin-top: 6rem;
}
.page-p-privacy__conts .policy + .txt {
  margin-top: 4.5rem;
}
.page-p-privacy__conts .ttlitem {
  padding-bottom: 2.3rem;
  border-bottom: 1px solid #808080;
  margin-top: 4rem;
  font-size: 2.4rem;
}
.page-p-privacy__conts .ttlitem.first {
  margin-top: 10rem;
}

.page-p-sponsor .inner {
  max-width: 1080px;
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .page-p-sponsor .inner {
    width: 90%;
  }
}
.page-p-sponsor__conts {
  margin-top: 10rem;
}
.page-p-sponsor__conts .ttlflame {
  text-align: center;
}
.page-p-sponsor__conts .imgflame {
  max-width: 783px;
  width: 95%;
  margin: 0 auto;
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .page-p-sponsor__conts .imgflame.sponimgflame {
    width: 100%;
  }
}
.page-p-sponsor__conts .txtconts {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}
@media (max-width: 768px) {
  .page-p-sponsor__conts .txtconts {
    font-size: 1.6rem;
  }
}
.page-p-sponsor__conts .txtconts p {
  margin-top: 5rem;
  font-weight: 300;
}

.page-p-manager .imgflame, .page-p-consulting .imgflame, .page-p-casting .imgflame, .page-p-event .imgflame {
  max-width: 1080px;
  width: 95%;
  margin: 0 auto;
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .page-p-manager .imgflame img, .page-p-consulting .imgflame img, .page-p-casting .imgflame img, .page-p-event .imgflame img {
    max-width: 180%;
  }
}
@media (max-width: 768px) {
  .page-p-manager .imgflame, .page-p-consulting .imgflame, .page-p-casting .imgflame, .page-p-event .imgflame {
    overflow-x: auto;
    display: flex;
    margin: 0 calc(50% - 50vw);
    margin-top: 6rem;
    width: 100vw;
    padding-left: 5%;
  }
}

.page-p-sponsor {
  overflow: hidden;
}
.page-p-sponsor__conts .conts {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-top: 8rem;
  margin-top: 9rem;
  position: relative;
}
@media (max-width: 1024px) {
  .page-p-sponsor__conts .conts {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column-reverse;
  }
}
.page-p-sponsor__conts .conts:after {
  content: "";
  position: absolute;
  background: #F2F2F2;
  top: 0;
  left: 10%;
  z-index: -1;
  width: 100vw;
  height: 145%;
}
.page-p-sponsor__conts .conts .left {
  line-height: 3.5;
  font-size: 1.8rem;
  max-width: 480px;
}
@media (max-width: 768px) {
  .page-p-sponsor__conts .conts .left {
    font-size: 1.6rem;
  }
}
.page-p-sponsor__conts .conts .right .imgflame.youtube {
  max-width: 580px !important;
  width: 100% !important;
  margin: 0 auto;
  margin-top: 0rem;
}
@media (max-width: 768px) {
  .page-p-sponsor__conts .conts .right .imgflame.youtube img {
    max-width: 100%;
  }
}
.page-p-sponsor__conts .banner {
  display: flex;
  gap: 3rem;
  margin-top: 10rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .page-p-sponsor__conts .banner {
    flex-direction: column;
    align-items: center;
  }
}
.page-p-sponsor__conts .banner .imgflame {
  max-width: 480px !important;
  width: 100% !important;
  margin: 0 0;
  margin-top: 0rem;
}
@media (max-width: 768px) {
  .page-p-sponsor__conts .banner .imgflame img {
    max-width: 100%;
  }
}
.page-p-sponsor .slide-animation {
  display: flex;
  gap: 10px;
  overflow: hidden;
  margin-top: 15rem;
}
.page-p-sponsor .slide-animation .slide-contents {
  display: flex;
  gap: 10px;
  animation: loopAnimation 30s linear infinite;
}
.page-p-sponsor .slide-animation .slide-contents li {
  width: 300px;
}
@keyframes loopAnimation {
  0% {
    transform: translate(0%);
  }
  100% {
    transform: translate(-100%);
  }
}

.page-p-contact {
  margin-top: 10rem;
}
.page-p-contact .mw_wp_form .error {
  margin-top: 0rem;
  position: absolute;
  right: 0;
  left: 0;
  font-size: 12px;
}
@media (max-width: 768px) {
  .page-p-contact .mw_wp_form .error {
    margin-top: 1.5rem;
  }
}
.page-p-contact .inner {
  max-width: 1080px;
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-p-contact .inner {
    width: 92%;
  }
}
.page-p-contact-txt-01 {
  width: 80%;
  margin: 0 auto;
  line-height: 2;
}
@media (max-width: 768px) {
  .page-p-contact-txt-01 {
    width: 90%;
  }
}
.page-p-contact__conts {
  border: 1px solid #333;
  margin-top: 6rem;
  padding: 6rem 13rem 10rem 13rem;
}
@media (max-width: 768px) {
  .page-p-contact__conts {
    padding: 3rem 2rem 3rem 2rem;
  }
}
.page-p-contact__conts .first__conts {
  margin: 0 auto;
  max-width: 633px;
}
.page-p-contact__conts .first__conts-txt {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  position: relative;
}
.page-p-contact__conts .first__conts-txt:after {
  position: absolute;
  content: "";
  width: calc(100% - 120px);
  height: 1px;
  background-color: #838383;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 768px) {
  .page-p-contact__conts .first__conts-txt:after {
    width: calc(100% - 90px);
  }
}
.page-p-contact__conts .first__conts-txt-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-weight: 300;
  align-items: center;
  width: 120px;
}
@media (max-width: 768px) {
  .page-p-contact__conts .first__conts-txt-box {
    width: 90px;
  }
}
.page-p-contact__conts .first__conts-txt-box .top {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #9D9D9D;
}
@media (max-width: 768px) {
  .page-p-contact__conts .first__conts-txt-box .top {
    font-size: 1.2rem;
  }
}
.page-p-contact__conts .first__conts-txt-box.active .top {
  color: #006837;
}
.page-p-contact__conts .first__conts-txt-box.active .middle:after {
  background-color: #006837;
}
.page-p-contact__conts .first__conts-txt-box.active .bottom {
  color: #333333;
}
.page-p-contact__conts .first__conts-txt-box .middle {
  position: relative;
  width: 10px;
  height: 10px;
  color: #9D9D9D;
}
.page-p-contact__conts .first__conts-txt-box .middle:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100px;
  top: 0;
  left: 0;
  background-color: #838383;
  z-index: 2;
}
.page-p-contact__conts .first__conts-txt-box .bottom {
  font-size: 1.8rem;
  margin-top: 10px;
  color: #9D9D9D;
}
@media (max-width: 768px) {
  .page-p-contact__conts .first__conts-txt-box .bottom {
    font-size: 1.4rem;
  }
}
.page-p-contact__conts .form__conts {
  margin-top: 7rem;
}
.page-p-contact__conts .form__conts .ttl {
  align-items: baseline;
  display: flex;
  border-bottom: 1px solid #333;
}
.page-p-contact__conts .form__conts .ttl .mainttl {
  display: inline-block;
  font-size: 2.2rem;
  padding-bottom: 2rem;
  font-weight: 300;
}
.page-p-contact__conts .form__conts .ttl .attention {
  display: inline-block;
  font-size: 1.2rem;
  color: #AE1E1D;
  margin-left: 5px;
}
.page-p-contact__conts .form__conts .labels {
  margin-top: 3rem;
  line-height: 1;
  font-weight: 300;
  font-size: 1.8rem;
  position: relative;
}
@media (max-width: 768px) {
  .page-p-contact__conts .form__conts .labels {
    font-size: 1.6rem;
  }
}
.page-p-contact__conts .form__conts .labels label {
  position: relative;
  display: inline-block;
}
.page-p-contact__conts .form__conts .labels label:not(:first-of-type) {
  margin-top: 1.5rem;
}
.page-p-contact__conts .form__conts .labels label span {
  display: inline-block;
}
.page-p-contact__conts .form__conts .labels input {
  font-size: 1.8rem;
  border: none;
  background: #F2F2F2;
}
.page-p-contact__conts .form__conts .labels input::-moz-placeholder {
  color: #9D9D9D;
}
.page-p-contact__conts .form__conts .labels input::placeholder {
  color: #9D9D9D;
}
@media (max-width: 768px) {
  .page-p-contact__conts .form__conts .labels input {
    font-size: 1.6rem;
  }
}
.page-p-contact__conts .form__conts-01 .labels {
  padding-left: 10px;
}
.page-p-contact__conts .form__conts-01 .labels label {
  display: flex !important;
  margin-top: 2rem;
}
.page-p-contact__conts .form__conts-01 .labels label input {
  display: inline-block;
  opacity: 0;
}
.page-p-contact__conts .form__conts-01 .labels label input:checked + span:before {
  opacity: 1;
}
.page-p-contact__conts .form__conts-01 .labels label span {
  position: relative;
}
.page-p-contact__conts .form__conts-01 .labels label span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #006837;
  transform: rotate(45deg);
  top: 5px;
  left: -21px;
  opacity: 0;
  border-radius: 100px;
}
.page-p-contact__conts .form__conts-01 .labels label span:after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #000;
  top: 2px;
  left: -24px;
  border-radius: 100px;
}
.page-p-contact__conts .form__conts-02 .labels {
  margin-left: 2rem;
}
@media (max-width: 768px) {
  .page-p-contact__conts .form__conts-02 .labels {
    margin-left: 0rem;
  }
}
.page-p-contact__conts .form__conts-02 .labels .point {
  height: 5px;
  width: 5px !important;
  color: #AE1E1D;
}
@media (max-width: 768px) {
  .page-p-contact__conts .form__conts-02 .labels .gender label {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .page-p-contact__conts .form__conts-02 .labels .gender label span {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-p-contact__conts .form__conts-02 .labels label {
    display: flex !important;
    flex-direction: column;
  }
}
.page-p-contact__conts .form__conts-02 .labels label span {
  width: 16%;
  vertical-align: baseline;
}
@media screen and (max-width: 539px) {
  .page-p-contact__conts .form__conts-02 .labels label span {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .page-p-contact__conts .form__conts-02 .labels label span {
    width: 50%;
  }
}
.page-p-contact__conts .form__conts-02 .labels label input {
  width: 78%;
  padding: 10px;
  margin-top: 1rem;
}
@media screen and (max-width: 539px) {
  .page-p-contact__conts .form__conts-02 .labels label input {
    width: 90%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .page-p-contact__conts .form__conts-02 .labels label input {
    width: 90%;
  }
}
.page-p-contact__conts .form__conts-03 .labels {
  display: flex;
  margin-left: 2rem;
}
@media screen and (max-width: 539px) {
  .page-p-contact__conts .form__conts-03 .labels {
    flex-direction: column;
    margin-left: 0rem;
  }
}
@media (max-width: 768px) {
  .page-p-contact__conts .form__conts-03 .labels {
    flex-direction: column;
  }
}
.page-p-contact__conts .form__conts-03 .labels span {
  display: block;
  width: 16%;
}
@media screen and (max-width: 539px) {
  .page-p-contact__conts .form__conts-03 .labels span {
    width: 50%;
  }
}
.page-p-contact__conts .form__conts-03 .labels label {
  width: 80%;
}
@media (max-width: 768px) {
  .page-p-contact__conts .form__conts-03 .labels label {
    width: 91%;
  }
}
.page-p-contact__conts .form__conts-03 .labels label textarea {
  width: 98%;
  border: none;
  background: #F2F2F2;
  padding: 10px;
  font-size: 1.8rem;
  font-weight: 100;
  height: 200px;
}
.page-p-contact__conts .form__conts-03 .labels label textarea::-moz-placeholder {
  color: #9D9D9D;
  font-weight: 200;
}
.page-p-contact__conts .form__conts-03 .labels label textarea::placeholder {
  color: #9D9D9D;
  font-weight: 200;
}
@media (max-width: 768px) {
  .page-p-contact__conts .form__conts-03 .labels label textarea {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}
.page-p-contact__conts .form__conts-03 .txt {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-top: 5.5rem;
}
.page-p-contact__conts .form__conts-03 .txt a.privacy {
  display: inline;
}
@media (max-width: 768px) {
  .page-p-contact__conts .form__conts-03 .txt {
    font-size: 1.6rem;
  }
}
.page-p-contact__conts .form__conts-03 .txt label {
  margin-top: 4rem;
  display: block;
}
.page-p-contact__conts .form__conts-03 .txt .submit input {
  height: 70px;
  width: 280px;
  margin: 0 auto;
  background: #333;
  display: grid;
  place-content: center;
  margin-top: 4rem;
  color: #fff !important;
  font-size: 2.2rem;
}
@media screen and (max-width: 539px) {
  .page-p-contact__conts .form__conts-03 .txt .submit input {
    font-size: 2rem;
  }
}
.page-p-contact.confirm .form__conts-02 .labels {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 768px) {
  .page-p-contact.confirm .form__conts-02 .labels label {
    flex-direction: initial;
  }
}
.page-p-contact.confirm .form__conts-02 .labels label span {
  width: 22%;
}
@media (max-width: 768px) {
  .page-p-contact.confirm .form__conts-02 .labels label span {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .page-p-contact.confirm .form__conts-02 .archive {
    display: flex;
  }
}
.page-p-contact.confirm .form__conts-02 .archive span {
  display: block;
  width: 22%;
}
@media (max-width: 768px) {
  .page-p-contact.confirm .form__conts-02 .archive span {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .page-p-contact.confirm .form__conts-03 .labels {
    display: flex;
    flex-direction: row;
  }
}
.page-p-contact.confirm .form__conts-03 .labels span {
  width: 22%;
}
@media (max-width: 768px) {
  .page-p-contact.confirm .form__conts-03 .labels span {
    width: 40%;
  }
}
.page-p-contact.confirm .form__conts-03 .labels span .point {
  width: 5px !important;
}
.page-p-contact.confirm .form__conts-03 .txt .submit input {
  background-color: #006837;
  color: #fff;
}
.page-p-contact.thanks .page-p-contact__conts {
  border: none;
  padding: initial !important;
}
.page-p-contact.thanks .page-p-contact__conts .first__conts .complete {
  font-size: 4rem;
  text-align: center;
  letter-spacing: 0.18em;
}
.page-p-contact.thanks .page-p-contact__conts .first__conts .first__conts-txt {
  margin-top: 5rem;
}
.page-p-contact.thanks .comment {
  line-height: 3rem;
  text-align: center;
  margin-top: 7rem;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .page-p-contact.thanks .comment {
    font-size: 1.6rem;
  }
}
.page-p-contact.thanks .comment .second {
  margin-top: 4.5rem;
}
.page-p-contact.thanks .c-btn {
  margin: 0 auto;
  margin-top: 7rem;
}
.page-p-contact.entry .form__conts-02 .labels {
  margin-top: 2rem;
}
.page-p-contact.entry .form__conts-02 .labels label {
  display: block;
}
.page-p-contact.entry .form__conts-02 .labels .gender {
  margin: 3rem 0;
}
@media (max-width: 768px) {
  .page-p-contact.entry .form__conts-02 .labels .gender {
    display: flex;
  }
}
.page-p-contact.entry .form__conts-02 .labels .gender .mwform-radio-field {
  width: 20% !important;
}
@media (max-width: 768px) {
  .page-p-contact.entry .form__conts-02 .labels .gender .mwform-radio-field {
    width: 100% !important;
  }
}
.page-p-contact.entry .form__conts-02 .labels .gender .mwform-radio-field label {
  display: block;
  width: 100%;
}
.page-p-contact.entry .form__conts-02 .labels .gender .mwform-radio-field label input {
  display: inline-block;
  opacity: 0;
  width: initial !important;
}
.page-p-contact.entry .form__conts-02 .labels .gender .mwform-radio-field label input:checked + span:before {
  opacity: 1;
}
.page-p-contact.entry .form__conts-02 .labels .gender .mwform-radio-field label span {
  position: relative;
}
@media (max-width: 768px) {
  .page-p-contact.entry .form__conts-02 .labels .gender .mwform-radio-field label span {
    width: 100% !important;
    text-align: center;
  }
}
.page-p-contact.entry .form__conts-02 .labels .gender .mwform-radio-field label span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #006837;
  transform: rotate(45deg);
  top: 5px;
  left: -21px;
  opacity: 0;
  border-radius: 100px;
}
@media (max-width: 768px) {
  .page-p-contact.entry .form__conts-02 .labels .gender .mwform-radio-field label span:before {
    left: 3px !important;
  }
}
.page-p-contact.entry .form__conts-02 .labels .gender .mwform-radio-field label span:after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #000;
  top: 2px;
  left: -24px;
  border-radius: 100px;
}
@media (max-width: 768px) {
  .page-p-contact.entry .form__conts-02 .labels .gender .mwform-radio-field label span:after {
    left: 0px !important;
  }
}
.page-p-contact.entry .form__conts-02 .labels .gender .mwform-radio-field label span {
  width: 50%;
}
.page-p-contact.entry .form__conts-02 .archive {
  display: flex;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .page-p-contact.entry .form__conts-02 .archive {
    flex-direction: column;
  }
}
.page-p-contact.entry .form__conts-02 .archive span {
  width: 16%;
  vertical-align: baseline;
}
.page-p-contact.entry .form__conts-02 .archive label {
  width: 78%;
}
@media (max-width: 768px) {
  .page-p-contact.entry .form__conts-02 .archive label {
    width: 89%;
  }
}
.page-p-contact.entry .form__conts-02 .archive label textarea {
  width: 100%;
  border: none;
  background: #F2F2F2;
  padding: 10px;
  font-size: 1.8rem;
  font-weight: 100;
  height: 100px;
  transform: translate(5px, 0px);
}
@media (max-width: 768px) {
  .page-p-contact.entry .form__conts-02 .archive label textarea {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}
.page-p-contact.entry .form__conts-02 .archive label textarea::-moz-placeholder {
  color: #9d9d9d;
}
.page-p-contact.entry .form__conts-02 .archive label textarea::placeholder {
  color: #9d9d9d;
}

.u-c--bl {
  color: #333333;
}
.u-c--rd {
  color: #C1272D;
}

.u-ta--l {
  text-align: left;
}
.u-ta--r {
  text-align: right;
}
.u-ta--c {
  text-align: center;
}/*# sourceMappingURL=style.css.map */