@charset "UTF-8";
/*===
  #common
  ===*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

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

body {
  color: #000;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.5;
  font-size: clamp(14px, 0.8333vw, 16px);
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

.container {
  width: 1280px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.main {
  padding-top: 102.5px;
  overflow: hidden;
}

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

.sec_btn a {
  display: inline-block;
  background-color: #cc3333;
  border: 1px solid #cc3333;
  color: #fff;
  padding: 10px 50px;
  font-weight: 600;
  letter-spacing: 0.1em;
  outline: none;
  transition: ease 0.2s;
  position: relative;
}

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

.sec_ttl {
  display: flex;
  align-items: center;
}

.sec_ttl p {
  font-size: 42px;
  font-family: neue-haas-grotesk-display, sans-serif;
  letter-spacing: 0.1em;
  margin-right: 36px;
}

@media screen and (max-width: 767px) {
  .sec_ttl p {
    font-size: 28px;
  }
}

.sec_ttl h2,
.sec_ttl .ttl {
  font-weight: 600;
  font-size: 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .sec_ttl h2,
  .sec_ttl .ttl {
    font-size: 18px;
  }
}

.sec_ttl h2::before, .sec_ttl h2::after,
.sec_ttl .ttl::before,
.sec_ttl .ttl::after {
  position: absolute;
  content: "";
  background-color: #000000;
  width: 20px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.sec_ttl h2::before,
.sec_ttl .ttl::before {
  left: -25px;
}

.sec_ttl h2::after,
.sec_ttl .ttl::after {
  right: -25px;
}

.sec_ttl-white {
  display: flex;
  align-items: center;
  color: #ffffff;
}

.sec_ttl-white p {
  font-size: 52px;
  font-family: neue-haas-grotesk-display, sans-serif;
  letter-spacing: 0.1em;
  margin-right: 36px;
}

@media screen and (max-width: 767px) {
  .sec_ttl-white p {
    font-size: 32px;
  }
}

.sec_ttl-white h2 {
  font-weight: 600;
  font-size: 24px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .sec_ttl-white h2 {
    font-size: 18px;
  }
}

.sec_ttl-white h2::before, .sec_ttl-white h2::after {
  position: absolute;
  content: "";
  background-color: #ffffff;
  width: 20px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.sec_ttl-white h2::before {
  left: -25px;
}

.sec_ttl-white h2::after {
  right: -25px;
}

.sec_ttl-center {
  text-align: center;
  display: block;
}

.sec_ttl-center p {
  margin-right: 0;
}

.sec_ttl-center h2,
.sec_ttl-center .ttl {
  display: inline-block;
}

.section {
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}

/* ===============================================
# ヘッダー
=============================================== */
#header {
  z-index: 20;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  #header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
  }
}

#header > .inner {
  display: flex;
  align-items: center;
  padding: 20px clamp(50px, 5.2083vw, 100px) 20px clamp(50px, 5.2083vw, 100px);
  background-color: #000000;
  position: relative;
}

@media screen and (max-width: 767px) {
  #header > .inner {
    display: block;
    padding: 10px;
  }
}

.head_description {
  position: absolute;
  right: 20px;
  top: 10px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .head_description {
    font-size: 10px;
    right: 5px;
    top: 5px;
  }
}

.header-logo {
  width: clamp(200px, 17.29167vw, 250px);
  width: 250px;
}

@media screen and (max-width: 767px) {
  .header-logo {
    width: 160px;
    text-align: center;
  }
}

.header-logo a {
  transition: all 0.3s ease 0s;
}

.header-logo a:hover {
  opacity: 0.6;
}

.header-sub {
  color: #333;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.71429;
  padding: 0 38px;
}

.header-sub span {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .header-sub span {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .header-sub {
    font-size: 10px;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}

.header-nav {
  margin-left: auto;
}

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

.header-nav > .inner {
  display: flex;
}

.header-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 40px;
  line-height: 40px;
}

.header-nav li {
  margin-right: clamp(15px, 2.08333vw, 40px);
}

.header-nav li:last-child {
  margin-right: 0;
}

.header-nav li > a {
  color: #ffffff;
  display: block;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  opacity: 1;
}

.header-nav li > a:hover {
  opacity: 0.6;
}

.header-contact {
  background-image: linear-gradient(45deg, #5accb0, #20bbcd);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 12.1875vw, 234px);
  height: 164px;
  right: 0;
  top: 0;
  border-radius: 0 0 0 14px;
}

.header-contact img {
  display: block;
  margin: 0 auto;
  width: 52px;
}

.header-contact span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fbfbfb;
}

.h_contact {
  background-color: #cc3333;
}

.h_contact a {
  padding: 0 30px;
}

/* ===============================================
# ドロワー 
=============================================== */
.drawer {
  display: none;
}

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

.drawer-icon {
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  position: fixed;
  right: 17px;
  text-align: center;
  top: 15px;
  z-index: 41;
}

.drawer-open {
  display: block;
}

.m_checked .drawer-open {
  display: none;
}

.drawer-close {
  display: none;
}

.m_checked .drawer-close {
  display: block;
}

.drawer-content {
  background: #000000;
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: auto;
  padding: 100px 16px 16px;
  position: fixed;
  text-align: left;
  top: 0;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 100%;
  z-index: 40;
}

.m_checked .drawer-content {
  opacity: 1;
  visibility: visible;
}

.drawer-nav li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 6px solid transparent;
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 20px 12px 24px 5px;
  text-decoration: none;
  text-align: center;
}

.fa-times::before {
  color: #fff;
}

/* ===============================================
# fv
=============================================== */
.fv {
  height: calc(100vh - 102px);
  margin: 0 40px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .fv {
    height: auto;
    margin: 0;
    overflow: unset;
  }
}

.fv::after {
  position: absolute;
  content: "";
  background: url(../img/filter1.png) center center/contain repeat;
  width: 100%;
  height: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: .3;
}

.fv .container {
  height: 100%;
}

.fv_video video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .fv_video video {
    height: calc(100vh - 100px);
  }
}

.fv_txt-box {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .fv_txt-box {
    left: 10px;
  }
}

.fv_txt-box .txt {
  font-size: clamp(80px, 6.25vw, 120px);
  font-weight: bold;
  color: transparent;
  /* 文字の塗りつぶしを透明に */
  -webkit-text-stroke: 2px #cc3333;
  /* 縁の太さと色 */
  text-stroke: 2px #cc3333;
  /* 一部ブラウザ用 */
  font-family: "neue-haas-unica", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .fv_txt-box .txt {
    font-size: 45px;
    line-height: 1.7;
    -webkit-text-stroke: 1px #cc3333;
    /* 縁の太さと色 */
    text-stroke: 1px #cc3333;
    /* 一部ブラウザ用 */
  }
}

.fv_txt-box h2 {
  font-size: clamp(40px, 3.125vw, 60px);
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .fv_txt-box h2 {
    font-size: 24px;
  }
}

.fv_txt-box h2 span {
  display: inline-block;
}

/* ===============================================
# about
=============================================== */
.t_about {
  text-align: center;
}

.t_about_ttl {
  font-size: 32px;
  font-weight: 700;
  font-family: "Shippori Mincho B1", serif;
  position: relative;
}

.t_about_ttl::after {
  position: absolute;
  content: "";
  background-color: #cc3333;
  height: 2px;
  width: 150px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .t_about_ttl {
    font-size: 20px;
  }
}

.t_about_txt {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .t_about_txt {
    font-size: 14px;
  }
}

/* ===============================================
# 事業内容TOP
=============================================== */
.t_business {
  background-color: #000000;
  background-image: linear-gradient(to top, #323232, #000);
  display: flex;
}

@media screen and (max-width: 767px) {
  .t_business {
    flex-direction: column;
  }
}

.t_business-wrap {
  position: relative;
  width: 50%;
}

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

.t_business-img img {
  height: 600px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .t_business-img img {
    height: 240px;
  }
}

.t_business-ttl {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.t_business-content {
  width: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 30px;
}

@media screen and (max-width: 767px) {
  .t_business-content {
    width: 100%;
    padding: 40px 15px;
  }
}

.t_business-content .ttl {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho B1", serif;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_business-content .ttl {
    font-size: 20px;
  }
}

.t_business-content .ttl::after {
  position: absolute;
  content: "";
  background-color: #cc3333;
  height: 2px;
  width: 150px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.t_business-content .txt {
  margin-top: 35px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .t_business-content .txt {
    font-size: 14px;
  }
}

.t_business-content .sec_btn {
  margin-top: 40px;
}

/* ===============================================
# companyTOPページ
=============================================== */
.t_company {
  background: url(../img/company-back.webp) center center/cover no-repeat;
  text-align: center;
}

.t_company .txt {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .t_company .txt {
    font-size: 14px;
  }
}

.t_company .sec_btn {
  margin-top: 40px;
}

.t_company-ttl {
  text-align: center;
  display: block;
}

.t_company-ttl p {
  margin-right: 0;
}

.t_company-ttl h2 {
  display: inline-block;
}

/* ===============================================
# 社員紹介TOPページ
=============================================== */
.t_staff-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .t_staff-wrapper {
    flex-direction: column;
    margin-top: 20px;
  }
}

.t_staff-left {
  width: 48%;
}

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

.t_staff-left picture img {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.494);
}

.t_staff-left picture .name {
  text-align: right;
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .t_staff-left picture .name {
    font-size: 18px;
  }
}

.t_staff-left picture .name span {
  margin-right: 15px;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .t_staff-left picture .name span {
    font-size: 14px;
  }
}

.t_staff-left .sec_btn {
  text-align: center;
  margin-top: 40px;
}

.t_staff-right {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .t_staff-right {
    width: 100%;
    margin-top: 60px;
  }
}

.t_staff-right .sec_btn {
  text-align: center;
  margin-top: 40px;
}

.t_staff-right-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.t_staff-right-wrap picture {
  display: block;
  width: 45%;
  margin: 0 auto;
  text-align: center;
}

.t_staff-right-wrap picture:nth-child(n + 3) {
  margin-top: 30px;
}

.t_staff-right-wrap picture img {
  display: block;
  width: 100%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.494);
}

@media screen and (max-width: 767px) {
  .t_staff-right-wrap picture img {
    width: 150px;
    height: 150px;
  }
}

.t_staff-right-wrap picture .name {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .t_staff-right-wrap picture .name {
    font-size: 16px;
  }
}

.t_staff-right-wrap picture .name span {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .t_staff-right-wrap picture .name span {
    font-size: 12px;
  }
}

/* ===============================================
# 採用情報0
=============================================== */
.t_recruit {
  text-align: center;
  background: url(../img/recruit-back.webp) center center/cover no-repeat;
}

.t_recruit .ttl {
  font-size: 32px;
  color: #ffffff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 900;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .t_recruit .ttl {
    font-size: 24px;
  }
}

.t_recruit .txt {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .t_recruit .txt {
    font-size: 14px;
  }
}

.t_recruit .sec_btn {
  margin-top: 40px;
}

/* ===============================================
# 問い合わせTOPページ
=============================================== */
.t_contact-box {
  margin-top: 40px;
  background: url(../img/mv-contact.webp) center center/cover no-repeat;
  padding: 100px;
}

@media screen and (max-width: 767px) {
  .t_contact-box {
    padding: 40px 15px;
    margin-top: 20px;
  }
}

.t_contact-box .ttl {
  font-size: 28px;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .t_contact-box .ttl {
    font-size: 18px;
  }
}

.t_contact-box .sec_btn {
  text-align: right;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .t_contact-box .sec_btn {
    margin-top: 40px;
    text-align: center;
  }
}

/* ===============================================
# footer
=============================================== */
.footer {
  background-color: #000000;
  padding: 20px 0;
  text-align: center;
}

.footer .logo img {
  width: 400px;
}

@media screen and (max-width: 767px) {
  .footer .logo img {
    width: 250px;
  }
}

.footer .info {
  margin-top: 30px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.footer .sns {
  margin-top: 20px;
}

.footer .sns a {
  color: #ffffff;
  font-size: 24px;
  transition: 0.4s;
}

.footer .sns a:hover {
  color: #cc3333;
}

.footer_list {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .footer_list {
    flex-direction: column;
    margin-top: 20px;
  }
}

.footer_list li {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 2px solid #ffffff;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .footer_list li {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
    margin-top: 15px;
  }
}

.footer_list li:first-child {
  margin-left: 0;
  border-left: none;
}

@media screen and (max-width: 767px) {
  .footer_list li:first-child {
    margin-top: 0;
  }
}

.footer_list li a {
  color: #ffffff;
  font-size: 16px;
}

.privacy {
  margin-top: 15px;
}

.privacy a {
  color: #ffffff;
  font-size: 16px;
}

.copy {
  margin-top: 40px;
  font-size: 14px;
  font-weight: 500;
  font-family: neue-haas-grotesk-display, sans-serif;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .copy {
    text-align: center;
  }
}

/* ===============================================
# 下層ページ
=============================================== */
.c_mv {
  background: url(../img/recruit-back.webp) center center/cover no-repeat;
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .c_mv {
    padding: 40px 0;
  }
}

.c_mv-ttl {
  text-align: center;
  color: #ffffff;
}

.c_mv-ttl .ttl {
  font-size: 3vw;
  letter-spacing: 0.06em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .c_mv-ttl .ttl {
    font-size: 24px;
  }
}

.c_mv-ttl .sub-ttl {
  font-size: 20px;
  font-family: neue-haas-grotesk-display, sans-serif;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .c_mv-ttl .sub-ttl {
    font-size: 18px;
  }
}

.business_wrap {
  background-image: linear-gradient(to top, #323232, #000);
}

.business_mv {
  background: url(../img/mv-business.webp) center center/cover no-repeat;
}

.business {
  color: #ffffff;
}

.strong_logo-img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.strong_logo-img img {
  display: block;
  width: 300px;
}

@media screen and (max-width: 767px) {
  .strong_logo-img img {
    width: 170px;
  }
}

.strong_logo-img span {
  display: block;
  font-size: 32px;
  font-weight: 600;
  margin-left: 15px;
}

@media screen and (max-width: 767px) {
  .strong_logo-img span {
    font-size: 20px;
    margin-left: 5px;
  }
}

.strong_img {
  margin-top: 30px;
  text-align: center;
}

.strong_img img {
  max-width: 800px;
  margin: 0 auto;
}

.strong_wrapper {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .strong_wrapper {
    margin-top: 40px;
  }
}

.strong_item {
  position: relative;
  z-index: 1;
}

.strong_item + .strong_item {
  margin-top: 100px;
}

.strong_item .no {
  position: absolute;
  content: "";
  font-size: 10vw;
  color: #333;
  opacity: .8;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 900;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .strong_item .no {
    font-size: 150px;
  }
}

.strong_item .head {
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}

.strong_item .head::after {
  position: absolute;
  content: "";
  background-color: #cc3333;
  width: 100px;
  height: 2px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .strong_item .head {
    font-size: 18px;
  }
}

.strong_item .head span {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .strong_item .head span {
    font-size: 14px;
  }
}

.strong_item .txt {
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
  line-height: 2;
}

.strong_center {
  margin-top: 15px;
  width: 100%;
}

.strong_center .strong_item {
  margin: 0 auto;
}

.business_txt {
  text-align: center;
  margin-top: 100px;
}

.business_txt p {
  font-size: 24px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .business_txt p {
    font-size: 18px;
    line-height: 2;
  }
}

.business_txt p span {
  display: inline-block;
  background-color: #cc3333;
  color: #ffffff;
  padding: 0 10px;
  margin: 0 5px;
}

.plan {
  color: #ffffff;
}

.plan .sec_ttl .ttl::before, .plan .sec_ttl .ttl::after {
  background-color: #fff;
}

.plan_top {
  margin-top: 40px;
  text-align: center;
}

.plan_top .sub_ttl {
  font-size: 32px;
  font-family: "Zen Old Mincho", serif;
  color: #ffffff;
  background-color: #cc3333;
  display: inline-block;
  padding: 0 15px;
}

@media screen and (max-width: 767px) {
  .plan_top .sub_ttl {
    font-size: 20px;
  }
}

.plan_top .txt {
  margin-top: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

.plan_wrapper {
  margin-top: 60px;
}

.plan_item {
  display: flex;
  align-items: end;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .plan_item {
    flex-direction: column;
  }
}

.plan_item + .plan_item {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .plan_item + .plan_item {
    margin-top: 40px;
  }
}

.plan_item:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .plan_item:nth-child(even) {
    flex-direction: column;
  }
}

.plan_item:nth-child(even) .plan_right {
  margin-left: 0;
  margin-right: -40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .plan_item:nth-child(even) .plan_right {
    margin-right: 0;
  }
}

.plan_left {
  width: 50%;
}

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

.plan_left picture {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.plan_left picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plan_right {
  width: 50%;
  background-color: #fff;
  color: #000000;
  padding: 60px 40px;
  margin-left: -40px;
  margin-bottom: -40px;
}

@media screen and (max-width: 767px) {
  .plan_right {
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 0;
  }
}

.plan_right .ttl {
  color: #cc3333;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .plan_right .ttl {
    font-size: 18px;
  }
}

.plan_right .txt {
  margin-top: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .plan_right .txt {
    margin-top: 15px;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}

.about_mv {
  background: url(../img/company-back.webp) center center/cover no-repeat;
}

.philosophy {
  background-image: linear-gradient(to top, #323232, #000);
}

.philosophy .sec_ttl p {
  color: #ffffff;
}

.philosophy .sec_ttl .ttl {
  color: #ffffff;
}

.philosophy .sec_ttl .ttl::after, .philosophy .sec_ttl .ttl::before {
  background-color: #ffffff;
}

.philosophy .sub_ttl {
  margin-top: 60px;
  color: #ffffff;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  position: relative;
}

@media screen and (max-width: 767px) {
  .philosophy .sub_ttl {
    font-size: 20px;
    margin-top: 40px;
  }
}

.philosophy .sub_ttl::after {
  position: absolute;
  content: "";
  background-color: #cc3333;
  height: 2px;
  width: 150px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.philosophy .txt {
  color: #ffffff;
  margin-top: 40px;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
}

.philosophy .txt span {
  font-weight: 600;
  font-size: 16px;
}

.overview_wrapper {
  max-width: 800px;
  margin: 60px auto 0;
  border-top: 1px dotted #707070;
  border-bottom: 1px dotted #707070;
}

@media screen and (max-width: 767px) {
  .overview_wrapper {
    margin-top: 40px;
  }
}

.overview_wrapper dl {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #707070;
  padding: 0 15px;
}

@media screen and (max-width: 767px) {
  .overview_wrapper dl {
    flex-direction: column;
  }
}

.overview_wrapper dl:last-child {
  border-bottom: none;
}

.overview_wrapper dl dt {
  display: flex;
  align-items: center;
  justify-content: left;
  width: 180px;
  height: 60px;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .overview_wrapper dl dt {
    font-size: 16px;
    width: 100%;
    height: auto;
    padding: 5px;
  }
}

.overview_wrapper dl dd {
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .overview_wrapper dl dd {
    width: 100%;
    padding: 5px;
  }
}

.message_wrapper {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .message_wrapper {
    flex-direction: column;
    margin-top: 0;
  }
}

.message_left {
  width: 50%;
  margin-right: 40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .message_left {
    width: 100%;
    margin-right: 0;
    margin-top: 40px;
  }
}

.message_left::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000;
  left: -20px;
  top: -20px;
  bottom: 20px;
  right: 20px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .message_left::after {
    left: -10px;
    top: -10px;
    bottom: 10px;
    right: 10px;
  }
}

.message_left img {
  display: block;
}

.message_right {
  width: 50%;
}

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

.message_right .sub_ttl {
  font-size: 20px;
  letter-spacing: 0.1em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  color: #cc3333;
}

@media screen and (max-width: 767px) {
  .message_right .sub_ttl {
    font-size: 24px;
  }
}

.message_right .txt {
  margin-top: 30px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .message_right .txt {
    line-height: 2;
    margin-top: 20px;
  }
}

.message_right .name {
  text-align: right;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
}

.message_right .name span {
  margin-right: 15px;
  font-size: 16px;
  font-weight: 500;
}

.staff {
  background-image: linear-gradient(to top, #323232, #000);
}

.staff .sec_btn {
  margin-top: 60px;
  text-align: center;
}

.staff_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 30px;
}

@media screen and (max-width: 767px) {
  .staff_item {
    flex-direction: column;
    padding: 20px;
  }
}

.staff_item + .staff_item {
  margin-top: 30px;
}

.staff_item picture {
  display: block;
  width: 30%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .staff_item picture {
    margin: 0 auto;
    width: 100%;
  }
}

.staff_item picture::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000;
  left: -10px;
  top: -10px;
  bottom: 10px;
  right: 10px;
}

.staff_item picture img {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .staff_item picture img {
    margin: 0 auto;
  }
}

.staff_item-content {
  width: 65%;
}

@media screen and (max-width: 767px) {
  .staff_item-content {
    width: 100%;
    margin-top: 20px;
  }
}

.post_wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.post_wrapper .post {
  background-color: #cc3333;
  color: #ffffff;
  padding: 3px 10px;
}

.post_wrapper .name {
  margin-left: 10px;
  font-size: 18px;
}

.staff_item-wrap + .staff_item-wrap {
  margin-top: 15px;
}

.staff_item-wrap .sub_ttl {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 600;
  font-family: neue-haas-grotesk-display, sans-serif;
}

@media screen and (max-width: 767px) {
  .staff_item-wrap .sub_ttl {
    font-size: 16px;
  }
}

.staff_item-wrap .txt {
  line-height: 2;
  letter-spacing: 0.1em;
}

.recruit_wrapper {
  align-items: start;
}

.recruit_left {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .recruit_left {
    margin-top: 40px;
  }
}

.recruit_right .sub_ttl {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .recruit_right .sub_ttl {
    margin-top: 20px;
    font-size: 18px;
  }
}

.recruit_right .txt_box {
  margin-top: 20px;
}

.recruit_right .txt {
  margin-top: 10px;
  font-weight: 400;
}

.flow .sec_ttl {
  color: #ffffff;
}

.flow .sec_ttl .ttl::after, .flow .sec_ttl .ttl::before {
  background-color: #ffffff;
}

.flow_wrapper {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .flow_wrapper {
    margin-top: 40px;
  }
}

.flow_item {
  position: relative;
}

.flow_item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 30px solid #cc3333;
  border-bottom: 0;
  z-index: 1;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
}

.flow_item + .flow_item {
  margin-top: 60px;
}

.flow_item:last-child::after {
  display: none;
}

.flow_item picture {
  width: 200px;
}

.flow_item picture::after {
  display: none;
}

.flow_item picture img {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.flow_item-content {
  width: calc(100% - 200px);
}

@media screen and (max-width: 767px) {
  .flow_item-content {
    width: 100%;
    margin-top: 20px;
  }
}

.flow_item-content .sub_ttl {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #cc3333;
}

@media screen and (max-width: 767px) {
  .flow_item-content .sub_ttl {
    font-size: 18px;
    text-align: center;
  }
}

.flow_item-content .txt {
  margin-top: 10px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 500;
}

.qa .sec_btn {
  text-align: center;
  margin-top: 60px;
}

.qa_wrapper {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .qa_wrapper {
    margin-top: 40px;
  }
}

.qa_item {
  background-color: #f4f4f4;
  padding: 20px 30px;
}

@media screen and (max-width: 767px) {
  .qa_item {
    padding: 15px;
  }
}

.qa_item + .qa_item {
  margin-top: 30px;
}

.qa_item dl dt {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #cc3333;
  font-family: "Shippori Mincho B1", serif;
  border-bottom: 1px dotted #707070;
  padding: 0 15px 5px;
}

@media screen and (max-width: 767px) {
  .qa_item dl dt {
    font-size: 16px;
  }
}

.qa_item dl dt span {
  display: inline-block;
  font-size: 32px;
  font-family: "Shippori Mincho B1", serif;
  color: #cc3333;
  vertical-align: sub;
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .qa_item dl dt span {
    font-size: 20px;
    vertical-align: bottom;
  }
}

.qa_item dl dd {
  margin-top: 15px;
  padding: 0 15px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .qa_item dl dd {
    font-size: 14px;
  }
}

.contact_mv {
  background: url(../img/mv-contact.webp) center center/cover no-repeat;
}

.contact {
  background-image: linear-gradient(to top, #323232, #000);
}

.contact .sec_ttl {
  color: #ffffff;
}

.contact .sec_ttl .ttl::before, .contact .sec_ttl .ttl::after {
  background-color: #ffffff;
}

.contact-box {
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 60px;
  background: #fff;
  color: #333;
}

@media screen and (max-width: 767px) {
  .contact-box {
    padding: 20px 15px;
  }
}

.contact-note-txt {
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 3px solid #d8d8d8;
}

@media screen and (max-width: 767px) {
  .contact-note-txt {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}

.contact-required-txt {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.contact-required-txt span {
  color: #cc3333;
}

.contact-contents__item--required {
  display: flex;
}

@media screen and (max-width: 767px) {
  .contact-contents__item--required {
    display: block;
  }
}

.contact-contents__item--required + .contact-contents__item--required {
  margin-top: 40px;
}

.required {
  position: relative;
}

.required::after {
  position: absolute;
  content: "必須";
  font-size: 12px;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  background: #cc3333;
  padding: 5px 5px;
  line-height: 1;
  border-radius: 5px;
  margin-left: 5px;
}

.contact-contents__item-title {
  width: 230px;
  height: 40px;
  line-height: 40px;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .contact-contents__item-title {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.contact-contents__item-title p {
  display: inline-block;
}

.contact-contents__item-input--text {
  width: calc(100% - 230px);
}

@media screen and (max-width: 767px) {
  .contact-contents__item-input--text {
    width: 100%;
  }
}

.contact-contents__item-textarea {
  width: calc(100% - 230px);
}

@media screen and (max-width: 767px) {
  .contact-contents__item-textarea {
    width: 100%;
  }
}

.contact-contents__submit {
  text-align: center;
  margin-top: 40px;
}

.contact-contents__btn {
  width: 120px;
  height: 50px;
  border: none;
  background: #cc3333;
  color: #fff;
}

.contact-contents__btn:hover {
  opacity: 0.6;
}

input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  border: none;
  height: 40px;
  background: whitesmoke;
  padding-left: 10px;
}

textarea {
  width: 100%;
  min-height: 122px;
  resize: vertical;
  border: none;
  background: whitesmoke;
}

input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

.wpcf7-list-item {
  display: block;
}

.wpcf7-list-item + .wpcf7-list-item {
  margin-top: 10px;
  margin-left: 0;
}

span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 2px solid #707070;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #000000;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-spinner {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.grechapcha-txt {
  text-align: center;
  margin-top: 30px;
}

/* ===============================================
# プライバシーポリシー
=============================================== */
.policy {
  padding: 140px 0 0;
}

@media screen and (max-width: 767px) {
  .policy {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .policy .sec_en_ttl {
    margin-bottom: 15px;
  }
}

.policy_wrapper {
  display: flex;
}

@media screen and (max-width: 767px) {
  .policy_wrapper {
    flex-direction: column;
  }
}

.policy_item {
  border-bottom: 1px solid #424e57;
  padding: 0 20px 70px;
}

@media screen and (max-width: 767px) {
  .policy_item {
    padding: 0 10px 30px;
  }
}

.policy_item + .policy_item {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .policy_item + .policy_item {
    margin-top: 30px;
  }
}

.policy_sub_ttl {
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .policy_sub_ttl {
    font-size: 18px;
  }
}

.policy_txt {
  margin-top: 25px;
  line-height: 2.5;
}

@media screen and (max-width: 767px) {
  .policy_txt {
    margin-top: 15px;
  }
}

.policy_txt ul {
  margin-top: 50px;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .policy_txt ul {
    margin-top: 20px;
    margin-left: 20px;
  }
}

.policy_txt ul li {
  list-style: disc !important;
}
