@charset "utf-8";
/* ===================================================================
 about.css
  - breakpoint: max-width: 767px / min-width: 768px
======================================================================*/
.f_main {
  padding: 0;
  background: none;
}
.f_footer:before {
  height: calc(100lvh - 70px);
}

/*----------------------------------------------------------
 header
------------------------------------------------------------*/
.about-header {
  padding: 30px 0 50vh;
}
.about-pageTitle {
  padding-top: 110px;
  font-size: 4.8rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .about-header {
    padding: 0 0 60vh;
  }
}

/*----------------------------------------------------------
 section
------------------------------------------------------------*/
.about-section {
  padding: 80px 0;
  background: #fff;
}
.about-section-context > p {
  margin: 30px 0;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: justify;
}

/* story */
.about-section.-story p {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .about-section + .about-section {
    padding-top: 0;
  }
  .about-section-context > p {
    font-size: 1.4rem;
  }
}

/*----------------------------------------------------------
 contents
------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .about-section-contents {
    display: grid;
    grid-template-rows: max-content 1fr;
    column-gap: 3vw;
  }
  .about-section-header {
    grid-row: 1 / 2;
    margin-bottom: 10%;
    padding-top: 3vw;
  }
  .about-section-context {
    grid-row: 2 / 3;
    padding-bottom: 3vw;
  }
  .about-section-img {
    grid-row: 1 / 3;
  }
  .about-section-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
  }

  /* story */
  .about-section.-story .about-section-header {
    margin-bottom: 80px;
    text-align: center;
  }

  /* belief */
  .about-section.-belief .about-section-contents {
    grid-template-columns: 40% 1fr;
  }
  .about-section.-belief .about-section-header {
    grid-column: 2 / 3;
    margin-left: -5px;
  }
  .about-section.-belief .about-section-context {
    grid-column: 2 / 3;
    padding-bottom: 3vw;
  }
  .about-section.-belief .about-section-img {
    grid-column: 1 / 2;

  }

  /* philosophy */
  .about-section.-philosophy .about-section-contents {
    grid-template-columns: 1fr 40%;
  }
  .about-section.-philosophy .about-section-header {
    grid-column: 1 / 2;
    margin-right: -5px;
    text-align: right;
  }
  .about-section.-philosophy .about-section-context {
    grid-column: 1 / 2;
  }
  .about-section.-philosophy .about-section-img {
    grid-column: 2 / 3;
  }
}
@media screen and (max-width: 767px) {
  .about-section-contents {
    display: flex;
    flex-direction: column;
  }
  .about-section-header {
    order: 1;
  }
  .about-section-context {
    order: 3;
    margin-top: 30px;
  }
  .about-section-img {
    order: 2;
  }
}

/* section-header
-------------------------------------------------*/
.about-section-header-title {
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  padding: 0 5px 7px;
  border-bottom: 1px solid #777;
  font-size: 6.2rem;
  color: #015d68;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.about-section-header-catch {
  padding: 0 5px;
  font-size: 2.2rem;
  color: #777;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .about-section-header {
    display: block;
    margin-bottom: 30px;
    text-align: center;
  }
  .about-section-header-title {
    margin-bottom: 8px;
    font-size: 4.2rem;
  }
  .about-section-header-catch {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-align: center;
  }
}