@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1.5;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

/* color */
/* font-family */
/* width setting */
html {
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  color: #000000;
  background-color: #f5f5f5;
  background-image: url("../images/back.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

a {
  color: #000;
  text-decoration: none;
}

a[target=_blank] {
  color: #760051;
  -webkit-text-decoration: underline #760051;
          text-decoration: underline #760051;
}

img {
  vertical-align: top;
}

.m0 {
  margin: 0 !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.justify-evenly {
  justify-content: space-evenly;
}

.gap60 {
  gap: 60px;
}

.fs-18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .fs-18 {
    font-size: 1.6rem;
  }
}

.fw-medium {
  font-weight: 500;
}

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

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

.lh-200 {
  line-height: 2;
}

.bg-white {
  background-color: #fff;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.contain-paint {
  contain: paint;
}

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

/* ==========================================================================
   Scroll Animation
   ========================================================================== */
/* アニメーションの共通初期状態（JSが読み込まれていない場合も考慮し、クラス名で制御） */
[class*=js-fade] {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 表示状態（JSで .is-show クラスが付与された時） */
.is-show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(0, 0) !important;
}

/* 種類：その場でフェードイン */
.js-fade {
  transform: none;
}

/* 種類：左から右へフェードイン（左側にずらしておく） */
.js-fade-right {
  transform: translateX(40px);
}

/* 種類：下から上へフェードイン（下側にずらしておく） */
.js-fade-bottom {
  transform: translateY(40px);
}

/* 種類：右から左へフェードイン（右側にずらしておく） */
.js-fade-left {
  transform: translateX(-40px);
}

/* 遅延用クラス（順番に表示したい場合に使用） */
.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.6s;
}

.delay-3 {
  transition-delay: 0.9s;
}

.delay-4 {
  transition-delay: 1.2s;
}

.delay-5 {
  transition-delay: 1.5s;
}

.delay-6 {
  transition-delay: 1.8s;
}

.delay-7 {
  transition-delay: 2.1s;
}

.delay-8 {
  transition-delay: 2.4s;
}

.delay-9 {
  transition-delay: 2.7s;
}

.delay-10 {
  transition-delay: 3s;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
}
.site-header h1 {
  padding: 10px;
  font-size: 1.2rem;
  color: #760051;
  text-align: center;
  border-bottom: 1px solid #760051;
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
@media screen and (max-width: 1500px) {
  .site-header .header-inner {
    padding: 10px;
  }
}
.site-header .logo img {
  width: 79px;
  height: 81px;
}
@media screen and (max-width: 1500px) {
  .site-header .logo img {
    width: 40px;
    height: auto;
  }
}
.site-header .global-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  font-weight: 500;
}
@media screen and (max-width: 1500px) {
  .site-header .global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 120px 50px 50px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.4s;
    z-index: 999;
    visibility: hidden;
  }
  .site-header .global-nav.is-open {
    right: 0;
    visibility: visible;
    transition-delay: 0s;
  }
  .site-header .global-nav a {
    padding: 15px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  .site-header .global-nav .nav-entry {
    display: inline-flex !important;
    margin-top: 30px;
    flex-shrink: 0;
    width: fit-content;
    padding: 10px 40px;
    border-bottom: none;
  }
}
.site-header .entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 40px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 0.12em;
  background-color: #760051 !important;
  border-radius: 80px;
}
@media screen and (max-width: 1500px) {
  .site-header .entry-btn.header-entry {
    display: none;
  }
}

body.is-nav-open {
  overflow: hidden;
}

.hamburger-btn {
  display: none;
}
@media screen and (max-width: 1500px) {
  .hamburger-btn {
    display: block;
    position: relative;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    padding: 0;
  }
  .hamburger-btn span {
    position: absolute;
    left: 7px;
    width: 30px;
    height: 2px;
    background-color: #760051;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  }
  .hamburger-btn span:nth-child(1) {
    top: 12px;
  }
  .hamburger-btn span:nth-child(2) {
    top: 21px;
  }
  .hamburger-btn span:nth-child(3) {
    top: 30px;
  }
  .hamburger-btn.is-open span {
    background-color: #333;
  }
  .hamburger-btn.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger-btn.is-open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.header-inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* 画面いっぱいにトリミング表示 */
  z-index: 1;
}

/* 暗めのフィルター（テキストを読みやすくする） */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* 濃さは調整 */
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height, 0px);
}
.hero-overlay h1 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 0 20px;
  font-size: 5.2rem;
  color: #fff;
  text-align: center;
  z-index: 3;
}
@media screen and (max-width: 960px) {
  .hero-overlay h1 {
    font-size: clamp(2.1rem, 5vw, 5.2rem);
  }
}

.section-block {
  margin-top: 80px;
}
.section-block .ttl-en {
  font-family: "Forum", serif;
  font-size: 1.5rem;
  color: #70004d;
}
.section-block .ttl {
  margin-top: 0 !important;
  font-size: 4.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section-block .ttl {
    font-size: 2.8rem;
  }
}
.section-block h2 {
  margin-top: 40px;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section-block h2 {
    font-size: 2.4rem;
  }
}
.section-block .subttl {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 700;
}
.section-block .desc {
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .section-block .sp-btn-center {
    text-align: center;
  }
}
.section-block .staff-desc {
  margin-top: 80px;
  margin-bottom: 60px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-block .staff-desc {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
.section-block .profile {
  max-width: 300px;
  width: 100%;
}
.section-block .cards {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  font-weight: 500;
}
.section-block .cards.three {
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.section-block .cards.three .card {
  width: 31%; /* 3カラムを維持して縮小 */
  min-width: 260px; /* テキスト枠の幅程度を限界値にする */
  max-width: 300px;
  flex: 1 1 auto;
}
.section-block .cards.three .card img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 860px) {
  .section-block .cards.three .card {
    /* 3枚並ぶのが限界になったら1列へ */
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.section-block .cards .card {
  position: relative;
}
.section-block .cards .card .location {
  position: absolute;
  top: 20px;
  left: -20px;
  padding: 5px 10px;
  font-size: 1.2rem;
  background-color: #fff;
  border: 1px solid #760051;
}
.section-block .cards .card .country {
  position: absolute;
  top: 20px;
  left: -20px;
}
.section-block .cards .person-exp {
  position: relative;
  margin-top: -80px;
  margin-right: 0;
  margin-left: auto;
  width: calc(100% - 40px);
  padding: 15px;
  background-color: #fff;
  z-index: 20;
}
.section-block .cards .position {
  font-size: 1.2rem;
}
.section-block .cards .name {
  margin-top: 5px;
  margin-bottom: 15px;
}
.section-block .cards .person-card-desc {
  font-size: 1.4rem;
  line-height: 1.8;
}
.section-block.maker {
  background-image: url(../images/maker-back.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
  padding-top: 0.1px;
}
.section-block.maker .white-panel {
  margin-left: auto;
  background-image: url(../images/maker-title-back.png);
}
.section-block.communicator {
  background-image: url(../images/communicator-back.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
  padding-top: 0.1px;
}
.section-block.communicator .white-panel {
  background-image: url(../images/communicator-title-back.png);
}
.section-block.benefit {
  background-image: url(../images/benefit-back.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
  padding-top: 0.1px;
}
.section-block.benefit .white-panel {
  max-width: 750px;
  width: 100%;
}
.section-block.recruit {
  background-image: url(../images/recruit-back.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
  padding-top: 0.1px;
}
.section-block.recruit .white-panel {
  max-width: 750px;
  width: 100%;
  margin-left: auto;
}
.section-block .white-panel {
  position: relative;
  margin-top: 180px;
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .section-block .white-panel {
    margin-top: 80px;
    padding: 40px 20px;
    background-size: 100% auto;
    background-position: top 0 right 0;
  }
}
.section-block .white-panel {
  max-width: 1350px;
  width: 100%;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.95);
  background-repeat: no-repeat;
  background-position: top 0 right 80px;
  background-size: 814px 403px;
}
.section-block .white-panel .desc {
  margin-top: 40px;
}
.section-block .white-panel .swiper-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}
.section-block .white-panel .swiper-controls .swiper-navigation {
  display: flex;
  gap: 20px;
}
.section-block .white-panel .swiper-controls .swiper-navigation .swiper-button-prev,
.section-block .white-panel .swiper-controls .swiper-navigation .swiper-button-next {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-top: 0;
  background-color: #760051;
  border-radius: 50%;
  transition: opacity 0.3s;
  z-index: 10;
}
.section-block .white-panel .swiper-controls .swiper-navigation .swiper-button-prev::after,
.section-block .white-panel .swiper-controls .swiper-navigation .swiper-button-next::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.section-block .white-panel .swiper-controls .swiper-navigation .swiper-button-prev:hover,
.section-block .white-panel .swiper-controls .swiper-navigation .swiper-button-next:hover {
  opacity: 0.8;
}
.section-block .white-panel .swiper-controls .swiper-navigation .swiper-button-prev.swiper-button-disabled,
.section-block .white-panel .swiper-controls .swiper-navigation .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: auto;
}
@media screen and (max-width: 767px) {
  .section-block .white-panel .swiper-controls .swiper-navigation .swiper-button-prev,
  .section-block .white-panel .swiper-controls .swiper-navigation .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.section-block .white-panel .swiper-controls .swiper-navigation .swiper-button-prev::after {
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .section-block .white-panel .swiper-controls .more-btn {
    padding: 10px 30px;
  }
}
.section-block .white-panel .cards.swiper {
  display: block;
  margin-top: 30px;
  margin-right: 0;
  position: relative;
  overflow: hidden;
  padding-left: 20px;
  margin-left: -20px;
  padding-bottom: 50px;
}
.section-block .white-panel .cards.swiper .swiper-slide {
  width: 28%; /* ウィンドウ幅に合わせて縮小 */
  max-width: 320px; /* あまり大きくなりすぎないように制限 */
}
@media screen and (max-width: 1024px) {
  .section-block .white-panel .cards.swiper .swiper-slide {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .section-block .white-panel .cards.swiper .swiper-slide {
    width: 75%;
  }
}
.section-block .white-panel .cards.swiper .swiper-slide {
  height: auto;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  min-width: 0 !important;
}
.section-block .white-panel .cards.swiper .swiper-slide > img {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  display: block;
}
.section-block .white-panel .cards.swiper .swiper-slide .person-exp {
  width: calc(100% - 40px);
  word-break: break-all;
}
.section-block .white-panel .cards.swiper .swiper-wrapper {
  display: flex;
  will-change: transform; /* GPUアクセラレーションを有効化 */
}
.section-block .white-panel .cards.swiper .swiper-scrollbar {
  bottom: 10px; /* padding-bottom の内側に配置 */
  left: 20px;
  width: calc(100% - 20px);
  height: 4px;
  background-color: rgba(118, 0, 81, 0.2);
  border-radius: 2px;
}
.section-block .white-panel .cards.swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #760051;
  border-radius: 2px;
}
.section-block .white-panel .benefit-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}
.section-block .white-panel .benefit-list li {
  text-align: center;
  white-space: nowrap;
}
.section-block .white-panel .benefit-list li .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
  margin-bottom: 10px;
}
.section-block .white-panel .benefit-list li img {
  display: block;
}
@media screen and (max-width: 540px) {
  .section-block .white-panel .benefit-list li img {
    max-width: 100%;
    height: auto;
  }
}

.more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  background-color: #760051;
  border-radius: 80px;
}

.site-footer {
  margin-top: 80px;
}

.footer-inner .footer-entry {
  position: relative;
}
.footer-inner .footer-entry img {
  display: block;
  max-width: 1259px;
  width: 100%;
  min-height: 320px;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .footer-inner .footer-entry img {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
  }
}
.footer-inner .footer-entry .footer-entry-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer-inner .footer-entry .footer-entry-txt {
    /* 画面幅に合わせてフォントサイズを縮小（最小1.6rem, 最大5.5vw） */
    font-size: clamp(1.8rem, 5.5vw, 2.8rem);
    width: 100%;
    padding: 0 20px;
  }
}
.footer-inner .footer-entry .footer-entry-txt .more-btn {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .footer-inner .footer-entry .footer-entry-txt .more-btn {
    padding: 15px 40px;
  }
}

.footer-logo {
  margin: 80px auto;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 20px;
  border-top: 1px solid #000;
}
@media screen and (max-width: 420px) {
  .footer-bottom {
    flex-direction: column-reverse;
  }
}
.footer-bottom .copyright {
  font-size: 1.2rem;
  line-height: 1;
}

.footer-subnav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-subnav a {
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}
.footer-subnav img {
  display: block;
}

.inner {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.message-inner {
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .message-inner {
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.message-inner .message {
  flex: 0 0 530px;
}
.message-inner .message-photo {
  flex: 1 1 auto;
  max-width: 630px;
  width: 100%;
  min-width: 0; /* Flexbox内で縮小可能にする */
  height: auto;
}

.message-sign {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

/* sub-page */
.page-hero {
  margin-top: var(--header-height, 120px);
  padding-top: 0;
  height: 300px; /* 背景画像が見えるように高さを確保 */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.page-hero .ttl-en {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(118, 0, 81, 0.5);
}
.page-hero h1 {
  font-size: 4.8rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(118, 0, 81, 0.5);
}
@media screen and (max-width: 767px) {
  .page-hero h1 {
    font-size: 2.4rem;
  }
}
.page-hero.message-header {
  background-image: url(../images/message-header.jpg);
}
.page-hero.communicator-header {
  background-image: url(../images/communicator-header.jpg);
}
.page-hero.maker-header {
  background-image: url(../images/maker-header.jpg);
}
.page-hero.seller-header {
  background-image: url(../images/seller-header.jpg);
}
.page-hero.recruit-header {
  background-image: url(../images/recruit-header.jpg);
}
.page-hero.company-header {
  background-image: url(../images/company-header.jpg);
}
.page-hero.entry-header {
  background-image: url(../images/entry-header.jpg);
}

.breadcrumb {
  max-width: 1260px;
  width: 100%;
  margin: 10px auto 0;
  padding: 0 10px;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumb ol li {
  display: flex;
}
.breadcrumb ol li:not(:first-child)::before {
  content: "/";
  margin: 0 10px;
}

/* メッセージ */
.message-page {
  display: flex;
  align-items: center;
  gap: clamp(20px, 5vw, 60px);
}
.message-page:not(:first-child) {
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .message-page:not(:first-child) {
    margin-top: 60px;
  }
}
.message-page.reverse {
  flex-direction: row-reverse;
}
.message-page .message-txt {
  flex: 1 1 660px;
  min-width: 0;
}
.message-page .message-txt h2 {
  margin-top: 0;
}
@media screen and (max-width: 1200px) {
  .message-page.reverse, .message-page.ml-window {
    flex-direction: column !important;
    gap: 30px;
  }
  .message-page.reverse .message-txt, .message-page.ml-window .message-txt {
    flex-basis: auto;
    text-align: center;
  }
}
@media screen and (max-width: 960px) {
  .message-page {
    flex-direction: column !important;
    gap: 30px;
  }
  .message-page.reverse {
    flex-direction: column !important;
  }
  .message-page .message-txt {
    flex-basis: auto;
    text-align: center;
  }
}

.message-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 169px;
  height: 163px;
  margin: 0 auto 40px;
  background-image: url(../images/message-title-back.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.message-title h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #760051;
}

@media screen and (min-width: 961px) {
  .mr-window {
    margin-right: calc(50% - 50vw);
  }
}

@media screen and (min-width: 961px) {
  .ml-window {
    margin-left: calc(50% - 50vw);
  }
}

.shrink-img {
  flex: 1 1 auto;
  max-width: 100%;
  height: auto;
  min-width: 0;
  object-fit: cover;
}

.communicator-page {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .communicator-page {
    margin-top: 30px;
  }
}

.communicator-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  contain: paint;
}
.communicator-list li {
  display: grid;
  grid-template-columns: minmax(0, 580px) auto;
  align-items: center;
  gap: clamp(20px, 5vw, 60px);
}
.communicator-list li > img {
  width: 100%;
  height: auto;
  display: block;
}
.communicator-list li .communicator-desc {
  min-width: 0;
}
.communicator-list li .communicator-desc h2 {
  margin-top: 20px;
  font-size: 2.4rem;
}
.communicator-list li .communicator-desc .brewery {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 30px;
}
.communicator-list li .communicator-desc .name {
  font-size: 2rem;
  font-weight: 700;
}
.communicator-list li.reverse {
  grid-template-columns: auto minmax(0, 580px);
}
.communicator-list li.reverse > :first-child {
  order: 1;
}
.communicator-list li .detail-desc {
  font-weight: 500;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  .communicator-list li {
    gap: 30px;
  }
  .communicator-list li .communicator-desc h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .communicator-list li {
    grid-template-columns: 1fr;
  }
  .communicator-list li.reverse {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 540px) {
  .communicator-list li .more-btn {
    padding: 15px 40px;
  }
}

.detail-youtube {
  position: relative;
  width: 100%;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .detail-youtube {
    margin-top: 40px;
  }
}
.detail-youtube iframe {
  width: 100%;
  height: 780px;
}
@media screen and (max-width: 1400px) {
  .detail-youtube iframe {
    height: auto;
    aspect-ratio: 16/9;
  }
}

.detail-gmap {
  position: relative;
  width: 100vw;
  margin-top: 120px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .detail-gmap {
    margin-top: 40px;
  }
}
.detail-gmap iframe {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 767px) {
  .detail-gmap iframe {
    height: 400px;
  }
}

.detail-cont {
  display: grid;
  grid-template-columns: 1fr min(580px, 50%);
  align-items: flex-start;
  gap: clamp(20px, 5vw, 60px);
  margin-top: 120px;
}
.detail-cont p {
  min-width: 0;
  font-weight: 500;
  line-height: 2;
}
.detail-cont > img {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .detail-cont {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .detail-cont > img {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }
  .detail-cont p {
    width: 100%;
  }
}

.other-profiles {
  width: 100vw;
  margin-top: 120px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 80px 0;
  background-color: #fff;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .other-profiles {
    margin-top: 60px;
    padding: 40px 0;
  }
}
.other-profiles .other-profiles-swiper-wrapper {
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .other-profiles .other-profiles-swiper-wrapper {
    margin-top: 30px;
  }
}
.other-profiles .other-profiles-swiper-wrapper.maker-swiper-height .cards.swiper {
  padding-bottom: 0;
}
.other-profiles .other-profiles-swiper-wrapper.maker-swiper-height .swiper-wrapper {
  align-items: flex-start; /* スライドの高さをコンテンツに合わせ、引き伸ばしを防止 */
}
.other-profiles .other-profiles-swiper-wrapper.maker-swiper-height .swiper-slide {
  height: auto; /* 高さを自動調整 */
}
.other-profiles .other-profiles-swiper-wrapper.maker-swiper-height .swiper-button-prev,
.other-profiles .other-profiles-swiper-wrapper.maker-swiper-height .swiper-button-next {
  top: 250px; /* 画像高さ 500px の中央 */
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .other-profiles .other-profiles-swiper-wrapper.maker-swiper-height .swiper-button-prev,
  .other-profiles .other-profiles-swiper-wrapper.maker-swiper-height .swiper-button-next {
    /* スマホ時: 画像のアスペクト比 (500/360) を考慮した中央位置 */
    top: calc((100vw - 40px) * 0.75 * 1.388 / 2);
  }
}
.other-profiles .other-profiles-swiper-wrapper.maker-swiper-height .desc {
  margin-bottom: 0;
}
.other-profiles .other-profiles-swiper-wrapper.maker-swiper-height .desc .name {
  margin-bottom: 0;
}
.other-profiles .other-profiles-swiper-wrapper .swiper-button-prev,
.other-profiles .other-profiles-swiper-wrapper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #760051;
  border-radius: 50%;
  transition: opacity 0.3s;
  z-index: 10;
}
.other-profiles .other-profiles-swiper-wrapper .swiper-button-prev::after,
.other-profiles .other-profiles-swiper-wrapper .swiper-button-next::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.other-profiles .other-profiles-swiper-wrapper .swiper-button-prev:hover,
.other-profiles .other-profiles-swiper-wrapper .swiper-button-next:hover {
  opacity: 0.8;
}
.other-profiles .other-profiles-swiper-wrapper .swiper-button-prev.swiper-button-disabled,
.other-profiles .other-profiles-swiper-wrapper .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .other-profiles .other-profiles-swiper-wrapper .swiper-button-prev,
  .other-profiles .other-profiles-swiper-wrapper .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.other-profiles .other-profiles-swiper-wrapper .swiper-button-prev {
  left: 0;
  margin-left: -30px;
}
.other-profiles .other-profiles-swiper-wrapper .swiper-button-prev::after {
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .other-profiles .other-profiles-swiper-wrapper .swiper-button-prev {
    margin-left: -10px;
  }
}
.other-profiles .other-profiles-swiper-wrapper .swiper-button-next {
  right: 0;
  margin-right: -30px;
}
@media screen and (max-width: 767px) {
  .other-profiles .other-profiles-swiper-wrapper .swiper-button-next {
    margin-right: -10px;
  }
}
.other-profiles .js-other-profiles-swiper {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
}
.other-profiles .js-other-profiles-swiper .swiper-slide {
  height: auto;
  max-width: 100%;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.other-profiles .js-other-profiles-swiper .swiper-slide .other-person-img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .other-profiles .js-other-profiles-swiper {
    margin: 0;
  }
}
.other-profiles .other-profile {
  position: relative;
}
.other-profiles .other-profile .country-flag {
  position: absolute;
  top: 10px;
  right: 10px;
}
.other-profiles .desc {
  margin-top: 10px;
  font-weight: 700;
}
.other-profiles .desc .position {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .other-profiles .desc .position {
    font-size: 1.4rem;
  }
}
.other-profiles .desc .name {
  margin: 0;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .other-profiles .desc .name {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .sp-mt20 {
    margin-top: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-mt40 {
    margin-top: 40px !important;
  }
}

.maker-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px 40px; /* 縦の隙間 60px, 横の隙間 40px */
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .maker-list {
    margin-top: 40px;
    gap: 40px;
  }
}
.maker-list li {
  flex: 0 1 calc((100% - 40px) / 2); /* 2カラムで縮小を許可 */
  max-width: 580px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .maker-list li {
    flex: 0 1 100%; /* 960px以下で1カラム */
    max-width: 600px;
    margin: 0 auto;
  }
}
.maker-list li > img {
  width: 100%;
  height: auto;
  display: block;
}
.maker-list li .position {
  margin-top: 20px;
  font-weight: 500;
}
.maker-list li .name {
  margin-top: 10px;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .maker-list li .name {
    font-size: 2rem;
  }
}
.maker-list li .desc {
  margin-top: 20px;
  line-height: 1.5;
}
.maker-list .maker-info-wrap {
  position: relative;
}
.maker-list .maker-info-wrap .sns-link {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: 0;
  transform: translateY(-50%);
}

.maker-table {
  margin-top: 80px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 80px 20px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .maker-table {
    padding: 40px 20px; /* 左右に20pxの余白 */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.maker-table table {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .maker-table table {
    min-width: 600px; /* 必要最低限の幅を確保して横スクロールを発生させる */
    width: 100%;
  }
}
.maker-table thead th {
  background-color: #760051;
  color: #fff;
  text-align: center;
  padding: 18px 20px;
  font-weight: 500;
  border-right: 2px solid #fff;
  white-space: nowrap;
}
.maker-table thead th:nth-child(1) {
  width: 15%;
}
@media screen and (max-width: 767px) {
  .maker-table thead th:nth-child(1) {
    width: 80px;
    min-width: 80px;
  }
}
.maker-table thead th:nth-child(2) {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .maker-table thead th:nth-child(2) {
    width: auto;
  }
}
.maker-table thead th:nth-child(3) {
  width: 30%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .maker-table thead th:nth-child(3) {
    width: 180px;
    min-width: 180px;
  }
}
.maker-table thead th:last-child {
  border-right: none;
}
.maker-table tbody tr {
  border-bottom: 1px dotted #999;
}
.maker-table tbody tr:nth-child(2n) {
  background-color: #fffafd;
}
.maker-table tbody td {
  padding: 22px 20px;
  font-weight: 500;
  color: #333;
}
.maker-table tbody td:nth-child(1) {
  width: 15%;
}
@media screen and (max-width: 767px) {
  .maker-table tbody td:nth-child(1) {
    width: 80px;
    min-width: 80px;
  }
}
.maker-table tbody td:nth-child(2) {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .maker-table tbody td:nth-child(2) {
    width: auto;
  }
}
.maker-table tbody td:nth-child(3) {
  width: 30%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .maker-table tbody td:nth-child(3) {
    width: 150px;
    min-width: 150px;
  }
}

.maker-summery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  gap: 60px;
}
@media screen and (max-width: 1060px) {
  .maker-summery {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .maker-summery {
    gap: 30px;
  }
}
.maker-summery > img {
  max-width: 580px;
  width: 100%;
  height: auto;
}
.maker-summery .maker-summery-txt h2 {
  margin-top: 0;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .maker-summery .maker-summery-txt h2 {
    font-size: 2rem;
  }
}
.maker-summery .maker-summery-txt .position {
  margin-top: 40px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .maker-summery .maker-summery-txt .position {
    margin-top: 30px;
  }
}
.maker-summery .maker-summery-txt .name {
  margin-top: 10px;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .maker-summery .maker-summery-txt .name {
    font-size: 2rem;
  }
}
.maker-summery .maker-summery-txt .desc {
  margin-top: 20px;
  font-weight: 500;
}

.maker-detail {
  display: flex;
  flex-direction: column;
  gap: 30px 80px;
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .maker-detail {
    align-items: center;
  }
}
.maker-detail h3 {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #760051;
}
@media screen and (max-width: 767px) {
  .maker-detail h3 {
    margin-bottom: 20px;
    font-size: 2.1rem;
  }
}
.maker-detail h3:not(:first-of-type) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .maker-detail h3:not(:first-of-type) {
    margin-top: 40px;
  }
}
.maker-detail img.shrink-img {
  flex: 1;
  height: auto;
  object-fit: cover;
  min-width: 0;
}
.maker-detail .maker-detail-content {
  padding: 40px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .maker-detail .maker-detail-content {
    padding: 20px;
  }
}
.maker-detail .maker-detail-content:nth-child(odd) {
  background-color: #fffafd;
}

.sns-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 16px;
  width: 59px;
  height: 59px;
  background-color: #fff;
  border-radius: 60px;
}

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

.seller-list li {
  display: flex;
  align-items: center;
  gap: 20px 60px;
}
@media screen and (max-width: 1000px) {
  .seller-list li {
    flex-direction: column;
  }
}
.seller-list li:not(:first-of-type) {
  margin-top: 80px;
}
.seller-list li.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .seller-list li.reverse {
    flex-direction: column;
  }
}
.seller-list li .shrink-img {
  flex: 1;
  max-width: 580px;
  width: 100%;
  min-width: 0;
}
.seller-list li .seller-desc {
  flex: 1;
  max-width: 580px;
  width: 100%;
  min-width: 0;
}
.seller-list li h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .seller-list li h2 {
    font-size: 2rem;
  }
}
.seller-list li .position {
  margin-top: 60px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .seller-list li .position {
    margin-top: 30px;
  }
}
.seller-list li .name {
  margin-top: 10px;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .seller-list li .name {
    font-size: 2rem;
  }
}
.seller-list li .shrink-img {
  max-width: 580px;
}

.seller-page .seller-header-img {
  max-width: 1260px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .seller-page .seller-header-img {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}
.seller-page .seller-header-wrap {
  display: inline-flex;
  align-items: flex-end;
  width: calc(100% - 80px);
  transform: translate(80px, -95px);
}
@media screen and (max-width: 1000px) {
  .seller-page .seller-header-wrap {
    width: 100%;
    transform: translate(0, -50px);
  }
}
@media screen and (max-width: 767px) {
  .seller-page .seller-header-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
.seller-page .seller-header-name {
  min-width: 355px;
  padding: 40px;
  background-color: #760051;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .seller-page .seller-header-name {
    min-width: initial;
    padding: 20px 20px 30px;
  }
}
.seller-page .seller-header-name h2 {
  display: inline-block;
  margin-top: 0;
  padding: 0 10px;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  color: #760051;
}
.seller-page .seller-header-name .name {
  margin: 10px 0;
  font-size: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .seller-page .seller-header-name .name {
    margin: 5px 0;
    font-size: 2.4rem;
  }
}
.seller-page .seller-header-name .join {
  font-size: 1.4rem;
  font-weight: 500;
}
.seller-page .work-detail {
  max-width: 820px;
  padding: 20px 30px;
  background-color: #ebdfe7;
  border: 1px solid #760051;
  transform: translate(-70px, 60px);
}
@media screen and (max-width: 1000px) {
  .seller-page .work-detail {
    width: calc(100% + 120px);
    transform: translate(0, 0);
    margin-left: -100px;
    margin-bottom: -40px;
  }
}
@media screen and (max-width: 767px) {
  .seller-page .work-detail {
    width: calc(100% - 20px);
    margin-top: -20px;
    margin-left: 20px;
  }
}
.seller-page .work-detail h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #760051;
}
.seller-page .work-detail h3::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  margin: 10px 0;
  background-color: #760051;
}
.seller-page .work-detail .desc {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .seller-page .work-detail .desc {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.seller-page .seller-q {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  line-height: 1;
  font-size: 2.4rem;
  font-weight: 700;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .seller-page .seller-q {
    padding: 10px 20px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.seller-page .seller-q::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background-color: #000;
}
.seller-page .seller-a {
  margin-top: 30px;
  font-weight: 500;
}
.seller-page .seller-detail-wrap {
  display: flex;
  align-items: flex-start;
  gap: min(6.3492063492vw, 80px);
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .seller-page .seller-detail-wrap {
    flex-direction: column;
    gap: 40px;
  }
}
.seller-page .seller-detail-wrap.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .seller-page .seller-detail-wrap.reverse {
    flex-direction: column;
  }
}
.seller-page .seller-detail-wrap > img {
  height: auto;
  flex-shrink: 0;
}
.seller-page .seller-detail-wrap > img[width="462"] {
  width: 36.6666666667vw;
  max-width: 462px;
}
.seller-page .seller-detail-wrap > img[width="600"] {
  width: 47.619047619vw;
  max-width: 600px;
}
@media screen and (max-width: 1000px) {
  .seller-page .seller-detail-wrap > img {
    display: block;
    width: 100% !important;
    max-width: inherit;
    margin: 0 auto;
  }
}
.seller-page .seller-detail-wrap .seller-detail-desc {
  flex: 1;
  min-width: 0;
}
.seller-page .seller-detail-wrap .notice {
  font-size: 1.4rem;
  font-weight: 500;
  color: #a0a0a0;
}
.seller-page .seller-schedule {
  margin-top: 80px;
}
.seller-page .seller-schedule-detail {
  margin-top: 60px;
  padding: 70px 80px 60px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .seller-page .seller-schedule-detail {
    padding: 50px 30px 40px 30px;
  }
}
.seller-page .seller-schedule-detail li {
  display: flex;
}
.seller-page .seller-schedule-detail li .time {
  width: 100px;
  margin-top: -8px;
  font-family: "Forum", serif;
  font-size: 2rem;
  color: #760051;
}
@media screen and (max-width: 767px) {
  .seller-page .seller-schedule-detail li .time {
    width: 70px;
  }
}
.seller-page .seller-schedule-detail li .job {
  position: relative;
  width: calc(100% - 100px);
  padding-bottom: 60px;
  padding-left: 60px;
  font-weight: 500;
  border-left: 1px solid #760051;
}
@media screen and (max-width: 767px) {
  .seller-page .seller-schedule-detail li .job {
    width: calc(100% - 70px);
    padding-left: 30px;
  }
}
.seller-page .seller-schedule-detail li .job::before {
  position: absolute;
  top: 0;
  left: -8px;
  content: "";
  width: 16px;
  height: 16px;
  background-color: #760051;
  border-radius: 16px;
}
.seller-page .seller-schedule-detail li .job h4 {
  margin-top: -8px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .seller-page .seller-schedule-detail li .job h4 {
    margin-top: -7px;
    font-size: 1.8rem;
  }
}
.seller-page .seller-schedule-detail li:last-child .job {
  padding-bottom: 0;
  border-left: none;
}

.recruit-subttl {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 120px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .recruit-subttl {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 2.4rem;
  }
}

.recruit-desc {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
  line-height: 2;
}

.recruit-page {
  margin-top: 80px;
}
.recruit-page .entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 0.12em;
  background-color: #760051 !important;
  border-radius: 80px;
}

.recruit-content-header {
  margin-top: 60px;
  font-weight: 500;
  text-align: center;
  line-height: 2;
}
.recruit-content-header h3 {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 700;
}
.recruit-content-header a {
  color: #760051;
  text-decoration: underline;
}
.recruit-content-header a[href^="tel:"] {
  font-size: 2.1rem;
  color: #000;
  text-decoration: none;
}

.recruitment {
  padding: 80px 0;
}
.recruitment .preparing {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 360px;
  margin-top: 80px;
  font-size: 2rem;
  font-weight: 500;
  background-color: #ddd;
}

.recruit-deco {
  position: relative;
  padding-bottom: 280px;
  contain: paint;
}
.recruit-deco .deco01 {
  position: absolute;
}
.recruit-deco .deco02 {
  position: absolute;
}
.recruit-deco .deco03 {
  position: absolute;
}
.recruit-deco .deco01 {
  bottom: 8%;
  left: calc(50% - 550px);
}
@media screen and (max-width: 1000px) {
  .recruit-deco .deco01 {
    bottom: 0;
    left: calc(50% - 450px);
  }
}
.recruit-deco .deco02 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.recruit-deco .deco03 {
  bottom: 44%;
  right: calc(50% - 600px);
}
@media screen and (max-width: 1000px) {
  .recruit-deco .deco03 {
    bottom: 0;
    right: calc(50% - 480px);
  }
}

.recruit-table {
  max-width: 880px;
  width: 100%;
  margin: 60px auto 0;
}
.recruit-table table {
  max-width: 880px;
  width: 100%;
}
.recruit-table tr {
  border-bottom: 1px dotted #000;
}
.recruit-table tr:nth-of-type(2n) {
  background-color: #fffafd;
}
@media screen and (max-width: 767px) {
  .recruit-table tr:nth-of-type(2n) {
    background-color: transparent;
  }
}
.recruit-table th,
.recruit-table td {
  padding: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .recruit-table th,
  .recruit-table td {
    display: block;
    width: 100%;
  }
}
.recruit-table th {
  width: 180px;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .recruit-table th {
    width: 100%;
    padding: 10px 20px;
    background-color: #760051;
    color: #fff;
    text-align: center;
    white-space: normal;
  }
}
.recruit-table td a {
  color: #760051;
  text-decoration: underline;
}

.recruit-section-img {
  max-width: 1727px;
  width: 100%;
  height: auto;
}

.recruit-flow-text {
  margin-top: 80px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .recruit-flow-text {
    margin-top: 40px;
  }
}

.recruit-flow {
  max-width: 840px;
  width: 100%;
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.recruit-flow .recruit-flow-list {
  list-style: none;
}
.recruit-flow .recruit-flow-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px 20px 30px 40px;
  background-color: #f3eef1;
}
@media screen and (max-width: 767px) {
  .recruit-flow .recruit-flow-list li {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
}
.recruit-flow .recruit-flow-list li::before {
  position: absolute;
  top: 50%;
  left: 63px;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #760051;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .recruit-flow .recruit-flow-list li::before {
    content: none;
  }
}
.recruit-flow .recruit-flow-list li:nth-of-type(odd) {
  background-color: transparent;
}
.recruit-flow .recruit-flow-list li:last-child {
  border-left: none;
}
.recruit-flow .recruit-flow-list li:last-child::before {
  content: none;
}
.recruit-flow .recruit-flow-list li .number {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  font-family: "Forum", serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  background-color: #760051;
  border-radius: 46px;
  z-index: 20;
}
.recruit-flow .recruit-flow-list li .img-wrap {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
}
.recruit-flow .recruit-flow-list li h3 {
  width: 280px;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .recruit-flow .recruit-flow-list li h3 {
    width: 100%;
  }
}
.recruit-flow .recruit-flow-list li h3 span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}
.recruit-flow .recruit-flow-list li .desc {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .recruit-flow .recruit-flow-list li .desc {
    width: 100%;
    margin-top: -20px;
  }
}

.recruit-training-wrap {
  display: flex;
  align-items: center;
  gap: 30px 80px;
  contain: paint;
}
@media screen and (max-width: 1200px) {
  .recruit-training-wrap {
    gap: 30px 60px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-training-wrap {
    flex-direction: column !important;
  }
}
.recruit-training-wrap.reverse {
  flex-direction: row-reverse;
}
.recruit-training-wrap > img {
  max-width: 600px;
  width: 47.619047619vw;
  height: auto;
}
@media screen and (max-width: 900px) {
  .recruit-training-wrap > img {
    width: 100%;
  }
}
.recruit-training-wrap .recruit-training h3 {
  margin-bottom: 20px;
  font-size: 2.4rem;
}

.faq-container {
  max-width: 880px;
  margin: 80px auto 0;
}
.faq-container .faq-item {
  background-color: #fffafd;
}
.faq-container .faq-item:not(:first-of-type) {
  margin-top: 20px;
}
.faq-container .faq-item summary {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 24px 20px;
  cursor: pointer;
  list-style: none; /* デフォルトの矢印を消す */
}
.faq-container .faq-item summary::-webkit-details-marker {
  display: none; /* Safari用 */
}
.faq-container .faq-item summary .faq-ttl {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  font-size: 1.8rem;
  font-weight: 700;
}
.faq-container .faq-item summary .faq-ttl::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  font-family: "Forum", serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: #fff;
  background-color: #760051;
  border-radius: 46px;
}
.faq-container .faq-item summary .icon {
  position: relative;
  width: 20px;
  height: 20px;
}
.faq-container .faq-item summary .icon::before, .faq-container .faq-item summary .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #760051;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.faq-container .faq-item summary .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-container .faq-item[open] summary .icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-container .faq-item .faq-content {
  display: flex;
  gap: 20px;
  margin: 0 20px 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 500;
  line-height: 1.7;
  border-top: 1px solid #c9c9c9;
}
.faq-container .faq-item .faq-content::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  font-family: "Forum", serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: #760051;
  background-color: #fff;
  border: 1px solid #760051;
  border-radius: 46px;
}

.company-page {
  margin-top: 80px;
}

.company {
  padding: 80px 0;
}

.company-about-wrap {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-direction: row-reverse;
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .company-about-wrap {
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .company-about-wrap {
    margin-top: 40px;
  }
}
.company-about-wrap > img {
  max-width: 550px;
  width: 43.6507936508vw;
  height: auto;
}
@media screen and (max-width: 960px) {
  .company-about-wrap > img {
    width: 100%;
  }
}
.company-about-wrap .company-about {
  width: 50vw;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .company-about-wrap .company-about {
    width: 100%;
  }
}
.company-about-wrap .company-about h3 {
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .company-about-wrap .company-about h3 {
    font-size: 2.4rem;
  }
}

.company-mission-list {
  counter-reset: mission-number;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 120px;
  list-style: none;
}
@media screen and (max-width: 900px) {
  .company-mission-list {
    margin-top: 80px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .company-mission-list {
    margin-top: 40px;
  }
}
.company-mission-list > li {
  counter-increment: mission-number;
  background-color: #fffafd;
}
.company-mission-list > li:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.company-mission-list h3 {
  display: flex;
  align-items: center;
  font-size: 3rem;
  font-weight: 700;
  background-color: #fff;
  border-bottom: 1px solid #760051;
}
@media screen and (max-width: 767px) {
  .company-mission-list h3 {
    font-size: 2.4rem;
  }
}
.company-mission-list h3::before {
  content: counter(mission-number);
  padding: 10px 30px;
  font-family: "Forum", serif;
  font-size: 6.3rem;
  font-weight: 300;
  color: #760051;
}
@media screen and (max-width: 767px) {
  .company-mission-list h3::before {
    padding: 5px 20px;
    font-size: 4.8rem;
  }
}
.company-mission-list .list-sub {
  padding: 30px 20px;
  font-weight: 500;
  line-height: 2;
}
.company-mission-list .list-sub li {
  position: relative;
  padding-left: 20px;
}
.company-mission-list .list-sub li:not(:first-of-type) {
  margin-top: 20px;
}
.company-mission-list .list-sub li::before {
  position: absolute;
  top: 12px;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #760051;
}

.company-policy-list {
  margin-top: 80px;
  padding: 50px 80px;
  border: 1px solid #760051;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .company-policy-list {
    padding: 10px 20px;
  }
}
.company-policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .company-policy-list li {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .company-policy-list li {
    gap: 10px;
  }
}
.company-policy-list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 6px;
  width: 16px;
  height: 28px;
  background-image: url("../images/company-policy-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .company-policy-list li::before {
    width: 12px;
    height: 21px;
  }
}
.company-policy-list li:not(:last-of-type) {
  border-bottom: 1px dashed #000;
}

.company-data-container > h3 {
  position: relative;
  width: 100%;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  transform: translateY(calc(50% + 80px));
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .company-data-container > h3 {
    font-size: 2.4rem;
    transform: translateY(calc(50% + 40px));
  }
}
.company-data-container .data-item-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-top: 80px;
  padding: 80px 40px;
}
@media screen and (max-width: 767px) {
  .company-data-container .data-item-wrap {
    margin-top: 40px;
  }
}
.company-data-container .data-item-wrap.bg-pink {
  background-color: #fffafd;
}
.company-data-container .data-item-wrap.gap120 {
  gap: 120px 40px;
}
@media screen and (max-width: 1000px) {
  .company-data-container .data-item-wrap.gap120 {
    gap: 40px;
  }
}
.company-data-container .data-item-wrap.gap80 {
  gap: 80px 40px;
}
@media screen and (max-width: 1000px) {
  .company-data-container .data-item-wrap.gap80 {
    gap: 40px;
  }
}
.company-data-container .data-item-wrap .one {
  grid-column: span 6;
}
.company-data-container .data-item-wrap .two {
  grid-column: span 3;
}
@media screen and (max-width: 767px) {
  .company-data-container .data-item-wrap .two {
    grid-column: span 6;
  }
}
.company-data-container .data-item-wrap .three {
  grid-column: span 2;
}
@media screen and (max-width: 1000px) {
  .company-data-container .data-item-wrap .three {
    grid-column: span 6;
  }
}
.company-data-container .data-item-wrap .three-column2 {
  grid-column: 2/span 2;
}
@media screen and (max-width: 1000px) {
  .company-data-container .data-item-wrap .three-column2 {
    grid-column: 1/span 3;
  }
}
@media screen and (max-width: 767px) {
  .company-data-container .data-item-wrap .three-column2 {
    grid-column: span 6;
  }
}
.company-data-container .data-item-wrap .three-column4 {
  grid-column: 4/span 2;
}
@media screen and (max-width: 1000px) {
  .company-data-container .data-item-wrap .three-column4 {
    grid-column: 4/span 3;
  }
}
@media screen and (max-width: 767px) {
  .company-data-container .data-item-wrap .three-column4 {
    grid-column: span 6;
  }
}
.company-data-container .data-item-wrap:nth-of-type(1) .data-item:nth-of-type(3) {
  margin-top: 180px;
  margin-left: -40px;
}
@media screen and (max-width: 1200px) {
  .company-data-container .data-item-wrap:nth-of-type(1) .data-item:nth-of-type(3) {
    margin-top: 280px;
    margin-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .company-data-container .data-item-wrap:nth-of-type(1) .data-item:nth-of-type(3) {
    margin-top: 0;
  }
}
.company-data-container .data-item-wrap:nth-of-type(1) .data-item:nth-of-type(4) {
  margin-left: 40px;
}
@media screen and (max-width: 1000px) {
  .company-data-container .data-item-wrap:nth-of-type(1) .data-item:nth-of-type(4) {
    margin-left: 0;
  }
}
.company-data-container .data-item-wrap:nth-of-type(1) .data-item:nth-of-type(5) {
  margin-top: 280px;
  margin-right: -20px;
}
@media screen and (max-width: 1200px) {
  .company-data-container .data-item-wrap:nth-of-type(1) .data-item:nth-of-type(5) {
    margin-top: 360px;
    margin-right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .company-data-container .data-item-wrap:nth-of-type(1) .data-item:nth-of-type(5) {
    margin-top: 0;
  }
}
.company-data-container .data-item-wrap:nth-of-type(2) .data-item:nth-of-type(4) {
  margin-left: 40px;
}
@media screen and (max-width: 1000px) {
  .company-data-container .data-item-wrap:nth-of-type(2) .data-item:nth-of-type(4) {
    margin-left: 0;
  }
}
.company-data-container .data-item-wrap:nth-of-type(2) .data-item:nth-of-type(5) {
  margin-left: 140px;
}
@media screen and (max-width: 1000px) {
  .company-data-container .data-item-wrap:nth-of-type(2) .data-item:nth-of-type(5) {
    margin-left: 0;
  }
}
.company-data-container .data-item-wrap:nth-of-type(3) .data-item:nth-of-type(3) {
  margin-top: 40px;
}
.company-data-container .data-item-inner-wrap {
  display: flex;
  gap: 40px;
}
.company-data-container .data-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}
.company-data-container .data-item h4 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 2.6rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .company-data-container .data-item h4 {
    font-size: 2.1rem;
  }
}
.company-data-container .data-item h4::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 4px;
  background: #fff;
  z-index: 1;
}
.company-data-container .data-item h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #000;
  transform: translate(-50%, 1px) rotate(-30deg);
  transform-origin: top right;
  z-index: 2;
}
.company-data-container .data-item .num-ttl {
  font-weight: 500;
  color: #760051;
  text-align: center;
}
.company-data-container .data-item .num .js-count-up {
  margin-right: 10px;
  font-family: "Albert Sans", sans-serif;
  font-size: 10.8rem;
  font-weight: 700;
  color: #760051;
  line-height: 1.1;
}
@media screen and (max-width: 1260px) {
  .company-data-container .data-item .num .js-count-up {
    font-size: max(6.4rem, 9vw);
  }
}
.company-data-container .data-item .num span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #000;
}
.company-data-container .data-item .num .mr10 {
  margin-right: 10px;
}
.company-data-container .data-item .desc {
  font-weight: 500;
}
.company-data-container .data-item .notice {
  color: #898989;
}
.company-data-container .data-item-etc {
  grid-column: span 6;
}
.company-data-container .data-item-etc.flex-half {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 1000px) {
  .company-data-container .data-item-etc.flex-half {
    flex-direction: column;
  }
}
.company-data-container .data-item-etc.flex-half > .data-item-etc-list {
  flex: 1;
}
.company-data-container .data-item-etc-list {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .company-data-container .data-item-etc-list {
    align-items: center;
    flex-direction: column;
  }
}
.company-data-container .data-item-etc-list li {
  padding-left: 26px;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .company-data-container .data-item-etc-list li {
    font-size: 1.6rem;
  }
}
.company-data-container .data-item-etc-list li::before {
  content: "■";
  display: inline-block;
  margin-right: 10px;
  margin-left: -26px;
  font-size: 16px;
  color: #760051;
}
.company-data-container .data-item-etc-list li span {
  font-size: 3rem;
  color: #760051;
}
@media screen and (max-width: 767px) {
  .company-data-container .data-item-etc-list li span {
    font-size: 2.4rem;
  }
}
.company-data-container .jc-center {
  justify-content: center;
  gap: 20px 40px;
}
.company-data-container .direction-column {
  flex-direction: column;
}
.company-data-container .span-half {
  grid-column: 3/span 4;
}
@media screen and (max-width: 1000px) {
  .company-data-container .span-half {
    grid-column: span 6;
  }
}
.company-data-container .deco01 {
  position: absolute;
}
.company-data-container .deco02 {
  position: absolute;
}
.company-data-container .deco03 {
  position: absolute;
}
.company-data-container .deco04 {
  position: absolute;
}
.company-data-container .deco05 {
  position: absolute;
}
.company-data-container .deco06 {
  position: absolute;
}
.company-data-container .deco07 {
  position: absolute;
}
.company-data-container .deco08 {
  position: absolute;
}
.company-data-container .deco09 {
  position: absolute;
}
.company-data-container .deco10 {
  position: absolute;
}
.company-data-container .deco11 {
  position: absolute;
}
.company-data-container .deco12 {
  position: absolute;
}
.company-data-container .deco13 {
  position: absolute;
}
.company-data-container .deco14 {
  position: absolute;
}
.company-data-container .deco15 {
  position: absolute;
}
.company-data-container .deco16 {
  position: absolute;
}
.company-data-container .deco17 {
  position: absolute;
}
.company-data-container .deco18 {
  position: absolute;
}
.company-data-container .deco19 {
  position: absolute;
}
.company-data-container .deco01 {
  top: 5%;
  right: 46%;
}
@media screen and (max-width: 768px) {
  .company-data-container .deco01 {
    top: 8%;
    right: 50%;
    margin-right: -160px;
  }
}
.company-data-container .deco02 {
  top: 21%;
  left: 22%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco02 {
    top: 27%;
    left: 17%;
  }
}
@media screen and (max-width: 768px) {
  .company-data-container .deco02 {
    left: 50%;
    margin-left: -200px;
  }
}
.company-data-container .deco03 {
  top: 17%;
  left: 44%;
}
@media screen and (max-width: 768px) {
  .company-data-container .deco03 {
    left: 50%;
    margin-left: -150px;
  }
}
.company-data-container .deco04 {
  top: 20%;
  right: 5%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco04 {
    top: 41%;
    right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .company-data-container .deco04 {
    top: 18%;
    right: 50%;
    margin-right: -220px;
  }
}
.company-data-container .deco05 {
  top: 52%;
  left: 39%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco05 {
    top: 41%;
    left: 5%;
  }
}
@media screen and (max-width: 768px) {
  .company-data-container .deco05 {
    top: 41%;
    left: 40%;
    margin-left: -220px;
  }
}
.company-data-container .deco06 {
  top: 61%;
  right: 46%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco06 {
    top: 56%;
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  .company-data-container .deco06 {
    top: 4%;
    left: 28%;
    margin-left: -20px;
  }
}
.company-data-container .deco07 {
  top: 75%;
  left: 24%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco07 {
    top: 75%;
    left: 45%;
  }
}
@media screen and (max-width: 768px) {
  .company-data-container .deco07 {
    top: 35%;
    left: 73%;
    margin-right: -220px;
  }
}
.company-data-container .deco08 {
  top: 81%;
  left: 15%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco08 {
    left: 5%;
  }
}
@media screen and (max-width: 768px) {
  .company-data-container .deco08 {
    top: 81%;
    left: 45%;
    margin-left: -220px;
  }
}
.company-data-container .deco09 {
  top: 81%;
  right: 21%;
}
@media screen and (max-width: 768px) {
  .company-data-container .deco09 {
    top: 52%;
    right: 61%;
    margin-right: -220px;
  }
}
.company-data-container .deco10 {
  top: 83%;
  right: 9%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco10 {
    top: 80%;
    right: 0%;
  }
}
@media screen and (max-width: 768px) {
  .company-data-container .deco10 {
    top: 64%;
    right: 40%;
    margin-right: -220px;
  }
}
.company-data-container .deco11 {
  top: 58%;
  left: 11%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco11 {
    top: 50%;
    left: 50%;
    margin-left: 150px;
  }
}
.company-data-container .deco12 {
  top: -20%;
  right: 20%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco12 {
    top: 10%;
    left: 2%;
    margin-right: -250px;
  }
}
@media screen and (max-width: 767px) {
  .company-data-container .deco12 {
    top: 10%;
    left: 10%;
    margin-left: -20px;
  }
}
.company-data-container .deco13 {
  top: -6%;
  right: 10%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco13 {
    top: 42%;
    right: 62%;
    margin-right: -180px;
  }
}
@media screen and (max-width: 767px) {
  .company-data-container .deco13 {
    top: 60%;
    left: 8%;
    margin-left: -20px;
  }
}
.company-data-container .deco14 {
  top: 20%;
  right: 48%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco14 {
    top: 63%;
    right: 61%;
    margin-right: 165px;
  }
}
@media screen and (max-width: 767px) {
  .company-data-container .deco14 {
    top: 64%;
    right: 4%;
    margin-right: 20px;
  }
}
.company-data-container .deco15 {
  top: 43%;
  left: 20%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco15 {
    top: 94%;
    left: 12%;
    margin-left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .company-data-container .deco15 {
    top: 92%;
    left: 88%;
    margin-left: -20px;
  }
}
.company-data-container .deco16 {
  top: 70%;
  left: 44%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco16 {
    top: 40%;
    left: 10%;
    margin-left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .company-data-container .deco16 {
    top: 40%;
    right: 11%;
    margin-left: -190px;
  }
}
.company-data-container .deco17 {
  top: 103%;
  left: 39%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco17 {
    top: 98%;
    left: 50%;
    margin-left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .company-data-container .deco17 {
    top: 82%;
    left: -6%;
  }
}
.company-data-container .deco18 {
  top: 60%;
  right: 11%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco18 {
    top: 98%;
    left: 50%;
    margin-left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .company-data-container .deco18 {
    top: 85%;
    left: 92%;
    margin-right: 20px;
  }
}
.company-data-container .deco19 {
  top: 4%;
  left: 12%;
}
@media screen and (max-width: 1000px) {
  .company-data-container .deco19 {
    top: 98%;
    left: 50%;
    margin-left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .company-data-container .deco19 {
    top: 74%;
    left: 0%;
    margin-left: -20px;
  }
}

.company-history-list {
  display: inline-block;
  margin-top: 80px;
  margin-left: 49px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .company-history-list {
    margin-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .company-history-list {
    margin-left: 25px;
  }
}
.company-history-list li {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 60px;
  font-weight: 500;
  border-left: 1px solid #760051;
}
@media screen and (max-width: 500px) {
  .company-history-list li {
    gap: 20px;
    padding-bottom: 30px;
  }
}
.company-history-list li .year {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 97px;
  height: 97px;
  margin-left: -49px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background-color: #760051;
  border-radius: 97px;
}
@media screen and (max-width: 500px) {
  .company-history-list li .year {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    font-size: 1.8rem;
  }
}
.company-history-list li .desc {
  width: calc(100% - 89px);
  line-height: 1.5;
}
@media screen and (max-width: 500px) {
  .company-history-list li .desc {
    width: calc(100% - 49px);
  }
}

.entry-form-wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
  width: 100%;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 60px;
  font-weight: 500;
  border-bottom: 1px dashed #000;
}
@media screen and (max-width: 767px) {
  .entry-form-wrap {
    margin-top: 40px;
  }
}
.entry-form-wrap dt,
.entry-form-wrap dd {
  padding: 20px 10px;
}
.entry-form-wrap dt {
  width: 230px;
}
@media screen and (max-width: 767px) {
  .entry-form-wrap dt {
    width: 100%;
    padding-bottom: 0;
  }
}
.entry-form-wrap dt span {
  font-size: 1.2rem;
  color: #760051;
}
.entry-form-wrap dd {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  width: calc(100% - 230px);
}
@media screen and (max-width: 767px) {
  .entry-form-wrap dd {
    width: 100%;
  }
}
.entry-form-wrap dd .mr10 {
  margin-right: 10px;
}
.entry-form-wrap dd .mr20 {
  margin-right: 20px;
}
.entry-form-wrap dd .w100 {
  max-width: 100px;
  width: 100%;
}
.entry-form-wrap dd .w140 {
  max-width: 140px;
  width: 100%;
}
.entry-form-wrap dd .w500 {
  max-width: 500px;
  width: 100%;
}
.entry-form-wrap dd input[type=text], .entry-form-wrap dd input[type=tel], .entry-form-wrap dd input[type=email] {
  padding: 10px;
  border: 1px solid #bebebe;
  background-color: #fff;
}
.entry-form-wrap dd span[data-name^=freearea] {
  width: 100%;
}
.entry-form-wrap dd textarea {
  width: 100%;
  height: 320px;
  padding: 10px;
  border: 1px solid #bebebe;
  background-color: #fff;
}
.entry-form-wrap dd .select-flex {
  display: flex;
  align-items: flex-start;
  flex-basis: 100%;
  gap: 20px;
}
@media screen and (max-width: 920px) {
  .entry-form-wrap dd .select-flex {
    flex-direction: column;
  }
}
.entry-form-wrap dd .select-wrap {
  position: relative;
  display: inline-block;
}
.entry-form-wrap dd .select-wrap::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 10px;
  font-size: 1rem;
  transform: translateY(calc(-50% - 2px));
  pointer-events: none;
}
.entry-form-wrap dd select {
  appearance: none;
  padding: 10px 30px 10px 10px;
  border: 1px solid #bebebe;
  background-color: #fff;
}
.entry-form-wrap dd:has(.wpcf7-form-control-wrap[data-name=age]) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
}
.entry-form-wrap dd:has(.wpcf7-form-control-wrap[data-name=age]) .unit {
  line-height: 1;
}
.entry-form-wrap dd:has(.wpcf7-form-control-wrap[data-name=age]) .wpcf7-not-valid-tip {
  width: 100%;
  margin-top: 4px;
}
.entry-form-wrap dd input[type=radio] {
  display: none;
}
.entry-form-wrap dd input[type=radio] + span {
  position: relative;
  margin-right: 20px;
  padding-left: 40px;
  cursor: pointer;
  display: inline-block;
  line-height: 24px;
}
.entry-form-wrap dd input[type=radio] + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #bebebe;
  border-radius: 50%;
  box-sizing: border-box;
}
.entry-form-wrap dd input[type=radio]:checked + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #760051;
  border-radius: 50%;
}
.entry-form-wrap dd input[type=radio]:checked + span::before {
  border-color: #760051;
}
.entry-form-wrap dd .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.entry-form-wrap dd .file-upload-btn {
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
  background-color: #760051;
  border-radius: 60px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.entry-form-wrap dd .file-upload-btn:hover {
  background-color: #e6dee3;
}
.entry-form-wrap dd {
  /* 未選択（黒） */
}
.entry-form-wrap dd .js-file-name.is-empty {
  color: #000;
}
.entry-form-wrap dd {
  /* エラー（赤） */
}
.entry-form-wrap dd .js-file-name.is-error {
  color: #f00;
}
.entry-form-wrap dd {
  /* 選択済み（黒） */
}
.entry-form-wrap dd .js-file-name.is-selected {
  color: #000;
}
.entry-form-wrap dd .wpcf7-form-control-wrap[data-name=resume] {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}
.entry-form-wrap dd .wpcf7-form-control-wrap[data-name=resume] input[type=file] {
  display: none;
}
.entry-form-wrap dd .wpcf7-form-control-wrap[data-name=resume] .wpcf7-not-valid-tip {
  display: block;
}
.entry-form-wrap dd .file-name {
  font-size: 1.4rem;
  color: #666;
}
.entry-form-wrap dd .notice {
  width: 100%;
  font-size: 1.2rem;
  color: #858585;
  line-height: 2;
}

.wpcf7-not-valid-tip {
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  color: #f00 !important;
}

.wpcf7-form-control-wrap[data-name=age] .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-not-valid-tip {
  display: none !important;
}

.privacy-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.privacy-label .wpcf7-list-item-label {
  display: none;
}
.privacy-label input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border: 1px solid #e2e2e2;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background-color 0.2s, border-color 0.2s;
}
.privacy-label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #760051;
}

.wpcf7-not-valid-tip[data-name=privacy],
.wpcf7-form-control-wrap[data-name=privacy] ~ .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  color: #e00;
  text-align: center;
}

.wpcf7-spinner {
  display: none !important;
}

.entry-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 80px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  background-color: #760051;
  border-radius: 80px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.entry-submit:hover {
  opacity: 0.8;
}

.privacy-page .inner {
  max-width: 960px;
}

.privacy {
  counter-reset: privacy-num;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .privacy {
    padding-top: 0;
  }
}

.privacy-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  font-weight: 500;
  line-height: 2;
}
.privacy-block:not(:last-child) {
  border-bottom: 1px dotted #000;
}
.privacy-block h2 {
  display: flex;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  counter-increment: privacy-num;
}
@media screen and (max-width: 767px) {
  .privacy-block h2 {
    font-size: 2.4rem;
  }
}
.privacy-block h2::before {
  content: counter(privacy-num) ". ";
  margin-right: 0.5em;
}
.privacy-block ul {
  margin-top: 30px;
  padding-left: 40px;
  list-style-type: disc;
}

footer {
  padding: 40px 20px 20px 20px;
}/*# sourceMappingURL=main.css.map */