@charset "UTF-8";

*, html {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --header-inner-height: 110px;
  --news-ticker-height: 0;
}

::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

em {
  font-style: normal;
  font-size: 1.3em;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #464545;
  line-height: 1.5;
  background-color: #ffffff;
}

main {
  width: 100%;
  /* overflow: hidden; */
}

img {
  max-width: 100%;
}

figure {
  img {
    display: block;
  }
}

figure:has(.logo-img) {
  background: #eee;

  img.logo-img {
    width: 25% !important;
    height: 100% !important;
    object-fit: contain !important;
    margin: auto;
    display: block;
    filter: brightness(0);
    opacity: 0.5;
    z-index: 1;
  }
}

.cats-wrapper {
  display: block;

  > .cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25em;

    li {
      display: inline-block;

      &::after {
        content: " / ";
        display: inline-block;
        margin-left: 0.25em;
      }

      &:last-of-type {
        &::after {
          display: none;
        }
      }
    }
  }
}

.works_list,
body.works:not(.single) .post-list {
  figure {
    aspect-ratio: 1;
    width: 100%;
    height: auto;
  }

  .cats-wrapper {
    font-size: 11px;
    margin-top: 3px;
    margin-bottom: 5px;
    color: rgb(151, 150, 150);
  }

  .post-date {
    font-size: 11px;
    margin-top: 3px;
    margin-bottom: 5px;
    color: rgb(151, 150, 150);
  }
}

/*----- breadcrumbs -----*/
.breadcrumbs-wrapper {
  margin: 0 auto;
}

.breadcrumbs {
  margin: 0 -4px 24px;
  /* padding: 0 0 24px; */
  font-size: 14px;
  line-height: 1.5;

  span[property='name'] {
    padding: 16px 4px;
    display: inline;
  }

  a {
    color: #86a0a1;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: color-mix(in srgb, currentColor, transparent 66%);

    &:hover {
      color: #1F2C5C;
    }
  }

  .current-item {
    color: currentColor;
  }

  /*-------------------------------スマホ1*/
  @media screen and (max-width: 800px) {
    text-align: left;
  }

  /*-------------------------------スマホ2*/
  /* @media screen and (max-width: 414px) { */
  @media screen and (max-width: 599px) {
    font-size: 11px;
    line-height: 2;
  }
}

.outline {
  width: 100%;
  /* width: 100vw; */
  border-top: 10px solid #0a3438;
  border-bottom: 10px solid #0a3438;

  &:has(.news-ticker) {
    border-top: 0;
  }
}

header {
  width: 100%;
  height: 110px;
  position: fixed;
  top: 0;
  z-index: 10;
  background: white;
  box-shadow: 0 6px 3px -3px rgba(0, 0, 0, 0.1);
}

.header-inner {
  height: var(--header-inner-height);
}

.header-inner,
.footer-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-inner {
  font-size: 14px;
  height: 40px;
  margin-top: 30px;
}

.copyright {
  font-size: 14px;
  font-weight: bold;
  text-align: right;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
  margin-bottom: 30px;
  max-width: 1200px;
  padding-right: 60px;
  line-height: 1.5;
}

footer .privacy {
  margin-left: 15px;
  position: relative;
}

/* .privacy::before {
  margin: 0 1rem;
  content: "";
  width: 1px;
  height: 130%;
  background-color: #000;
  position: absolute;
  right: 90%;
} */

.header-logo {
  display: block;
  width: 150px;
}

.footer-logo {
  display: block;
  width: 120px;
  margin-top: 20px;
}

.site-menu ul {
  display: flex;
}

.site-menu li {
  transform: skewX(150deg);
  border-right: .5px solid #000;

  /* &:has(a[href$="#information"]) {
    display: none;
  } */
}

.site-menu li a {
  font-weight: bold;
  letter-spacing: .8em;
  display: block;
  transform: skewX(-150deg);
  padding: 0 10px;
  text-indent: .8em;
}

.site-menu li:last-child {
  border-right: none;
}


select {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 0px;
}

.list_sub {
  display: none;
}

/*-------------------------------form*/

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*-------------------------------スマホ*/


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

  /*-------------------------------ヘッダ*/
  header {
    .site-menu ul {
      flex-wrap: wrap;
      justify-content: center;
      margin-left: auto;
      margin-right: auto;
    }

    .site-menu li {
      margin-bottom: 20px;
    }
  }

  .openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 25px;
    right: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #86a0a1;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: rgb(255, 255, 255);
    width: 50%;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 31px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }

  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -100%;
    width: 30%;
    height: 100vh;
    /*ナビの高さ*/
    background: linear-gradient(45deg, #1F2C5C, #86a0a1);
    /*背景色（グラデーション）*/
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    right: 0;
  }

  #g-nav,
  #g-nav.panelactive #page-link {
    width: 100%;
  }

  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /*リストのレイアウト設定*/

  #g-nav li {
    list-style: none;
    text-align: center;
    border: none;
  }

  #g-nav li a {
    color: #fff;
    text-decoration: none;
    /* padding:15px; */
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    transition: all .5s;
    border-bottom: 0.5px solid #ccc;
    /* width: 200px; */
    width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  #g-nav li a:hover {
    color: #ccc;
  }

  .list_sub {
    display: block;
    letter-spacing: 0.5em;
    text-indent: 0.5em;
    font-size: 14px;
    margin: 5px 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    /* font-weight: normal; */
  }

  /*-------------------------------フッター*/

  footer {
    margin-top: 120px;


    .footer-inner {
      flex-direction: column-reverse;
      padding-left: 0;
      padding-right: 0;
    }

    .copyright {
      text-align: center;
      padding: 0;
    }

    .site-menu {
      margin-left: -20px;
    }

    .site-menu ul {
      flex-wrap: wrap;
      /* justify-content: center; */
      justify-content: flex-start;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .site-menu li {
      margin-bottom: 20px;
    }

    .footer-logo {
      margin-top: 5px;
    }
  }
}

/*-------------------------------スマホ2*/

@media screen and (max-width: 599px) {
  :root {
    --header-inner-height: 90px;
  }

  header {
    height: var(--header-inner-height);
  }

  .header-logo {
    display: block;
    width: 130px;
  }

  .openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 17px;
    right: 17px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #86a0a1;
    transform: scale(.8);
  }

  footer {
    margin-top: 150px;
  }

}

.link-button-area {
  .link-button {
    text-align: center;
    background-color: #86a0a1;
    display: inline-block;
    width: 100%;
    line-height: 70px;
    border-radius: 10px;
    color: #ffffff;
    transition: background-color 0.3s;
    letter-spacing: .2em;

    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    border-radius: 10px;
    cursor: pointer;

    &:hover {
      background-color: #1F2C5C;
      transition: background-color 0.7s;
    }

    @media screen and (max-width: 800px) {
      font-size: 18px;
    }

    @media screen and (max-width: 599px) {
      font-size: 16px;
    }
  }
}

body.front {
  --news-ticker-height: 56px;

  *[id] {
    scroll-margin-top: calc(var(--header-inner-height) + var(--news-ticker-height));
  }

  .first-view {
    width: 100%;
    height: 712px;
    padding-top: 110px;
    background-image: url(../img/topimage.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
  }

  .first-view-text {
    max-width: 1200px;
    margin-left: 40%;
    margin-right: auto;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 5px #000000;
  }

  .first-view-text h1 {
    font-weight: bold;
    font-size: 56px;
    line-height: 72px;
    text-indent: -1em;
  }

  .first-view-text p {
    font-size: 22px;
    line-height: 2.2;
    margin-top: 20px;
  }

  /* 
.container {
  margin-top: 100px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
} */

  .container {
    display: grid;
    grid-template-columns: [x1] minmax(0, 1fr) [x2] 80px [x3] 70px [x4] minmax(0, calc(800px - 65px)) [x5] minmax(0, 1fr) [x6];

    /* margin-top: 100px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto; */
    &:has(#information) {
      > section {
        /* &#information {
          display: none;
        } */
        /* 
        &#concept {
          margin-top: 100px;
        } */
      }
    }

    > section {
      display: grid;
      grid-column: 1 / 6;
      grid-template-columns: subgrid;
      padding-top: 50px;
      padding-bottom: 50px;

      > h2 {
        grid-column: x2 / x5;
      }

      > .inner {
        grid-column: x2 / x6;
        display: grid;
        grid-template-columns: subgrid;

        > .title {
          grid-column: x2 / x3;
          position: relative;
          display: flex;
          align-items: center;

          h3 {
            margin: 0 auto;
          }

          &::before {
            content: "";
            display: inline-block;
            width: 1px;
            height: calc(100% - 150px);
            background-color: #464545;
            position: absolute;
            inset: 150px 0 0;
            margin: 0 auto;
            /* top: 150px; */
            /* left: -92px; */
            animation: pathmove 5s ease-in-out infinite;
            opacity: 0;
          }
        }

        > .contents {
          display: grid;
          grid-template-columns: subgrid;
          grid-column: x4 / x5;

          &:has(.slide-container) {
            grid-column: x4 / x6;
          }

          > .slide-container {
            grid-column: x4 / x6;
          }

          > *:not(.slide-container) {
            grid-column: x4 / x5;
          }
        }
      }
    }

    @media screen and (max-width: 800px) {
      display: flex;
      flex-direction: column;
      margin-right: auto;
      margin-left: auto;

      > section {
        display: block;

        > .inner {
          display: block;

          > .contents {
            display: block;

            .slider,
            .works_slider {
              width: 100%;
            }
          }
        }
      }
    }
  }

  /*
.slide-container {
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  width: 100vw;
}*/

  .inner {
    display: flex;
  }

  .contents {
    /* max-width: 700px;
  margin-left: 70px; */
    position: relative;
  }

  /* .contents::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: calc(100% - 150px);
  background-color: #464545;
  position: absolute;
  top: 150px;
  left: -92px;
  animation: pathmove 5s ease-in-out infinite;
  opacity: 0;
} */


  .title {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-lr;
    font-size: 25px;
    /* margin-left: 20px; */
    letter-spacing: 0.5em;
  }

  .container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 65px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #788891;
  }

  .container h2::before {
    content: "chapter";
    display: block;
    margin-bottom: -20px;
    margin-left: 7px;
    font-size: 18px;
    letter-spacing: 0;
  }

  .outline_character {
    font-family: 'Montserrat', sans-serif;
    font-size: 65px;
    font-weight: 700;
    margin-left: 40px;
    color: #ffffff;
    text-shadow: 1.5px 1.5px 0 #788891, -1.5px -1.5px 0 #788891,
      -1.5px 1.5px 0 #788891, 1.5px -1.5px 0 #788891,
      0px 1.5px 0 #788891, 0 -1.5px 0 #788891,
      -1.5px 0 0 #788891, 1.5px 0 0 #788891;
  }

  .news-ticker {
    background: #0a3438;
    position: sticky;
    top: var(--header-inner-height);
    z-index: 10;

    body:has(.openbtn.active) & {
      z-index: -1;
    }

    .news-ticker-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      justify-content: space-between;
      align-items: center;
      padding-right: 20px;
      box-sizing: border-box;
      width: 100%;
      /* max-width: 900px;
      margin-left: auto;
      margin-right: auto; */
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: calc(40px - 15px);
      padding-right: calc(40px + 15px);

      .link-button {
        text-align: center;
        font-size: 0.8em;
        line-height: 1.5;
        padding: 10px 20px;
        width: fit-content;
        white-space: nowrap;
      }
    }

    ul {
      text-align: center;
      width: fit-content;

      a {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        color: #fff;
        text-decoration: none;
        gap: 1em;
        padding: 15px 15px;
        transition: 0.3s ease;

        &:hover {
          color: #86a0a1;
        }

        p {
          text-align: left;
          width: 100%;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
        }
      }
    }

    .link {
      font-size: 10px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      color: #0a3438;
      background: #D9E0E4;
      border: 1px solid rgba();
      padding: 5px 15px;
      display: inline-block;
      border-radius: 5px;
      transition: 0.3s ease;
      letter-spacing: .2em;

      &:hover {
        background: #86a0a1;
      }
    }

    @media screen and (max-width: 800px) {
      .news-ticker-inner {
        padding-right: 30px;
      }
    }

    @media screen and (max-width: 599px) {
      font-size: 14px;

      .news-ticker-inner {
        padding-left: 0;
        padding-right: 5svw;
      }

      ul a {
        padding: 15px 5svw;
      }
    }
  }

  /* front information */
  /* .information .contents ul{

  } */

  /* front concept */
  .concept h2 {
    position: relative;
  }

  .concept h2::after {
    content: "";
    position: absolute;
    display: inline-block;
    /* width: 100px;
    height: 100px;
    margin-left: 30px;
    margin-top: -15px;
    */
    width: 1.53846em;
    height: 1.53846em;
    margin-left: 0.461em;
    margin-top: -0.23em;
    background: url(../img/concept.svg) no-repeat;
    background-size: contain;
  }

  .concept h4 {
    font-size: 35px;
    line-height: 3;
  }

  .content h2 {
    position: relative;
  }

  .content h2::after {
    content: "";
    position: absolute;
    display: inline-block;
    /* width: 85px;
    height: 85px;
    margin-left: 20px;
    margin-top: 0px;
    */
    width: 1.30769em;
    height: 1.30769em;
    margin-left: 0.30769em;
    margin-top: 0;
    background: url(../img/service.svg) no-repeat;
    background-size: contain;
  }

  .content .contents {
    p + p {
      margin-top: 1em;
    }
  }

  /* front works */
  .works h2 {
    position: relative;
  }

  .works h2::after {
    content: "";
    position: absolute;
    display: inline-block;
    /* width: 110px;
    height: 110px;
    margin-left: 30px;
    margin-top: 12px;
    */
    width: 1.6923em;
    height: 1.6923em;
    margin-left: 0.461em;
    margin-top: 0.1846em;
    background: url(../img/works.svg) no-repeat;
    background-size: contain;
  }

  /* front recruit */
  .recruit h2 {
    position: relative;
  }

  .recruit h2::after {
    content: "";
    position: absolute;
    display: inline-block;
    /* width: 80px;
    height: 80px;
    margin-left: 30px;
    margin-top: 3px;
    */
    width: 1.23em;
    height: 1.23em;
    margin-left: 0.461em;
    margin-top: 0.0461em;
    background: url(../img/recruit.svg) no-repeat;
    background-size: contain;
  }

  /* front contact */
  .contact h2 {
    position: relative;
  }

  .contact h2::after {
    content: "";
    position: absolute;
    display: inline-block;
    /* width: 80px;
    height: 80px;
    margin-left: 30px;
    margin-top: 18px;
    */
    width: 1.23em;
    height: 1.23em;
    margin-left: 0.461em;
    margin-top: 0.2769em;
    background: url(../img/contact.svg) no-repeat;
    background-size: contain;
  }

  /* front about */
  .about h2 {
    position: relative;
  }

  .about h2::after {
    content: "";
    position: absolute;
    display: inline-block;
    /* width: 90px;
    height: 90px;
    margin-left: 30px;
    margin-top: -5px;
    */
    width: 1.3846em;
    height: 1.3846em;
    margin-left: 0.461em;
    margin-top: -0.0769em;
    background: url(../img/about.svg) no-repeat;
    background-size: contain;
  }

  .subtitle {
    border-top: 1px solid #464545;
    border-bottom: 1px solid #464545;
    margin: 30px 0;
  }

  .subtitle_2 {
    border-top: 1px solid #464545;
    border-bottom: 1px solid #464545;
    margin: -10px 0 30px 0;
  }

  .container .subtitle > *,
  .container .subtitle_2 > * {
    font-size: 18px;
    line-height: 3;
    letter-spacing: .5em;
    margin-left: 30px;
  }

  .concept p {
    font-size: 20px;
    line-height: 2.5;
    text-align: justify;
    letter-spacing: -0.05em;

    + p {
      margin-top: 1em;
    }
  }

  .recruit p, .contact p {
    width: 100%;
    font-size: 20px;
    line-height: 2.5;
    text-align: justify;
  }

  .content p, .works p {
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
  }

  .information {
    /* margin: 100px calc(50% - 50vw); */
    /* padding: 50px 0; */
  }

  .information h2 {
    position: relative;
  }

  .information h2::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 100px;
    background: url(../img/information.svg) no-repeat;
    background-size: contain;
    margin-left: 20px;
    margin-top: 0;
  }

  .container > section:first-of-type {
    /* margin-top: 0 !important; */
    /* margin-top: 50px !important; */
    /* padding-top: 50px; */
  }

  .container > section:last-of-type {
    /* margin-bottom: 0 !important; */
    /* padding-bottom: 0 !important; */
  }

  /* .container > section:nth-of-type(odd) { */
  .container > section:nth-of-type(even) {
    /* .content, .recruit, .about { */
    /* margin: 100px calc(50% - 50vw); */
    /* margin: 50px calc(50% - 50vw);
    padding: 50px calc(50vw - 50%); */
    background-color: #D9E0E4;
  }

  .container > section{
    /* margin: 0 calc(50% - 50vw); */
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }

  /* .about {
    margin-bottom: 50px;
  } */

  .link-button-area {
    text-align: center;
    margin-top: 40px;
  }

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


  .table-01 {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 5px;
    border-top: 3px solid #788891;
    border-bottom: 3px solid #788891;
  }


  .table-01 th,
  .table-01 td {
    padding: 15px 20px 15px;
    border-bottom: 1px solid #788891;
  }

  .table-01 th {
    background-color: #f5f5f5;
    width: 20%;
  }

  .map {
    display: block;
    width: 100%;
    height: 300px;
    margin: 10px 0;
  }

  a[href*="tel:"] {
    pointer-events: none;
  }

  /*-------------------------------スマホ*/
  @media screen and (max-width: 800px) {

    .first-view {
      background-image: url(../img/topimage_mb.jpg);
      padding-top: 110px;
      min-height: 70vh;
      height: auto;
    }

    .first-view-text h1 {
      font-size: 45px;
      line-height: 1.5em;
    }

    .first-view-text p {
      font-size: 20px;
      line-height: 2em;
    }

    .first-view-text {
      /* margin-left: 10%;
      margin-right: 10%;
      margin-top: 30%; */
      margin: 50% 10% 10%;
    }

    .inner {
      display: block;
    }

    .container {
      max-width: 800px;
      /* width: 90%; */
      /* margin-top: 50px; */
      /* padding: 0 5px; */
      > section {
        padding-left: 5%;
        padding-right: 5%;
      }
    }

    .about {
      margin-bottom: 0;
    }

    .container h2 {
      font-size: 40px;
    }

    .outline_character {
      font-size: 40px;
      margin-left: 20px;
    }

    .container h2::before {
      font-size: 10px;
      margin-bottom: -10px;
    }

    section h2::after {
      /* transform: scale(.8); */
      /* transform: scale(.7);
      transform-origin: left center; */
    }

    /* .information h2::after {
      margin-left: -20px;
      margin-top: -15px;
    }

    .concept h2::after {
      margin-left: -20px;
      margin-top: -25px;
    }

    .content h2::after {
      margin-left: -15px;
      margin-top: -15px;
    }

    .works h2::after {
      margin-left: -15px;
      margin-top: -13px;
    }

    .recruit h2::after {
      margin-left: -15px;
      margin-top: -13px;
    }

    .contact h2::after {
      transform: scale(.4);
      margin-left: -20px;
      margin-top: -4px;
    }

    .about h2::after {
      margin-left: -15px;
      margin-top: -20px;
    } */

    .title {
      writing-mode: horizontal-tb;
      font-size: 20px;
      margin-left: -5px;

      h3 {
        margin: 0 !important;
      }
    }

    .contents::before {
      display: none;
    }

    .contents {
      max-width: 95%;
      margin-left: auto;
      margin-right: auto;
    }

    .concept h4 {
      font-size: 25px;
      line-height: 3;
      letter-spacing: 0.2em;
    }

    .concept_lead1 {
      display: block;
      font-size: 16px;
      line-height: 2.7;
    }

    .container .subtitle > * {
      font-size: 15px;
      line-height: 3;
      letter-spacing: 0.3em;
      margin-left: 20px;
    }

    .content .contents > p {
      margin-left: auto;
      margin-right: auto;
      margin-top: -15px;
    }

    .content .contents p {
      font-size: 10px;
      line-height: 1.7;
    }

    .works .contents > p {
      margin-left: auto;
      margin-right: auto;
      margin-top: -15px;
      font-size: 10px;
      line-height: 1.7;
    }
    .container > section {
      padding-top: 35px;
      padding-bottom: 35px;
      /* margin: 0 auto; */
    }
    /* .content, .recruit, .about { */
    .container > section:nth-of-type(even) {
      /* margin: 35px calc(50% - 50vw); */
      /* padding: 35px calc(50vw - 50%); */
      /* background-color: #D9E0E4; */
    }

    .subtitle {
      display: block;
      margin-left: auto;
      margin-right: auto;
      margin-top: -15px;
    }

    .recruit p, .contact p {
      margin-top: 15px;
      margin-left: auto;
      margin-right: auto;
      font-size: 14px;
      line-height: 2;
      letter-spacing: 0.2em;
    }

    .link-button-area {
      margin-top: 20px;
    }

    .link-button {
      line-height: 55px;
      /* font-size: 18px; */
    }

    .table-01,
    .table-01 tbody,
    .table-01 tr,
    .table-01 td,
    .table-01 th {
      display: block;
    }

    .table-01 th {
      background: -moz-linear-gradient(left, #f5f5f5, #D9E0E4);
      background: -webkit-linear-gradient(left, #f5f5f5, #D9E0E4);
      background: linear-gradient(to right, #f5f5f5, #D9E0E4);
      width: auto;
      text-align: left;
    }

    .table-01 th,
    .table-01 td {
      border: none;
    }

    .table-01 tr:last-of-type > *:last-of-type{
      border-bottom: 0;
    }
    .table-01 {
      font-size: 14px;
    }

    a[href*="tel:"] {
      pointer-events: initial;
    }

  }

  /*-------------------------------スマホ2*/

  @media screen and (max-width: 599px) {

    .first-view {
      height: max(65vh, 402px);
      /* min-height: calc(100vh - var(--news-ticker-height)); */
    }

    .first-view-text h1 {
      font-size: 30px;
      line-height: 1.5em;
      padding-top: 25px;
      letter-spacing: .1em;
    }

    .first-view-text p {
      font-size: 14px;
      line-height: 1.7em;
      margin-top: 15px;
    }

    .first-view-text {
      margin-left: 10%;
      margin-right: 10%;
      margin-top: 27%;
    }

    .container {
      margin-top: 0;
    }

    .outline_character {
      font-size: 35px;
      /* font-size: 22px; */
      margin-left: 10px;
      vertical-align: middle;
    }

    .concept p {
      font-size: 14px;
      line-height: 2;
      letter-spacing: .07em;
    }

    .container .subtitle > *,
    .container .subtitle_2 > * {
      font-size: 13px;
    }

    .recruit p, .contact p {
      font-size: 13px;
      line-height: 1.8;
    }

    .about {
      margin-bottom: 0;
    }

    .table-01 th,
    .table-01 td {
      padding: 10px 15px 10px;
      border-bottom: .5px solid #788891;
    }

    /* .link-button {
      font-size: 16px;
    } */
  }
}

body.works {
  .title {

    > span,
    > h1 {
      &::after {
        /* width: 55px;
        height: 55px; */
        width: 1.4473em;
        height: 1.4473em;
        background: url(../img/works.svg) no-repeat;
        margin-left: 10px;
        margin-top: 12px;
      }
    }
  }
}

body.information {
  .title {

    > span,
    > h1 {
      &::after {
        /* width: 55px;
        height: 55px; */
        width: 1.4473em;
        height: 1.4473em;
        background: url(../img/information.svg) no-repeat;
        margin-left: 10px;
        margin-top: 8px;
      }
    }
  }
}

body.works,
body.information {
  .title {

    > span,
    > h1 {
      display: block;
      margin-right: 1em;

      &::after {
        content: "";
        display: inline-block;
        background-size: contain;
        position: absolute;
      }
    }
  }
}

.information .contents ul,
body.information:not(.single) .post-list {
    margin-top: 20px;
    border-top: 3px solid #788891;
    border-bottom: 3px solid #788891;
    padding: 20px 0;
  &:has( > li) {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0;
  }
  li, li a {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 2;
  }

  li {
    border-top: 1px solid #788891;

    &:first-of-type {
      border-top: 0;
    }
  }

  li a {
    gap: 0;
    background: #f5f5f5;
    padding: 15px 0;
    transition: 0.3s ease;
    padding: 20px;
    gap: 20px;

    &:hover {
      color: #86a0a1;
      background: #fafafa;
    }

    /* > * {
      padding: 0 20px;
    } */

    time {
      color: #788891;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
    }
  }

  @media screen and (max-width: 599px) {
    li, li a {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    li a {
      display: flex;
      flex-direction: column;
      /* > * {
        padding-top: 0;
        padding-bottom: 0;
      } */
    }
  }
}

body.information:not(.single) {
  /* .post-list{
       display: grid;
    grid-template-columns: auto minmax(0,1fr);
    border-top: 3px solid #788891;
    border-bottom: 3px solid #788891;
    margin-top: 20px;
    li, a{
      display: grid;
      grid-template-columns: subgrid;
      grid-column: span 2;
    }
    li{
      border-top: 1px solid #788891;
      background: #f5f5f5;
      &:first-of-type{
        border-top: 0;
      }
    }
    a{
      gap: 0;
      transition: 0.3s ease;
      &:hover{
        color: #1F2C5C;
      }
      >* {
      padding: 15px 20px 15px;
      }
      time{
        font-family: 'Montserrat', sans-serif;
      }   
    }
    
  } */
}

body.works:not(.single) {

  p.title-p {
    letter-spacing: 0.2em;
    font-size: 17px;
    margin-top: 5px;
    padding-bottom: 15px;
    max-width: 900px;
    border-bottom: 1px solid #464545;
  }

  .post-list {
    width: 90%;
    margin-top: 60px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 240px));
    /* grid-template-columns: repeat(auto-fit, 240px); */
    column-gap: 70px;
    row-gap: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;

    figure {
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    .txt {
      .tl {
        font-size: 15px;
        font-weight: bold;
        margin-top: 15px;
      }

      > p {
        font-size: 14px;
        margin-top: 3px;
        margin-bottom: 5px;
      }
    }

    /* .cats-wrapper {
      font-size: 14px;
    } */
  }

  /*-------------------------------スマホ1*/
  @media screen and (max-width: 800px) {
    .post-list {
      grid-template-columns: repeat(2, minmax(0, 240px));
      width: fit-content;
      margin-right: auto;
      margin-left: auto;
    }

    /* .title {
      margin-top: 130px;
    } */
  }

  /*-------------------------------スマホ2*/
  @media screen and (max-width: 599px) {
    .post-list {
      grid-template-columns: repeat(1, minmax(0, 240px));
    }

    /* .title {
      margin-top: 100px;
    } */

    .post-list {
      margin-bottom: 40px;
    }
  }
}

.post-date {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
body.information.single {
.thumbnail {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  img{
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
  }
}

}
body.information.single,
body.works.single {

  .post-title {
    /* margin-top: 180px; */
    color: #464545;
    /* height: 40px;
    margin-right: auto;
    margin-left: auto; */
    /* padding-left: 20px; */
    /* padding-right: 20px; */
    /* padding-left: 0; */
    padding-bottom: 16px;
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 0.3em;
    border-bottom: 1px solid #464545;

    + .post-date {
      display: block;
      margin-top: -20px;
      margin-bottom: 30px;
      /* padding-left: 20px; */
    }
  }

  h1 {
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 0.3em;
  }

  .link-button-area {
    margin-top: 20px;
    /* max-width: 900px; */
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 100px;
  }

  .link-button-area p {
    font-size: 14px;
  }

  .link-button {
    margin-bottom: 20px;
  }

  @media screen and (max-width: 800px) {
    .link-button-area {
      width: 85%;
      margin-left: auto;
      margin-right: auto;
    }
  }

  /*-------------------------------スマホ2*/
  @media screen and (max-width: 599px) {
    .post-title {
      font-size: 16px;
    }

    .link-button {
      line-height: 55px;
    }

    .link-button-area {
      margin-bottom: 30px;
    }
  }
}

body.works.single {
  /* .container {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
  } */

  .visual {
    margin-bottom: 100px;

    h2 {
      font-size: 17px;
      color: #464545;
      margin-top: 0;
      margin-bottom: 5px;
      padding-left: 20px;
      letter-spacing: 0.2em;
    }

    .cats-wrapper {
      font-size: 14px;
      margin-bottom: 10px;
      padding-left: 20px;
    }

    .adjust-box {
      position: relative;
      width: 100%;
      height: auto;
      background: #e5eaee;
      margin-bottom: 30px;
    }

    /* .adjust-box:before {
    content: "";
    display: block;
    padding-top: 65%;
  } */

    .box-inner {
      /* aspect-ratio: 800 / 520; */
      aspect-ratio: 900 / 550;
      width: 100%;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;

      img {
        width: 100%;
        height: auto;
        /* height: 100%; */
        max-width: 85%;
        /* max-height: 75%; */
        max-height: 80%;
        object-fit: contain;
        filter: drop-shadow(5px 5px 5px #aaa);

        &[src*='.svg'] {
          filter: none;
          /* width: auto;
          height: auto;
          max-width: 50%; */
        }
      }

      /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
    }

    .box-inner.coming-soon {
      display: flex;
      align-items: center;
      justify-content: center;

      p {
        font-size: 1.25em;
      }
    }
  }

  /*-------------------------------スマホ*/
  @media screen and (max-width: 800px) {
    .visual {
      margin-bottom: 70px;
      width: 85%;
      margin-left: auto;
      margin-right: auto;
    }
  }

  /*-------------------------------スマホ2*/
  @media screen and (max-width: 599px) {
    .visual {
      h2 {
        font-size: 14px;
        letter-spacing: 0.1em;
        padding-left: 5px;
      }

      .cats-wrapper,
      p {
        padding-left: 5px;
      }
    }

    .visual {
      margin-bottom: 50px;
    }
  }
}

body.contact {

  .container {
    margin-top: 150px;
    width: 900px;
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 100px;
  }

  h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    text-shadow: 1.5px 1.5px 0 #788891, -1.5px -1.5px 0 #788891,
      -1.5px 1.5px 0 #788891, 1.5px -1.5px 0 #788891,
      0px 1.5px 0 #788891, 0 -1.5px 0 #788891,
      -1.5px 0 0 #788891, 1.5px 0 0 #788891;
  }

  h1::after {
    content: "";
    display: inline-block;
    /* width: 40px;
    height: 40px;
    margin-left: 10px;
    margin-top: 15px; */
    width: 1em;
    height: 1em;
    margin-left: 0.25em;
    margin-top: 0.375em;
    background: url(../img/contact.svg) no-repeat;
    background-size: contain;
    position: absolute;
  }

  p.title-p {
    letter-spacing: 0.2em;
    font-size: 17px;
    margin: 5px 0 30px;
  }

  h2 {
    margin-top: 30px;
    font-size: 17px;
  }

  .attention p {
    font-size: 14px;
    letter-spacing: 0.2em;
    line-height: 2em;
    margin: 20px 0 30px;
  }

  .attention {
    border-top: 1px solid #464545;
    border-bottom: 1px solid #464545;
    margin: 30px 0;
    h2{
      color: #464545;
      letter-spacing: 0;
    }
    a{
      color: #788891;
      text-decoration: underline;
    }
  }

  .form-area dt {
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
  }

  .form-area dt .required {
    font-size: 11px;
    color: #80808a;
    margin-left: 10px;
  }

  .form-area dd {
    width: 100%;
    margin-bottom: 25px;
    margin-top: 3px;

    select {
      -webkit-appearance: auto;
      appearance: auto;
      padding: 5px;
    }

    textarea {
      border: 1px solid currentColor;
    }
  }

  .input-text {
    width: 100%;
    height: 40px;
    background-color: #D9E0E4;
    border: none;
    padding: 10px;
  }

  input,
  select,
  textarea {
    outline: none;
    -webkit-appearance: none;
    appearance: none;
  }

  select {
    color: #000000;
  }

  .select_wrap {
    position: relative;
    z-index: 1;
  }

  .select_wrap .icon1 {
    position: absolute;
    z-index: 2;
    left: 230px;
    top: 2px;
    width: 50px;
    height: calc(100% - 2px);
    pointer-events: none;
  }

  .select_wrap .icon1:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -10px;
    transform: rotate(-45deg);
    width: 10px;
    height: 10px;
    border-bottom: 1px solid #464545;
    border-left: 1px solid #464545;
  }

  .select-box {
    width: 300px;
    height: 40px;
    font-size: 16px;
    padding-left: 10px;
  }

  .select-box::after {
    position: absolute;
    top: 30%;
    /* 矢印の位置 */
    right: 15px;
    /* 矢印の位置 */
    width: 10px;
    /* 矢印の大きさ */
    height: 10px;
    /* 矢印の大きさ */
    border-top: 3px solid #58504A;
    /* 矢印の線 */
    border-right: 3px solid #58504A;
    /* 矢印の線 */
    -webkit-transform: rotate(135deg);
    /* 矢印の傾き */
    transform: rotate(135deg);
    /* 矢印の傾き */
    pointer-events: none;
    /* 矢印部分もクリック可能にする */
    content: "";
  }

  .radio label {
    position: relative;
    padding-left: 1.25em;
    margin-right: 1em;
    line-height: 2.5em;
  }

  .radio label::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 17px;
    height: 17px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #eee;
  }

  .radio label:has(input:checked)::after {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 3px;
    width: 11px;
    height: 11px;
    background: #1F2C5C;
    border-radius: 50%;
  }

  .wpcf7-radio {
    .wpcf7-list-item {
      margin: 0 1em 0 0;
    }
  }

  .message {
    width: 100%;
    height: 260px;
    padding: 10px;
    line-height: 1.5;
    font-size: 100%;
    letter-spacing: .1em;
  }

  .confirm-text {
    font-size: 14px;
    line-height: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .submit-button {
    background-color: #86a0a1;
    display: inline-block;
    text-align: center;
    width: 60%;
    line-height: 60px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    transition: background-color 0.3s;
    border: none;
    margin-bottom: 50px;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 1.5em;
    text-indent: 1.5em;
  }

  .submit-button:hover {
    background-color: #1F2C5C;
    transition: background-color 0.7s;
  }

  /*-------------------------------スマホ*/
  @media screen and (max-width: 800px) {

    .container {
      margin-top: 130px;
    }

    .submit-button {
      width: 100%;
    }
    select{
      width: 100%;
    }

  }

  /*-------------------------------スマホ2*/

  @media screen and (max-width: 599px) {

    .container {
      margin-top: 100px;
    }

    .select_wrap .icon1 {
      position: absolute;
      z-index: 2;
      left: 80%;
      top: 2px;
      width: 50px;
      height: calc(100% - 2px);
      pointer-events: none;
    }

    .select-box {
      width: 100%;
      height: 40px;
      font-size: 16px;
      padding-left: 10px;
    }

    .attention p {
      font-size: 13px;
      letter-spacing: 0.1em;
      line-height: 1.7em;
      margin: 10px 0 30px;
    }

    .radio label::before {
      content: "";
      display: block;
      position: absolute;
      top: -0.7;
      left: 0;
      width: 17px;
      height: 17px;
      border: 1px solid #ddd;
      border-radius: 50%;
      background: #eee;
    }

    .radio input:checked + label::after {
      content: "";
      display: block;
      position: absolute;
      top: 2.3px;
      left: 3px;
      width: 11px;
      height: 11px;
      background: #1F2C5C;
      border-radius: 50%;
    }


    .message {
      width: 100%;
      height: 150px;
    }
  }
}

body:not(.front) {
  .container {
    margin-top: 125px;
    width: 900px;
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
  }

  .title {
    margin-top: 30px;

    > h1,
    > span {
      font-family: 'Montserrat', sans-serif;
      /* font-size: 38px; */
      font-size: 30px;
      line-height: 1.5;
      word-break: break-all;
      letter-spacing: 0.1em;
      font-weight: 700;
      color: #ffffff;
      position: relative;
      text-shadow: 1.5px 1.5px 0 #788891, -1.5px -1.5px 0 #788891,
        -1.5px 1.5px 0 #788891, 1.5px -1.5px 0 #788891,
        0px 1.5px 0 #788891, 0 -1.5px 0 #788891,
        -1.5px 0 0 #788891, 1.5px 0 0 #788891;
    }
  }

  p.title-p {
    letter-spacing: 0.2em;
    font-size: 17px;
    margin: 5px 0 30px;
  }

  .body {
    margin: 30px 0 100px;
  }

  h2 {
    margin-top: 30px;
    font-size: 17px;
    letter-spacing: 0.2em;
    color: #788891;
  }

  /*-------------------------------スマホ*/
  @media screen and (max-width: 800px) {

    .container {
      margin-top: 130px;
      width: 100%;
    }

    .body {
      margin: 30px 0 60px;
    }

  }

  /*-------------------------------スマホ2*/
  @media screen and (max-width: 599px) {

    .container {
      margin-top: 100px;
    }

    h1 {
      line-height: 1.2;
      margin-bottom: 20px;
    }
  }

}

body.privacy {
  h1::after {
    content: "";
    display: inline-block;
    /* width: 40px;
    height: 40px;
    margin-left: 10px;
    margin-top: 9.5px;
    */
    width: 1.0526em;
    height: 1.0526em;
    margin-left: 0.25em;
    margin-top: 0.2375em;
    background: url(../img/privacy.svg) no-repeat;
    background-size: contain;
    position: absolute;
  }

  .body p {
    font-size: 14px;
    line-height: 2em;
    margin: 20px 0 30px;
  }

  /* .attention {
    margin: 30px 0 100px;
  } */

  .p-contents {
    border-top: 1px solid #464545;
  }

  /*-------------------------------スマホ2*/
  @media screen and (max-width: 599px) {

    h1::after {
      margin-top: 4px;
    }

    .body p {
      font-size: 13px;
      line-height: 1.7em;
      margin: 10px 0 30px;
    }
  }
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 150px;
    opacity: 0;
  }

  30% {
    height: calc(100% - 150px);
    opacity: 1;
  }

  100% {
    height: calc(100% - 150px);
    opacity: 0;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navigation {
  text-align: center;

  a {
    color: var(--link-color);
    transition: 0.3s ease;

    &:hover {
      opacity: 0.7;
    }
  }

  .page-numbers {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 10px;

    &.current {
      font-weight: 700;
      color: #464545;
    }
  }
}