@charset "UTF-8";

/*====================================================================
topPageFvSec
====================================================================*/
.secKv {
  margin: 0 0 12rem 0rem;
  padding: 0;
}

.secKv__container {
  margin: 0 auto;
  width: 100rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.secKv__ttl {
  max-width: 70rem;
}

.secKv__ttl h1 {
  margin: 0 0 6.5rem;
  color: #e60020;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 100px;
  line-height: 1.3;
}

.secKv__ttl h2 {
  margin-left: 1rem;
  font-size: 38px;
  letter-spacing: 0.3em;
  line-height: 1.9;
}

.secKv__figure{
  width: 46.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.secKv__figureImg {
  width: 13.5rem;
  margin-bottom: 2.7rem;
  opacity: 0;
}

.secKv__figureImg:nth-of-type(7), .secKv__figureImg:nth-of-type(8), .secKv__figureImg:nth-of-type(9){
  margin-bottom: 0;
}

.secKv__figureImg:nth-of-type(1) {
  animation: rotation 1s ease 0.4s 1 forwards;
}
.secKv__figureImg:nth-of-type(6) {
  animation: rotation 1s ease 0.6s 1 forwards;
}
.secKv__figureImg:nth-of-type(8) {
  animation: rotation 1s ease 0.8s 1 forwards;
}
.secKv__figureImg:nth-of-type(4) {
  animation: rotation 1s ease 1.0s 1 forwards;
}
.secKv__figureImg:nth-of-type(3) {
  animation: rotation 1s ease 1.2s 1 forwards;
}
.secKv__figureImg:nth-of-type(9) {
  animation: rotation 1s ease 1.4s 1 forwards;
}
.secKv__figureImg:nth-of-type(2) {
  animation: rotation 1s ease 1.6s 1 forwards;
}
.secKv__figureImg:nth-of-type(7) {
  animation: rotation 1s ease 1.8s 1 forwards;
}
.secKv__figureImg:nth-of-type(5) {
  animation: rotation 1s ease 2.0s 1 forwards;
}

@keyframes rotation {
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .secKv {
    margin: 0 0 13vw;
  }
  
  .secKv__container {
    margin: 0 auto;
    width: 100%;
    display:block;
    flex-direction: row;
  }
  
  .secKv__ttl {
    margin: 0 auto 9vw;
    width: 75.2vw;
  }
  
  .secKv__ttl h1 {
    margin: 0 0 7vw;
    font-size: 15.885vw;
    line-height: 1.3;
  }
  
  .secKv__ttl h2 {
    font-size: 5.859vw;
    letter-spacing: 0.3em;
  }
  
  .secKv__figure{
    margin: 0 auto;
    width: 75.2vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .secKv__figureImg {
    max-width: 21.6vw;
    margin-bottom: 5.2vw;
  }
}

.secConcept {
  margin: 0 0 10rem;
  padding: 0;
}

.secConcept__container {
  margin: 0 auto;
  width: 100rem;
}

.secConcept h2 {
  margin: 0 0 4rem;
  color: #e60020;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 63px;
}

.secConcept h3 {
  margin: 0 0 2.7rem 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 38px;
}

.secConcept p {
  margin-left: 1vw;
  font-size: 24px;
  letter-spacing: 0.15em;
  line-height: 2.8;
}

@media screen and (max-width: 768px) {
  .secConcept {
    margin: 0 0 12vw;
  }
  .secConcept__container {
    width: 90vw;
  }
  
  .secConcept h2 {
    margin: 0 0 5vw;
    font-size: 6.3vw;
  }
  .secConcept h3 {
    margin: 0 0 5vw 0.6vw;
    font-size: 4vw;
  }
  .secConcept p {
    font-size: 3.1vw;
    letter-spacing: 0.1em;
    line-height: 2.6;
  }
}

.secContent{
  margin: 0 0 11rem;
  padding: 0;
}

.secContent__container {
  margin: 0 auto;
  width: 100rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.secContent__box {
  position: relative;
  width: 100%;
  width: 22.5rem;
  aspect-ratio: 1 / 1;  /* 縦横比を1:1 */
  background-color: #f2f2f2;
}

.square {
  width: 100%;
  max-width: 1.3rem;
  aspect-ratio: 1 / 1;
  background-color: #e60020;
  position: absolute;
  top: 0;
  left: 0;
}

.secContent__box h4 {
  padding: 2.5rem 0 0 2rem;
  font-size: 24px;
  /*line-height: 1.6;*/
}

.secContent__box p{
  padding: 2.5rem 0 0 2rem;
  font-size: 14px;
}

.secContent__box .more__button a {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .secContent{
    margin: 0 0 8vw;
  }

  .secContent__container {
    width: 88vw;
  }
  
  .secContent__box {
    width: 42vw;
    margin-bottom: 4vw;
  }
  
  .square {
    max-width: 2.6vw;
  }
  
  .secContent__box h4 {
    font-size: 4.2vw;
    padding: 6vw 0 0 3vw;
  }
  
  .secContent__box p{
    padding: 4vw 0 0 3vw;
    font-size: 2.8vw;
  }
}

.secDream {
  position: relative;
  width: 100%;
  min-width: 100rem;
  margin: 0 0 10rem;
  padding: 2.5rem 0 10.5rem;
  background-color: #e60020;
}

.secDream__container {
  width: 100%;
  margin: 0 auto;
}

.secDream__container h4 {
  font-size: 60px;
  letter-spacing: 0.18em;
  text-align: center;
  color: #fff;
}

.secDream__container p{
  padding: 1.5rem 0 1.8rem;
  line-height:1.4;
  font-size: 22px;
  text-align: center;
  color: #fff;
}

.secDream__figure{
  /*width: 100%;*/
}

.secDream .more__button a {
  position: absolute;
  bottom: 6.5%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .secDream {
    min-width: 100%;
    margin: 0 0 12vw;
    padding: 2.3vw 0 14vw;
  }

  .secDream__container {
    max-width: 90vw;
  }
  
  .secDream__container h4 {
    font-size: 4.7vw;
  }

  .secDream__container p{
    padding: 1vw 0;
    line-height:1.4;
    font-size: 2.8vw;
  }
}

.secEmploy {
  position: relative;
  margin: 0 0 8rem;
  padding: 0;
}

.secEmploy__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100rem;
  margin: 0 auto;
}

.secEmploy__box {
  position: relative;
  width: 48rem;
  margin: 0;
  background-color: #f2f2f2;
  border: 1px solid #999999;
}

.secEmploy__heading {
  display: flex;
  margin: 2.5rem 0 1rem 2.5rem;
}

.secEmploy__figure {
  max-width: 13rem;
}

.secEmploy__ttl {
  padding: 0 0 0 1.5rem;
}

.secEmploy__ttl h4 {
  font-size: 25px;
  margin-bottom: 1.7rem;
}

.secEmploy__ttl p {
  font-size: 14px;
  line-height:1.7;
}

.secEmploy__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 43rem;
  margin: 0 0 2rem 2.5rem;
}

.secEmploy__content__inner {
  width: 50rem;
}

.secEmploy__content__inner p {
  font-size: 14px;
  margin-left: 1em;
  text-indent: -1em;
}

.secEmploy__content__inner.st p {
  margin-bottom: 2.2em;
}

.topPage .secEmploy__content p:before {
  content:'■';
  color: #e60020;
}

.secEmploy__container .more__button a {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
}

@media screen and (max-width: 768px) {
  .secEmploy {
    margin: 0 auto 12vw;
  }
  
  .secEmploy__container {
    display: block;
    width: 88vw;
  }
  
  .secEmploy__box {
    width: 88vw;
    margin-bottom: 7vw;
  }
  
  .secEmploy__heading {
    margin: 2.5vw 0 1vw 2.5vw;
  }
  
  .secEmploy__figure {
    max-width: 21.5vw;
  }
  
  .secEmploy__ttl {
    padding: 0 0 0 2.8vw;
  }
 
  .secEmploy__ttl h4 {
    font-size: 4vw;
    margin-bottom: 1.5vw;
  }
  
  .secEmploy__ttl p {
    font-size: 2.7vw;
  }
  
  .secEmploy__content {
    width: 84vw;
    margin: 0 0 2vw 2.2vw;
  }

  .secEmploy__content__inner {
    width: 90vw;
  }
  
  .secEmploy__content__inner p {
    font-size: 2.8vw;
  }
  
  .secEmploy__content__inner.st p {
    margin-bottom: 0.7em;
  }
  
  .secEmploy__content__inner.st {
    margin-bottom: 9vw;
  }
  
  .secEmploy__container .more__button a {
    bottom: 3.5vw;
    right: 2.5vw;
  }
}

.secProfile {
  position: relative;
  margin: 0 auto 13rem;
}

.secProfile__container {
  width: 100rem;
  margin: 0 auto;
}

.profile__button {
  display: block;
  width: 45rem;
  margin: 0 auto;
}

.profile__button a {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2rem 0 1rem;
  border: 1px solid #999999;
  color: #484848;
  background: #f2f2f2;
  font-size: 20px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .secProfile {
    margin: 0 auto 12vw;
  }
  
  .secProfile__container {
    display: block;
    width: 88vw;
  }
  
  .profile__button {
    width: 88vw;
    margin: 0 auto;
  }
  
  .profile__button a {
    padding: 3vw 0 1vw;
    font-size: clamp(14px, 2.8vw, 30px);
    vertical-align: middle;
  }
}

a[href$=".pdf"]::before {
  padding-right: 15px;
  display: inline-block;
  content: url("../images/top/icon_pdf.png");
  /*vertical-align: middle;*/
}

@media screen and (max-width: 768px) {
  a[href$=".pdf"]::before {
    padding-right: 10px;
    content: url("../images/top/icon_pdf_sp.png");
  }
}

