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

/* HTML5要素の表示をブロックレベルに設定 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* 画像のボーダーを削除 */
img {
  border-style: none;
}

/* リンクのテキスト装飾をリセット */
a {
  text-decoration: none;
  color: inherit;
}

/* フォーム要素の外観をリセット */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/* ボタンと入力タイプをリセット */
button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

.font-poppins {
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-Noto-Sans-CJK-JP {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 200;
  font-style: normal;
}

.noto-serif {
  font-family: noto-serif, serif;
  font-weight: 400;
  font-style: normal;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #333333;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
}
body.no-scroll {
  overflow: hidden;
}

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

.en {
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.btn a {
  border: solid 1px #333333;
  padding: 10px 60px 10px 70px;
  border-radius: 50px;
  font-weight: 700;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333333;
  position: absolute;
  top: 50%;
  left: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn a:hover {
  background: #333333;
  color: white;
}
.btn a:hover::before {
  background: white;
  width: 40px;
  height: 0.5px;
  border-radius: 0px;
  left: 20px;
}

.sp {
  display: none;
}

@media screen and (max-width: 820px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background: #0005be;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}
#loading .spinner {
  width: 60px;
  height: 60px;
  background-color: white;
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}
@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}
@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

.copy .fade-in-text-fv {
  position: relative;
  overflow: hidden;
  margin: 5px;
}
.copy .fade-in-text-fv h2,
.copy .fade-in-text-fv p {
  opacity: 0;
  /* 位置を動かさないので transform は使わない */
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.copy .fade-in-text-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 0;
}
.copy .fade-in-text-fv > * {
  position: relative;
  z-index: 1;
}
.copy .fade-in-text-fv.show::before {
  -webkit-animation: copy-wipe 1.2s ease forwards;
          animation: copy-wipe 1.2s ease forwards;
}
.copy .fade-in-text-fv.show h2,
.copy .fade-in-text-fv.show p {
  opacity: 1;
  /* 位置は最初から同じなので transform 指定は不要 */
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

@-webkit-keyframes copy-wipe {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}

@keyframes copy-wipe {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}
.page-top-fv {
  position: relative;
  z-index: 1;
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.page-top-fv .swiper-slide-active .swiper-img,
.page-top-fv .swiper-slide-duplicate-active .swiper-img,
.page-top-fv .swiper-slide-prev .swiper-img {
  -webkit-animation: zoomUp 12s linear 0s normal both;
          animation: zoomUp 12s linear 0s normal both;
}
.page-top-fv .swiper-slide img {
  height: auto;
  width: 100%;
}

.fade-in-text {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: 2s;
  transition: 2s;
}
.fade-in-text.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.fade-in-text.delay1 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.fade-in-text.delay2 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.fade-in-text.delay3 {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.fade-in-text.delay4 {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.fade-in-text.delay5 {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}

.fade-in-section {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: 2s;
  transition: 2s;
}
.fade-in-section.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.fade-in-section.delay1 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.fade-in-section.delay2 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.fade-in-section.delay3 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.fade-in-section.delay4 {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.fade-in-section.delay5 {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.fade-in-section.delay6 {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

.page-top-fv .container .wrapper {
  position: relative;
}
.page-top-fv .container .wrapper .header-logo {
  width: 280px;
  padding: 20px;
  background: white;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 2;
}
.page-top-fv .container .wrapper .kv-wrapper {
  width: 95%;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.page-top-fv .container .wrapper .copy {
  position: absolute;
  bottom: 15%;
  left: 8%;
  z-index: 2;
}
.page-top-fv .container .wrapper .copy .title {
  padding: 7px 0;
  color: white;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  font-size: clamp(28px, 4.3vw, 120px);
  font-weight: 600;
  letter-spacing: 5px;
}
.page-top-fv .container .wrapper .copy .subtitle {
  padding: 3px 0;
  color: white;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  font-size: clamp(16px, 1.5vw, 44px);
  letter-spacing: 5px;
  margin-top: 10px;
}
.page-top-fv .container .wrapper header {
  position: absolute;
  top: 40px;
  right: 20px;
  z-index: 2;
}
.page-top-fv .container .wrapper header .pc-menu-wrapper nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li {
  font-weight: 600;
  color: white;
  letter-spacing: 2px;
}
.page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li + li {
  margin-left: 50px;
}
.page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li a {
  position: relative;
}
.page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li a:before {
  content: "";
  width: 100%;
  height: 1px;
  background: white;
  position: absolute;
  bottom: -4px;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li a:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li.contact a {
  padding: 20px 30px;
  background: #333333;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li.contact a:hover {
  background: white;
  border-bottom: rgba(255, 255, 255, 0.4);
  color: #333333;
}
.page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li.contact a:before {
  display: none;
}
.page-top-fv .container .wrapper .insta {
  font-size: 35px;
  position: absolute;
  bottom: 3%;
  left: 1.3%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-top-fv .container .wrapper .insta:hover {
  scale: 1.1;
}

@media screen and (max-width: 1050px) {
  .page-top-fv .container .wrapper {
    position: relative;
  }
  .page-top-fv .container .wrapper .header-logo {
    width: 150px;
    padding: 7px;
    background: white;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 2;
  }
  .page-top-fv .container .wrapper .kv-wrapper {
    width: 95%;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }
  .page-top-fv .container .wrapper .copy {
    position: absolute;
    bottom: 15%;
    left: 8%;
    z-index: 2;
  }
  .page-top-fv .container .wrapper .copy .title {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: clamp(28px, 4.3vw, 120px);
    font-weight: 600;
    letter-spacing: 5px;
  }
  .page-top-fv .container .wrapper .copy .subtitle {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: clamp(16px, 1.5vw, 44px);
    letter-spacing: 5px;
    margin-top: 10px;
  }
  .page-top-fv .container .wrapper header {
    position: absolute;
    top: 40px;
    right: 20px;
    z-index: 2;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li + li {
    margin-left: 35px;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li a {
    position: relative;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li a:before {
    content: "";
    width: 100%;
    height: 1px;
    background: white;
    position: absolute;
    bottom: -4px;
    left: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li a:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li.contact a {
    padding: 13px 26px;
    background: #333333;
    color: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li.contact a:hover {
    background: white;
    border-bottom: rgba(255, 255, 255, 0.4);
    color: #333333;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li.contact a:before {
    display: none;
  }
  .page-top-fv .container .wrapper .insta {
    font-size: 30px;
    position: absolute;
    bottom: 3%;
    left: 1.3%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-top-fv .container .wrapper .insta:hover {
    scale: 1.1;
  }
}
@media screen and (max-width: 820px) {
  .page-top-fv {
    position: relative;
    z-index: 3;
  }
  .page-top-fv .container .wrapper {
    position: relative;
  }
  .page-top-fv .container .wrapper .header-logo {
    width: 200px;
    padding: 10px;
    background: white;
    position: absolute;
    top: 5px;
    left: 7px;
    z-index: 2;
  }
  .page-top-fv .container .wrapper .kv-wrapper {
    width: 100%;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }
  .page-top-fv .container .wrapper .copy {
    position: absolute;
    bottom: 15%;
    left: 20px;
    z-index: 2;
  }
  .page-top-fv .container .wrapper .copy .title {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.3em;
  }
  .page-top-fv .container .wrapper .copy .subtitle {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: 18px;
    line-height: 1.3em;
    letter-spacing: 2px;
    margin-top: 10px;
  }
  .page-top-fv .container .wrapper header {
    position: absolute;
    top: 40px;
    right: 20px;
    z-index: 2;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li + li {
    margin-left: 35px;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li a {
    position: relative;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li a:before {
    content: "";
    width: 100%;
    height: 1px;
    background: white;
    position: absolute;
    bottom: -4px;
    left: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li a:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li.contact a {
    padding: 13px 26px;
    background: #333333;
    color: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li.contact a:hover {
    background: white;
    border-bottom: rgba(255, 255, 255, 0.4);
    color: #333333;
  }
  .page-top-fv .container .wrapper header .pc-menu-wrapper nav ul li.contact a:before {
    display: none;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .menu-icon {
    background: #333333;
    position: fixed;
    z-index: 999;
    top: 8px;
    right: 8px;
    list-style: none;
    width: 40px;
    height: 40px;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .menu-icon:hover {
    cursor: pointer;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .menu-icon li {
    color: #333333;
    width: 20px;
    height: 1px;
    background: white;
    position: absolute;
    left: 27%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .menu-icon li:nth-child(1) {
    top: 30%;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .menu-icon li:nth-child(2) {
    top: 48.7%;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .menu-icon li:nth-child(3) {
    bottom: 30%;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .menu-icon.active li:nth-child(1) {
    top: 48%;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .menu-icon.active li:nth-child(2) {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .menu-icon.active li:nth-child(3) {
    top: 48%;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .sp-menu {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 1.2s;
    transition: 1.2s;
    opacity: 0;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .sp-menu.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .sp-menu .logo {
    width: 50%;
    max-width: 230px;
    margin: 20px;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .sp-menu nav ul {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding-bottom: 100px;
    margin-top: 60px;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .sp-menu nav ul li {
    text-align: center;
    padding: 30px 0;
    text-shadow: none;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .sp-menu nav ul li + li {
    border-top: solid 1px rgba(0, 0, 0, 0.2);
    margin-top: 0;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .sp-menu nav ul li a {
    display: block;
    text-decoration: none;
    color: #333333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-top-fv .container .wrapper header .sp-menu-wrapper .sp-menu nav ul li a:hover {
    opacity: 0.5;
  }
  .page-top-fv .container .wrapper .insta {
    font-size: 30px;
    position: absolute;
    bottom: 3%;
    left: 1.3%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-top-fv .container .wrapper .insta:hover {
    scale: 1.1;
  }
}
.page-child .container .wrapper {
  position: relative;
}
.page-child .container .wrapper .header-logo {
  width: 280px;
  padding: 20px;
  background: white;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
}
.page-child .container .wrapper .kv-image {
  width: 95%;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.page-child .container .wrapper .kv-image::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #333333;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
.page-child .container .wrapper .copy {
  position: absolute;
  top: 50%;
  left: 8%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.page-child .container .wrapper .copy .title {
  color: white;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  font-size: clamp(28px, 4.3vw, 120px);
  font-weight: 600;
  letter-spacing: 5px;
}
.page-child .container .wrapper .copy .subtitle {
  color: white;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  font-size: clamp(16px, 1.5vw, 44px);
  letter-spacing: 5px;
  margin-top: 10px;
}
.page-child .container .wrapper header {
  position: absolute;
  top: 40px;
  right: 20px;
  z-index: 2;
}
.page-child .container .wrapper header .pc-menu-wrapper nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.page-child .container .wrapper header .pc-menu-wrapper nav ul li {
  font-weight: 600;
  color: white;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.page-child .container .wrapper header .pc-menu-wrapper nav ul li + li {
  margin-left: 50px;
}
.page-child .container .wrapper header .pc-menu-wrapper nav ul li a {
  position: relative;
}
.page-child .container .wrapper header .pc-menu-wrapper nav ul li a:before {
  content: "";
  width: 100%;
  height: 1px;
  background: white;
  position: absolute;
  bottom: -4px;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-child .container .wrapper header .pc-menu-wrapper nav ul li a:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.page-child .container .wrapper header .pc-menu-wrapper nav ul li.contact a {
  padding: 20px 30px;
  background: #333333;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-child .container .wrapper header .pc-menu-wrapper nav ul li.contact a:hover {
  background: rgb(255, 255, 255);
  border-bottom: rgba(255, 255, 255, 0.4);
  color: #333333;
}
.page-child .container .wrapper header .pc-menu-wrapper nav ul li.contact a:before {
  display: none;
}
.page-child .container .wrapper .insta {
  font-size: 35px;
  position: absolute;
  bottom: 3%;
  left: 1.3%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-child .container .wrapper .insta:hover {
  scale: 1.1;
}

.page-child-recrute .container .wrapper {
  position: relative;
}
.page-child-recrute .container .wrapper .header-logo {
  width: 280px;
  padding: 20px;
  background: white;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
}
.page-child-recrute .container .wrapper .kv-image {
  width: 95%;
  margin-left: auto;
  position: relative;
  z-index: 1;
  position: relative;
}
.page-child-recrute .container .wrapper .kv-image::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #333333;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
.page-child-recrute .container .wrapper .copy {
  position: absolute;
  top: 60%;
  left: 8%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.page-child-recrute .container .wrapper .copy .title {
  color: white;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  font-size: clamp(16px, 2vw, 40px);
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 1px 1px 6px #333333;
}
.page-child-recrute .container .wrapper .copy .subtitle {
  color: white;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  font-size: clamp(16px, 2.5vw, 60px);
  letter-spacing: 8px;
  line-height: 1.2em;
  margin-top: 20px;
  font-family: noto-serif, serif;
  font-weight: 400;
  font-style: normal;
  text-shadow: 1px 1px 6px #333333;
}
.page-child-recrute .container .wrapper header {
  position: absolute;
  top: 40px;
  right: 20px;
  z-index: 2;
}
.page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li {
  font-weight: 600;
  color: white;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li + li {
  margin-left: 50px;
}
.page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li a {
  position: relative;
}
.page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li a:before {
  content: "";
  width: 100%;
  height: 1px;
  background: white;
  position: absolute;
  bottom: -4px;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li a:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li.contact a {
  padding: 20px 30px;
  background: #c3161d;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li.contact a:hover {
  background: rgba(255, 255, 255, 0.4);
  border-bottom: rgba(255, 255, 255, 0.4);
  color: #333333;
}
.page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li.contact a:before {
  display: none;
}
.page-child-recrute .container .wrapper .insta {
  font-size: 35px;
  position: absolute;
  bottom: 3%;
  left: 1.3%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-child-recrute .container .wrapper .insta:hover {
  scale: 1.1;
}

@media screen and (max-width: 1280px) {
  .page-child .container .wrapper {
    position: relative;
  }
  .page-child .container .wrapper .header-logo {
    width: 280px;
    padding: 20px;
    background: white;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 2;
  }
  .page-child .container .wrapper .kv-image {
    width: 95%;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }
  .page-child .container .wrapper .kv-image.cover::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
  }
  .page-child .container .wrapper .copy {
    position: absolute;
    top: 60%;
    left: 8%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
  }
  .page-child .container .wrapper .copy .title {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: clamp(28px, 4.3vw, 120px);
    font-weight: 600;
    letter-spacing: 5px;
  }
  .page-child .container .wrapper .copy .subtitle {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: clamp(16px, 1.5vw, 44px);
    letter-spacing: 5px;
    margin-top: 10px;
  }
  .page-child .container .wrapper header {
    position: absolute;
    top: 40px;
    right: 20px;
    z-index: 2;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li {
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li + li {
    margin-left: 50px;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li a {
    position: relative;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li a:before {
    content: "";
    width: 100%;
    height: 1px;
    background: white;
    position: absolute;
    bottom: -4px;
    left: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li a:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li.contact a {
    padding: 20px 30px;
    background: #333333;
    color: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li.contact a:hover {
    background: rgb(255, 255, 255);
    border-bottom: rgba(255, 255, 255, 0.4);
    color: #333333;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li.contact a:before {
    display: none;
  }
  .page-child .container .wrapper .insta {
    font-size: 35px;
    position: absolute;
    bottom: 3%;
    left: 1.3%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child .container .wrapper .insta:hover {
    scale: 1.1;
  }
  .page-child-recrute .container .wrapper {
    position: relative;
  }
  .page-child-recrute .container .wrapper .header-logo {
    width: 280px;
    padding: 20px;
    background: white;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 2;
  }
  .page-child-recrute .container .wrapper .kv-image {
    width: 95%;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }
  .page-child-recrute .container .wrapper .copy {
    position: absolute;
    top: 60%;
    left: 8%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
  }
  .page-child-recrute .container .wrapper .copy .title {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: clamp(16px, 2vw, 40px);
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 1px 1px 6px #333333;
  }
  .page-child-recrute .container .wrapper .copy .subtitle {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: clamp(16px, 2.5vw, 60px);
    letter-spacing: 8px;
    line-height: 1.2em;
    margin-top: 20px;
    font-family: noto-serif, serif;
    font-weight: 400;
    font-style: normal;
    text-shadow: 1px 1px 6px #333333;
  }
  .page-child-recrute .container .wrapper header {
    position: absolute;
    top: 40px;
    right: 20px;
    z-index: 2;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li {
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li + li {
    margin-left: 50px;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li a {
    position: relative;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li a:before {
    content: "";
    width: 100%;
    height: 1px;
    background: white;
    position: absolute;
    bottom: -4px;
    left: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li a:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li.contact a {
    padding: 20px 30px;
    background: #c3161d;
    color: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li.contact a:hover {
    background: rgba(255, 255, 255, 0.4);
    border-bottom: rgba(255, 255, 255, 0.4);
    color: #333333;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li.contact a:before {
    display: none;
  }
  .page-child-recrute .container .wrapper .insta {
    font-size: 35px;
    position: absolute;
    bottom: 3%;
    left: 1.3%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child-recrute .container .wrapper .insta:hover {
    scale: 1.1;
  }
}
@media screen and (max-width: 1050px) {
  .page-child .container .wrapper {
    position: relative;
  }
  .page-child .container .wrapper .header-logo {
    width: 230px;
    padding: 15px;
    background: white;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 2;
  }
  .page-child .container .wrapper .kv-image {
    width: 95%;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }
  .page-child .container .wrapper .kv-image.cover::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
  }
  .page-child .container .wrapper .copy {
    position: absolute;
    top: 60%;
    left: 8%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
  }
  .page-child .container .wrapper .copy .title {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: clamp(28px, 4.3vw, 120px);
    font-weight: 600;
    letter-spacing: 5px;
  }
  .page-child .container .wrapper .copy .subtitle {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: clamp(16px, 1.5vw, 44px);
    letter-spacing: 5px;
    margin-top: 10px;
  }
  .page-child .container .wrapper header {
    position: absolute;
    top: 40px;
    right: 20px;
    z-index: 2;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li + li {
    margin-left: 35px;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li a {
    position: relative;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li a:before {
    content: "";
    width: 100%;
    height: 1px;
    background: white;
    position: absolute;
    bottom: -4px;
    left: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li a:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li.contact a {
    padding: 13px 26px;
    background: #333333;
    color: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li.contact a:hover {
    background: rgb(255, 255, 255);
    border-bottom: rgba(255, 255, 255, 0.4);
    color: #333333;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li.contact a:before {
    display: none;
  }
  .page-child .container .wrapper .insta {
    font-size: 30px;
    position: absolute;
    bottom: 3%;
    left: 1.3%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child .container .wrapper .insta:hover {
    scale: 1.1;
  }
  .page-child-recrute .container .wrapper {
    position: relative;
  }
  .page-child-recrute .container .wrapper .header-logo {
    width: 230px;
    padding: 15px;
    background: white;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 2;
  }
  .page-child-recrute .container .wrapper .kv-image {
    width: 95%;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }
  .page-child-recrute .container .wrapper .copy {
    position: absolute;
    top: 60%;
    left: 8%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
  }
  .page-child-recrute .container .wrapper .copy .title {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: clamp(16px, 2vw, 40px);
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 1px 1px 6px #333333;
  }
  .page-child-recrute .container .wrapper .copy .subtitle {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: clamp(16px, 2.5vw, 60px);
    letter-spacing: 8px;
    line-height: 1.2em;
    margin-top: 20px;
    font-family: noto-serif, serif;
    font-weight: 400;
    font-style: normal;
    text-shadow: 1px 1px 6px #333333;
  }
  .page-child-recrute .container .wrapper header {
    position: absolute;
    top: 40px;
    right: 20px;
    z-index: 2;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li + li {
    margin-left: 35px;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li a {
    position: relative;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li a:before {
    content: "";
    width: 100%;
    height: 1px;
    background: white;
    position: absolute;
    bottom: -4px;
    left: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li a:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li.contact a {
    padding: 13px 26px;
    background: #c3161d;
    color: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li.contact a:hover {
    background: rgba(255, 255, 255, 0.4);
    border-bottom: rgba(255, 255, 255, 0.4);
    color: #333333;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li.contact a:before {
    display: none;
  }
  .page-child-recrute .container .wrapper .insta {
    font-size: 30px;
    position: absolute;
    bottom: 3%;
    left: 1.3%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child-recrute .container .wrapper .insta:hover {
    scale: 1.1;
  }
}
@media screen and (max-width: 820px) {
  .page-child {
    position: relative;
    z-index: 3;
  }
  .page-child .container .wrapper {
    position: relative;
  }
  .page-child .container .wrapper .header-logo {
    width: 200px;
    padding: 10px;
    background: white;
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 2;
  }
  .page-child .container .wrapper .kv-image {
    width: 88%;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }
  .page-child .container .wrapper .kv-image .kv {
    height: 200px;
  }
  .page-child .container .wrapper .kv-image .kv img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-child .container .wrapper .kv-image.cover::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
  }
  .page-child .container .wrapper .copy {
    position: absolute;
    top: 60%;
    left: 14%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
  }
  .page-child .container .wrapper .copy .title {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;
  }
  .page-child .container .wrapper .copy .subtitle {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 3px;
  }
  .page-child .container .wrapper header {
    position: absolute;
    top: 40px;
    right: 20px;
    z-index: 2;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li + li {
    margin-left: 35px;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li a {
    position: relative;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li a:before {
    content: "";
    width: 100%;
    height: 1px;
    background: white;
    position: absolute;
    bottom: -4px;
    left: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li a:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li.contact a {
    padding: 13px 26px;
    background: #333333;
    color: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li.contact a:hover {
    background: rgb(255, 255, 255);
    border-bottom: rgba(255, 255, 255, 0.4);
    color: #333333;
  }
  .page-child .container .wrapper header .pc-menu-wrapper nav ul li.contact a:before {
    display: none;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .menu-icon {
    background: #333333;
    position: fixed;
    z-index: 999;
    top: 8px;
    right: 8px;
    list-style: none;
    width: 40px;
    height: 40px;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .menu-icon:hover {
    cursor: pointer;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .menu-icon li {
    color: #333333;
    width: 20px;
    height: 1px;
    background: white;
    position: absolute;
    left: 27%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .menu-icon li:nth-child(1) {
    top: 30%;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .menu-icon li:nth-child(2) {
    top: 48.7%;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .menu-icon li:nth-child(3) {
    bottom: 30%;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .menu-icon.active li:nth-child(1) {
    top: 48%;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .page-child .container .wrapper header .sp-menu-wrapper .menu-icon.active li:nth-child(2) {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .page-child .container .wrapper header .sp-menu-wrapper .menu-icon.active li:nth-child(3) {
    top: 48%;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .page-child .container .wrapper header .sp-menu-wrapper .sp-menu {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 1.2s;
    transition: 1.2s;
    opacity: 0;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .sp-menu.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .sp-menu .logo {
    width: 50%;
    max-width: 230px;
    margin: 20px;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .sp-menu nav ul {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding-bottom: 100px;
    margin-top: 60px;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .sp-menu nav ul li {
    text-align: center;
    padding: 30px 0;
    text-shadow: none;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .sp-menu nav ul li + li {
    border-top: solid 1px rgba(0, 0, 0, 0.2);
    margin-top: 0;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .sp-menu nav ul li a {
    display: block;
    text-decoration: none;
    color: #333333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child .container .wrapper header .sp-menu-wrapper .sp-menu nav ul li a:hover {
    opacity: 0.5;
  }
  .page-child .container .wrapper .insta {
    font-size: 30px;
    position: absolute;
    bottom: 3%;
    left: 1.3%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child .container .wrapper .insta:hover {
    scale: 1.1;
  }
  .page-child-recrute .container .wrapper {
    position: relative;
  }
  .page-child-recrute .container .wrapper .header-logo {
    width: 200px;
    padding: 10px;
    background: white;
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 2;
  }
  .page-child-recrute .container .wrapper .kv-image {
    width: 88%;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }
  .page-child-recrute .container .wrapper .kv-image .kv {
    height: 200px;
  }
  .page-child-recrute .container .wrapper .kv-image .kv img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-child-recrute .container .wrapper .kv-image.cover::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
  }
  .page-child-recrute .container .wrapper .copy {
    position: absolute;
    top: 65%;
    left: 14%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
  }
  .page-child-recrute .container .wrapper .copy .title {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
  }
  .page-child-recrute .container .wrapper .copy .subtitle {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    font-size: 22px;
    letter-spacing: 2px;
    margin-top: 3px;
  }
  .page-child-recrute .container .wrapper header {
    position: absolute;
    top: 40px;
    right: 20px;
    z-index: 2;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li + li {
    margin-left: 35px;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li a {
    position: relative;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li a:before {
    content: "";
    width: 100%;
    height: 1px;
    background: white;
    position: absolute;
    bottom: -4px;
    left: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li a:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li.contact a {
    padding: 13px 26px;
    background: #333333;
    color: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li.contact a:hover {
    background: rgb(255, 255, 255);
    border-bottom: rgba(255, 255, 255, 0.4);
    color: #333333;
  }
  .page-child-recrute .container .wrapper header .pc-menu-wrapper nav ul li.contact a:before {
    display: none;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .menu-icon {
    background: #333333;
    position: fixed;
    z-index: 999;
    top: 8px;
    right: 8px;
    list-style: none;
    width: 40px;
    height: 40px;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .menu-icon:hover {
    cursor: pointer;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .menu-icon li {
    color: #333333;
    width: 20px;
    height: 1px;
    background: white;
    position: absolute;
    left: 27%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .menu-icon li:nth-child(1) {
    top: 30%;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .menu-icon li:nth-child(2) {
    top: 48.7%;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .menu-icon li:nth-child(3) {
    bottom: 30%;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .menu-icon.active li:nth-child(1) {
    top: 48%;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .menu-icon.active li:nth-child(2) {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .menu-icon.active li:nth-child(3) {
    top: 48%;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .sp-menu {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 1.2s;
    transition: 1.2s;
    opacity: 0;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .sp-menu.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .sp-menu .logo {
    width: 50%;
    max-width: 230px;
    margin: 20px;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .sp-menu nav ul {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding-bottom: 100px;
    margin-top: 60px;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .sp-menu nav ul li {
    text-align: center;
    padding: 30px 0;
    text-shadow: none;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .sp-menu nav ul li + li {
    border-top: solid 1px rgba(0, 0, 0, 0.2);
    margin-top: 0;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .sp-menu nav ul li a {
    display: block;
    text-decoration: none;
    color: #333333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child-recrute .container .wrapper header .sp-menu-wrapper .sp-menu nav ul li a:hover {
    opacity: 0.5;
  }
  .page-child-recrute .container .wrapper .insta {
    font-size: 30px;
    position: absolute;
    bottom: 3%;
    left: 1.3%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-child-recrute .container .wrapper .insta:hover {
    scale: 1.1;
  }
}
.common-contact .container .wrapper {
  padding: 70px 0 80px 0;
  background-image: url(img/footer-contact-bg.png);
  background-position: center;
  background-size: cover;
}
.common-contact .container .wrapper .section-head {
  width: 83%;
  margin: 0 auto;
  position: relative;
}
.common-contact .container .wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
}
.common-contact .container .wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.common-contact .container .wrapper .section-head::before {
  content: "";
  width: 100px;
  height: 1px;
  background: #333333;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.common-contact .container .wrapper .btn-wrapper {
  width: 83%;
  margin: 0 auto;
  margin-top: 80px;
}
.common-contact .container .wrapper .btn-wrapper .btn a {
  background: white;
}
.common-contact .container .wrapper .btn-wrapper .btn a:hover {
  background: #333333;
}
.common-contact .container .wrapper .btn-wrapper .btn a::before {
  display: none;
}
.common-contact .container .wrapper .btn-wrapper .btn + .btn {
  margin-top: 45px;
}
.common-contact .container .wrapper .btn-wrapper .btn:nth-child(1) a {
  padding-right: 137px;
}
.common-contact .container .wrapper .btn-wrapper .btn:nth-child(3) a {
  padding-right: 104px;
}

footer {
  background: #333333;
  padding: 50px 0 10px 0;
}
footer .container {
  color: white;
  width: 90%;
  max-width: 1920px;
  margin: 0 auto;
}
footer .container .footer-logo {
  width: 180px;
}
footer .container .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 50px;
}
footer .container .wrapper .footer-left {
  width: 47%;
}
footer .container .wrapper .footer-left .company-info {
  margin-top: 40px;
  line-height: 1.5em;
  letter-spacing: 2px;
}
footer .container .wrapper .footer-left .corporate-number {
  margin-top: 25px;
  line-height: 1.5em;
  letter-spacing: 2px;
}
footer .container .wrapper .footer-left .license {
  margin-top: 25px;
  line-height: 1.5em;
  letter-spacing: 2px;
}
footer .container .wrapper .footer-right {
  width: 47%;
}
footer .container .wrapper .footer-right .footer-menu-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu {
  width: 47%;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li a {
  border-bottom: solid 1px white;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li a img {
  width: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li a:hover {
  opacity: 0.7;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li a:hover img {
  -webkit-transform: translateX(7px);
          transform: translateX(7px);
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn {
  margin-top: 20px;
  border-bottom: solid 1px transparent;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn a {
  display: inline-block;
  color: #333333;
  background: white;
  border: solid 1px white;
  padding: 10px 60px 10px 70px;
  border-radius: 50px;
  font-weight: 700;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333333;
  position: absolute;
  top: 50%;
  left: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn a:hover {
  background: #333333;
  color: white;
  border: solid 1px white;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn a:hover::before {
  background: white;
  width: 40px;
  height: 0.5px;
  border-radius: 0px;
  left: 20px;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul {
  margin-top: 10px;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul li {
  margin-left: 20px;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul li a {
  border-bottom: none;
  padding: 7px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul li a::before {
  content: "";
  width: 7px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: -10px;
}
footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul li a:hover {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
footer .container .wrapper .footer-right .footer-sns {
  margin-top: 15px;
  margin-left: 5px;
}
footer .container .wrapper .footer-right .footer-sns a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .container .wrapper .footer-right .footer-sns a i {
  font-size: 2.3em;
}
footer .container .wrapper .footer-right .footer-sns a:hover {
  opacity: 0.7;
}
footer .container .footer-copy {
  text-align: center;
  font-size: small;
}

@media screen and (max-width: 1050px) {
  footer {
    background: #333333;
    padding: 50px 0 10px 0;
  }
  footer .container {
    color: white;
    width: 90%;
    max-width: 1920px;
    margin: 0 auto;
  }
  footer .container .footer-logo {
    width: 180px;
  }
  footer .container .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 50px;
  }
  footer .container .wrapper .footer-left {
    width: 42%;
  }
  footer .container .wrapper .footer-left .company-info {
    margin-top: 40px;
    line-height: 1.5em;
    letter-spacing: 2px;
  }
  footer .container .wrapper .footer-left .corporate-number {
    margin-top: 25px;
    line-height: 1.5em;
    letter-spacing: 2px;
  }
  footer .container .wrapper .footer-left .license {
    margin-top: 25px;
    line-height: 1.5em;
    letter-spacing: 2px;
  }
  footer .container .wrapper .footer-right {
    width: 52%;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu {
    width: 47%;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li a {
    border-bottom: solid 1px white;
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li a img {
    width: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li a:hover {
    opacity: 0.7;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li a:hover img {
    -webkit-transform: translateX(7px);
            transform: translateX(7px);
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn {
    margin-top: 20px;
    border-bottom: solid 1px transparent;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn a {
    display: inline-block;
    color: #333333;
    background: white;
    border: solid 1px white;
    padding: 10px 60px 10px 70px;
    border-radius: 50px;
    font-weight: 700;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #333333;
    position: absolute;
    top: 50%;
    left: 40px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn a:hover {
    background: #333333;
    color: white;
    border: solid 1px white;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn a:hover::before {
    background: white;
    width: 40px;
    height: 0.5px;
    border-radius: 0px;
    left: 20px;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul {
    margin-top: 10px;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul li {
    margin-left: 20px;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul li a {
    border-bottom: none;
    padding: 7px;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul li a::before {
    content: "";
    width: 7px;
    height: 1px;
    background: white;
    position: absolute;
    top: 50%;
    left: -10px;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul li a:hover {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  footer .container .wrapper .footer-right .footer-sns {
    margin-top: 15px;
    margin-left: 5px;
  }
  footer .container .wrapper .footer-right .footer-sns a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  footer .container .wrapper .footer-right .footer-sns a i {
    font-size: 2.3em;
  }
  footer .container .wrapper .footer-right .footer-sns a:hover {
    opacity: 0.7;
  }
  footer .container .footer-copy {
    text-align: center;
    font-size: small;
  }
}
@media screen and (max-width: 820px) {
  .common-contact .container .wrapper {
    padding: 70px 0 80px 0;
    background-image: url(img/footer-contact-bg.png);
    background-position: center;
    background-size: cover;
  }
  .common-contact .container .wrapper .section-head {
    width: 83%;
    margin: 0 auto;
    position: relative;
  }
  .common-contact .container .wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .common-contact .container .wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .common-contact .container .wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .common-contact .container .wrapper .btn-wrapper {
    width: 83%;
    margin: 0 auto;
    margin-top: 80px;
  }
  .common-contact .container .wrapper .btn-wrapper .btn a {
    width: 100%;
    display: inline-block;
    text-align: center;
    background: white;
    position: static;
    padding: 20px 10px;
  }
  .common-contact .container .wrapper .btn-wrapper .btn a:hover {
    background: #333333;
  }
  .common-contact .container .wrapper .btn-wrapper .btn + .btn {
    margin-top: 30px;
  }
  .common-contact .container .wrapper .btn-wrapper .btn:nth-child(1) a {
    padding-right: 10px;
  }
  .common-contact .container .wrapper .btn-wrapper .btn:nth-child(3) a {
    padding-right: 10px;
  }
  footer {
    background: #333333;
    padding: 50px 0 10px 0;
  }
  footer .container {
    color: white;
    width: 90%;
    max-width: 1920px;
    margin: 0 auto;
  }
  footer .container .footer-logo {
    width: 150px;
    margin: 0 auto;
  }
  footer .container .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .container .wrapper .footer-left {
    width: 100%;
  }
  footer .container .wrapper .footer-left .company-info {
    margin-top: 40px;
    line-height: 1.5em;
    letter-spacing: 2px;
  }
  footer .container .wrapper .footer-left .corporate-number {
    margin-top: 25px;
    line-height: 1.5em;
    letter-spacing: 2px;
  }
  footer .container .wrapper .footer-left .license {
    margin-top: 25px;
    line-height: 1.5em;
    letter-spacing: 2px;
  }
  footer .container .wrapper .footer-right {
    width: 100%;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu {
    width: 100%;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li a {
    border-bottom: solid 1px white;
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li a img {
    width: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li a:hover {
    opacity: 0.7;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li a:hover img {
    -webkit-transform: translateX(7px);
            transform: translateX(7px);
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn {
    margin-top: 20px;
    border-bottom: solid 1px transparent;
    text-align: center;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn a {
    display: inline-block;
    color: #333333;
    background: white;
    border: solid 1px white;
    padding: 10px 60px 10px 70px;
    border-radius: 50px;
    font-weight: 700;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #333333;
    position: absolute;
    top: 50%;
    left: 40px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn a:hover {
    background: #333333;
    color: white;
    border: solid 1px white;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li.btn a:hover::before {
    background: white;
    width: 40px;
    height: 0.5px;
    border-radius: 0px;
    left: 20px;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul {
    margin-top: 10px;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul li {
    margin-left: 20px;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul li a {
    border-bottom: none;
    padding: 7px;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul li a::before {
    content: "";
    width: 7px;
    height: 1px;
    background: white;
    position: absolute;
    top: 50%;
    left: -10px;
  }
  footer .container .wrapper .footer-right .footer-menu-wrapper .footer-menu nav ul li ul li a:hover {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  footer .container .wrapper .footer-right .footer-sns {
    margin-top: 15px;
    margin-left: 5px;
    text-align: center;
  }
  footer .container .wrapper .footer-right .footer-sns a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  footer .container .wrapper .footer-right .footer-sns a i {
    font-size: 2.3em;
  }
  footer .container .wrapper .footer-right .footer-sns a:hover {
    opacity: 0.7;
  }
  footer .container .footer-copy {
    text-align: center;
    font-size: small;
  }
}
.page-top-about .container .wrapper {
  position: relative;
}
.page-top-about .container .wrapper .swiper-ashirai {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
.page-top-about .container .wrapper .swiper-ashirai .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  margin-top: 10px;
}
.page-top-about .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide {
  margin-right: 30px;
  width: auto !important;
  /* これが重要 */
}
.page-top-about .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide .ashirai {
  font-size: clamp(20px, 6vw, 95px);
  color: rgba(51, 51, 51, 0.05);
  font-weight: 600;
  font-variation-settings: "width" 100;
  letter-spacing: 5px;
  white-space: nowrap;
}
.page-top-about .container .wrapper .contents-container {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-top-about .container .wrapper .contents-container .contents-wrapper {
  width: 91%;
  max-width: 1920px;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper {
  width: 55%;
  margin-top: 80px;
}
.page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .section-head .title {
  font-size: 44px;
  font-weight: 600;
  position: relative;
}
.page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .section-head .title::before {
  content: "";
  width: 90px;
  height: 1px;
  background: #333333;
  position: absolute;
  bottom: -13px;
  left: 0;
}
.page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .section-head .subtitle {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-top: 40px;
}
.page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .text {
  margin-top: 40px;
  letter-spacing: 1px;
  line-height: 2em;
}
.page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .btn {
  margin-top: 60px;
}
.page-top-about .container .wrapper .contents-container .contents-wrapper .kv-images {
  width: 40%;
}

.page-top-service .container .wrapper {
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 120px;
}
.page-top-service .container .wrapper .section-head {
  width: 83%;
  margin: 0 auto;
  position: relative;
}
.page-top-service .container .wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
}
.page-top-service .container .wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.page-top-service .container .wrapper .section-head::before {
  content: "";
  width: 100px;
  height: 1px;
  background: #333333;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.page-top-service .container .wrapper .contents-wrapper {
  margin-top: 90px;
}
.page-top-service .container .wrapper .contents-wrapper .cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card {
  width: 33.3%;
  color: white;
  background-position: center;
  background-size: cover;
  position: relative;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(1) {
  background-image: url(img/page-top-service1.png);
}
.page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(1) .card-title {
  margin: 30px 0;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(2) {
  background-image: url(img/page-top-service2.png);
}
.page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(2) .card-title {
  margin: 30px 0;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(3) {
  background-image: url(img/page-top-service3.png);
}
.page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(3) .card-title {
  margin: 12px 0;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 130px 30px 110px 30px;
  position: relative;
  z-index: 2;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card a .card-head .label {
  position: relative;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card a .card-head .label .num {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  margin-top: 5px;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card a .card-head .label::before {
  content: "";
  width: 23px;
  height: 1px;
  background: white;
  position: absolute;
  top: 4px;
  left: -30px;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card a .card-head .card-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 5px;
  line-height: 1.3em;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card a .card-body p {
  letter-spacing: 2px;
  line-height: 1.7em;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card a .card-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 45px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.page-top-service .container .wrapper .contents-wrapper .cards .card:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.page-top-service .container .wrapper .contents-wrapper .cards .card:hover a .card-btn {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.page-top-service .container .wrapper .btn {
  text-align: center;
  margin-top: 70px;
}

.page-top-news .container .wrapper {
  width: 83%;
  max-width: 1350px;
  margin: 0 auto;
  margin-top: 130px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-top-news .container .wrapper .header-wrapper {
  width: 30%;
}
.page-top-news .container .wrapper .header-wrapper .section-head {
  position: relative;
}
.page-top-news .container .wrapper .header-wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
}
.page-top-news .container .wrapper .header-wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.page-top-news .container .wrapper .header-wrapper .section-head::before {
  content: "";
  width: 100px;
  height: 1px;
  background: #333333;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.page-top-news .container .wrapper .header-wrapper .btn {
  margin-top: 70px;
}
.page-top-news .container .wrapper .news-list {
  width: 65%;
  border-top: solid 1px #333333;
}
.page-top-news .container .wrapper .news-list li {
  border-bottom: solid 1px #333333;
}
.page-top-news .container .wrapper .news-list li a {
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-top-news .container .wrapper .news-list li a .date-wrapper {
  width: 35%;
}
.page-top-news .container .wrapper .news-list li a .date-wrapper .date {
  font-weight: 600;
}
.page-top-news .container .wrapper .news-list li a .date-wrapper .category {
  padding: 5px 20px;
  background: #333333;
  color: white;
  font-weight: 600;
  margin-left: 20px;
}
.page-top-news .container .wrapper .news-list li a .title-wrapper {
  width: 60%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-top-news .container .wrapper .news-list li a .title-wrapper .title {
  width: 90%;
  letter-spacing: 2px;
  line-height: 1.5em;
}
.page-top-news .container .wrapper .news-list li a .title-wrapper .icon {
  width: 10%;
  text-align: center;
}
.page-top-news .container .wrapper .news-list li a .title-wrapper .icon img {
  width: 12px;
}
.page-top-news .container .wrapper .news-list li a:hover {
  background: #f0efef;
}

.page-top-recruit .container {
  max-width: 1920px;
  margin: 0 auto;
}
.page-top-recruit .container .wrapper {
  width: 85%;
  margin-top: 170px;
  margin-bottom: 170px;
  position: relative;
}
.page-top-recruit .container .wrapper .section-head-wrapper {
  position: absolute;
  top: -45px;
  left: 10%;
}
.page-top-recruit .container .wrapper .section-head-wrapper .section-head {
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.page-top-recruit .container .wrapper .section-head-wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-right: 15px;
}
.page-top-recruit .container .wrapper .section-head-wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.page-top-recruit .container .wrapper .section-head-wrapper .section-head::before {
  content: "";
  width: 1px;
  height: 100px;
  background: #333333;
  position: absolute;
  top: 0;
  right: -40px;
}
.page-top-recruit .container .wrapper .contents-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-top-recruit .container .wrapper .contents-wrapper .kv {
  width: 50%;
}
.page-top-recruit .container .wrapper .contents-wrapper .content {
  width: 42%;
  margin-top: 20px;
  position: relative;
}
.page-top-recruit .container .wrapper .contents-wrapper .content .title {
  font-size: 24px;
  letter-spacing: 5px;
  font-weight: 600;
}
.page-top-recruit .container .wrapper .contents-wrapper .content .text {
  letter-spacing: 2px;
  line-height: 1.7em;
  margin-top: 40px;
}
.page-top-recruit .container .wrapper .contents-wrapper .content .btn {
  text-align: right;
  margin-top: 40px;
}
.page-top-recruit .container .wrapper .contents-wrapper .content .ashirai-logo {
  width: 280px;
  position: absolute;
  top: 30%;
  left: -10%;
}

@media screen and (max-width: 1280px) {
  .page-top-news .container .wrapper {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    margin-top: 130px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-top-news .container .wrapper .header-wrapper {
    width: 30%;
  }
  .page-top-news .container .wrapper .header-wrapper .section-head {
    position: relative;
  }
  .page-top-news .container .wrapper .header-wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .page-top-news .container .wrapper .header-wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-top-news .container .wrapper .header-wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .page-top-news .container .wrapper .header-wrapper .btn {
    margin-top: 70px;
  }
  .page-top-news .container .wrapper .news-list {
    width: 70%;
    border-top: solid 1px #333333;
  }
  .page-top-news .container .wrapper .news-list li {
    border-bottom: solid 1px #333333;
  }
  .page-top-news .container .wrapper .news-list li a {
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-top-news .container .wrapper .news-list li a .date-wrapper {
    width: 30%;
  }
  .page-top-news .container .wrapper .news-list li a .date-wrapper .date {
    font-weight: 600;
  }
  .page-top-news .container .wrapper .news-list li a .date-wrapper .category {
    padding: 5px 20px;
    background: #333333;
    color: white;
    font-weight: 600;
    margin-left: 20px;
  }
  .page-top-news .container .wrapper .news-list li a .title-wrapper {
    width: 65%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-top-news .container .wrapper .news-list li a .title-wrapper .title {
    width: 90%;
    letter-spacing: 2px;
    line-height: 1.5em;
  }
  .page-top-news .container .wrapper .news-list li a .title-wrapper .icon {
    width: 10%;
    text-align: center;
  }
  .page-top-news .container .wrapper .news-list li a .title-wrapper .icon img {
    width: 12px;
  }
  .page-top-news .container .wrapper .news-list li a:hover {
    background: #f0efef;
  }
}
@media screen and (max-width: 1150px) {
  .page-top-about .container .wrapper {
    position: relative;
  }
  .page-top-about .container .wrapper .swiper-ashirai {
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
  }
  .page-top-about .container .wrapper .swiper-ashirai .swiper-wrapper {
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    margin-top: 10px;
  }
  .page-top-about .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide {
    margin-right: 30px;
    width: auto !important;
    /* これが重要 */
  }
  .page-top-about .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide .ashirai {
    font-size: clamp(20px, 6vw, 95px);
    color: rgba(51, 51, 51, 0.05);
    font-weight: 600;
    font-variation-settings: "width" 100;
    letter-spacing: 5px;
    white-space: nowrap;
  }
  .page-top-about .container .wrapper .contents-container {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper {
    width: 91%;
    max-width: 1920px;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper {
    width: 55%;
    margin-top: 80px;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .section-head .title {
    font-size: 30px;
    font-weight: 600;
    position: relative;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .section-head .title::before {
    content: "";
    width: 90px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -13px;
    left: 0;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 40px;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .text {
    margin-top: 40px;
    letter-spacing: 1px;
    line-height: 2em;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .btn {
    margin-top: 60px;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .kv-images {
    width: 40%;
  }
  .page-top-service .container .wrapper {
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 120px;
  }
  .page-top-service .container .wrapper .section-head {
    width: 83%;
    margin: 0 auto;
    position: relative;
  }
  .page-top-service .container .wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .page-top-service .container .wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-top-service .container .wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .page-top-service .container .wrapper .contents-wrapper {
    margin-top: 90px;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card {
    width: 33.3%;
    color: white;
    background-position: center;
    background-size: cover;
    position: relative;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(1) {
    background-image: url(img/page-top-service1.png);
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(1) .card-title {
    margin: 30px 0;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(2) {
    background-image: url(img/page-top-service2.png);
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(2) .card-title {
    margin: 30px 0;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(3) {
    background-image: url(img/page-top-service3.png);
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(3) .card-title {
    margin: 12px 0;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 70px 30px 110px 30px;
    position: relative;
    z-index: 2;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a .card-head .label {
    position: relative;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a .card-head .label .num {
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    margin-top: 5px;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a .card-head .label::before {
    content: "";
    width: 23px;
    height: 1px;
    background: white;
    position: absolute;
    top: 4px;
    left: -30px;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a .card-head .card-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 1.3em;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a .card-body p {
    letter-spacing: 2px;
    line-height: 1.7em;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a .card-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:hover a .card-btn {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .page-top-service .container .wrapper .btn {
    text-align: center;
    margin-top: 70px;
  }
  .page-top-news .container .wrapper {
    width: 98%;
    max-width: 1350px;
    margin: 0 auto;
    margin-top: 130px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-top-news .container .wrapper .header-wrapper {
    width: 25%;
  }
  .page-top-news .container .wrapper .header-wrapper .section-head {
    position: relative;
  }
  .page-top-news .container .wrapper .header-wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .page-top-news .container .wrapper .header-wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-top-news .container .wrapper .header-wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .page-top-news .container .wrapper .header-wrapper .btn {
    margin-top: 70px;
  }
  .page-top-news .container .wrapper .news-list {
    width: 75%;
    border-top: solid 1px #333333;
  }
  .page-top-news .container .wrapper .news-list li {
    border-bottom: solid 1px #333333;
  }
  .page-top-news .container .wrapper .news-list li a {
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-top-news .container .wrapper .news-list li a .date-wrapper {
    width: 30%;
  }
  .page-top-news .container .wrapper .news-list li a .date-wrapper .date {
    font-weight: 600;
  }
  .page-top-news .container .wrapper .news-list li a .date-wrapper .category {
    font-size: 12px;
    padding: 5px 12px;
    background: #333333;
    color: white;
    font-weight: 600;
    margin-left: 20px;
  }
  .page-top-news .container .wrapper .news-list li a .title-wrapper {
    width: 65%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-top-news .container .wrapper .news-list li a .title-wrapper .title {
    width: 90%;
    letter-spacing: 2px;
    line-height: 1.5em;
  }
  .page-top-news .container .wrapper .news-list li a .title-wrapper .icon {
    width: 10%;
    text-align: center;
  }
  .page-top-news .container .wrapper .news-list li a .title-wrapper .icon img {
    width: 12px;
  }
  .page-top-news .container .wrapper .news-list li a:hover {
    background: #f0efef;
  }
}
@media screen and (max-width: 820px) {
  .page-top-about .container .wrapper {
    position: relative;
  }
  .page-top-about .container .wrapper .swiper-ashirai {
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
  }
  .page-top-about .container .wrapper .swiper-ashirai .swiper-wrapper {
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    margin-top: 10px;
  }
  .page-top-about .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide {
    margin-right: 30px;
    width: auto !important;
    /* これが重要 */
  }
  .page-top-about .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide .ashirai {
    font-size: 50px;
    color: rgba(51, 51, 51, 0.05);
    font-weight: 600;
    font-variation-settings: "width" 100;
    letter-spacing: 5px;
    white-space: nowrap;
  }
  .page-top-about .container .wrapper .contents-container {
    max-width: 1920px;
    margin: 0 auto;
    position: static;
    z-index: 2;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper {
    width: 91%;
    max-width: 1920px;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper {
    width: 100%;
    margin-top: 100px;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .section-head .title {
    font-size: 24px;
    line-height: 1.2em;
    font-weight: 600;
    position: relative;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .section-head .title::before {
    content: "";
    width: 90px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -13px;
    left: 0;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .section-head .subtitle {
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 40px;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .text {
    margin-top: 40px;
    letter-spacing: 1px;
    line-height: 2em;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .text-wrapper .btn {
    margin-top: 60px;
  }
  .page-top-about .container .wrapper .contents-container .contents-wrapper .kv-images {
    width: 100%;
    margin-top: 50px;
  }
  .page-top-service .container .wrapper {
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 120px;
  }
  .page-top-service .container .wrapper .section-head {
    width: 83%;
    margin: 0 auto;
    position: relative;
  }
  .page-top-service .container .wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .page-top-service .container .wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-top-service .container .wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .page-top-service .container .wrapper .contents-wrapper {
    margin-top: 90px;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card {
    width: 100%;
    color: white;
    background-position: center;
    background-size: cover;
    position: relative;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(1) {
    background-image: url(img/page-top-service1.png);
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(1) .card-title {
    margin: 30px 0;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(2) {
    background-image: url(img/page-top-service2.png);
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(2) .card-title {
    margin: 30px 0;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(3) {
    background-image: url(img/page-top-service3.png);
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:nth-child(3) .card-title {
    margin: 12px 0;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 70px 10px 110px 30px;
    position: relative;
    z-index: 2;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a .card-head .label {
    position: relative;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a .card-head .label .num {
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    margin-top: 5px;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a .card-head .label::before {
    content: "";
    width: 23px;
    height: 1px;
    background: white;
    position: absolute;
    top: 4px;
    left: -30px;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a .card-head .card-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 1.3em;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a .card-body p {
    letter-spacing: 2px;
    line-height: 1.7em;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card a .card-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .page-top-service .container .wrapper .contents-wrapper .cards .card:hover a .card-btn {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .page-top-service .container .wrapper .btn {
    text-align: center;
    margin-top: 70px;
  }
  .page-top-news .container .wrapper {
    width: 98%;
    max-width: 1350px;
    margin: 0 auto;
    margin-top: 130px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-top-news .container .wrapper .header-wrapper {
    width: 90%;
    margin: 0 auto;
  }
  .page-top-news .container .wrapper .header-wrapper .section-head {
    position: relative;
  }
  .page-top-news .container .wrapper .header-wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .page-top-news .container .wrapper .header-wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-top-news .container .wrapper .header-wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .page-top-news .container .wrapper .header-wrapper .btn {
    margin-top: 70px;
  }
  .page-top-news .container .wrapper .news-list {
    width: 100%;
    border-top: solid 1px #333333;
    margin-top: 80px;
  }
  .page-top-news .container .wrapper .news-list li {
    border-bottom: solid 1px #333333;
  }
  .page-top-news .container .wrapper .news-list li a {
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-top-news .container .wrapper .news-list li a .date-wrapper {
    width: 100%;
  }
  .page-top-news .container .wrapper .news-list li a .date-wrapper .date {
    font-weight: 600;
  }
  .page-top-news .container .wrapper .news-list li a .date-wrapper .category {
    font-size: 12px;
    padding: 5px 12px;
    background: #333333;
    color: white;
    font-weight: 600;
    margin-left: 20px;
  }
  .page-top-news .container .wrapper .news-list li a .title-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 15px;
  }
  .page-top-news .container .wrapper .news-list li a .title-wrapper .title {
    width: 90%;
    letter-spacing: 2px;
    line-height: 1.5em;
  }
  .page-top-news .container .wrapper .news-list li a .title-wrapper .icon {
    width: 10%;
    text-align: center;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  .page-top-news .container .wrapper .news-list li a .title-wrapper .icon img {
    width: 8px;
  }
  .page-top-news .container .wrapper .news-list li a:hover {
    background: #f0efef;
  }
  .page-top-news .container .wrapper .btn {
    text-align: center;
    margin-top: 50px;
  }
  .page-top-recruit .container {
    max-width: 1920px;
    margin: 0 auto;
  }
  .page-top-recruit .container .wrapper {
    width: 90%;
    margin-top: 170px;
    margin-bottom: 170px;
    position: relative;
  }
  .page-top-recruit .container .wrapper .section-head-wrapper {
    position: static;
  }
  .page-top-recruit .container .wrapper .section-head-wrapper .section-head {
    position: relative;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 90%;
    margin: 0 auto;
  }
  .page-top-recruit .container .wrapper .section-head-wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-right: 15px;
  }
  .page-top-recruit .container .wrapper .section-head-wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-top-recruit .container .wrapper .section-head-wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    top: auto;
    bottom: -20px;
    right: auto;
    left: 0;
  }
  .page-top-recruit .container .wrapper .contents-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 60px;
  }
  .page-top-recruit .container .wrapper .contents-wrapper .kv {
    width: 100%;
  }
  .page-top-recruit .container .wrapper .contents-wrapper .content {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
    position: relative;
  }
  .page-top-recruit .container .wrapper .contents-wrapper .content .title {
    font-size: 24px;
    letter-spacing: 5px;
    font-weight: 600;
  }
  .page-top-recruit .container .wrapper .contents-wrapper .content .text {
    letter-spacing: 2px;
    line-height: 1.7em;
    margin-top: 40px;
  }
  .page-top-recruit .container .wrapper .contents-wrapper .content .btn {
    text-align: center;
    margin-top: 40px;
  }
  .page-top-recruit .container .wrapper .contents-wrapper .content .ashirai-logo {
    width: 280px;
    position: absolute;
    top: 30%;
    left: -10%;
  }
}
.page-about-concept .container .wrapper {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 100px;
}
.page-about-concept .container .wrapper .contents-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-about-concept .container .wrapper .contents-wrapper .contents-left {
  width: 53%;
  position: relative;
}
.page-about-concept .container .wrapper .contents-wrapper .contents-left .section-head h2 {
  font-size: 90px;
  font-weight: 600;
}
.page-about-concept .container .wrapper .contents-wrapper .contents-left .visual {
  width: 280px;
  position: absolute;
  right: 40px;
  bottom: 0;
}
.page-about-concept .container .wrapper .contents-wrapper .message {
  width: 42%;
}
.page-about-concept .container .wrapper .contents-wrapper .message .title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2em;
}
.page-about-concept .container .wrapper .contents-wrapper .message .text-wrapper {
  line-height: 1.7em;
  margin-top: 40px;
}

.page-about-message .container .wrapper {
  margin-top: 200px;
}
.page-about-message .container .wrapper .section-head {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.page-about-message .container .wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
}
.page-about-message .container .wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.page-about-message .container .wrapper .section-head::before {
  content: "";
  width: 100px;
  height: 1px;
  background: #333333;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.page-about-message .container .wrapper .contents-wrapper {
  background: #f0eded;
  padding: 30px 0;
  margin-top: 40px;
}
.page-about-message .container .wrapper .contents-wrapper .content {
  width: 95%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.page-about-message .container .wrapper .contents-wrapper .content .text {
  width: 49%;
  line-height: 2em;
  margin-left: 4.5%;
}
.page-about-message .container .wrapper .contents-wrapper .content .text .name-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-weight: 600;
  margin-top: 40px;
}
.page-about-message .container .wrapper .contents-wrapper .content .text .name-wrapper .position {
  font-size: 18px;
  padding-top: 2px;
  letter-spacing: 3px;
}
.page-about-message .container .wrapper .contents-wrapper .content .text .name-wrapper .name {
  font-size: 24px;
  margin-left: 40px;
  letter-spacing: 3px;
}
.page-about-message .container .wrapper .contents-wrapper .content .visual {
  width: 42%;
  position: absolute;
  top: -43%;
  right: 0;
}

.page-about-company .container .wrapper {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 170px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translateX(-5.5%);
          transform: translateX(-5.5%);
}
.page-about-company .container .wrapper .section-head-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  left: 50px;
  height: 250px;
}
.page-about-company .container .wrapper .section-head-wrapper .section-head {
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.page-about-company .container .wrapper .section-head-wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-right: 15px;
}
.page-about-company .container .wrapper .section-head-wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.page-about-company .container .wrapper .section-head-wrapper .section-head::before {
  content: "";
  width: 1px;
  height: 100px;
  background: #333333;
  position: absolute;
  top: 0;
  right: -40px;
}
.page-about-company .container .wrapper .contents-wrapper {
  width: 90%;
  max-width: 1000px;
  padding-left: 130px;
  margin: 0 auto;
}
.page-about-company .container .wrapper .contents-wrapper dl {
  border-top: solid 1px #b4b2b2;
}
.page-about-company .container .wrapper .contents-wrapper dl .row {
  padding: 25px 0 25px 80px;
  border-bottom: solid 1px #b4b2b2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-about-company .container .wrapper .contents-wrapper dl .row dt {
  width: 30%;
}
.page-about-company .container .wrapper .contents-wrapper dl .row dd {
  width: 70%;
}
.page-about-company .container .wrapper .contents-wrapper dl .row dd ul li {
  line-height: 1.7em;
  position: relative;
}
.page-about-company .container .wrapper .contents-wrapper dl .row dd ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333333;
  position: absolute;
  top: 9px;
  left: -15px;
}

.page-about-history {
  margin-top: 120px;
  padding: 80px 0 130px 0;
  background: url(img/page-about-history-bg.png);
  background-position: center;
  background-size: cover;
  position: relative;
}
.page-about-history::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #333333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
}
.page-about-history .container {
  max-width: 1920px;
  margin: 0 auto;
}
.page-about-history .container .wrapper {
  width: 90%;
  margin-left: auto;
}
.page-about-history .container .wrapper .section-head {
  position: relative;
  color: white;
}
.page-about-history .container .wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
}
.page-about-history .container .wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.page-about-history .container .wrapper .section-head::before {
  content: "";
  width: 100px;
  height: 1px;
  background: white;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.page-about-history .container .wrapper .contents-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 75px;
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper {
  padding-bottom: 14px;
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide {
  background: white;
  height: auto;
  padding: 40px 30px;
  cursor: -webkit-grab;
  cursor: grab;
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide h3 {
  font-size: 24px;
  font-weight: 600;
  position: relative;
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide h3::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #333333;
  position: absolute;
  left: -30px;
  top: 48%;
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide ul {
  margin: 0 auto;
  margin-top: 40px;
  width: 90%;
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide ul li {
  line-height: 1.5em;
  position: relative;
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide ul li + li {
  margin-top: 25px;
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #333333;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: -20px;
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-scrollbar {
  position: relative;
  margin: 50px auto 0;
  background: white; /* 背景を非表示にする */
  height: 1px; /* ドラッグ部分と同じ高さ */
  width: 100%; /* 全幅にして中央に配置 */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none; /* スクロールバー全体はクリック無効 */
  /* つまみ（ドラッグボタン） */
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-scrollbar .swiper-scrollbar-drag {
  width: 155px !important;
  height: 35px !important;
  background: white;
  border-radius: 25px;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  pointer-events: auto;
  position: relative;
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-scrollbar .swiper-scrollbar-drag:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  background: rgba(255, 255, 255, 0.8);
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-scrollbar .swiper-scrollbar-drag::before {
  content: "SCROLL";
  font-family: poppins, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  position: absolute;
  top: 38%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-scrollbar .swiper-scrollbar-drag::after {
  content: "";
  width: 5px;
  height: 5px;
  background: #333333;
  border-radius: 50%;
  position: absolute;
  top: 42%;
  left: 30px;
}

.page-about-organization .container .wrapper {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 170px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translateX(-5.5%);
          transform: translateX(-5.5%);
}
.page-about-organization .container .wrapper .section-head-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  left: 50px;
  height: 380px;
}
.page-about-organization .container .wrapper .section-head-wrapper .section-head {
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.page-about-organization .container .wrapper .section-head-wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-right: 15px;
}
.page-about-organization .container .wrapper .section-head-wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.page-about-organization .container .wrapper .section-head-wrapper .section-head::before {
  content: "";
  width: 1px;
  height: 100px;
  background: #333333;
  position: absolute;
  top: 0;
  right: -40px;
}
.page-about-organization .container .wrapper .contents-wrapper {
  width: 90%;
  max-width: 1000px;
  padding-left: 130px;
  margin: 0 auto;
}

.page-about-trucks .container .wrapper {
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 120px;
}
.page-about-trucks .container .wrapper .section-head {
  width: 83%;
  margin: 0 auto;
  position: relative;
}
.page-about-trucks .container .wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
}
.page-about-trucks .container .wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.page-about-trucks .container .wrapper .section-head::before {
  content: "";
  width: 100px;
  height: 1px;
  background: #333333;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.page-about-trucks .container .wrapper .contents-wrapper {
  width: 70%;
  margin: 0 auto;
  margin-top: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.page-about-trucks .container .wrapper .contents-wrapper .truck-item {
  width: 32%;
  margin: 0 0.25%;
  margin-bottom: 60px;
}
.page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper {
  padding: 10px;
}
.page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper h3 {
  display: inline-block;
  background: #333333;
  color: white;
  font-weight: 600;
  padding: 7px 30px;
}
.page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper .size {
  font-weight: 600;
  font-size: 18px;
  margin-left: 25px;
  margin-top: 10px;
  position: relative;
}
.page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper .size::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #333333;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper dl {
  margin-top: 10px;
}
.page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper dl .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.3em;
}
.page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper dl .row dt {
  width: 40%;
}
.page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper dl .row dd {
  width: 60%;
}

.page-about-branches .container .wrapper {
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 110px;
  margin-bottom: 170px;
}
.page-about-branches .container .wrapper .section-head {
  width: 83%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.page-about-branches .container .wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
}
.page-about-branches .container .wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.page-about-branches .container .wrapper .section-head::before {
  content: "";
  width: 100px;
  height: 1px;
  background: #333333;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.page-about-branches .container .wrapper .branches-map {
  width: 90%;
  max-width: 550px;
  height: 60vw;
  max-height: 600px;
  margin: 0 auto;
  margin-top: 40px;
}
.page-about-branches .container .wrapper .branches-map iframe {
  width: 100%;
  height: 100%;
}
.page-about-branches .container .wrapper .contents-wrapper {
  width: 90%;
  max-width: 950px;
  margin: 0 auto;
  margin-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.page-about-branches .container .wrapper .contents-wrapper .branch-card {
  width: 49.5%;
  background: #f0eded;
  padding: 20px;
  margin-bottom: 10px;
}
.page-about-branches .container .wrapper .contents-wrapper .branch-card h3 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: solid 1px #333333;
}
.page-about-branches .container .wrapper .contents-wrapper .branch-card ul li {
  margin-top: 15px;
  line-height: 1.2em;
}
.page-about-branches .container .wrapper .contents-wrapper .branch-card ul li:nth-child(2) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.page-about-branches .container .wrapper .contents-wrapper .branch-card ul li:nth-child(2) p:nth-child(1) {
  margin-right: 40px;
}

@media screen and (max-width: 1280px) {
  .page-about-concept .container .wrapper {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
  }
  .page-about-concept .container .wrapper .contents-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-about-concept .container .wrapper .contents-wrapper .contents-left {
    width: 53%;
    position: relative;
  }
  .page-about-concept .container .wrapper .contents-wrapper .contents-left .section-head h2 {
    font-size: 80px;
    font-weight: 600;
  }
  .page-about-concept .container .wrapper .contents-wrapper .contents-left .visual {
    width: 280px;
    position: absolute;
    right: 40px;
    bottom: 0;
  }
  .page-about-concept .container .wrapper .contents-wrapper .message {
    width: 42%;
  }
  .page-about-concept .container .wrapper .contents-wrapper .message .title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2em;
  }
  .page-about-concept .container .wrapper .contents-wrapper .message .text-wrapper {
    line-height: 1.7em;
    margin-top: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .page-about-message .container .wrapper {
    margin-top: 200px;
  }
  .page-about-message .container .wrapper .section-head {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .page-about-message .container .wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .page-about-message .container .wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-about-message .container .wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .page-about-message .container .wrapper .contents-wrapper {
    background: #f0eded;
    padding: 30px 0;
    margin-top: 40px;
  }
  .page-about-message .container .wrapper .contents-wrapper .content {
    width: 95%;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
  }
  .page-about-message .container .wrapper .contents-wrapper .content .text {
    width: 49%;
    line-height: 2em;
    margin-left: 4.5%;
  }
  .page-about-message .container .wrapper .contents-wrapper .content .text .name-wrapper {
    text-align: right;
    display: block;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-weight: 600;
    margin-top: 40px;
  }
  .page-about-message .container .wrapper .contents-wrapper .content .text .name-wrapper .position {
    font-size: 18px;
    padding-top: 2px;
    letter-spacing: 3px;
  }
  .page-about-message .container .wrapper .contents-wrapper .content .text .name-wrapper .name {
    font-size: 24px;
    margin-left: 40px;
    letter-spacing: 3px;
  }
  .page-about-message .container .wrapper .contents-wrapper .content .visual {
    width: 42%;
    position: absolute;
    top: -70px;
    right: 0;
  }
}
@media screen and (max-width: 1050px) {
  .page-about-concept .container .wrapper {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
  }
  .page-about-concept .container .wrapper .contents-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-about-concept .container .wrapper .contents-wrapper .contents-left {
    width: 50%;
    position: relative;
  }
  .page-about-concept .container .wrapper .contents-wrapper .contents-left .section-head h2 {
    font-size: 70px;
    font-weight: 600;
    margin-top: 70px;
  }
  .page-about-concept .container .wrapper .contents-wrapper .contents-left .visual {
    width: 280px;
    position: absolute;
    right: 40px;
    bottom: 0;
  }
  .page-about-concept .container .wrapper .contents-wrapper .message {
    width: 48%;
  }
  .page-about-concept .container .wrapper .contents-wrapper .message .title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2em;
  }
  .page-about-concept .container .wrapper .contents-wrapper .message .text-wrapper {
    line-height: 1.7em;
    margin-top: 40px;
  }
}
@media screen and (max-width: 820px) {
  .page-about-concept .container .wrapper {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
  }
  .page-about-concept .container .wrapper .contents-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-about-concept .container .wrapper .contents-wrapper .contents-left {
    width: 100%;
    position: relative;
  }
  .page-about-concept .container .wrapper .contents-wrapper .contents-left .section-head h2 {
    font-size: 35px;
    font-weight: 600;
    margin-top: 0px;
  }
  .page-about-concept .container .wrapper .contents-wrapper .contents-left .visual {
    width: 280px;
    position: absolute;
    right: 40px;
    bottom: -200px;
  }
  .page-about-concept .container .wrapper .contents-wrapper .message {
    width: 100%;
    margin-top: 30px;
  }
  .page-about-concept .container .wrapper .contents-wrapper .message .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2em;
  }
  .page-about-concept .container .wrapper .contents-wrapper .message .text-wrapper {
    line-height: 1.7em;
    margin-top: 20px;
  }
  .page-about-message .container .wrapper {
    margin-top: 70px;
  }
  .page-about-message .container .wrapper .section-head {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .page-about-message .container .wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .page-about-message .container .wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-about-message .container .wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .page-about-message .container .wrapper .contents-wrapper {
    background: #f0eded;
    padding: 30px 0;
    margin-top: 40px;
  }
  .page-about-message .container .wrapper .contents-wrapper .content {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .page-about-message .container .wrapper .contents-wrapper .content .text {
    width: 100%;
    line-height: 2em;
    margin-left: 0;
  }
  .page-about-message .container .wrapper .contents-wrapper .content .text .name-wrapper {
    text-align: right;
    display: block;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-weight: 600;
    margin-top: 20px;
  }
  .page-about-message .container .wrapper .contents-wrapper .content .text .name-wrapper .position {
    font-size: 18px;
    padding-top: 2px;
    letter-spacing: 3px;
  }
  .page-about-message .container .wrapper .contents-wrapper .content .text .name-wrapper .name {
    font-size: 24px;
    margin-left: 40px;
    letter-spacing: 3px;
  }
  .page-about-message .container .wrapper .contents-wrapper .content .visual {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 30px;
    position: static;
    top: -70px;
    right: 0;
  }
  .page-about-company .container .wrapper {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-about-company .container .wrapper .section-head-wrapper {
    position: static;
    top: 50px;
    left: 50px;
    height: auto;
  }
  .page-about-company .container .wrapper .section-head-wrapper .section-head {
    position: relative;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .page-about-company .container .wrapper .section-head-wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-right: 0;
  }
  .page-about-company .container .wrapper .section-head-wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-about-company .container .wrapper .section-head-wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    top: auto;
    right: auto;
    bottom: -30px;
    left: 0;
  }
  .page-about-company .container .wrapper .contents-wrapper {
    width: 90%;
    max-width: 1000px;
    padding-left: 0px;
    margin: 0 auto;
    margin-top: 70px;
  }
  .page-about-company .container .wrapper .contents-wrapper dl {
    border-top: solid 1px #b4b2b2;
  }
  .page-about-company .container .wrapper .contents-wrapper dl .row {
    padding: 25px 10px;
    border-bottom: solid 1px #b4b2b2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-about-company .container .wrapper .contents-wrapper dl .row dt {
    width: 100%;
    font-weight: 600;
  }
  .page-about-company .container .wrapper .contents-wrapper dl .row dd {
    width: 100%;
    margin-top: 7px;
  }
  .page-about-company .container .wrapper .contents-wrapper dl .row dd ul {
    margin-left: 30px;
  }
  .page-about-company .container .wrapper .contents-wrapper dl .row dd ul li {
    line-height: 1.7em;
    position: relative;
  }
  .page-about-company .container .wrapper .contents-wrapper dl .row dd ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #333333;
    position: absolute;
    top: 9px;
    left: -15px;
  }
  .page-about-history {
    margin-top: 120px;
    padding: 80px 0 130px 0;
    background: url(img/page-about-history-bg.png);
    background-position: center;
    background-size: cover;
    position: relative;
  }
  .page-about-history::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
  }
  .page-about-history .container {
    max-width: 1920px;
    margin: 0 auto;
  }
  .page-about-history .container .wrapper {
    width: 90%;
    margin-left: auto;
  }
  .page-about-history .container .wrapper .section-head {
    position: relative;
    color: white;
  }
  .page-about-history .container .wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .page-about-history .container .wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-about-history .container .wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: white;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .page-about-history .container .wrapper .contents-wrapper {
    position: relative;
    z-index: 2;
    margin-top: 75px;
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper {
    padding-bottom: 14px;
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide {
    background: white;
    height: auto;
    padding: 40px 30px;
    cursor: -webkit-grab;
    cursor: grab;
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide h3 {
    font-size: 24px;
    font-weight: 600;
    position: relative;
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide h3::before {
    content: "";
    width: 20px;
    height: 1px;
    background: #333333;
    position: absolute;
    left: -30px;
    top: 48%;
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide ul {
    margin: 0 auto;
    margin-top: 40px;
    width: 90%;
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide ul li {
    line-height: 1.5em;
    position: relative;
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide ul li + li {
    margin-top: 25px;
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-wrapper .swiper-slide ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #333333;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: -20px;
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-scrollbar {
    position: relative;
    margin: 50px auto 0;
    background: white;
    /* 背景を非表示にする */
    height: 1px;
    /* ドラッグ部分と同じ高さ */
    width: 100%;
    /* 全幅にして中央に配置 */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    pointer-events: none;
    /* スクロールバー全体はクリック無効 */
    /* つまみ（ドラッグボタン） */
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-scrollbar .swiper-scrollbar-drag {
    width: 155px !important;
    height: 35px !important;
    background: white;
    border-radius: 25px;
    cursor: -webkit-grab;
    cursor: grab;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    pointer-events: auto;
    position: relative;
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-scrollbar .swiper-scrollbar-drag:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
    background: rgba(255, 255, 255, 0.8);
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-scrollbar .swiper-scrollbar-drag::before {
    content: "SCROLL";
    font-family: poppins, sans-serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .page-about-history .container .wrapper .contents-wrapper .history-swiper .swiper-scrollbar .swiper-scrollbar-drag::after {
    content: "";
    width: 5px;
    height: 5px;
    background: #333333;
    border-radius: 50%;
    position: absolute;
    top: 42%;
    left: 30px;
  }
  .page-about-organization .container .wrapper {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-about-organization .container .wrapper .section-head-wrapper {
    position: static;
    top: 50px;
    left: 50px;
    height: auto;
  }
  .page-about-organization .container .wrapper .section-head-wrapper .section-head {
    position: relative;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .page-about-organization .container .wrapper .section-head-wrapper .section-head .title {
    font-size: 33px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-right: 15px;
  }
  .page-about-organization .container .wrapper .section-head-wrapper .section-head .subtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-about-organization .container .wrapper .section-head-wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    top: auto;
    right: auto;
    bottom: -24px;
    left: 0;
  }
  .page-about-organization .container .wrapper .contents-wrapper {
    width: 95%;
    max-width: 1000px;
    padding-left: 0px;
    margin: 0 auto;
    margin-top: 70px;
  }
  .page-about-trucks .container .wrapper {
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 120px;
  }
  .page-about-trucks .container .wrapper .section-head {
    width: 83%;
    margin: 0 auto;
    position: relative;
  }
  .page-about-trucks .container .wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .page-about-trucks .container .wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-about-trucks .container .wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .page-about-trucks .container .wrapper .contents-wrapper {
    width: 90%;
    margin: 0 auto;
    margin-top: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-about-trucks .container .wrapper .contents-wrapper .truck-item {
    width: 100%;
    margin: 0 0.25%;
    margin-bottom: 30px;
  }
  .page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper {
    padding: 10px;
  }
  .page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper h3 {
    display: inline-block;
    background: #333333;
    color: white;
    font-weight: 600;
    padding: 7px 30px;
  }
  .page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper .size {
    font-weight: 600;
    font-size: 18px;
    margin-left: 25px;
    margin-top: 10px;
    position: relative;
  }
  .page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper .size::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #333333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper dl {
    margin-top: 10px;
  }
  .page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper dl .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.3em;
  }
  .page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper dl .row dt {
    width: 40%;
  }
  .page-about-trucks .container .wrapper .contents-wrapper .truck-item .text-wrapper dl .row dd {
    width: 60%;
  }
  .page-about-branches .container .wrapper {
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .page-about-branches .container .wrapper .section-head {
    width: 83%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .page-about-branches .container .wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .page-about-branches .container .wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-about-branches .container .wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .page-about-branches .container .wrapper .branches-map {
    width: 90%;
    max-width: 550px;
    height: 110vw;
    max-height: 600px;
    margin: 0 auto;
    margin-top: 40px;
  }
  .page-about-branches .container .wrapper .branches-map iframe {
    width: 100%;
    height: 100%;
  }
  .page-about-branches .container .wrapper .contents-wrapper {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-about-branches .container .wrapper .contents-wrapper .branch-card {
    width: 100%;
    background: #f0eded;
    padding: 20px;
    margin-bottom: 10px;
  }
  .page-about-branches .container .wrapper .contents-wrapper .branch-card h3 {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: solid 1px #333333;
  }
  .page-about-branches .container .wrapper .contents-wrapper .branch-card ul li {
    margin-top: 15px;
    line-height: 1.2em;
  }
  .page-about-branches .container .wrapper .contents-wrapper .branch-card ul li:nth-child(2) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-about-branches .container .wrapper .contents-wrapper .branch-card ul li:nth-child(2) p:nth-child(1) {
    margin-right: 40px;
  }
}
.page-service-message .container .wrapper {
  position: relative;
}
.page-service-message .container .wrapper .swiper-ashirai {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
.page-service-message .container .wrapper .swiper-ashirai .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  margin-top: 0;
}
.page-service-message .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide {
  margin-right: 30px;
  width: auto !important;
  /* これが重要 */
}
.page-service-message .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide .ashirai {
  font-size: clamp(20px, 6vw, 95px);
  color: rgba(51, 51, 51, 0.05);
  font-weight: 600;
  font-variation-settings: "width" 100;
  letter-spacing: 5px;
  white-space: nowrap;
}
.page-service-message .container .wrapper .contents-container {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-service-message .container .wrapper .contents-container .contents-wrapper {
  width: 91%;
  max-width: 1920px;
  margin: 0 auto;
}
.page-service-message .container .wrapper .contents-container .contents-wrapper .text-wrapper {
  width: 100%;
  margin-top: 70px;
}
.page-service-message .container .wrapper .contents-container .contents-wrapper .text-wrapper .section-head .title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2em;
}
.page-service-message .container .wrapper .contents-container .contents-wrapper .text-wrapper .text {
  text-align: center;
  margin: 0 auto;
  margin-top: 17px;
  letter-spacing: 1px;
  line-height: 2em;
}

.page-service-service-list .container .wrapper {
  width: 83%;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 120px;
  margin-bottom: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-service-service-list .container .wrapper .section-head-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 37%;
  left: 50px;
  height: 200px;
}
.page-service-service-list .container .wrapper .section-head-wrapper .section-head {
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.page-service-service-list .container .wrapper .section-head-wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-right: 15px;
}
.page-service-service-list .container .wrapper .section-head-wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.page-service-service-list .container .wrapper .section-head-wrapper .section-head::before {
  content: "";
  width: 1px;
  height: 100px;
  background: #333333;
  position: absolute;
  top: 0;
  right: -40px;
}
.page-service-service-list .container .wrapper .service-list {
  margin-left: 90px;
}
.page-service-service-list .container .wrapper .service-list .service-item {
  margin-bottom: 20px;
}
.page-service-service-list .container .wrapper .service-list .service-item a {
  display: block;
  background: #f0eded;
  padding: 30px 20px;
}
.page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-image {
  width: 45%;
  position: relative;
  overflow: hidden;
}
.page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-image::before {
  content: "";
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content {
  width: 45%;
  margin-left: 50px;
}
.page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-label {
  margin-top: 5px;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
}
.page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #333333;
  position: absolute;
  top: 40%;
  left: -40px;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-title {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
}
.page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-text {
  width: 85%;
  margin-top: 30px;
  line-height: 1.5em;
  letter-spacing: 2px;
}
.page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-link-icon {
  width: 50px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-link-icon img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page-service-service-list .container .wrapper .service-list .service-item a:hover .service-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.page-service-service-list .container .wrapper .service-list .service-item a:hover .service-image::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.page-service-service-list .container .wrapper .service-list .service-item a:hover .service-content .service-label::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.page-service-service-list .container .wrapper .service-list .service-item a:hover .service-link-icon {
  -webkit-transform: translateX(7px);
          transform: translateX(7px);
}

@media screen and (max-width: 1200px) {
  .page-service-service-list .container .wrapper {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 120px;
    margin-bottom: 150px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 37%;
    left: 50px;
    height: 200px;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper .section-head {
    position: relative;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-right: 15px;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper .section-head::before {
    content: "";
    width: 1px;
    height: 100px;
    background: #333333;
    position: absolute;
    top: 0;
    right: -40px;
  }
  .page-service-service-list .container .wrapper .service-list {
    margin-left: 90px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item {
    margin-bottom: 20px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a {
    display: block;
    background: #f0eded;
    padding: 30px 20px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-image {
    width: 45%;
    position: relative;
    overflow: hidden;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-image::before {
    content: "";
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content {
    width: 45%;
    margin-left: 50px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-label {
    margin-top: 5px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-label::before {
    content: "";
    width: 30px;
    height: 1px;
    background: #333333;
    position: absolute;
    top: 40%;
    left: -40px;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-title {
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    margin-top: 20px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-text {
    width: 85%;
    margin-top: 30px;
    line-height: 1.5em;
    letter-spacing: 2px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-link-icon {
    width: 50px;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-link-icon img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-service-service-list .container .wrapper .service-list .service-item a:hover .service-image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .page-service-service-list .container .wrapper .service-list .service-item a:hover .service-image::before {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a:hover .service-content .service-label::before {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a:hover .service-link-icon {
    -webkit-transform: translateX(7px);
            transform: translateX(7px);
  }
}
@media screen and (max-width: 1050px) {
  .page-service-service-list .container .wrapper {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 120px;
    margin-bottom: 150px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 37%;
    left: 0px;
    height: 200px;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper .section-head {
    position: relative;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-right: 15px;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper .section-head::before {
    content: "";
    width: 1px;
    height: 100px;
    background: #333333;
    position: absolute;
    top: 0;
    right: -25px;
  }
  .page-service-service-list .container .wrapper .service-list {
    margin-left: 60px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item {
    margin-bottom: 20px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a {
    display: block;
    background: #f0eded;
    padding: 30px 20px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-image {
    width: 45%;
    position: relative;
    overflow: hidden;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-image::before {
    content: "";
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content {
    width: 45%;
    margin-left: 50px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-label {
    margin-top: 5px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-label::before {
    content: "";
    width: 30px;
    height: 1px;
    background: #333333;
    position: absolute;
    top: 40%;
    left: -40px;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-title {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-text {
    width: 85%;
    margin-top: 10px;
    line-height: 1.5em;
    letter-spacing: 2px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-link-icon {
    width: 50px;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-link-icon img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-service-service-list .container .wrapper .service-list .service-item a:hover .service-image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .page-service-service-list .container .wrapper .service-list .service-item a:hover .service-image::before {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a:hover .service-content .service-label::before {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a:hover .service-link-icon {
    -webkit-transform: translateX(7px);
            transform: translateX(7px);
  }
}
@media screen and (max-width: 820px) {
  .page-service-message .container .wrapper {
    position: relative;
  }
  .page-service-message .container .wrapper .swiper-ashirai {
    width: 100%;
    overflow: hidden;
    position: static;
    top: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 10px;
    z-index: 1;
  }
  .page-service-message .container .wrapper .swiper-ashirai .swiper-wrapper {
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    margin-top: 0;
  }
  .page-service-message .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide {
    margin-right: 30px;
    width: auto !important;
    /* これが重要 */
  }
  .page-service-message .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide .ashirai {
    font-size: 40px;
    color: rgba(51, 51, 51, 0.05);
    font-weight: 600;
    font-variation-settings: "width" 100;
    letter-spacing: 5px;
    white-space: nowrap;
  }
  .page-service-message .container .wrapper .contents-container {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .page-service-message .container .wrapper .contents-container .contents-wrapper {
    width: 91%;
    max-width: 1920px;
    margin: 0 auto;
  }
  .page-service-message .container .wrapper .contents-container .contents-wrapper .text-wrapper {
    width: 100%;
    margin-top: 20px;
  }
  .page-service-message .container .wrapper .contents-container .contents-wrapper .text-wrapper .section-head .title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2em;
  }
  .page-service-message .container .wrapper .contents-container .contents-wrapper .text-wrapper .text {
    text-align: center;
    margin: 0 auto;
    margin-top: 17px;
    letter-spacing: 1px;
    line-height: 2em;
  }
  .page-service-service-list .container .wrapper {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper {
    position: static;
    top: 37%;
    left: 0px;
    height: auto;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper .section-head {
    position: relative;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-right: 15px;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-service-service-list .container .wrapper .section-head-wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    top: auto;
    right: auto;
    bottom: -20px;
    left: 0;
  }
  .page-service-service-list .container .wrapper .service-list {
    margin-left: 0px;
    margin-top: 60px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item {
    margin-bottom: 20px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a {
    display: block;
    background: #f0eded;
    padding: 30px 20px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-image {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-image::before {
    content: "";
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content {
    width: 100%;
    margin-left: 0px;
    padding-left: 40px;
    margin-top: 20px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-label {
    margin-top: 5px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-label::before {
    content: "";
    width: 30px;
    height: 1px;
    background: #333333;
    position: absolute;
    top: 40%;
    left: -40px;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-title {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-content .service-text {
    width: 85%;
    margin-top: 10px;
    line-height: 1.5em;
    letter-spacing: 2px;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-link-icon {
    width: 40px;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-top: 40px;
    margin-left: auto;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a .service-item-inner .service-link-icon img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-service-service-list .container .wrapper .service-list .service-item a:hover .service-image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .page-service-service-list .container .wrapper .service-list .service-item a:hover .service-image::before {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a:hover .service-content .service-label::before {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  .page-service-service-list .container .wrapper .service-list .service-item a:hover .service-link-icon {
    -webkit-transform: translateX(7px);
            transform: translateX(7px);
  }
}
.page-service-delivery-message .container .wrapper {
  position: relative;
}
.page-service-delivery-message .container .wrapper .swiper-ashirai {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
.page-service-delivery-message .container .wrapper .swiper-ashirai .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  margin-top: 0;
}
.page-service-delivery-message .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide {
  margin-right: 30px;
  width: auto !important;
  /* これが重要 */
}
.page-service-delivery-message .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide .ashirai {
  font-size: clamp(20px, 6vw, 95px);
  color: rgba(51, 51, 51, 0.05);
  font-weight: 600;
  font-variation-settings: "width" 100;
  letter-spacing: 5px;
  white-space: nowrap;
}
.page-service-delivery-message .container .wrapper .contents-container {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-service-delivery-message .container .wrapper .contents-container .contents-wrapper {
  width: 91%;
  max-width: 1920px;
  margin-left: auto;
}
.page-service-delivery-message .container .wrapper .contents-container .contents-wrapper .text-wrapper {
  width: 100%;
  margin-top: 70px;
}
.page-service-delivery-message .container .wrapper .contents-container .contents-wrapper .text-wrapper .section-head .title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2em;
}
.page-service-delivery-message .container .wrapper .contents-container .contents-wrapper .text-wrapper .text {
  max-width: 1050px;
  margin-top: 30px;
  letter-spacing: 1px;
  line-height: 2em;
}

.page-service-delivery-trouble .container .wrapper {
  margin-top: 70px;
}
.page-service-delivery-trouble .container .wrapper .section-head h2 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  padding: 40px 0 100px 0;
  background: #333333;
}
.page-service-delivery-trouble .container .wrapper .trouble-cards {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-service-delivery-trouble .container .wrapper .trouble-cards.four-column {
  max-width: 1200px;
}
.page-service-delivery-trouble .container .wrapper .trouble-cards.four-column .trouble-card {
  width: 24.7%;
}
.page-service-delivery-trouble .container .wrapper .trouble-cards .trouble-card {
  margin-bottom: 5px;
  width: 33%;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
  position: relative;
}
.page-service-delivery-trouble .container .wrapper .trouble-cards .trouble-card::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #333333;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
}
.page-service-delivery-trouble .container .wrapper .trouble-cards .trouble-card .trouble-text {
  text-align: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.page-service-delivery-features .container .wrapper {
  position: relative;
  margin-top: 20px;
  margin-bottom: 120px;
}
.page-service-delivery-features .container .wrapper .section-head {
  width: 83%;
  margin: 0 auto;
  position: relative;
}
.page-service-delivery-features .container .wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
}
.page-service-delivery-features .container .wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.page-service-delivery-features .container .wrapper .section-head::before {
  content: "";
  width: 100px;
  height: 1px;
  background: #333333;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.page-service-delivery-features .container .wrapper .features-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 100px;
  position: relative;
  z-index: 2;
}
.page-service-delivery-features .container .wrapper .features-list .feature-item .feature-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: solid 1px #333333;
  background: rgba(255, 255, 255, 0.5);
}
.page-service-delivery-features .container .wrapper .features-list .feature-item .feature-circle .feature-number {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-top: 60px;
}
.page-service-delivery-features .container .wrapper .features-list .feature-item .feature-circle .feature-text {
  width: 75%;
  margin: 0 auto;
  text-align: center;
  margin-top: 25px;
  line-height: 1.2em;
}
.page-service-delivery-features .container .wrapper .features-list .feature-item:nth-child(1) {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
}
.page-service-delivery-features .container .wrapper .features-list .feature-item:nth-child(2) {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
.page-service-delivery-features .container .wrapper .features-list .feature-item:nth-child(3) {
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
}
.page-service-delivery-features .container .wrapper .features-list .feature-item:nth-child(4) {
  -webkit-transform: translateX(-24px);
          transform: translateX(-24px);
}
.page-service-delivery-features .container .wrapper .swiper-ashirai {
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
.page-service-delivery-features .container .wrapper .swiper-ashirai .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  margin-top: 0;
}
.page-service-delivery-features .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide {
  margin-right: 30px;
  width: auto !important;
  /* これが重要 */
}
.page-service-delivery-features .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide .ashirai {
  font-size: clamp(20px, 6vw, 95px);
  color: rgba(51, 51, 51, 0.05);
  font-weight: 600;
  font-variation-settings: "width" 100;
  letter-spacing: 5px;
  white-space: nowrap;
}

.service-child-contact .container .wrapper {
  padding: 70px 0 80px 0;
  background-image: url(img/footer-contact-bg.png);
  background-position: center;
  background-size: cover;
}
.service-child-contact .container .wrapper .section-head {
  width: 83%;
  margin: 0 auto;
  position: relative;
}
.service-child-contact .container .wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
}
.service-child-contact .container .wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.service-child-contact .container .wrapper .section-head::before {
  content: "";
  width: 100px;
  height: 1px;
  background: #333333;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.service-child-contact .container .wrapper .btn-wrapper {
  width: 83%;
  margin: 0 auto;
  margin-top: 80px;
}
.service-child-contact .container .wrapper .btn-wrapper .btn a {
  background: white;
}
.service-child-contact .container .wrapper .btn-wrapper .btn a:hover {
  background: #333333;
}
.service-child-contact .container .wrapper .btn-wrapper .btn + .btn {
  margin-top: 45px;
}

.page-service-delivery-service-list .container .wrapper {
  width: 83%;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-service-delivery-service-list .container .wrapper .section-head-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  left: 50px;
  height: 200px;
}
.page-service-delivery-service-list .container .wrapper .section-head-wrapper .section-head {
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.page-service-delivery-service-list .container .wrapper .section-head-wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-right: 15px;
}
.page-service-delivery-service-list .container .wrapper .section-head-wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}
.page-service-delivery-service-list .container .wrapper .section-head-wrapper .section-head::before {
  content: "";
  width: 1px;
  height: 100px;
  background: #333333;
  position: absolute;
  top: 0;
  right: -40px;
}
.page-service-delivery-service-list .container .wrapper .service-list {
  margin-left: 90px;
  margin-top: 10px;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item {
  margin-top: 35px;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item .service-header {
  letter-spacing: 3;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item .service-header .service-label {
  font-weight: 700;
  font-size: 18px;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item .service-header .service-title {
  font-weight: 700;
  font-size: 22px;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body {
  margin-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-image {
  width: 37%;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block {
  width: 60%;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-target {
  font-weight: 600;
  margin-top: 17px;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-target li {
  margin-left: 20px;
  line-height: 2em;
  position: relative;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-target li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #333333;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: -20px;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-feature {
  font-weight: 400;
  margin-top: 17px;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-feature li {
  margin-left: 20px;
  line-height: 2em;
  position: relative;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-feature li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #333333;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: -20px;
}
.page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-text {
  margin-top: 30px;
  line-height: 2em;
  max-width: 650px;
}

.page-service-delivery-faq .container .wrapper {
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 130px;
  margin-bottom: 130px;
}
.page-service-delivery-faq .container .wrapper .section-head {
  width: 83%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.page-service-delivery-faq .container .wrapper .section-head .title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
}
.page-service-delivery-faq .container .wrapper .section-head .subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-top: 5px;
}
.page-service-delivery-faq .container .wrapper .section-head::before {
  content: "";
  width: 100px;
  height: 1px;
  background: #333333;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.page-service-delivery-faq .container .wrapper .accordion {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 45px;
}
.page-service-delivery-faq .container .wrapper .accordion ul li {
  border-bottom: solid 1px #525151;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list .text-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list .text-wrapper .list-icon {
  color: #4e4e4e;
  font-size: 16px;
  width: 8%;
  padding-top: 3px;
  font-weight: bold;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list .text-wrapper .text {
  width: 90%;
  line-height: 2em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list.question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 40px;
  cursor: pointer;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list.question .text {
  color: #4e4e4e;
  font-weight: bold;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list.question .icon {
  position: relative;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list.question .icon .border {
  background: #a1a0a0;
  width: 18px;
  height: 1px;
  position: absolute;
  left: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list.question .icon .border:nth-child(1) {
  top: 30%;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list.question .icon .border:nth-child(2) {
  top: 47.5%;
  left: 0.5px;
  width: 17px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list.question.active .border:nth-child(1) {
  top: 48%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list.question.active .border:nth-child(2) {
  top: 48%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list.question:hover .text {
  opacity: 0.5;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list.question:hover i {
  opacity: 0.5;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list.answer {
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list.answer .text-wrapper {
  padding: 20px 40px;
  padding-top: 0;
}
.page-service-delivery-faq .container .wrapper .accordion ul li .list.answer .text-wrapper .text {
  padding-left: 8%;
}

@media screen and (max-width: 1200px) {
  .page-service-delivery-service-list .container .wrapper {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-service-delivery-service-list .container .wrapper .section-head-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
    left: 50px;
    height: 200px;
  }
  .page-service-delivery-service-list .container .wrapper .section-head-wrapper .section-head {
    position: relative;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .page-service-delivery-service-list .container .wrapper .section-head-wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-right: 15px;
  }
  .page-service-delivery-service-list .container .wrapper .section-head-wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-service-delivery-service-list .container .wrapper .section-head-wrapper .section-head::before {
    content: "";
    width: 1px;
    height: 100px;
    background: #333333;
    position: absolute;
    top: 0;
    right: -40px;
  }
  .page-service-delivery-service-list .container .wrapper .service-list {
    margin-left: 95px;
    margin-top: 10px;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item {
    margin-top: 35px;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-header {
    letter-spacing: 3;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-header .service-label {
    font-weight: 700;
    font-size: 18px;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-header .service-title {
    font-weight: 700;
    font-size: 22px;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body {
    margin-top: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-image {
    width: 37%;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block {
    width: 60%;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-target {
    font-weight: 600;
    margin-top: 5px;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-target li {
    margin-left: 20px;
    line-height: 1.5em;
    position: relative;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-target li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #333333;
    border-radius: 50%;
    position: absolute;
    top: 38%;
    left: -20px;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-text {
    margin-top: 10px;
    line-height: 1.5em;
    max-width: 650px;
  }
}
@media screen and (max-width: 1050px) {
  .page-service-delivery-trouble .container .wrapper {
    margin-top: 70px;
  }
  .page-service-delivery-trouble .container .wrapper .section-head h2 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    padding: 40px 0 100px 0;
    background: #333333;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards.four-column {
    width: 95%;
    max-width: 1200px;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards.four-column .trouble-card {
    width: 24.7%;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards.four-column .trouble-card .trouble-text {
    font-size: 16px;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards .trouble-card {
    width: 33%;
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
    position: relative;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards .trouble-card::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards .trouble-card .trouble-text {
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 820px) {
  .page-service-delivery-message .container .wrapper {
    position: relative;
  }
  .page-service-delivery-message .container .wrapper .swiper-ashirai {
    width: 100%;
    overflow: hidden;
    position: static;
    top: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 10px;
    z-index: 1;
  }
  .page-service-delivery-message .container .wrapper .swiper-ashirai .swiper-wrapper {
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    margin-top: 0;
  }
  .page-service-delivery-message .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide {
    margin-right: 30px;
    width: auto !important;
    /* これが重要 */
  }
  .page-service-delivery-message .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide .ashirai {
    font-size: 50px;
    color: rgba(51, 51, 51, 0.05);
    font-weight: 600;
    font-variation-settings: "width" 100;
    letter-spacing: 5px;
    white-space: nowrap;
  }
  .page-service-delivery-message .container .wrapper .contents-container {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .page-service-delivery-message .container .wrapper .contents-container .contents-wrapper {
    width: 91%;
    max-width: 1920px;
    margin: 0 auto;
  }
  .page-service-delivery-message .container .wrapper .contents-container .contents-wrapper .text-wrapper {
    width: 100%;
    margin-top: 20px;
  }
  .page-service-delivery-message .container .wrapper .contents-container .contents-wrapper .text-wrapper .section-head .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
  }
  .page-service-delivery-message .container .wrapper .contents-container .contents-wrapper .text-wrapper .text {
    max-width: 1050px;
    margin-top: 10px;
    letter-spacing: 1px;
    line-height: 2em;
  }
  .page-service-delivery-trouble .container .wrapper {
    margin-top: 70px;
  }
  .page-service-delivery-trouble .container .wrapper .section-head h2 {
    color: white;
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    padding: 40px 0 100px 0;
    background: #333333;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards.four-column {
    width: 95%;
    max-width: 1200px;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards.four-column .trouble-card {
    width: 80%;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards.four-column .trouble-card .trouble-text {
    font-size: 16px;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards .trouble-card {
    width: 80%;
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
    position: relative;
    margin-bottom: 10px;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards .trouble-card::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
  }
  .page-service-delivery-trouble .container .wrapper .trouble-cards .trouble-card .trouble-text {
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-service-delivery-features .container .wrapper {
    position: relative;
    margin-top: 20px;
    margin-bottom: 60px;
  }
  .page-service-delivery-features .container .wrapper .section-head {
    width: 83%;
    margin: 0 auto;
    position: relative;
  }
  .page-service-delivery-features .container .wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .page-service-delivery-features .container .wrapper .section-head .subtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.2em;
  }
  .page-service-delivery-features .container .wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .page-service-delivery-features .container .wrapper .features-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-service-delivery-features .container .wrapper .features-list .feature-item .feature-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: solid 1px #333333;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
  }
  .page-service-delivery-features .container .wrapper .features-list .feature-item .feature-circle .feature-number {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-top: 60px;
  }
  .page-service-delivery-features .container .wrapper .features-list .feature-item .feature-circle .feature-text {
    text-align: center;
    margin-top: 25px;
    line-height: 1.2em;
  }
  .page-service-delivery-features .container .wrapper .features-list .feature-item:nth-child(1) {
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  .page-service-delivery-features .container .wrapper .features-list .feature-item:nth-child(2) {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  .page-service-delivery-features .container .wrapper .features-list .feature-item:nth-child(3) {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  .page-service-delivery-features .container .wrapper .features-list .feature-item:nth-child(4) {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
  }
  .page-service-delivery-features .container .wrapper .swiper-ashirai {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: auto;
    top: 120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
  }
  .page-service-delivery-features .container .wrapper .swiper-ashirai .swiper-wrapper {
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    margin-top: 0;
  }
  .page-service-delivery-features .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide {
    margin-right: 30px;
    width: auto !important;
    /* これが重要 */
  }
  .page-service-delivery-features .container .wrapper .swiper-ashirai .swiper-wrapper .swiper-slide .ashirai {
    font-size: 50px;
    color: rgba(51, 51, 51, 0.05);
    font-weight: 600;
    font-variation-settings: "width" 100;
    letter-spacing: 5px;
    white-space: nowrap;
  }
  .service-child-contact .container .wrapper {
    padding: 70px 0 80px 0;
    background-image: url(img/footer-contact-bg.png);
    background-position: center;
    background-size: cover;
  }
  .service-child-contact .container .wrapper .section-head {
    width: 83%;
    margin: 0 auto;
    position: relative;
  }
  .service-child-contact .container .wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .service-child-contact .container .wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .service-child-contact .container .wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .service-child-contact .container .wrapper .btn-wrapper {
    width: 90%;
    margin: 0 auto;
    margin-top: 80px;
  }
  .service-child-contact .container .wrapper .btn-wrapper .btn {
    text-align: center;
  }
  .service-child-contact .container .wrapper .btn-wrapper .btn a {
    background: white;
    padding: 10px 20px;
  }
  .service-child-contact .container .wrapper .btn-wrapper .btn a::before {
    display: none;
  }
  .service-child-contact .container .wrapper .btn-wrapper .btn a:hover {
    background: #333333;
  }
  .service-child-contact .container .wrapper .btn-wrapper .btn + .btn {
    margin-top: 45px;
  }
  .page-service-delivery-service-list .container .wrapper {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-service-delivery-service-list .container .wrapper .section-head-wrapper {
    position: static;
    top: 50px;
    left: 50px;
    height: auto;
  }
  .page-service-delivery-service-list .container .wrapper .section-head-wrapper .section-head {
    position: relative;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .page-service-delivery-service-list .container .wrapper .section-head-wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-right: 15px;
  }
  .page-service-delivery-service-list .container .wrapper .section-head-wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .page-service-delivery-service-list .container .wrapper .section-head-wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    top: auto;
    bottom: -20px;
    right: auto;
    left: 0;
  }
  .page-service-delivery-service-list .container .wrapper .service-list {
    margin-left: 0px;
    margin-top: 0px;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item {
    margin-top: 60px;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-header {
    letter-spacing: 3;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-header .service-label {
    font-weight: 700;
    font-size: 18px;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-header .service-title {
    font-weight: 700;
    font-size: 22px;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body {
    margin-top: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-image {
    width: 100%;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block {
    width: 100%;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-target {
    font-weight: 600;
    margin-top: 5px;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-target li {
    margin-left: 20px;
    line-height: 2em;
    position: relative;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-target li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #333333;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: -20px;
  }
  .page-service-delivery-service-list .container .wrapper .service-list .service-item .service-body .service-text-block .service-text {
    margin-top: 10px;
    line-height: 2em;
    max-width: 650px;
  }
  .page-service-delivery-faq .container .wrapper {
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 70px;
  }
  .page-service-delivery-faq .container .wrapper .section-head {
    width: 83%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .page-service-delivery-faq .container .wrapper .section-head .title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
  }
  .page-service-delivery-faq .container .wrapper .section-head .subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 5px;
  }
  .page-service-delivery-faq .container .wrapper .section-head::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .page-service-delivery-faq .container .wrapper .accordion {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 45px;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li {
    border-bottom: solid 1px #525151;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list .text-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 93%;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list .text-wrapper .list-icon {
    color: #4e4e4e;
    font-size: 16px;
    width: 14%;
    padding-top: 3px;
    font-weight: bold;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list .text-wrapper .text {
    width: 86%;
    line-height: 1.2em;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list.question {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px;
    cursor: pointer;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list.question .text {
    color: #4e4e4e;
    font-weight: bold;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list.question .icon {
    position: relative;
    margin-right: 12px;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list.question .icon .border {
    background: #a1a0a0;
    width: 18px;
    height: 1px;
    position: absolute;
    left: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list.question .icon .border:nth-child(1) {
    top: 30%;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list.question .icon .border:nth-child(2) {
    top: 47.5%;
    left: 0.5px;
    width: 17px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list.question.active .border:nth-child(1) {
    top: 48%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list.question.active .border:nth-child(2) {
    top: 48%;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list.question:hover .text {
    opacity: 0.5;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list.question:hover i {
    opacity: 0.5;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list.answer {
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list.answer .text-wrapper {
    padding: 10px 0px 10px 50px;
    padding-top: 0;
  }
  .page-service-delivery-faq .container .wrapper .accordion ul li .list.answer .text-wrapper .text {
    padding-left: 0;
  }
}
.archive-recrute-ashirai {
  width: 63%;
  max-width: 1120px;
  position: absolute;
  top: 0;
  right: 0;
}

.archive-recrute-intro .container .wrapper {
  position: relative;
  width: 83%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
}
.archive-recrute-intro .container .wrapper h3 {
  font-size: 38px;
  font-weight: 700;
}
.archive-recrute-intro .container .wrapper .text {
  margin-top: 40px;
  line-height: 1.8em;
  letter-spacing: 3px;
}

.archive-recrute-personality .container .wrapper {
  position: relative;
  margin-top: 140px;
}
.archive-recrute-personality .container .wrapper .section-head {
  border-bottom: solid 1px #333333;
  max-width: 1920px;
  margin: 0 auto;
}
.archive-recrute-personality .container .wrapper .section-head .head-wrapper {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.archive-recrute-personality .container .wrapper .section-head .head-wrapper .title {
  font-size: 50px;
  font-weight: 700;
  margin-right: 30px;
}
.archive-recrute-personality .container .wrapper .section-head .head-wrapper .subtitle {
  color: #cf0f31;
  font-size: 16px;
  padding-top: 20px;
}
.archive-recrute-personality .container .wrapper .contents-wrapper {
  width: 70%;
  margin: 0 auto;
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.archive-recrute-personality .container .wrapper .contents-wrapper .card {
  width: 49.8%;
  position: relative;
  margin-bottom: 5px;
}
.archive-recrute-personality .container .wrapper .contents-wrapper .card .card-title {
  position: absolute;
  bottom: 30px;
  left: 40px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  letter-spacing: 3px;
}

.archive-recrute-entry .container {
  margin-top: 100px;
  background: url(img/page-recrute-entry-bg.png);
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  position: relative;
}
.archive-recrute-entry .container::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #333333;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.archive-recrute-entry .container .wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  color: white;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.archive-recrute-entry .container .wrapper .left-wrapper {
  width: 50%;
}
.archive-recrute-entry .container .wrapper .left-wrapper .section-head .head-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.archive-recrute-entry .container .wrapper .left-wrapper .section-head .head-wrapper .title {
  font-size: 50px;
  font-weight: 700;
  margin-right: 30px;
}
.archive-recrute-entry .container .wrapper .left-wrapper .section-head .head-wrapper .subtitle {
  font-size: 16px;
  padding-top: 20px;
}
.archive-recrute-entry .container .wrapper .left-wrapper .btn {
  margin-top: 40px;
}
.archive-recrute-entry .container .wrapper .left-wrapper .btn a {
  background: white;
  color: #333333;
}
.archive-recrute-entry .container .wrapper .left-wrapper .btn a:hover {
  background: #333333;
  color: white;
}
.archive-recrute-entry .container .wrapper .contents-wrapper {
  width: 50%;
}
.archive-recrute-entry .container .wrapper .contents-wrapper .content .title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
}
.archive-recrute-entry .container .wrapper .contents-wrapper .content .text {
  margin-top: 30px;
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1.7em;
}

.archive-recrute-welfare .container .wrapper .section-head {
  border-bottom: solid 1px #333333;
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 120px;
}
.archive-recrute-welfare .container .wrapper .section-head .head-wrapper {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.archive-recrute-welfare .container .wrapper .section-head .head-wrapper .title {
  font-size: 50px;
  font-weight: 700;
  margin-right: 30px;
}
.archive-recrute-welfare .container .wrapper .section-head .head-wrapper .subtitle {
  color: #cf0f31;
  font-size: 16px;
  padding-top: 20px;
}
.archive-recrute-welfare .container .wrapper .contents-wrapper ul {
  width: 57%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.archive-recrute-welfare .container .wrapper .contents-wrapper ul li {
  width: 25%;
  min-height: 260px;
  padding: 36px 12px;
  text-align: center;
  border-left: solid 1px #b8b7b7;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.archive-recrute-welfare .container .wrapper .contents-wrapper ul li .card-title {
  min-height: 3.2em;
  line-height: 1.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.archive-recrute-welfare .container .wrapper .contents-wrapper ul li .icon {
  width: 100%;
  max-width: 96px;
  height: 72px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.archive-recrute-welfare .container .wrapper .contents-wrapper ul li .icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.archive-recrute-welfare .container .wrapper .contents-wrapper ul li:nth-child(4) {
  border-right: solid 1px #b8b7b7;
}
.archive-recrute-welfare .container .wrapper .contents-wrapper ul li:nth-child(8) {
  border-right: solid 1px #b8b7b7;
}

.archive-recrute-interview .container .wrapper .section-head {
  border-bottom: solid 1px #333333;
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 120px;
}
.archive-recrute-interview .container .wrapper .section-head .head-wrapper {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.archive-recrute-interview .container .wrapper .section-head .head-wrapper .title {
  font-size: 50px;
  font-weight: 700;
  margin-right: 30px;
}
.archive-recrute-interview .container .wrapper .section-head .head-wrapper .subtitle {
  color: #cf0f31;
  font-size: 16px;
  padding-top: 20px;
}
.archive-recrute-interview .container .wrapper .contents-wrapper {
  width: 95%;
  max-width: 1440px;
  margin: 0 auto;
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item {
  width: 87%;
  padding: 50px 90px 40px 90px;
  margin-top: 80px;
  background-position: center;
  background-size: cover;
  position: relative;
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #333333;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-image {
  width: 28%;
  position: absolute;
  top: -50px;
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-image .img-wrapper {
  position: relative;
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-image .img-wrapper .position {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  line-height: 2em;
  letter-spacing: 2px;
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-text {
  width: 55%;
  position: relative;
  color: white;
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-text h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-text p {
  margin-top: 13px;
  margin-bottom: 40px;
  line-height: 1.5em;
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(odd) .interview-image {
  left: 8%;
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(odd) .interview-text {
  margin-left: auto;
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(even) {
  margin-left: auto;
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(even) .interview-image {
  right: 8%;
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(1) {
  background-image: url(img/page-recrute-interview2-bg.png);
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(2) {
  background-image: url(img/page-recrute-interview3-bg.png);
}
.archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(3) {
  background-image: url(img/page-recrute-interview1-bg.png);
}

.archive-recrute-job-description .container {
  background: #f8f8f8;
  padding: 60px 0 100px 0;
  margin-top: 120px;
}
.archive-recrute-job-description .container .wrapper {
  max-width: 1920px;
  margin: 0 auto;
}
.archive-recrute-job-description .container .wrapper .section-head {
  border-bottom: solid 1px #333333;
  max-width: 1920px;
  margin: 0 auto;
}
.archive-recrute-job-description .container .wrapper .section-head .head-wrapper {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.archive-recrute-job-description .container .wrapper .section-head .head-wrapper .title {
  font-size: 50px;
  font-weight: 700;
  margin-right: 30px;
}
.archive-recrute-job-description .container .wrapper .section-head .head-wrapper .subtitle {
  color: #cf0f31;
  font-size: 16px;
  padding-top: 20px;
}
.archive-recrute-job-description .container .wrapper .contents-wrapper {
  width: 70%;
  margin: 0 auto;
  margin-top: 90px;
}
.archive-recrute-job-description .container .wrapper .contents-wrapper .service-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
.archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content {
  width: 50%;
}
.archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content .service-no {
  color: #cf0f31;
  font-size: 20px;
  font-weight: 600;
}
.archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content .service-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-top: 5px;
  position: relative;
}
.archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content .service-title::before {
  content: "";
  width: 130px;
  height: 1px;
  background: #333333;
  position: absolute;
  bottom: -25px;
  left: 0;
}
.archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content .text {
  margin-top: 40px;
  line-height: 1.5em;
}
.archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .image {
  width: 45%;
}

.archive-recrute-job-openings .container .wrapper {
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 90px;
}
.archive-recrute-job-openings .container .wrapper .section-head {
  border-bottom: solid 1px #333333;
  max-width: 1920px;
  margin: 0 auto;
}
.archive-recrute-job-openings .container .wrapper .section-head .head-wrapper {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.archive-recrute-job-openings .container .wrapper .section-head .head-wrapper .title {
  font-size: 50px;
  font-weight: 700;
  margin-right: 30px;
}
.archive-recrute-job-openings .container .wrapper .section-head .head-wrapper .subtitle {
  color: #cf0f31;
  font-size: 16px;
  padding-top: 20px;
}
.archive-recrute-job-openings .container .wrapper .contents-wrapper {
  width: 90%;
  margin: 0 auto;
}
.archive-recrute-job-openings .container .wrapper .contents-wrapper .category {
  margin-top: 70px;
}
.archive-recrute-job-openings .container .wrapper .contents-wrapper .category .title {
  font-size: 20px;
  font-weight: 600;
  margin-left: 70px;
  position: relative;
}
.archive-recrute-job-openings .container .wrapper .contents-wrapper .category .title::before {
  content: "";
  width: 50px;
  height: 1px;
  background: #333333;
  position: absolute;
  top: 47%;
  left: -70px;
}
.archive-recrute-job-openings .container .wrapper .contents-wrapper .category .card-list {
  margin-top: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.archive-recrute-job-openings .container .wrapper .contents-wrapper .category .card-list .card {
  width: 24%;
  margin: 0 4px;
}
.archive-recrute-job-openings .container .wrapper .contents-wrapper .category .card-list .card figure {
  position: relative;
}
.archive-recrute-job-openings .container .wrapper .contents-wrapper .category .card-list .card figure::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.archive-recrute-job-openings .container .wrapper .contents-wrapper .category .card-list .card figure:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.archive-recrute-job-openings .container .wrapper .contents-wrapper .category .card-list .card .job-title {
  padding: 10px;
  letter-spacing: 2px;
  line-height: 1.5em;
}

.archive-recrute-faq .container .wrapper {
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 130px;
}
.archive-recrute-faq .container .wrapper .section-head {
  border-bottom: solid 1px #333333;
  max-width: 1920px;
  margin: 0 auto;
}
.archive-recrute-faq .container .wrapper .section-head .head-wrapper {
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.archive-recrute-faq .container .wrapper .section-head .head-wrapper .title {
  font-size: 50px;
  font-weight: 700;
  margin-right: 30px;
}
.archive-recrute-faq .container .wrapper .section-head .head-wrapper .subtitle {
  color: #cf0f31;
  font-size: 16px;
  padding-top: 20px;
}
.archive-recrute-faq .container .wrapper .accordion {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 45px;
}
.archive-recrute-faq .container .wrapper .accordion ul li + li {
  border-top: solid 1px #e9e9e9;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list .text-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list .text-wrapper .list-icon {
  color: #4e4e4e;
  font-size: 16px;
  width: 8%;
  padding-top: 3px;
  font-weight: bold;
  color: #cf0f31;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list .text-wrapper .text {
  width: 90%;
  line-height: 2em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list.question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 40px;
  cursor: pointer;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list.question .text {
  color: #4e4e4e;
  font-weight: bold;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list.question .icon {
  position: relative;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list.question .icon .border {
  background: #a1a0a0;
  width: 18px;
  height: 1px;
  position: absolute;
  left: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list.question .icon .border:nth-child(1) {
  top: 30%;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list.question .icon .border:nth-child(2) {
  top: 47.5%;
  left: 0.5px;
  width: 17px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.archive-recrute-faq .container .wrapper .accordion ul li .list.question.active .border:nth-child(1) {
  top: 48%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list.question.active .border:nth-child(2) {
  top: 48%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.archive-recrute-faq .container .wrapper .accordion ul li .list.question:hover .text {
  opacity: 0.5;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list.question:hover i {
  opacity: 0.5;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list.answer {
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list.answer .text-wrapper {
  padding: 20px 40px;
  padding-top: 0;
}
.archive-recrute-faq .container .wrapper .accordion ul li .list.answer .text-wrapper .text {
  padding-left: 8%;
}

@media screen and (max-width: 1200px) {
  .archive-recrute-interview .container .wrapper .section-head {
    border-bottom: solid 1px #333333;
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 120px;
  }
  .archive-recrute-interview .container .wrapper .section-head .head-wrapper {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .archive-recrute-interview .container .wrapper .section-head .head-wrapper .title {
    font-size: 50px;
    font-weight: 700;
    margin-right: 30px;
  }
  .archive-recrute-interview .container .wrapper .section-head .head-wrapper .subtitle {
    color: #cf0f31;
    font-size: 16px;
    padding-top: 20px;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper {
    width: 95%;
    max-width: 1440px;
    margin: 0 auto;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item {
    width: 90%;
    padding: 30px;
    margin-top: 80px;
    background-position: center;
    background-size: cover;
    position: relative;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-image {
    width: 28%;
    position: absolute;
    top: -13%;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-image .img-wrapper {
    position: relative;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-image .img-wrapper .position {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    line-height: 2em;
    letter-spacing: 2px;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-text {
    width: 55%;
    position: relative;
    color: white;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-text h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-text p {
    margin-top: 13px;
    margin-bottom: 40px;
    line-height: 1.5em;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(odd) .interview-image {
    left: 8%;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(odd) .interview-text {
    margin-left: auto;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(even) {
    margin-left: auto;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(even) .interview-image {
    right: 8%;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(1) {
    background-image: url(img/page-recrute-interview2-bg.png);
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(2) {
    background-image: url(img/page-recrute-interview3-bg.png);
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(3) {
    background-image: url(img/page-recrute-interview1-bg.png);
  }
}
@media screen and (max-width: 1050px) {
  .archive-recrute-personality .container .wrapper {
    position: relative;
    margin-top: 140px;
  }
  .archive-recrute-personality .container .wrapper .section-head {
    border-bottom: solid 1px #333333;
    max-width: 1920px;
    margin: 0 auto;
  }
  .archive-recrute-personality .container .wrapper .section-head .head-wrapper {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .archive-recrute-personality .container .wrapper .section-head .head-wrapper .title {
    font-size: 50px;
    font-weight: 700;
    margin-right: 30px;
  }
  .archive-recrute-personality .container .wrapper .section-head .head-wrapper .subtitle {
    color: #cf0f31;
    font-size: 16px;
    padding-top: 20px;
  }
  .archive-recrute-personality .container .wrapper .contents-wrapper {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .archive-recrute-personality .container .wrapper .contents-wrapper .card {
    width: 49.8%;
    position: relative;
    margin-bottom: 5px;
  }
  .archive-recrute-personality .container .wrapper .contents-wrapper .card .card-title {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    letter-spacing: 3px;
  }
  .archive-recrute-welfare .container .wrapper .section-head {
    border-bottom: solid 1px #333333;
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 120px;
  }
  .archive-recrute-welfare .container .wrapper .section-head .head-wrapper {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .archive-recrute-welfare .container .wrapper .section-head .head-wrapper .title {
    font-size: 50px;
    font-weight: 700;
    margin-right: 30px;
  }
  .archive-recrute-welfare .container .wrapper .section-head .head-wrapper .subtitle {
    color: #cf0f31;
    font-size: 16px;
    padding-top: 20px;
  }
  .archive-recrute-welfare .container .wrapper .contents-wrapper ul {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 90px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .archive-recrute-welfare .container .wrapper .contents-wrapper ul li {
    width: 25%;
    min-height: 260px;
    padding: 36px 12px;
    text-align: center;
    border-left: solid 1px #b8b7b7;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .archive-recrute-welfare .container .wrapper .contents-wrapper ul li .card-title {
    min-height: 3.2em;
    line-height: 1.6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .archive-recrute-welfare .container .wrapper .contents-wrapper ul li .icon {
    width: 100%;
    max-width: 96px;
    height: 72px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .archive-recrute-welfare .container .wrapper .contents-wrapper ul li .icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .archive-recrute-welfare .container .wrapper .contents-wrapper ul li:nth-child(4) {
    border-right: solid 1px #b8b7b7;
  }
  .archive-recrute-welfare .container .wrapper .contents-wrapper ul li:nth-child(8) {
    border-right: solid 1px #b8b7b7;
  }
  .archive-recrute-interview .container .wrapper .section-head {
    border-bottom: solid 1px #333333;
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 120px;
  }
  .archive-recrute-interview .container .wrapper .section-head .head-wrapper {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .archive-recrute-interview .container .wrapper .section-head .head-wrapper .title {
    font-size: 50px;
    font-weight: 700;
    margin-right: 30px;
  }
  .archive-recrute-interview .container .wrapper .section-head .head-wrapper .subtitle {
    color: #cf0f31;
    font-size: 16px;
    padding-top: 20px;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper {
    width: 95%;
    max-width: 1440px;
    margin: 0 auto;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item {
    width: 95%;
    padding: 20px;
    margin-top: 80px;
    background-position: center;
    background-size: cover;
    position: relative;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-image {
    width: 31%;
    position: absolute;
    top: -13%;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-image .img-wrapper {
    position: relative;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-image .img-wrapper .position {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    line-height: 2em;
    letter-spacing: 2px;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-text {
    width: 55%;
    position: relative;
    color: white;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-text h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-text p {
    margin-top: 13px;
    margin-bottom: 40px;
    line-height: 1.5em;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(odd) .interview-image {
    left: 8%;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(odd) .interview-text {
    margin-left: auto;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(even) {
    margin-left: auto;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(even) .interview-image {
    right: 8%;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(1) {
    background-image: url(img/page-recrute-interview2-bg.png);
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(2) {
    background-image: url(img/page-recrute-interview3-bg.png);
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(3) {
    background-image: url(img/page-recrute-interview1-bg.png);
  }
  .archive-recrute-job-description .container {
    background: #f8f8f8;
    padding: 60px 0 100px 0;
    margin-top: 120px;
  }
  .archive-recrute-job-description .container .wrapper {
    max-width: 1920px;
    margin: 0 auto;
  }
  .archive-recrute-job-description .container .wrapper .section-head {
    border-bottom: solid 1px #333333;
    max-width: 1920px;
    margin: 0 auto;
  }
  .archive-recrute-job-description .container .wrapper .section-head .head-wrapper {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .archive-recrute-job-description .container .wrapper .section-head .head-wrapper .title {
    font-size: 50px;
    font-weight: 700;
    margin-right: 30px;
  }
  .archive-recrute-job-description .container .wrapper .section-head .head-wrapper .subtitle {
    color: #cf0f31;
    font-size: 16px;
    padding-top: 20px;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 90px;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content {
    width: 50%;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content .service-no {
    color: #cf0f31;
    font-size: 20px;
    font-weight: 600;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content .service-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 5px;
    position: relative;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content .service-title::before {
    content: "";
    width: 130px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -25px;
    left: 0;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content .text {
    margin-top: 40px;
    line-height: 1.5em;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .image {
    width: 45%;
  }
}
@media screen and (max-width: 820px) {
  .archive-recrute-ashirai {
    width: 75%;
    max-width: 1120px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .archive-recrute-intro .container .wrapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 60px;
  }
  .archive-recrute-intro .container .wrapper h3 {
    font-size: 30px;
    font-weight: 700;
  }
  .archive-recrute-intro .container .wrapper .text {
    margin-top: 20px;
    line-height: 1.8em;
    letter-spacing: 3px;
  }
  .archive-recrute-personality .container .wrapper {
    position: relative;
    margin-top: 70px;
  }
  .archive-recrute-personality .container .wrapper .section-head {
    border-bottom: solid 1px #333333;
    max-width: 1920px;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  .archive-recrute-personality .container .wrapper .section-head .head-wrapper {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .archive-recrute-personality .container .wrapper .section-head .head-wrapper .title {
    font-size: 35px;
    font-weight: 700;
    margin-right: 30px;
  }
  .archive-recrute-personality .container .wrapper .section-head .head-wrapper .subtitle {
    color: #cf0f31;
    font-size: 16px;
    padding-top: 0px;
  }
  .archive-recrute-personality .container .wrapper .contents-wrapper {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .archive-recrute-personality .container .wrapper .contents-wrapper .card {
    width: 90%;
    margin: 0 auto;
    position: relative;
    margin-bottom: 15px;
  }
  .archive-recrute-personality .container .wrapper .contents-wrapper .card .card-title {
    width: 80%;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 600;
    color: white;
    letter-spacing: 3px;
  }
  .archive-recrute-entry .container {
    margin-top: 100px;
    background: url(img/page-recrute-entry-bg.png);
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    position: relative;
  }
  .archive-recrute-entry .container::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .archive-recrute-entry .container .wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    color: white;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .archive-recrute-entry .container .wrapper .left-wrapper {
    width: 100%;
  }
  .archive-recrute-entry .container .wrapper .left-wrapper .section-head .head-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .archive-recrute-entry .container .wrapper .left-wrapper .section-head .head-wrapper .title {
    font-size: 40px;
    font-weight: 700;
    margin-right: 30px;
  }
  .archive-recrute-entry .container .wrapper .left-wrapper .section-head .head-wrapper .subtitle {
    font-size: 16px;
    padding-top: 5px;
  }
  .archive-recrute-entry .container .wrapper .left-wrapper .btn {
    margin-top: 40px;
  }
  .archive-recrute-entry .container .wrapper .left-wrapper .btn a {
    background: white;
    color: #333333;
  }
  .archive-recrute-entry .container .wrapper .left-wrapper .btn a:hover {
    background: #333333;
    color: white;
  }
  .archive-recrute-entry .container .wrapper .contents-wrapper {
    width: 100%;
    margin-top: 30px;
  }
  .archive-recrute-entry .container .wrapper .contents-wrapper .content .title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
  }
  .archive-recrute-entry .container .wrapper .contents-wrapper .content .text {
    margin-top: 30px;
    font-size: 16px;
    letter-spacing: 3px;
    line-height: 1.7em;
  }
  .archive-recrute-entry .container .wrapper .btn {
    margin-top: 40px;
    text-align: center;
  }
  .archive-recrute-entry .container .wrapper .btn a {
    background: white;
    color: #333333;
    white-space: nowrap;
  }
  .archive-recrute-entry .container .wrapper .btn a:hover {
    background: #333333;
    color: white;
  }
  .archive-recrute-welfare .container .wrapper .section-head {
    border-bottom: solid 1px #333333;
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 120px;
    padding-bottom: 15px;
  }
  .archive-recrute-welfare .container .wrapper .section-head .head-wrapper {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .archive-recrute-welfare .container .wrapper .section-head .head-wrapper .title {
    font-size: 40px;
    font-weight: 700;
    margin-right: 30px;
  }
  .archive-recrute-welfare .container .wrapper .section-head .head-wrapper .subtitle {
    color: #cf0f31;
    font-size: 16px;
    padding-top: 5px;
  }
  .archive-recrute-welfare .container .wrapper .contents-wrapper ul {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .archive-recrute-welfare .container .wrapper .contents-wrapper ul li {
    width: 48%;
    min-height: 220px;
    padding: 28px 10px;
    text-align: center;
    border-left: solid 1px #b8b7b7;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
  .archive-recrute-welfare .container .wrapper .contents-wrapper ul li .card-title {
    min-height: 3.2em;
    line-height: 1.6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .archive-recrute-welfare .container .wrapper .contents-wrapper ul li .icon {
    width: 100%;
    max-width: 84px;
    height: 64px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .archive-recrute-welfare .container .wrapper .contents-wrapper ul li .icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .archive-recrute-welfare .container .wrapper .contents-wrapper ul li:nth-child(even) {
    border-right: solid 1px #b8b7b7;
  }
  .archive-recrute-interview .container .wrapper .section-head {
    border-bottom: solid 1px #333333;
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 70px;
    padding-bottom: 15px;
  }
  .archive-recrute-interview .container .wrapper .section-head .head-wrapper {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .archive-recrute-interview .container .wrapper .section-head .head-wrapper .title {
    font-size: 40px;
    font-weight: 700;
    margin-right: 30px;
  }
  .archive-recrute-interview .container .wrapper .section-head .head-wrapper .subtitle {
    color: #cf0f31;
    font-size: 16px;
    padding-top: 5px;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    background-position: center;
    background-size: cover;
    position: relative;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-image {
    width: 100%;
    margin: 0 auto;
    position: static;
    top: -13%;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-image .img-wrapper {
    position: relative;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-image .img-wrapper .position {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    line-height: 2em;
    letter-spacing: 2px;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-text {
    width: 100%;
    position: relative;
    color: white;
    margin-top: 20px;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-text h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item .interview-text p {
    margin-top: 13px;
    margin-bottom: 40px;
    line-height: 1.5em;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(odd) .interview-image {
    left: 8%;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(odd) .interview-text {
    margin-left: auto;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(even) {
    margin-left: auto;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(even) .interview-image {
    right: 8%;
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(1) {
    background-image: url(img/page-recrute-interview2-bg.png);
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(2) {
    background-image: url(img/page-recrute-interview3-bg.png);
  }
  .archive-recrute-interview .container .wrapper .contents-wrapper .interview-item:nth-child(3) {
    background-image: url(img/page-recrute-interview1-bg.png);
  }
  .archive-recrute-job-description .container {
    background: #f8f8f8;
    padding: 60px 0 50px 0;
    margin-top: 120px;
  }
  .archive-recrute-job-description .container .wrapper {
    max-width: 1920px;
    margin: 0 auto;
  }
  .archive-recrute-job-description .container .wrapper .section-head {
    border-bottom: solid 1px #333333;
    max-width: 1920px;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  .archive-recrute-job-description .container .wrapper .section-head .head-wrapper {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .archive-recrute-job-description .container .wrapper .section-head .head-wrapper .title {
    font-size: 30px;
    font-weight: 700;
    margin-right: 30px;
  }
  .archive-recrute-job-description .container .wrapper .section-head .head-wrapper .subtitle {
    color: #cf0f31;
    font-size: 16px;
    padding-top: 5px;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content {
    width: 100%;
    margin-top: 20px;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content .service-no {
    color: #cf0f31;
    font-size: 20px;
    font-weight: 600;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content .service-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 5px;
    position: relative;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content .service-title::before {
    content: "";
    width: 130px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -25px;
    left: 0;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .content .text {
    margin-top: 40px;
    line-height: 1.5em;
  }
  .archive-recrute-job-description .container .wrapper .contents-wrapper .service-card .image {
    width: 100%;
  }
  .archive-recrute-job-openings .container .wrapper {
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .archive-recrute-job-openings .container .wrapper .section-head {
    border-bottom: solid 1px #333333;
    max-width: 1920px;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  .archive-recrute-job-openings .container .wrapper .section-head .head-wrapper {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .archive-recrute-job-openings .container .wrapper .section-head .head-wrapper .title {
    font-size: 30px;
    font-weight: 700;
    margin-right: 30px;
  }
  .archive-recrute-job-openings .container .wrapper .section-head .head-wrapper .subtitle {
    color: #cf0f31;
    font-size: 16px;
    padding-top: 5px;
  }
  .archive-recrute-job-openings .container .wrapper .contents-wrapper {
    width: 100%;
    margin: 0 auto;
  }
  .archive-recrute-job-openings .container .wrapper .contents-wrapper .category {
    margin-top: 40px;
  }
  .archive-recrute-job-openings .container .wrapper .contents-wrapper .category .title {
    font-size: 20px;
    font-weight: 600;
    margin-left: 70px;
    position: relative;
  }
  .archive-recrute-job-openings .container .wrapper .contents-wrapper .category .title::before {
    content: "";
    width: 50px;
    height: 1px;
    background: #333333;
    position: absolute;
    top: 47%;
    left: -70px;
  }
  .archive-recrute-job-openings .container .wrapper .contents-wrapper .category .card-list {
    margin-top: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .archive-recrute-job-openings .container .wrapper .contents-wrapper .category .card-list .card {
    width: 47%;
    margin: 0 4px;
  }
  .archive-recrute-job-openings .container .wrapper .contents-wrapper .category .card-list .card .job-title {
    padding: 10px;
    letter-spacing: 2px;
    line-height: 1.5em;
  }
  .archive-recrute-faq .container .wrapper {
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 70px;
  }
  .archive-recrute-faq .container .wrapper .section-head {
    border-bottom: solid 1px #333333;
    max-width: 1920px;
    margin: 0 auto;
  }
  .archive-recrute-faq .container .wrapper .section-head .head-wrapper {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .archive-recrute-faq .container .wrapper .section-head .head-wrapper .title {
    font-size: 50px;
    font-weight: 700;
    margin-right: 30px;
  }
  .archive-recrute-faq .container .wrapper .section-head .head-wrapper .subtitle {
    color: #cf0f31;
    font-size: 16px;
    padding-top: 20px;
  }
  .archive-recrute-faq .container .wrapper .accordion {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 45px;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li {
    border-bottom: solid 1px #e9e9e9;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list .text-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 93%;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list .text-wrapper .list-icon {
    color: #cf0f31;
    font-size: 16px;
    width: 14%;
    padding-top: 3px;
    font-weight: bold;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list .text-wrapper .text {
    width: 86%;
    line-height: 1.2em;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list.question {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px;
    cursor: pointer;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list.question .text {
    color: #4e4e4e;
    font-weight: bold;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list.question .icon {
    position: relative;
    margin-right: 12px;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list.question .icon .border {
    background: #a1a0a0;
    width: 18px;
    height: 1px;
    position: absolute;
    left: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list.question .icon .border:nth-child(1) {
    top: 30%;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list.question .icon .border:nth-child(2) {
    top: 47.5%;
    left: 0.5px;
    width: 17px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list.question.active .border:nth-child(1) {
    top: 48%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list.question.active .border:nth-child(2) {
    top: 48%;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list.question:hover .text {
    opacity: 0.5;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list.question:hover i {
    opacity: 0.5;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list.answer {
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list.answer .text-wrapper {
    padding: 10px 0px 10px 50px;
    padding-top: 0;
  }
  .archive-recrute-faq .container .wrapper .accordion ul li .list.answer .text-wrapper .text {
    padding-left: 0;
  }
}
.single-recrute-detail .container .wrapper .recrute-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 85px;
}
.single-recrute-detail .container .wrapper .recrute-body {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 75px;
}
.single-recrute-detail .container .wrapper .recrute-body .recrute-items .recrute-item {
  padding: 20px 50px;
  border-bottom: solid 1px #333333;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-recrute-detail .container .wrapper .recrute-body .recrute-items .recrute-item .item-title {
  font-weight: 600;
  width: 25%;
}
.single-recrute-detail .container .wrapper .recrute-body .recrute-items .recrute-item .item-content {
  line-height: 1.5em;
  letter-spacing: 1px;
  width: 75%;
}

.single-recrute-entry .container .wrapper {
  background: #f8f8f8;
  padding: 90px 0;
  margin-top: 200px;
}
.single-recrute-entry .container .wrapper .section-head {
  border-bottom: solid 1px #333333;
  max-width: 1920px;
  margin: 0 auto;
}
.single-recrute-entry .container .wrapper .section-head .head-wrapper {
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.single-recrute-entry .container .wrapper .section-head .head-wrapper .title {
  font-size: 50px;
  font-weight: 700;
  margin-right: 30px;
}
.single-recrute-entry .container .wrapper .section-head .head-wrapper .subtitle {
  color: #cf0f31;
  font-size: 16px;
  padding-top: 20px;
}
.single-recrute-entry .container .wrapper .entry-intro {
  text-align: center;
  margin-top: 70px;
  line-height: 1.5em;
  letter-spacing: 2px;
}
.single-recrute-entry .container .wrapper form {
  width: 90%;
  max-width: 880px;
  margin: 0 auto;
  margin-top: 70px;
}
.single-recrute-entry .container .wrapper form ul li {
  margin-top: 10px;
}
.single-recrute-entry .container .wrapper form ul li p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-recrute-entry .container .wrapper form ul li p label {
  display: block;
  width: 20%;
  position: relative;
}
.single-recrute-entry .container .wrapper form ul li p label .required {
  color: #b12929;
  position: absolute;
  top: -2px;
  left: -10px;
}
.single-recrute-entry .container .wrapper form ul li p > span {
  display: block;
  width: 75%;
}
.single-recrute-entry .container .wrapper form ul li p > span input {
  width: 100%;
  padding: 1em;
}
.single-recrute-entry .container .wrapper form ul li p > span select {
  width: 100%;
  background: white;
  color: #333333;
}
.single-recrute-entry .container .wrapper form ul li p > span input:focus {
  outline: none;
}
.single-recrute-entry .container .wrapper form ul li p > span select:focus {
  outline: none;
}
.single-recrute-entry .container .wrapper form ul li p > span textarea {
  width: 100%;
  padding: 1em;
}
.single-recrute-entry .container .wrapper form ul li p > span textarea:focus {
  outline: none;
}
.single-recrute-entry .container .wrapper form ul li p > span .wpcf7-not-valid-tip {
  font-size: 0.8em;
  margin-top: 5px;
  color: #b12929;
}
.single-recrute-entry .container .wrapper form ul li.select-form p > span {
  padding: 1em;
  background: white;
  border: solid 1px rgba(51, 51, 51, 0.6);
  margin-top: 5px;
}
.single-recrute-entry .container .wrapper form ul li.select-form p > span select {
  border: none;
}
.single-recrute-entry .container .wrapper form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: none;
  border-color: #b12929;
  text-align: center;
  color: #b12929;
}
.single-recrute-entry .container .wrapper .privacy-policy {
  text-align: center;
  margin-top: 30px;
  font-size: 0.8em;
}
.single-recrute-entry .container .wrapper .checkbox {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8em;
}
.single-recrute-entry .container .wrapper .checkbox .required {
  color: #b12929;
}
.single-recrute-entry .container .wrapper .checkbox .wpcf7-not-valid-tip {
  font-size: 0.8em;
  margin-top: 5px;
  color: #b12929;
}
.single-recrute-entry .container .wrapper .contact-btn {
  text-align: center;
  margin-top: 40px;
}
.single-recrute-entry .container .wrapper .contact-btn button {
  display: inline-block;
  padding: 0.9em 6em;
  text-decoration: none;
  color: white;
  background: #333333;
  border: solid 1px #333333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.single-recrute-entry .container .wrapper .contact-btn button:hover {
  background: white;
  color: #333333;
}

.single-recrute-faq .container .wrapper {
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 130px;
  margin-bottom: 120px;
}
.single-recrute-faq .container .wrapper .section-head {
  border-bottom: solid 1px #333333;
  max-width: 1920px;
  margin: 0 auto;
}
.single-recrute-faq .container .wrapper .section-head .head-wrapper {
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.single-recrute-faq .container .wrapper .section-head .head-wrapper .title {
  font-size: 50px;
  font-weight: 700;
  margin-right: 30px;
}
.single-recrute-faq .container .wrapper .section-head .head-wrapper .subtitle {
  color: #cf0f31;
  font-size: 16px;
  padding-top: 20px;
}
.single-recrute-faq .container .wrapper .accordion {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 45px;
}
.single-recrute-faq .container .wrapper .accordion ul li {
  border-bottom: solid 1px #333333;
}
.single-recrute-faq .container .wrapper .accordion ul li .list .text-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
}
.single-recrute-faq .container .wrapper .accordion ul li .list .text-wrapper .list-icon {
  color: #4e4e4e;
  font-size: 16px;
  width: 8%;
  padding-top: 3px;
  font-weight: bold;
  color: #cf0f31;
}
.single-recrute-faq .container .wrapper .accordion ul li .list .text-wrapper .text {
  width: 90%;
  line-height: 2em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.single-recrute-faq .container .wrapper .accordion ul li .list.question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 40px;
  cursor: pointer;
}
.single-recrute-faq .container .wrapper .accordion ul li .list.question .text {
  color: #4e4e4e;
  font-weight: bold;
}
.single-recrute-faq .container .wrapper .accordion ul li .list.question .icon {
  position: relative;
}
.single-recrute-faq .container .wrapper .accordion ul li .list.question .icon .border {
  background: #a1a0a0;
  width: 18px;
  height: 1px;
  position: absolute;
  left: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.single-recrute-faq .container .wrapper .accordion ul li .list.question .icon .border:nth-child(1) {
  top: 30%;
}
.single-recrute-faq .container .wrapper .accordion ul li .list.question .icon .border:nth-child(2) {
  top: 47.5%;
  left: 0.5px;
  width: 17px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.single-recrute-faq .container .wrapper .accordion ul li .list.question.active .border:nth-child(1) {
  top: 48%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}
.single-recrute-faq .container .wrapper .accordion ul li .list.question.active .border:nth-child(2) {
  top: 48%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.single-recrute-faq .container .wrapper .accordion ul li .list.question:hover .text {
  opacity: 0.5;
}
.single-recrute-faq .container .wrapper .accordion ul li .list.question:hover i {
  opacity: 0.5;
}
.single-recrute-faq .container .wrapper .accordion ul li .list.answer {
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.single-recrute-faq .container .wrapper .accordion ul li .list.answer .text-wrapper {
  padding: 20px 40px;
  padding-top: 0;
}
.single-recrute-faq .container .wrapper .accordion ul li .list.answer .text-wrapper .text {
  padding-left: 8%;
}

@media screen and (max-width: 820px) {
  .single-recrute-detail .container .wrapper .recrute-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 50px;
  }
  .single-recrute-detail .container .wrapper .recrute-body {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 30px;
  }
  .single-recrute-detail .container .wrapper .recrute-body .recrute-items .recrute-item {
    padding: 20px 30px;
    border-bottom: solid 1px #333333;
    font-size: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single-recrute-detail .container .wrapper .recrute-body .recrute-items .recrute-item .item-title {
    font-weight: 600;
    width: 100%;
  }
  .single-recrute-detail .container .wrapper .recrute-body .recrute-items .recrute-item .item-content {
    line-height: 1.5em;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 15px;
  }
  .single-recrute-entry .container .wrapper {
    background: #f8f8f8;
    padding: 40px 0;
    margin-top: 70px;
  }
  .single-recrute-entry .container .wrapper .section-head {
    border-bottom: solid 1px #333333;
    max-width: 1920px;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  .single-recrute-entry .container .wrapper .section-head .head-wrapper {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single-recrute-entry .container .wrapper .section-head .head-wrapper .title {
    font-size: 40px;
    font-weight: 700;
    margin-right: 30px;
  }
  .single-recrute-entry .container .wrapper .section-head .head-wrapper .subtitle {
    color: #cf0f31;
    font-size: 16px;
    padding-top: 5px;
  }
  .single-recrute-entry .container .wrapper .entry-intro {
    width: 90%;
    margin: 0 auto;
    text-align: left;
    margin-top: 40px;
    line-height: 1.5em;
    letter-spacing: 2px;
  }
  .single-recrute-entry .container .wrapper form {
    margin: 0 auto;
    margin-top: 30px;
  }
  .single-recrute-entry .container .wrapper form ul li {
    margin-top: 15px;
  }
  .single-recrute-entry .container .wrapper form ul li p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: left;
    -webkit-align-items: left;
        -ms-flex-align: left;
            align-items: left;
  }
  .single-recrute-entry .container .wrapper form ul li p br {
    display: none;
  }
  .single-recrute-entry .container .wrapper form ul li p label {
    display: block;
    width: 100%;
    position: relative;
  }
  .single-recrute-entry .container .wrapper form ul li p label .required {
    color: #b12929;
    position: absolute;
    top: -2px;
    left: -10px;
  }
  .single-recrute-entry .container .wrapper form ul li p > span {
    display: block;
    width: 100%;
  }
  .single-recrute-entry .container .wrapper form ul li p > span input {
    width: 100%;
    margin-top: 5px;
    padding: 1em;
  }
  .single-recrute-entry .container .wrapper form ul li p > span input[type=date] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #333333;
    width: 50%;
    font: inherit;
    line-height: 1.4;
    padding: 0px;
    height: 50px;
    min-height: 44px;
    border: solid 1px rgba(51, 51, 51, 0.6);
    border-radius: 4px;
    background-color: white;
    background-clip: padding-box;
  }
  .single-recrute-entry .container .wrapper form ul li p > span input[type=date]::-webkit-calendar-picker-indicator {
    opacity: 0.7;
    margin-right: 0.5rem;
  }
  .single-recrute-entry .container .wrapper form ul li p > span input[type=date]::-webkit-date-and-time-value {
    text-align: left;
  }
  .single-recrute-entry .container .wrapper form ul li p > span input[type=date]::-webkit-datetime-edit {
    padding: 0;
  }
  .single-recrute-entry .container .wrapper form ul li p > span textarea {
    width: 100%;
    margin-top: 5px;
  }
  .single-recrute-entry .container .wrapper form ul li p > span .wpcf7-not-valid-tip {
    font-size: 0.8em;
    margin-top: 5px;
    color: #b12929;
  }
  .single-recrute-entry .container .wrapper form ul li p:nth-child(6) p > span {
    padding: 1em;
    background: white;
    border: solid 1px rgba(51, 51, 51, 0.6);
    margin-top: 5px;
  }
  .single-recrute-entry .container .wrapper form ul li p:nth-child(6) p > span select {
    border: none;
  }
  .single-recrute-entry .container .wrapper form ul li p:nth-child(7) p > span {
    padding: 1em;
    background: white;
    border: solid 1px rgba(51, 51, 51, 0.6);
    margin-top: 5px;
  }
  .single-recrute-entry .container .wrapper form ul li p:nth-child(7) p > span select {
    border: none;
  }
  .single-recrute-entry .container .wrapper form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: none;
    border-color: #b12929;
    text-align: center;
    color: #b12929;
  }
  .single-recrute-entry .container .wrapper .privacy-policy {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8em;
  }
  .single-recrute-entry .container .wrapper .checkbox {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
  }
  .single-recrute-entry .container .wrapper .checkbox .required {
    color: #b12929;
  }
  .single-recrute-entry .container .wrapper .checkbox .wpcf7-not-valid-tip {
    font-size: 0.8em;
    margin-top: 5px;
    color: #b12929;
  }
  .single-recrute-entry .container .wrapper .contact-btn {
    text-align: center;
    margin-top: 40px;
  }
  .single-recrute-entry .container .wrapper .contact-btn button {
    display: inline-block;
    padding: 0.9em 6em;
    text-decoration: none;
    color: white;
    background: #333333;
    border: solid 1px #333333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
  }
  .single-recrute-entry .container .wrapper .contact-btn button:hover {
    background: white;
    color: #333333;
  }
  .single-recrute-faq .container .wrapper {
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 70px;
  }
  .single-recrute-faq .container .wrapper .section-head {
    border-bottom: solid 1px #333333;
    max-width: 1920px;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  .single-recrute-faq .container .wrapper .section-head .head-wrapper {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single-recrute-faq .container .wrapper .section-head .head-wrapper .title {
    font-size: 40px;
    font-weight: 700;
    margin-right: 0;
  }
  .single-recrute-faq .container .wrapper .section-head .head-wrapper .subtitle {
    color: #cf0f31;
    font-size: 16px;
    padding-top: 5px;
  }
  .single-recrute-faq .container .wrapper .accordion {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 45px;
  }
  .single-recrute-faq .container .wrapper .accordion ul li {
    border-bottom: solid 1px #e9e9e9;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list .text-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 93%;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list .text-wrapper .list-icon {
    color: #cf0f31;
    font-size: 16px;
    width: 14%;
    padding-top: 3px;
    font-weight: bold;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list .text-wrapper .text {
    width: 86%;
    line-height: 1.2em;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list.question {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px;
    cursor: pointer;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list.question .text {
    color: #4e4e4e;
    font-weight: bold;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list.question .icon {
    position: relative;
    margin-right: 12px;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list.question .icon .border {
    background: #a1a0a0;
    width: 18px;
    height: 1px;
    position: absolute;
    left: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list.question .icon .border:nth-child(1) {
    top: 30%;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list.question .icon .border:nth-child(2) {
    top: 47.5%;
    left: 0.5px;
    width: 17px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list.question.active .border:nth-child(1) {
    top: 48%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list.question.active .border:nth-child(2) {
    top: 48%;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list.question:hover .text {
    opacity: 0.5;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list.question:hover i {
    opacity: 0.5;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list.answer {
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list.answer .text-wrapper {
    padding: 10px 0px 10px 50px;
    padding-top: 0;
  }
  .single-recrute-faq .container .wrapper .accordion ul li .list.answer .text-wrapper .text {
    padding-left: 0;
  }
}
.page-contact.contact .container .wrapper {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 90px;
}
.page-contact.contact .container .wrapper form {
  margin: 0 auto;
  margin-top: 30px;
}
.page-contact.contact .container .wrapper form ul li {
  margin-top: 10px;
}
.page-contact.contact .container .wrapper form ul li p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-contact.contact .container .wrapper form ul li p label {
  display: block;
  width: 20%;
  position: relative;
}
.page-contact.contact .container .wrapper form ul li p label .required {
  color: #FF5042;
  position: absolute;
  top: 0;
  left: 50px;
}
.page-contact.contact .container .wrapper form ul li p > span {
  display: block;
  width: 75%;
}
.page-contact.contact .container .wrapper form ul li p > span input {
  width: 100%;
  padding: 1em;
  background: #eaeaea;
  border: solid 1px transparent;
}
.page-contact.contact .container .wrapper form ul li p > span input:focus {
  outline: none;
}
.page-contact.contact .container .wrapper form ul li p > span textarea {
  width: 100%;
  padding: 1em;
  background: #eaeaea;
  border: solid 1px transparent;
}
.page-contact.contact .container .wrapper form ul li p > span .wpcf7-not-valid-tip {
  font-size: 0.8em;
  margin-top: 5px;
  color: #333333;
}
.page-contact.contact .container .wrapper form ul li:nth-child(2) label {
  display: block;
  width: 25%;
  position: relative;
}
.page-contact.contact .container .wrapper form ul li:nth-child(2) label .required {
  color: #FF5042;
  position: absolute;
  top: 0;
  left: 65px;
}
.page-contact.contact .container .wrapper form ul li:nth-child(3) label {
  display: block;
  width: 25%;
  position: relative;
}
.page-contact.contact .container .wrapper form ul li:nth-child(3) label .required {
  color: #FF5042;
  position: absolute;
  top: 0;
  left: 65px;
}
.page-contact.contact .container .wrapper form ul li:nth-child(4) label {
  display: block;
  width: 25%;
  position: relative;
}
.page-contact.contact .container .wrapper form ul li:nth-child(4) label .required {
  color: #FF5042;
  position: absolute;
  top: 0;
  left: 115px;
}
.page-contact.contact .container .wrapper form ul li:nth-child(5) label {
  display: block;
  width: 25%;
  position: relative;
}
.page-contact.contact .container .wrapper form ul li:nth-child(5) label .required {
  color: #FF5042;
  position: absolute;
  top: 0;
  left: 130px;
}
.page-contact.contact .container .wrapper form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: none;
  border-color: #333333;
  text-align: center;
  color: #333333;
}
.page-contact.contact .container .wrapper .privacy-policy {
  text-align: center;
  margin-top: 30px;
  font-size: 0.8em;
}
.page-contact.contact .container .wrapper .privacy-policy a {
  color: #333333;
  border-bottom: solid 1px #333333;
}
.page-contact.contact .container .wrapper .checkbox {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8em;
}
.page-contact.contact .container .wrapper .checkbox .required {
  color: #FF5042;
}
.page-contact.contact .container .wrapper .checkbox .wpcf7-not-valid-tip {
  font-size: 0.8em;
  margin-top: 5px;
  color: #333333;
}
.page-contact.contact .container .wrapper .contact-btn {
  text-align: center;
  margin-top: 40px;
}
.page-contact.contact .container .wrapper .contact-btn button {
  display: inline-block;
  padding: 0.9em 6em;
  text-decoration: none;
  color: #333333;
  background: transparent;
  border: solid 1px #333333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.page-contact.contact .container .wrapper .contact-btn button:hover {
  background: #333333;
  color: white;
}

.page-contact-recruit .container .wrapper {
  width: 90%;
  max-width: 1100px;
  margin: 100px auto;
  background: #f0eded;
}
.page-contact-recruit .container .wrapper .recruit-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.page-contact-recruit .container .wrapper .recruit-contents .recruit-visual {
  width: 40%;
}
.page-contact-recruit .container .wrapper .recruit-contents .recruit-text {
  width: 60%;
  padding: 50px 100px;
  position: relative;
}
.page-contact-recruit .container .wrapper .recruit-contents .recruit-text h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3px;
}
.page-contact-recruit .container .wrapper .recruit-contents .recruit-text .text-wrapper {
  margin-top: 40px;
  line-height: 1.8em;
}
.page-contact-recruit .container .wrapper .recruit-contents .recruit-text .btn {
  text-align: right;
  margin-top: 60px;
}
.page-contact-recruit .container .wrapper .recruit-contents .recruit-text .btn a {
  background: white;
}
.page-contact-recruit .container .wrapper .recruit-contents .recruit-text .btn a:hover {
  background: #333333;
}
.page-contact-recruit .container .wrapper .recruit-contents .recruit-text img {
  width: 48%;
  position: absolute;
  bottom: 20px;
  left: 0;
}

@media screen and (max-width: 820px) {
  .page-contact.contact .container .wrapper {
    width: 80%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .page-contact.contact .container .wrapper form {
    margin: 0 auto;
    margin-top: 30px;
  }
  .page-contact.contact .container .wrapper form ul li {
    margin-top: 10px;
  }
  .page-contact.contact .container .wrapper form ul li p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: left;
    -webkit-align-items: left;
        -ms-flex-align: left;
            align-items: left;
  }
  .page-contact.contact .container .wrapper form ul li p br {
    display: none;
  }
  .page-contact.contact .container .wrapper form ul li p label {
    display: block;
    width: 100%;
    position: relative;
  }
  .page-contact.contact .container .wrapper form ul li p label .required {
    color: #FF5042;
    position: absolute;
    top: 0;
    left: 50px;
  }
  .page-contact.contact .container .wrapper form ul li p > span {
    display: block;
    width: 100%;
  }
  .page-contact.contact .container .wrapper form ul li p > span input {
    width: 100%;
    padding: 1em;
    margin-top: 5px;
  }
  .page-contact.contact .container .wrapper form ul li p > span textarea {
    width: 100%;
    padding: 1em;
    margin-top: 5px;
  }
  .page-contact.contact .container .wrapper form ul li p > span .wpcf7-not-valid-tip {
    font-size: 0.8em;
    margin-top: 5px;
    color: #333333;
  }
  .page-contact.contact .container .wrapper form ul li:nth-child(2) label {
    display: block;
    width: 100%;
    position: relative;
  }
  .page-contact.contact .container .wrapper form ul li:nth-child(2) label .required {
    color: #FF5042;
    position: absolute;
    top: 0;
    left: 65px;
  }
  .page-contact.contact .container .wrapper form ul li:nth-child(3) label {
    display: block;
    width: 100%;
    position: relative;
  }
  .page-contact.contact .container .wrapper form ul li:nth-child(3) label .required {
    color: #FF5042;
    position: absolute;
    top: 0;
    left: 65px;
  }
  .page-contact.contact .container .wrapper form ul li:nth-child(4) label {
    display: block;
    width: 100%;
    position: relative;
  }
  .page-contact.contact .container .wrapper form ul li:nth-child(4) label .required {
    color: #FF5042;
    position: absolute;
    top: 0;
    left: 115px;
  }
  .page-contact.contact .container .wrapper form ul li:nth-child(5) label {
    display: block;
    width: 100%;
    position: relative;
  }
  .page-contact.contact .container .wrapper form ul li:nth-child(5) label .required {
    color: #FF5042;
    position: absolute;
    top: 0;
    left: 130px;
  }
  .page-contact.contact .container .wrapper form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: none;
    border-color: #FF5042;
    text-align: center;
    color: #333333;
  }
  .page-contact.contact .container .wrapper .privacy-policy {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8em;
  }
  .page-contact.contact .container .wrapper .checkbox {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
  }
  .page-contact.contact .container .wrapper .checkbox .required {
    color: #FF5042;
  }
  .page-contact.contact .container .wrapper .checkbox .wpcf7-not-valid-tip {
    font-size: 0.8em;
    margin-top: 5px;
    color: #333333;
  }
  .page-contact.contact .container .wrapper .contact-btn {
    text-align: center;
    margin-top: 40px;
  }
  .page-contact.contact .container .wrapper .contact-btn button {
    display: inline-block;
    width: 90%;
    max-width: 280px;
    padding: 0.9em;
    text-decoration: none;
    color: #333333;
    border: solid 1px #333333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
  }
  .page-contact.contact .container .wrapper .contact-btn button:hover {
    background: #333333;
    color: white;
  }
  .page-contact-recruit .container .wrapper {
    width: 90%;
    max-width: 1100px;
    margin: 100px auto;
    background: #f0eded;
    padding: 30px 10px;
  }
  .page-contact-recruit .container .wrapper .recruit-contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-contact-recruit .container .wrapper .recruit-contents .recruit-visual {
    width: 100%;
    margin: 0 auto;
  }
  .page-contact-recruit .container .wrapper .recruit-contents .recruit-text {
    width: 100%;
    padding: 10px;
    position: relative;
  }
  .page-contact-recruit .container .wrapper .recruit-contents .recruit-text h2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 40px;
  }
  .page-contact-recruit .container .wrapper .recruit-contents .recruit-text .text-wrapper {
    margin-top: 20px;
    line-height: 1.8em;
  }
  .page-contact-recruit .container .wrapper .recruit-contents .recruit-text .btn {
    text-align: center;
    margin-top: 60px;
  }
  .page-contact-recruit .container .wrapper .recruit-contents .recruit-text .btn a {
    background: white;
    white-space: nowrap;
  }
  .page-contact-recruit .container .wrapper .recruit-contents .recruit-text .btn a:hover {
    background: #333333;
  }
  .page-contact-recruit .container .wrapper .recruit-contents .recruit-text img {
    width: 48%;
    position: absolute;
    bottom: 20px;
    left: 0;
  }
}
.archive-info-list .container .wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 130px;
}
.archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item {
  padding: 30px 50px;
  border-bottom: solid 1px #333333;
}
.archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a .info-meta {
  width: 35%;
}
.archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a .info-meta .info-date {
  margin-right: 30px;
}
.archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a .info-meta .info-label {
  padding: 5px 30px;
  background: #333333;
  color: white;
  border: solid 1px #333333;
  font-size: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a .info-title {
  width: 65%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a:hover .info-label {
  background: white;
  color: #333333;
}
.archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a:hover .info-title {
  opacity: 0.6;
}
.archive-info-list .container .wrapper .pagination-wrapper .pagination {
  margin-top: 50px;
}
.archive-info-list .container .wrapper .pagination-wrapper .pagination .nav-links {
  text-align: center;
}
.archive-info-list .container .wrapper .pagination-wrapper .pagination .nav-links a {
  border: solid 1px #333333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.archive-info-list .container .wrapper .pagination-wrapper .pagination .nav-links a:hover {
  color: white;
  background: #333333;
}
.archive-info-list .container .wrapper .pagination-wrapper .pagination .nav-links .page-numbers {
  display: inline-block;
  margin: 7px;
  width: 40px;
  height: 40px;
  line-height: 40px;
}

@media screen and (max-width: 820px) {
  .archive-info-list .container .wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 130px;
  }
  .archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item {
    padding: 30px 50px;
    border-bottom: solid 1px #333333;
  }
  .archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a .info-meta {
    width: 100%;
  }
  .archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a .info-meta .info-date {
    margin-right: 20px;
  }
  .archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a .info-meta .info-label {
    padding: 5px 30px;
    background: #333333;
    color: white;
    border: solid 1px #333333;
    font-size: 12px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a .info-title {
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-top: 30px;
  }
  .archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a:hover .info-label {
    background: white;
    color: #333333;
  }
  .archive-info-list .container .wrapper .info-list-wrapper .info-list .info-item a:hover .info-title {
    opacity: 0.6;
  }
}
.single-info-contents .container .wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
}
.single-info-contents .container .wrapper .section-head .tag-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-info-contents .container .wrapper .section-head .tag-wrapper .date {
  margin-right: 70px;
  letter-spacing: 2px;
  font-weight: 600;
  padding-top: 10px;
}
.single-info-contents .container .wrapper .section-head .tag-wrapper .label {
  background: #333333;
  color: white;
  padding: 7px 40px;
  letter-spacing: 1px;
  font-size: 14px;
}
.single-info-contents .container .wrapper .section-head .title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-top: 30px;
}
.single-info-contents .container .wrapper .key-visual {
  width: 70%;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 40px;
}
.single-info-contents .container .wrapper .contents-wrapper {
  position: relative;
  z-index: 2;
}
.single-info-contents .container .wrapper .contents-wrapper p {
  line-height: 1.5em;
  letter-spacing: 1px;
  margin: 15px 0;
}
.single-info-contents .container .wrapper .contents-wrapper h2 {
  margin: 40px 0 20px 0;
  font-size: 22px;
  font-weight: 700;
  padding: 15px 30px;
  background: #edecec;
  position: relative;
}
.single-info-contents .container .wrapper .contents-wrapper h2::before {
  content: "";
  width: 5px;
  height: 100%;
  background: #333333;
  position: absolute;
  top: 0;
  left: 0;
}
.single-info-contents .container .wrapper .contents-wrapper h3 {
  margin: 40px 0 20px 0;
  font-size: 22px;
  font-weight: 700;
  padding: 10px 20px;
  position: relative;
}
.single-info-contents .container .wrapper .contents-wrapper h3::before {
  content: "";
  width: 100%;
  height: 40%;
  background: #edecec;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.single-info-contents .container .wrapper .contents-wrapper img {
  width: 70%;
  display: block;
  margin: 40px auto;
}
.single-info-contents .container .wrapper .contents-wrapper ul {
  margin-top: 30px;
  margin-left: 50px;
}
.single-info-contents .container .wrapper .contents-wrapper ul li {
  margin: 10px 0;
  letter-spacing: 1px;
  line-height: 1.5em;
  position: relative;
}
.single-info-contents .container .wrapper .contents-wrapper ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #333333;
  position: absolute;
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.single-info-contents .container .wrapper .contents-wrapper a {
  line-height: 1.5em;
  letter-spacing: 1px;
  margin: 15px 0;
  color: #1a0dab;
  border-bottom: solid 1px #1a0dab;
  padding-bottom: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-info-contents .container .wrapper .contents-wrapper a:hover {
  opacity: 0.6;
}
.single-info-contents .container .wrapper .btn {
  text-align: center;
  margin: 0 auto;
  margin-top: 100px;
}

@media screen and (max-width: 820px) {
  .single-info-contents .container .wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .single-info-contents .container .wrapper .section-head .tag-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .single-info-contents .container .wrapper .section-head .tag-wrapper .date {
    margin-right: 30px;
    letter-spacing: 2px;
    font-weight: 600;
    padding-top: 10px;
  }
  .single-info-contents .container .wrapper .section-head .tag-wrapper .label {
    background: #333333;
    color: white;
    padding: 7px 40px;
    letter-spacing: 1px;
    font-size: 14px;
  }
  .single-info-contents .container .wrapper .section-head .title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 30px;
  }
  .single-info-contents .container .wrapper .key-visual {
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .single-info-contents .container .wrapper .contents-wrapper {
    position: relative;
    z-index: 2;
  }
  .single-info-contents .container .wrapper .contents-wrapper p {
    line-height: 1.5em;
    letter-spacing: 1px;
    margin: 15px 0;
  }
  .single-info-contents .container .wrapper .contents-wrapper h2 {
    margin: 40px 0 20px 0;
    font-size: 22px;
    font-weight: 700;
    padding: 15px 30px;
    background: #edecec;
    position: relative;
  }
  .single-info-contents .container .wrapper .contents-wrapper h2::before {
    content: "";
    width: 5px;
    height: 100%;
    background: #333333;
    position: absolute;
    top: 0;
    left: 0;
  }
  .single-info-contents .container .wrapper .contents-wrapper h3 {
    margin: 40px 0 20px 0;
    font-size: 22px;
    font-weight: 700;
    padding: 10px 20px;
    position: relative;
  }
  .single-info-contents .container .wrapper .contents-wrapper h3::before {
    content: "";
    width: 100%;
    height: 40%;
    background: #edecec;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .single-info-contents .container .wrapper .contents-wrapper img {
    width: 70%;
    display: block;
    margin: 40px auto;
  }
  .single-info-contents .container .wrapper .contents-wrapper ul {
    margin-top: 30px;
    margin-left: 50px;
  }
  .single-info-contents .container .wrapper .contents-wrapper ul li {
    margin: 10px 0;
    letter-spacing: 1px;
    line-height: 1.5em;
    position: relative;
  }
  .single-info-contents .container .wrapper .contents-wrapper ul li::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #333333;
    position: absolute;
    top: 50%;
    left: -25px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .single-info-contents .container .wrapper .contents-wrapper a {
    line-height: 1.5em;
    letter-spacing: 1px;
    margin: 15px 0;
    color: #1a0dab;
    border-bottom: solid 1px #1a0dab;
    padding-bottom: 3px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .single-info-contents .container .wrapper .contents-wrapper a:hover {
    opacity: 0.6;
  }
  .single-info-contents .container .wrapper .btn {
    text-align: center;
    margin: 0 auto;
    margin-top: 100px;
  }
}
.page-thanks-thanks .container .wrapper h2 {
  text-align: center;
  font-size: 24px;
  letter-spacing: 3px;
  margin: 80px 0 50px 0;
  line-height: 1.5em;
}
.page-thanks-thanks .container .wrapper p {
  width: 90%;
  max-width: 800px;
  margin: 30px auto;
  line-height: 2em;
}

.page-privacypolicy-policy .container {
  margin-bottom: 100px;
}
.page-privacypolicy-policy .container .wrapper {
  width: 90%;
  max-width: 850px;
  padding: 50px;
  margin: 100px auto 0 auto;
  border: solid 1px #818181;
  -webkit-box-shadow: 2px 2px 6px #cdcdcd;
          box-shadow: 2px 2px 6px #cdcdcd;
}
.page-privacypolicy-policy .container .wrapper .section-header {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 3px;
  position: relative;
}
.page-privacypolicy-policy .container .wrapper .text-wrapper {
  margin-top: 40px;
}
.page-privacypolicy-policy .container .wrapper .text-wrapper p {
  margin: 20px 0;
  line-height: 1.5em;
}
.page-privacypolicy-policy .container .wrapper .text-wrapper h2 {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
}
.page-privacypolicy-policy .container .wrapper .text-wrapper ul {
  list-style: inside;
}
.page-privacypolicy-policy .container .wrapper .text-wrapper ul li {
  line-height: 1.5em;
}
.page-privacypolicy-policy .container .btn {
  width: 90%;
  max-width: 300px;
  background: black;
  border: solid 1px black;
  border-radius: 40px;
  margin: 0 auto;
  margin-top: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-privacypolicy-policy .container .btn a {
  color: white;
  display: block;
  padding: 20px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-privacypolicy-policy .container .btn:hover {
  background: white;
}
.page-privacypolicy-policy .container .btn:hover a {
  color: black;
}

@media screen and (max-width: 880px) {
  .page-privacypolicy-policy .container .wrapper {
    width: 80%;
    max-width: 850px;
    padding: 30px 10px;
    margin: 50px auto;
    border: solid 1px #818181;
    -webkit-box-shadow: 2px 2px 6px #cdcdcd;
            box-shadow: 2px 2px 6px #cdcdcd;
  }
  .page-privacypolicy-policy .container .wrapper .section-header {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 3px;
    position: relative;
  }
  .page-privacypolicy-policy .container .wrapper .text-wrapper {
    margin-top: 20px;
  }
  .page-privacypolicy-policy .container .wrapper .text-wrapper p {
    margin: 20px 0;
    line-height: 1.5em;
    font-size: 0.9em;
  }
  .page-privacypolicy-policy .container .wrapper .text-wrapper h2 {
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
  }
  .page-privacypolicy-policy .container .wrapper .text-wrapper ul {
    list-style: inside;
  }
  .page-privacypolicy-policy .container .wrapper .text-wrapper ul li {
    line-height: 1.5em;
    font-size: 0.9em;
  }
  .page-privacypolicy-policy .container .wrapper .text-wrapper ul li + li {
    margin-top: 10px;
  }
  .page-privacypolicy-policy .container .btn {
    width: 90%;
    max-width: 300px;
    background: black;
    border: solid 1px black;
    border-radius: 40px;
    margin: 0 auto;
    margin-top: 50px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-privacypolicy-policy .container .btn a {
    color: white;
    display: block;
    padding: 20px;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page-privacypolicy-policy .container .btn:hover {
    background: white;
  }
  .page-privacypolicy-policy .container .btn:hover a {
    color: black;
  }
}/*# sourceMappingURL=style.css.map */