@charset "UTF-8";
/*--------------------------------------------------------------------------------------------------
reset
--------------------------------------------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box; }

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

ol, ul, li {
  list-style: none; }

table, th, td {
  border-collapse: collapse;
  border-spacing: 0; }

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

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

input, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  font-size: 1.6rem;
  padding: 10px;
  background: #fff;
  border: solid 1px #b2b2b2;
  border-radius: 5px; }

input[type="submit"] {
  color: #fff;
  font-size: 2.0rem;
  padding: 10px 60px;
  background: #333;
  display: inline-block;
  transition: color .5s, background-color .5s; }
  input[type="submit"]:hover {
    cursor: pointer;
    background: #999;
    transition: background-color .5s; }

/*--------------------------------------------------------------------------------------------------
base
--------------------------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  letter-spacing: 0.1rem;
  scroll-behavior: smooth;
  scroll-padding-top: 160px; }

body {
  color: #231815;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.5;
  background: #fff; }

@media screen and (max-width: 750px) {
  html {
    scroll-padding-top: 80px; }

  body {
    font-size: 1.6rem; } }
/* sp or pc */
.spOnly {
  display: none !important; }

br.pc {
  display: inline-block; }

br.sp {
  display: none; }

.none {
  display: none !important; }

@media screen and (max-width: 750px) {
  .pcOnly {
    display: none !important; }

  .spOnly {
    display: block !important; }

  .spOnly_ib {
    display: inline-block !important; }

  .none {
    display: none !important; }

  br.pc {
    display: none; }

  br.sp {
    display: inline-block; } }
/*--------------------------------------------------------------------------------------------------
layaout
--------------------------------------------------------------------------------------------------*/
.header {
  width: 100%;
  height: 100px;
  padding: 20px 0;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 9999;
  transition: box-shadow 0.5s; }
  .header.is-fixed {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.5s; }
  .header-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
  .header-logo {
    width: 290px; }
  .header-btn {
    display: none; }

.nav {
  margin-top: 10px; }
  .nav-list {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0 20px; }
    .nav-list__item a {
      font-size: 1.4rem;
      position: relative;
      display: block;
      transition: color .2s; }
      .nav-list__item a::after {
        content: "";
        width: 0;
        height: 1px;
        margin: auto;
        background: #00693e;
        transition: width .2s;
        position: absolute;
        bottom: -5px;
        right: 0;
        left: 0; }
      .nav-list__item a:hover, .nav-list__item a.current {
        color: #00693e; }
        .nav-list__item a:hover::after, .nav-list__item a.current::after {
          width: 100%; }

.main {
  padding-top: 100px; }

.section {
  margin-top: 150px; }
  .section:first-of-type, .section-smalltop {
    margin-top: 75px !important; }
  .section-brand {
    padding: 60px 0;
    background: #eceaea; }

.footer {
  margin-top: 100px; }
  .footer-contact {
    padding: 60px 20px;
    background: #999;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    grid-gap: 30px; }
    .footer-contact__title {
      color: #fff;
      font-size: 3.6rem;
      font-family: "Poppins", sans-serif;
      text-align: center;
      line-height: 1; }
    .footer-contact__desc {
      color: #fff;
      text-align: center; }
    .footer-contact__button {
      text-align: center; }
  .footer-nav {
    padding: 30px 0 10px; }
  .footer-copyright {
    font-size: 1.2rem;
    text-align: center;
    padding: 20px; }
  .footer-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .footer-flex--reverse {
      flex-direction: row-reverse; }
  .footer-logo {
    width: 290px;
    margin: auto; }

.container {
  opacity: 0; }
  .container.is-active {
    animation: fadeIn 1s linear forwards; }
  .container-lower {
    animation: fadeIn 1s linear forwards; }

.wrap {
  width: 1000px;
  margin: auto; }
  .wrap--news {
    width: 800px; }
  .wrap-field:not(:first-of-type) {
    margin-top: 100px;
    padding-top: 50px;
    border-top: dashed 1px #333; }
  .wrap-features:not(:first-of-type) {
    margin-top: 60px;
    padding-top: 60px;
    border-top: dashed 1px #333; }

@media screen and (max-width: 750px) {
  .header {
    height: auto;
    padding: 0 0 10px;
    background: white; }
    .header-flex {
      display: block; }
    .header-logo {
      width: 160px; }
    .header-btn {
      width: 50px;
      height: 40px;
      background: #fff;
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      z-index: 9999;
      display: block; }
      .header-btn__line1, .header-btn__line2 {
        transition: all 0.5s ease-out; }
      .header-btn__line1 {
        width: 30px;
        height: 3px;
        background-color: #505456;
        top: 12px;
        left: 0;
        right: 0;
        position: absolute;
        margin: auto; }
      .header-btn__line2 {
        width: 30px;
        height: 3px;
        background-color: #505456;
        top: 24px;
        left: 0;
        right: 0;
        position: absolute;
        margin: auto; }
      .header-btn.is-active .header-btn__line1,
      .header-btn.is-active .header-btn__line2 {
        transition: all 0.5s ease-out; }
      .header-btn.is-active .header-btn__line1 {
        top: 18px;
        transform: rotate(405deg); }
      .header-btn.is-active .header-btn__line2 {
        top: 18px;
        transform: rotate(-405deg); }

  .nav {
    width: 100%;
    height: 0;
    margin-top: 0;
    visibility: hidden;
    opacity: 0; }
    .nav-list {
      grid-gap: 10px 0; }
      .nav-list__item {
        width: 100%;
        border-bottom: solid 1px #f2f2f2; }
        .nav-list__item a {
          padding: 10px; }
          .nav-list__item a::after {
            content: none; }
    .nav.is-active {
      height: 100dvh;
      padding: 30px 0;
      position: relative;
      opacity: 1;
      visibility: visible;
      transition: height .5s, padding .5s, opacity .5s; }

  .main {
    padding-top: 58px; }

  .section {
    margin-top: 80px; }
    .section:first-of-type, .section-smalltop {
      margin-top: 40px !important; }
    .section-intro {
      padding: 0 20px; }

  .footer-contact {
    padding: 40px 20px;
    grid-gap: 20px; }
    .footer-contact__desc {
      font-size: 1.6rem; }
  .footer-nav {
    padding: 0; }
    .footer-nav .nav-list {
      display: none; }
  .footer-logo {
    width: 200px;
    margin: 30px auto -10px;
    position: relative;
    left: -10px; }

  .wrap {
    width: 100%;
    padding: 0 20px; }
    .wrap-field:not(:first-of-type) {
      margin-top: 60px;
      padding-top: 30px; }
    .wrap-features:not(:first-of-type) {
      margin-top: 60px;
      padding-top: 30px; } }
/*--------------------------------------------------------------------------------------------------
compornent
--------------------------------------------------------------------------------------------------*/
.color-brand {
  color: #00693e !important; }

.noto-sans {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal; }

.button {
  color: inherit;
  background: inherit;
  transition: color .5s, background-color .5s; }
  .button-box {
    font-size: 1.8rem;
    display: inline-block;
    padding: 10px 30px; }
    .button-box--gray {
      color: #fff;
      background: #999; }
      .button-box--gray:hover {
        background: #333;
        transition: background-color .5s; }
    .button-box--white {
      color: #fff;
      border: solid 2px #fff; }
      .button-box--white:hover {
        color: #333;
        background: #fff;
        transition: color .5s, background-color .5s; }

.section-title {
  color: #00693e;
  font-size: 5.0rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 40px;
  border-bottom: solid 1px #00693e; }
  .section-title--border0 {
    margin-bottom: 20px;
    padding-bottom: 0;
    border: none; }
  .section-title__en {
    font-size: 2.0rem;
    font-weight: 500;
    margin: 0 0 10px;
    display: block; }

.content-title {
  color: #00693e;
  font-size: 4.5rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px; }
  .content-title__small {
    color: #231815;
    font-size: 2.0rem;
    font-weight: 500;
    display: block; }

.content-stitle {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 10px; }

.content-desc {
  margin-top: 10px;
  line-height: 2.25; }

.content-note {
  font-size: 12px;
  text-indent: -1em;
  margin-top: 20px;
  padding-left: 1em; }

.content-link {
  color: #00693e;
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 25px;
  display: inline-block;
  position: relative; }
  .content-link:hover {
    opacity: 0.5;
    transition: opacity .3s; }
  .content-link::before {
    content: "";
    width: 80px;
    height: 2px;
    margin: auto;
    background: #00693e;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% + 10px); }
  .content-link::after {
    content: "";
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 2px solid #00693e;
    border-right: 2px solid #00693e;
    position: absolute;
    left: calc(100% + 78px);
    top: 0;
    bottom: 0;
    transform: rotate(45deg); }

@media screen and (max-width: 750px) {
  .section-title {
    font-size: 3.6rem;
    line-height: 1.25; }
    .section-title__en {
      font-size: 1.6rem;
      margin: 5px 0; }

  .content-title {
    font-size: 3.2rem;
    line-height: 1.25; }
    .content-title__small {
      font-size: 2.0rem;
      margin-top: 10px; }

  .content-stitle {
    font-size: 2.0rem; }

  .content-desc {
    line-height: 2;
    margin-top: 10px; }

  .content-link {
    text-align: right;
    padding-right: 60px;
    display: block; }
    .content-link::before {
      width: 50px;
      left: initial;
      right: 0; }
    .content-link::after {
      left: initial;
      right: 0; } }
/*--------------------------------------------------------------------------------------------------
js-inview
--------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------
page
--------------------------------------------------------------------------------------------------*/
.opening {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999; }
  .opening__flex {
    width: 100vw;
    height: 100dvh;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 20px; }
  .opening__catch {
    color: #00693e;
    font-size: 2.8rem;
    font-weight: 400;
    width: 320px;
    margin-left: 30px;
    opacity: 0;
    animation: fadeIn 1s linear 1s forwards; }
  .opening__logo {
    width: 480px;
    opacity: 0;
    animation: fadeIn 1s linear 3s forwards; }

.fv-list__item img {
  width: 100%;
  height: auto; }
.fv-list .swiper-slide-active img, .fv-list .swiper-slide-prev img {
  animation: zoomUp 7s linear 0s normal both; }

.intro-list {
  display: flex;
  flex-direction: column;
  grid-gap: 60px; }
  .intro-list__item {
    margin: auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 60px; }
    .intro-list__item--full {
      width: 1000px; }
    .intro-list__item--left {
      width: 1090px;
      position: relative;
      left: 90px; }
    .intro-list__item--right {
      width: 1090px;
      position: relative;
      right: 90px; }
  .intro-list__400 {
    width: 400px; }
  .intro-list__420 {
    width: 420px; }
  .intro-list__540 {
    width: 540px; }
  .intro-list__610 {
    width: 610px; }
  .intro-list__pic01 {
    width: 220px;
    margin: auto; }

.field-flex {
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 0 60px; }
  .field-flex--sizedown {
    padding: 0 60px; }
  .field-flex__340 {
    width: 340px; }
  .field-flex__540 {
    width: 540px; }
  .field-flex__full {
    width: 100%; }
.field-list {
  margin: 60px auto 0; }
  .field-list--smalltop {
    margin-top: 20px; }
  .field-list__client {
    text-align: center;
    margin-top: 15px;
    display: block; }
  .field-list .swiper-slide {
    width: 750px;
    height: 100%;
    transform: scale(0.75);
    /* 左右のスライドを小さくする */
    transition: transform .7s;
    /* ゆっくり小さくさせる */ }
    .field-list .swiper-slide-active {
      transform: scale(1);
      z-index: 1; }
    .field-list .swiper-slide img {
      height: auto;
      width: 100%; }

.brand-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 60px; }
  .brand-flex__340 {
    width: 340px; }
  .brand-flex__540 {
    width: 540px; }

.news-list__item {
  border-bottom: solid 1px #ccc; }
  .news-list__item:first-child {
    border-top: solid 1px #ccc; }
.news-list__link {
  padding: 15px 30px;
  display: block; }
  .news-list__link:hover {
    opacity: 0.5;
    transition: opacity .3s; }
.news-list__dl {
  overflow: hidden; }
.news-list__dt {
  font-size: 1.6rem;
  float: left;
  margin-right: 80px;
  clear: both; }
.news-list__dd {
  font-size: 1.6rem; }

.about-top {
  margin: auto;
  position: relative; }
  .about-top__title {
    color: #00693e;
    font-size: 4.0rem;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px; }
  .about-top__catch {
    color: #00693e;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 30px; }
  .about-top__pic {
    width: 300px;
    position: absolute;
    top: 0;
    right: 100px; }
.about-detail {
  margin: 150px 0 0;
  display: flex;
  flex-direction: column;
  grid-gap: 60px 0; }
  .about-detail__pic {
    width: 740px;
    margin: 60px auto 0; }

.company-info__item {
  padding: 15px 30px;
  border-bottom: solid 1px #333; }
  .company-info__item:first-child {
    border-top: solid 1px #333; }
.company-info__dl {
  overflow: hidden; }
.company-info__dt {
  float: left;
  width: 200px;
  clear: both; }
.company-info__dd {
  overflow: hidden; }
.company-orderlist__item {
  text-indent: -1.25em;
  line-height: 2;
  padding-left: 1.25em; }

.office-info {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 0 60px; }
  .office-info__pic {
    width: 440px; }
  .office-info__text {
    font-size: 1.6rem;
    width: 500px; }
    .office-info__text b {
      font-size: 1.8rem;
      font-weight: 400;
      margin-bottom: 5px;
      display: block; }
  .office-info__iframe {
    margin-top: 60px; }

.features-list {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  grid-gap: 60px; }
  .features-list__item {
    margin: auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 30px 60px; }
    .features-list__item--full {
      width: 100%; }
    .features-list__item--right {
      width: 1090px;
      position: relative;
      right: 150px; }
    .features-list__item--left {
      width: 1090px;
      position: relative;
      left: 0; }
  .features-list__400 {
    width: 400px; }
  .features-list__420 {
    width: 420px; }
  .features-list__540 {
    width: 540px; }
  .features-list__610 {
    width: 610px; }
  .features-list__pic02 {
    width: 220px;
    margin: auto; }
  .features-list__button {
    text-align: center;
    margin-top: 60px; }

.post-list {
  padding: 0 30px; }
  .post-list__item {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: solid 1px #333; }
  .post-list__date {
    color: #999;
    font-size: 1.4rem;
    width: 100%;
    margin-bottom: 10px; }
  .post-list__text {
    flex: 1; }
    .post-list__text img:not(.post-list__pic) {
      width: auto;
      margin: 20px auto;
      display: block; }
  .post-list__pic {
    width: 390px;
    float: right;
    margin: 30px 0 30px 30px; }
.post-pagenavi {
  text-align: center; }

.contact__desc {
  text-align: center; }
.contact-form {
  width: 700px;
  margin: 60px auto 30px; }
  .contact-form__table {
    width: 100%;
    border-collapse: collapse; }
    .contact-form__table th, .contact-form__table td {
      font-size: 1.6rem;
      font-weight: 400;
      text-align: left;
      vertical-align: top; }
    .contact-form__table th {
      width: 200px;
      padding: 20px 0; }
      .contact-form__table th.lines-2 {
        padding: 10px 0 20px; }
    .contact-form__table td {
      padding: 10px; }
  .contact-form__submit {
    text-align: center;
    margin-top: 60px; }
    .contact-form__submit .wpcf7-spinner {
      position: absolute;
      top: 0;
      right: 0; }

.wp-pagenavi a,
.wp-pagenavi span {
  padding: 2px 10px !important; }

@media screen and (max-width: 750px) {
  .opening__catch {
    width: 65%;
    margin-left: 10px;
    font-size: 2.0rem; }
  .opening__logo {
    width: 75%; }

  .intro {
    padding: 0 20px; }
    .intro-list {
      grid-gap: 45px; }
      .intro-list__item {
        grid-gap: 20px 60px; }
        .intro-list__item--full, .intro-list__item--left, .intro-list__item--right {
          width: 100%;
          position: static; }
        .intro-list__item--reverse {
          flex-direction: column-reverse; }
      .intro-list__400, .intro-list__420, .intro-list__540, .intro-list__610 {
        width: 100%; }
      .intro-list__pic01 {
        width: 40%;
        margin-bottom: 30px; }

  .field-flex {
    padding: 0;
    grid-gap: 0 60px; }
    .field-flex--sizedown {
      padding: 0; }
    .field-flex__340, .field-flex__540 {
      width: 100%; }
  .field-list {
    margin: 40px auto 0; }
    .field-list--smalltop {
      margin-top: 0; }
    .field-list .swiper-slide {
      width: calc(100% - 40px);
      height: auto; }

  .brand-flex {
    grid-gap: 30px; }
    .brand-flex__340, .brand-flex__540 {
      width: 100%; }

  .news-list__link {
    padding: 15px 0; }
  .news-list__dt {
    font-size: 1.4rem;
    float: none;
    margin: 0 0 5px; }

  .about-top__title {
    font-size: 3.2rem;
    line-height: 1.5; }
  .about-top__catch {
    font-size: 2.0rem; }
  .about-top__pic {
    width: 75%;
    margin: 30px auto;
    position: static; }
  .about-detail {
    margin: 0;
    grid-gap: 45px 0; }
    .about-detail__pic {
      width: 100%;
      margin: 30px auto 0; }

  .company-info__item {
    padding: 15px 0; }
  .company-info__dt {
    font-weight: 400;
    float: none;
    width: auto; }

  .office-info {
    grid-gap: 30px 60px; }
    .office-info__pic {
      width: 100%; }
    .office-info__text {
      font-size: 1.6rem;
      width: 100%; }
      .office-info__text b {
        font-size: 1.8rem;
        font-weight: 400;
        margin-bottom: 5px;
        display: block; }
    .office-info__iframe {
      width: 100%;
      margin-top: 0; }
      .office-info__iframe iframe {
        width: 100%; }

  .features-list {
    padding: 0;
    grid-gap: 45px; }
    .features-list__item {
      grid-gap: 20px 60px; }
      .features-list__item--full, .features-list__item--right, .features-list__item--left {
        width: 100%;
        position: static; }
      .features-list__item--reverse {
        flex-direction: column-reverse; }
    .features-list__400, .features-list__420, .features-list__540, .features-list__610 {
      width: 100%; }
    .features-list__pic02 {
      width: 100%;
      margin: auto; }
    .features-list__button {
      margin-top: 40px; }

  .post-list {
    padding: 0; }
    .post-list__text img:not(.post-list__pic) {
      width: 100%; }
    .post-list__pic {
      width: 100%;
      float: none;
      margin: 0 0 30px; }

  .contact__desc {
    text-align: left; }
  .contact-form {
    width: 100%;
    margin: 30px auto 0; }
    .contact-form__table {
      display: block; }
      .contact-form__table tr, .contact-form__table tbody, .contact-form__table th, .contact-form__table td {
        display: block; }
      .contact-form__table th {
        width: auto;
        margin-bottom: 10px;
        padding: 0; }
        .contact-form__table th.lines-2 {
          padding: 0; }
      .contact-form__table td {
        margin-bottom: 30px;
        padding: 0; }
    .contact-form__submit {
      text-align: center;
      margin-top: 60px;
      position: relative; } }
@keyframes zoomUp {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.15); } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/*# sourceMappingURL=style.css.map */
