@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

input[type="submit"] {
  -webkit-appearance: none;
}

:root {
  --white: #ffffff;
  --gray-10: #eaeaea;
  --gray-50: #444444;
  --gray-100: #2b2b2b;
  --black: #000000;
  --red: #cc0000;
  --blue: #3388dd;
}

body > footer {
  position: sticky;
  top: 100vh;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 4rem;
}

span {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.05rem;
}

input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

.pc_br {
  display: none;
}

.spc_br {
  display: none;
}

.only_br {
  display: block;
}

.tab_br {
  display: none;
}

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

  .pc_br {
    display: none;
  }

  .only_br {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .tab_br {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc_br {
    display: block;
  }

  .sp_br {
    display: none;
  }
}
@keyframes fadein {
  100% {
    opacity: 0;
  }
}
.header {
  background-color: #444444;
  height: 70px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.header-inner {
  align-items: center;
  display: flex;
  height: 70px;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 25px 4px 14px;
  padding-top: 5px;
  width: 85%;
}
.header-logo {
  height: auto;
  width: 180px;
}
.header-box {
  z-index: 13;
}
@media screen and (max-width: 1024px) {
  .header-inner {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .header {
    width: 100vw;
  }
  .header-inner {
    width: 95vw;
  }
}

.gnav {
  height: 100%;
  margin-right: 15%;
}
.gnav-list {
  align-items: center;
  display: flex;
  font-family: "Futura";
  height: 100%;
}
.gnav-list_hover {
  background-color: #fff;
  color: #474b42;
  display: block;
  display: none;
  height: 30px;
  left: -3%;
  position: absolute;
  text-align: center;
  top: 20px;
  width: 70px;
}
.gnav-list li {
  margin-right: 45px;
  position: relative;
}
.gnav-list li:last-child {
  margin-right: 0;
}
.gnav-link {
  color: white;
  font-size: 1.25rem;
  letter-spacing: 1px;
  position: relative;
  text-decoration: none;
}
.gnav-link:hover {
  color: #c7c7c7;
  transition: 0.6s;
}
.gnav-link_gray {
  color: #757575;
  font-size: 1.25rem;
  text-decoration: none;
}
.gnav-link_gray:hover {
  color: #c7c7c7;
  transition: 0.6s;
}
.gnav-link_hover {
  color: #fff;
  display: block;
  padding: 6px 0;
  text-decoration: none;
  transition: 0.5s;
}
.gnav-link_hover:hover {
  color: #c7c7c7;
}
.gnav-img {
  height: 40px;
  margin-top: 10px;
  width: 40px;
}
@media screen and (max-width: 1440px) {
  .gnav {
    margin-right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .gnav {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .gnav {
    margin-right: 0;
  }
  .gnav-list li {
    display: none;
  }
  .gnav-img {
    height: 50px;
    margin-top: 0;
    width: 50px;
  }
}

.footer {
  background-color: var(--gray-10);
  height: 150px;
}
.footer-inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  width: 65%;
}
.footer-copyright {
  font-size: 0.75rem;
}
@media screen and (max-width: 599px) {
  .footer {
    height: 220px;
  }
  .footer-inner {
    align-items: initial;
    flex-direction: column-reverse;
    justify-content: space-evenly;
    width: 80%;
  }
  .footer-copyright {
    text-align: center;
  }
}

.fnav {
  margin-right: 50px;
}
.fnav-list {
  display: flex;
}
.fnav-item {
  font-size: 0.75rem;
  margin-right: 10px;
}
.fnav-item:last-child {
  margin-right: 0;
}
.fnav-link {
  color: var(--black);
  font-size: 0.75rem;
  text-decoration: none;
}
.fnav-link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 599px) {
  .fnav {
    margin-right: 0;
  }
  .fnav-list {
    display: block;
  }
  .fnav-item {
    margin-bottom: 20px;
    margin-right: 0px;
  }
}

.btn {
  background-color: var(--gray-50);
  color: var(--white);
  display: block;
  font-size: 20px;
  font-weight: bold;
  height: 64px;
  letter-spacing: 0.05rem;
  line-height: 60px;
  padding-right: 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 300px;
}
.btn::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 0.75em;
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.5s;
  width: 0.75em;
}
.btn:hover {
  background-color: var(--white);
  border: 1px solid var(--gray-50);
  color: var(--gray-50);
}
.btn:hover::after {
  color: var(--gray-50);
}
@media screen and (max-width: 599px) {
  .btn {
    font-size: 10px;
    height: 32px;
    line-height: 32px;
    padding-right: 10px;
    width: 152px;
  }
  .btn::after {
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    height: 0.5rem;
    width: 0.5rem;
  }
}

.burger {
  display: none;
}
.burger-nav {
  display: block;
  display: none;
  left: 50%;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
}
.burger-item {
  margin: 0;
  margin-top: 10px;
  padding: 1.25rem;
  position: relative;
}
.burger-item a {
  color: white;
  font-size: 18px;
  margin: 1.25em 0;
  text-decoration: none;
  transition-duration: 0.2s;
}
.burger-item a:hover {
  color: #c7c7c7;
}
.burger-item:first-child {
  margin-top: 0;
}
.burger-btn {
  background-color: var(--gray-50);
  border-radius: 5px;
  cursor: pointer;
  height: 50px;
  position: relative;
  width: 50px;
  z-index: 13;
}
.burger-bg {
  background-color: var(--gray-50);
  border-radius: 50%;
  height: 100px;
  position: fixed;
  right: 15px;
  top: -50px;
  transform: scale(0);
  transition: all 1s;
  width: 100px;
}
.burger-bg.circle-active {
  transform: scale(20);
}
.burger-img {
  height: 40px;
  width: 40px;
}
@media screen and (max-width: 599px) {
  .burger {
    display: block;
  }
}

.bar {
  background-color: var(--white);
  display: inline-block;
  height: 3px;
  left: 14px;
  position: absolute;
  transition: all 0.4s;
}
.bar_top {
  top: 15px;
  width: 45%;
}
.bar_mid {
  top: 23px;
  width: 35%;
}
.bar_bottom {
  top: 31px;
  width: 20%;
}

.active-nav {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInAnime;
  display: block;
  opacity: 0;
  z-index: 1;
}
.active .bar_top {
  left: 18px;
  top: 17px;
  transform: translateY(6px) rotate(-135deg);
  width: 40%;
}
.active .bar_mid {
  opacity: 0;
}
.active .bar_bottom {
  left: 24px;
  top: 23px;
  transform: translate(-6px) rotate(135deg);
  width: 40%;
}
.active-body {
  height: 100%;
  position: fixed;
  width: 100%;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slide-in {
  display: inline-block;
  overflow: hidden;
}
.slide-in_inner {
  display: inline-block;
}

.downAnime {
  opacity: 0;
}

.slideAnimeDownUp {
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  animation-name: slideTextY100;
  opacity: 0;
}

@keyframes slideTextY100 {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slideAnimeUpDown {
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  animation-name: slideTextY-100;
  opacity: 0;
}

@keyframes slideTextY-100 {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.flipbook-viewport {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.flipbook-viewport .container {
  left: 50%;
  margin: auto;
  top: 50%;
}

.flipbook-viewport .flipbook {
  height: 600px;
  width: 922px;
}

.flipbook-viewport .page {
  background-color: white;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
}

.flipbook .page {
  -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.flipbook-viewport .page img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  margin: 0;
  user-select: none;
}

.flipbook-viewport .shadow {
  -webkit-transition: -webkit-box-shadow 0.5s;
  -moz-transition: -moz-box-shadow 0.5s;
  -o-transition: -webkit-box-shadow 0.5s;
  -ms-transition: -ms-box-shadow 0.5s;
  -o-box-shadow: 0 0 20px #ccc;
  -ms-box-shadow: 0 0 20px #ccc;
  box-shadow: 0 0 20px #ccc;
}

@media (max-width: 480px) {
  .flipbook-viewport .flipbook {
    left: 50%;
    top: 0%;
    transform: translate(-50%, 0%);
  }
}
.about-page {
  -o-object-position: 50% 50%;
  display: flex;
  justify-content: space-between;
  object-position: 50% 50%;
  position: relative;
}
.about-page-inner {
  max-width: 1100px;
  padding-bottom: 150px;
  padding-left: 15%;
  top: 0;
  width: 60%;
}
.about-page-bgImg {
  height: 3100px;
  width: 100%;
}
.about-page-title {
  color: var(--gray-50);
  font-size: 2rem;
  line-height: 250px;
  margin-top: 50px;
}
.about-page-title-box {
  height: 240px;
  margin: 0 auto;
  max-width: 60vw;
}
.about-page-title span {
  font-size: 1rem;
  margin-left: 10px;
}
.about-page-group {
  font-size: 20px;
}
.about-page-group span {
  font-weight: bold;
  font-size: 20px;
}
.about-page-logo {
  width: 10%;
}
.about-page-logo img {
  height: auto;
  width: 100%;
}
.about-page-img-wrapper {
  width: 42%;
}
.about-page-img-wrapper img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.about-page-table {
  border-collapse: separate;
  border-spacing: 0 70px;
  color: var(--gray-50);
  font-size: clamp(0.625rem, 0.572rem + 0.27vw, 0.938rem);
  line-height: 21px;
  margin-bottom: 100px;
}
.about-page-table-header {
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  width: 26%;
}
.about-page-table-header-card {
  vertical-align: top;
}
.about-page-table-title {
  border-bottom: 2px solid var(--gray-50);
  color: var(--gray-50);
  display: inline-block;
  font-size: 1.75rem;
  margin-bottom: 60px;
  margin-top: 50px;
  padding-bottom: 10px;
}
.about-page-table-row {
  margin-bottom: 80px;
}
.about-page-table-flex {
  display: inline-flex;
  flex-direction: column;
}
.about-page-table-text {
  line-height: 1.75;
  padding-left: 40px;
}
.about-page-table-link {
  border-bottom: 1px solid #444444;
  color: var(--gray-50);
  cursor: pointer;
  display: inline-block;
  padding-bottom: 5px;
  text-decoration: none;
  transform: scale(1);
  transition: 0.3s;
}
.about-page-table-link:hover {
  transform: scale(1.05);
}
.about-page-table-link-text {
  pointer-events: none;
}
.about-page-table-position {
  font-size: 100%;
  letter-spacing: normal;
  margin-left: 30px;
}
.about-page-table-img {
  padding-left: 40px;
}
.about-page-table-img-wrapper img {
  width: 70%;
}
@media screen and (max-width: 1440px) {
  .about-page-img-wrapper {
    width: 27%;
  }
  .about-page-img-wrapper img {
    -o-object-fit: cover;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 1024px) {
  .about-page-img-wrapper {
    width: 35%;
  }
  .about-page-title-box {
    height: 150px;
  }
  .about-page-title {
    font-size: 25px;
    line-height: 160px;
  }
  .about-page-title span {
    font-size: 14px;
  }
  .about-page-title-box {
    max-width: 70vw;
  }
  .about-page-inner {
    padding-left: 8%;
  }
  .about-page-table-title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .about-page-inner {
    padding-left: 5%;
    width: 88%;
  }
  .about-page-title {
    font-size: 19px;
    line-height: 170px;
  }
  .about-page-title span {
    font-size: 10px;
  }
  .about-page-title-box {
    height: 170px;
    max-width: 100%;
  }
  .about-page-group {
    font-size: 16px;
  }
  .about-page-group span {
    font-weight: bold;
    font-size: 14px;
  }
  .about-page-img-wrapper {
    width: 12%;
  }
  .about-page-img-wrapper img {
    -o-object-fit: cover;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .about-page-logo {
    margin-bottom: -40px;
    width: 12%;
  }
  .about-page-table {
    font-size: 10px;
    margin-bottom: 0;
    width: 100%;
    border-spacing: 0 50px;
  }
  .about-page-table-title {
    font-size: 13px;
    margin-bottom: 50px;
  }
  .about-page-table-text {
    margin-left: 0;
    padding-left: 10px;
  }
  .about-page-table-position {
    margin-left: 20px;
  }
  .about-page-table-about {
    vertical-align: baseline;
  }
  .about-page-table-img {
    padding-left: 10px;
  }
}

.access-title {
  border-bottom: 2px solid var(--gray-50);
  color: var(--gray-50);
  display: inline-block;
  font-size: 1.75rem;
  margin-bottom: 60px;
  padding-bottom: 10px;
}
.access-map {
  margin-bottom: 40px;
  padding-top: 56.25%;
  position: relative;
}
.access-map .map {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.access-textBox {
  margin-bottom: 100px;
}
.access-textBox:last-child {
  margin-bottom: 0;
}
.access-description {
  font-size: 18px;
  margin-bottom: 20px;
}
.access-text {
  font-size: clamp(0.625rem, 0.561rem + 0.32vw, 1rem);
  line-height: 1.75;
}
.access-info {
  height: 40px;
  width: 200px;
}
.access-info-item {
  font-size: 16px;
  font-weight: bold;
}
.access-info-link a {
  align-items: center;
  display: flex;
  font-size: 14px;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .access-title {
    font-size: 1.25rem;
  }
  .access-map iframe {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .access-title {
    font-size: 13px;
    margin-bottom: 35px;
  }
  .access-map {
    margin-bottom: 30px;
  }
  .access-map .map {
    width: 90%;
  }
  .access-map iframe {
    width: 100%;
  }
  .access-description {
    font-size: 12px;
  }
  .access-info {
    display: none;
  }
}

.fv {
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url("/img/home/fv-bg.webp");
  background-repeat: repeat;
  height: 100vh;
  margin-bottom: 75px;
  position: relative;
  text-align: center;
  width: 100%;
}
.fv-bg {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.fv-bg_area {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100vw;
}
.fv-box {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}
.fv-box-logo {
  height: auto;
  width: 80%;
}
@media screen and (max-width: 599px) {
  .fv {
    height: 90vh;
    margin-bottom: 50px;
  }
  .fv-box {
    width: 80%;
  }
  .fv-box-logo {
    height: auto;
    width: 100%;
  }
  .fv-bg_area {
    height: 90vh;
  }
}

.message {
  margin-bottom: 200px;
  margin-top: 100px;
}
.message-img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.message-img-wrapper {
  height: auto;
  width: 30%;
}
.message-text-title {
  color: var(--gray-50);
  font-size: 3rem;
  line-height: 1.8;
}
.message-text-title span {
  color: var(--black);
  display: block;
  font-size: clamp(0.75rem, 0.707rem + 0.3vw, 1.25rem);
}
.message-text-title-second {
  font-size: 3rem;
  font-weight: 600;
}
.message-description {
  color: var(--gray-50);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 5px;
  line-height: 1.8;
  margin-bottom: 200px;
}
.message-word-box {
  display: inline-block;
  margin-top: 20px;
}
.message-box {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  z-index: 2;
}
.message-sign-box {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  font-size: clamp(0.75rem, 0.707rem + 0.3vw, 1.25rem);
  gap: 20px;
  margin-top: 10%;
}
.message-sign-box img {
  width: 15%;
}
.message-sign-text {
  display: flex;
  gap: 20px;
}
.message-text-box {
  margin: 50px;
}
.message-text-title {
  margin-bottom: 60px;
}
.message-text {
  font-size: clamp(0.75rem, 0.707rem + 0.3vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 30px;
}
.message-text-lead {
  font-size: clamp(0.75rem, 0.707rem + 0.3vw, 1.25rem);
}
@media screen and (max-width: 1440px) {
  .message-text-title {
    font-size: 3rem;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .message-box {
    flex-direction: clumn;
  }
  .message-text-title {
    font-size: 2rem;
    margin-bottom: 70px;
    margin-top: 80px;
  }
  .message-text-box-pc {
    padding-left: 0;
  }
  .message-sign-box img {
    width: 15%;
  }
}
@media screen and (max-width: 599px) {
  .message {
    margin-bottom: 100px;
    margin-top: 50px;
  }
  .message img {
    height: 350px;
  }
  .message-text-title {
    font-size: 24px;
    margin-bottom: 50px;
    margin-top: 50px;
  }
  .message-text {
    margin-bottom: 20px;
  }
  .message-text-box {
    margin: 25px;
  }
  .message-description {
    font-size: 18px;
    margin-bottom: 100px;
  }
  .message-sign-box {
    align-items: flex-start;
    gap: 10px;
    justify-content: center;
    margin-right: 0;
    margin-top: 40px;
  }
  .message-sign-box img {
    width: 20%;
  }
  .message-box {
    flex-direction: column;
    gap: 0;
    justify-content: initial;
    margin-left: 0;
    width: 100%;
  }
  .message-img-wrapper {
    margin-top: 15%;
    width: 100%;
  }
  .message-sign-text {
    justify-content: center;
  }
}

.recruit {
  background-color: var(--gray-100);
  color: var(--white);
  display: flex;
  height: 840px;
  justify-content: space-between;
  margin-bottom: 200px;
}
.recruit-img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.recruit-img-wrapper {
  margin-right: 0;
  overflow: hidden;
  width: 50%;
}
.recruit-body {
  display: flex;
  flex-direction: column;
  gap: 100px;
  justify-content: center;
  margin-left: 7vw;
}
.recruit-title {
  font-size: 3.5rem;
}
.recruit-title span {
  display: block;
  margin-top: 10px;
}
.recruit-text {
  font-size: clamp(1rem, 0.957rem + 0.21vw, 1.25rem);
  line-height: 1.75;
}
@media screen and (max-width: 1440px) {
  .recruit-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .recruit {
    flex-direction: column-reverse;
    margin-bottom: 50px;
  }
  .recruit-title {
    font-size: 2rem;
  }
  .recruit-text {
    font-size: 16px;
  }
  .recruit-body {
    margin: 0 auto;
    padding: 50px 0;
    width: 80%;
  }
  .recruit-img-wrapper {
    width: auto;
  }
  .recruit-img {
    -o-object-fit: cover;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 599px) {
  .recruit {
    flex-direction: column-reverse;
    height: 700px;
    margin-bottom: 50px;
  }
  .recruit-title {
    font-size: 30px;
  }
  .recruit-title span {
    font-size: 10px;
  }
  .recruit-body {
    gap: 50px;
    margin: 0 auto;
    padding-bottom: 50px;
    width: 80%;
  }
  .recruit-img-wrapper {
    width: auto;
  }
  .recruit-img {
    -o-object-fit: cover;
    height: 350px;
    object-fit: cover;
  }
  .recruit-text {
    font-size: 11px;
  }
}

.contact {
  margin-bottom: 200px;
  text-align: center;
}
.contact-title {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 5px;
  margin-bottom: 10px;
}
.contact-title-box {
  align-items: center;
  background-color: var(--gray-50);
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 220px;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 50px;
  text-decoration: none;
  width: 600px;
}
.contact-title-box:hover {
  opacity: 0.8;
}
.contact-link {
  color: var(--gray-50);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.5s;
}
.contact-link:hover {
  color: var(--blue);
}
@media screen and (max-width: 1440px) {
  .contact-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .contact-title {
    font-size: 2rem;
  }
  .contact-title-box {
    height: 180px;
    width: 450px;
  }
  .contact-text {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 599px) {
  .contact {
    margin-bottom: 120px;
  }
  .contact-title {
    font-size: 30px;
    letter-spacing: 2px;
  }
  .contact-text {
    font-size: 10px;
  }
  .contact-link {
    font-size: 10px;
  }
  .contact-title-box {
    height: 110px;
    margin-bottom: 25px;
    width: 300px;
  }
}

.about {
  display: flex;
  height: 1000px;
  justify-content: center;
  margin-bottom: 200px;
}
.about-img {
  display: none;
  height: auto;
  width: 100%;
}
.about-img-wrapper {
  background-image: url("/img/home/top-about.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 0;
  margin-left: 7.777%;
  margin-right: 4%;
  width: 35%;
}
.about-body {
  display: flex;
  flex-direction: column;
  gap: 100px;
  justify-content: center;
  margin-right: 7vw;
}
.about-title {
  color: var(--gray-50);
  font-size: 3.5rem;
}
.about-title span {
  color: var(--black);
  display: block;
  letter-spacing: 0.05rem;
  margin-top: 10px;
}
.about-text {
  font-size: clamp(1rem, 0.957rem + 0.21vw, 1.25rem);
  line-height: 1.75;
}
@media screen and (max-width: 1440px) {
  .about-title {
    font-size: 3rem;
  }
  .about-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .about {
    display: block;
    height: auto;
    margin-bottom: 100px;
  }
  .about-body {
    gap: 50px;
    margin: 0 auto;
    width: 80%;
  }
  .about-title {
    font-size: 2rem;
  }
  .about-img-wrapper {
    margin: 0 auto;
    margin-bottom: 50px;
    width: 60%;
  }
  .about-img {
    -o-object-fit: cover;
    display: block;
    height: 600px;
    object-fit: cover;
  }
}
@media screen and (max-width: 599px) {
  .about {
    display: block;
    height: auto;
    margin-bottom: 100px;
  }
  .about-title {
    font-size: 30px;
  }
  .about-title span {
    font-size: 10px;
  }
  .about-body {
    gap: 50px;
    margin: 0 auto;
    width: 80%;
  }
  .about-text {
    font-size: 11px;
  }
  .about-img-wrapper {
    background-image: none;
    margin: 0 auto;
    margin-bottom: 50px;
    width: 80%;
  }
  .about-img {
    -o-object-fit: cover;
    display: block;
    height: 450px;
    object-fit: cover;
  }
}

.service {
  color: var(--white);
  margin-bottom: 230px;
  text-align: center;
}
.service-container {
  background: var(--gray-50);
  margin-bottom: 100px;
  padding: 70px 10% 120px;
}
.service-title {
  font-size: 3.5rem;
  margin-bottom: 50px;
}
.service-title span {
  display: block;
  margin-top: 10px;
}
.service-en,
.service-ja {
  line-height: 2;
  opacity: 0.6;
}
.service-en {
  font-size: clamp(1rem, 0.915rem + 0.43vw, 1.5rem);
  margin-bottom: 50px;
}
.service-ja {
  font-size: clamp(0.75rem, 0.707rem + 0.21vw, 1rem);
}
.service-btn {
  background-color: var(--gray-100);
  margin: 70px auto 0;
}
@media screen and (max-width: 1440px) {
  .service-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .service {
    margin-bottom: 100px;
  }
  .service-container {
    margin-bottom: 50px;
  }
  .service-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .service-title span {
    font-size: 10px;
  }
}

.service-page_title {
  color: var(--gray-50);
  font-size: 2rem;
  line-height: 250px;
}
.service-page_title-box {
  height: 240px;
  margin: 0 auto;
  margin-top: 50px;
  max-width: 60vw;
}
.service-page_title span {
  font-size: 1rem;
  margin-left: 10px;
}
@media screen and (max-width: 1440px) {
  .service-page_title-box {
    max-width: 60vw;
  }
}
@media screen and (max-width: 1024px) {
  .service-page_title {
    font-size: 1.5rem;
    line-height: 160px;
  }
  .service-page_title-box {
    height: 150px;
    min-width: 80vw;
  }
  .service-page_title span {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 599px) {
  .service-page_title {
    font-size: 19px;
    line-height: 140px;
  }
  .service-page_title-box {
    height: 120px;
    max-width: 80vw;
  }
  .service-page_title span {
    font-size: 10px;
  }
}

.service-top {
  background-color: var(--gray-10);
  color: var(--gray-50);
  margin-bottom: 100px;
  padding: 70px 0;
  padding-left: 20%;
}
.service-top-subtitle {
  font-size: clamp(1.375rem, 1.098rem + 1.38vw, 3rem);
  font-weight: bold;
  line-height: 2;
  margin-bottom: 50px;
}
.service-top-lead {
  font-size: clamp(1rem, 0.936rem + 0.32vw, 1.375rem);
  font-weight: bold;
  padding-left: 3px;
}
@media screen and (max-width: 1024px) {
  .service-top {
    padding-left: 10%;
    padding-right: 5%;
  }
  .service-top-lead {
    line-height: 2;
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .service-top {
    padding: 50px 0;
    padding-left: 10%;
    padding-right: 10%;
  }
}

.service-page_media {
  margin-bottom: 300px;
}
.service-page_media-title {
  font-size: 2rem;
  height: 120px;
}
.service-page_media-text {
  height: 150px;
  line-height: 1.5;
  margin-bottom: 100px;
}
.service-page_media-text-container {
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  width: 90%;
}
.service-page_media-text-box {
  color: var(--gray-50);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.service-page_media-img-wrapper {
  display: flex;
  filter: brightness(75%) blur(1px);
}
.service-page_media-img-wrapper img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .service-page_media {
    margin-bottom: 100px;
  }
  .service-page_media-title {
    font-size: 25px;
    height: 70px;
  }
  .service-page_media-text-container {
    flex-wrap: wrap;
  }
  .service-page_media-text-box {
    width: 48%;
  }
  .service-page_media-text {
    margin-bottom: 20px;
  }
  .service-page_media-img-wrapper {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 599px) {
  .service-page_media {
    margin-bottom: 50px;
  }
  .service-page_media-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .service-page_media-text {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .service-page_media-img-wrapper {
    margin: 0 auto;
    margin-bottom: 80px;
  }
}

.backbtn {
  border-bottom: 1px solid;
  border-top: 1px solid;
  color: var(--black);
  margin: 0 auto 100px;
  opacity: 0.55;
  padding: 100px 0;
  text-align: center;
  width: 70%;
}
.backbtn-link {
  color: var(--black);
  display: inline-block;
  font-weight: bold;
  opacity: 0.55;
  padding-right: 12px;
  position: relative;
  text-decoration: none;
}
.backbtn-link::after {
  border-color: transparent transparent transparent black;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  content: "";
  height: 0;
  margin-top: -6px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
}
.backbtn-link:hover::before {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}
.backbtn-link::before {
  background: black;
  bottom: -1px;
  content: "";
  height: 1px;
  position: absolute;
  right: 5%;
  top: 130%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
  width: 95%;
}
@media screen and (max-width: 1024px) {
  .backbtn {
    padding: 70px 0;
  }
}
@media screen and (max-width: 599px) {
  .backbtn {
    margin: 0 auto 100px;
    padding: 50px 0;
  }
  .backbtn-link {
    font-size: 12px;
  }
}

.content-top {
  margin-bottom: 200px;
  position: relative;
}
.content-top-img {
  -o-object-fit: cover;
  filter: brightness(75%) blur(1px);
  height: 100vh;
  object-fit: cover;
  width: 100%;
}
.content-top-container {
  color: var(--white);
  left: 47%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.content-top-title {
  align-items: flex-end;
  display: flex;
  font-size: 4rem;
  margin-bottom: 130px;
}
.content-top-title img {
  height: 150px;
}
.content-top-lead {
  display: block;
  opacity: 0.7;
  padding-bottom: 14px;
  padding-left: 40px;
}
.content-top-subTitle {
  font-size: clamp(1.125rem, 0.806rem + 1.6vw, 3rem);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 130px;
}
.content-top-text {
  font-size: clamp(0.625rem, 0.536rem + 0.45vw, 1.15rem);
  line-height: 2.5;
  margin-bottom: 60px;
}
.content-top-lead {
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 1440px) {
  .content-top {
    margin-bottom: 100px;
  }
  .content-top-subTitle {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .content-top-title {
    display: block;
    margin-bottom: 70px;
  }
  .content-top-title img {
    height: 100px;
  }
  .content-top-title-lead {
    padding-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .content-top {
    margin-bottom: 50px;
  }
  .content-top-img {
    height: 800px;
  }
  .content-top-title {
    display: block;
    margin-bottom: 50px;
  }
  .content-top-title img {
    height: 70px;
  }
  .content-top-title-lead {
    font-size: 10px;
    padding-left: 30px;
    padding-top: 10px;
  }
  .content-top-subTitle {
    line-height: 2;
    margin-bottom: 50px;
  }
  .content-top-text {
    margin-bottom: 30px;
  }
  .content-top-lead {
    font-size: 10px;
  }
  .content-top-container {
    left: 50%;
    width: 75%;
  }
}

.service-contents-wrapper {
  width: 100%;
}
.service-contents-title {
  height: 80px;
}
.service-contents-list {
  display: flex;
  flex-wrap: wrap;
}
.service-contents-item {
  position: relative;
  width: calc((100%) / 3);
}
.service-contents-border {
  border-top: 2px solid #ccc;
  margin: 150px auto;
  width: 70%;
}
.service-contents-box {
  display: flex;
  flex-direction: column;
  height: 60%;
  justify-content: space-between;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
}
.service-contents-imgWrapper {
  aspect-ratio: 5/3;
  filter: brightness(55%);
  height: 100%;
  opacity: 0.95;
  overflow: hidden;
}
.service-contents-bg {
  aspect-ratio: 16/9;
  height: 100%;
  transition: all 0.3s;
  width: 100%;
}
.service-contents-bg:hover {
  transform: scale(1.2);
}
.service-contents-text {
  color: var(--white);
  padding-top: 15px;
}
.service-contents-btn {
  background: rgba(68, 68, 68, 0.7);
  border: none;
  cursor: pointer;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  margin-left: auto;
  pointer-events: all;
  width: 200px;
}
.service-contents-btn::after {
  height: 0.5rem;
  width: 0.5rem;
}
.service-contents-btn:hover {
  border: none;
  opacity: 0.6;
}
@media screen and (max-width: 1440px) {
  .service-contents-box {
    width: 70%;
  }
  .service-contents-title {
    height: 60px;
  }
  .service-contents-btn {
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    width: 170px;
  }
  .service-contents-btn::after {
    top: 54%;
  }
}
@media screen and (max-width: 1024px) {
  .service-contents-item {
    width: calc(100% / 2);
  }
}
@media screen and (max-width: 599px) {
  .service-contents-title {
    height: 50px;
  }
  .service-contents-text {
    font-size: 12px;
    padding-top: 10px;
  }
  .service-contents-item {
    width: 100%;
  }
  .service-contents-btn {
    font-size: 12px;
    height: 35px;
    line-height: 35px;
    width: 130px;
  }
  .service-contents-btn::after {
    height: 0.4rem;
    right: 1.5em;
    top: 53%;
    width: 0.4rem;
  }
  .service-contents-border {
    margin: 100px auto;
  }
}

.service-page_design {
  color: var(--white);
  margin-bottom: 100px;
  position: relative;
}
.service-page_design-bg {
  -o-object-fit: cover;
  height: 1304px;
  object-fit: cover;
  width: 100%;
}
.service-page_design-box {
  color: var(--white);
  left: 47%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.service-page_design-title {
  align-items: flex-end;
  display: flex;
  font-size: clamp(1.375rem, 1.098rem + 1.38vw, 3rem);
  margin-bottom: 50px;
}
.service-page_design-title img {
  height: 150px;
  width: auto;
}
.service-page_design-lead {
  display: block;
  padding-bottom: 21px;
  padding-left: 40px;
}
.service-page_design-subTitle {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    Hiragino Sans;
  font-size: clamp(1.375rem, 1.098rem + 1.38vw, 3rem);
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 100px;
}
.service-page_design-img-wrapper {
  text-align: center;
}
.service-page_design-img-wrapper img {
  height: auto;
  width: 65%;
}
@media screen and (max-width: 1440px) {
  .service-page_design-title {
    padding-bottom: 20px;
  }
  .service-page_design-lead {
    padding-bottom: 18px;
  }
  .service-page_design-title img {
    height: 120px;
    width: auto;
  }
  .service-page_design-subTitle {
    margin-bottom: 130px;
  }
  .service-page_design-design-box {
    width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .service-page_design {
    background-color: #000000;
  }
  .service-page_design-subTitle {
    margin-bottom: 130px;
  }
  .service-page_design-title {
    margin-bottom: 150px;
  }
  .service-page_design-title img {
    height: 100px;
  }
  .service-page_design-img-wrapper img {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .service-page_design {
    margin-bottom: 50px;
    margin-top: 70px;
  }
  .service-page_design-title {
    display: block;
    margin-bottom: 0;
  }
  .service-page_design-title img {
    height: 70px;
  }
  .service-page_design-lead {
    display: block;
    font-size: 10px;
    padding-left: 30px;
    padding-top: 10px;
  }
  .service-page_design-bg {
    height: 700px;
  }
  .service-page_design-box {
    height: 100%;
    left: 50%;
    top: 58%;
    width: 75%;
  }
  .service-page_design-img-wrapper {
    text-align: center;
  }
  .service-page_design-subTitle {
    margin-bottom: 0;
    padding: 0;
  }
}

.server-container {
  color: var(--white);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.server-title {
  align-items: flex-end;
  display: flex;
  margin-bottom: 130px;
  text-align: center;
}
.server-title img {
  height: 150px;
}
.server-title-lead {
  color: var(--gray-50);
  display: block;
  padding-bottom: 21px;
  padding-left: 30px;
}
.server-subTitle {
  color: var(--gray-50);
  font-size: clamp(1.125rem, 0.806rem + 1.6vw, 3rem);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 70px;
}
.server-lead {
  font-weight: bold;
  line-height: 2;
}
.server-top-text {
  color: var(--gray-50);
  font-size: clamp(0.625rem, 0.536rem + 0.45vw, 1.15rem);
  line-height: 2;
  margin-bottom: 100px;
}
.server-top {
  margin-bottom: 100px;
  margin-top: 70px;
  position: relative;
}
.server-catalog {
  display: flex;
}
.server-catalog-box {
  margin-right: 150px;
}
.server-catalog-box:last-child {
  margin-right: 0;
}
.server-catalog-text {
  color: white;
  margin-top: 50px;
}
.server-kura,
.server-yagura {
  box-shadow: 0px 1px 1px #000;
  cursor: pointer;
  margin-bottom: 25px;
}
.server-kura-text,
.server-yagura-text {
  background-color: var(--black);
  font-size: clamp(0.875rem, 0.811rem + 0.32vw, 1.25rem);
  padding: 15px 0;
  text-align: center;
  width: 100%;
}
.server-img {
  height: 1750px;
  width: 100%;
}
.server-img-wrapper {
  display: flex;
}
.server-text {
  font-size: clamp(0.625rem, 0.476rem + 0.74vw, 1.5rem);
  line-height: 2;
}
.server-text-box {
  margin: 0 auto;
  margin-bottom: 100px;
  max-width: 940px;
  width: 50vw;
}
.server-text-title {
  background-color: var(--gray-50);
  color: var(--white);
  display: inline-block;
  font-size: clamp(1rem, 0.915rem + 0.43vw, 1.5rem);
  font-weight: normal;
  line-height: 2;
  margin-bottom: 60px;
  padding: 20px;
}
.server-item {
  color: var(--gray-50);
  font-size: clamp(0.813rem, 0.717rem + 0.48vw, 1.375rem);
  font-weight: bold;
  line-height: 2;
  margin-bottom: 40px;
}
.server-section-text-box {
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 940px;
  width: 50vw;
}
.server-section {
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 940px;
  width: 50vw;
}
.server-section-text {
  font-size: clamp(0.75rem, 0.707rem + 0.21vw, 1rem);
  line-height: 2;
}
.server-section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 50px;
}
.server-section-title span {
  color: #b2b2b3;
  font-size: clamp(0.75rem, 0.707rem + 0.21vw, 1rem);
  padding-left: 20px;
}
@media screen and (max-width: 1440px) {
  .server-img {
    -o-object-fit: cover;
    height: 1550px;
    object-fit: cover;
  }
  .serverFunction {
    width: 70vw;
  }
  .server-table {
    width: 70%;
  }
  .server-title img {
    height: 120px;
    width: auto;
  }
  .server-top-text {
    padding-left: 0%;
  }
  .server-title-lead {
    padding-bottom: 10px;
  }
  .server-yagura img,
  .server-kura img {
    height: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .server-container {
    top: 43%;
  }
  .server-catalog-box {
    margin-right: 100px;
  }
  .server-kura,
  .server-yagura {
    margin: 0 auto 15px;
    width: 100%;
  }
  .server-kura-text,
  .server-yagura-text {
    margin: 0 auto;
    width: 100%;
  }
  .server-kura img,
  .server-yagura img {
    height: auto;
    width: 100%;
  }
  .server-top-text {
    padding-left: 0;
  }
  .server-title {
    display: block;
    margin-left: 0;
    text-align: initial;
  }
  .server-title img {
    height: 100px;
  }
  .server-title-lead {
    padding-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .server {
    margin-top: 70px;
  }
  .server-img {
    height: 1000px;
  }
  .server-container {
    left: 50%;
    margin-top: 0px;
    top: 50%;
    width: 85%;
  }
  .server-top-text {
    padding: 0;
  }
  .server-catalog-box {
    margin-right: 0;
  }
  .server-catalog-text {
    margin-bottom: 0;
  }
  .server-kura,
  .server-yagura {
    margin: 0 auto 15px;
    width: 80%;
  }
  .server-kura-text,
  .server-yagura-text {
    margin: 0 auto;
    width: 80%;
  }
  .server-kura img,
  .server-yagura img {
    width: 100%;
  }
  .server-title {
    display: block;
    margin-bottom: 30px;
  }
  .server-title-lead {
    display: block;
    font-size: 10px;
    padding-left: 30px;
    padding-top: 5px;
  }
  .server-title img {
    height: 70px;
    padding-left: 0;
  }
  .server-subTitle {
    font-size: 18px;
    margin-bottom: 50px;
  }
  .server-text-box {
    text-align: center;
    width: 85vw;
  }
  .server-section-text-box {
    text-align: center;
    width: 100%;
  }
  .server-text-title {
    line-height: 1.7;
    width: 100%;
  }
  .server-section {
    width: 85vw;
  }
  .server-table {
    width: 85vw;
  }
  .server-tableHeader {
    width: 30%;
  }
}

.serverFunction {
  margin: 0 auto;
  max-width: 940px;
  width: 50vw;
}
.serverFunctionBox {
  align-items: center;
  background-color: var(--gray-10);
  box-shadow: 2px 2px 2px #f2f2f2;
  display: flex;
  height: 300px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.serverFunctionImgWrapper {
  text-align: center;
  width: 50%;
}
.serverFunctionImg {
  height: auto;
  width: 30%;
}
.serverFunctionBody {
  padding-right: 40px;
}
.serverFunctionBody:last-child {
  margin-bottom: 0;
}
.serverFunctionText {
  font-size: clamp(0.75rem, 0.707rem + 0.21vw, 1rem);
  line-height: 2;
}
.serverFunctionTitle {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .serverFunctionSection {
    width: 70vw;
  }
}
@media screen and (max-width: 1024px) {
  .serverFunctionBox {
    display: block;
    height: auto;
    padding: 20px;
  }
  .serverFunctionImgWrapper {
    margin: 0 auto;
    width: 80%;
  }
  .serverFunctionBody {
    margin-top: 50px;
  }
  .serverFunctionImg {
    width: 40%;
  }
}
@media screen and (max-width: 599px) {
  .serverFunction {
    text-align: center;
    width: 85vw;
  }
  .serverFunctionBox {
    display: block;
    height: auto;
    padding: 20px;
  }
  .serverFunctionText {
    text-align: initial;
  }
  .serverFunctionImgWrapper {
    margin: 0 auto;
    margin-top: 15px;
    width: 80%;
  }
  .serverFunctionBody {
    margin-top: 30px;
  }
  .serverFunctionImg {
    width: 40%;
  }
}

.serverTable {
  border: 1px solid var(--gray-10);
  margin: 0 auto;
  margin-bottom: 200px;
  max-width: 940px;
  width: 50%;
}
.serverTableHeader {
  border-bottom: 1px solid var(--gray-10);
  border-right: 1px solid var(--gray-10);
  font-size: clamp(0.75rem, 0.707rem + 0.21vw, 1rem);
  line-height: 2;
  padding: 20px;
  text-align: left;
}
.serverTableText {
  border-bottom: 1px solid var(--gray-10);
  font-size: clamp(0.75rem, 0.707rem + 0.21vw, 1rem);
  line-height: 2;
  padding: 20px;
}

.consul {
  margin-bottom: 200px;
  position: relative;
}
.consulImg {
  -o-object-fit: cover;
  filter: brightness(75%) blur(1px);
  height: 1200px;
  object-fit: cover;
  width: 100%;
}
.consulTop {
  position: relative;
}
.consulContainer {
  color: var(--white);
  left: 47%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.consulTitle {
  align-items: flex-end;
  display: flex;
  font-size: 4rem;
  margin-bottom: 130px;
}
.consulTitle img {
  height: 150px;
}
.consulTitleLead {
  display: block;
  padding-bottom: 21spx;
  padding-left: 40px;
}
.consulSubTitle {
  font-size: clamp(1.563rem, 1.233rem + 1.65vw, 3.5rem);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 130px;
}
.consulText {
  font-size: clamp(0.625rem, 0.476rem + 0.74vw, 1.5rem);
  line-height: 2.5;
  margin-bottom: 60px;
}
.consulLead {
  font-weight: bold;
  line-height: 2;
}
.consulMedia {
  margin-top: 200px;
}
.consulMediaBox {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 100px;
  width: 60vw;
}
.consulMediaTextBox {
  height: 274px;
  margin-top: 4%;
  position: relative;
  width: 60%;
}
.consulMediaTextBox img {
  height: auto;
  left: -10%;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.consulMediaImgWrapper img {
  height: 250px;
  position: relative;
  width: 250px;
  z-index: 2;
}
.consulMediaTitle {
  color: var(--gray-50);
  font-size: clamp(1.5rem, 1.457rem + 0.21vw, 1.75rem);
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 20px;
  padding-left: 20px;
}
.consulMediaTitle span {
  color: #b2b2b3;
  font-size: clamp(0.75rem, 0.707rem + 0.21vw, 1rem);
  font-weight: normal;
  padding-left: 20px;
}
.consulMediaText {
  border-top: 5px solid;
  display: inline-block;
  font-family: "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  font-size: clamp(0.75rem, 0.707rem + 0.21vw, 1rem);
  line-height: 2;
  padding-left: 20px;
  padding-top: 20px;
  position: relative;
  width: 90%;
}
.consulMediaText::before {
  border-top: 5px solid var(--black);
  content: "";
  content: "";
  display: inline-block;
  height: 40px;
  left: -134px;
  position: absolute;
  top: -11px;
  transform: rotate(-45deg);
  transform-origin: right;
  width: 150px;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .consulTitle img {
    height: 120px;
  }
  .consulMediaBox {
    width: 70vw;
  }
  .consulMediaTitle span {
    display: block;
    padding-left: 0;
  }
  .consulTitleLead {
    padding-bottom: 16px;
  }
  .consulMediaTextBox {
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .consulTitle {
    display: block;
  }
  .consulTitle img {
    height: 100px;
  }
  .consulTitleLead {
    padding-top: 20px;
  }
  .consulMediaImgWrapper {
    text-align: center;
  }
  .consulMediaBox {
    display: block;
  }
  .consulMediaTextBox {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .consul {
    margin-top: 50px;
  }
  .consulTitle {
    display: block;
    margin-bottom: 80px;
  }
  .consulImg {
    height: 700px;
  }
  .consulContainer {
    top: 55%;
    width: 75%;
  }
  .consulTitleLead {
    display: block;
    font-size: 10px;
    padding-left: 30px;
    padding-top: 10px;
  }
  .consulTitle img {
    height: 70px;
  }
  .consulSubTitle {
    margin-bottom: 80px;
  }
  .consulMedia {
    margin-top: 100px;
  }
  .consulMediaTitle span {
    display: block;
    padding-left: 0;
    padding-top: 10px;
  }
  .consulMediaBox {
    display: block;
    margin: 0 auto;
    margin-bottom: 100px;
    width: 85vw;
  }
  .consulMediaTextBox {
    height: auto;
    width: 100%;
  }
  .consulMediaText {
    width: 100%;
  }
  .consulMediaImgWrapper {
    margin-bottom: 40px;
    text-align: center;
  }
}

.beauty-top-img {
  filter: none;
}

.beauty-media-box {
  align-items: center;
  display: flex;
}
.beauty-media-box-flexEnd {
  justify-content: flex-end;
  margin-bottom: 100px;
}
.beauty-media-box-flexStart {
  justify-content: flex-start;
  margin-bottom: 250px;
}
.beauty-media-box-flexEnd .beauty-media-text-box {
  margin-right: 5%;
}
.beauty-media-box-flexStart .beauty-media-text-box {
  margin-left: 5%;
}
.beauty-media-text-box {
  color: var(--gray-50);
}
.beauty-media-text-box h3 {
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 5px;
  margin-bottom: 50px;
}
.beauty-media-text-box p {
  line-height: 3;
}
.beauty-media-text-big {
  font-size: 22px;
}
@media screen and (max-width: 1440px) {
  .beauty-media-img-wrapper {
    width: 40%;
  }
  .beauty-media-img-wrapper img {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .beauty-media-box {
    align-items: center;
  }
  .beauty-media-box-flexEnd {
    flex-direction: column-reverse;
  }
  .beauty-media-box-flexStart {
    flex-direction: column;
    margin-bottom: 100px;
  }
  .beauty-media-img-wrapper {
    margin-bottom: 50px;
    width: 100%;
  }
  .beauty-media-text-box {
    text-align: center;
    width: 90%;
  }
  .beauty-media-text-box p {
    text-align: start;
  }
  .beauty-media-box-flexEnd .beauty-media-text-box {
    margin-right: 0;
  }
  .beauty-media-box-flexStart .beauty-media-text-box {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .beauty-media-box-flexEnd {
    flex-direction: column-reverse;
  }
  .beauty-media-box-flexStart {
    flex-direction: column;
    margin-bottom: 100px;
  }
  .beauty-media-box-flexEnd .beauty-media-text-box {
    margin-right: 0;
  }
  .beauty-media-box-flexStart .beauty-media-text-box {
    margin-left: 0;
  }
  .beauty-media-img-wrapper {
    margin-bottom: 0;
    width: 100%;
  }
  .beauty-media-text-box {
    width: 80%;
  }
  .beauty-media-text-box h3 {
    margin-top: 30px;
    text-align: center;
  }
  .beauty-media-text-box p {
    font-size: 14px;
    line-height: 2;
    text-align: start;
  }
}

.apparel-top {
  margin-bottom: 200px;
  position: relative;
}
.apparel-top-img {
  -o-object-fit: cover;
  filter: brightness(75%) blur(1px);
  height: 1304px;
  object-fit: cover;
  width: 100%;
}
.apparel-top-container {
  color: var(--white);
  left: 47%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.apparel-top-title {
  align-items: flex-end;
  display: flex;
  font-size: clamp(1.375rem, 1.098rem + 1.38vw, 3rem);
  margin-bottom: 130px;
}
.apparel-top-title img {
  height: 150px;
}
.apparel-top-title-lead {
  display: block;
  padding-bottom: 21px;
  padding-left: 40px;
}
.apparel-top-subTitle {
  font-size: clamp(1.563rem, 1.233rem + 1.65vw, 3.5rem);
  line-height: 1.5;
  margin-bottom: 130px;
}
.apparel-top-text {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 60px;
}
.apparel-top-lead {
  line-height: 2;
}
@media screen and (max-width: 1440px) {
  .apparel-top {
    margin-bottom: 100px;
  }
  .apparel-top-subTitle {
    margin-bottom: 70px;
  }
  .apparel-top-text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .apparel-top-title {
    display: block;
    margin-bottom: 70px;
  }
  .apparel-top-title img {
    height: 100px;
  }
  .apparel-top-title-lead {
    padding-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .apparel-top {
    margin-bottom: 50px;
    margin-top: 70px;
  }
  .apparel-top-img {
    height: 700px;
  }
  .apparel-top-title {
    display: block;
    margin-bottom: 50px;
  }
  .apparel-top-title img {
    height: 70px;
  }
  .apparel-top-title-lead {
    font-size: 10px;
    padding-left: 30px;
    padding-top: 10px;
  }
  .apparel-top-subTitle {
    margin-bottom: 50px;
  }
  .apparel-top-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .apparel-top-lead {
    font-size: 10px;
  }
  .apparel-top-container {
    left: 50%;
    width: 75%;
  }
}

.apparel-concept {
  margin-bottom: 200px;
}
.apparel-concept-inner {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 75%;
}
.apparel-concept-img-wrapper {
  width: 50%;
}
.apparel-concept-img-wrapper img {
  height: auto;
  width: 100%;
}
.apparel-concept-text {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  letter-spacing: 3px;
  position: absolute;
  text-shadow: 1px 1px 3px var(--gray-50);
}
@media screen and (max-width: 1440px) {
  .apparel-concept-text {
    font-size: 34px;
    line-height: 1.5;
    margin-left: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .apparel-concept-text {
    font-size: 32px;
    line-height: 1.5;
    margin-left: 50px;
  }
}
@media screen and (max-width: 599px) {
  .apparel-concept {
    margin-bottom: 100px;
  }
  .apparel-concept-inner {
    width: 85%;
  }
  .apparel-concept-text {
    font-size: 24px;
    left: 10%;
    line-height: 1.5;
    margin-left: 0;
  }
}

.apparel-product {
  margin-bottom: 200px;
}
.apparel-product-container {
  margin: 0 auto;
  width: 60%;
}
.apparel-product-title {
  color: var(--gray-50);
  font-size: 3rem;
  text-align: center;
}
.apparel-product-title span {
  display: block;
  margin-top: 10px;
}
.apparel-product-img-box {
  position: relative;
  width: 31%;
}
.apparel-product-img-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 150px;
  margin-top: 8%;
}
.apparel-product-text {
  color: var(--white);
  font-size: 2rem;
  text-align: left;
  text-shadow: 1px 1px 3px var(--gray-50);
}
.apparel-product-textSuit {
  margin-right: 30px;
}
.apparel-product-text span {
  display: block;
  font-size: clamp(0.75rem, 0.707rem + 0.21vw, 1rem);
  margin-top: 10px;
  text-shadow: 1px 1px 3px var(--gray-50);
}
.apparel-product-text-box {
  display: flex;
  left: 7%;
  position: absolute;
  text-shadow: 1px 1px 3px var(--gray-50);
  top: 78%;
}
.apparel-product-text-suitBox {
  display: flex;
  left: 7%;
  position: absolute;
  text-shadow: 1px 1px 3px var(--gray-50);
  top: 78%;
}
.apparel-product-coat img {
  -o-object-fit: contain;
  height: auto;
  object-fit: contain;
  width: 100%;
}
.apparel-product-suit img {
  height: auto;
  width: 100%;
}
.apparel-product-bag-img {
  height: auto;
  width: 100%;
}
.apparel-product-clock-img {
  -o-object-fit: cover;
  height: auto;
  object-fit: cover;
  width: 100%;
}
.apparel-product-shoes-img {
  -o-object-fit: cover;
  height: auto;
  object-fit: cover;
  width: 100%;
}
.apparel-product-golf-img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .apparel-product-title {
    font-size: 2rem;
  }
  .apparel-product-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .apparel-product {
    margin-bottom: 100px;
    padding-bottom: 100px;
  }
  .apparel-product-title {
    font-size: 25px;
  }
  .apparel-product-text {
    font-size: 1.5rem;
  }
  .apparel-product-text span {
    font-size: 12px;
    margin-top: 5px;
  }
  .apparel-product-container {
    width: 80%;
  }
  .apparel-product-img-box {
    width: 43%;
  }
  .apparel-product-clock-box {
    left: 45%;
    width: 80%;
  }
  .apparel-product-bag-box {
    width: 30%;
  }
}
@media screen and (max-width: 599px) {
  .apparel-product {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
  .apparel-product-title {
    font-size: 16px;
  }
  .apparel-product-title span {
    font-size: 10px;
  }
  .apparel-product-text {
    font-size: 16px;
    margin-right: 15px;
  }
  .apparel-product-text span {
    font-size: 10px;
    margin-top: 5px;
  }
  .apparel-product-container {
    width: 90%;
  }
  .apparel-product-img-box {
    width: 45%;
  }
  .apparel-product-box {
    left: 10%;
    top: 72%;
  }
  .apparel-product-suitBox {
    left: 10%;
    top: 72%;
  }
}

.assistant-media {
  margin-bottom: 150px;
}
.assistant-media-wrapper {
  margin: 0 auto;
  width: 40%;
}
.assistant-media-title {
  border: 0.5px solid #aaa;
  font-size: clamp(1rem, 0.915rem + 0.43vw, 1.5rem);
  margin-bottom: 60px;
  padding: 30px 20px;
  text-align: center;
}
.assistant-media-text {
  line-height: 2;
  margin-bottom: 60px;
  text-align: center;
}
.assistant-media-box {
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  -ms-grid-rows: auto;
  -ms-grid-column-align: center;
  display: -ms-grid;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  justify-self: center;
}
.assistant-media-box > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.assistant-media-box > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.assistant-media-box > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.assistant-media-img {
  margin-bottom: 10px;
  width: 180px;
}
.assistant-media-content {
  margin-bottom: 50px;
}
.assistant-media-content-text {
  font-weight: bold;
  line-height: 2;
  padding-left: 20px;
}
.assistant-media-content-text::before {
  content: "●";
  margin-right: 5px;
}
@media screen and (max-width: 1440px) {
  .assistant-media-wrapper {
    width: 50%;
  }
  .assistant-media-text {
    font-size: 14px;
  }
  .assistant-media-img {
    width: 130px;
  }
  .assistant-media-content-text {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .assistant-media-wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .assistant-media {
    margin-bottom: 100px;
  }
  .assistant-media-wrapper {
    width: 85%;
  }
  .assistant-media-title {
    line-height: 2;
    padding: 20px;
  }
  .assistant-media-box {
    -ms-grid-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .assistant-media-box > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .assistant-media-box > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .assistant-media-content-text {
    padding-left: 10px;
  }
}

.assistant-flow {
  margin-bottom: 200px;
}
.assistant-flow-wrapper {
  margin: 0 auto;
  width: 40%;
}
.assistant-flow-title-box {
  margin-bottom: 50px;
  text-align: center;
}
.assistant-flow-title {
  border-left: 4px solid;
  border-right: 4px solid;
  display: inline-block;
  font-size: clamp(1rem, 0.915rem + 0.43vw, 1.5rem);
  padding: 0 80px;
}
.assistant-flow-box {
  border: 1px solid;
  display: flex;
  padding: 35px 85px;
}
.assistant-flow-box-title {
  width: 35%;
}
.assistant-flow-box-text {
  font-size: 14px;
}
.assistant-flow-number {
  color: var(--gray-50);
  font-weight: bold;
  opacity: 0.6;
  padding-right: 15px;
}
.assistant-flow-arrow {
  border-bottom: solid 15px transparent;
  border-left: solid 13px transparent;
  border-right: solid 13px transparent;
  border-top: solid 15px var(--gray-50);
  height: 0;
  margin: 16px auto 0;
  opacity: 0.6;
  width: 0;
}
@media screen and (max-width: 1440px) {
  .assistant-flow-wrapper {
    width: 50%;
  }
  .assistant-flow-box {
    padding: 35px 50px;
  }
  .assistant-flow-box-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .assistant-flow-wrapper {
    width: 80%;
  }
  .assistant-flow-box {
    padding: 35px 30px;
  }
}
@media screen and (max-width: 599px) {
  .assistant-flow {
    margin-bottom: 100px;
  }
  .assistant-flow-box {
    display: block;
  }
  .assistant-flow-box-title {
    display: inline-block;
    width: 80%;
  }
  .assistant-flow-box-text {
    line-height: 1.5;
    margin-top: 20px;
  }
}

.partner-case {
  margin-bottom: 200px;
}
.partner-case-wrapper {
  background-color: #afafaf;
  margin: 0 auto;
  padding: 50px 40px 0;
  width: 40%;
}
.partner-case-title {
  background-color: var(--white);
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(1rem, 0.915rem + 0.43vw, 1.5rem);
  margin: 0 auto 80px;
  padding: 10px 60px;
  text-align: center;
  width: 80%;
}
.partner-case-box {
  align-items: center;
  color: var(--white);
  display: flex;
  margin-bottom: 50px;
  width: calc(100% / 2);
}
.partner-case-box-title {
  letter-spacing: 5px;
  margin-bottom: 10px;
}
.partner-case-box-text {
  font-size: 14px;
  line-height: 1.5;
}
.partner-case-inner {
  display: flex;
  flex-wrap: wrap;
}
.partner-case-figure {
  text-align: center;
}
.partner-case-img {
  height: auto;
  width: 70%;
}
.partner-case-text-box {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .partner-case-wrapper {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .partner-case-wrapper {
    width: 80%;
  }
  .partner-case-img {
    width: 60%;
  }
}
@media screen and (max-width: 599px) {
  .partner-case {
    margin-bottom: 150px;
  }
  .partner-case-title {
    margin-bottom: 50px;
    padding: 20px 0;
    width: 100%;
  }
  .partner-case-inner {
    align-items: center;
    flex-direction: column;
  }
  .partner-case-box {
    display: block;
    width: 100%;
  }
  .partner-case-box-title {
    text-align: center;
  }
  .partner-case-box-text {
    line-height: 2;
  }
  .partner-case-img {
    margin-bottom: 20px;
    width: 30%;
  }
}

.partner-service {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 200px;
}
.partner-service-wrapper {
  margin: 0 auto;
  width: 40%;
}
.partner-service-title-box {
  margin-bottom: 70px;
  text-align: center;
}
.partner-service-title {
  border-left: 4px solid;
  border-right: 4px solid;
  display: inline-block;
  font-size: clamp(1rem, 0.915rem + 0.43vw, 1.5rem);
  font-weight: bold;
  padding: 0 50px;
}
.partner-service-item {
  align-items: center;
  background-color: var(--gray-10);
  display: flex;
  margin-bottom: 50px;
  padding: 35px 50px;
}
.partner-service-head {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.729rem + 0.11vw, 0.875rem);
  font-weight: bold;
  width: 20%;
}
.partner-service-text {
  font-size: clamp(0.75rem, 0.729rem + 0.11vw, 0.875rem);
  font-weight: normal;
  line-height: 2;
  padding-left: 3%;
}
@media screen and (max-width: 1440px) {
  .partner-service-wrapper {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .partner-service-wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .partner-service {
    margin-bottom: 150px;
  }
  .partner-service-head {
    margin-bottom: 15px;
    width: 100%;
  }
  .partner-service-item {
    display: block;
    padding: 35px 30px;
  }
}

.contact-page {
  margin-bottom: 200px;
}
.contact-page-title {
  color: var(--gray-50);
  font-size: 2rem;
  margin-bottom: 150px;
}
.contact-page-title span {
  font-size: 1rem;
  margin-left: 10px;
}
.contact-page-inner {
  height: 100%;
  padding-left: 20%;
  padding-top: 170px;
}
.contact-page-head-text {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-page-head-text-coution {
  color: var(--red);
  font-weight: bold;
  margin: 60px 0;
}
.contact-page-text {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.contact-page-text span {
  color: var(--red);
  display: inline-block;
  font-size: 12px;
  margin-left: 10px;
}
.contact-page-data {
  margin-bottom: 35px;
}
.contact-page-img img {
  filter: contrast(0);
  height: 53px;
  margin-bottom: 62px;
  width: 393px;
}
.contact-page-form {
  background-color: #fff;
  border-top: 2px solid var(--gray-50);
  max-width: 70%;
  padding-top: 100px;
}
.contact-page-form input,
.contact-page-form textarea {
  -webkit-appearance: none;
  background-color: #f4f4f4;
  border: 1px solid var(--gray-50);
  border-radius: 6px;
  height: 50px;
  outline: none;
  padding-left: 10px;
  width: 100%;
}
.contact-page-form input:hover,
.contact-page-form textarea:hover {
  border-bottom: 1px solid;
}
.contact-page textarea {
  height: 160px;
  padding-left: 20px;
  padding-top: 20px;
  resize: none;
}
.contact-page-endMessage {
  color: #8fca8f;
  display: block;
  font-size: 12px;
  line-height: 1.5;
}
.contact-page-endMessage-box {
  margin-bottom: 44px;
}
.contact-page-btn-box {
  text-align: center;
}
.contact-page-btn-box input {
  background-color: var(--gray-50);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  height: 78px;
  transition: 0.4s;
  width: 300px;
}
.contact-page-btn-box input:hover {
  opacity: 0.8;
}
.contact-page-btn a {
  color: var(--black);
  text-decoration: none;
  transition: 0.4s;
}
.contact-page-btn:hover {
  background-color: #757575;
  border: none;
}
.contact-page-btn:hover a {
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .contact-page-inner {
    padding-left: 15%;
  }
  .contact-page-form {
    max-width: 85%;
    padding-top: 70px;
  }
  .contact-page-data {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .contact-page {
    margin-bottom: 150px;
  }
  .contact-page-inner {
    padding-left: 8%;
    padding-top: 120px;
  }
  .contact-page-title {
    font-size: 19px;
    margin-bottom: 100px;
  }
  .contact-page-title span {
    font-size: 10px;
  }
  .contact-page-head-text {
    font-size: 10px;
    margin-bottom: 25px;
  }
  .contact-page-head-text-coution {
    font-size: 10px;
    margin: 45px 0;
  }
  .contact-page-form {
    max-width: 90%;
    padding-top: 50px;
  }
  .contact-page-form input,
  .contact-page-form textarea {
    font-size: 10px;
    height: 50px;
  }
  .contact-page-text {
    font-size: 10px;
  }
  .contact-page-data {
    margin-bottom: 30px;
  }
  .contact-page-btn-box input {
    font-size: 11px;
  }
  .contact-page textarea {
    height: 150px;
    padding-left: 10px;
    padding-top: 18px;
  }
}

.contact-page-privacy {
  border: 1px solid var(--gray-50);
  margin-bottom: 120px;
  padding: 30px 40px;
}
.contact-page-privacy-title {
  font-weight: bold;
  margin-bottom: 20px;
}
.contact-page-privacy-subTitle {
  color: var(--gray-50);
  margin-bottom: 20px;
}
.contact-page-privacy-link {
  color: var(--gray-50);
  font-weight: bold;
}
.contact-page-privacy-text {
  margin-bottom: 15px;
}
.contact-page-privacy-text:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .contact-page-privacy-text:last-child {
    line-height: 1.5;
  }
}
@media screen and (max-width: 599px) {
  .contact-page-privacy {
    margin-bottom: 70px;
    padding: 25px 20px;
  }
  .contact-page-privacy-title {
    font-size: 10px;
  }
  .contact-page-privacy-subTitle {
    font-size: 10px;
  }
  .contact-page-privacy-text {
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}

.privacy-page {
  margin-bottom: 200px;
}
.privacy-page-inner {
  background-color: var(--gray-10);
  margin: 0 auto;
  padding: 50px 100px 100px;
  width: 65%;
}
.privacy-page-title {
  color: var(--gray-50);
  font-size: 2rem;
  line-height: 250px;
  margin-top: 50px;
}
.privacy-page-title-box {
  height: 240px;
  margin: 0 auto;
  max-width: 60vw;
}
.privacy-page-title span {
  font-style: 1rem;
  margin-left: 10px;
}
.privacy-page-text,
.privacy-page-subTitle,
.privacy-page-name {
  color: var(--black);
  font-size: 15px;
  line-height: 1.8;
}
.privacy-page-text {
  margin-bottom: 40px;
}
.privacy-page-subTitle {
  color: var(--gray-50);
  font-size: 20px;
  margin-bottom: 40px;
}
.privacy-page-name {
  text-align: right;
}
.privacy-page-logo img {
  height: 95px;
  left: 80%;
  position: absolute;
  width: 88px;
}
@media screen and (max-width: 1024px) {
  .privacy-page-inner {
    width: 80%;
  }
  .privacy-page-title {
    font-size: 25px;
  }
  .privacy-page-title span {
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  .privacy-page {
    margin-bottom: 80px;
  }
  .privacy-page-inner {
    padding: 40px 30px 30px;
    width: 85%;
  }
  .privacy-page-title-box {
    height: 120px;
    max-width: 70vw;
  }
  .privacy-page-title {
    font-size: 19px;
    line-height: 150px;
  }
  .privacy-page-title span {
    font-size: 10px;
  }
  .privacy-page-subTitle {
    font-size: 12px;
    margin-bottom: 25px;
  }
  .privacy-page-text {
    font-size: 10px;
    margin-bottom: 30px;
  }
  .privacy-page-text-box {
    margin-bottom: 30px;
  }
  .privacy-page-name {
    font-size: 11px;
  }
}

.entry-page {
  background-color: var(--gray-10);
  padding-bottom: 200px;
}
.entry-page-title {
  color: var(--gray-50);
  font-size: 2rem;
  margin-bottom: 150px;
}
.entry-page-title span {
  font-size: 1rem;
  margin-left: 10px;
}
.entry-page-inner {
  height: 100%;
  padding-left: 20%;
  padding-top: 170px;
}
.entry-page-head-text {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.entry-page-head-text-coution {
  color: var(--red);
  font-weight: bold;
  margin: 60px 0;
}
.entry-page-text {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.entry-page-text span {
  color: var(--red);
  display: inline-block;
  font-size: 12px;
  margin-left: 10px;
}
.entry-page-data {
  margin-bottom: 90px;
}
.entry-page-img img {
  filter: contrast(0);
  height: 53px;
  margin-bottom: 62px;
  width: 393px;
}
.entry-page-form {
  border-top: 2px solid var(--gray-50);
  max-width: 70%;
  padding-top: 100px;
}
.entry-page-form input,
.entry-page-form textarea {
  -webkit-appearance: none;
  background-color: #f4f4f4;
  border: 1px solid var(--gray-50);
  font-size: 0.9rem;
  height: 70px;
  outline: none;
  padding-left: 10px;
  width: 100%;
}
.entry-page-form input:hover,
.entry-page-form textarea:hover {
  border-bottom: 1px solid;
}
.entry-page-radio {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
}
.entry-page-radio:last-child {
  margin-bottom: 31px;
}
.entry-page-radio-box {
  margin-bottom: 90px;
  margin-top: 30px;
}
.entry-page-radio-button[type="radio"] {
  -webkit-appearance: button;
  height: 15px;
  margin: 0;
  width: 15px;
}
.entry-page-radio-button[type="radio"]::before {
  background-color: #000;
}
.entry-page-radio-text {
  font-family: "Helvetica";
  font-size: 13px;
  margin-bottom: 31px;
  margin-top: 63px;
}
.entry-page-radio label {
  font-size: 14px;
  letter-spacing: 1px;
  margin-left: 11px;
}
.entry-page textarea {
  height: 200px;
  padding-left: 20px;
  padding-top: 20px;
  resize: none;
}
.entry-page-endMessage {
  color: #8fca8f;
  display: block;
  font-size: 12px;
  line-height: 1.5;
}
.entry-page-endMessage-box {
  margin-bottom: 44px;
}
.entry-page-btn-box {
  text-align: center;
}
.entry-page-btn-box input {
  background-color: var(--gray-50);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  height: 78px;
  transition: 0.4s;
  width: 300px;
}
.entry-page-btn-box input:hover {
  opacity: 0.8;
}
.entry-page-btn a {
  color: var(--black);
  text-decoration: none;
  transition: 0.4s;
}
.entry-page-btn:hover {
  background-color: #757575;
  border: none;
}
.entry-page-btn:hover a {
  color: #ffffff;
}
.entry-page-privacy {
  border: 1px solid var(--gray-50);
  margin-bottom: 120px;
  padding: 30px 40px;
}
.entry-page-privacy-title {
  font-weight: bold;
  margin-bottom: 20px;
}
.entry-page-privacy-subTitle {
  color: var(--gray-50);
  margin-bottom: 20px;
}
.entry-page-privacy-link {
  color: var(--gray-50);
  font-weight: bold;
}
.entry-page-privacy-text {
  margin-bottom: 15px;
}
.entry-page-privacy-text:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .entry-page-title {
    font-size: 25px;
    margin-bottom: 70px;
  }
  .entry-page-title span {
    font-size: 14px;
  }
  .entry-page-inner {
    padding-left: 15%;
  }
  .entry-page-form {
    max-width: 85%;
  }
  .entry-page-data {
    margin-bottom: 40px;
  }
  .entry-page-privacy-text:last-child {
    line-height: 1.5;
  }
}
@media screen and (max-width: 599px) {
  .entry-page {
    padding-bottom: 150px;
  }
  .entry-page-inner {
    padding-left: 8%;
    padding-top: 120px;
  }
  .entry-page-title {
    font-size: 19px;
    margin-bottom: 100px;
  }
  .entry-page-title span {
    font-size: 10px;
  }
  .entry-page-head-text {
    font-size: 10px;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  .entry-page-head-text-coution {
    font-size: 10px;
    margin: 45px 0;
  }
  .entry-page-form {
    max-width: 90%;
    padding-top: 50px;
  }
  .entry-page-form input,
  .entry-page-form textarea {
    font-size: 10px;
    height: 50px;
  }
  .entry-page-radio {
    margin-bottom: 10px;
  }
  .entry-page-radio label {
    font-size: 11px;
    margin-left: 5px;
  }
  .entry-page-text {
    font-size: 10px;
  }
  .entry-page-text span {
    font-size: 10px;
    margin-left: 5px;
  }
  .entry-page-data {
    margin-bottom: 50px;
  }
  .entry-page-btn-box input {
    font-size: 11px;
  }
  .entry-page textarea {
    height: 150px;
  }
  .entry-page-privacy {
    margin-bottom: 70px;
    padding: 25px 20px;
  }
  .entry-page-privacy-title {
    font-size: 10px;
  }
  .entry-page-privacy-subTitle {
    font-size: 10px;
  }
  .entry-page-privacy-text {
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}

.recruit-page {
  background-color: var(--gray-50);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.recruit-page-inner {
  height: 100%;
  width: 100%;
}
.recruit-page-head-box {
  margin-bottom: 150px;
  position: relative;
}
.recruit-page-head-img {
  -o-object-fit: cover;
  height: 600px;
  object-fit: cover;
  width: 100%;
}
.recruit-page-title {
  font-size: 2rem;
  left: 20%;
  position: absolute;
  text-shadow: 1px 1px 3px var(--gray-50);
  top: 30%;
}
.recruit-page-title span {
  font-size: 1rem;
  margin-left: 10px;
}
.recruit-page-head-text {
  font-size: 18px;
  left: 60%;
  line-height: 1.75;
  position: absolute;
  text-shadow: 0 0 3px var(--white);
  top: 75%;
}
.recruit-page-subTitle {
  font-size: 1.25rem;
}
.recruit-page-link-box {
  align-items: center;
  display: flex;
  gap: 2%;
  justify-content: center;
  margin-bottom: 150px;
  text-align: center;
}
.recruit-page-link {
  align-items: center;
  background-color: #777;
  color: #eee;
  display: flex;
  flex-direction: column;
  height: 60px;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: all 0.3s;
  width: 12%;
}
.recruit-page-link:hover {
  background-color: var(--gray-100);
}
.recruit-page-link:hover span {
  background-color: var(--gray-50);
}
.recruit-page-link span {
  background-color: var(--gray-100);
  border-radius: 50%;
  display: block;
  height: 15px;
  margin-top: -7px;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 15px;
}
.recruit-page-link span::after {
  border-bottom: 1px solid var(--white);
  border-right: 1px solid var(--white);
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  right: 5px;
  top: 4px;
  transform: rotate(45deg);
  width: 4px;
}
.recruit-page-active {
  background-color: var(--gray-100);
}
.recruit-page-wrapper {
  margin: 0 auto;
  width: 40%;
}
.recruit-page-container {
  margin-bottom: 200px;
}
.recruit-page-toggle-box {
  width: 500px;
}
.recruit-page-toggleButton {
  border: 1px solid #fff;
  border-top: none;
}
.recruit-page-img-wrapper {
  filter: blur(1px) brightness(0.5);
  margin: 0 auto;
  width: 100%;
}
.recruit-page-img-wrapper img {
  height: auto;
  width: 100%;
}
.recruit-page-table {
  border-collapse: separate;
  border-spacing: 0 80px;
  font-size: 15px;
  line-height: 21px;
  table-layout: auto;
  width: 100%;
}
.recruit-page-table-header {
  font-weight: bold;
  text-align: left;
}
.recruit-page-table-row {
  margin-bottom: 80px;
}
.recruit-page-table-text {
  line-height: 1.75;
  padding-left: 15%;
}
.recruit-page-button {
  background-color: var(--white);
  border: none;
  color: var(--gray-50);
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  height: 58px;
  line-height: 58px;
  text-decoration: none;
  transition: 0.4s;
  width: 190px;
}
.recruit-page-button-box {
  margin-right: 70px;
  text-align: center;
}
.recruit-page-button:hover {
  background-color: #fff;
  color: #000000;
}
.recruit-page.recruit-page .recruit-inner {
  padding-left: 0;
}
.recruit-page.recruit-page .recruit-button-box {
  margin-right: 0;
}
@media screen and (max-width: 1440px) {
  .recruit-page-link {
    width: 25%;
  }
  .recruit-page-wrapper {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-page-container {
    margin-bottom: 100px;
  }
  .recruit-page-wrapper {
    width: 55%;
  }
  .recruit-page-title {
    font-size: 25px;
    left: 15%;
    top: 30%;
  }
  .recruit-page-title span {
    font-size: 14px;
  }
  .recruit-page-subTItle {
    font-size: 1rem;
  }
  .recruit-page-link-box {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .recruit-page-link {
    margin-bottom: 50px;
    width: 35%;
  }
  .recruit-page-head-box {
    margin-bottom: 100px;
  }
  .recruit-page-head-img {
    height: 400px;
  }
  .recruit-page-head-text {
    font-size: 16px;
    left: 48%;
    top: 65%;
  }
  .recruit-page-table {
    border-spacing: 0px 60px;
    margin-bottom: 30px;
  }
  .recruit-page-table-text {
    padding-left: 10%;
  }
  .recruit-page-button-box {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .recruit-page-container {
    margin-bottom: 50px;
  }
  .recruit-page-wrapper {
    width: 90%;
  }
  .recruit-page-title {
    font-size: 19px;
    left: 5%;
    top: 40%;
  }
  .recruit-page-title span {
    font-size: 10px;
  }
  .recruit-page-link-box {
    flex-direction: column;
  }
  .recruit-page-link {
    font-size: 10px;
    height: 40px;
    margin-bottom: 30px;
    width: 50%;
  }
  .recruit-page-table {
    border-spacing: 0px 80px;
  }
  .recruit-page-subTitle {
    font-size: 12px;
    margin-left: 20px;
  }
  .recruit-page-head-text {
    font-size: 10px;
    left: 40%;
    top: 70%;
    width: 170px;
  }
  .recruit-page-head-box {
    margin-bottom: 50px;
  }
  .recruit-page-head-img {
    height: 300px;
  }
  .recruit-page-table-header {
    font-size: 10px;
    width: 30%;
  }
  .recruit-page-table-text {
    font-size: 10px;
    padding-left: 0;
  }
  .recruit-page-button-box {
    margin-right: 0;
  }
  .recruit-page-button {
    font-size: 12px;
    height: 55px;
    width: 140px;
  }
}

.thanks-text {
  left: 50%;
  line-height: 2;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 599px) {
  .thanks-text {
    font-size: 10px;
    top: 40%;
  }
}

.office {
  margin-bottom: 407px;
  margin-top: 197px;
}
.office-inner {
  margin: 0 auto;
  max-width: 1080px;
}
.office-title {
  color: var(--gray-50);
  font-size: 30px;
}
.office-title span {
  font-size: 13px;
}
.office-title-box {
  margin-bottom: 108px;
}
.office-images-flex {
  align-items: flex-end;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.office-images-flex img {
  width: -moz-min-content;
  width: min-content;
}
.office-images-grid {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.office-images-grid img {
  width: -moz-min-content;
  width: min-content;
}
.office-images-grid-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.office-image2 {
  height: 369px;
  width: 277px;
}
.office-image3 {
  height: 225px;
  width: 179px;
}
@media screen and (max-width: 1024px) {
  .office-inner {
    width: 80%;
  }
  .office-images-flex {
    flex-direction: column;
  }
  .office-images-grid {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .office-images .office-image2 {
    width: 100%;
  }
  .office-images .office-image3 {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .office {
    margin-bottom: 200px;
    margin-top: 107px;
  }
  .office-title {
    font-size: 19px;
  }
  .office-title span {
    font-size: 10px;
  }
  .office-title-box {
    margin: 0 auto 38px;
    width: 80%;
  }
  .office-images-flex {
    flex-direction: column;
  }
  .office-images-flex img {
    height: auto;
    width: 100%;
  }
  .office-images-flex .office-image2 {
    width: 100%;
  }
  .office-images-flex .office-image3 {
    width: 100%;
  }
  .office-images-grid {
    flex-direction: column;
  }
  .office-images-grid img {
    height: auto;
    width: 100%;
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */
