@charset "UTF-8";
/* ========================================
  ユーティリティクラス
   ======================================== */

/* コンテナ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.txt-block p {
  line-height: 1.875;
  letter-spacing: 0.025em;
}

@media (min-width: 751px) {
  .container {
    width: calc(100% - 60px);
  }

  .txt-block {
    max-width: 750px;
    margin: 0 auto 100px;
    display: table;
  }
}

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

  .txt-block {
    margin: 0 auto 40px;
  }

  .txt-block p {
    font-size: 1.5rem;
  }
}


/* ========================================
  レイアウトコンポーネント
  ======================================== */

/* ヘッダー */
header {
  width: 100%;
  z-index: 1001;
}

header h1 {}

header a.logo {
  display: flex;
  align-items: center;
  gap: 24px;
}

header a.logo .txt {
  font-size: 1.6rem font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

header .header-right {
  /* border: solid red 1px; */
}

header .global-nav .nav-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

header .global-nav .menu-list {
  display: flex;
  align-items: center;
  gap: 32px;
  gap: 1.6666666666666667vw;
}

header .global-nav .menu-list .menu-item a span {
  font-size: 1.6rem;
  letter-spacing: .05em;
  color: #ffffff;
}

header .global-nav .site-list,
header .global-nav .sns-list {
  display: none;
}

header .global-nav .nav-cta {
  width: 100%;
}


header .global-nav .nav-cta .btn-action {
  margin: 0 auto;
}

header .btn-entry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 180px;
  height: 45px;
  /*background-color: #a62b00;*/
  background-image: linear-gradient(0deg, #1c974e, #06c755);
}

header .btn-entry .text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: #ffffff;
}


@media (min-width: 751px) {
  header {
    height: 100px;
    padding: 0 30px 0 20px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header h1 {
    margin: 12px 0 9px;
    z-index: 10000;
  }

  header a {
    display: flex;
    align-items: center;
    gap: 24px;
    gap: 1.25vw;
  }

  header img.logo {
    width: 150px;
  }

  header a span.txt {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    color: #fff;
    letter-spacing: .0125em;
  }

  header .header-right {
    margin: 3px 0 0;
    display: flex;
    align-items: center;
    gap: 2.083333333333333vw;
  }

  header .global-nav .menu-list .menu-item a span {
    font-size: 1.6rem;
  }

  header .btn-entry img {
    width: 19px;
  }

  header #hamburger-menu {
    display: none;
  }

}

@media (min-width: 1401px) {
  header .global-nav .menu-list .menu-item a span {
    font-size: min(1.0810810810810811vw, 1.6rem);
  }

  header a span.txt {
     font-size: clamp(0.9rem, 0.644rem + 1.09vw, 1.6rem); 
    font-size: min(0.975609756097561vw, 1.6rem);
  }

  header a {
    gap: 24px;
  }

  header .header-right {
    gap: 2.083333333333333vw;
  }

  header .header-right nav {
    display: block !important;
  }

  header .global-nav .menu-list {
    gap: 1.6666666666666667vw;
  }
}
@media (min-width: 1402px) {
	header a span.txt {
  font-size: 1.2rem;
  }
}
@media (min-width: 1640px) {

  header .global-nav .menu-list .menu-item a span,
  header a span.txt {
  font-size: 1.6rem;
  }

  header .header-right {
    gap: 40px;
  }

  header .global-nav .menu-list {
    gap: 32px;
  }
}

@media (max-width: 1400px) {
  header {
    background-color: #3a3937;
  }

  header a span.txt {
    color: #fff;
  }

  header .global-nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
    padding: 150px 30px;
    background-color: #3a3937;
  }

  header .global-nav .menu-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 65px;
  }

  header .global-nav .menu-list .menu-item {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #ffffff;
  }

  header .global-nav .menu-list .menu-item a {
    width: 100%;
    padding: 28px 0;
  }

  header .global-nav .menu-list .menu-item a span {
    font-size: 24px;
  }

  header .global-nav .site-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 43px;
  }

  header .global-nav .site-list .site-item {
    width: 100%;
    padding: 0;
  }

  header .global-nav .site-list .site-item a {
    width: 100%;
    padding: 28px 0;
  }

  header .global-nav .site-list .site-item a span {
    font-size: 2.4rem;
    color: #ffffff;
  }

  header .sns-list .sns-item a .icon {
    width: 66px;
    height: 66px;
    display: block;
  }

  header .global-nav .sns-list {
    display: flex;
    margin-bottom: 70px;
    gap: 40px;
  }

  header .btn-entry {
    display: none;
  }
}




@media (max-width: 750px) {
  header {
    height: 50px;
    padding: 0 13px 0 10px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header h1 {
    width: calc(100dvw - 50px);
    margin: 6px 0 5px;
    z-index: 10000;
  }

  header h1 a {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  header h1 picture{
		line-height: 1;
	}

  header img.logo {
    width: 76px;
  }

  header a span.txt {
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    letter-spacing: .0125em;
  }

  header .header-right {
    margin: 3px 0 0;
    display: flex;
    align-items: center;
    gap: 40px;
  }

  header .btn-entry img {
    /*width: 19px;*/
	width: auto;
  }

  header #hamburger-menu {
    display: none;
  }

  header .global-nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
    padding: 75px 15px;
    background-color: #3a3937;
  }

  header .global-nav .menu-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 30px;
  }

  header .global-nav .menu-list .menu-item a {
    width: 100%;
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    letter-spacing: .025em;
    pointer-events: auto;
  }

  header .global-nav .menu-list .menu-item {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #ffffff;
  }

  header .global-nav .menu-list .menu-item a span {
    font-size: 1.4rem;
  }

  header .global-nav .site-list {
    width: 100%;
    display: block;
    margin-bottom: 15px;
  }

  header .global-nav .site-list .site-item a {
    width: 100%;
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    letter-spacing: .025em;
  }

  header .global-nav .site-list .site-item a span {
    font-size: 1.4rem;
    letter-spacing: .025em;
    color: #ffffff;
  }

  header .global-nav .site-list .site-item {
    width: 100%;
    padding: 0;
  }

  header .sns-list .sns-item a .icon {
    width: 33px;
    height: 33px;
    display: block;
  }

  header .global-nav .sns-list {
    display: flex;
    margin-bottom: 34px;
    gap: 20px;
  }

  header .btn-entry {
    display: none;
  }
	 header .global-nav .nav-cta {
  height: 65px;
  }
	
}

@media (min-width: 1401px) {
  header .global-nav .nav-cta {
    display: none;
  }
}


header #hamburger-menu span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

header #hamburger-menu span:nth-child(1) {
  left: 0;
  top: 0;
}

header #hamburger-menu span:nth-child(2) {
  left: 0;
  top: 50%;
}

header #hamburger-menu span:nth-child(3) {
  left: 0;
  bottom: 0;
}

header.open {
  position: fixed;
}


@media (max-width: 1400px) {
  header #hamburger-menu {
    position: absolute;
    right: 25px;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    display: block;
    width: 50px;
    height: 42px;
    cursor: pointer;
    z-index: 1005;
  }

  header.open #hamburger-menu span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }

  header.open #hamburger-menu span:nth-child(2) {
    opacity: 0;
  }

  header.open #hamburger-menu span:nth-child(3) {
    bottom: 21px;
    transform: rotate(-45deg);
  }
}

@media (max-width: 750px) {
  header #hamburger-menu {
    width: 25px;
    height: 21px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 13px;
    bottom: 0;
    transform: translateY(0);
    display: block;
    cursor: pointer;
    z-index: 1005;
  }

  header.open #hamburger-menu span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }

  header.open #hamburger-menu span:nth-child(2) {
    opacity: 0;
  }

  header.open #hamburger-menu span:nth-child(3) {
    bottom: 11px;
    transform: rotate(-45deg);
  }
}

/* アンカーリンクが2回タップが必要な対処法 */
@media (min-width: 1px) and (max-width: 1050px) {

  header .global-nav .menu-list .menu-item a {
    pointer-events: auto;
  }

  header .global-nav .menu-list .menu-item a:hover {
    opacity: 1;
  }
}

/* フッター */
footer {
  padding: 50px 0 150px 0;
  background-color: #3a3937;
}

footer .sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

footer .sns-list .sns-item a .icon {
  display: block;
  width: 42px;
  height: 42px;
}

footer .sns-list .sns-item a .icon img {
  width: 100%;
}

footer #footer-nav {
  margin-bottom: 50px;
}

footer #footer-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer #footer-nav ul li {
  display: inline-block;
  padding: 0 10px;
  border-right: 1px solid #ffffff;
}

footer #footer-nav ul li a {
  display: inline-block;
  line-height: 1;
}

footer #footer-nav ul li a span {
  display: inline-block;
  font-size: 1.6rem font-weight: 400;
  color: #ffffff;
}

footer #footer-nav ul li:first-child {
  border-left: 1px solid #ffffff;
}

footer .copyright {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}

@media (max-width: 750px) {
  footer {
    padding: 30px 0 75px 0;
  }

  footer .sns-list .sns-item a .icon {
    width: 33px;
    height: 33px;
  }

  footer .sns-list {
    margin-bottom: 24px;
  }

  footer .copyright {
    font-size: 1.2rem;
  }

  footer #footer-nav {
    display: none;
  }
}

/* ========================================
   共通コンポーネント
   ======================================== */

/* CTAボタン */
.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-row .cta-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  margin-top: -45px;
}

.cta-row .btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 600px;
  height: 90px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: 0.025em;
  color: #ffffff;
}

.cta-row .btn-action .en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: .05em;
}

@media (max-width: 750px) {
  .cta-row .cta-list {
    width: calc(100% - 30px);
    margin-top: -24px;
  }

  .cta-row .btn-action .en {
    font-size: 1.6rem;
  }

  .cta-row .btn-action {
    width: 100%;
    height: auto;
    min-height: 65px;
    /*font-size: 1.4rem;*/
	font-size: 0.8rem;
    line-height: 1.214;
    letter-spacing: 0;
  }
}

.cta-row .btn-action .big {
  font-size: 2rem;
}

.cta-row .btn-entry {
  /*background-color: #a62b00;*/
  background-image: linear-gradient(0deg, #1c974e, #06c755);
  white-space: nowrap;
  overflow: hidden;
}

.cta-row .btn-entry span {
 /* margin-bottom: 13px;*/
  font-size: 2rem;
}
.cta-row .btn-entry span i{
	padding-right: 10px;
}
.cta-row .btn-entry i img{
	height: 40px;
}

.cta-row .btn-more {
  background-color: #3a3937;
}

.cta-row.left {
  justify-content: flex-start;
}

.cta-row.left .btn-action {
  margin: 0;
}

@media (max-width: 750px) {
  .cta-row .btn-action .big {
    font-size: 1.6rem;
    line-height: 1.125;
  }

  .cta-row .btn-entry span {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 0px;
  }
}

/* セクションタイトル */
.sec-ttl {
  position: relative;
  margin-bottom: 60px;
  font-size: 6rem;
  font-size: min(4.477611940298507vw, 6rem);
  /* font-size: clamp(3rem, 1.077rem + 4.1vw, 6rem); */
  font-weight: 600;
  line-height: 1.333;
  letter-spacing: .025em;
  color: #ffffff;
  z-index: 1;
}

.sec-ttl .sub-ttl {
  display: block;
  margin-top: 20px;
  font-size: 2rem;
  /* font-size: min(1.4925373134328357vw, 2rem); */
  font-size: clamp(1.6rem, 1.344rem + 0.55vw, 2rem);
  letter-spacing: .025em;
}

@media (max-width: 750px) {
  .sec-ttl .sub-ttl {
    margin-top: 15px;
    font-size: 1.6rem;
    line-height: 1.563;
  }

  .sec-ttl {
    margin-bottom: 70px;
    font-size: 3rem;
  }
}


.sec-ttl-eng {
  position: absolute;
  top: -30px;
  right: 0;
  font-family: "Raleway", sans-serif;
  font-size: 21rem;
  font-size: min(15vw, 21rem);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  color: rgba(201, 207, 202, 0.55);
}

@media (max-width: 750px) {
  .sec-ttl-eng {
    top: -8px;
    font-size: 6rem;
  }
}

.item-ttl {
  margin-bottom: 30px;
  font-size: 2.8rem;
  /* font-size: min(2.0895522388059704vw, 2.8rem); */
  font-size: clamp(2rem, 1.487rem + 1.09vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.3;
}

@media (max-width: 750px) {
  .item-ttl {
    margin-bottom: 15px;
    font-size: 2rem;
    line-height: 1.35;
  }
}

/* フローリスト（理由・ワークフロー・応募フローなどで使用） */
.flow-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.flow-list>li {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  gap: 3.3333333333333335%;
  border-bottom: 1px solid #aaa9a8;
}

@media (max-width: 750px) {
  .flow-list>li {
    flex-direction: column;
  }
}

.flow-list>li .image {
  max-width: 400px;
  width: 33.33333333333333%;
}

@media (max-width: 750px) {
  .flow-list>li .image {
    width: 100%;
    max-width: unset;
    margin: 0 auto;
  }
}

.flow-list>li .image img {
  width: 100%;
}

.flow-list>li .infos {
  display: flex;
  gap: 40px;
  width: 66.666666666%;
}

.flow-list>li .infos .head {
  width: 83px;
  margin-left: -3px;
  text-align: center;
  font-weight: 700;
  color: #3a3937;
}

.flow-list>li .infos .head .text {
  font-size: 2rem;
  writing-mode: vertical-lr;
}

.flow-list>li .infos .head .digit {
  font-size: 5rem;
  white-space: nowrap;
}

.flow-list>li .infos .body {
  width: calc(100% - 100px);
}

.flow-list>li .infos .body .ttl {
  margin-bottom: 22px;
  color: #3a3937;
}

.flow-list>li .infos .body p {
  margin: 0 0 25px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}

.flow-list.has-arrow li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -21px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 20px solid #888785;
}

.flow-list.has-arrow>li:last-child::after {
  content: none;
}


@media (max-width: 750px) {
  .flow-list>li .infos {
    width: 100%;
    gap: 15px;
  }

  .flow-list>li .infos .head {
    width: 35px;
    margin-left: 0;
  }

  .flow-list>li .infos .head .text {
    font-size: 1.6rem;
  }

  .flow-list>li .infos .head .digit {
    font-size: 3rem;
  }

  .flow-list>li .infos .body {
    width: 100%;
  }

  .flow-list>li .infos .body .ttl {
    margin-bottom: 15px;
  }

  .flow-list>li .infos .body p {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.786;
  }

  .flow-list.has-arrow>li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 10px solid #888785;
  }

  .flow-list.has-arrow>li:last-child::after {
    content: none;
  }
}

/* チェックリスト */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 48px;
}

.check-list li {
  width: 100%;
  min-height: 42px;
  padding: 6px 35px 6px 53px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.667;
  letter-spacing: .025em;
  color: #3a3937;
  position: relative;
  background-color: rgb(230, 230, 229);
}

.check-list li .mark {
  width: 15px;
  height: 13px;
  margin: auto 0;
  display: block;
  position: absolute;
  top: -7px;
  left: 24px;
  bottom: 0;
}

@media (max-width: 750px) {
  .check-list {
    gap: 10px;
    margin: 0 0 40px;
  }

  .check-list li {
    min-height: 62px;
    padding: 5px 15px 6px 30px;
    font-size: 1.6rem;
    line-height: 1.563;
  }

  .check-list li .mark {
    width: 13px;
    height: 11px;
    top: 0;
    left: 10px;
    bottom: 0;
  }

  .check-list li .text {
    width: 100%;
  }
}

.check-list li:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.5);
}

/* 動画セクション */
.video-row {
  padding: 45px 0 120px;
}

.video-row .video-col {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

.video-row .video-col .video-ttl {
  margin-top: -60px;
  margin-bottom: 30px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1;
}

.video-row .video-col .video-wrapper {
  border-radius: 8px;
  overflow: hidden;
}

iframe[src*="youtube.com"],
iframe[src*="youtube-nocookie.com"] {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

@media (max-width: 750px) {
  .video-row {
    padding: 25px 0 60px;
  }

  .video-row .video-col {
    padding: 0 15px;
  }

  .video-row .video-col .video-ttl {
    margin-top: -34px;
    margin-bottom: 30px;
    font-size: 1.6rem;
  }

  .video-row .video-col .video-wrapper {
    border-radius: 6px;
  }

}

/* テキストスタイル */
p.spec {
  position: relative;
  padding-left: 16px;
}

p.spec::before {
  margin-left: -16px;
}

p.spec.maru::before {
  content: "・";
}

li.spec.dot::before,
p.spec.dot::before {
  content: "・";
}

p.spec.dot-big::before {
  content: "●";
}

p.spec.sankou::before {
  content: "※";
}

p.strong {
  font-weight: 700;
}

p.small {
  font-size: 15px;
}

@media (max-width: 750px) {
  p.small {
    font-size: 24px;
  }
}

a.link {
  color: #48a3d2;
}

/* テーブル */
table {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  /* border-spacing: 3px; */
}

table colgroup col:nth-child(1) {
  width: 22%;
}

@media (max-width: 750px) {
  table colgroup col:nth-child(1) {
    width: 100%;
  }
}

table colgroup col:nth-child(2) {
  width: 78%;
}

@media (max-width: 750px) {
  table colgroup col:nth-child(2) {
    display: none;
  }
}

@media (max-width: 750px) {
  table tbody tr {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-bottom: 2px;
  }
}

table tbody tr td {
  padding: 6px 15px;
  font-size: 1.6rem;
  letter-spacing: 0.025rem;
  font-weight: 400;
  line-height: 1.875;
  color: #3a3937;
  border-right: solid 3px #fff;
  border-bottom: solid 3px #fff;
}

table tbody tr td+td {
  border-right: none;
}

table tbody tr td p {
  line-height: 1.875;
}

@media (max-width: 750px) {
  table tbody tr td {
    width: 100%;
    font-size: 1.5rem;
    border: none;
  }
}

table tbody tr td:nth-child(1) {
  background-color: #e6e6e5;
}

table tbody tr td:nth-child(2) {
  background-color: #f2f2f2;
}

/* ========================================
   セクション別スタイル
   ======================================== */

/* メインビジュアル */
#main-visual {
  position: relative;
  width: 100%;
}

.main-visual__contents {
  width: 100%;
  height: auto;
  padding-top: 0;
  background-color: #f4efe9;
  position: relative;
}

.mv-cta.cta-row {
  width: 100%;
  padding: 20px;
  background: #dbdddf;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
}

@media (min-width: 751px) and (max-width: 1400px) {
  #main-visual {
    padding-top: 100px;
  }
}


@media (max-width: 750px) {
  #main-visual {
    height: auto;
    padding-top: 50px;
  }

  .mv-cta.cta-row {
    padding: 6px 15px;
  }

  .mv_lead {
    width: 100%;
    height: auto;
    padding: 30px 0 30px 0;
    background-color: #3a3937;
    position: relative;
  }

  .mv_lead p {
    margin: 0 0 30px;
    color: #3a3937;
    font-size: 1.5rem;
    letter-spacing: 0.025em;
    line-height: 1.786;
  }

  .mv_lead p:last-child {
    margin: 0;
    color: #fff;
  }
}


/* リクルートセクション */
#recruitment .head {
  width: 100%;
  min-height: 230px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
}

#recruitment .head .head-row {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 10;
}

#recruitment .head .head-row .head-col {
  width: 50%;
}

@media (max-width: 750px) {
  #recruitment .head {
    padding: 40px 0;
  }

  #recruitment .head .head-row {
    gap: 20px;
  }

  #recruitment .head .head-row .head-col {
    width: 100%;
  }
}

#recruitment .head .head-row .head-col .head-ttl {
  font-size: 3.8rem;
  font-size: min(2.8358208955223883vw, 3.8rem);
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1.316;
  color: #3a3937;
}
#recruitment .head .head-row .head-col .head-ttl span.textS {
    font-size: 1.5rem;
  }


@media (min-width: 751px) and (max-width: 1200px) {

  #recruitment .head .head-row .head-col:nth-of-type(1) {
    /* width: 50%; */
    /* padding-right: 65px; */
  }

}

#recruitment .head .head-row .head-col .head-ttl span {
  display: block;
  font-size: 2.4rem;
  font-size: min(1.791044776119403vw, 2.4rem);
}


#recruitment .head .head-row .head-col .head-txt {
  font-size: 2rem;
  font-size: min(1.4925373134328357vw, 2rem);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.025em;
  color: #3a3937;
}

#recruitment .head .recruitment-ttl-eng {
  position: absolute;
  right: 0;
  bottom: -20px;
  font-family: "Raleway", sans-serif;
  font-size: 12rem;
  font-size: min(8.571428571428571vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255);
  z-index: 1;
}

@media (max-width: 750px) {
  #recruitment .head .head-row .head-col .head-ttl {
    font-size: 2rem;
    line-height: 1.35;
  }

  #recruitment .head .head-row .head-col .head-ttl span {
    font-size: 1.6rem;
  }
  #recruitment .head .head-row .head-col .head-ttl span.textS {
    font-size: 1.5rem;
  }

  #recruitment .head .head-row .head-col .head-txt {
    font-size: 1.5rem;
    line-height: 1.786;
  }

  #recruitment .head .recruitment-ttl-eng {
    bottom: -6px;
    font-size: 4rem;
  }
}

#recruitment .body {
  padding: 110px 0 120px;
}

#recruitment .body .body-row {
  display: flex;
  flex-wrap: wrap;
}

#recruitment .body .body-row .body-col {
  position: relative;
  width: 50%;
}

#recruitment .body .body-row .body-col p {
  margin: 0 0 25px;
  line-height: 1.875;
}

#recruitment .body .body-row .body-col p+p {
  margin: 0 0 40px;
}

#recruitment .body .body-row .body-col .recruitment-ttl {
  color: #3a3937;
  /* white-space: nowrap; */
}

#recruitment .body .body-row .body-col:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#recruitment .body .body-row .body-col:nth-child(1) .bottom {
  max-width: 408px;
  width: 58.285714285714285%;
  margin: 80px 0 0;
  display: block;
}

@media (max-width: 750px) {
  #recruitment .body {
    padding: 30px 0 20px;
  }

  #recruitment .body .body-row .body-col {
    width: 100%;
  }

  #recruitment .body .body-row .body-col:nth-child(1) .bottom {
    max-width: 204px;
    width: 54.400000000000006dvw;
    margin: 0;
    position: absolute;
    right: 0;
    left: unset;
    top: 20px;
  }

  #recruitment .body .body-row .body-col .recruitment-ttl {
    font-size: 3rem;
    margin-bottom: 238px;
  }

  #recruitment .body .body-row .body-col p {
    font-size: 1.5rem;
    line-height: 1.786;
  }
}


/* バリューセクション（デバイスで叶う3つの価値） */
#value {
  position: relative;
  padding: 110px 0 120px 0;
  background-color: #bac2bb;
}

#value .value-ttl {
  margin-bottom: 70px;
  color: #fff;
}

#value .value-list {
  margin: 0 auto 43px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

#value .value-list .value-item {
  padding: 0 0 0 200px;
  padding-left: 14.285714285714285%;
}

#value .value-list .value-item .box {
  width: 100%;
  min-height: 306px;
  padding: 30px 100px 30px 500px;
  padding-left: 41.66666666666667%;
  padding-right: 8.333333333333332%;
  display: flex;
  align-items: center;
  background-color: #f1f3f1;
  position: relative;
}

#value .value-list .value-item .box .num {
  width: fit-content;
  height: fit-content;
  margin: auto;
  position: absolute;
  left: -.65em;
  top: -15px;
  bottom: 0;
  font-size: 11rem;
  font-size: min(8.208955223880597vw, 11rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  color: #596e5a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

#value .value-list .value-item .box .image {
  margin: auto 0;
  top: 0;
  bottom: 0;
  display: block;
  text-align: center;
  position: absolute;
}

#value .value-list .value-item .box .image img {
  width: 100%;
  mix-blend-mode: multiply;
  z-index: 10;
  position: relative;
}

#value .value-list .value-item .box .image:after {
  content: "";
  width: 211px;
  height: 176px;
  /* border: solid 1px; */
  display: block;
  position: absolute;
  top: 0;
  background: #fff;
  z-index: 1;
}

#value .value-list .value-item .box .infos .ttl {
  color: #3a3937;
}

#value .value-list .value-item .box .infos p {
  margin: 0 0 25px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}

#value .value-list .value-item .box .infos p:last-child {
  margin: 0;
}

#value .value-list .value-item:nth-child(1) .box .image {
  max-width: 284px;
  width: 23.666666666666668%;
  max-height: 233px;
  height: fit-content;
  left: 10.666666666666668%;
}

#value .value-list .value-item:nth-child(1) .box .image:after {
  content: "";
  max-width: 235px;
  width: 82.74647887323944%;
  max-height: 170px;
  height: 72.96137339055794%;
  position: absolute;
  top: 0;
  left: 0;
}

#value .value-list .value-item:nth-child(2) {
  padding: 0 200px 0 0;
  padding-right: 14.285714285714285%;
}

#value .value-list .value-item:nth-child(2) .box .image:after {
  content: "";
  max-width: 211px;
  width: 79.8507462686567%;
  max-height: 157px;
  height: 67.09401709401709%;
  position: absolute;
  top: 0;
  right: 0;
}

#value .value-list .value-item:nth-child(2) .box {
  flex-direction: row-reverse;
  padding: 30px 500px 30px 100px;
  padding-right: 41.66666666666667%;
  padding-left: 8.333333333333332%;
}

#value .value-list .value-item:nth-child(2) .box .num {
  left: unset;
  right: -.65em;
}

#value .value-list .value-item:nth-child(2) .box .image {
  max-width: 268px;
  width: 22.333333333333332%;
  max-height: 234px;
  height: fit-content;
  right: 12.583333333333332%;
}

#value .value-list .value-item:nth-child(3) .box .image {
  max-width: 314px;
  width: 26.166666666666664%;
  max-height: 213px;
  height: fit-content;
  left: 9.416666666666666%;
}

#value .value-list .value-item:nth-child(3) .box .image:after {
  content: "";
  max-width: 193px;
  width: 61.46496815286624%;
  max-height: 124px;
  height: 58.21596244131455%;
  position: absolute;
  top: 0;
  right: 0;
}

#value .value-list .value-item:nth-child(3) .box .image:before {
  content: "";
  max-width: 103px;
  width: 32.802547770700635%;
  max-height: 83px;
  height: 38.967136150234744%;
  display: block;
  position: absolute;
  bottom: 0;
  background: #fff;
}


@media (max-width: 750px) {
  #value {
    padding: 30px 0 65px;
  }

  #value .value-list {
    gap: 28px;
  }

  #value .value-list+.cta-row .cta-list {
    width: 100%;
  }

  #value .value-ttl {
    margin-bottom: 35px;
  }

  #value .value-list .value-item {
    padding: 0 0 0 30px;
  }

  #value .value-list .value-item .box {
    flex-direction: column;
    height: auto;
    padding: 26px 15px 30px 15px;
  }

  #value .value-list .value-item .box .num {
    top: 85px;
    bottom: unset;
    font-size: 5.5rem;
  }

  #value .value-list .value-item .box .image img {
    width: auto;
  }

  #value .value-list .value-item .box .image {
    left: unset;
    position: relative;
  }

  #value .value-list .value-item:nth-child(1) .box .image {
    max-width: 162px;
    width: 56.84210526315789%;
    max-height: 141px;
    margin: 30px 0 25px;
    position: relative;
    top: 0;
    right: 10.526315789473683%;
  }

  #value .value-list .value-item:nth-child(1) .box .infos {
    width: 100%;
  }

  #value .value-list .value-item:nth-child(2) {
    padding: 0 30px 0 0;
  }

  #value .value-list .value-item:nth-child(2) .box {
    flex-direction: column;
    padding: 30px 15px;
  }

  #value .value-list .value-item:nth-child(2) .box .image {
    max-width: 177px;
    width: 62.10526315789474%;
    max-height: 174px;
    right: 14.035087719298245%;
    right: 21px;
    margin-top: 17px;
    margin-bottom: 25px;
  }

  #value .value-list .value-item:nth-child(2) .box .infos {
    width: 100%;
  }

  #value .value-list .value-item:nth-child(3) .box .image {
    max-width: 236px;
    width: 82.80701754385966%;
    max-height: 160px;
    margin: 22px 0 25px;
    position: relative;
    left: 0;
    right: unset;
  }

  #value .value-list .value-item:nth-child(3) .box .infos {
    width: 100%;
  }

  #value .value-list .value-item .box .infos p {
    font-size: 1.5rem;
    line-height: 1.786;
  }
}

/* リーズンセクション（なぜその価値を実現できるのか） */
#reason {
  position: relative;
  padding: 105px 0 120px 0;
  overflow: hidden;
}

#reason .reason-ttl-eng {
  color: #eff1ef;
}

#reason .reason-ttl {
  margin-bottom: 70px;
  color: #3a3937;
}

#reason .reason-list .reason-item {
  margin-bottom: 50px;
  padding-bottom: 50px;
}

#reason .reason-list .reason-item:last-child {
  margin-bottom: 0;
}

#reason .reason-list .reason-item .imge {
  width: 400px;
}

#reason .reason-list .reason-item .imge img {
  width: 100%;
}

#reason .reason-list .reason-item .infos {
  display: flex;
  gap: 40px;
  width: 66.666666666%;
}

#reason .reason-list .reason-item .infos .head {
  width: 60px;
  text-align: center;
  font-weight: 700;
  color: #3a3937;
}

#reason .reason-list .reason-item .infos .head .text {
  font-size: 2rem;
  letter-spacing: 0.025em;
  writing-mode: vertical-lr;
}

#reason .reason-list .reason-item .infos .head .digit {
  font-size: 5rem;
}

#reason .reason-list .reason-item .infos .body {
  width: calc(100%);
}

#reason .reason-list .reason-item .infos .body .ttl {
  margin: 0 0 32px;
  color: #3a3937;
}

#reason .reason-list .reason-item .infos .body p {
  margin: 0 0 30px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}

#reason .reason-list .reason-item .infos .body dl,
#reason .reason-list .reason-item .infos .body ul,
#reason .reason-list .reason-item .infos .body table {
  margin: 0 0 30px;
}

#reason .reason-list .reason-item .infos .body dt,
#reason .reason-list .reason-item .infos .body li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.8rem;
  line-height: 1.667;
  font-weight: 600;
  letter-spacing: 0.025em;
}

#reason .reason-list .reason-item .infos .body dd {
  line-height: 1.875;
  letter-spacing: 0.025em;
}

#reason .reason-list .reason-item .infos .body table tr td {
  font-size: 1.8rem;
  line-height: 1.667;
  font-weight: 600;
  letter-spacing: 0.025em;
  background: #f2f2f2;
}

#reason .reason-list .reason-item .infos .body table tr:nth-of-type(even) td {
  background: #e6e6e5;
}

#reason .reason-list .reason-item .infos .body p:last-child {
  margin: 0;
}

@media (max-width: 750px) {
  #reason {
    padding: 30px 0 40px;
  }

  #reason .reason-list {
    margin-bottom: 35px;
  }

  #reason .reason-ttl {
    margin-bottom: 30px;
  }

  #reason .reason-list .reason-item {
    margin: 0 0 40px;
    padding: 0 0 25px;
    gap: 20px;
    flex-direction: column;
  }

  #reason .reason-list .reason-item:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
  }

  #reason .reason-list .reason-item .infos {
    width: 100%;
    gap: 15px;
  }

  #reason .reason-list .reason-item .infos .head {
    width: 35px;
    margin: 0;
  }

  #reason .reason-list .reason-item .infos .head .text {
    font-size: 1.6rem;
  }

  #reason .reason-list .reason-item .infos .head .digit {
    font-size: 3rem;
    white-space: nowrap;
  }

  #reason .reason-list .reason-item .infos .body .ttl {
    margin: 0 0 20px;
  }

  #reason .reason-list .reason-item .infos .body p {
    margin: 0 0 25px;
    font-size: 1.5rem;
    line-height: 1.786;
  }

  #reason .reason-list .reason-item .infos .body dl,
  #reason .reason-list .reason-item .infos .body ul,
  #reason .reason-list .reason-item .infos .body table {
    margin: 0 0 30px;
  }

  #reason .reason-list .reason-item .infos .body dt,
  #reason .reason-list .reason-item .infos .body li {
    font-size: 1.6rem;
  }

  #reason .reason-list .reason-item .infos .body dd {
    font-size: 1.5rem;
  }

  #reason .reason-list .reason-item .infos .body table tr td {
    font-size: 1.6rem;
  }
}



/* VISION（デバイスのビジョンとは） */
#vision {
  position: relative;
  padding: 110px 0 0 0;
  background: #f1f1f1;
}

#vision .head {
  width: 100%;
  min-height: 230px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
}

#vision .head .head-row {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 10;
}

#vision .head .head-row .head-col {
  width: 50%;
}

@media (max-width: 750px) {
  #vision .head {
    padding: 40px 0;
  }

  #vision .head .head-row {
    gap: 20px;
  }

  #vision .head .head-row .head-col {
    width: 100%;
  }
}

#vision .head .head-row .head-col .head-ttl {
  font-size: 3.8rem;
  font-size: min(2.8358208955223883vw, 3.8rem);
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1.316;
  color: #3a3937;
}

#vision .head .head-row .head-col .head-ttl span {
  display: block;
  font-size: 2.4rem;
  font-size: min(1.791044776119403vw, 2.4rem);
}

#vision .head .head-row .head-col .head-txt {
  font-size: 2rem;
  font-size: min(1.4925373134328357vw, 2rem);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.025em;
  color: #3a3937;
}

#vision .head .recruitment-ttl-eng {
  position: absolute;
  right: 0;
  bottom: -20px;
  font-family: "Raleway", sans-serif;
  font-size: 12rem;
  font-size: min(8.571428571428571vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  z-index: 1;
}

#vision .video-row {
  color: #3a3937;
  background-color: #fff;
}

#vision .container:nth-of-type(1) {
  margin-bottom: 70px;
}

#vision .body-row {
  display: flex;
  flex-wrap: wrap;
}

#vision .body-row .body-col {
  position: relative;
  width: 50%;
}

#vision .body-row .body-col p {
  margin: 0 0 30px;
  line-height: 1.875;
}

#vision .body-row .body-col p+p {
  margin: 0 0 35px;
}

#vision .check-list {
  gap: 10px;
  margin: 0 0 23px;
}

#vision .check-list li {
  min-height: 42px;
  background: #fff;
}

#vision .body-row .body-col .recruitment-ttl {
  color: #3a3937;
  letter-spacing: -0.1em;
  z-index: 11;
}

#vision .body-row .body-col:nth-child(1) {
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#vision .body-row .body-col:nth-child(1) .bottom {
  max-width: 357px;
  width: 51%;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: #f1f1f1;
}

#vision .body-row .body-col:nth-child(1) .bottom img {
  mix-blend-mode: multiply;
}

#vision .body-row .body-col:nth-child(1) .bottom:before {
  content: "";
  max-width: 214px;
  width: 59.943977591036415%;
  max-height: 260px;
  height: 58.95691609977324%;
  position: absolute;
  top: 25.623582766439913%;
  left: 0;
  background: rgba(203, 182, 157, .16);
  z-index: 2;
  display: block;
}

#vision .body-row .body-col:nth-child(1) .bottom:after {
  content: "";
  max-width: 153px;
  width: 42.857142857142854%;
  max-height: 157px;
  height: 35.600907029478456%;
  position: absolute;
  top: 0;
  left: 33.33333333333333%;
  background: rgba(255, 255, 255, .8);
  z-index: 1;
  display: block;
}

@media (max-width: 750px) {
  #vision {
    padding: 30px 0 20px;
  }

  #vision .body-row .body-col {
    width: 100%;
  }

  #vision .body-row .body-col:nth-child(1) .bottom {
    max-width: 218px;
    width: 63.18840579710145%;
    margin: 0;
    position: absolute;
    right: 0;
    left: unset;
    top: 15px;
  }

  #vision .body-row .body-col .recruitment-ttl {
    font-size: 3rem;
    margin-bottom: 250px;
  }

  #vision .body-row .body-col p {
    margin: 0 0 25px;
    font-size: 1.5rem;
    line-height: 1.786;
  }

  #vision .body-row .body-col p+p {
    margin-bottom: 0;
  }

  #vision .head .head-row .head-col .head-ttl {
    font-size: 2rem;
    line-height: 1.35;
  }

  #vision .head .head-row .head-col .head-ttl span {
    font-size: 1.6rem;
  }

  #vision .head .head-row .head-col .head-txt {
    font-size: 1.5rem;
    line-height: 1.786;
  }

  #vision .head .recruitment-ttl-eng {
    bottom: -6px;
    font-size: 4rem;
  }
}


/* アバウトセクション（デバイスの住宅デザイナーの仕事とは） */

#about {
  position: relative;
  padding: 110px 0 120px 0;
  background-color: #bac2bb;
}

#about .sec-ttl-eng {
  top: -25px;
	color: #c9cfca;
}

#about .about-ttl {
  margin-bottom: 70px;
  color: #fff;
}

#about .about-list {
  margin: 0 auto 100px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

#about .about-list .about-item {
  padding: 0 0 0 200px;
  padding-left: 14.285714285714285%;
}

#about .about-list .about-item .box {
  width: 100%;
  min-height: 306px;
  padding: 30px 80px 30px 500px;
  padding-left: 41.66666666666667%;
  padding-right: 5.714285714285714%;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  position: relative;
}

#about .about-item_head {
  width: fit-content;
  height: fit-content;
  margin: auto;
  font-size: 11rem;
  font-size: min(8.208955223880597vw, 11rem);
  letter-spacing: 0.025em;
  line-height: 1;
  color: #84796d;
  position: absolute;
  left: -.65em;
  top: -25px;
  bottom: 0;
}

#about .about-item_head .sub {
  margin: auto;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  position: relative;
  display: block;
}

#about .about-list .about-item .box .num {
  position: relative;
  font-size: 11rem;
  font-size: min(8.208955223880597vw, 11rem);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

#about .about-list .about-item .box .image {
  margin: auto 0;
  top: 0;
  bottom: 0;
  display: block;
  text-align: center;
  position: absolute;
}

#about .about-list .about-item .box .image img {
  width: 100%;
  mix-blend-mode: multiply;
  z-index: 10;
  position: relative;
}

#about .about-list .about-item:nth-child(1) .box .image img {
  mix-blend-mode: normal;
}

#about .about-list .about-item .box .image:after {
  content: "";
  width: 211px;
  height: 176px;
  display: block;
  position: absolute;
  top: 0;
  background: #f4efe9;
  z-index: 1;
}

#about .about-list .about-item .box .infos .ttl {
  color: #3a3937;
}

#about .about-list .about-item .box .infos p {
  margin: 0 0 25px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}

#about .about-list .about-item .box .infos p:last-child {
  margin: 0;
}

#about .about-list .about-item .box .infos ul {
  margin: 0 0 30px;
}

#about .about-list .about-item .box .infos li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.8rem;
  line-height: 1.667;
  font-weight: 600;
  letter-spacing: 0.025em;
}

#about .about-list .about-item:nth-child(1) .box .image {
  max-width: 299px;
  width: 24.916666666666668%;
  max-height: 224px;
  height: fit-content;
  left: 8.5%;
}

#about .about-list .about-item:nth-child(1) .box .image:after {
  content: "";
  max-width: 257px;
  width: 85.95317725752508%;
  max-height: 170px;
  height: 75.89285714285714%;
  position: absolute;
  top: 0;
  left: 0;
}

#about .about-list .about-item:nth-child(2) {
  padding: 0 200px 0 0;
  padding-right: 14.285714285714285%;
}

#about .about-list .about-item:nth-child(2) .box .image:after {
  content: "";
  max-width: 152px;
  width: 75.08896797153025%;
  max-height: 164px;
  height: 78.4688995215311%;
  position: absolute;
  top: 0;
  left: 0;
}

#about .about-list .about-item:nth-child(2) .box {
  flex-direction: row-reverse;
  padding: 30px 500px 30px 100px;
  padding-right: 41.66666666666667%;
  padding-left: 8.333333333333332%;
}

#about .about-list .about-item:nth-child(2) .box .about-item_head {
  left: unset;
  right: -.65em;
}

#about .about-list .about-item:nth-child(2) .box .image {
  max-width: 298px;
  width: 21.285714285714285%;
  max-height: 209px;
  height: fit-content;
  right: 11.5%;
}

#about .about-list .about-item:nth-child(3) .box .image {
  max-width: 267px;
  width: 22.25%;
  max-height: 255px;
  height: fit-content;
  left: 9.416666666666666%;
}

#about .about-list .about-item:nth-child(3) .box .image:after {
  content: "";
  max-width: 166px;
  width: 62.172284644194754%;
  max-height: 133px;
  height: 40.3921568627451%;
  position: absolute;
  bottom: 0;
  right: 0;
  top: unset;
}

#about .about-list .about-item:nth-child(3) .box .image:before {
  content: "";
  max-width: 192px;
  width: 71.91011235955057%;
  max-height: 133px;
  height: 52.156862745098046%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: #f8f5f2;
}


@media (max-width: 750px) {
  #about {
    padding: 30px 0 40px;
  }

  #about .about-list {
    margin-bottom: 25px;
    gap: 56px;
  }

  #about .about-ttl {
    margin-bottom: 35px;
  }

  #about .about-list .about-item {
    padding: 0;
  }

  #about .about-list .about-item .box {
    flex-direction: column;
    height: auto;
    padding: 26px 15px 30px 15px;
  }

  #about .about-list .about-item .box .image img {
    width: auto;
  }

  #about .about-list .about-item:nth-child(1) .box .image {
    max-width: 157px;
    width: 49.84126984126984%;
    max-height: 117px;
    margin: 45px auto 25px;
    position: relative;
    left: 0;
    right: 0;
  }

  #about .about-list .about-item:nth-child(1) .box .infos {
    width: 100%;
  }

  #about .about-list .about-item .box .infos .ttl {
    text-align: center;
  }

  #about .about-list .about-item:nth-child(2) {
    padding: 0;
  }

  #about .about-list .about-item:nth-child(2) .box {
    flex-direction: column;
    padding: 30px 15px;
  }

  #about .about-list .about-item:nth-child(2) .box .image {
    max-width: 203px;
    width: 64.44444444444444%;
    max-height: 142px;
    right: 0;
    left: 0;
    margin: 45px auto 25px;
  }

  #about .about-list .about-item:nth-child(2) .box .infos {
    width: 100%;
  }

  #about .about-list .about-item:nth-child(3) .box .image {
    max-width: 177px;
    width: 62.53968253968254%;
    max-height: 189px;
    margin: 45px auto 25px;
    position: relative;
    left: 0;
    right: 0;
  }

  #about .about-list .about-item:nth-child(3) .box .infos {
    width: 100%;
  }

  #about .about-list .about-item .box .infos p {
    font-size: 1.5rem;
    line-height: 1.786;
  }

  #about .about-list .about-item .box .infos ul {
    margin: 0 0 25px;
  }

  #about .about-list .about-item .box .infos li {
    font-size: 1.6rem;
  }

  #about .about-item_head .sub {
    margin: auto;
    font-size: 2rem;
    line-height: 1;
    text-align: center;
    position: relative;
    display: block;
  }

  #about .about-list .about-item .box .num {
    position: relative;
    font-size: 11rem;
    font-size: min(8.208955223880597vw, 11rem);
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }

  #about .about-list .about-item .box .image {
    margin: auto 0;
    top: 0;
    bottom: 0;
    display: block;
    text-align: center;
    position: relative;
  }

  #about .about-list .about-item:nth-child(2) .box .about-item_head,
  #about .about-item_head {
    margin: auto;
    font-size: unset;
    color: #84796d;
    position: absolute;
    right: 0;
    left: 0;
    top: -2.1em;
    bottom: unset;
    display: flex;
    align-items: baseline;
    justify-content: center;
  }

  #about .about-item_head .sub {
    margin: 0 2px 0 0;
    font-size: 1.6rem;
    display: inline-block;
  }

  #about .about-list .about-item .box .num {
    position: relative;
    font-size: 3rem;
    display: inline-block;
    z-index: 10;
  }

}


#about .about-yaranai .ttl {
  margin-bottom: 8px;
  font-size: 2.8rem;
  text-align: center;
  color: #84796d;
}

#about .about-yaranai .box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 130px;
  padding: 40px;
  background-color: #fff;
}

#about .about-yaranai .box .infos {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

#about .about-yaranai .box .infos .txt {
  margin: 0 0 30px;
  line-height: 1.875;
}

#about .about-yaranai .box .infos .txt:last-child {
  margin-bottom: 0;
}

#about .about-yaranai .box .infos ul {
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  justify-content: center;
}

#about .about-yaranai .box .infos ul li {
  width: calc(50% - 15px);
  padding: 10px 10px 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #e6e6e5;
}

#about .about-yaranai .box .infos ul li .icon {
  width: 18px;
  height: 17px;
}

#about .about-yaranai .box .infos ul li .text {
  width: calc(100% - 24px);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: -0.03em;
  color: #3a3937;
}




@media (max-width: 750px) {
  #about .about-yaranai .ttl {
    margin-bottom: 8px;
    font-size: 2rem;
  }

  #about .about-yaranai .box {
    margin-bottom: 50px;
    padding: 25px 15px 30px;
  }

  #about .about-yaranai .box .infos .txt {
    margin: 0 0 25px;
    font-size: 1.4rem;
    line-height: 1.786;
  }

  #about .about-yaranai .box .infos ul {
    gap: 20px;
    margin: 0 auto 25px;
  }

  #about .about-yaranai .box .infos ul li {
    width: 100%;
    padding: 21px 15px;
    gap: 14px;
    background: #f2f1f1;
  }

  #about .about-yaranai .box .infos ul li .icon {
    width: 17px;
    height: 16px;
  }

  #about .about-yaranai .box .infos ul li .text {
    width: calc(100% - 24px);
    font-size: 1.6rem;
  }
}

#about .about-video {
  padding-bottom: 135px;
  background-color: #e5ddd6;
}

/* ワークフローセクション（お仕事の流れ） */
#workflow {
  position: relative;
  padding: 105px 0 120px 0;
  overflow: hidden;
}

#workflow .workflow-ttl-eng {
  color: #f2f4f5;
}

#workflow .workflow-ttl {
  margin-bottom: 105px;
  color: #3a3937;
}

#workflow .txt-block {
  margin-bottom: 0;
}

#workflow .workflow-list {
  margin-bottom: 80px;
}

#workflow .workflow-list .workflow-item {
  margin-bottom: 70px;
  padding-bottom: 50px;
}

#workflow .workflow-list .workflow-item:last-child {
  margin-bottom: 0px;
}

@media (max-width: 750px) {
  #workflow {
    padding: 30px 0 40px 0;
  }

  #workflow .workflow-ttl {
    margin-bottom: 35px;
  }

  #workflow .workflow-list {
    margin-bottom: 40px;
  }

  #workflow .workflow-list .workflow-item {
    margin-bottom: 45px;
    padding-bottom: 40px;
    gap: 15px;
  }

  #about .about-video {
    padding-bottom: 65px;
  }

}


/* 環境セクション */
#environment {
  position: relative;
  padding: 105px 0 115px 0;
  background-color: #fff;
  overflow: hidden;
}

#environment .environment-ttl-eng {
  color: #eff1ef;
}

#environment .sec-ttl {
  margin-bottom: 75px;
  color: #3a3937;
}

#environment .environment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  gap: 3.428571428571429%;
  margin-bottom: 72px;
}

#environment .environment-list .environment-item {
  display: flex;
  flex-direction: column;
  width: 31%;
  max-width: 435px;
  padding: 40px;
  padding: 2.857142857142857%;
  background-color: #f4f4f4;
}

#environment .environment-list .environment-item .body {
  flex: 1;
}

#environment .environment-list .environment-item .fig {
  /* width: 222px; */
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

#environment .environment-list .environment-item .fig img {
  width: 100%;
  mix-blend-mode: multiply;
  z-index: 10;
  position: relative;
}

#environment .environment-list .environment-item .fig:after {
  content: "";
  width: 211px;
  height: 176px;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  z-index: 1;
}

#environment .environment-list .environment-item:nth-of-type(1) .fig {
  max-width: 295px;
  width: 83.09859154929578%;
  max-height: 204px;
  margin-top: 0;
  margin-bottom: 25px;
}

#environment .environment-list .environment-item:nth-of-type(1) .fig:after {
  content: "";
  max-width: 204px;
  width: 69.15254237288136%;
  max-height: 107px;
  height: 52.450980392156865%;
  top: unset;
  bottom: 0;
  right: 0;
  /* background: #f8f5f2; */
}

#environment .environment-list .environment-item:nth-of-type(1) .fig:before {
  content: "";
  max-width: 124px;
  width: 42.03389830508474%;
  max-height: 88px;
  height: 43.13725490196079%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  display: block;
}

#environment .environment-list .environment-item:nth-of-type(2) .fig {
  max-width: 297px;
  width: 83.66197183098592%;
  max-height: 204px;
  margin-bottom: 35px;
}

#environment .environment-list .environment-item:nth-of-type(2) .fig:after {
  content: "";
  max-width: 233px;
  width: 78.45117845117845%;
  max-height: 151px;
  height: 74.01960784313727%;
  margin: auto;
  top: 0;
  right: 0;
}

#environment .environment-list .environment-item:nth-of-type(3) .fig {
  max-width: 311px;
  width: 87.60563380281691%;
  max-height: 208px;
  margin-top: 2px;
}

#environment .environment-list .environment-item:nth-of-type(3) .fig:after {
  content: "";
  max-width: 219px;
  width: 70.41800643086816%;
  max-height: 109px;
  height: 52.40384615384615%;
  top: 0;
  right: 0;
}

#environment .environment-list .environment-item.fig img {
  width: 100%;
}

#environment .environment-list .environment-item .ttl {
  min-height: 2em;
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.357;
}

#environment .environment-list .environment-item ul li {
  line-height: 1.875;
  letter-spacing: 0.01em;
  text-indent: -1em;
  padding-left: 1em;
}

#environment .environment-lead {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 100px;
}

#environment .environment-lead p {
  margin-bottom: 40px;
}

#environment .check-list {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  align-content: center;
  flex-flow: row wrap;
  gap: 10px 30px;
}

#environment .check-list li {
  width: calc(50% - 15px);
  padding-left: 42px;
  padding-right: 35px;
  letter-spacing: -0.02em;
  background-color: #FFF;
}

#environment .check-list li .mark {
  left: 20px;
}

#environment .environment-lead .txt {
  color: #3a3937;
  line-height: 1.875;
  letter-spacing: 0.025em;
}

@media (max-width: 750px) {
  #environment {
    padding: 30px 0 60px;
  }

  #environment .environment-ttl-eng {
    top: -5px;
    font-size: 4rem;
  }

  #environment .sec-ttl {
    margin-bottom: 30px;
  }

  #environment .environment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 50px;
    flex-flow: row wrap;
    justify-content: center;
  }

  #environment .environment-list .environment-item {
    width: 100%;
    padding: 40px 15px;
  }

  #environment .environment-list .environment-item .body .fig {
    margin-bottom: 20px;
  }

  #environment .environment-list .environment-item .body .fig img {
    width: auto;
  }

  #environment .environment-list .environment-item:nth-of-type(1) .body .fig {
    max-width: 213px;
    width: 67.61904761904762%;
    max-height: 147px;
    margin: 0 auto 30px;
  }

  #environment .environment-list .environment-item:nth-of-type(2) .body .fig {
    max-width: 189px;
    width: 60%;
    max-height: 130px;
    margin: 0 auto 30px;
  }

  #environment .environment-list .environment-item:nth-of-type(3) .body .fig {
    max-width: 183px;
    width: 58.0952380952381%;
    max-height: 122px;
    margin: 0 auto 15px;
  }

  #environment .environment-list .environment-item .body {
    flex: 1;
  }

  #environment .environment-list .environment-item .fig {
    width: 220px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
  }

  #environment .environment-list .environment-item.fig img {
    width: 100%;
  }

  #environment .environment-list .environment-item ul li {
    font-size: 1.5rem;
    line-height: 1.786;
  }

  #environment .environment-lead .txt {
    font-size: 1.5rem;
    line-height: 1.786;
  }


  #environment .environment-lead {
    margin: 0 auto 40px;
  }

  #environment .environment-lead p {
    margin-bottom: 25px;
  }

  #environment .check-list {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
  }

  #environment .check-list li {
    width: 100%;
    min-height: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }

  #environment .check-list li .mark {
    left: 10px;
  }

  #environment .environment-lead .txt {
    color: #3a3937;
    line-height: 1.875;
    letter-spacing: 0.025em;
  }

  #environment .environment-list .environment-item .ttl {
    min-height: unset;
  }
}

/* チェックリストセクション（マッチ度診断） */
#checklist {
  position: relative;
  padding: 70px 0 120px;
  background: #f4f4f4;
}

#checklist .container {
  z-index: 1;
}

#checklist .checklist-row {
  display: flex;
  flex-wrap: wrap;
}

#checklist .checklist-row .checklist-col {
  position: relative;
  width: 50%;
}

#checklist .checklist-row .check-list {
  margin: 0 0 55px;
}

#checklist .checklist-row .check-list:nth-of-type(2) {
  margin: 0 0 85px;
}

#checklist .checklist-row .checklist-col p {
  margin-bottom: 50px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}

#checklist h4.checklist-txt.item-ttl {
  margin-bottom: 40px;
}

#checklist p+h4.checklist-txt.item-ttl {
  margin-top: 74px;
}

#checklist h4.checklist-txt.item-ttl .sub-ttl {
  margin-top: 10px;
  font-size: 1.8rem;
  display: block;
}

#checklist .checklist-row .checklist-col .cta-row {
  justify-content: flex-start;
}

#checklist .checklist-row .checklist-col .cta-row .btn-action {
  margin: 0;
}

#checklist .checklist-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: url("../img/checklist_bg.jpg") center 0 no-repeat;
  background-size: cover;
}

@media (max-width: 750px) {
  #checklist {
    padding: 0;
  }

  #checklist .container {
    padding: 0;
  }

  #checklist .checklist-row .checklist-col {
    width: 100%;
    padding: 30px 15px 60px;
  }

  #checklist .checklist-row .check-list {
    margin: 0 0 28px;
  }

  #checklist .checklist-row .check-list:nth-of-type(2) {
    margin: 0 0 42px;
  }

  #checklist .checklist-row .checklist-col p {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  #checklist h4.checklist-txt.item-ttl {
    margin-bottom: 20px;
  }

  #checklist p+h4.checklist-txt.item-ttl {
    margin-top: 40px;
  }

  #checklist h4.checklist-txt.item-ttl .sub-ttl {
    margin-top: 5px;
    font-size: 1.5rem;
  }

  #checklist .checklist-row .checklist-col .checklist-ttl {
    margin: 0;
  }

  #checklist h4.checklist-txt.item-ttl {
    margin-bottom: 25px;
  }

  #checklist h4.checklist-txt.item-ttl:first-child {
    margin-bottom: 15px;
  }

  #checklist .checklist-row .checklist-col .cta-row .btn-action {
    margin: 0 auto;
  }

  #checklist .checklist-row .checklist-col:nth-child(1) {
    min-height: 182px;
    padding: 35px 15px 35px;
    background: url("../img/checklist_bg_sp.jpg") no-repeat;
    background-size: cover;
  }

  #checklist .checklist-bg {
    display: none;
  }
}

/* ボイスセクション（先輩社員の声） */
#voice {
  position: relative;
  padding: 105px 0 115px 0;
  background-color: #bac2bb;
  overflow: hidden;
}

#voice .voice-ttl-eng {
  color: #c9cfca;
}

#voice .voice-ttl {
  margin-bottom: 70px;
  color: #3a3937;
}

#voice .voice-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#voice .voice-list .voice-item {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  gap: 5.454545454545454%;
  padding: 50px;
  color: #3a3937;
  background-color: #ffffff;
}

#voice .voice-list .voice-item .left {
  max-width: 410px;
  width: 37.27272727272727%;
}

#voice .voice-list .voice-item .left .ttl {
  margin-bottom: 20px;
}

#voice .voice-list .voice-item .left .name {
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.9;
  color: #3a3937;
}

#voice .voice-list .voice-item .left .fig img {
  width: 100%;
}

#voice .voice-list .voice-item .right {
  width: calc(100% - 42.72727272727273%);
  /* width: 100%; */
}

#voice .voice-list .voice-item .right p {
  margin: 0 0 30px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}

#voice .voice-list .voice-item .right p:last-child {
  margin: 0;
}


@media (max-width: 750px) {
  #voice {
    padding: 30px 0 40px;
  }

  #voice .voice-ttl {
    margin-bottom: 35px;
  }


  #voice .voice-list {
    gap: 25px;
  }

  #voice .voice-list .voice-item {
    gap: 20px;
    padding: 25px 15px 30px;
    flex-direction: column;
  }

  #voice .voice-list .voice-item .left {
    width: 100%;
  }

  #voice .voice-list .voice-item .left .ttl {
    margin-bottom: 4px;
  }

  #voice .voice-list .voice-item .left .name {
    margin-bottom: 18px;
    font-size: 1.6rem;
    letter-spacing: 0;
  }

  #voice .voice-list .voice-item .left .fig img {
    width: 100%;
  }

  #voice .voice-list .voice-item .right {
    width: 100%;
  }

  #voice .voice-list .voice-item .right p {
    margin: 0 0 25px;
    font-size: 1.5rem;
    line-height: 1.786;
  }
}

/* 要件セクション（募集要項） */
#requirements {
  padding: 105px 0 120px 0;
}

#requirements .requirements-row {
  display: flex;
  flex-wrap: wrap;
}

#requirements .requirements-row .left {
  width: 37%;
  max-width: 518px;
  position: relative;
  display: flex;
}

@media (max-width: 750px) {
  #requirements {
    padding: 30px 0 40px;
  }

  #requirements .requirements-row {
    display: block;
  }

  #requirements .requirements-row .left {
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    margin-bottom: 30px;
    /* border: solid; */
  }
}

#requirements .requirements-row .left .requirements-ttl {
  color: #3a3937;
}

@media (max-width: 750px) {
  #requirements .requirements-row .left .requirements-ttl {
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}

#requirements .requirements-row .left .fig-1 {
  max-width: 368px;
  /* width: 71.04247104247105%; */
  width: calc(100% - 30px);
  /* max-height: 691px; */
  height: fit-content;
  position: absolute;
  top: 416px;
  top: 12.110625909752546%;
  left: 0;
}

#requirements .requirements-row .left .fig-1 img {
  width: 100%;
}

#requirements .requirements-row .left .fig-2 {
  width: calc(100% - 30px);
  position: absolute;
  top: 44.48326055312955%;
  left: 0;
}

#requirements .requirements-row .left .fig-3 {
  width: calc(100% - 30px);
  position: absolute;
  top: 76.53566229985444%;
  left: 35px;
  left: 6.94980694980695%;
}



@media (max-width: 750px) {
  #requirements .requirements-row .left .fig-1 {
    max-width: 227px;
    width: 65.79710144927536%;
    max-height: 270px;
    height: auto;
    margin: 0;
    top: 0;
    right: 0;
    left: unset;
    position: relative;
    /* margin-top: -156px; */
    /* text-align: right; */
  }

  #requirements .requirements-row .left .fig-1 img {
    width: auto;
  }

  #requirements .requirements-row .left .fig-2 {
    display: none;
  }

  #requirements .requirements-row .left .fig-3 {
    display: none;
  }
}

#requirements .requirements-row .right {
  width: 63%;
}

@media (max-width: 750px) {
  #requirements .requirements-row .right {
    width: 100%;
  }
}

/* 応募フローセクション */
#applicatin {
  position: relative;
  padding: 105px 0 110px 0;
  background-color: #f1f1f1;
  overflow: hidden;
}

#applicatin .applicatin-ttl-eng {
  top: -25px;
  font-size: 175px;
  color: #dedede;
}

#applicatin .applicatin-ttl {
  color: #3a3937;
}

#applicatin .applicatin-list {
  margin-bottom: 100px;
}

#applicatin .applicatin-list .applicatin-item {
  margin-bottom: 70px;
  padding-bottom: 50px;
}

#applicatin .applicatin-list .applicatin-item .body .cta-row .btn-action {
  max-width: 450px;
  height: 60px;
  font-size: 30px;
  font-weight: bold;
}

#applicatin .flow-list li .infos .body .ttl {
  margin-bottom: 33px;
}

#applicatin .flow-list li .infos .body p {
  margin-bottom: 0;
}

#applicatin .flow-list li .infos .body p.dot-big {
  margin-top: 30px;
  margin-bottom: 0;
  font-weight: 700;
}

#applicatin .flow-list li .infos .body p.dot-big+p {
  margin-bottom: 35px;
}

#applicatin .applicatin-list .applicatin-item .body .tbl-wrapper {
  margin: 30px 0;
}

#applicatin p.spec.sankou {
  margin-bottom: 0;
}

#applicatin table {
  border-spacing: 3px;
}

#applicatin table td {
  border: none;
}

#applicatin .applicatin-list .applicatin-item .body .tbl-wrapper table tbody tr td:nth-child(2) {
  background-color: #ffffff;
}

#applicatin .flow-list li .infos .body td p.dot {
  margin-bottom: 0;
}



@media (max-width: 750px) {
  #applicatin {
    padding: 30px 0 40px;
  }

  #applicatin .applicatin-ttl-eng {
    top: -5px;
    font-size: 4rem;
  }

  #applicatin .applicatin-ttl {
    margin-bottom: 30px;
  }

  #applicatin .applicatin-list {
    margin-bottom: 35px;
  }

  #applicatin .applicatin-list .applicatin-item {
    margin-bottom: 45px;
    padding-bottom: 30px;
    gap: 20px;
  }

  #applicatin .applicatin-list .applicatin-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  #applicatin .applicatin-list .applicatin-item .body .cta-row .btn-action {
    max-width: 450px;
    height: 60px;
    font-size: 30px;
    font-weight: bold;
  }

  #applicatin .flow-list li .infos .body .ttl {
    margin-bottom: 15px;
  }

  #applicatin .flow-list li .infos .body p.dot-big {
    margin-top: 25px;
  }

  #applicatin .flow-list li .infos .body p.dot-big+p {
    margin-bottom: 20px;
  }

  #applicatin .applicatin-list .applicatin-item .body .cta-row .btn-action {
    width: 100%;
    max-width: unset;
    height: 50px;
  }

  #applicatin .applicatin-list .applicatin-item .body .tbl-wrapper {
    margin: 15px 0;
  }

  #applicatin table {
    border-spacing: 0;
  }
}

/* FAQセクション（よくある質問） */
#faq {
  position: relative;
  padding: 105px 0 120px;
  overflow: hidden;
}

#faq .faq-ttl-eng {
  color: rgba(86, 84, 81, 0.15);
}

#faq .faq-ttl {
  margin-bottom: 80px;
  color: #3a3937;
}

#faq .faq-group {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 95px;
}

#faq .faq-group .faq-group-ttl {
  margin-bottom: 70px;
}

#faq .faq-group .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

#faq .faq-group .faq-list .faq-item {
  width: 100%;
}

#faq .faq-group .faq-list .faq-item p {
  position: relative;
  transition: all 0.3s ease;
}

#faq .faq-group .faq-list .faq-item p.q {
  padding: 10px 65px;
  background-color: #e6e6e5;
  cursor: pointer;
}

#faq .faq-group .faq-list .faq-item p.q .mark {
  position: absolute;
  left: 14px;
  top: -25px;
  font-family: "Raleway", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  color: #afaca9;
}

#faq .faq-group .faq-list .faq-item p.q .text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: #3a3937;
}

#faq .faq-group .faq-list .faq-item p.q .plus {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
}

#faq .faq-group .faq-list .faq-item p.q .plus::before,
#faq .faq-group .faq-list .faq-item p.q .plus::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background-color: #3a3937;
}

#faq .faq-group .faq-list .faq-item p.q .plus::after {
  transform: translateY(-50%) rotate(90deg);
  transition: ease 0.3s all;
}

#faq .faq-group .faq-list .faq-item p.q.open .plus::after {
  transform: translateY(-50%);
}

#faq .faq-group .faq-list .faq-item div.a {
  /*display: none;*/
  height: 0;
  overflow: hidden;
  padding: 0 125px;
  transition: all .5s ease;
}

#faq .faq-group .faq-list .faq-item div.a p {
  padding-top: 30px;
}
#faq p.txtC{
	text-align: center;
	margin-bottom: 100px;
}

@media (max-width: 750px) {
  #faq {
    padding: 30px 0 40px;
  }

  #faq .faq-group {
    margin-bottom: 45px;
  }

  #faq .faq-group .faq-group-ttl {
    margin-bottom: 46px;
  }

  #faq .faq-group .faq-list {
    gap: 45px;
  }

  #faq .faq-ttl {
    margin-bottom: 25px;
  }

  #faq .faq-group .faq-list .faq-item p {
    position: relative;
    transition: all 0.3s ease;
  }

  #faq .faq-group .faq-list .faq-item p.q {
    padding: 10px 65px;
    background-color: #e6e6e5;
    cursor: pointer;
  }

  #faq .faq-group .faq-list .faq-item p.q {
    padding: 14px 42px 16px 27px;
  }

  #faq .faq-group .faq-list .faq-item p.q .mark {
    top: -22px;
    left: 5px;
    font-size: 3.5rem;
  }

  #faq .faq-group .faq-list .faq-item p.q .text {
    font-size: 1.6rem;
    line-height: 1.563;
  }

  #faq .faq-group .faq-list .faq-item p.q .plus {
    width: 20px;
    height: 20px;
    right: 14px;
  }

  #faq .faq-group .faq-list .faq-item p.q .plus::before,
  #faq .faq-group .faq-list .faq-item p.q .plus::after {
    height: 3px;
  }

  #faq .faq-group .faq-list .faq-item div.a {
    padding: 0 15px 0 27px;
  }

  #faq .faq-group .faq-list .faq-item div.a p {
    padding-top: 25px;
    font-size: 1.6rem;
    line-height: 1.563;
  }
}

#faq .faq-group:last-child {
  margin-bottom: 0;
}

/* 会社概要セクション */
#company {
  position: relative;
  padding: 105px 0 110px 0;
  background-color: #bac2bb;
  overflow: hidden;
}
#company .company-ttl-eng{
  color: #c9cfca;
}
#company .sec-ttl {
  color: #fff;
}

#company .company-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 100px;
}

#company .company-table td {
  border-color: #bac2bb;
}

#company table tbody tr td:nth-child(2) {
  background: #ffffff;
}

@media (max-width: 750px) {
  #company {
    padding: 30px 0 40px 0;
  }

  #company h3.company-ttl {
    margin-bottom: 30px;
  }

  #company .company-table {
    margin-bottom: 35px;
  }
}



@media (min-width:751px) and (max-width: 1180px) {
  #recruitment .body {
    padding-top: 5.208333333333334dvw;
  }

  #value {
    padding-top: 5.989583333333334dvw;
  }

  #reason,
  #about,
  #workflow,
  #environment,
  #voice,
  #requirements,
  #applicatin,
  #faq,
  #company {
    padding-top: 5.989583333333334dvw;
  }

  #recruitment .body .body-row .body-col:nth-child(1) {
    padding-right: 40px;
  }

}


@media (min-width: 751px) {
  .footer__gotop {
    display: none;
  }
}

@media (max-width: 750px) {
  .footer__gotop {
    position: fixed;
    bottom: 120px;
    right: 40px;
    top: unset;
    width: 35px;
    height: 35px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #3a3937;
    opacity: 0;
  }

  .footer__gotop.fade-in {
    -webkit-animation: slideUpFadeIn 0.3s ease-out;
    animation: slideUpFadeIn 0.3s ease-out;
  }

  .footer__gotop.fixed {
    opacity: 1;
    position: fixed;
    bottom: 150px;
    right: 40px;
    top: unset;
  }

  .footer__gotop.fixed:hover {
    opacity: 0.6;
  }

  .footer__gotop.fixed,
  .footer__gotop {
    right: 15px;
    bottom: 77px;
    width: 39px;
    height: 39px;
    align-self: flex-end;
  }

  .goto-top__img {
    width: 19px;
  }
}

/*2025/12 ADD*/
#value .cta-row{
	margin-top: 100px;
}
#value .check-list li{
	background-color: #fff;
}
#about .container{
	margin-bottom: 100px;
}
#about .aboutList{
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
    gap: 50px;
}
#about .aboutList .boxTwo{
	    width: calc(50% - 100px);
}
#about .aboutList .boxTwo .whiteBox{
	background: #f4f6f7;
	padding: 50px;
	min-height: 550px;
}
#about .aboutList .boxTwo h3{
	font-size: 2.5rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    color: #596b78;
}
#about .aboutList .boxTwo .whiteBox img{
	max-height: 200px;
    text-align: center;
    margin: auto;
    display: block;
}
#workflow .flow-list>li .infos .head .text {
  font-size: clamp(2rem, 1.487rem + 1.09vw, 2.8rem);
	writing-mode: horizontal-tb;
}


@media (max-width: 750px) { 

	#about .aboutList{
		display: block;
	}
	#about .aboutList .boxTwo{
		width: 100%;
		margin-bottom: 50px;
	}
	#about .aboutList .boxTwo:last-child{
		margin-bottom: 0px;
	}
	#about .aboutList .boxTwo .whiteBox{
	min-height: auto;
	}
	#workflow .flow-list>li .infos .head {
		width: 75px;}
	#workflow .flow-list>li .infos .head .text {
		font-size: 1.8rem;
	}
	#about .aboutList .boxTwo .whiteBox {
		padding: 30px;
	}

}

/*#voice.message*/
#voice.message {
    background-color: #c7d0d6;
}
#voice.message .voice-ttl-eng {
    color: #d3dadf;
}
#voice.message .voice-ttl {
    color: #fff;
}
#voice.message .voice-list .voice-item .left .ttl{
	font-size: 1.57em;
}
#voice.message ul li.voice-item .left .fig{
	margin-bottom: 20px;
}
#voice.message .voice-list .voice-item .right p.txtR{
	text-align: right;
	font-weight: bold;
	font-size: 1.2em;
	line-height: 1em;
}
#voice.message .voice-list .voice-item .right p.txtR span{
	display: block;
	font-size: 0.7em;
	font-weight: normal;
}

@media (max-width: 750px) { 

	#voice.message .voice-list .voice-item .left .ttl{
	font-size: 2rem;
}

}

/*ADD 2026/02*/
.cta-row .btn-entry div{
	display: flex;
	justify-content: center;
	align-items: center;
}
.cta-row .btn-entry div i{
	display: block;
}
.cta-row .btn-entry div span{
	display: block;
	padding-left: 5px;
}
#about .flow-list{
	background: #f1f3f1;
	padding: 50px;
}
#about .flow-list>li{
	margin-bottom: 50px;
	/*padding-bottom: 50px;*/
	
}
#about .environment-lead {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 50px;
}
#about .environment-lead .txt {
    line-height: 1.875;
    letter-spacing: 0.025em;
}
#about .flow-list>li .infos .body .ttl span{
	display: block;
	font-size: 0.6em;
	padding-top: 10px;
}
#about .flow-list>li:last-child{
	border-bottom: none;
}
#value.value02 .environment-lead {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 50px;
}
#value.value02 .environment-lead .txt {
    line-height: 1.875;
    letter-spacing: 0.025em;
}
#value.value02 .value-list .value-item .box .num{
	    flex-direction: column;
}
#value.value02 .value-list .value-item .box .num .text{
	font-size: 0.2em;
    display: block;
    writing-mode: vertical-rl;
}
#recruitment .check-list li:nth-child(even) {
    background-color: rgba(242, 242, 242);
}

@media (max-width: 768px) { 
	
#about .flow-list{
	background: #f1f3f1;
	padding: 30px;}
#about .flow-list>li .image{
		margin-bottom: 20px;}
#about .flow-list>li .infos .body .ttl span{
	font-size: 0.7em;}
#value.value02 .value-list .value-item .box .num .text{
	font-size: 0.4em;}
	
}