@charset "UTF-8";

/* ==========================================================================
   COMMON
   ========================================================================== */

/* Reset */

/* CSS Remedy */
*,
::after,
::before {
  box-sizing: border-box;
}
body {
  margin: 0;
}
img {
  border-style: none;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* wp reset */
#primary {
  float: none;
  padding: 0;
  width: 100%;
}
#primary article.hentry {
  background: none;
  box-shadow: none;
  padding: 0;
}
.page-content,
.entry-content,
.entry-summary {
  margin: 0;
}
.veu_socialSet {
  margin-bottom: 0;
}
.veu_socialSet-position-after {
  margin-top: 0;
}
.veu_contentAddSection {
  display: block;
  clear: both;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
}
button,
a.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  padding: 0;
}
.entry-header {
  display: none;
}
footer.entry-footer {
  display: none;
}
.comments-area {
  display: none;
}
.post-navigation {
  display: none;
}
.information-detail-wrap .entry-header {
  display: inline-block;
}

/* ------ */

img {
  max-width: 100%;
  height: auto;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}
p {
  color: #333;
}
a,
a:focus {
  text-decoration: none;
  color: #444;
  transition: all 0.4s;
}
a img {
  border-style: none;
}
a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  cursor: pointer;
}
html {
  overflow-x: hidden;
  line-height: 1.6;
  color: #444;
  font-size: 62.5%;
}
body {
  background: url("../images/common/bg_img.jpg");
  background-size: 600px auto;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}
p {
  margin: 0;
}

.enTxt {
  font-family: "Alata", sans-serif;
}
.mincyo {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.alnL {
  text-align: left;
}
.alnR {
  text-align: right;
}
.alnC {
  text-align: center;
}
.relative {
  position: relative;
}
.attentionTxt {
  margin-left: 1em;
  text-indent: -1em;
}
.clear {
  clear: both;
  padding: 0;
}
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
.inner {
  margin: 0 auto;
  padding: 0 10px;
}
.wrapper {
  overflow: hidden;
}
.pcBlank {
  display: none;
}
.spBlank {
  display: block;
}

@media screen and (max-width: 1024px) {
  .inner {
    margin: 0 auto;
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .pcBlank {
    display: block;
  }
  .spBlank {
    display: none;
  }
  .inner {
    margin: 0 auto;
    padding: 0 15px;
    width: 94%;
  }
}

/* ==========================================================================
      Font size
      ========================================================================== */
* {
  --viewport-unit-converter: 1vw;
  --fz-from: var(--font-size-from, var(--min-font-size));
  --fz-to: var(--font-size-to, var(--max-font-size));
  --fz-slope: (var(--fz-to) - var(--fz-from)) / (var(--viewport-to) - var(--viewport-from)) * 100;
  --fz-intercept: (var(--viewport-to) * var(--fz-from) - var(--viewport-from) * var(--fz-to)) / (var(--viewport-to) - var(--viewport-from));
  --font-size: calc(var(--fz-slope) * var(--viewport-unit-converter) + var(--fz-intercept) * 1px);

  --min-fz-px: calc(var(--min-font-size) * 1px);
  --max-fz-px: calc(var(--max-font-size) * 1px);
  --clamp: clamp(var(--min-fz-px), var(--font-size), var(--max-fz-px));
  --max: var(--has-max, var(--min));
  --min: var(--has-min, var(--font-size));
  --has-max: min(var(--max-fz-px), var(--font-size));
  --has-min: max(var(--min-fz-px), var(--font-size));

  font-size: var(--clamp, var(--max));
}

/* ==========================================================================
      Header
      ========================================================================== */
.header-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
#header-block {
  position: fixed;
  width: 100%;
  z-index: 3;
}
.change-color {
  background-color: rgba(255, 255, 255, 0.8);
}
.header-inner {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
.headerTop {
  margin: 5px auto 0 20px;
}
.headerTop h1 {
  margin: 8px 0 0;
}

@media screen and (max-width: 1024px) {
  .headerTop {
    margin-top: 10px;
    width: 130px;
  }
}

@media screen and (max-width: 768px) {
  .headerTop h1 {
    margin: 0;
  }
}
@media screen and (max-width: 480px) {
}

/* ==========================================================================
      Common
      ========================================================================== */
.btn-wrap {
  display: flex;
  justify-content: flex-end;
}
.btn-blue {
  font-size: 1.4rem;
  position: relative;
  text-align: left;
  width: 290px;
}
.btn-blue a {
  background-color: #ce4a8c;
  color: #fff;
  display: block;
  padding: 20px 10px 20px 30px;
  transition: all 0.4s;
}
.btn-blue a:hover {
  background-color: #e2539b;
  padding: 20px 10px 20px 30px;
  opacity: 1;
}
.btnLine {
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  height: 1px;
  width: 30px;
}
.btn-blue a:hover .btnLine {
  right: 15px;
  transition: all 0.4s;
}
.spJobSearchBtn {
  display: none;
}

@media screen and (max-width: 768px) {
  .btn-blue {
    font-size: 1.2rem;
    position: relative;
    text-align: left;
    width: 44%;
  }
  .btn-blue a {
    padding: 10px 10px 10px 20px;
  }
  .btnLine {
    right: 20px;
    width: 24px;
  }
  .btn-blue a:hover .btnLine {
    right: 8px;
  }
  .spJobSearchBtn {
    background-color: #1d2547;
    display: inline-block;
    font-size: 1.6rem;
    position: fixed;
    bottom: 0;
    text-align: center;
    width: 100%;
    z-index: 9;
  }
  .spJobSearchBtn a {
    color: #fff;
    display: block;
    padding: 15px 5px;
  }
}

/* ==========================================================================
      Sub Header
      ========================================================================== */
.sub-header {
  margin: 0 auto;
  max-width: 1200px;
  padding: 160px 20px 0;
  text-align: center;
  position: relative;
}
.sub-header h1 {
  color: #1d2547;
  font-size: 4rem;
}
.sub-header .titleCaption {
  color: #1d2547;
  font-family: "Alata", sans-serif;
  font-size: 1.6rem;
  margin: 0 0 70px;
}
.sub-header span.page-title {
  color: #1d2547;
  display: inline-block;
  font-family: "Alata", sans-serif;
  font-size: 13rem;
  font-weight: bold;
  list-style: 1em;
  opacity: 0.1;
  position: absolute;
  top: 90px;
  left: 10px;
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sub-header {
    padding: 80px 20px 0;
  }
  .sub-header h1 {
    font-size: 2rem;
  }
  .sub-header .titleCaption {
    font-size: 1.4rem;
    margin: 0 0 40px;
  }
  .sub-header span.page-title {
    font-size: 6rem;
    top: 45px;
    left: 10px;
  }
}

/* ==========================================================================
      Navigation
      ========================================================================== */
.globalnav-wrap {
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 20px 0 0;
}
.globalnav {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  width: 100%;
}
.globalnav ul {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  width: 100%;
}
.globalnav .dropdown-btn {
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  position: relative;
  text-align: center;
  margin-right: 60px;
}
.globalnav .dropdown-btn:first-child {
  border-left: none;
}
#recruitBtn {
  font-size: 1.4rem;
  white-space: nowrap;
  margin-top: 10px;
}
#recruitBtn a {
  background-color: #1d2547;
  border-radius: 50px;
  color: #fff;
  display: block;
  padding: 15px 40px;
}
#recruitBtn a:hover {
  background-color: #257abb;
  border-radius: 50px;
  padding: 15px 40px;
  opacity: 1;
}

nav a {
  color: #000;
}
nav a:visited {
  color: #333;
}
nav a:active {
  color: #333;
}
.globalnav .nav-button-wrap,
.globalnav .open {
  display: block;
}
.globalnav .close {
  display: block;
}

.spNavAdd {
  display: none;
}

@media screen and (max-width: 1024px) {
  .globalnav .dropdown-btn {
    font-size: 1.4rem;
    margin-right: 30px;
  }
  #recruitBtn {
    margin-top: 14px;
  }
  #recruitBtn a {
    padding: 10px 20px;
  }
  #recruitBtn a:hover {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 768px) {
  header {
    height: 54px;
    position: relative;
    width: 100%;
  }
  header h1 {
    margin: 0;
    position: relative;
    width: 100%;
    z-index: 99;
  }
  header h1 img {
    height: auto;
    width: 100%;
  }
  .navBg {
    border-bottom: none;
    padding: 0;
  }
  .nav-button-wrap {
    display: block;
    position: absolute;
    right: 0;
    top: 5px;
    z-index: 1000;
    cursor: pointer;
    padding: 15px;
    height: 53px;
  }
  .globalnav {
    display: none;
  }
  .globalnav .close {
    display: none;
  }
  nav.globalnav-wrap .globalnav ul li.dropdown-btn {
    border-left: none;
    padding: 0 0 30px;
    text-align: left;
    width: 100%;
  }
  .globalnav .dropdown-btn:first-child {
    border-top: none;
  }
  p.navGakkaName {
    background: #147ec3;
    border: none;
    border-bottom: none;
    color: #fff;
    font-size: 83%;
    padding: 5px 0;
  }
  .globalnav .dropdown {
    font-weight: normal;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    padding: 0;
    margin: 15px 0 0;
  }
  .globalnav ul {
    color: #fff;
    display: inline;
    padding: 20px 0;
  }
  .globalnav .dropdown li {
    margin: 0;
    padding: 0;
    font-size: 500%;
  }
  .globalnav .dropdown li a {
    color: #1d2547;
  }
  nav a {
    color: #1d2547;
  }
  nav a:visited {
    color: #1d2547;
  }
  nav a:active {
    color: #1d2547;
  }
  .globalnav .dropdown li:first-child {
    border-top: 1px solid #004ea2;
  }
  .globalnav .dropdown li:last-child {
    border-bottom: none;
  }
  .globalnav-wrap.open .globalnav li .dropdown li {
    font-size: 83%;
  }
  .globalnav-wrap.open .globalnav {
    display: block;
    padding: 80px 20px 100px;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(233, 221, 221, 1);
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 98;
  }
  .globalnav-wrap.open .globalnav li {
    font-size: 1.6rem;
    display: block;
    margin: 0;
    padding: 10px 0 20px;
  }
  .globalnav-wrap.open .globalnav li img {
    vertical-align: bottom;
  }
  .globalnav-wrap.open .globalnav li:hover {
    background: transparent;
  }
  .globalnav-wrap.open .globalnav li a {
    padding: 0;
  }
  .globalnav-wrap.open .globalnav .dropdown {
    border-top: 1px solid #fff;
    display: block;
    position: static;
    background: transparent;
  }
  .globalnav li.dropdown-btn .dropdown ul.navGakka li a {
    padding: 0 0 0 20px;
  }
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.3s;
  }
  .nav-button {
    z-index: 20;
    width: 25px;
    height: 19px;
    position: relative;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #1d2547;
    border-radius: 4px;
  }
  .nav-button span:nth-of-type(1) {
    top: 0;
  }
  .nav-button span:nth-of-type(2) {
    top: 8px;
  }
  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }
  .active .nav-button span:nth-of-type(1) {
    background-color: #1d2547;
    transform: translateY(10px) rotate(-45deg);
  }
  .active .nav-button span:nth-of-type(3) {
    opacity: 0;
  }
  .active .nav-button span:nth-of-type(2) {
    background-color: #1d2547;
    transform: translateY(1px) rotate(45deg);
  }
  .navLine {
    border-bottom: 1px solid #fff;
    padding: 15px 0 0;
  }

  .spNavAdd {
    display: inline-block;
    margin: 40px 0 0;
  }
  .spNavAdd p {
    color: #1d2547;
    font-size: 1.4rem;
    line-height: 2em;
    font-weight: normal;
  }
  .spNavAdd .spNavBn {
    margin: 24px 0;
  }
  .spNavAdd small {
    color: #1d2547;
    font-size: 1.2rem;
    margin: 5px 0 0;
  }
  .spNavAdd .footerIcon {
    margin: 0;
  }

  #recruitBtn {
    font-size: 1.4rem;
    white-space: nowrap;
    margin-top: 20px;
    text-align: center;
  }
  #recruitBtn a {
    background-color: #1d2547;
    border-radius: 0;
    color: #fff;
    display: block;
    padding: 10px;
  }

  .navFadeUp {
    animation-name: fadeSideAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fadeSideAnime {
    from {
      opacity: 0;
      transform: translateX(100px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

@media screen and (max-width: 480px) {
  header h1 {
    position: relative;
    width: 80%;
    z-index: 3;
  }
  header h1 img {
    height: auto;
    width: 100%;
  }
}

/* ==========================================================================
      Contact
      ========================================================================== */
.top-contact {
  height: 510px;
  width: 100%;
  position: relative;
}
.top-contact-img {
  height: 510px;
  width: 100%;
  object-fit: cover;
}
.contact-btn {
  background-color: #1d2547;
  display: flex;
  margin: 0 auto;
  text-align: center;
  width: 50%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -120px;
}
.contact-caption {
  color: #fff;
  font-family: "Alata", sans-serif;
  font-size: 3.8rem;
  line-height: 1em;
}
.contact-title {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1em;
}
.contact-btn a {
  display: block;
  padding: 80px 0;
  align-self: center;
  width: 100%;
}
.contact-btn a:hover {
  background-color: #257abb;
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .top-contact {
    height: 400px;
  }
  .top-contact-img {
    height: 400px;
  }
  .contact-btn {
    bottom: -110px;
  }
  .contact-caption {
    font-size: 3.2rem;
  }
  .contact-title {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .top-contact {
    height: 300px;
  }
  .top-contact-img {
    height: 300px;
  }
  .contact-btn {
    width: 70%;
    bottom: -90px;
  }
  .contact-caption {
    font-size: 2.8rem;
  }
  .contact-btn a {
    padding: 40px 0;
  }
}

/* ==========================================================================
      Footer
      ========================================================================== */

footer {
  /* background: url("../images/common/bg_img.jpg");
       background-size: 600px auto; */
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 200px 0 100px;
}
footer .inner {
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
}
.footerRight {
  text-align: right;
  align-self: center;
}
.triangleLink {
  position: absolute;
}
.footerLeft p {
  color: #1d2547;
  font-size: 1.4rem;
  line-height: 2.2em;
}
.footerLeft p span {
  font-weight: bold;
}
.footerLeft p span.tel-link {
  font-weight: normal;
}
footer small {
  color: #1d2547;
  font-size: 1.2rem;
  padding: 0;
}
.footerLogo {
  height: auto;
  margin: 0 0 55px;
  width: 140px;
}
.footerAdd {
  margin: 0 0 30px;
}
.footerIcon {
  height: auto;
  margin: 0 0 40px;
  width: 25px;
}
.footerNavList ul {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 25px;
}
.footerNavList ul li {
  color: #1d2547;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 0 35px;
}
.footerNavList ul li:first-child {
  margin: 0;
}
.footerNavList ul li a {
  color: #1d2547;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 160px 0 80px;
  }
  footer .inner {
    padding: 0;
  }
  .footer-inner {
    flex-wrap: wrap;
  }
  .footerLeft {
    width: 100%;
  }
  .footerRight {
    width: 100%;
  }
  .footerLogo {
    height: auto;
    margin: 0 0 55px;
    width: 140px;
  }
  .footerNavList ul li {
    margin: 0 0 0 25px;
  }
  footer small {
    display: inline-block;
    text-align: center;
    width: 100%;
  }
}

/* ==========================================================================
      Go Top
      ========================================================================== */
.gotop {
  background-color: #fff;
  color: #1d2547;
  display: block;
  font-size: 1.6rem;
  position: absolute;
  top: -225px;
  right: 0;
  text-align: center;
  padding: 10px 15px;
}
a.gotop:hover {
  opacity: 1;
  padding: 5px 15px 15px;
}

@media screen and (max-width: 768px) {
  .gotop {
    font-size: 1.4rem;
    position: absolute;
    top: -190px;
    right: -13px;
  }
}

/* ==========================================================================
      Delay
      ========================================================================== */

.delay-time01 {
  animation-delay: 0.1s;
}
.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time03 {
  animation-delay: 0.3s;
}
.delay-time04 {
  animation-delay: 0.4s;
}
.delay-time05 {
  animation-delay: 0.5s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time07 {
  animation-delay: 0.7s;
}
.delay-time08 {
  animation-delay: 0.8s;
}
.delay-time09 {
  animation-delay: 0.9s;
}
.delay-time10 {
  animation-delay: 1s;
}
.delay-time11 {
  animation-delay: 1.1s;
}
.delay-time12 {
  animation-delay: 1.2s;
}
.delay-time13 {
  animation-delay: 1.3s;
}
.delay-time14 {
  animation-delay: 1.4s;
}
.delay-time15 {
  animation-delay: 1.5s;
}
.delay-time16 {
  animation-delay: 1.6s;
}
.delay-time17 {
  animation-delay: 1.7s;
}
.delay-time18 {
  animation-delay: 1.8s;
}
.delay-time19 {
  animation-delay: 1.9s;
}
.delay-time20 {
  animation-delay: 2s;
}
.delay-time21 {
  animation-delay: 2.1s;
}
.delay-time22 {
  animation-delay: 2.2s;
}
.delay-time23 {
  animation-delay: 2.3s;
}
.delay-time24 {
  animation-delay: 2.4s;
}

/* password */
.post-password-message {
  padding: 200px 0 50px;
  text-align: center;
}
.post-password-form {
  margin: 0 0 200px;
  text-align: center;
}

.error-404 {
  padding: 0 0 50px;
  text-align: center;
}
.search-form {
  margin: 0 0 200px;
  text-align: center;
}
.page-header {
  padding: 0;
  text-align: center;
}
.no-results {
  width: 100%;
}
.no-results .page-content {
  text-align: center;
}

/* ==========================================================================
      404
      ========================================================================== */
.notFound {
  padding: 0 0 100px;
  text-align: center;
}

.notFound p {
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .notFound p {
    font-size: 1.4rem;
  }
}

/*========= 背景動画設定のCSS ===============*/

/*header設定*/
#videoWrap {
  position: relative; /*h1の中央寄せ配置の起点とするためのrelative*/
  height: 100vh; /*高さを全画面にあわせる*/
}
#video-area {
  position: fixed;
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}
/*見出し設定*/
.midashi {
  /*要素の配置*/
  position: absolute;
  /*要素を天地中央寄せ*/
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  /*見た目の調整*/
  text-shadow: 0 0 15px #666;
  color: #fff;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif !important;
  font-size: 5.5rem;
  text-align: center;
  width: 100%;
}

/*========= レイアウトのためのCSS ===============*/
#topContents {
  background: url("../images/common/bg_img.jpg");
  background-size: 600px auto;
  padding: 110px 0;
  text-align: center;
}
#topContents .inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  /*見出し設定*/
  .midashi {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  /*見出し設定*/
  .midashi {
    font-size: 150%;
  }
}

/* ==========================================================================
   TOP
   ========================================================================== */
#video-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 2500ms linear 500ms;
  transition: all 2500ms linear 500ms;
}
#topContents h2 {
  color: #257abb;
  font-size: 13rem;
  margin: 0;
  line-height: 1em;
}
#topContents h3 {
  color: #257abb;
  font-size: 6rem;
  margin: 0;
}

/* WORKS */
.topEnMidashi {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.top-works .inner {
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.top-work-txt {
  margin: 0 0 0 100px;
  text-align: left;
}
.top-work-txt p {
  font-size: 1.6rem;
  line-height: 2em;
  margin: 80px 0 70px;
}

/* SERVICE */
.top-service {
  background-image: url(../images/top/bg_wh_top.jpg), url(../images/top/bg_wh_bottom.jpg);
  background-position:
    center top,
    center bottom;
  background-size:
    3000px auto,
    3000px auto;
  background-repeat: no-repeat, no-repeat;
  background-color: #fff;
  padding: 170px 0 0;
}
.top-layout-left {
  display: flex;
}
.top-layout-right {
  display: flex;
  justify-content: space-between;
}
.top-layout-left h2 {
  align-self: flex-start;
  order: 1;
}
.top-layout-left .top-work-txt {
  order: 2;
}
.top-layout-right h2 {
  align-self: flex-start;
  order: 2;
}
.top-layout-right .top-work-txt {
  margin: 0;
  order: 1;
  width: 80%;
}
.service-exp {
  margin: 100px 0 0;
  position: relative;
}
.service-exp .service-txt-wrap {
  width: 60%;
  z-index: 2;
}
.service-exp .service-txt-inner {
  background-color: #257abb;
  border-radius: 15px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 50px;
  width: 100%;
}
.service-exp-left {
  display: flex;
  justify-content: flex-start;
}
.service-exp-right {
  display: flex;
  justify-content: flex-end;
}
.service-exp-left .service-txt-wrap {
  position: absolute;
  top: 50%;
  right: 0;
}
.service-exp-right .service-txt-wrap {
  position: absolute;
  top: 50%;
  left: 0;
}
img.service-img {
  border-radius: 15px;
  object-fit: cover;
  height: 450px;
  vertical-align: bottom;
  width: 83%;
}
.service-txt-wrap h4 {
  color: #fff;
  font-size: 2.8rem;
  margin: 0;
}
.service-txt-wrap p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 0;
}
.service-caption {
  display: flex;
  margin: 20px 0;
}
.service-caption p {
  font-size: 1.4rem;
  line-height: 1em;
}
.service-line {
  align-self: center;
  background-color: #fff;
  height: 1px;
  margin: 0 0 0 20px;
  width: 50px;
}
.top-service .btn-wrap {
  margin: 100px 0 0;
}

/* ABOUT */
.top-about {
  margin: 250px 0 0;
}

/* INFORMATION */
.top-information .top-work-txt {
  display: flex;
  justify-content: space-between;
  margin: 90px 0 0;
}
/* .top-information .top-work-txt::before{
    content:"";
    display: block;
    width:23%;
    order:1;
}
.top-information .top-work-txt::after{
    content:"";
    display: block;
    width:23%;
} */

.info-list {
  width: 23%;
}
.top-work-txt .info-list img {
  height: auto;
  width: 100%;
}
.top-work-txt .info-list .top-info-date {
  color: #257abb;
  font-family: "Alata", sans-serif;
  font-size: 1.4rem;
  margin: 0;
}
.top-work-txt .info-list .top-info-title {
  font-size: 1.6rem;
  margin: 0;
}
.top-information .inner .btn-wrap {
  margin: 150px 0 0;
}

/* MEMBER */
.top-member {
  background-image: url(../images/top/bg_wh_top.jpg), url(../images/top/bg_wh_bottom.jpg);
  background-position:
    center top,
    center bottom;
  background-size:
    3000px auto,
    3000px auto;
  background-repeat: no-repeat, no-repeat;
  background-color: #fff;
  padding: 270px 0 0;
  transform: scale(-1, 1);
}
.top-member .inner {
  transform: scale(-1, 1);
  flex-wrap: wrap;
}
.top-member .inner h2 {
  width: 100%;
}
.top-member .inner h2.topEnMidashi {
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  text-align: right;
}
.top-member .inner .top-work-txt {
  margin: 30px 0 0;
  width: 100%;
}
.top-member .btn-wrap {
  padding: 50px 0 100px;
}

/* slid */
.swiper-wrapper .swiper-slide p {
  font-family: "Alata", sans-serif;
  font-size: 1.6rem;
  margin: 0 0 0 10px;
}
.swiper-arrow-wrap {
  padding: 50px 0 0;
  display: flex;
  justify-content: center;
}
.swiper-wrapper .swiper-slide img {
  border-radius: 15px;
}
.swiper-button {
  border: 1px solid #1d2547;
  border-radius: 50%;
  background-color: #fff;
  position: static;
  height: 76px;
  width: 76px;
  --swiper-navigation-size: 22px;
  color: #1d2547;
  margin: 0 30px;
  transition: all 0.4s;
}
.swiper-button:hover {
  opacity: 0.6;
  transition: all 0.4s;
}

/* color */
/*　モノクロからカラーへ　*/

.swiper-slide img {
  filter: grayscale(100%); /*モノクロ具合を変更したい場合はこの数値を変更*/
  transition: 0.3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.swiper-slide a:hover img {
  /*hoverした時の変化*/
  filter: grayscale(0);
}
.swiper-slide a:hover {
  opacity: 1;
}

/* INFORMATION */
.top-information {
  padding: 170px 0 0;
}
.top-information .inner {
  flex-wrap: wrap;
}
.top-information .inner h2 {
  width: 100%;
}
.top-information .inner h2.topEnMidashi {
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  #topContents h2 {
    font-size: 10rem;
  }
  #topContents h3 {
    font-size: 4rem;
  }

  /* WORKS */
  .top-work-txt {
    margin: 0 0 0 100px;
  }
  .top-work-txt p {
    margin: 0;
  }

  /* SERVICE */
  .top-service {
    padding: 170px 0 0;
  }
  .top-layout-right .top-work-txt {
    margin: 0;
    order: 1;
    width: 80%;
  }
  .service-exp {
    margin: 100px 0 0;
    position: relative;
  }
  .service-txt-wrap h4 {
    font-size: 2.2rem;
  }
  .service-txt-wrap p {
    font-size: 1.4rem;
  }
  .service-line {
    width: 40px;
  }

  /* INFORMATION */
  .top-work-txt .info-list .top-info-title {
    font-size: 1.4rem;
  }
  .top-information .inner .btn-wrap {
    margin: 100px 0 0;
  }
}

@media screen and (max-width: 768px) {
  #topContents h2 {
    font-size: 4.5rem;
    margin: 0 0 15px;
    width: 100%;
    text-align: left;
  }
  #topContents h3 {
    font-size: 2rem;
  }

  /* WORKS */
  .top-work-txt {
    margin: 0;
  }
  .topEnMidashi {
    writing-mode: horizontal-tb;
  }
  .top-works .inner {
    justify-content: flex-start;
  }
  .top-work-txt {
    width: 100%;
  }
  .top-work-txt p {
    font-size: 1.4rem;
    margin: 20px 0;
  }

  /* SERVICE */
  .top-service {
    padding: 100px 0 0;
  }
  .top-service .inner {
    padding: 0;
    width: 100%;
  }
  .top-service h2 {
    padding: 0 15px;
    width: 96%;
  }
  .top-service .top-work-txt h3 {
    padding: 0 15px;
    width: 96%;
  }
  .top-layout-left {
    flex-wrap: wrap;
  }
  .top-layout-right {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .top-layout-left h2 {
    align-self: flex-start;
    order: 1;
  }
  .top-layout-left .top-work-txt {
    order: 2;
  }
  .top-layout-right h2 {
    align-self: flex-start;
    order: 1;
  }
  .top-layout-right .top-work-txt {
    margin: 0;
    order: 2;
    width: 100%;
  }
  .service-exp {
    margin: 40px 0 0;
  }
  .service-exp .service-txt-wrap {
    width: 96%;
  }
  .service-exp .service-txt-inner {
    border-radius: 0;
    position: static;
    top: auto;
    transform: none;
    margin: -40px 0 0;
    padding: 40px 40px 20px;
    width: 100%;
  }
  .service-exp-left {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .service-exp-left .service-txt-wrap .service-txt-inner {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  .service-exp-right .service-txt-wrap .service-txt-inner {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  .service-exp-right {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .service-exp-left .service-txt-wrap {
    position: static;
    top: auto;
    right: 0;
  }
  .service-exp-right .service-txt-wrap {
    position: static;
    top: auto;
    left: 0;
  }
  img.service-img {
    border-radius: 0;
    height: 250px;
    width: 100%;
  }
  .service-txt-wrap {
    order: 2;
  }
  .service-img {
    order: 1;
  }
  .service-txt-wrap h4 {
    font-size: 2rem;
  }
  .service-txt-wrap p {
    font-size: 1.4rem;
  }
  .service-caption {
    margin: 0;
  }
  .service-line {
    margin: 30px 0 0 20px;
    width: 30px;
  }
  .top-service .btn-wrap {
    margin: 100px 0 0;
  }
  .service-exp-right .service-txt-wrap {
    margin: 0 -40px 0 0;
  }
  .top-service .btn-wrap {
    margin: 0 auto;
    padding: 50px 15px 150px;
    width: 96%;
  }

  /* ABOUT */
  .top-about {
    margin: 0;
  }

  /* INFORMATION */
  .top-information .top-work-txt {
    flex-wrap: wrap;
    margin: 20px 0 0;
  }
  .info-list {
    margin: 0 0 30px;
    width: 48%;
  }
  .top-work-txt .info-list .top-info-title {
    font-size: 1.4rem;
  }
  .top-information .inner .btn-wrap {
    margin: 50px 0 0;
  }

  /* MEMBER */
  .top-member {
    background-image: url(../images/top/bg_wh_top.jpg), url(../images/top/bg_wh_bottom.jpg);
    background-position:
      center top,
      center bottom;
    background-size:
      3000px auto,
      3000px auto;
    background-repeat: no-repeat, no-repeat;
    background-color: #fff;
    padding: 80px 0 0;
    transform: scale(-1, 1);
  }
  .top-member .inner {
    transform: scale(-1, 1);
    flex-wrap: wrap;
  }
  .top-member .inner h2 {
    width: 100%;
  }
  .top-member .inner h2.topEnMidashi {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    text-align: right;
  }
  .top-member .inner .top-work-txt {
    margin: 30px 0 0;
    width: 100%;
  }
  .top-member .btn-wrap {
    padding: 50px 0 80px;
  }

  /* slid */
  .swiper-wrapper .swiper-slide p {
    font-size: 1.2rem;
  }
  .swiper-arrow-wrap {
    padding: 30px 0 0;
  }
  .swiper-button {
    height: 46px;
    width: 46px;
    --swiper-navigation-size: 12px;
    margin: 0 30px;
  }

  /* INFORMATION */
  .top-information {
    padding: 80px 0 0;
  }
  .top-information .inner {
    flex-wrap: wrap;
  }
  .top-information .inner h2 {
    width: 100%;
  }
  .top-information .inner h2.topEnMidashi {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    text-align: left;
  }
}

/* ==========================================================================
   TOP
   ========================================================================== */

/*========= 背景動画設定のCSS ===============*/

/*header設定*/
#videoWrap {
  position: relative; /*h1の中央寄せ配置の起点とするためのrelative*/
  height: 100vh; /*高さを全画面にあわせる*/
}
#video-area {
  position: fixed;
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}
/*見出し設定*/
.midashi {
  /*要素の配置*/
  position: absolute;
  /*要素を天地中央寄せ*/
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  /*見た目の調整*/
  text-shadow: 0 0 15px #666;
  color: #fff;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif !important;
  font-size: 5.5rem;
  text-align: center;
  width: 100%;
}

/*========= レイアウトのためのCSS ===============*/
#topContents {
  background: url("../images/common/bg_img.jpg");
  background-size: 600px auto;
  padding: 110px 0;
  text-align: center;
}
#topContents .inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  /*見出し設定*/
  .midashi {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  /*見出し設定*/
  .midashi {
    font-size: 150%;
  }
}

/* ==========================================================================
      TOP
      ========================================================================== */
#video-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 2500ms linear 500ms;
  transition: all 2500ms linear 500ms;
}
#topContents h2 {
  color: #257abb;
  font-size: 13rem;
  margin: 0;
  line-height: 1em;
}
#topContents h3 {
  color: #257abb;
  font-size: 6rem;
  letter-spacing: -0.02em;
  margin: 0;
}

/* WORKS */
.topEnMidashi {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.top-works .inner {
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.top-work-txt {
  margin: 0 0 0 100px;
  text-align: left;
}
.top-work-txt p {
  font-size: 1.6rem;
  line-height: 2em;
  margin: 80px 0 70px;
}

/* SERVICE */
.top-service {
  background-image: url(../images/top/bg_wh_top.jpg), url(../images/top/bg_wh_bottom.jpg);
  background-position:
    center top,
    center bottom;
  background-size:
    3000px auto,
    3000px auto;
  background-repeat: no-repeat, no-repeat;
  background-color: #fff;
  padding: 170px 0 0;
}
.top-layout-left {
  display: flex;
}
.top-layout-right {
  display: flex;
  justify-content: space-between;
}
.top-layout-left h2 {
  align-self: flex-start;
  order: 1;
}
.top-layout-left .top-work-txt {
  order: 2;
}
.top-layout-right h2 {
  align-self: flex-start;
  order: 2;
}
.top-layout-right .top-work-txt {
  margin: 0;
  order: 1;
  width: 80%;
}
.service-exp {
  margin: 100px 0 0;
  position: relative;
}
.service-exp .service-txt-wrap {
  width: 60%;
  z-index: 2;
}
.service-exp .service-txt-inner {
  background-color: #257abb;
  border-radius: 15px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 50px;
  width: 100%;
}
.service-exp-left {
  display: flex;
  justify-content: flex-start;
}
.service-exp-right {
  display: flex;
  justify-content: flex-end;
}
.service-exp-left .service-txt-wrap {
  position: absolute;
  top: 50%;
  right: 0;
}
.service-exp-right .service-txt-wrap {
  position: absolute;
  top: 50%;
  left: 0;
}
img.service-img {
  border-radius: 15px;
  object-fit: cover;
  height: 450px;
  vertical-align: bottom;
  width: 83%;
}
.service-txt-wrap h4 {
  color: #fff;
  font-size: 2.8rem;
  margin: 0;
}
.service-txt-wrap p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 0;
}
.service-caption {
  display: flex;
  margin: 20px 0;
}
.service-caption p {
  font-size: 1.4rem;
  line-height: 1em;
}
.service-line {
  align-self: center;
  background-color: #fff;
  height: 1px;
  margin: 0 0 0 20px;
  width: 50px;
}
.top-service .btn-wrap {
  margin: 100px 0 0;
}

/* ABOUT */
.top-about {
  margin: 250px 0 0;
}

/* INFORMATION */
.top-information .top-work-txt {
  display: flex;
  justify-content: space-between;
  margin: 90px 0 0;
}
/* .top-information .top-work-txt::before{
       content:"";
       display: block;
       width:23%;
       order:1;
   }
   .top-information .top-work-txt::after{
       content:"";
       display: block;
       width:23%;
   } */

.info-list {
  width: 23%;
}
.top-work-txt .info-list img {
  height: auto;
  width: 100%;
}
.top-work-txt .info-list .top-info-date {
  color: #257abb;
  font-family: "Alata", sans-serif;
  font-size: 1.4rem;
  margin: 0;
}
.top-work-txt .info-list .top-info-title {
  font-size: 1.6rem;
  margin: 0;
}
.top-information .inner .btn-wrap {
  margin: 150px 0 0;
}

/* MEMBER */
.top-member {
  background-image: url(../images/top/bg_wh_top.jpg), url(../images/top/bg_wh_bottom.jpg);
  background-position:
    center top,
    center bottom;
  background-size:
    3000px auto,
    3000px auto;
  background-repeat: no-repeat, no-repeat;
  background-color: #fff;
  padding: 270px 0 0;
  transform: scale(-1, 1);
}
.top-member .inner {
  transform: scale(-1, 1);
  flex-wrap: wrap;
}
.top-member .inner h2 {
  width: 100%;
}
.top-member .inner h2.topEnMidashi {
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  text-align: right;
}
.top-member .inner .top-work-txt {
  margin: 30px 0 0;
  width: 100%;
}
.top-member .btn-wrap {
  padding: 50px 0 100px;
}

/* slid */
.swiper-wrapper .swiper-slide p {
  font-family: "Alata", sans-serif;
  font-size: 1.6rem;
  margin: 0 0 0 10px;
}
.swiper-arrow-wrap {
  padding: 50px 0 0;
  display: flex;
  justify-content: center;
}
.swiper-wrapper .swiper-slide img {
  border-radius: 15px;
}
.swiper-button {
  border: 1px solid #1d2547;
  border-radius: 50%;
  background-color: #fff;
  position: static;
  height: 76px;
  width: 76px;
  --swiper-navigation-size: 22px;
  color: #1d2547;
  margin: 0 30px;
  transition: all 0.4s;
}
.swiper-button:hover {
  opacity: 0.6;
  transition: all 0.4s;
}

/* color */
/*　モノクロからカラーへ　*/

.swiper-slide img {
  filter: grayscale(100%); /*モノクロ具合を変更したい場合はこの数値を変更*/
  transition: 0.3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.swiper-slide a:hover img {
  /*hoverした時の変化*/
  filter: grayscale(0);
}
.swiper-slide a:hover {
  opacity: 1;
}

/* INFORMATION */
.top-information {
  padding: 170px 0 0;
}
.top-information .inner {
  flex-wrap: wrap;
}
.top-information .inner h2 {
  width: 100%;
}
.top-information .inner h2.topEnMidashi {
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  #topContents h2 {
    font-size: 10rem;
  }
  #topContents h3 {
    font-size: 4rem;
  }

  /* WORKS */
  .top-work-txt {
    margin: 0 0 0 100px;
  }
  .top-work-txt p {
    margin: 0;
  }

  /* SERVICE */
  .top-service {
    padding: 170px 0 0;
  }
  .top-layout-right .top-work-txt {
    margin: 0;
    order: 1;
    width: 80%;
  }
  .service-exp {
    margin: 100px 0 0;
    position: relative;
  }
  .service-txt-wrap h4 {
    font-size: 2.2rem;
  }
  .service-txt-wrap p {
    font-size: 1.4rem;
  }
  .service-line {
    width: 40px;
  }

  /* INFORMATION */
  .top-work-txt .info-list .top-info-title {
    font-size: 1.4rem;
  }
  .top-information .inner .btn-wrap {
    margin: 100px 0 0;
  }
}

@media screen and (max-width: 768px) {
  #topContents h2 {
    font-size: 4.5rem;
    margin: 0 0 15px;
    width: 100%;
    text-align: left;
  }
  #topContents h3 {
    font-size: 2rem;
  }

  /* WORKS */
  .top-work-txt {
    margin: 0;
  }
  .topEnMidashi {
    writing-mode: horizontal-tb;
  }
  .top-works .inner {
    justify-content: flex-start;
  }
  .top-work-txt {
    width: 100%;
  }
  .top-work-txt p {
    font-size: 1.4rem;
    margin: 20px 0;
  }

  /* SERVICE */
  .top-service {
    padding: 100px 0 0;
  }
  .top-service .inner {
    padding: 0;
    width: 100%;
  }
  .top-service h2 {
    padding: 0 15px;
    width: 96%;
  }
  .top-service .top-work-txt h3 {
    padding: 0 15px;
    width: 96%;
  }
  .top-layout-left {
    flex-wrap: wrap;
  }
  .top-layout-right {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .top-layout-left h2 {
    align-self: flex-start;
    order: 1;
  }
  .top-layout-left .top-work-txt {
    order: 2;
  }
  .top-layout-right h2 {
    align-self: flex-start;
    order: 1;
  }
  .top-layout-right .top-work-txt {
    margin: 0;
    order: 2;
    width: 100%;
  }
  .service-exp {
    margin: 40px 0 0;
  }
  .service-exp .service-txt-wrap {
    width: 96%;
  }
  .service-exp .service-txt-inner {
    border-radius: 0;
    position: static;
    top: auto;
    transform: none;
    margin: -40px 0 0;
    padding: 40px 40px 20px;
    width: 100%;
  }
  .service-exp-left {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .service-exp-left .service-txt-wrap .service-txt-inner {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  .service-exp-right .service-txt-wrap .service-txt-inner {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  .service-exp-right {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .service-exp-left .service-txt-wrap {
    position: static;
    top: auto;
    right: 0;
  }
  .service-exp-right .service-txt-wrap {
    position: static;
    top: auto;
    left: 0;
  }
  img.service-img {
    border-radius: 0;
    height: 250px;
    width: 100%;
  }
  .service-txt-wrap {
    order: 2;
  }
  .service-img {
    order: 1;
  }
  .service-txt-wrap h4 {
    font-size: 2rem;
  }
  .service-txt-wrap p {
    font-size: 1.4rem;
  }
  .service-caption {
    margin: 0;
  }
  .service-line {
    margin: 30px 0 0 20px;
    width: 30px;
  }
  .top-service .btn-wrap {
    margin: 100px 0 0;
  }
  .service-exp-right .service-txt-wrap {
    margin: 0 -40px 0 0;
  }
  .top-service .btn-wrap {
    margin: 0 auto;
    padding: 50px 15px 150px;
    width: 96%;
  }

  /* ABOUT */
  .top-about {
    margin: 0;
  }

  /* INFORMATION */
  .top-information .top-work-txt {
    flex-wrap: wrap;
    margin: 20px 0 0;
  }
  .info-list {
    margin: 0 0 30px;
    width: 48%;
  }
  .top-work-txt .info-list .top-info-title {
    font-size: 1.4rem;
  }
  .top-information .inner .btn-wrap {
    margin: 50px 0 0;
  }

  /* MEMBER */
  .top-member {
    background-image: url(../images/top/bg_wh_top.jpg), url(../images/top/bg_wh_bottom.jpg);
    background-position:
      center top,
      center bottom;
    background-size:
      3000px auto,
      3000px auto;
    background-repeat: no-repeat, no-repeat;
    background-color: #fff;
    padding: 80px 0 0;
    transform: scale(-1, 1);
  }
  .top-member .inner {
    transform: scale(-1, 1);
    flex-wrap: wrap;
  }
  .top-member .inner h2 {
    width: 100%;
  }
  .top-member .inner h2.topEnMidashi {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    text-align: right;
  }
  .top-member .inner .top-work-txt {
    margin: 30px 0 0;
    width: 100%;
  }
  .top-member .btn-wrap {
    padding: 50px 0 80px;
  }

  /* slid */
  .swiper-wrapper .swiper-slide p {
    font-size: 1.2rem;
  }
  .swiper-arrow-wrap {
    padding: 30px 0 0;
  }
  .swiper-button {
    height: 46px;
    width: 46px;
    --swiper-navigation-size: 12px;
    margin: 0 30px;
  }

  /* INFORMATION */
  .top-information {
    padding: 80px 0 0;
  }
  .top-information .inner {
    flex-wrap: wrap;
  }
  .top-information .inner h2 {
    width: 100%;
  }
  .top-information .inner h2.topEnMidashi {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    text-align: left;
  }
}

/* ==========================================================================
      8-5
      ========================================================================== */

/*========= レイアウトのためのCSS ===============*/

/* p{
          margin: 20px;
          font-size: 20px;
          overflow: hidden;/*左右アニメーションで画面からはみ出る際に出る横スクロールバーを隠す*/
/* } */

/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/* 上下のアニメーション*/
.downAnime {
  opacity: 0; /* 事前に透過0 にして消しておく*/
}

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

@keyframes slideTextY100 {
  from {
    transform: translateY(100%); /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeUpDown {
  animation-name: slideTextY-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextY-100 {
  from {
    transform: translateY(-100%); /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

/* ==========================================================================
      SERVICE
      ========================================================================== */

.serviceBg {
  padding: 0 20px;
}
.serviceBg-inner {
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 15px;
  max-width: 1200px;
  margin: 0 auto 160px;
  padding: 80px 0;
}
#service-wrap img.service-img {
  object-fit: cover;
  height: 450px;
  width: 100%;
}

.service-midashi {
  border: 1px solid #257abb;
  color: #257abb;
  display: inline-block;
  font-size: 1.4rem;
  padding: 3px 15px;
}
.service-setsumei .inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 900px;
}
.serviceBg h2 {
  color: #257abb;
  font-size: 3rem;
  margin: 30px 0 50px;
}
.service-setsumei p {
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 0 0 50px;
}
.service-setsumei img {
  border-radius: 0;
  margin: 50px 0 130px;
}

.service-list .inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 900px;
}
.service-list p {
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 0 0 0px;
}
.service-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 80px 0 0;
}
.service-list ul li {
  border: 1px solid #1d2547;
  text-align: center;
  margin: 0 0 50px;
  padding: 20px 10px;
  width: 30%;
}
.service-list p.service-list-no {
  color: #1d2547;
  font-family: "Alata", sans-serif;
  font-size: 3rem;
  line-height: 1em;
}
.service-list ul li h3 {
  color: #257abb;
  font-size: 2rem;
  margin: 10px 0 0;
}
.service-list ul li img {
  margin: 20px 0;
}
.service-list-txt {
  font-size: 1.4rem;
  margin: 20px 0 0;
}

@media screen and (max-width: 1024px) {
  .serviceBg h2 {
    font-size: 2.4rem;
  }
  .service-setsumei p {
    margin: 0 0 30px;
  }
}

@media screen and (max-width: 768px) {
  .serviceBg {
    padding: 0 15px;
  }
  .serviceBg-inner {
    margin: 0 auto 80px;
    padding: 30px 0 0;
  }
  #service-wrap img.service-img {
    height: 200px;
  }
  .service-midashi {
    font-size: 1.2rem;
  }
  .service-setsumei .inner {
    padding: 0 10px;
  }
  .serviceBg h2 {
    font-size: 1.6rem;
    font-weight: normal;
    margin: 20px 0;
  }
  .service-setsumei p {
    font-size: 1.4rem;
    margin: 0 0 30px;
  }
  .service-setsumei img {
    margin: 20px 0 60px;
  }
  .service-list .inner {
    padding: 0;
  }
  .service-list p {
    font-size: 1.2rem;
    margin: 0;
  }
  .service-list ul {
    margin: 40px 10px 0;
  }
  .service-list ul li {
    margin: 0 0 40px;
    padding: 15px 10px;
    width: 47%;
  }
  .service-list ul li img {
    height: auto;
    margin: 0 0 10px;
    width: 30%;
  }
  .service-list p.service-list-no {
    font-size: 2rem;
  }
  .service-list ul li h3 {
    font-size: 1.6rem;
    margin: 10px 0;
  }
}

/* ==========================================================================
      STAFF
      ========================================================================== */

.staff-list {
  margin: 0 auto 80px;
  max-width: 1200px;
}
.staff-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* 最後のコンテンツを左寄せにする指定 */
.staff-list ul:after {
  content: "";
  display: block;
  width: 22%; /* .boxに指定したwidthと同じ幅を指定する */
  height: 0;
}
.staff-list ul:before {
  content: "";
  display: block;
  width: 22%; /* .boxに指定したwidthと同じ幅を指定する */
  height: 0;
  order: 1; /* 疑似要素beforeの順番を必ず指定する*/
}

.staff-list ul li {
  margin-bottom: 80px;
  width: 22%;
}
.staff-list ul li img {
  border-radius: 15px;
  height: auto;
  width: 100%;
}
.staff-list ul li p {
  margin-left: 5px;
}
.staff-list ul li .syozoku {
  color: #1d2547;
  font-size: 1.4rem;
}
.staff-list ul li .staff-name {
  color: #1d2547;
  font-size: 2.5rem;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .staff-list ul li {
    width: 23%;
  }
}

@media screen and (max-width: 768px) {
  .staff-list ul li {
    margin-bottom: 40px;
    width: 48%;
  }
  .staff-list ul li .syozoku {
    font-size: 1.2rem;
  }
  .staff-list ul li .staff-name {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
         Detail
         ========================================================================== */
.staff-detail .inner {
  margin: 0 auto;
  max-width: 900px;
  padding: 0 0 100px;
}
.staff-syoukai {
  height: 450px;
}
.staff-syoukai-wrap {
  position: relative;
}
.staff-syoukai-wrap .staff-name-wrap {
  display: flex;
  margin: 0 0 0 20px;
}
.staff-name {
  color: #1d2547;
  font-size: 2.2rem;
  line-height: 1em;
  margin: 0;
}
.staff-name-line {
  background-color: #1d2547;
  margin: 3px 30px;
  width: 1px;
}
.staff-syozoku {
  color: #1d2547;
  font-size: 1.4rem;
  margin: 0;
}
.staff-kana {
  color: #1d2547;
  font-family: "Alata", sans-serif;
  font-size: 1.2rem;
  margin: 8px 0 40px 23px;
}
.staff-txt {
  color: #1d2547;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.8em;
  margin: 0 0 0 20px;
}
.staff-detail .btn-wrap {
  margin: 100px 0 0;
}
.staff-syoukai-wrap .staff-name-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  margin: auto;
  display: flex;
}
.staff-name-box-inner {
  align-self: center;
}

.qa-shitsumon {
  display: flex;
  padding: 100px 0 30px;
}
.qa-shitsumon h3 {
  color: #257abb;
  font-size: 2.4rem;
  margin: 0;
}
.qa-line {
  align-self: center;
  background-color: #257abb;
  height: 2px;
  margin: 0 30px 0 0;
  width: 24px;
}
.qa-wrap p {
  font-size: 1.6rem;
  line-height: 2em;
  margin-bottom: 40px;
}

/* staff */
.m-sakurada {
  background: url(../images/staff/sakurada_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-miyaoka {
  background: url(../images/staff/miyaoka_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-tsunashima {
  background: url(../images/staff/tsunashima_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-miyake {
  background: url(../images/staff/miyake_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-iwaichi {
  background: url(../images/staff/iwaichi_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-harada {
  background: url(../images/staff/harada_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-tajima {
  background: url(../images/staff/tajima_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-ohashi {
  background: url(../images/staff/ohashi_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-takeuchi {
  background: url(../images/staff/takeuchi.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-takatani {
  background: url(../images/staff/takatani.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-honmyo {
  background: url(../images/staff/honmyou_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-okamoto {
  background: url(../images/staff/haradayumi_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-nishino {
  background: url(../images/staff/nishino2.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-kai {
  background: url(../images/staff/kai.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-seo {
  background: url(../images/staff/seo.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-kawahara {
  background: url(../images/staff/kawahara_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-kobayashi {
  background: url(../images/staff/kobayashi_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-nagamine {
  background: url(../images/staff/nagamine_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-seki {
  background: url(../images/staff/seki_nn.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-sakuradamami {
  background: url(../images/staff/sakuradamami_n.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-shiose {
  background: url(../images/staff/shiose.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-oda {
  background: url(../images/staff/oda.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-hamauzu {
  background: url(../images/staff/hamauzu_nn.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-dummy {
  background: url(../images/staff/dummy.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-hagino {
  background: url(../images/staff/hagino.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-tabuchi {
  background: url(../images/staff/tabuchi.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-yoshihara {
  background: url(../images/staff/yoshihara.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-takahashi {
  background: url(../images/staff/takahashi.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-aizawa {
  background: url(../images/staff/aizawa.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}
.m-nakada {
  background: url(../images/staff/nakada.jpg) no-repeat right top #fff;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  .staff-syoukai-wrap .staff-name-wrap {
    margin: 0;
  }
  .staff-syoukai {
    height: 250px;
  }
  .staff-name {
    font-size: 1.8rem;
  }
  .staff-kana {
    margin: 8px 0 25px 3px;
  }
  .staff-txt {
    font-size: 1.8rem;
    margin: 0;
  }
  .staff-detail .btn-wrap {
    margin: 100px 0 0;
  }
  .staff-syoukai-wrap .staff-name-box {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    margin: 30px 0 0;
  }
  .staff-name-box {
    margin: 0;
  }
  .qa-shitsumon {
    flex-wrap: wrap;
    padding: 40px 0 0;
  }
  .qa-shitsumon h3 {
    font-size: 1.8rem;
    font-weight: normal;
    order: 1;
    width: 100%;
  }
  .qa-line {
    height: 2px;
    margin: 20px 30px 20px 0;
    width: 24px;
    order: 2;
  }
  .qa-wrap p {
    font-size: 1.4rem;
    margin: 0 0 20px;
  }

  /* staff */
  .m-sakurada {
    background: url(../images/staff/sakurada_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-miyaoka {
    background: url(../images/staff/miyaoka_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-tsunashima {
    background: url(../images/staff/tsunashima_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-miyake {
    background: url(../images/staff/miyake_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-iwaichi {
    background: url(../images/staff/iwaichi_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-harada {
    background: url(../images/staff/harada_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-tajima {
    background: url(../images/staff/tajima_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-ohashi {
    background: url(../images/staff/ohashi_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-takeuchi {
    background: url(../images/staff/takeuchi_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-takatani {
    background: url(../images/staff/takatani_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-honmyo {
    background: url(../images/staff/honmyou_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-okamoto {
    background: url(../images/staff/haradayumi_n_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-nishino {
    background: url(../images/staff/nishino_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-kai {
    background: url(../images/staff/kai_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-seo {
    background: url(../images/staff/seo_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-kawahara {
    background: url(../images/staff/kawahara_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-kobayashi {
    background: url(../images/staff/kobayashi_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-nagamine {
    background: url(../images/staff/nagamine_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-seki {
    background: url(../images/staff/seki_n_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-sakuradamami {
    background: url(../images/staff/sakuradamami_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-shiose {
    background: url(../images/staff/shiose_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-oda {
    background: url(../images/staff/oda_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-hamauzu {
    background: url(../images/staff/hamauzu_n_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-dummy {
    background: url(../images/staff/dummy_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-hagino {
    background: url(../images/staff/hagino_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-tabuchi {
    background: url(../images/staff/tabuchi_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-yoshihara {
    background: url(../images/staff/yoshihara_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-takahashi {
    background: url(../images/staff/takahashi_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-aizawa {
    background: url(../images/staff/aizawa_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
  .m-nakada {
    background: url(../images/staff/nakada_sp.jpg) no-repeat center center #fff;
    background-size: cover;
  }
}

/*==================================================
      ふわっ
      ===================================*/
.staff-list .inner ul li {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time01 {
  animation-delay: 0.1s;
}
.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time03 {
  animation-delay: 0.3s;
}
.delay-time04 {
  animation-delay: 0.4s;
}
.delay-time05 {
  animation-delay: 0.5s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time07 {
  animation-delay: 0.7s;
}
.delay-time08 {
  animation-delay: 0.8s;
}
.delay-time09 {
  animation-delay: 0.9s;
}
.delay-time10 {
  animation-delay: 1s;
}
.delay-time12 {
  animation-delay: 1.2s;
}
.delay-time14 {
  animation-delay: 1.4s;
}
.delay-time16 {
  animation-delay: 1.6s;
}

#recruitBtn.fadeUp {
  animation: fadeUpAnime;
  animation-duration: 0;
  animation-fill-mode: none;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #recruitBtn.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ==========================================================================
      ABOUT
      ========================================================================== */

#about-wrap {
  margin: 0 auto;
  max-width: 1200px;
}
#about-wrap .inner {
  padding: 0 20px;
}
.about-layout-left {
  display: flex;
}
.about-layout-right {
  display: flex;
  justify-content: space-between;
}
.about-layout-left h2 {
  align-self: flex-start;
  order: 1;
}
.about-layout-left .top-work-txt {
  order: 2;
}
.about-layout-right h2 {
  align-self: flex-start;
  order: 2;
}
.about-layout-right .top-work-txt {
  margin: 0;
  order: 1;
  width: 80%;
}
.about-exp {
  margin: 100px 0 0;
  position: relative;
}
.about-exp .about-txt-wrap {
  width: 60%;
  z-index: 2;
}
.about-exp .about-txt-inner {
  background-color: #fff;
  border-radius: 15px;
  box-sizing: border-box;
  position: static;
  margin: -50px 0 0;
  padding: 50px;
  width: 100%;

  box-shadow:
    2.8px 2.8px 2.2px rgba(0, 0, 0, 0.02),
    6.7px 6.7px 5.3px rgba(0, 0, 0, 0.028),
    12.5px 12.5px 10px rgba(0, 0, 0, 0.035),
    22.3px 22.3px 17.9px rgba(0, 0, 0, 0.042),
    41.8px 41.8px 33.4px rgba(0, 0, 0, 0.05),
    100px 100px 80px rgba(0, 0, 0, 0.07);
}
#about-direct-area {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}
#about-daihyou-area {
  margin: -150px 0 0;
}
#about-gaiyou-area {
  margin: -150px 0 0;
}

.about-exp-left {
  display: flex;
  justify-content: flex-start;
}
.about-exp-right {
  display: flex;
  justify-content: flex-end;
}
.about-exp-left .about-txt-wrap {
  position: absolute;
  top: 50%;
  right: 0;
}
.about-exp-right .about-txt-wrap {
  position: absolute;
  top: 50%;
  left: 0;
}

.about-img {
  border-radius: 15px;
  object-fit: cover;
  height: 450px;
  vertical-align: bottom;
  width: 83%;
}
.about-txt-wrap h4 {
  color: #257abb;
  font-size: 2.8rem;
  margin: 0;
}
.about-txt-wrap p {
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 0;
}
.about-line {
  align-self: center;
  background-color: #257abb;
  height: 2px;
  margin: 30px 0;
  width: 30px;
}

.daihyou-aisatsu {
  margin-bottom: 200px;
}
.kaisyagaiyou {
  margin-bottom: 700px;
}
.kaisyagaiyou dl {
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  font-size: 1.6rem;
  flex-wrap: wrap;
}
.kaisyagaiyou dt {
  border-top: 1px solid #e5e5e5;
  padding: 16px 0;
  width: 25%;
}
.kaisyagaiyou dd {
  border-top: 1px solid #e5e5e5;
  padding: 16px 0;
  width: 75%;
}
.kaisyagaiyou dt:first-child {
  border-top: none;
}
.kaisyagaiyou dt:first-child + dd {
  border-top: none;
}
.bn-sdgs {
  border: 1px solid #dcdcdc;
  margin: 40px 0 0;
}
.googlemap {
  vertical-align: bottom;
  border: none;
  border-top: 5px solid #fff;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  height: 410px;
  width: 100%;
}
.margin-ratio {
  padding: 30px 0 0;
}
.margin-ratio a {
  color: #1d2547;
  margin: 30px 0 0;
  text-decoration: underline;
}
.margin-ratio a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  /* about */
  .about-wrap .inner {
    width: 100%;
  }

  .about-layout-right .top-work-txt {
    margin: 0;
    order: 1;
    width: 80%;
  }
  .about-exp {
    margin: 100px 0 0;
    position: relative;
  }
  .about-txt-wrap h4 {
    font-size: 2.2rem;
  }
  .about-txt-wrap p {
    font-size: 1.4rem;
  }
  .about-line {
    width: 40px;
  }
  .kaisyagaiyou dt {
    padding: 12px 0;
    width: 30%;
  }
  .kaisyagaiyou dd {
    padding: 12px 0;
    width: 70%;
  }
  .kaisyagaiyou dl {
    font-size: 1.4rem;
  }
  .bn-sdgs {
    margin: 30px 0 0;
  }
  .kaisyagaiyou {
    margin-bottom: 500px;
  }
}

@media screen and (max-width: 768px) {
  #about-wrap .inner {
    padding: 0;
    width: 100%;
  }

  #about-direct-area {
    margin: -80px 0 0;
    top: auto;
    transform: none;
  }
  #about-daihyou-area {
    margin: -80px 0 0;
  }
  #about-gaiyou-area {
    margin: -80px 0 0;
  }

  .about-layout-left {
    flex-wrap: wrap;
  }
  .about-layout-right {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .about-layout-left h2 {
    align-self: flex-start;
    order: 1;
  }
  .about-layout-left .top-work-txt {
    order: 2;
  }
  .about-layout-right h2 {
    align-self: flex-start;
    order: 1;
  }
  .about-layout-right .top-work-txt {
    margin: 0;
    order: 2;
    width: 100%;
  }
  .about-exp {
    margin: 40px 0 0;
  }
  .about-exp .about-txt-wrap {
    width: 96%;
  }
  .about-exp .about-txt-inner {
    border-radius: 0;
    position: static;
    top: auto;
    transform: none;
    margin: -40px 0 0;
    width: 100%;
  }
  .about-exp-left {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .about-exp-left .about-txt-wrap .about-txt-inner {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  .about-exp-right .about-txt-wrap .about-txt-inner {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  .about-exp-right {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .about-exp-left .about-txt-wrap {
    position: static;
    top: auto;
    right: 0;
  }
  .about-exp-right .about-txt-wrap {
    position: static;
    top: auto;
    left: 0;
  }
  .about-img {
    border-radius: 0;
    height: 350px;
    width: 100%;
  }
  .about-txt-wrap {
    order: 2;
  }
  .about-img {
    order: 1;
  }
  .about-txt-wrap h4 {
    font-size: 2rem;
  }
  .about-txt-wrap p {
    font-size: 1.4rem;
  }
  .about-caption {
    margin: 0;
  }
  .about-line {
    margin: 30px 0 0 20px;
    width: 30px;
  }

  .about-exp-right .about-txt-wrap {
    margin: 0 -40px 0 0;
  }

  .kaisyagaiyou dt {
    font-weight: bold;
    padding: 12px 0 3px;
    width: 100%;
  }
  .kaisyagaiyou dd {
    border: none;
    padding: 0 0 12px;
    width: 100%;
  }
  .kaisyagaiyou {
    margin-bottom: 100px;
  }
  .daihyou-aisatsu {
    margin-bottom: 80px;
  }
}

/* ==========================================================================
         SDGs
         ========================================================================== */
.sdgsIcon img {
  height: auto;
  width: 110px;
}
.sdgs-setsumei .inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 900px;
}
.sdgsIcon {
  text-align: center;
  width: 100%;
}
.sdgs-setsumei h2 {
  color: #257abb;
  font-size: 3rem;
  margin: 30px 0 50px;
}
.sdgs-setsumei p {
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 0 0 30px;
}
.sdgs-setsumei h3 {
  color: #ce4a8c;
  font-size: 2rem;
  margin: 0 0 20px;
}
.sdgs-box {
  background-color: #fff;
  border-radius: 10px;
  margin: 0 0 60px;
  padding: 24px;
}
.sdgs-icon {
  display: flex;
  justify-content: center;
}
.sdgs-icon li {
  margin: 0 10px;
}
#sdgs-wrap {
  padding: 0 0 160px;
}

@media screen and (max-width: 1024px) {
  .sdgs-setsumei h2 {
    font-size: 2.4rem;
  }
  #sdgs-wrap {
    padding: 0 0 80px;
  }
}

@media screen and (max-width: 768px) {
  .sdgsIcon img {
    height: auto;
    width: 80px;
  }
  .sdgs-setsumei h2 {
    font-size: 1.6rem;
    font-weight: normal;
    margin: 20px 0;
  }
  .sdgs-setsumei p {
    font-size: 1.4rem;
  }
  .sdgs-setsumei h3 {
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0 0 10px;
  }
  .sdgs-setsumei p {
    font-size: 1.4rem;
    margin: 0 0 20px;
  }
  .sdgs-box {
    margin: 0 0 40px;
    padding: 16px;
  }
}

/* ==========================================================================
         privacy policy
         ========================================================================== */
.privacyBg {
  padding: 0 20px;
}
.privacyBg-inner {
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 15px;
  max-width: 1200px;
  margin: 0 auto 160px;
  padding: 80px 0;
}
.privacyBg-inner a {
  text-decoration: underline;
}
.privacyBg-inner a:hover {
  text-decoration: none;
}
.privacy-contents .inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 900px;
}
.privacyBg h2 {
  color: #257abb;
  font-size: 2.6rem;
  margin: 0 0 50px;
}
.privacy-contents-1st {
  padding: 0 0 100px;
}
.privacy-contents-2nd {
  padding: 0;
}
.privacy-contents h3 {
  background-color: #ddeffa;
  color: #1d2547;
  font-size: 1.6rem;
  margin: 30px 0;
  padding: 8px 16px;
}
.privacy-contents h4 {
  font-size: 1.6rem;
  margin: 30px 0 0;
}
.privacyBg-inner p {
  font-size: 1.4rem;
  line-height: 1.8em;
  margin: 0 0 30px;
}
.privacy-contents ol {
  font-size: 1.4rem;
  line-height: 1.8em;
  margin: 20px 0 30px;
}
.privacy-contents li {
  font-size: 1.4rem;
  list-style: decimal;
  padding: 4px 0;
}
.privacyAdd {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 20px;
}
.privacyAdd p {
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .privacyBg-inner {
    margin: 0 auto 160px;
    padding: 60px 0;
  }
}

@media screen and (max-width: 768px) {
  .privacyBg-inner {
    margin: 0 auto 80px;
    padding: 30px 0;
  }
  .privacy-contents-1st {
    padding: 0 0 50px;
  }
  .privacyBg h2 {
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0 0 30px;
  }
  .privacy-contents h3 {
    font-size: 1.6rem;
    font-weight: normal;
    margin: 20px 0;
    padding: 6px 12px;
  }
  .privacy-contents h4 {
    font-size: 1.4rem;
    margin: 20px 0 0;
  }
  .privacy-contents ol {
    padding: 0 0 0 20px;
  }
  .privacy-contents li {
    margin: 0 0 0 10px;
    padding: 2px 0;
  }
}

/* ==========================================================================
      CONTACT
      ========================================================================== */

.contact-wrap {
  margin: 0 auto 150px;
  max-width: 900px;
}

.contact-read {
  font-size: 1.6rem;
  line-height: 2em;
  text-align: center;
}
.contact-tel {
  background-color: #fff;
  border-radius: 15px;
  margin: 70px 0 0;
  padding: 40px;
  text-align: center;
}
.contact-wrap h2 {
  font-size: 2.5rem;
  margin: 0;
  text-align: center;
}
.tel-wrap {
  display: flex;
  justify-content: center;
  margin: 15px 0;
}
.tel-wrap img {
  margin: 0 15px 0 0;
}
.tel-wrap p {
  color: #257abb;
  font-family: "Alata", sans-serif;
  font-size: 4rem;
}
.tel-wrap p a {
  color: #257abb;
}
.tel-jikan {
  font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
  .contact-wrap {
    margin: 0 auto 80px;
  }

  .contact-read {
    font-size: 1.4rem;
  }
  .contact-tel {
    margin: 40px 0 0;
    padding: 20px;
  }
  .contact-wrap h2 {
    font-size: 1.8rem;
  }
  .tel-wrap {
    margin: 10px 0;
  }
  .tel-wrap img {
    height: auto;
    margin: 0 15px 0 0;
    width: 30px;
  }
  .tel-wrap p {
    font-size: 2.8rem;
  }
  .tel-jikan {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
         Form
         ========================================================================== */
#formWrap {
  font-size: 16px;
  margin: 0 auto;
  max-width: 900px;
}
#formWrap dl {
  color: #555;
  margin: 30px 0 0;
}
#formWrap dt {
  box-sizing: border-box;
  font-size: 1.8rem;
  line-height: 1.6em;
  padding: 15px 0 0;
}
#formWrap dd {
  box-sizing: border-box;
  padding: 12px 0;
  margin: 0;
  min-height: 62px;
}
#formWrap dt:first-child {
  border-top: none;
}
#formWrap dt:first-child + dd {
  border-top: none;
}
#formWrap dt span {
  margin: 0 0 0 20px;
}
.req {
  color: #fa3500;
  font-size: 1.2rem;
  padding-right: 20px;
}
#formWrap input {
  border: 1px solid #e3e1e1;
  box-sizing: border-box;
  font-size: 16px;
  padding: 10px;
}
#formWrap select {
  padding: 10px;
}
#formWrap textarea {
  border: 1px solid #e3e1e1;
  box-sizing: border-box;
  font-size: 16px;
  padding: 10px;
  width: 100%;
}
#formWrap dl dd input.form_s {
  width: 75px;
}
#formWrap dl dd input.form_m {
  width: 250px;
}
#formWrap dl dd input.form_l {
  width: 100%;
}
.formBtnWrap {
  text-align: center;
}
.submitWrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 50px 0 30px;
}
.submitInner {
  text-align: center;
}
.submitBtn button,
a.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background-color: #1d2547;
  border: medium none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  padding: 5px 15px;
  transition: all 0.4s;
}

.submitBtn {
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  height: 60px;
  margin: 0 20px;
  width: 400px;
  transition: all 0.4s;
}
.submitBtn:hover {
  transition: all 0.4s;
  opacity: 0.8;
}

.returnBtn {
  background: #e9e9ed;
  border: none;
  cursor: pointer;
  height: 60px;
  margin: 0 20px;
  width: 400px;
  transition: all 0.4s;
}
.returnBtn:hover {
  background: #d0d0d6;
  transition: all 0.4s;
}
.returnBg input[type="submit"] {
  background-color: #999;
  /* background: linear-gradient(90deg, #999, #ddd);
          background: -webkit-linear-gradient(0deg, #999, #ddd); */
}
.returnBg input[type="submit"]:hover {
  background-color: #666;
  /* background: linear-gradient(90deg, #666, #bbb);
          background: -webkit-linear-gradient(0deg, #666, #bbb); */
}
#formTxtArea h2 {
  color: #009944;
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 50px;
}
#formTxtArea .recruitListWrap {
  margin: 40px 0 20px;
}
#formTxtArea .recruitList {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#formTxtArea .recruitTitle {
  background: #009944;
  box-sizing: border-box;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  color: #fff;
  padding: 10px 20px;
  margin-bottom: 15px;
  width: 30%;
  display: flex;
  align-items: center;
}

#formTxtArea .recruitContents {
  background: #daead9;
  box-sizing: border-box;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 10px 20px;
  margin-bottom: 15px;
  width: 70%;
}
#formTxtArea .privacyPolicy span {
  color: #009944;
  font-weight: bold;
}
#formWrap input[type="submit"] {
  border: none;
}
.formThanks {
  text-align: center;
}
.contactTopTxt {
  font-size: 1.6rem;
  line-height: 1.8em;
  text-align: center;
}
.contactBottomTxt {
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 50px 0 0;
}
.contactBottomTxt span {
  color: #0068b7;
  font-weight: bold;
}
.thanksTxt {
  text-align: center;
}
.contactCheckTitle {
  padding: 100px 0 0;
}
.contactThanks {
  text-align: center;
}
.contactThanks p {
  font-size: 1.6rem;
  line-height: 2.2em;
}
.contactThanks p.thanksTitle {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 100px 0 20px;
}
#check .submitWrap {
  justify-content: space-between;
}
#check .submitInner {
  width: 48%;
}
#check .submitBtn {
  width: 100%;
}
#check .returnBtn {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .submitBtn {
    width: 300px;
  }

  .returnBtn {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  #formWrap {
    font-size: 16px;
  }
  #formWrap dt {
    font-size: 92%;
  }
  .req {
    font-size: 74%;
  }
  .submitWrap {
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px 0;
  }
  .submitInner {
    margin: 0 0 30px;
    width: 100%;
  }
  #contact-check .submitInner {
    width: 46%;
  }
  .submitBtn {
    font-size: 100%;
    height: 50px;
    width: 100%;
  }
  .returnBtn {
    width: 100%;
  }
  .returnBtn:hover {
    background: #d0d0d6;
    transition-duration: 0.4s;
  }
  .contactTel p a {
    color: #fa3500;
  }
  #formTxtArea h2 {
    color: #009944;
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 50px;
  }
  #formTxtArea .recruitListWrap {
    margin: 40px 0 20px;
  }
  #formTxtArea .recruitList {
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  #formTxtArea .recruitTitle {
    background: #009944;
    box-sizing: border-box;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    color: #fff;
    padding: 10px 20px;
    margin-bottom: 15px;
    width: 30%;
    display: flex;
    align-items: center;
  }
  #formTxtArea .recruitContents {
    background: #daead9;
    box-sizing: border-box;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 10px 20px;
    margin-bottom: 15px;
    width: 70%;
  }
  #formTxtArea .privacyPolicy span {
    color: #009944;
    font-weight: bold;
  }
  #formWrap input[type="submit"] {
    border: none;
    padding: 0 20px;
  }
  .formThanks {
    text-align: center;
  }
  .contactTopTxt {
    font-size: 1.6rem;
    line-height: 1.8em;
    text-align: center;
  }
  .contactBottomTxt {
    font-size: 1.6rem;
    line-height: 1.8em;
    margin: 50px 0 0;
  }
  .contactBottomTxt span {
    color: #0068b7;
    font-weight: bold;
  }
  .submitBtn {
    font-size: 100%;
    height: 50px;
    margin: 0;
  }
  .returnBtn {
    font-size: 100%;
    height: 50px;
    margin: 0;
  }
  .thanksTxt {
    text-align: center;
  }
  .contactCheckTitle {
    padding: 50px 0 0;
  }
  .contactThanks p {
    font-size: 1.6rem;
    line-height: 1.8em;
  }
  .contactThanks p.thanksTitle {
    font-size: 100%;
    line-height: 1.4em;
    font-weight: bold;
    padding: 70px 0 20px;
  }
  #check .submitWrap {
    justify-content: space-between;
  }
  #check .submitInner {
    width: 48%;
  }
  #check .submitBtn {
    width: 100%;
  }
  #check .returnBtn {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .contactThanks {
    text-align: left;
  }
  .digital-panf p {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
      INFORMATION
      ========================================================================== */

.information-wrap {
  padding: 0 0 170px;
  margin: 0 auto;
  max-width: 1200px;
}
.information-list .inner {
  margin: 0 auto;
  max-width: 1200px;
}

.information-wrap .top-work-txt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
}

.information-wrap .info-list {
  margin-bottom: 70px;
  width: 23%;
}
.information-wrap .top-work-txt::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
.information-wrap .top-work-txt::after {
  content: "";
  display: block;
  width: 23%;
}

/* page */
.nav-links {
  text-align: center;
  margin: 50px 0 0;
}
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-numbers li .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 45px;
  height: 45px;
  background: #fff;
  border: solid 1px #ddd;
  font-size: 14px;
  color: #1d2547;
  font-weight: bold;
  transition: all 0.15s linear;
}
.Pagination-Item-Link-Icon {
  width: 20px;
}
.page-numbers li span.page-numbers.current {
  background: #1d2547;
  color: #fff;
  pointer-events: none;
}
.Pagination-Item-Link:not(.isActive):hover {
  background: #1d2547;
  color: #fff;
}
.page-numbers > * + * {
  margin-left: 12px;
}

@media screen and (max-width: 1024px) {
  .information-wrap .info-list {
    margin-bottom: 50px;
    width: 32%;
  }
  .information-wrap .top-work-txt::before {
    width: 32%;
  }
  .information-wrap .top-work-txt::after {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .information-wrap .info-list {
    margin-bottom: 30px;
    width: 48%;
  }
  .information-wrap .top-work-txt::before {
    width: 48%;
  }
  .information-wrap .top-work-txt::after {
    width: 48%;
  }
}

/* ==========================================================================
         Detail
         ========================================================================== */
.information-detail-wrap .inner {
  margin: 0 auto;
  max-width: 900px;
}
.information-detail-wrap .inner .info-date {
  color: #1d2547;
  font-family: "Alata", sans-serif;
  font-size: 1.6rem;
  margin: 0 0 20px;
  padding: 0;
  text-align: right;
}
.information-detail-wrap .inner .info-txt {
  font-size: 1.6rem;
  line-height: 2em;
  margin: 0 0 40px;
}
.information-detail-wrap .inner img {
  margin: 50px 0;
}
.information-detail-wrap .inner p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0 30px;
}

.info-detail-btn-wrap {
  margin: 0 auto;
  max-width: 1200px;
}
.info-detail-btn-wrap .btn-wrap {
  margin: 150px 0;
}

.information-detail-box .entry-header h1.entry-title {
  color: #e6460e;
  font-size: 2.5rem;
  line-height: 1.8em;
}
.information-detail-box .entry-content {
  font-size: 1.6rem;
  line-height: 2em;
}
.information-detail-box .entry-content p,
ul,
li {
  font-size: 1.6rem;
  line-height: 2em;
}
.information-detail-wrap .entry-content h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
  font-size: 2rem;
  line-height: 1.8em;
  margin: 20px 0;
}
.information-detail-wrap .entry-content img {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .information-detail-wrap .inner h2 {
    font-size: 1.6rem;
  }
  .information-detail-wrap .inner .info-date {
    font-size: 1.4rem;
    margin: 0;
    padding: 10px 0 30px;
  }
  .information-detail-wrap .inner .info-txt {
    font-size: 1.4rem;
    margin: 0 0 30px;
  }
  .information-detail-wrap .inner img {
    margin: 30px 0;
  }
  .info-detail-btn-wrap .btn-wrap {
    margin: 80px 0;
  }
  .information-detail-wrap .inner p {
    font-size: 1.4rem;
  }
}
