@charset "UTF-8";
/*フォント*/
@font-face {
  font-family: "Hiragino Mincho StdN";
  src: url("/font/ヒラギノ明朝 StdN W2.otf"), url("/font/ヒラギノ明朝 StdN W3.otf"), url("/font/ヒラギノ明朝 StdN W4.otf"), url("/font/ヒラギノ明朝 StdN W5.otf"), url("/font/ヒラギノ明朝 StdN W6.otf"), url("/font/ヒラギノ明朝 StdN W7.otf"), url("/font/ヒラギノ明朝 StdN W8.otf");
}
@font-face {
  font-family: "Hiragino Mincho StdN";
  src: url("/font/ヒラギノ明朝 StdN W3.otf");
  font-weight: 300;
}
@font-face {
  font-family: "Hiragino Mincho StdN";
  src: url("/font/ヒラギノ明朝 StdN W5.otf");
  font-weight: 500;
}
@font-face {
  font-family: "Hiragino Mincho StdN";
  src: url("/font/ヒラギノ明朝 StdN W6.otf");
  font-weight: 600;
}
@font-face {
  font-family: "Hiragino Mincho StdN";
  src: url("/font/ヒラギノ明朝 StdN W7.otf");
  font-weight: 700;
}
/*メディアクエリ*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "Hiragino Mincho StdN", serif;
  font-size: 18px;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

.about-page {
  padding-top: 88px;
}
@media screen and (max-width: 767px) {
  .about-page {
    padding-top: 54px;
  }
}

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

.container {
  width: 85%;
  max-width: 1611px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .container {
    width: 95%;
  }
}

/*チェックボックス*/
input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*placeholder*/

::-moz-placeholder {
  color: #9b9b9b;
}

::placeholder {
  color: #9b9b9b;
}

/* チェックボックスデザイン */
input[type=checkbox] {
  cursor: pointer;
  padding-left: 30px; /*label手前にチェックボックス用の余白を開ける*/
  vertical-align: middle;
  position: relative;
}

input[type=checkbox]::before,
input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}

input[type=checkbox]::before {
  background-color: #ffffff;
  border-radius: 0%;
  border: 1px solid #666464;
  width: 34px; /*チェックボックスの横幅*/
  height: 35px; /*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
@media screen and (max-width: 767px) {
  input[type=checkbox]::before {
    width: 22px;
    height: 22px;
  }
}

input[type=checkbox]::after {
  border-bottom: 3px solid #ffffff; /*チェックの太さ*/
  border-left: 3px solid #ffffff; /*チェックの太さ*/
  opacity: 0; /*チェック前は非表示*/
  height: 15px; /*チェックの高さ*/
  width: 25px; /*チェックの横幅*/
  transform: rotate(-45deg);
  top: -10px; /*チェック時の位置調整*/
  left: 10px; /*チェック時の位置調整*/
}
@media screen and (max-width: 767px) {
  input[type=checkbox]::after {
    top: 0px;
    left: 7px;
    height: 10px;
    width: 18px;
  }
}

input[type=checkbox]:checked::after {
  opacity: 1; /*チェック後表示*/
}

input[type=checkbox]:checked::before {
  background-color: #c11f1f;
  border: none;
  opacity: 1; /*チェック後表示*/
}

/*ヘッダー*/
.header2 {
  background-color: #111574;
}

/*topのヘッダー色変える*/
.header1 {
  transition: 0.5s ease 0s;
}

.headerColorScroll {
  background-color: #111574;
  transition: 0.4s ease 0s;
}

/*ここまで*/
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.header2,
.header1 {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
}
.header2 .header-nav,
.header1 .header-nav {
  height: 88px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header2 .header-nav,
.header1 .header-nav {
    display: none;
  }
}
.header2 .header-nav li:not(:first-child),
.header1 .header-nav li:not(:first-child) {
  margin-left: 59px;
}
.header2 .header-nav li a,
.header1 .header-nav li a {
  position: relative;
}
.header2 .header-nav li a::after,
.header1 .header-nav li a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: transparent;
  transition: 0.3s ease 0s;
}
.header2 .header-nav li a:hover::after, .header2 .header-nav li a.is-active::after,
.header1 .header-nav li a:hover::after,
.header1 .header-nav li a.is-active::after {
  content: "";
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .header2,
.header1 {
    /*スマホ用ヘッダー*/
    position: fixed;
    width: 100%;
    height: 57px;
    z-index: 998;
  }
  .header2 .drawer-icon,
.header1 .drawer-icon {
    position: fixed;
    top: 20px;
    right: 28px;
    z-index: 999;
    transition: transform 0.5s ease 0s;
  }
  .header2 .drawer-icon.is-active,
.header1 .drawer-icon.is-active {
    transform: translateY(29px);
  }
  .header2 .drawer-icon.is-active .drawer-icon-bar1,
.header1 .drawer-icon.is-active .drawer-icon-bar1 {
    transform: rotate(-25deg);
    top: 8px;
  }
  .header2 .drawer-icon.is-active .drawer-icon-bar2,
.header1 .drawer-icon.is-active .drawer-icon-bar2 {
    display: none;
  }
  .header2 .drawer-icon.is-active .drawer-icon-bar3,
.header1 .drawer-icon.is-active .drawer-icon-bar3 {
    transform: rotate(25deg);
    top: 8px;
  }
  .header2 .drawer-icon-bars,
.header1 .drawer-icon-bars {
    width: 49px;
    height: 22px;
    display: block;
    position: relative;
  }
  .header2 .drawer-icon-bar1,
.header2 .drawer-icon-bar2,
.header2 .drawer-icon-bar3,
.header1 .drawer-icon-bar1,
.header1 .drawer-icon-bar2,
.header1 .drawer-icon-bar3 {
    position: absolute;
    width: 49px;
    height: 1.5px;
    background: #ffffff;
    top: 0;
    left: 0;
  }
  .header2 .drawer-icon-bar1,
.header1 .drawer-icon-bar1 {
    top: 0;
  }
  .header2 .drawer-icon-bar2,
.header1 .drawer-icon-bar2 {
    top: 11px;
  }
  .header2 .drawer-icon-bar3,
.header1 .drawer-icon-bar3 {
    top: 22px;
  }
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #111574;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 298;
  display: block;
  transform: translateY(-120%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content-items {
  width: 90%;
  margin: auto;
}
.drawer-content-items .header__nav__mq {
  font-family: "a-otf-ud-shin-go-pr6n";
  display: block;
  width: 200px;
  text-align: center;
  margin-top: 37px;
}
.drawer-content-items .header__nav__mq p {
  font-size: 15px;
  letter-spacing: 0.2rem;
}
.drawer-content-items .header__nav__mq span {
  display: inline-block;
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 0.5rem;
}
.drawer-content-items ul {
  width: 205px;
  font-size: 20px;
  margin: auto;
  margin-top: 85px;
  border-left: 1px solid #ffffff;
}
.drawer-content-items ul li {
  padding: 25px 23px;
}
.drawer-content-items .header__contact-btn {
  display: block;
  margin: auto;
  text-align: center;
  padding: 22px;
  width: 240px;
  height: 67px;
  font-size: 20px;
  border: 0.5px solid #ffffff;
  border-radius: 32px;
  margin-top: 30%;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 297;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/*サブヴィジュアル*/
.sub-visual {
  max-height: 507px;
  height: 100%;
  padding-bottom: 36px;
  background-color: #cecece;
  display: flex;
}
@media screen and (max-width: 767px) {
  .sub-visual {
    max-height: 354px;
    flex-direction: column;
    padding-bottom: 22px;
  }
}
.sub-visual .sub-visual-left {
  width: 100%;
  max-width: 891px;
  background-color: #070d29;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .sub-visual .sub-visual-left {
    height: 167px;
  }
}
.sub-visual .sub-visual-left .page-title1 {
  font-size: 94px;
  color: #e5e5e5;
  opacity: 0.2;
  font-weight: 600;
  line-height: 141px;
}
@media screen and (max-width: 767px) {
  .sub-visual .sub-visual-left .page-title1 {
    font-size: 45px;
    line-height: 67px;
  }
}
.sub-visual .sub-visual-left .page-title {
  font-size: 55px;
  color: white;
  font-weight: 600;
  line-height: 79px;
}
@media screen and (max-width: 767px) {
  .sub-visual .sub-visual-left .page-title {
    font-size: 30px;
    line-height: 44px;
  }
}
.sub-visual .sub-visual-right {
  width: 100%;
  max-width: 1031px;
  height: 471px;
}
@media screen and (max-width: 767px) {
  .sub-visual .sub-visual-right {
    height: 170px;
  }
}
.sub-visual .contact {
  background: url(../img/contact/contact-header-visual.png) no-repeat center center/cover;
}
.sub-visual .company {
  background: url(../img/company/company-header-visual.png) no-repeat center center/cover;
}
.sub-visual .ourworks {
  background: url(../img/our-works/ourworks-header-visual.png) no-repeat center center/cover;
}
.sub-visual .recruit {
  background: url(../img/recruit/recruit-header-visual.png) no-repeat center center/cover;
}
.sub-visual .product {
  background: url(../img/product/product-header-visual.png) no-repeat center center/cover;
}

/*================================
main-visual
================================*/
.main-visual {
  height: 1288px;
  width: 100%;
  background: url(../img/top/main_visual.png) no-repeat center center/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main-visual {
    height: 813px;
  }
}
.main-visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.18;
}

.main-visual__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .main-visual__content {
    width: 100%;
    padding: 20px 0;
    background-color: rgba(29, 43, 75, 0.62);
  }
}

.main-visual__title {
  font-size: 46px;
  letter-spacing: 0.3em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .main-visual__title {
    font-size: 20px;
  }
}

.main-visual__title2 {
  font-size: 31px;
  font-family: "a-otf-ud-shin-go-pr6n";
  letter-spacing: 0.6em;
  color: #ffffff;
  margin-top: 24px;
  white-space: nowrap;
}

/*================================
catch-copy
================================*/
.catch-copy__wrapper {
  position: relative;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .catch-copy__wrapper {
    padding-bottom: 550px;
  }
}

.catch-copy_image {
  position: absolute;
  max-width: 47vw;
  opacity: 0;
  top: 0;
  right: 0;
  -webkit-animation: change-img-anim 20s infinite;
  animation: change-img-anim 20s infinite;
}
@media screen and (max-width: 767px) {
  .catch-copy_image {
    top: 81px;
    max-width: 95%;
    left: 0;
    margin: auto;
  }
}

.catch-copy_image:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.catch-copy_image:nth-of-type(2) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.catch-copy_image:nth-of-type(3) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}

.catch-copy_image:nth-of-type(4) {
  -webkit-animation-delay: 15s;
  animation-delay: 15s;
}

@-webkit-keyframes change-img-anim {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes change-img-anim {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.catch-copy {
  margin-top: 111px;
  margin-bottom: 174px;
}
@media screen and (max-width: 767px) {
  .catch-copy {
    margin-top: 52px;
    margin-bottom: 107px;
  }
}
.catch-copy h2 {
  font-size: 110px;
  line-height: 180px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .catch-copy h2 {
    font-size: 37px;
    line-height: 61px;
  }
}
.catch-copy p {
  margin-top: 79px;
  font-size: 25px;
  line-height: 55px;
}
@media screen and (max-width: 767px) {
  .catch-copy p {
    font-size: 16px;
    line-height: 30px;
    margin-top: 71px;
  }
  .catch-copy p br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .catch-copy .catch-copy__right {
    position: relative;
  }
}

/*================================
catch-copy2
================================*/
.catch-copy2 {
  background: #111574;
  padding-top: 104px;
  padding-bottom: 270px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .catch-copy2 {
    padding-top: 57px;
    padding-bottom: 101px;
  }
}

.catch-copy2__wrapper {
  display: flex;
}
@media screen and (max-width: 767px) {
  .catch-copy2__wrapper {
    flex-direction: column-reverse;
  }
}

.catch-copy2__left {
  margin-top: 93px;
}
@media screen and (max-width: 767px) {
  .catch-copy2__left {
    margin: 146px auto 0;
  }
}

.catch-copy2__right {
  width: 50%;
  padding-left: 45px;
}
@media screen and (max-width: 767px) {
  .catch-copy2__right {
    width: 100%;
    padding-left: 0;
  }
}
.catch-copy2__right h2 {
  font-size: 100px;
  line-height: 180px;
  text-align: left;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .catch-copy2__right h2 {
    font-size: 37px;
    line-height: 61px;
    text-align: left;
  }
}
.catch-copy2__right .textarea {
  font-size: 20px;
  color: #ffffff;
  margin-top: 92px;
  margin-left: 80px;
  line-height: 38px;
}
@media screen and (max-width: 767px) {
  .catch-copy2__right .textarea {
    max-width: 100%;
    margin: auto;
    margin-top: 71px;
    font-size: 16px;
    line-height: 30px;
  }
}
.catch-copy2__right .nav-btn {
  display: block;
  color: #ffffff;
  width: 177px;
  height: 39px;
  font-size: 20px;
  position: relative;
  text-align: left;
  padding: 10px 20px 15px 20px;
  margin-left: auto;
  bottom: -154px;
}
@media screen and (max-width: 767px) {
  .catch-copy2__right .nav-btn {
    width: 108px;
    height: 21px;
    font-size: 14px;
    padding: 3px 12px 8px 10px;
  }
}
.catch-copy2__right .nav-btn .border {
  position: relative;
  width: 140px;
  border-bottom: 1px solid #ffffff;
  position: absolute;
  left: auto;
  bottom: 5px;
}
@media screen and (max-width: 767px) {
  .catch-copy2__right .nav-btn .border {
    width: 90px;
    bottom: 3px;
  }
}
.catch-copy2__right .nav-btn .border-right {
  position: absolute;
  bottom: -2px;
  right: 5px;
  height: 15px;
  border-right: 1px solid #ffffff;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .catch-copy2__right .nav-btn .border-right {
    height: 10px;
    right: 3px;
  }
}
.catch-copy2__right .nav-btn:hover {
  border-radius: 12px;
  background-color: #ffffff;
  display: block;
  color: #111574;
  width: 177px;
  height: 39px;
  font-size: 20px;
  position: relative;
  text-align: left;
  padding: 10px 20px 15px 20px;
}
@media screen and (max-width: 767px) {
  .catch-copy2__right .nav-btn:hover {
    width: 108px;
    height: 21px;
    font-size: 14px;
    padding: 3px 12px 8px 10px;
  }
}
.catch-copy2__right .nav-btn:hover .border {
  position: relative;
  width: 140px;
  border-bottom: 1px solid #111574;
  position: absolute;
  left: auto;
  bottom: 5px;
}
@media screen and (max-width: 767px) {
  .catch-copy2__right .nav-btn:hover .border {
    width: 90px;
    bottom: 3px;
  }
}
.catch-copy2__right .nav-btn:hover .border-right {
  position: absolute;
  bottom: -2px;
  right: 5px;
  height: 15px;
  border-right: 1px solid #111574;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .catch-copy2__right .nav-btn:hover .border-right {
    height: 10px;
    right: 3px;
  }
}
@media screen and (max-width: 767px) {
  .catch-copy2__right .nav-btn {
    bottom: -102px;
  }
}

/*================================
product
================================*/
.product__wrapper {
  text-align: center;
}

.section__title-en {
  font-size: 167px;
  color: #ededed;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .section__title-en {
    font-size: 60px;
  }
}

.section__title {
  font-size: 90px;
  color: #000000;
  line-height: 120px;
}
@media screen and (max-width: 767px) {
  .section__title {
    margin-top: 23px;
    font-size: 30px;
    line-height: 44px;
  }
}

.product__navlist {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1030px;
  margin-top: 123px;
  margin-bottom: 194px;
  font-family: "ヒラギノ角ゴ ProN";
}
@media screen and (max-width: 767px) {
  .product__navlist {
    margin-bottom: 131px;
  }
}

.c-nav_title {
  font-size: 20px;
  margin: 18px 60px 16px 60px;
  border-bottom: solid 1px #acacac;
  padding-bottom: 15px;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-nav_title {
    font-size: 15px;
    margin: 18px 25px 16px 25px;
    padding-bottom: 7px;
  }
}

.c-nav_text {
  padding: 0 20px;
  font-size: 16px;
  line-height: 24px;
  margin-top: 40px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-nav_text {
    padding: 0 12px;
    line-height: 21px;
    font-size: 14px;
    margin-top: 18px;
  }
}

.c-nav {
  display: inline-block;
  max-width: 343px;
  height: 430px;
  width: 100%;
  padding-top: 42px;
  border: 1px solid #c4c4c4;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .c-nav {
    height: 338px;
    max-width: 176px;
    padding-top: 18px;
  }
}
.c-nav img {
  display: block;
  margin: 0 auto;
  height: 190px;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .c-nav img {
    height: 80px;
  }
}
.c-nav:hover {
  background: #111574;
  color: #ffffff;
}
.c-nav:hover .img1 {
  background-color: #ffffff;
}

/*================================
recruit
================================*/
.recruit {
  background: #ededed;
  padding-bottom: 224px;
}
@media screen and (max-width: 767px) {
  .recruit {
    padding-bottom: 123px;
  }
}
.recruit .section__title-en {
  color: #ffffff;
  text-align: left;
}
.recruit .section__title {
  text-align: center;
  margin-bottom: 61px;
}
.recruit .recruit-text {
  line-height: 38px;
  text-align: center;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .recruit .recruit-text {
    text-align: left;
    font-size: 16px;
    line-height: 30px;
  }
}
.recruit .recruit-text + .recruit-text {
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .recruit .recruit-text + .recruit-text {
    margin-top: 0;
  }
}
.recruit .recruit-contents {
  margin-top: 126px;
}
@media screen and (max-width: 767px) {
  .recruit .recruit-contents {
    margin-top: 106px;
  }
}
.recruit .recruit-content-heading {
  font-size: 25px;
  max-width: 915px;
  margin: auto;
  text-align: center;
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
}
@media screen and (max-width: 767px) {
  .recruit .recruit-content-heading {
    font-size: 20px;
  }
}
.recruit .recruit-content-heading::before, .recruit .recruit-content-heading::after {
  background-color: #bababa;
  content: "";
  flex-grow: 1;
  height: 1px;
}
.recruit .recruit-content-heading::before {
  margin-right: 47px;
}
.recruit .recruit-content-heading::after {
  margin-left: 47px;
}
.recruit .recruit-content-list {
  margin-top: 62px;
}
@media screen and (max-width: 767px) {
  .recruit .recruit-content-list {
    margin-top: 43px;
  }
}
.recruit .recruit-content-item {
  width: 448px;
  height: 103px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  border-radius: 15px;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .recruit .recruit-content-item {
    width: 278px;
    height: 64px;
    margin-top: 17px;
  }
}
.recruit .content-item-left {
  border-right: solid 1px #777777;
  font-family: Hiragino sans-serif;
  text-align: left;
  padding-right: 35px;
  margin-left: 41px;
}
.recruit .item-en {
  margin-top: 5px;
  font-size: 25px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .recruit .item-en {
    font-size: 7px;
  }
}
.recruit .item-num {
  font-size: 41px;
  line-height: 45px;
}
@media screen and (max-width: 767px) {
  .recruit .item-num {
    font-size: 20px;
  }
}
.recruit .item-text {
  font-size: 25px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .recruit .item-text {
    font-size: 16px;
  }
}

.recruit-content-arrow {
  display: block;
  margin: 0 auto;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .recruit-content-arrow {
    width: 93px;
    padding-top: 17px;
  }
}

.recruit-content-bottom {
  margin: 89px auto 0;
  padding-top: 76px;
  max-width: 901px;
  background-image: linear-gradient(to right, #bababa, #bababa 5px, transparent 5px);
  background-size: 10px 1px;
  background-position: left top;
  background-repeat: repeat-x;
}
@media screen and (max-width: 767px) {
  .recruit-content-bottom {
    margin-top: 64px;
    padding-top: 48px;
  }
}

/*================================
news
================================*/
.news .title__area {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .news .title__area {
    flex-direction: column;
    align-items: center;
  }
}
.news .title__area .nav-btn {
  display: block;
  color: #000000;
  width: 177px;
  height: 39px;
  font-size: 20px;
  position: relative;
  text-align: left;
  padding: 10px 20px 15px 20px;
  margin-left: 80px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .news .title__area .nav-btn {
    width: 108px;
    height: 21px;
    font-size: 14px;
    padding: 3px 12px 8px 10px;
  }
}
.news .title__area .nav-btn .border {
  position: relative;
  width: 140px;
  border-bottom: 1px solid #000000;
  position: absolute;
  left: auto;
  bottom: 5px;
}
@media screen and (max-width: 767px) {
  .news .title__area .nav-btn .border {
    width: 90px;
    bottom: 3px;
  }
}
.news .title__area .nav-btn .border-right {
  position: absolute;
  bottom: -2px;
  right: 5px;
  height: 15px;
  border-right: 1px solid #000000;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .news .title__area .nav-btn .border-right {
    height: 10px;
    right: 3px;
  }
}
.news .title__area .nav-btn:hover {
  border-radius: 12px;
  background-color: #5a5a5a;
  display: block;
  color: #ffffff;
  width: 177px;
  height: 39px;
  font-size: 20px;
  position: relative;
  text-align: left;
  padding: 10px 20px 15px 20px;
}
@media screen and (max-width: 767px) {
  .news .title__area .nav-btn:hover {
    width: 108px;
    height: 21px;
    font-size: 14px;
    padding: 3px 12px 8px 10px;
  }
}
.news .title__area .nav-btn:hover .border {
  position: relative;
  width: 140px;
  border-bottom: 1px solid #ffffff;
  position: absolute;
  left: auto;
  bottom: 5px;
}
@media screen and (max-width: 767px) {
  .news .title__area .nav-btn:hover .border {
    width: 90px;
    bottom: 3px;
  }
}
.news .title__area .nav-btn:hover .border-right {
  position: absolute;
  bottom: -2px;
  right: 5px;
  height: 15px;
  border-right: 1px solid #ffffff;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .news .title__area .nav-btn:hover .border-right {
    height: 10px;
    right: 3px;
  }
}
@media screen and (max-width: 767px) {
  .news .title__area .nav-btn {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 27px;
  }
}
.news ul {
  margin-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .news ul {
    margin-top: 47px;
    margin-bottom: 141px;
  }
}
.news ul li {
  padding: 30px 93px 30px 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .news ul li {
    padding: 40px 0;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }
}
.news ul li .news-content-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .news ul li .news-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.news ul li .news-day {
  padding-left: 100px;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .news ul li .news-day {
    padding-left: 0;
    margin: 20px 0;
  }
}
.news ul li .news-content {
  text-align: left;
  padding-left: 100px;
  line-height: 25px;
  position: relative;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .news ul li .news-content {
    line-height: 30px;
    padding: 0;
  }
}
.news ul li a {
  color: #000000;
  position: relative;
  width: 124px;
  font-size: 30px;
  margin: 10px 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .news ul li a {
    font-size: 24px;
  }
}
.news ul li a:hover .arrow {
  display: inline-block;
  transition: 0.5s ease 0s;
  transform: translateX(50px);
}
@media screen and (max-width: 767px) {
  .news ul li a:hover .arrow {
    transition: 0.3s ease 0s;
    transform: translateX(50px);
  }
}
.news ul li a:hover::before {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 13.5px;
  left: 0;
  /*線の形状*/
  width: 60px;
  height: 1.3px;
  background: #333;
  -webkit-animation: arrow__long 0.5s ease 0s;
  animation: arrow__long 0.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .news ul li a:hover::before {
    bottom: 11px;
    height: 1px;
  }
}
@-webkit-keyframes arrow__long {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 40px;
    opacity: 1;
  }
  80% {
    width: 60px;
    opacity: 1;
  }
  100% {
    width: 60px;
    opacity: 1;
  }
}
@keyframes arrow__long {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 40px;
    opacity: 1;
  }
  80% {
    width: 60px;
    opacity: 1;
  }
  100% {
    width: 60px;
    opacity: 1;
  }
}

/*================================
company
================================*/
.top__company {
  background: url(../img/top/top-company-bg.png) no-repeat center center/cover;
  text-align: center;
  position: relative;
}
.top__company::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #cecff4;
  opacity: 0.95;
}
.top__company .section__title-en {
  text-align: left;
  opacity: 0.29;
}
.top__company .section__title {
  margin-bottom: 18px;
}
.top__company .nav-btn {
  display: block;
  color: #000000;
  width: 177px;
  height: 39px;
  font-size: 20px;
  position: relative;
  text-align: left;
  padding: 10px 20px 15px 20px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .top__company .nav-btn {
    width: 108px;
    height: 21px;
    font-size: 14px;
    padding: 3px 12px 8px 10px;
  }
}
.top__company .nav-btn .border {
  position: relative;
  width: 140px;
  border-bottom: 1px solid #000000;
  position: absolute;
  left: auto;
  bottom: 5px;
}
@media screen and (max-width: 767px) {
  .top__company .nav-btn .border {
    width: 90px;
    bottom: 3px;
  }
}
.top__company .nav-btn .border-right {
  position: absolute;
  bottom: -2px;
  right: 5px;
  height: 15px;
  border-right: 1px solid #000000;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .top__company .nav-btn .border-right {
    height: 10px;
    right: 3px;
  }
}
.top__company .nav-btn:hover {
  border-radius: 12px;
  background-color: #5a5a5a;
  display: block;
  color: #ffffff;
  width: 177px;
  height: 39px;
  font-size: 20px;
  position: relative;
  text-align: left;
  padding: 10px 20px 15px 20px;
}
@media screen and (max-width: 767px) {
  .top__company .nav-btn:hover {
    width: 108px;
    height: 21px;
    font-size: 14px;
    padding: 3px 12px 8px 10px;
  }
}
.top__company .nav-btn:hover .border {
  position: relative;
  width: 140px;
  border-bottom: 1px solid #ffffff;
  position: absolute;
  left: auto;
  bottom: 5px;
}
@media screen and (max-width: 767px) {
  .top__company .nav-btn:hover .border {
    width: 90px;
    bottom: 3px;
  }
}
.top__company .nav-btn:hover .border-right {
  position: absolute;
  bottom: -2px;
  right: 5px;
  height: 15px;
  border-right: 1px solid #ffffff;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .top__company .nav-btn:hover .border-right {
    height: 10px;
    right: 3px;
  }
}

.company__wrapper {
  max-width: 1320px;
  margin: auto;
  padding-bottom: 199px;
}

.company-about {
  font-size: 20px;
  text-align: left;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 77px;
}
@media screen and (max-width: 767px) {
  .company-about {
    font-size: 16px;
  }
}
.company-about .company-item,
.company-about .company-item-title,
.company-about .company-item-content {
  padding: 32px;
  line-height: 69px;
}
@media screen and (max-width: 767px) {
  .company-about .company-item,
.company-about .company-item-title,
.company-about .company-item-content {
    line-height: 30px;
    padding-right: 0;
  }
}
.company-about .company-item-title {
  padding-left: 113px;
}
@media screen and (max-width: 767px) {
  .company-about .company-item-title {
    padding-left: 0;
    white-space: nowrap;
  }
}
.company-about .company-item-title2 {
  border: none;
}
.company-about .company-item-content a {
  color: #400cff;
  -webkit-text-decoration: none;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .company-about .company-item-content {
    padding-left: 15px;
  }
}
.company-about .company-item {
  color: #000000;
  border-bottom: 1px solid #ffffff;
}
.company-about .company-item:last-child {
  border: none;
}

.company__link {
  display: flex;
  justify-content: space-between;
  background-color: #111574;
  align-items: center;
  max-width: 1320px;
  width: 100%;
  color: #ffffff;
  font-size: 35px;
  margin-bottom: 45px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .company__link {
    font-size: 23px;
    text-align: center;
  }
}

.company__link_content {
  height: 100%;
  width: 33%;
  text-align: center;
}
.company__link_content img {
  vertical-align: bottom;
}

.company__link2 {
  background-color: #fff;
  justify-content: center;
  color: #000;
  height: 190px;
}

.address-num {
  padding-left: 50px;
}
.address-num a {
  color: #400cff;
  -webkit-text-decoration: none;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .address-list-item {
    display: flex;
    flex-direction: column;
  }
}

.address-list-item + .address-list-item {
  padding-top: 30px;
}

/*================================
contact
================================*/
.contact {
  height: 891px;
  width: 100%;
  background: url(../img/top/contact.png) no-repeat center center/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact {
    height: 355px;
  }
}

.contact-btn {
  background-color: rgba(0, 0, 0, 0.65);
  border: 1px solid #e5e5e5;
  display: inline-block;
  height: 447px;
  width: 827px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-btn {
    max-width: 328px;
    width: 90%;
    height: 178px;
  }
}
.contact-btn .contact-btn__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.contact-btn .contact-btn__content p {
  font-size: 80px;
  color: #ffffff;
  opacity: 0.3;
  line-height: 0.6;
}
@media screen and (max-width: 767px) {
  .contact-btn .contact-btn__content p {
    font-size: 31px;
  }
}
.contact-btn .contact-btn__content h2 {
  font-size: 80px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .contact-btn .contact-btn__content h2 {
    font-size: 31px;
  }
}

/*================================
our-works__top
================================*/
.our-works__top {
  margin-top: 168px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .our-works__top {
    margin-top: 89px;
  }
}

.our-works__top__textarea1 {
  font-size: 40px;
  line-height: 53px;
}
@media screen and (max-width: 767px) {
  .our-works__top__textarea1 {
    font-size: 18px;
    line-height: 35px;
  }
}

.our-works__top__textarea2 {
  text-align: left;
  line-height: 43px;
  margin: 133px auto 119px;
  max-width: 1010px;
}
@media screen and (max-width: 767px) {
  .our-works__top__textarea2 {
    margin-top: 72px;
    line-height: 30px;
    margin-bottom: 81px;
  }
}

/*================================
our-works__content1
================================*/
/*================================
our-works__content3
================================*/
.our-works__content1,
.our-works__content3 {
  margin-bottom: 163px;
}
@media screen and (max-width: 767px) {
  .our-works__content1,
.our-works__content3 {
    margin-bottom: 63px;
  }
}
.our-works__content1 .section-title .title-nm,
.our-works__content3 .section-title .title-nm {
  width: 199px;
  height: 200px;
  margin-bottom: -40px;
}
@media screen and (max-width: 767px) {
  .our-works__content1 .section-title .title-nm,
.our-works__content3 .section-title .title-nm {
    width: 79px;
    height: 79px;
    margin-bottom: -18px;
  }
}
.our-works__content1 .section-title .title-text__wrapper,
.our-works__content3 .section-title .title-text__wrapper {
  max-width: 1084px;
  text-align: left;
  width: 100%;
  height: 352px;
  background-color: #d0d1f4;
  padding-left: 97px;
  padding-top: 27px;
  position: relative;
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .our-works__content1 .section-title .title-text__wrapper,
.our-works__content3 .section-title .title-text__wrapper {
    font-size: 18px;
    padding-left: 15px;
    height: 118px;
    padding-top: 0;
  }
}
.our-works__content1 .section-title .title-text__wrapper img,
.our-works__content3 .section-title .title-text__wrapper img {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .our-works__content1 .section-title .title-text__wrapper img,
.our-works__content3 .section-title .title-text__wrapper img {
    width: 130px;
    height: 57px;
  }
}
.our-works__content1 .section-title .title-text__wrapper .title-text1,
.our-works__content3 .section-title .title-text__wrapper .title-text1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 67px;
  border-bottom: 1px solid #707070;
  padding: 41px 0 29px 0;
}
@media screen and (max-width: 767px) {
  .our-works__content1 .section-title .title-text__wrapper .title-text1,
.our-works__content3 .section-title .title-text__wrapper .title-text1 {
    white-space: nowrap;
    padding: 19px 0 11px 0;
    line-height: 27px;
  }
}
.our-works__content1 .section-title .title-text__wrapper .title-text2,
.our-works__content3 .section-title .title-text__wrapper .title-text2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  line-height: 67px;
  border-bottom: 1px solid #707070;
  padding: 45px 0 32px 0;
}
@media screen and (max-width: 767px) {
  .our-works__content1 .section-title .title-text__wrapper .title-text2,
.our-works__content3 .section-title .title-text__wrapper .title-text2 {
    padding: 11px 0 11px 0;
    line-height: 27px;
    white-space: nowrap;
  }
}
.our-works__content1 .text-area,
.our-works__content3 .text-area {
  max-width: 743px;
  width: 100%;
  line-height: 40px;
  margin-top: 111px;
  margin-left: 97px;
  height: 384px;
}
@media screen and (max-width: 767px) {
  .our-works__content1 .text-area,
.our-works__content3 .text-area {
    line-height: 30px;
    margin: 0;
    margin-top: 52px;
    margin-bottom: 51px;
    height: auto;
  }
}
.our-works__content1 .content__wrapper,
.our-works__content3 .content__wrapper {
  display: flex;
}
@media screen and (max-width: 767px) {
  .our-works__content1 .content__wrapper,
.our-works__content3 .content__wrapper {
    flex-direction: column;
    align-items: flex-end;
  }
}
.our-works__content1 .content__wrapper .content__right,
.our-works__content3 .content__wrapper .content__right {
  display: flex;
  margin-top: -163px;
  margin-left: 144px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .our-works__content1 .content__wrapper .content__right,
.our-works__content3 .content__wrapper .content__right {
    margin-top: 51px;
    margin-left: 0;
  }
}
.our-works__content1 .content__wrapper .content__right img,
.our-works__content3 .content__wrapper .content__right img {
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .our-works__content1 .content__wrapper .content__right img,
.our-works__content3 .content__wrapper .content__right img {
    height: 250px;
    width: 107px;
  }
}

.our-works__content3 {
  margin-bottom: 356px;
}
@media screen and (max-width: 767px) {
  .our-works__content3 {
    margin-bottom: 91px;
  }
}

/*================================
our-works__content2
================================*/
.our-works__content2 {
  margin-bottom: 168px;
}
@media screen and (max-width: 767px) {
  .our-works__content2 {
    margin-bottom: 63px;
  }
}
.our-works__content2 .section-title .title-nm {
  width: 199px;
  height: 200px;
  margin-bottom: -40px;
}
@media screen and (max-width: 767px) {
  .our-works__content2 .section-title .title-nm {
    width: 79px;
    height: 79px;
    margin-bottom: -18px;
  }
}
.our-works__content2 .section-title .title-text__wrapper {
  max-width: 1084px;
  text-align: left;
  width: 100%;
  height: 352px;
  background-color: #ededed;
  padding-left: 97px;
  padding-top: 27px;
  position: relative;
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .our-works__content2 .section-title .title-text__wrapper {
    font-size: 18px;
    padding-left: 15px;
    height: 118px;
    padding-top: 0;
  }
}
.our-works__content2 .section-title .title-text__wrapper img {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .our-works__content2 .section-title .title-text__wrapper img {
    width: 130px;
    height: 57px;
  }
}
.our-works__content2 .section-title .title-text__wrapper .title-text1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 67px;
  border-bottom: 1px solid #707070;
  padding: 41px 0 29px 0;
}
@media screen and (max-width: 767px) {
  .our-works__content2 .section-title .title-text__wrapper .title-text1 {
    white-space: nowrap;
    padding: 19px 0 11px 0;
    line-height: 27px;
  }
}
.our-works__content2 .section-title .title-text__wrapper .title-text2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  line-height: 67px;
  border-bottom: 1px solid #707070;
  padding: 45px 0 32px 0;
}
@media screen and (max-width: 767px) {
  .our-works__content2 .section-title .title-text__wrapper .title-text2 {
    padding: 11px 0 11px 0;
    line-height: 27px;
    white-space: nowrap;
  }
}
.our-works__content2 .section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .our-works__content2 .section-title {
    align-items: flex-start;
  }
}
.our-works__content2 .section-title .title-text__wrapper {
  margin-right: 0;
  padding-left: 200px;
}
@media screen and (max-width: 767px) {
  .our-works__content2 .section-title .title-text__wrapper {
    padding-left: 15px;
  }
}
.our-works__content2 .text-area {
  width: 743px;
  width: 100%;
  line-height: 40px;
  margin-top: 111px;
  height: 384px;
  padding-left: 200px;
}
@media screen and (max-width: 767px) {
  .our-works__content2 .text-area {
    line-height: 30px;
    margin-top: 52px;
    height: auto;
    margin-bottom: 51px;
    padding-left: 0;
  }
}
.our-works__content2 .content__wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .our-works__content2 .content__wrapper {
    flex-direction: column-reverse;
  }
}
.our-works__content2 .content__wrapper .content__left {
  margin-left: calc(49% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 254px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .our-works__content2 .content__wrapper .content__left {
    margin: 0;
  }
}
.our-works__content2 .content__wrapper .content__right {
  width: 140%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .our-works__content2 .content__wrapper .content__right {
    margin: 0;
    width: 100%;
  }
}
.our-works__content2 .content__wrapper img {
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .our-works__content2 .content__wrapper img {
    width: 253px;
    display: flex;
  }
}

/*================================
our-works__content4
================================*/
.our-works__content4 {
  background: url(../img/our-works/content4__bg.png) no-repeat center center/cover;
  color: #ffffff;
  position: relative;
  padding-bottom: 250px;
}
@media screen and (max-width: 767px) {
  .our-works__content4 {
    padding-bottom: 169px;
  }
}
.our-works__content4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #111574;
  opacity: 0.85;
}
.our-works__content4 .container {
  position: relative;
}
.our-works__content4 .content4__top {
  padding-top: 192px;
  padding-bottom: 182px;
  text-align: center;
  max-width: 1006px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .our-works__content4 .content4__top {
    padding-top: 96px;
    padding-bottom: 59px;
  }
}
.our-works__content4 .content4__top .content4__top__textarea1 {
  font-size: 40px;
  line-height: 53px;
}
@media screen and (max-width: 767px) {
  .our-works__content4 .content4__top .content4__top__textarea1 {
    font-size: 18px;
    line-height: 35px;
  }
}
.our-works__content4 .content4__top .content4__top__textarea2 {
  margin-top: 155px;
  font-size: 20px;
  line-height: 50px;
}
@media screen and (max-width: 767px) {
  .our-works__content4 .content4__top .content4__top__textarea2 {
    margin-top: 72px;
    font-size: 16px;
    line-height: 30px;
    text-align: left;
  }
}

.content4__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content4__nav-list .content4__nav-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 458px;
  margin-bottom: 134px;
}
@media screen and (max-width: 767px) {
  .content4__nav-list .content4__nav-item {
    padding-bottom: 62px;
    margin: auto;
  }
}
.content4__nav-list .content4__nav-item img {
  width: 317px;
  margin-bottom: -49px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .content4__nav-list .content4__nav-item img {
    width: 192px;
  }
}
.content4__nav-list .content4__nav-item .nav-item__textarea {
  border: 1px solid #ffffff;
  height: 525px;
}
@media screen and (max-width: 767px) {
  .content4__nav-list .content4__nav-item .nav-item__textarea {
    height: auto;
  }
}
.content4__nav-list .content4__nav-item .nav-item__textarea .nav-item__title {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 44px;
  font-size: 35px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .content4__nav-list .content4__nav-item .nav-item__textarea .nav-item__title {
    font-size: 20px;
    margin: 63px 0 33px 0;
  }
}
.content4__nav-list .content4__nav-item .nav-item__textarea .nav-item__text {
  padding: 0 20px;
  margin-bottom: 18px;
  line-height: 40px;
  height: 261px;
}
@media screen and (max-width: 767px) {
  .content4__nav-list .content4__nav-item .nav-item__textarea .nav-item__text {
    height: auto;
    line-height: 30px;
    margin-bottom: 30px;
  }
}
.content4__nav-list .content4__nav-item .nav-item__textarea .nav-btn {
  display: block;
  color: #ffffff;
  width: 177px;
  height: 39px;
  font-size: 20px;
  position: relative;
  text-align: left;
  padding: 10px 20px 15px 20px;
  margin: 0 auto;
  margin-bottom: 57px;
}
@media screen and (max-width: 767px) {
  .content4__nav-list .content4__nav-item .nav-item__textarea .nav-btn {
    width: 108px;
    height: 21px;
    font-size: 14px;
    padding: 3px 12px 8px 10px;
  }
}
.content4__nav-list .content4__nav-item .nav-item__textarea .nav-btn .border {
  position: relative;
  width: 140px;
  border-bottom: 1px solid #ffffff;
  position: absolute;
  left: auto;
  bottom: 5px;
}
@media screen and (max-width: 767px) {
  .content4__nav-list .content4__nav-item .nav-item__textarea .nav-btn .border {
    width: 90px;
    bottom: 3px;
  }
}
.content4__nav-list .content4__nav-item .nav-item__textarea .nav-btn .border-right {
  position: absolute;
  bottom: -2px;
  right: 5px;
  height: 15px;
  border-right: 1px solid #ffffff;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .content4__nav-list .content4__nav-item .nav-item__textarea .nav-btn .border-right {
    height: 10px;
    right: 3px;
  }
}
@media screen and (max-width: 767px) {
  .content4__nav-list .content4__nav-item .nav-item__textarea .nav-btn {
    margin-bottom: 24px;
  }
}
.content4__nav-list .content4__nav-item .nav-item__textarea .nav-btn:hover {
  border-radius: 12px;
  background-color: #fff;
  display: block;
  color: #111574;
  width: 177px;
  height: 39px;
  font-size: 20px;
  position: relative;
  text-align: left;
  padding: 10px 20px 15px 20px;
}
@media screen and (max-width: 767px) {
  .content4__nav-list .content4__nav-item .nav-item__textarea .nav-btn:hover {
    width: 108px;
    height: 21px;
    font-size: 14px;
    padding: 3px 12px 8px 10px;
  }
}
.content4__nav-list .content4__nav-item .nav-item__textarea .nav-btn:hover .border {
  position: relative;
  width: 140px;
  border-bottom: 1px solid #111574;
  position: absolute;
  left: auto;
  bottom: 5px;
}
@media screen and (max-width: 767px) {
  .content4__nav-list .content4__nav-item .nav-item__textarea .nav-btn:hover .border {
    width: 90px;
    bottom: 3px;
  }
}
.content4__nav-list .content4__nav-item .nav-item__textarea .nav-btn:hover .border-right {
  position: absolute;
  bottom: -2px;
  right: 5px;
  height: 15px;
  border-right: 1px solid #111574;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .content4__nav-list .content4__nav-item .nav-item__textarea .nav-btn:hover .border-right {
    height: 10px;
    right: 3px;
  }
}

/*================================
our-works__content5
================================*/
.slide-img {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .slide-img {
    height: 189px;
  }
}

.slide-img2 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .slide-img2 {
    height: 189px;
  }
}

.swiper-content-title {
  margin-top: -39px;
  align-items: center;
  justify-content: center;
  background: #111574;
  color: #ffffff;
  font-size: 40px;
  display: flex;
  max-width: 562px;
  height: 126px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .swiper-content-title {
    font-size: 20px;
    max-width: 241px;
    height: 54px;
    margin-top: 0px;
  }
}

.our-works__content5 {
  margin-bottom: 508px;
}
@media screen and (max-width: 767px) {
  .our-works__content5 {
    margin-bottom: 138px;
  }
}
.our-works__content5 .container {
  max-width: 1502px;
}
.our-works__content5 .section__title {
  text-align: center;
  margin-bottom: 186px;
}
@media screen and (max-width: 767px) {
  .our-works__content5 .section__title {
    margin-bottom: 39px;
  }
}
.our-works__content5 .content5__img {
  /*アロー左*/
  /*ページネーション*/
  /*ページネーションマージン*/
  /*ページネーションactive時*/
  /*ページネーション位置*/
  display: flex;
  justify-content: center;
  justify-content: space-between;
}
.our-works__content5 .content5__img .swiper-slide {
  position: relative;
  max-width: 1502px;
  display: flex;
  flex-direction: column;
  /*スライダー*/
}
.our-works__content5 .content5__img .swiper-slide .slide-img-child {
  height: 627px;
  width: 49.5%;
}
@media screen and (max-width: 767px) {
  .our-works__content5 .content5__img .swiper-slide .slide-img-child {
    height: 189px;
  }
}
.our-works__content5 .content5__img .swiper-slide .slide-img-child2 {
  height: 627px;
}
@media screen and (max-width: 767px) {
  .our-works__content5 .content5__img .swiper-slide .slide-img-child2 {
    height: 189px;
  }
}
.our-works__content5 .content5__img .slide_1 {
  background: url(../img/our-works/content5__5.png) no-repeat center center/cover;
}
.our-works__content5 .content5__img .slide_2 {
  background: url(../img/our-works/content5__6.png) no-repeat center center/cover;
}
.our-works__content5 .content5__img .swiper-button-next {
  width: 45px;
  height: 39px;
  margin-top: -22.5px;
  right: -97px;
  margin-left: 30px;
  background: url(../img/our-works/arrow__right.png) no-repeat center center/contain;
}
.our-works__content5 .content5__img .swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .our-works__content5 .content5__img .swiper-button-next {
    right: 0;
    margin-top: 420px;
  }
}
.our-works__content5 .content5__img .swiper-button-prev {
  left: -97px;
  width: 45px;
  height: 39px;
  margin-top: -22.5px;
  background: url(../img/our-works/arrow__left.png) no-repeat center center/contain;
}
.our-works__content5 .content5__img .swiper-button-prev::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .our-works__content5 .content5__img .swiper-button-prev {
    left: 0;
    margin-top: 420px;
  }
}
.our-works__content5 .content5__img .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #c4c3c3;
}
@media screen and (max-width: 767px) {
  .our-works__content5 .content5__img .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}
.our-works__content5 .content5__img .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.our-works__content5 .content5__img .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-left: 18px;
  margin-right: 18px;
}
@media screen and (max-width: 767px) {
  .our-works__content5 .content5__img .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.our-works__content5 .content5__img .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.our-works__content5 .content5__img .swiper-pagination-bullet-active {
  background-color: #111574;
}
.our-works__content5 .content5__img .swiper-horizontal > .swiper-pagination-bullets,
.our-works__content5 .content5__img .swiper-pagination-bullets.swiper-pagination-horizontal,
.our-works__content5 .content5__img .swiper-pagination-custom,
.our-works__content5 .content5__img .swiper-pagination-fraction {
  bottom: -401px;
}
@media screen and (max-width: 767px) {
  .our-works__content5 .content5__img .swiper-horizontal > .swiper-pagination-bullets,
.our-works__content5 .content5__img .swiper-pagination-bullets.swiper-pagination-horizontal,
.our-works__content5 .content5__img .swiper-pagination-custom,
.our-works__content5 .content5__img .swiper-pagination-fraction {
    bottom: -100px;
  }
}
.our-works__content5 .content5__text {
  margin-top: 78px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .our-works__content5 .content5__text {
    margin-top: 57px;
    line-height: 30px;
  }
}

/*================================
top-message
================================*/
.top-message {
  margin-top: 159px;
}
@media screen and (max-width: 767px) {
  .top-message {
    margin-top: 0px;
  }
}
.top-message .section-title {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-message .section-title {
    text-align: center;
  }
}
.top-message .section-title .section-title-en {
  color: #e5e5e5;
  text-align: left;
  opacity: 0.44;
  font-size: 120px;
  line-height: 159px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-message .section-title .section-title-en {
    font-size: 49px;
  }
}
.top-message .section-title .section-title-ja {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 99px;
  background-color: #111574;
  font-size: 30px;
  color: #ffffff;
  width: 183px;
  height: 60px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-message .section-title .section-title-ja {
    font-size: 18px;
    width: 104px;
    height: 39px;
  }
}
.top-message .top-message__wrapper {
  display: flex;
  width: 100%;
  margin-bottom: 204px;
}
@media screen and (max-width: 767px) {
  .top-message .top-message__wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .top-message .top-message__wrapper .top-message__right {
    width: 316px;
    height: 309px;
    margin-top: -500px;
    margin-left: -15px;
  }
}
.top-message .top-message__wrapper .top-message__left {
  margin-right: 138px;
}
@media screen and (max-width: 767px) {
  .top-message .top-message__wrapper .top-message__left {
    margin: 0;
  }
}
.top-message .top-message__wrapper .top-message__left .message-title {
  margin-top: 99px;
  font-size: 37px;
  margin-bottom: 105px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-message .top-message__wrapper .top-message__left .message-title {
    margin-top: 49px;
    font-size: 20px;
    margin-bottom: 41px;
  }
}
.top-message .top-message__wrapper .top-message__left p {
  max-width: 861px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .top-message .top-message__wrapper .top-message__left p {
    line-height: 30px;
  }
}
.top-message .top-message__wrapper .top-message__left .top-name {
  margin-top: 96px;
  font-size: 27px;
  text-align: right;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-message .top-message__wrapper .top-message__left .top-name {
    font-size: 18px;
    margin-top: 530px;
  }
}

.top-message-design {
  height: 147px;
  background: url(../img/top/footer_design.png) no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .top-message-design {
    background: url(../img/company/top__message__design.png) no-repeat center bottom/cover;
    height: 90px;
  }
}

/*================================
our-vision
================================*/
.our-vision {
  background: url(../img/company/ourvision-bg.png) no-repeat center bottom/cover;
  color: #ffffff;
  text-align: center;
  padding-top: 194px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .our-vision {
    padding-top: 74px;
  }
}
.our-vision::before {
  z-index: 0;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #111574;
  opacity: 0.85;
}
.our-vision .container {
  position: relative;
}
.our-vision .our-vision__catch {
  font-size: 44px;
  line-height: 70px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .our-vision .our-vision__catch {
    font-size: 18px;
    line-height: 35px;
  }
}
.our-vision .section-title {
  margin-top: 205px;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .our-vision .section-title {
    margin-top: 68px;
  }
}
@media screen and (max-width: 767px) {
  .our-vision .section-title {
    text-align: center;
  }
}
.our-vision .section-title .section-title-en {
  color: #e5e5e5;
  text-align: left;
  opacity: 0.44;
  font-size: 120px;
  line-height: 159px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .our-vision .section-title .section-title-en {
    font-size: 49px;
  }
}
.our-vision .section-title .section-title-ja {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 99px;
  background-color: #ffffff;
  font-size: 30px;
  color: #111574;
  width: 183px;
  height: 60px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .our-vision .section-title .section-title-ja {
    font-size: 18px;
    width: 104px;
    height: 39px;
  }
}
.our-vision .section-title .section-title-en {
  opacity: 0.26;
}
.our-vision ul {
  margin-top: 31px;
  padding-bottom: 253px;
}
@media screen and (max-width: 767px) {
  .our-vision ul {
    padding-bottom: 75px;
  }
}
.our-vision li {
  display: flex;
  align-items: center;
  border-bottom: 0.5px solid #ffffff;
  text-align: left;
  padding: 70px 0;
  max-width: 1378px;
  margin: auto;
}
.our-vision li:last-child {
  border: none;
}
@media screen and (max-width: 767px) {
  .our-vision li {
    padding: 45px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.our-vision li .our-vision__left {
  display: flex;
  align-items: center;
}
.our-vision li .our-vision__nm {
  font-size: 83px;
  opacity: 0.37;
  font-family: "ヒラギノ角ゴ ProN";
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .our-vision li .our-vision__nm {
    font-size: 37px;
  }
}
.our-vision li .our-vision__title {
  font-size: 46px;
  margin-left: 64px;
  white-space: nowrap;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .our-vision li .our-vision__title {
    font-size: 20px;
    margin-left: 29px;
  }
}
.our-vision li .our-vision__content {
  line-height: 40px;
  margin-left: 169px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .our-vision li .our-vision__content {
    margin-top: 29px;
    line-height: 30px;
    margin-left: 72px;
  }
}

/*================================
company
================================*/
.company {
  padding-top: 91px;
}
@media screen and (max-width: 767px) {
  .company {
    padding-top: 51px;
  }
}
.company .section-title {
  position: relative;
}
@media screen and (max-width: 767px) {
  .company .section-title {
    text-align: center;
  }
}
.company .section-title .section-title-en {
  color: #e5e5e5;
  text-align: left;
  opacity: 0.44;
  font-size: 120px;
  line-height: 159px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .company .section-title .section-title-en {
    font-size: 49px;
  }
}
.company .section-title .section-title-ja {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 99px;
  background-color: #111574;
  font-size: 30px;
  color: #ffffff;
  width: 183px;
  height: 60px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .company .section-title .section-title-ja {
    font-size: 18px;
    width: 104px;
    height: 39px;
  }
}
.company .company__wrapper {
  margin-top: 110px;
  max-width: 1545px;
}
@media screen and (max-width: 767px) {
  .company .company__wrapper {
    margin-top: 86px;
    padding-bottom: 100px;
  }
}
.company .company__wrapper .company-about {
  margin-bottom: 400px;
}
@media screen and (max-width: 767px) {
  .company .company__wrapper .company-about {
    margin-bottom: 0;
  }
}
.company .company__wrapper .company-item {
  border-bottom: 1px solid #a8a8a8;
}
.company .company__wrapper .company-item:last-child {
  border: none;
}

/*================================
history
================================*/
.history .section-title {
  position: relative;
}
@media screen and (max-width: 767px) {
  .history .section-title {
    text-align: center;
  }
}
.history .section-title .section-title-en {
  color: #e5e5e5;
  text-align: left;
  opacity: 0.44;
  font-size: 120px;
  line-height: 159px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .history .section-title .section-title-en {
    font-size: 49px;
  }
}
.history .section-title .section-title-ja {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 99px;
  background-color: #111574;
  font-size: 30px;
  color: #ffffff;
  width: 183px;
  height: 60px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .history .section-title .section-title-ja {
    font-size: 18px;
    width: 104px;
    height: 39px;
  }
}
.history .history__wrapper {
  display: flex;
  justify-content: center;
}
.history .history__wrapper table {
  margin-top: 135px;
  margin-bottom: 243px;
  text-align: left;
  position: relative;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .history .history__wrapper table {
    margin-top: 0;
    margin-left: auto;
    width: 95%;
    margin-bottom: 162px;
  }
}
.history .history__wrapper th,
.history .history__wrapper td {
  padding: 38px 0;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .history .history__wrapper tr {
    display: flex;
    flex-direction: column;
  }
}
.history .history__wrapper th {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 25px;
  padding-left: 77px;
}
@media screen and (max-width: 767px) {
  .history .history__wrapper th {
    font-size: 18px;
    padding-left: 57px;
    padding-bottom: 20px;
  }
}
.history .history__wrapper td {
  padding-left: 121px;
  margin-left: 121px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .history .history__wrapper td {
    padding-left: 57px;
    padding-top: 0;
    margin-left: 0;
    line-height: 30px;
    font-weight: 400;
  }
}
.history .history__wrapper .history__right {
  margin-left: 181px;
}
.history .history__wrapper .history__right img {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .history .history__wrapper .history__right {
    display: none;
  }
}

.border {
  width: 50px;
  border-bottom: 2px solid #111574;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  .border {
    width: 30px;
    left: -10px;
  }
}

.circle {
  position: absolute;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background-color: #111574;
  display: inline-block;
  left: -19px;
}
@media screen and (max-width: 767px) {
  .circle {
    left: -25px;
  }
}

.border2 {
  border-left: 5px solid #111574;
  height: auto;
  margin-top: 200px;
  margin-bottom: 308px;
}
@media screen and (max-width: 767px) {
  .border2 {
    margin-top: 45px;
    margin-bottom: 277px;
    margin-left: auto;
  }
}

/*================================
product
================================*/
.product__navlist2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 112px;
  margin-bottom: 186px;
}
@media screen and (max-width: 767px) {
  .product__navlist2 {
    margin-top: 49px;
    margin-bottom: 69px;
  }
}

.product-nav-item {
  display: flex;
  background-color: #111574;
  justify-content: center;
  align-items: center;
  max-width: 452px;
  height: 88px;
  width: 100%;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  margin-top: 23px;
}
@media screen and (max-width: 767px) {
  .product-nav-item {
    margin: auto;
    margin-bottom: 30px;
    max-width: 258px;
    height: 50px;
    font-size: 17px;
  }
}
.product-nav-item:hover {
  color: #111574;
  background-color: white;
  border: 1px solid #d1d1d1;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.product-nav-item:nth-child(even) {
  background-color: #25295c;
}
.product-nav-item:nth-child(even):hover {
  color: #111574;
  background-color: white;
  border: 1px solid #d1d1d1;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

.product-about {
  text-align: center;
}
.product-about .product__title {
  text-align: center;
  padding: 26px 0;
  background-color: #111574;
  color: #ffffff;
  font-size: 37px;
  margin-bottom: 111px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .product-about .product__title {
    font-size: 20px;
    padding: 14px 0;
    margin-bottom: 52px;
  }
}
.product-about p {
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .product-about p {
    line-height: 30px;
    text-align: left;
  }
}
.product-about .product__item-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 222px;
}
@media screen and (min-width: 768px) {
  .product-about .product__item-wrapper::after {
    content: "";
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .product-about .product__item-wrapper {
    margin-bottom: 131px;
  }
}
.product-about .about__textarea2 {
  padding-bottom: 163px;
}
.product-about .about__textarea2 p {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .product-about .about__textarea2 p {
    font-size: 14px;
    line-height: 30px;
  }
}
.product-about .about__textarea2 a {
  font-weight: 600;
  line-height: 62px;
  margin-top: 24px;
  color: #25295c;
}
@media screen and (max-width: 767px) {
  .product-about .about__textarea2 a {
    font-size: 14px;
  }
}
.product-about .about__textarea2 a:hover {
  opacity: 0.5;
}
.product-about .product__about-item {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 427px;
  width: 100%;
  height: 500px;
  margin-top: 90px;
}
.product-about .product__about-item h3 {
  position: absolute;
  top: 45%;
  left: 50%;
  font-size: 30px;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 325px;
  width: 100%;
  height: auto;
  background-color: #565769;
  color: #ffffff;
  border-radius: 30px;
  border: 3px solid #ffffff;
  padding: 12px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .product-about .product__about-item h3 {
    max-width: 236px;
  }
}
@media screen and (max-width: 767px) {
  .product-about .product__about-item h3 {
    top: 37%;
    font-size: 18px;
  }
}
.product-about .product__about-item p {
  text-align: left;
  border: 0.5px solid;
  height: 300px;
  padding: 73px 30px 0 30px;
}
@media screen and (max-width: 767px) {
  .product-about .product__about-item p {
    height: 400px;
    padding-top: 42px;
  }
}
.product-about .product__about-item p {
  text-align: left;
  border: 0.5px solid;
  color: #000;
  height: 300px;
  padding: 73px 30px 0 30px;
}
@media screen and (max-width: 767px) {
  .product-about .product__about-item p {
    height: 300px;
    padding-top: 42px;
  }
}
@media screen and (max-width: 767px) {
  .product-about .product__about-item {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 310px;
    width: 100%;
    height: 450px;
    margin: auto;
    margin-top: 54px;
  }
  .product-about .product__about-item h3 {
    position: absolute;
    top: 45%;
    left: 50%;
    font-size: 30px;
    transform: translate(-50%, -50%);
    text-align: center;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 325px;
    width: 100%;
    height: auto;
    background-color: #565769;
    color: #ffffff;
    border-radius: 30px;
    border: 3px solid #ffffff;
    padding: 12px;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about .product__about-item h3 {
    max-width: 236px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about .product__about-item h3 {
    top: 37%;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .product-about .product__about-item p {
    text-align: left;
    border: 0.5px solid;
    height: 300px;
    padding: 73px 30px 0 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about .product__about-item p {
    height: 400px;
    padding-top: 42px;
  }
}

.product-about2 {
  background-color: #ededed;
  text-align: center;
}
.product-about2 .about2-textarea {
  margin: auto;
  max-width: 985px;
  width: 100%;
  height: 185px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .product-about2 .about2-textarea {
    text-align: left;
    line-height: 30px;
    height: auto;
  }
}
.product-about2 .product__title {
  text-align: center;
  padding: 26px 0;
  background-color: #25295c;
  color: #ffffff;
  font-size: 37px;
  margin-bottom: 111px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .product-about2 .product__title {
    font-size: 20px;
    padding: 14px 0;
    margin-bottom: 52px;
  }
}
.product-about2 .product__item-wrapper {
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1242px;
  width: 100%;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .product-about2 .product__item-wrapper {
    margin-top: 54px;
  }
}
.product-about2 .product__item-wrapper .product__about-item {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 560px;
  width: 100%;
  height: 500px;
}
.product-about2 .product__item-wrapper .product__about-item h3 {
  position: absolute;
  top: 45%;
  left: 50%;
  font-size: 30px;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 325px;
  width: 100%;
  height: auto;
  background-color: #565769;
  color: #ffffff;
  border-radius: 30px;
  border: 3px solid #ffffff;
  padding: 12px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .product-about2 .product__item-wrapper .product__about-item h3 {
    max-width: 236px;
  }
}
@media screen and (max-width: 767px) {
  .product-about2 .product__item-wrapper .product__about-item h3 {
    top: 37%;
    font-size: 18px;
  }
}
.product-about2 .product__item-wrapper .product__about-item p {
  text-align: left;
  border: 0.5px solid;
  height: 300px;
  padding: 73px 30px 0 30px;
}
@media screen and (max-width: 767px) {
  .product-about2 .product__item-wrapper .product__about-item p {
    height: 400px;
    padding-top: 42px;
  }
}
@media screen and (max-width: 767px) {
  .product-about2 .product__item-wrapper .product__about-item {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 350px;
    width: 100%;
    height: 180px;
    margin: auto;
    margin-bottom: 100px;
  }
  .product-about2 .product__item-wrapper .product__about-item h3 {
    position: absolute;
    top: 45%;
    left: 50%;
    font-size: 30px;
    transform: translate(-50%, -50%);
    text-align: center;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 325px;
    width: 100%;
    height: auto;
    background-color: #565769;
    color: #ffffff;
    border-radius: 30px;
    border: 3px solid #ffffff;
    padding: 12px;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about2 .product__item-wrapper .product__about-item h3 {
    max-width: 236px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about2 .product__item-wrapper .product__about-item h3 {
    top: 37%;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .product-about2 .product__item-wrapper .product__about-item p {
    text-align: left;
    border: 0.5px solid;
    height: 300px;
    padding: 73px 30px 0 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about2 .product__item-wrapper .product__about-item p {
    height: 400px;
    padding-top: 42px;
  }
}
.product-about2 .product__item-wrapper .product__about-item h3 {
  top: 286px;
  max-width: 544px;
}
@media screen and (max-width: 767px) {
  .product-about2 .product__item-wrapper .product__about-item h3 {
    top: 186px;
  }
}
.product-about2 .product__item-wrapper .product__about-item p {
  border: none;
  padding-top: 40px;
  color: #000;
}
.product-about2 .about2__textarea2 {
  padding-bottom: 163px;
}
.product-about2 .about2__textarea2 p {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .product-about2 .about2__textarea2 p {
    font-size: 14px;
    line-height: 45px;
  }
}
.product-about2 .about2__textarea2 a {
  font-weight: 600;
  line-height: 62px;
  margin-top: 24px;
  color: #25295c;
}
@media screen and (max-width: 767px) {
  .product-about2 .about2__textarea2 a {
    font-size: 14px;
  }
}
.product-about2 .about2__textarea2 a:hover {
  opacity: 0.5;
}

.product-about3 .product__title {
  text-align: center;
  padding: 26px 0;
  background-color: #111574;
  color: #ffffff;
  font-size: 37px;
  margin-bottom: 111px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .product-about3 .product__title {
    font-size: 20px;
    padding: 14px 0;
    margin-bottom: 52px;
  }
}
.product-about3 .product__item-wrapper {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1226px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .product-about3 .product__item-wrapper {
    display: block;
  }
}
.product-about3 .product__item-wrapper .product__about-item {
  margin-bottom: 113px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 560px;
  width: 100%;
  height: 634px;
}
.product-about3 .product__item-wrapper .product__about-item h3 {
  position: absolute;
  top: 45%;
  left: 50%;
  font-size: 30px;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 325px;
  width: 100%;
  height: auto;
  background-color: #565769;
  color: #ffffff;
  border-radius: 30px;
  border: 3px solid #ffffff;
  padding: 12px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .product-about3 .product__item-wrapper .product__about-item h3 {
    max-width: 236px;
  }
}
@media screen and (max-width: 767px) {
  .product-about3 .product__item-wrapper .product__about-item h3 {
    top: 37%;
    font-size: 18px;
  }
}
.product-about3 .product__item-wrapper .product__about-item p {
  text-align: left;
  border: 0.5px solid;
  height: 300px;
  padding: 73px 30px 0 30px;
}
@media screen and (max-width: 767px) {
  .product-about3 .product__item-wrapper .product__about-item p {
    height: 400px;
    padding-top: 42px;
  }
}
@media screen and (max-width: 767px) {
  .product-about3 .product__item-wrapper .product__about-item {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 349px;
    width: 100%;
    height: 400px;
    margin: auto;
    margin-bottom: 50px;
  }
  .product-about3 .product__item-wrapper .product__about-item h3 {
    position: absolute;
    top: 45%;
    left: 50%;
    font-size: 30px;
    transform: translate(-50%, -50%);
    text-align: center;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 325px;
    width: 100%;
    height: auto;
    background-color: #565769;
    color: #ffffff;
    border-radius: 30px;
    border: 3px solid #ffffff;
    padding: 12px;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about3 .product__item-wrapper .product__about-item h3 {
    max-width: 236px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about3 .product__item-wrapper .product__about-item h3 {
    top: 37%;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .product-about3 .product__item-wrapper .product__about-item p {
    text-align: left;
    border: 0.5px solid;
    height: 300px;
    padding: 73px 30px 0 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about3 .product__item-wrapper .product__about-item p {
    height: 400px;
    padding-top: 42px;
  }
}
@media screen and (max-width: 767px) {
  .product-about3 .product__item-wrapper .product__about-item img {
    width: 331px;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .product-about3 .product__item-wrapper .product__about-item:first-child {
    margin-bottom: 121px;
  }
}
.product-about3 .product__item-wrapper .product__about-item h3 {
  top: 286px;
  max-width: 544px;
}
@media screen and (max-width: 767px) {
  .product-about3 .product__item-wrapper .product__about-item h3 {
    top: 166px;
  }
}
.product-about3 .product__item-wrapper .product__about-item p {
  line-height: 40px;
  text-align: left;
  height: 338px;
  padding: 50px 35px;
}
@media screen and (max-width: 767px) {
  .product-about3 .product__item-wrapper .product__about-item p {
    padding: 39px 18px 28px;
    height: 200px;
    height: auto;
    line-height: 30px;
  }
}

.product-about4 {
  text-align: center;
  background-color: #ededed;
  padding-bottom: 260px;
}
@media screen and (max-width: 767px) {
  .product-about4 {
    padding-bottom: 142px;
  }
}
.product-about4 .product__title {
  text-align: center;
  padding: 26px 0;
  background-color: #25295c;
  color: #ffffff;
  font-size: 37px;
  margin-bottom: 111px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .product-about4 .product__title {
    font-size: 20px;
    padding: 14px 0;
    margin-bottom: 52px;
  }
}
.product-about4 p {
  line-height: 40px;
  max-width: 1087px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .product-about4 p {
    line-height: 30px;
    text-align: left;
  }
}
.product-about4 .product__item-wrapper {
  margin-top: 144px;
  margin-bottom: 92px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .product-about4 .product__item-wrapper {
    flex-wrap: wrap;
    margin-top: 80px;
  }
  .product-about4 .product__item-wrapper div {
    width: 50%;
    padding: 5px;
  }
  .product-about4 .product__item-wrapper p {
    font-size: 14px;
  }
}

.about4__textarea p {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about4__textarea p {
    font-size: 14px;
    line-height: 45px;
  }
}
.about4__textarea a {
  font-weight: 600;
  line-height: 62px;
  margin-top: 24px;
  color: #25295c;
}
@media screen and (max-width: 767px) {
  .about4__textarea a {
    font-size: 14px;
  }
}
.about4__textarea a:hover {
  opacity: 0.5;
}

.product-about5 {
  text-align: center;
}
.product-about5 .product__title {
  text-align: center;
  padding: 26px 0;
  background-color: #111574;
  color: #ffffff;
  font-size: 37px;
  margin-bottom: 111px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .product-about5 .product__title {
    font-size: 20px;
    padding: 14px 0;
    margin-bottom: 52px;
  }
}
.product-about5 .textarea_1 {
  margin: auto;
  line-height: 40px;
  max-width: 1087px;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .product-about5 .textarea_1 {
    line-height: 30px;
    margin-bottom: 40px;
    text-align: left;
  }
}
.product-about5 .textarea__2 {
  margin-bottom: 116px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .product-about5 .textarea__2 {
    margin-bottom: 81px;
    text-align: left;
    line-height: 30px;
  }
}
.product-about5 .product__item-wrapper {
  margin: auto;
  max-width: 1522px;
  justify-content: space-between;
  display: flex;
  margin-bottom: 148px;
}
@media screen and (max-width: 767px) {
  .product-about5 .product__item-wrapper {
    flex-wrap: wrap;
    max-width: 310px;
    margin-bottom: 65px;
  }
  .product-about5 .product__item-wrapper div {
    padding-bottom: 25px;
  }
}
.product-about5 .product__item-wrapper2 {
  margin: auto;
  max-width: 1522px;
  width: 100%;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .product-about5 .product__item-wrapper2 {
    margin-bottom: 155px;
  }
}
.product-about5 .product__item-wrapper2 .product__about-item {
  margin-bottom: 94px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 427px;
  width: 100%;
  height: 271px;
}
.product-about5 .product__item-wrapper2 .product__about-item h3 {
  position: absolute;
  top: 45%;
  left: 50%;
  font-size: 30px;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 325px;
  width: 100%;
  height: auto;
  background-color: #565769;
  color: #ffffff;
  border-radius: 30px;
  border: 3px solid #ffffff;
  padding: 12px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .product-about5 .product__item-wrapper2 .product__about-item h3 {
    max-width: 236px;
  }
}
@media screen and (max-width: 767px) {
  .product-about5 .product__item-wrapper2 .product__about-item h3 {
    top: 37%;
    font-size: 18px;
  }
}
.product-about5 .product__item-wrapper2 .product__about-item p {
  text-align: left;
  border: 0.5px solid;
  height: 300px;
  padding: 73px 30px 0 30px;
}
@media screen and (max-width: 767px) {
  .product-about5 .product__item-wrapper2 .product__about-item p {
    height: 400px;
    padding-top: 42px;
  }
}
@media screen and (max-width: 767px) {
  .product-about5 .product__item-wrapper2 .product__about-item {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 305px;
    width: 100%;
    height: 161px;
    margin: auto;
    margin-bottom: 76px;
  }
  .product-about5 .product__item-wrapper2 .product__about-item h3 {
    position: absolute;
    top: 45%;
    left: 50%;
    font-size: 30px;
    transform: translate(-50%, -50%);
    text-align: center;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 325px;
    width: 100%;
    height: auto;
    background-color: #565769;
    color: #ffffff;
    border-radius: 30px;
    border: 3px solid #ffffff;
    padding: 12px;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about5 .product__item-wrapper2 .product__about-item h3 {
    max-width: 236px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about5 .product__item-wrapper2 .product__about-item h3 {
    top: 37%;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .product-about5 .product__item-wrapper2 .product__about-item p {
    text-align: left;
    border: 0.5px solid;
    height: 300px;
    padding: 73px 30px 0 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about5 .product__item-wrapper2 .product__about-item p {
    height: 400px;
    padding-top: 42px;
  }
}
.product-about5 .product__item-wrapper2 .product__about-item h3 {
  top: 240px;
}
@media screen and (max-width: 767px) {
  .product-about5 .product__item-wrapper2 .product__about-item h3 {
    top: 160px;
  }
}

.product-about6 {
  background-color: #ededed;
  padding-bottom: 211px;
}
.product-about6 .product__title {
  text-align: center;
  padding: 26px 0;
  background-color: #25295c;
  color: #ffffff;
  font-size: 37px;
  margin-bottom: 111px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .product-about6 .product__title {
    font-size: 20px;
    padding: 14px 0;
    margin-bottom: 52px;
  }
}
.product-about6 p {
  margin: auto;
  line-height: 40px;
  text-align: center;
  margin-bottom: 116px;
}
@media screen and (max-width: 767px) {
  .product-about6 p {
    line-height: 30px;
    margin-bottom: 81px;
    text-align: left;
  }
}
.product-about6 .product__item-wrapper {
  max-width: 1522px;
  margin: auto;
  justify-content: space-between;
  display: flex;
}
@media screen and (max-width: 767px) {
  .product-about6 .product__item-wrapper {
    flex-wrap: wrap;
    margin-top: 81px;
    margin-bottom: 93px;
  }
}
.product-about6 .product__item-wrapper .product__about-item {
  margin-bottom: 114px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 427px;
  width: 100%;
  height: 271px;
}
.product-about6 .product__item-wrapper .product__about-item h3 {
  position: absolute;
  top: 45%;
  left: 50%;
  font-size: 30px;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 325px;
  width: 100%;
  height: auto;
  background-color: #565769;
  color: #ffffff;
  border-radius: 30px;
  border: 3px solid #ffffff;
  padding: 12px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .product-about6 .product__item-wrapper .product__about-item h3 {
    max-width: 236px;
  }
}
@media screen and (max-width: 767px) {
  .product-about6 .product__item-wrapper .product__about-item h3 {
    top: 37%;
    font-size: 18px;
  }
}
.product-about6 .product__item-wrapper .product__about-item p {
  text-align: left;
  border: 0.5px solid;
  height: 300px;
  padding: 73px 30px 0 30px;
}
@media screen and (max-width: 767px) {
  .product-about6 .product__item-wrapper .product__about-item p {
    height: 400px;
    padding-top: 42px;
  }
}
@media screen and (max-width: 767px) {
  .product-about6 .product__item-wrapper .product__about-item {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 305px;
    width: 100%;
    height: 162px;
    margin: auto;
    margin-bottom: 70px;
  }
  .product-about6 .product__item-wrapper .product__about-item h3 {
    position: absolute;
    top: 45%;
    left: 50%;
    font-size: 30px;
    transform: translate(-50%, -50%);
    text-align: center;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 325px;
    width: 100%;
    height: auto;
    background-color: #565769;
    color: #ffffff;
    border-radius: 30px;
    border: 3px solid #ffffff;
    padding: 12px;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about6 .product__item-wrapper .product__about-item h3 {
    max-width: 236px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about6 .product__item-wrapper .product__about-item h3 {
    top: 37%;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .product-about6 .product__item-wrapper .product__about-item p {
    text-align: left;
    border: 0.5px solid;
    height: 300px;
    padding: 73px 30px 0 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .product-about6 .product__item-wrapper .product__about-item p {
    height: 400px;
    padding-top: 42px;
  }
}
.product-about6 .product__item-wrapper .product__about-item h3 {
  top: 240px;
}
@media screen and (max-width: 767px) {
  .product-about6 .product__item-wrapper .product__about-item h3 {
    top: 160px;
  }
}
.product-about6 .product__item-wrapper2 {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1030px;
}
.product-about6 .product__item-wrapper2 img {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .product-about6 .product__item-wrapper2 img {
    max-width: 255px;
    margin: auto;
    margin-bottom: 50px;
  }
}

/*ここから採用情報*/
/*================================
recruit__message
================================*/
/*ここから斜め背景*/
.block1 {
  position: absolute;
  width: 100%;
  height: 2367px;
  background-color: #caccf4;
  -webkit-clip-path: polygon(70vw 0, 100% 0, 100% 100%, 0 100%, 0% 30vw);
  clip-path: polygon(70vw 0, 100% 0, 100% 100%, 0 100%, 0% 30vw);
}
@media screen and (max-width: 767px) {
  .block1 {
    -webkit-clip-path: polygon(90vw 0, 100% 0, 100% 100%, 0 100%, 0% 45vw);
    clip-path: polygon(90vw 0, 100% 0, 100% 100%, 0 100%, 0% 45vw);
  }
}

.bgi__1 {
  position: absolute;
  right: 0;
  top: 1653px;
}
@media screen and (max-width: 767px) {
  .bgi__1 {
    top: 1131px;
  }
}

.bgi__2 {
  position: absolute;
  left: 0;
  top: 2717px;
}
@media screen and (max-width: 767px) {
  .bgi__2 {
    top: 2040px;
  }
}

.block2 {
  position: absolute;
  top: 1479px;
  width: 100%;
  height: 2544px;
  background-color: #111574;
  -webkit-clip-path: polygon(0 0, 100% 40vw, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 40vw, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .block2 {
    top: 1220px;
    -webkit-clip-path: polygon(0 0, 100% 30vw, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 30vw, 100% 100%, 0% 100%);
  }
}

.block3 {
  position: absolute;
  width: 100%;
  top: 2647px;
  height: 4017px;
  background-color: #ffffff;
  -webkit-clip-path: polygon(0 40vw, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 40vw, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .block3 {
    top: 2150px;
  }
}

.block4 {
  position: absolute;
  width: 100%;
  top: 5862px;
  height: 2544px;
  background-color: #ffffff;
  -webkit-clip-path: polygon(0 2vw, 100% 40vw, 100% 100%, 0% 100%);
  clip-path: polygon(0 2vw, 100% 40vw, 100% 100%, 0% 100%);
  background: url(../img/recruit/bgi__3.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .block4 {
    top: 6080px;
  }
}

.bgi__3 {
  position: absolute;
  left: 0;
  top: 7618px;
}
@media screen and (max-width: 767px) {
  .bgi__3 {
    top: 7795px;
  }
}

.block5 {
  position: absolute;
  width: 100%;
  top: 7540px;
  height: 3491px;
  background-color: #dcddf8;
  -webkit-clip-path: polygon(0 35vw, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 35vw, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .block5 {
    top: 7985px;
  }
}

.bgi__4 {
  position: absolute;
  right: 0;
  top: 10247px;
}
@media screen and (max-width: 767px) {
  .bgi__4 {
    top: 10700px;
  }
}

.block6 {
  position: absolute;
  top: 10000px;
  width: 100%;
  height: 4410px;
  background-color: #ffffff;
  -webkit-clip-path: polygon(0 0, 100% 40vw, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 40vw, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .block6 {
    top: 10800px;
  }
}

.bgi__5 {
  position: absolute;
  left: 0;
  top: 13475px;
}
@media screen and (max-width: 767px) {
  .bgi__5 {
    top: 16110px;
  }
}

.block7 {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3601px;
  background-color: #dcddf8;
  -webkit-clip-path: polygon(0 30vw, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 30vw, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .block7 {
    height: 3200px;
    -webkit-clip-path: polygon(0 30vw, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 40vw, 100% 0, 100% 100%, 0% 100%);
  }
}

/*ここまで斜め背景*/
.recruit__message {
  text-align: center;
  padding-top: 57px;
  padding-bottom: 300px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit__message {
    padding-bottom: 184px;
    padding-top: 0px;
  }
}
.recruit__message .section-title-message {
  padding-top: 26px;
}

.container {
  position: relative;
}

.section-title {
  text-align: center;
}
.section-title .section-title__en {
  font-weight: 600;
  color: #e5e5e5;
  opacity: 0.44;
  font-size: 120px;
  line-height: 159px;
  margin-right: 65px;
}
@media screen and (max-width: 767px) {
  .section-title .section-title__en {
    line-height: 67px;
    margin: 0;
    font-size: 45px;
  }
}
.section-title .section-title__ja {
  font-weight: 600;
  margin-top: -35px;
  font-size: 55px;
  color: #111574;
}
@media screen and (max-width: 767px) {
  .section-title .section-title__ja {
    font-size: 25px;
    margin-top: 0px;
  }
}

.message__textarea1 {
  margin-top: 102px;
  font-size: 37px;
  margin-bottom: 119px;
  line-height: 62px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .message__textarea1 {
    font-size: 20px;
    line-height: 40px;
    margin-top: 58px;
    margin-bottom: 0;
  }
}

.message__textarea2 {
  margin: 0 auto;
  max-width: 1095px;
  width: 100%;
  padding: 5px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .message__textarea2 {
    line-height: 30px;
    margin-top: 58px;
  }
}

.loop__wrapper {
  width: 99vw;
  overflow: hidden;
}

.loop-img {
  position: relative;
  width: 300vw;
  display: flex;
  margin: 0 auto;
  margin-top: 205px;
}
@media screen and (max-width: 767px) {
  .loop-img {
    margin-top: 59px;
    margin-left: 0;
    width: 600vw;
  }
}
.loop-img ul {
  -webkit-animation: loop-list 50s linear infinite;
  animation: loop-list 50s linear infinite;
  display: flex;
  max-height: 574px;
}
.loop-img ul li {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .loop-img ul li {
    padding: 0 6px;
  }
}

@-webkit-keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.loop02:hover .loop02__box {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

/*================================
recruit-vision
================================*/
.recruit-vision {
  padding-bottom: 481px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit-vision {
    padding-bottom: 225px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-vision .section-title {
    margin-bottom: 35px;
  }
}
.recruit-vision .section-title__ja {
  color: #ffffff;
  margin-bottom: 141px;
}
@media screen and (max-width: 767px) {
  .recruit-vision .section-title__ja {
    margin-bottom: 0px;
  }
}
.recruit-vision ul {
  max-width: 1195px;
  margin: auto;
}
.recruit-vision ul li {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  padding: 40px 0px 29px 0;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .recruit-vision ul li {
    font-size: 18px;
    padding: 35px;
  }
}
.recruit-vision ul li:last-child {
  border: none;
}

/*================================
recruit-person
================================*/
.recruit-person ul {
  margin-top: 215px;
  display: flex;
  margin-bottom: 205px;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .recruit-person ul {
    flex-direction: column;
    margin-bottom: 28px;
    margin-top: 101px;
  }
}
.recruit-person ul .nm {
  position: absolute;
  z-index: 5;
  width: 88px;
  height: 88px;
  font-size: 58px;
  background-color: #005dab;
  rotate: 45deg;
  top: -79px;
  left: 20px;
}
@media screen and (max-width: 767px) {
  .recruit-person ul .nm {
    width: 55px;
    height: 55px;
    top: -27px;
  }
}
.recruit-person ul .nm p {
  color: #ffffff;
  rotate: -45deg;
  padding-left: 22px;
  padding-top: 15px;
}
@media screen and (max-width: 767px) {
  .recruit-person ul .nm p {
    padding-top: 0px;
    padding-left: 13px;
  }
}
.recruit-person ul li {
  position: relative;
  padding: 28px;
  border: 1.75px solid #111574;
}
@media screen and (max-width: 767px) {
  .recruit-person ul li {
    height: auto;
    margin-bottom: 96px;
  }
}
.recruit-person ul li .content__title {
  font-weight: 600;
  margin-top: 30px;
  text-align: center;
  font-size: 37px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .recruit-person ul li .content__title {
    font-size: 20px;
    margin-top: 17px;
  }
}
.recruit-person ul li .content__text {
  line-height: 40px;
  max-width: 405px;
  height: 155px;
  width: 100%;
  margin-top: 69px;
}
@media screen and (max-width: 767px) {
  .recruit-person ul li .content__text {
    height: auto;
    margin: auto;
    margin-top: 30px;
  }
}
.recruit-person ul li .layer {
  position: absolute;
  width: 148px;
  height: 20px;
  padding: 10px;
  background-color: #ffffff;
  top: -2px;
  left: -2px;
}
@media screen and (max-width: 767px) {
  .recruit-person ul li .layer {
    width: 100px;
  }
}

/*================================
recruit-flow
================================*/
@media screen and (max-width: 767px) {
  .border-img {
    display: none;
  }
}
.flow-list {
  position: relative;
  display: flex;
  margin-bottom: 195px;
}
@media screen and (max-width: 767px) {
  .flow-list {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .flow-list .bgi {
    bottom: -70px;
    position: absolute;
    height: 100%;
    width: 50%;
    left: 50%;
    border-left: 3px solid #127ed8;
    opacity: 0.25;
    z-index: 2;
  }
}
.flow-list .flow-list__item {
  width: 380px;
  margin-right: 20px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .flow-list .flow-list__item {
    margin: auto;
    margin-top: 37px;
    width: inherit;
  }
}
.flow-list .flow-list__item .flow-list__nm img {
  margin-bottom: -16px;
}
.flow-list .flow-list__item .flow-list__textarea {
  background-color: #f0f0f0;
  margin-top: 22px;
}
.flow-list .flow-list__item .flow-list__textarea .flow-list__title {
  font-size: 28px;
  font-weight: 500;
}
.flow-list .flow-list__item .flow-list__textarea .flow-list__text {
  padding: 0 13px 102px 13px;
  font-size: 16px;
  line-height: 30px;
}

.item1 {
  margin-top: -81px;
}
.item1 .flow-list__nm {
  font-size: 100px;
  color: #ffffff;
  background-color: #79d3e3;
}
.item1 .flow-list__title {
  color: #60d8b5;
  padding: 46px 0 40px 10px;
}

.item2 {
  margin-top: -54px;
}
.item2 .flow-list__nm {
  font-size: 100px;
  color: #ffffff;
  background-color: #50b2de;
}
.item2 .flow-list__title {
  color: #30c2c6;
  padding: 46px 0 40px 10px;
}

.item3 {
  margin-top: -27px;
}
.item3 .flow-list__nm {
  font-size: 100px;
  color: #ffffff;
  background-color: #289cea;
}
.item3 .flow-list__title {
  color: #289cea;
  padding: 46px 0 40px 10px;
}

.item4 .flow-list__nm {
  font-size: 100px;
  color: #ffffff;
  background-color: #127ed8;
}
.item4 .flow-list__title {
  color: #127ed8;
  padding: 46px 0 40px 10px;
}

@media screen and (min-width: 768px) {
  .pass1 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pass1 {
    display: block;
    margin: auto;
    margin-top: -130px;
    padding-left: 5px;
  }
}
/*================================
recruit-point
================================*/
.recruit-point ul {
  margin-bottom: 270px;
  margin-top: 171px;
}
@media screen and (max-width: 767px) {
  .recruit-point ul {
    margin-top: 153px;
    margin-bottom: 146px;
  }
}
.recruit-point ul li {
  margin-bottom: 156px;
  position: relative;
  max-width: 1555px;
  width: 100%;
  height: 424px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .recruit-point ul li {
    height: auto;
    flex-direction: column;
    margin-bottom: 130px;
  }
}
.recruit-point ul li:nth-child(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .recruit-point ul li:nth-child(2) {
    flex-direction: column;
  }
}
.recruit-point ul li:nth-child(2) .content__textarea {
  margin-left: -89px;
}
@media screen and (max-width: 767px) {
  .recruit-point ul li:nth-child(2) .content__textarea {
    margin: auto;
  }
}
.recruit-point ul li:nth-child(2) img {
  z-index: 10;
}
.recruit-point ul li span {
  position: absolute;
  font-size: 170px;
  color: #f0f0f0;
  left: -85px;
  top: -145px;
}
@media screen and (max-width: 767px) {
  .recruit-point ul li span {
    font-size: 100px;
    left: 10px;
    top: -85px;
  }
}
.recruit-point ul li .itemnm-2 {
  left: auto;
  right: 45px;
}
@media screen and (max-width: 767px) {
  .recruit-point ul li .itemnm-2 {
    right: auto;
    left: 20px;
  }
}
.recruit-point ul li .content__textarea {
  transform: skewX(15.5deg);
  width: 100%;
  background: #f0f0f0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .recruit-point ul li .content__textarea {
    transform: skewX(0deg);
    padding: 20px;
  }
}
.recruit-point ul li .content__textarea .content__title {
  color: #111574;
  font-weight: 700;
  max-width: 354px;
  width: 100%;
  margin-top: 52px;
  margin-left: 86px;
  font-size: 30px;
  transform: skewX(-15.5deg);
  line-height: 50px;
}
@media screen and (max-width: 767px) {
  .recruit-point ul li .content__textarea .content__title {
    line-height: 43px;
    font-size: 20px;
    transform: skewX(0deg);
    margin: 0;
    margin-top: 30px;
  }
}
.recruit-point ul li .content__textarea .content__text {
  max-width: 735px;
  width: 100%;
  line-height: 30px;
  padding-right: 5px;
  padding-top: 46px;
  padding-left: 141px;
  transform: skewX(-15.5deg);
}
@media screen and (max-width: 767px) {
  .recruit-point ul li .content__textarea .content__text {
    transform: skewX(0deg);
    padding: 0;
    margin-top: 39px;
    margin-bottom: 171px;
  }
}
.recruit-point ul li img {
  margin-left: -59px;
}
@media screen and (max-width: 767px) {
  .recruit-point ul li img {
    margin: auto;
    margin-top: -150px;
    position: relative;
    z-index: 1;
  }
}

/*================================
recruit__voice
================================*/
.recruit-voice {
  margin-bottom: 618px;
}
@media screen and (max-width: 767px) {
  .recruit-voice {
    margin-bottom: 425px;
  }
}
.recruit-voice .section-title {
  margin-bottom: 113px;
}
@media screen and (max-width: 767px) {
  .recruit-voice .section-title {
    margin-bottom: 0;
  }
}
.recruit-voice .section-title .section-title__ja {
  color: #ffffff;
  position: relative;
}

/*スライダー*/
.swiper-box {
  width: 100%;
  position: relative;
  /*アロー右*/
  /*アロー左*/
  /*ページネーション*/
  /*ページネーションマージン*/
  /*ページネーションactive時*/
  /*ページネーション位置*/
  /*スライドコンテンツ*/
}
.swiper-box .swiper-button-next {
  width: 45px;
  height: 39px;
  margin-top: -22.5px;
  right: 86px;
  background: url(../img/recruit/arrow__next.png) no-repeat center center/contain;
}
.swiper-box .swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .swiper-box .swiper-button-next {
    display: none;
  }
}
.swiper-box .swiper-button-prev {
  left: 86px;
  width: 45px;
  height: 39px;
  margin-top: -22.5px;
  background: url(../img/recruit/arrow__prev.png) no-repeat center center/contain;
}
.swiper-box .swiper-button-prev::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .swiper-box .swiper-button-prev {
    display: none;
  }
}
.swiper-box .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #c4c3c3;
}
@media screen and (max-width: 767px) {
  .swiper-box .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}
.swiper-box .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-box .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-left: 18px;
  margin-right: 18px;
}
@media screen and (max-width: 767px) {
  .swiper-box .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-box .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.swiper-box .swiper-pagination-bullet-active {
  background-color: #9fe9ff;
}
.swiper-box .swiper-horizontal > .swiper-pagination-bullets,
.swiper-box .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-box .swiper-pagination-custom,
.swiper-box .swiper-pagination-fraction {
  bottom: -149px;
}
@media screen and (max-width: 767px) {
  .swiper-box .swiper-horizontal > .swiper-pagination-bullets,
.swiper-box .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-box .swiper-pagination-custom,
.swiper-box .swiper-pagination-fraction {
    bottom: -45px;
  }
}
.swiper-box .swiper-slide {
  width: 100%;
  height: auto;
  padding-top: 100px;
}
.swiper-box .voice__content {
  margin-top: 113px;
  max-width: 80%;
  background-color: #ffffff;
  padding: 30px 36px;
  border-radius: 60px;
  margin: auto;
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  .swiper-box .voice__content {
    padding: 20px;
    padding-bottom: 50px;
    max-width: 95%;
    margin: auto;
    margin-top: 67px;
    padding: 21px;
  }
  .swiper-box .voice__content .content__left {
    height: 271px;
    width: 271px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 250px;
  }
}
.swiper-box .comment {
  position: absolute;
  top: -37px;
  right: -17px;
  font-size: 30px;
  padding: 35px 80px 35px 80px;
  color: #ffffff;
  position: absolute;
  width: 841px;
  height: 181px;
  background: url(../img/recruit/fukidasi.png) no-repeat center center/cover;
}
.swiper-box .comment p {
  font-weight: 700;
  line-height: 50px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .swiper-box .comment p {
    line-height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-box .comment {
    background: url(../img/recruit/fukidasi2.png) no-repeat center center/90%;
    left: 0;
    top: -106px;
    padding: 10px 70px;
    max-width: 500px;
    width: auto;
    font-size: 20px;
    line-height: 43px;
  }
}
.swiper-box .content__right {
  max-width: 760px;
  margin: auto;
}
.swiper-box .content__right .person {
  display: flex;
  color: #111574;
  margin-top: 209px;
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .swiper-box .content__right .person {
    margin-top: 83px;
    flex-direction: column;
    text-align: center;
  }
}
.swiper-box .content__right .person .name {
  font-size: 34px;
  margin-right: 100px;
  font-weight: 700;
}
.swiper-box .content__right .person .name:first-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .swiper-box .content__right .person .name {
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
    font-size: 20px;
  }
}
.swiper-box .content__right .person div {
  display: flex;
  justify-content: space-around;
  font-size: 34px;
}
.swiper-box .content__right .person div p {
  font-weight: 700;
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .swiper-box .content__right .person div p {
    margin: 10px;
    font-size: 20px;
    white-space: nowrap;
  }
  .swiper-box .content__right .person div p p {
    width: 100px;
    margin: auto;
  }
}
.swiper-box .content__right .text {
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .swiper-box .content__right .text {
    margin: auto;
    margin-top: 380px;
    line-height: 30px;
  }
}

/*================================
recruit__info
================================*/
.recruit-info {
  background-color: #25295c;
  margin-bottom: 402px;
}
@media screen and (max-width: 767px) {
  .recruit-info {
    margin-bottom: 239px;
  }
}
.recruit-info .section-title {
  margin-bottom: 176px;
}
.recruit-info .section-title .section-title__en {
  color: #aaafd0;
}

.info__content {
  max-width: 1385px;
  margin: auto;
}
.info__content .content-title {
  font-weight: 600;
  text-align: center;
  font-size: 55px;
  color: #111574;
  margin-bottom: 54px;
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
}
.info__content .content-title::before, .info__content .content-title::after {
  background-color: #111574;
  content: "";
  flex-grow: 1;
  height: 0.5px;
}
.info__content .content-title::after {
  margin-left: 131px;
}
@media screen and (max-width: 767px) {
  .info__content .content-title::after {
    margin-left: 52px;
  }
}
.info__content .content-title::before {
  margin-right: 131px;
}
@media screen and (max-width: 767px) {
  .info__content .content-title::before {
    margin-right: 52px;
  }
}
@media screen and (max-width: 767px) {
  .info__content .content-title {
    font-size: 25px;
  }
}
.info__content table {
  margin: auto;
  width: 100%;
  background-color: #ffffff;
  border-radius: 25px;
}
.info__content table tr {
  border-bottom: 0.5px solid #707070;
  padding-right: 91px;
  margin: auto;
  max-width: 1305px;
  width: 90%;
  display: flex;
  align-items: center;
  height: auto;
}
.info__content table tr:last-child {
  border: none;
}
@media screen and (max-width: 767px) {
  .info__content table tr {
    flex-direction: column;
    padding-right: 0;
    margin-top: 36px;
  }
}
.info__content table tr th {
  font-weight: 500;
  font-size: 25px;
  white-space: nowrap;
  width: 172px;
  height: auto;
  padding: 86px 145px 86px 23px;
}
@media screen and (max-width: 767px) {
  .info__content table tr th {
    font-size: 18px;
    margin-right: auto;
    text-align: left;
    padding: 0;
  }
}
.info__content table tr td {
  margin-left: 100px;
  line-height: 40px;
  max-width: 980px;
}
@media screen and (max-width: 767px) {
  .info__content table tr td {
    margin-left: 0;
    line-height: 30px;
    margin-top: 37px;
    padding-bottom: 34px;
  }
}

/*================================
recruit__QandA
================================*/
@media screen and (max-width: 767px) {
  .recruit-qa .QandA-list {
    margin-top: 108px;
  }
}
.recruit-qa dl {
  font-size: 20px;
  line-height: 27px;
  margin-top: 167px;
  margin-bottom: 679px;
}
@media screen and (max-width: 767px) {
  .recruit-qa dl {
    font-size: 16px;
    margin-bottom: 219px;
  }
}
.recruit-qa dl img {
  width: 60px;
  height: 60px;
  margin-right: 52px;
}
@media screen and (max-width: 767px) {
  .recruit-qa dl img {
    width: 48px;
    height: 48px;
    margin-right: 23px;
  }
}
.recruit-qa dl dt {
  margin-top: 118px;
  display: flex;
  color: #3072cc;
  align-items: center;
  border-bottom: 1px dashed #707070;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .recruit-qa dl dt {
    margin-top: 96px;
  }
}
.recruit-qa dl dd {
  padding-top: 40px;
  display: flex;
}

/*================================
recruit-form
================================*/
.recruit-entry {
  padding-bottom: 294px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit-entry {
    padding-bottom: 238px;
  }
}
.recruit-entry .section-title__en {
  color: #aaafd0;
}
.recruit-entry .entry-form {
  padding-top: 117px;
  border-radius: 25px;
  background: #ffffff;
  max-width: 1537px;
  margin-top: 117px;
}
@media screen and (max-width: 767px) {
  .recruit-entry .entry-form {
    margin-top: 61px;
    padding-top: 64px;
  }
}
.recruit-entry dl {
  padding-bottom: 297px;
}
@media screen and (max-width: 767px) {
  .recruit-entry dl {
    padding-bottom: 143px;
    max-width: 320px;
    margin: auto;
  }
}
.recruit-entry dl .form-item,
.recruit-entry dl .form-item2 {
  text-align: left;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 72px;
  max-width: 1386px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recruit-entry dl .form-item,
.recruit-entry dl .form-item2 {
    flex-direction: column;
  }
}
.recruit-entry dl .form-item p,
.recruit-entry dl .form-item2 p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  flex-basis: 59px;
  height: 30px;
  background-color: #c11f1f;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .recruit-entry dl .form-item p,
.recruit-entry dl .form-item2 p {
    font-size: 11px;
    border-radius: 0px;
    flex-basis: 35px;
    height: 19px;
    width: 10px;
  }
}
.recruit-entry dl .form-item dt,
.recruit-entry dl .form-item2 dt {
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  align-items: center;
  width: 365px;
  font-size: 22px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .recruit-entry dl .form-item dt,
.recruit-entry dl .form-item2 dt {
    justify-content: initial;
    gap: 20px;
    margin: auto;
    font-size: 15px;
    padding-left: 0;
    margin-bottom: 15px;
  }
}
.recruit-entry dl .form-item dd,
.recruit-entry dl .form-item2 dd {
  max-width: 1003px;
  width: 100%;
}
.recruit-entry dl .form-item2 {
  align-items: flex-start;
}
.recruit-entry .inputs {
  color: #000000;
  font-size: 20px;
  padding-left: 28px;
  max-width: 1003px;
  width: 100%;
  height: 64px;
  background-color: #ededed;
  border: none;
}
@media screen and (max-width: 767px) {
  .recruit-entry .inputs {
    display: block;
    margin: auto;
    max-width: 320px;
    width: 100%;
    font-size: 15px;
    height: 45px;
  }
}
.recruit-entry .textarea {
  font-size: 21px;
  color: #000000;
  padding-top: 17px;
  padding-left: 28px;
  max-width: 1003px;
  width: 100%;
  height: 318px;
  background-color: #ededed;
  border: none;
}
@media screen and (max-width: 767px) {
  .recruit-entry .textarea {
    max-width: 320px;
    display: block;
    margin: auto;
    font-size: 15px;
  }
}
.recruit-entry .radio {
  font-size: 21px;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 767px) {
  .recruit-entry .radio {
    margin: auto;
    font-size: 15px;
    flex-wrap: wrap;
  }
}
.recruit-entry .radio div {
  display: flex;
  width: 110px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .recruit-entry .radio div {
    width: 82px;
    margin-left: 0;
    margin-top: 24px;
  }
}
.recruit-entry .radio div:first-child {
  margin-left: 0;
}
.recruit-entry .radio-btn {
  accent-color: #c11f1f;
  width: 28px;
}
.recruit-entry .button-area {
  text-align: center;
  /*pcボタン*/
  /*スマホボタン*/
}
.recruit-entry .button-area span {
  margin-left: 32px;
}
@media screen and (max-width: 767px) {
  .recruit-entry .button-area span {
    margin-left: 16px;
  }
}
.recruit-entry .button-area p {
  font-weight: 600;
  margin-top: 38px;
  margin-bottom: 67px;
}
@media screen and (max-width: 767px) {
  .recruit-entry .button-area p {
    margin-bottom: 63px;
    text-align: left;
    line-height: 30px;
  }
}
.recruit-entry .button-area a {
  color: #c11f1f;
}
.recruit-entry .button-area .btn__wrap {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit-entry .button-area .btn__wrap {
    display: none;
  }
}
.recruit-entry .button-area .btn__wrap::after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 131px;
  transform: translateY(-50%);
}
.recruit-entry .button-area .btn__wrap:hover {
  opacity: 0.5;
}
.recruit-entry .button-area .btn__wrap input[type=submit] {
  font-weight: 700;
  color: #ffffff;
  width: 461px;
  height: 102px;
  border: none;
  background-color: #c11f1f;
  font-size: 29px;
}
@media screen and (max-width: 767px) {
  .recruit-entry .button-area .btn__wrap input[type=submit] {
    width: 218px;
    height: 55px;
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .recruit-entry .button-area .btn__wrap2 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .recruit-entry .button-area .btn__wrap2 input[type=submit] {
    font-weight: 600;
    width: 218px;
    height: 55px;
    background-color: #c11f1f;
    color: #ffffff;
    border: none;
    border-radius: 21px;
  }
}

/*================================
contact-form
================================*/
.contact-form {
  margin-top: 207px;
  text-align: center;
  margin-bottom: 261px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    margin-top: 81px;
    margin-bottom: 190px;
  }
}
.contact-form .form-item {
  margin: auto;
  display: flex;
  align-items: center;
  max-width: 1153px;
  margin-bottom: 49px;
  align-items: flex-start;
}
.contact-form .form-item label {
  display: flex;
  width: 400px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact-form .form-item {
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
}
.contact-form .form-item p {
  margin-left: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  flex-basis: 59px;
  height: 30px;
  background-color: #c11f1f;
}
@media screen and (max-width: 767px) {
  .contact-form .form-item p {
    width: 35px;
    font-size: 11px;
    border-radius: 0px;
    margin-left: 20px;
  }
}
.contact-form .label {
  display: block;
  font-size: 20px;
  white-space: nowrap;
  margin-right: 150px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contact-form .label {
    margin-bottom: 16px;
  }
}
.contact-form .inputs {
  background: #f4f4f6;
  width: 100%;
  max-width: 885px;
  height: 60px;
  border: none;
  padding-left: 28px;
}
@media screen and (max-width: 767px) {
  .contact-form .inputs {
    height: 45px;
  }
}
.contact-form .textarea {
  height: 456px;
  padding-top: 17px;
  padding-left: 28px;
}
@media screen and (max-width: 767px) {
  .contact-form .textarea {
    height: 227px;
  }
}
.contact-form .button-area {
  margin-top: 100px;
}
.contact-form .button-area span {
  font-weight: 600;
  margin-left: 31px;
}
.contact-form .button-area p {
  font-weight: 600;
  margin-top: 31px;
}
@media screen and (max-width: 767px) {
  .contact-form .button-area p {
    margin-top: 51px;
    line-height: 30px;
    text-align: left;
  }
}
.contact-form .button-area a {
  font-weight: 600;
  color: #c11f1f;
}
.contact-form input[type=submit] {
  font-weight: 600;
  margin-top: 58px;
  width: 218px;
  height: 55px;
  background-color: #c11f1f;
  color: #ffffff;
  border: none;
  border-radius: 21px;
}

/*================================
footer
================================*/
.footer {
  background: #111574;
  padding-top: 110px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 65px;
  }
}

.footer__wrapper {
  text-align: center;
}
.footer__wrapper .footer__title {
  font-size: 41px;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 767px) {
  .footer__wrapper .footer__title {
    font-size: 21px;
  }
}
.footer__wrapper span {
  font-family: "a-otf-ud-shin-go-pr6n";
  display: inline-block;
  font-size: 22px;
  margin-top: 10px;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 767px) {
  .footer__wrapper span {
    font-size: 10px;
  }
}

.footer__addless {
  font-size: 30px;
  margin-top: 64px;
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid;
  padding-bottom: 23px;
}
@media screen and (max-width: 767px) {
  .footer__addless {
    font-size: 15px;
    flex-direction: column;
    border: none;
    margin-top: 37px;
  }
  .footer__addless p {
    padding: 5px;
  }
}

.footer__navlist {
  display: flex;
  margin-top: 170px;
  margin-bottom: 190px;
  font-size: 30px;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .footer__navlist {
    font-size: 14px;
    flex-direction: column;
    margin-top: 73px;
    margin-bottom: 88px;
    margin: auto;
  }
}
.footer__navlist .footer__nav1,
.footer__navlist .footer__nav2,
.footer__navlist .footer__nav3 {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-left: 35px;
}
@media screen and (max-width: 767px) {
  .footer__navlist .footer__nav1,
.footer__navlist .footer__nav2,
.footer__navlist .footer__nav3 {
    padding-left: 0px;
  }
}

@media screen and (max-width: 767px) {
  .footer__nav3 {
    padding-left: 16px;
  }
}
.footer__nav1 {
  border-left: 1px solid;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .footer__nav1 {
    margin-bottom: 54px;
    height: auto;
  }
}

.footer-nav__right {
  display: flex;
  justify-content: flex-end;
}
.footer__nav2,
.footer__nav3 {
  border-left: 1px solid;
  width: 50%;
  white-space: nowrap;
}

.footer-nav-item {
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .footer-nav-item {
    padding: 10px 10px 10px 24px;
  }
}
.footer-nav-item:hover {
  opacity: 0.6;
}

.footer-design {
  height: 147px;
  background: url(../img/top/footer_design.png) no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .footer-design {
    height: 81px;
  }
}

.copyright {
  text-align: center;
  font-size: 30px;
  background-color: #000000;
  height: 80px;
  padding: 25px 0;
}
@media screen and (max-width: 767px) {
  .copyright {
    height: 40px;
    font-size: 16px;
    padding: 13px 0;
  }
}