@charset "utf-8";


/* ===================================================
  共通パーツ
====================================================== */

h2 {
  position: relative;
  margin: 0;
  padding-left: 115px;
  line-height: 1;
}

h2 .num {
  top: -10px;
  left: 0;
  position: absolute;

  display: block;
  color: #e0e0e0;
  font-size: 87px;
  font-family: 'Aboreto', cursive;
  font-weight: normal;
}

h2 .en {
  display: block;
  margin: 0 0 10px;
  color: #b0b0b0;
  font-size: 28px;
  font-family: 'Aboreto', cursive;
  letter-spacing: 0.15em;
}

h2 .jp {
  display: block;
  color: var(--text-sub);
  font-size: 38px;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.inner_col p {
  margin: 0;
  line-height: 2;
  text-align: justify;
}

.img_col img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media screen and (max-width: 768px) {
  h2{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-left: 0;
  }
  h2 .num{
    width: 49%;
    font-size: 56px;
    text-align: right;
    position:static;
  }
  h2 .en{
    margin: 0 0 2vw;
    width: 49%;
    font-size: 20px;
    }
  h2 .jp{
    margin: 1.5vw 0 4vw ;
    width: 100%;
    font-size: 26px;
    text-align: center;
  }
}


/* ===================================================
  sec01
====================================================== */
#sec01 .inner_col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#sec01 p{
  margin-bottom: 25px;
}

#sec01 .img_col {
  grid-column: 1 / 3;
  position: relative;
}
#sec01 .img_col img:nth-child(1) {
  width: 60%;
}
#sec01 .img_col img:nth-child(2) {
  position: absolute;
  bottom: -60px;
  right: 0;
  width: 45%;
  z-index: -1;
}


@media screen and (max-width: 768px) {
  #sec01{ margin-bottom: 5vw;}
  #sec01 .inner_col{
    display: block;
  }
  #sec01 p{
    margin-bottom: 5vw;
  }
  #sec01 .img_col img:nth-child(2) {
    width: 60%;
  }
}


/* ===================================================
  sec02
====================================================== */
#sec02 .inner_col {
  position:relative;
}

#sec02 h2{
  margin-bottom: 50px;
}
#sec02 p {
  left: 0;
  bottom: 50px;
  position: absolute;
  width: 300px;
  padding: 15px;
  line-height:1.8;
  background: var(--white);

}
#sec02 .img_col {
  text-align: right;
}

#sec02 .img_col img{
  display: inline;
  width: 816px;
}

@media screen and (max-width: 768px) {
  #sec02 h2{
    margin-bottom: 0;
  }
  #sec02 p {
    position: static;
    margin-bottom: 5vw;
    padding: 0;
    width: 100%;
    background: none;
  }
  #sec02 .img_col {
    text-align: center;
  }
  #sec02 .img_col img{
    width: 100%;
  }
}




/* ===================================================
  sec03
====================================================== */
#sec03{ margin-bottom: 150px;}

#sec03 p {
  margin: 50px 0 40px;
  padding-left: 11%;
  width: 62%;
}

#sec03 .img_col {
  position: relative;
}
#sec03 .img_col img:nth-child(1) {
  width: 73%;
}
#sec03 .img_col img:nth-child(2) {
  position: absolute;
  top: -100px;
  right: 0;
  width: 36%;
}

@media screen and (max-width: 768px) {
  #sec03{
    margin-bottom: 30vw;
    padding-top: 10vw;
  }
  #sec03 p {
    margin: 0 0 5vw;
    padding-left: 0;
    width: 100%;
  }
  #sec03 .img_col img:nth-child(2) {
    top: auto;
    bottom: -90px;
    width: 40%;
  }
}