@charset "UTF-8";
/* CSS Document */
/*トップ*/
.top-image{
  position: relative;
  width: 100%;
  height: 400px;
  background: url("../images/top-image-bg4.jpg") no-repeat center/cover;
}
.top-filter {
  background-color: rgba(0, 0, 0, 0.20);
  height: 100%;
  width: 100%;
}
.top-image::after {
  position: absolute;
  content: "";
  background-image: url(../images/wave_long.svg);
  left: 0;
  background-repeat: repeat-x;
  height: 17px;
  background-position: center;
  width: 100%;
  bottom: -1px;
  background-size: 1200px;
}
.top-logo {
  display: block;
  position: absolute;
  width: 220px;
  cursor: pointer;
  z-index: 500;
  transition: all .5s;
  top: 12px;
  left: 15px;
}
.top-logo img {
  width: 100%;
  object-fit: cover;
}
.page-title {
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  color: #fff;
}
.page-title h1 {
  font-size: 2.6rem;
  font-family: 'Zen Maru Gothic', serif;
  font-weight: 500;
  letter-spacing: 0.2rem;
  opacity: 0;
}
.page-title p {
  font-family: Arial, Helvetica, "sans-serif", "Helvetica Neue";
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  opacity: 0;
}
/*トップ(タブレット)*/
@media(min-width:600px) {
  .top-logo {
    width: 260px;
  }
  .page-title {
  top: 43%;
}
}
/*トップ(PC)*/
@media(min-width:1000px) {
  .top-image {
    height:85vh;
  }
  .top-image::after {
    height: 27px;
    background-position: center;
    width: 100%;
    bottom: -5px;
    background-size: 1500px;
  }
  .page-title {
    position: absolute;
    top: 48%;
    left: 0;
    right: 0;
    text-align: center;
    line-height: 1.4;
    color: #fff;
  }
  .page-title h1 {
    font-size: 3.6rem;
    margin-bottom: 10px;
  }
  .page-title p {
    font-size: 2.0rem;
  }
}
/*概要*/
.section-summary {
  padding: 60px 0 70px;
}
.summary-text {
  position: relative;
  padding: 0 20px;
}
.summery-heading {
  display: flex;
  margin-bottom: 15px;
}
.section-summary h2 {
  text-align: left;
  letter-spacing: 0.1rem;
}
.section-summary h2 span:nth-of-type(1) {
  color: #E57C44;
}
.about-illust1 {
  min-width: 80px;
  width: 32vw;
  max-width: 115px;
}
.summary-illust img {
  width: 100%;
  object-fit: contain;
}
.summary-discription p {
  margin-bottom: 15px;
  text-align: justify;
}
.summary-discription p:last-of-type {
  margin-bottom: 40px;
}
.summary-photo {
  width: 85vw;
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 100px 0 0 20px;
  margin: 0 0 0 auto;
  transition: all .3s;
  overflow: hidden;
}
.summary-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
/*概要(タブレット)*/
@media(min-width:600px) {
  .section-summary {
    padding: 60px 0 100px;
  }
  .summary-text {
    margin: 0 auto;
    max-width: 860px;
    padding: 0 70px;
  }
  .summery-heading {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-between;
  }
  .section-summary h2 {
    text-align: left;
  }
  .section-summary h2 br {
    display: none;
  }
  .about-illust1 {
    width: 115px;
    max-width: none;
    min-width: none;
  }
  .summary-discription p {
    margin-bottom: 15px;
  }
  .summary-discription p:last-of-type {
    margin-bottom: 45px;
  }
  .summary-photo {
    max-width: 720px;
    width: 75vw;
    border-radius: 140px 0 0 20px;
  }
}
/*概要(PC)*/
@media(min-width:1000px) {
  .section-summary {
    padding: 100px 0 140px;
  }
  .summary-content {
    display: flex;
    flex-direction: column;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 110px;
    align-content: center;
    flex-wrap: wrap;
  }
  .summary-text {
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .summery-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .section-summary h2 {
    text-align: left;
  }
  .section-summary h2 br {
    display: none;
  }
  .about-illust1 {
    width: 150px;
    height: 100px;
  }
  .summary-discription p {
    margin-bottom: 20px;
  }
  .summary-discription p:last-of-type {
    margin-bottom: 70px;
  }
  .summary-photo {
    max-width: 800px;
    width: 60vw;
    border-radius: 180px 20px 20px 20px;
  }
}
/*3つのポイント*/
.section-point-title {
  width: 85vw;
  height: auto;
  margin: 0 auto 35px;
  max-width: 320px;
}
.section-point-title img {
  width: 100%;
  object-fit: contain;
}
.point-list {
  padding: 0 20px;
}
.point-list li {
  margin: 0 auto 50px;
}
.point-image {
  position: relative;
  aspect-ratio: 5/3;
  width: 80vw;
  max-width: 360px;
  margin: 0 auto 15px;
}
.image-wrapper{
  border-radius: 15px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.image-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}
.point-image.image1::before,.point-image.image2::before,.point-image.image3::before{
    content: "";
    position: absolute;
  top: -12%;
  left: -9%;
  transform: rotate(-7deg);
  aspect-ratio: 1/1;
  width: 18vw;
  max-width: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.point-image.image1::before {
  background-image: url(../images/point01.svg);
}
.point-image.image2::before {
  background-image: url("../images/point02.svg");
}
.point-image.image3::before {
  background-image: url("../images/point03.svg");
}
.badge1, .badge2, .badge3 {
  display: none;
}
.point-list h2 {
  color: #85C16C;
  margin-bottom: 5px;
  font-size: 2.6rem;
  line-height: 1.4;
}
.newline {
  display: inline-block;
}
.point-heading br {
  display: none;
}
.point-list p {
  text-align: justify;
}
.point-discription {
  padding: 0 20px;
  margin-bottom: 40px;
}
.point-discription h2 {
  text-align: justify;
  letter-spacing: 0.1rem;
  margin-bottom: 15px;
}
.point-discription p {
  text-align: justify;
  margin-bottom: 15px;
}
.point-photo {
  width: 90vw;
  aspect-ratio: 3/2;
  position: relative;
  border-radius: 0 100px 20px 0;
  margin: 0 auto 0 0;
  transition: all .3s;
  overflow: hidden;
}
.point-photo img{
    width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/*3つのポイント（タブレット）*/
@media(min-width:600px) {
  .section-point-title {
    width: 85vw;
    height: auto;
    margin: 0 auto 45px;
    max-width: 520px;
  }
  .point-list {
    padding: 0 70px;
    max-width: 740px;
    margin: 0 auto;
  }
  .point-list li {
    margin: 0 auto 70px;
  }
  .point-image {
    aspect-ratio: 5/3;
    width: 54vw;
    max-width: 420px;
    margin: 0 auto 20px;
  }
  .image-wrapper{
  border-radius: 20px;
}
  .point-image.image1::before, .point-image.image2::before,.point-image.image3::before {
    top: -12%;
    left: -9%;
    transform: rotate(-7deg);
    aspect-ratio: 1/1;
    width: 13vw;
    max-width: 96px;
  }
  .point-list h2 {
    font-size: 3.0rem;
  }
  .newline {
    display: inline-block;
  }
  .point-heading br {
    display: none;
  }
  .point-discription {
    padding: 0 70px;
    margin: 0 auto 60px;
    max-width: 860px;
  }
  .point-discription h2 {
    margin-bottom: 20px;
  }
  .point-photo {
    width: 75vw;
    max-width: 720px;
    aspect-ratio: 16/9;
    border-radius: 0 140px 20px 0;
  }
}
/*3つのポイント（PC）*/
@media(min-width:1000px) {
  .section-point-title {
    width: 650px;
    height: 140px;
    margin: 0 auto 70px;
    max-width: none;
  }
  .point-list {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 110px;
  }
  .point-list li {
    margin: 0 auto 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .point-list li:nth-of-type(2) {
    flex-direction: row-reverse;
  }
  .point-list li:last-of-type {
    margin-bottom: 120px;
  }
  .point-image {
    width: 48%;
    max-width: none;
    margin: 0;
    border-radius: 20px;
    aspect-ratio: 3/2;
  }
  .point-image.image1::before, .point-image.image2::before, .point-image.image3::before {
    display: none;
  }
  .point-heading {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  .badge1, .badge2, .badge3 {
    display: block;
    width: 85px;
    aspect-ratio: 1/1;
    transform: rotate(-7deg);
    margin-right: 15px;
  }
  .point-list-text {
    display: flex;
    flex-direction: column;
    width: 48%;
  }
  .point-list h2 {
    font-size: 3.4rem;
    text-align: left;
    line-height: 1.3;
  }
  .newline {
    display: inline;
    margin-left: 30px;
  }
  .point-heading br {
    display: block;
  }
  .point-discription {
    padding: 0 110px;
    margin: 0 auto 70px;
    max-width: 1220px;
  }
  .point-discription h2 {
    margin-bottom: 30px;
  }
  .point-discription p {
    margin-bottom: 20px;
  }
  .point-photo-wrapper {
    max-width: 1220px;
    padding: 0 110px;
    margin: 0 auto;
  }
  .point-photo {
    max-width: 800px;
    width: 60vw;
    border-radius: 20px 180px 20px 20px;
  }
}
/*経歴*/
.section-staff {
  padding: 80px 20px 80px;
}
.staff-content-frame {
  background-color: #fff;
  padding: 40px 30px 40px;
  border: dashed 3px #C5D94F;
  border-radius: 15px;
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}
.about-illust2 {
    position: absolute;
    left: -5%;
    top: -5%;
    width: 16vw;
    max-width: 75px;
}
.about-illust2 img {
  width: 100%;
  object-fit: contain;
}
.staff-photo {
  width: 60vw;
  aspect-ratio: 1/1;
  max-width: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 200px;
  margin: 0 auto 15px;
  overflow: hidden;
}
.staff-photo img{
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center;
}
.staff-name {
  margin: 0 auto 15px;
  text-align: center;
}
.staff-name p {
  color: #85C16C;
  line-height: 1.4;
  font-family: 'Zen Maru Gothic', serif;
  font-weight: 500;
}
.staff-name h3 {
  font-family: 'Zen Maru Gothic', serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.4;
}
.staff-discription {
  text-align: justify;
  max-width: 480px;
  margin: 0 auto;
}
.about-illust3 {
position: absolute;
    bottom: -4%;
    right: -5%;
    width: 18vw;
    max-width: 75px;
}
.about-illust3 img {
  width: 100%;
  object-fit: contain;
}
/*経歴（タブレット）*/
@media(min-width:600px) {
  .section-staff {
    padding: 120px 70px 100px;
  }
  .staff-content-frame {
    padding: 60px;
    border-radius: 20px;
    max-width: 600px;
  }
  .about-illust2 {
    position: absolute;
    left: -5%;
    top: -5%;
    width: 12vw;
    max-width: 100px;
  }
  .about-illust2 img {
    width: 100%;
    object-fit: contain;
  }
  .staff-photo {
    width: 50vw;
    aspect-ratio: 1/1;
    max-width: 320px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 200px;
    margin: 0 auto 15px;
  }
  .staff-name {
    margin: 0 auto 15px;
    text-align: center;
  }
  .staff-name p {
    color: #85C16C;
    line-height: 1.4;
  }
  .staff-name h3 {
    font-size: 2.6rem;
    line-height: 1.4;
  }
  .staff-discription {
    text-align: justify;
    max-width: 480px;
    margin: 0 auto;
  }
  .about-illust3 {
position: absolute;
    bottom: -6%;
    right: -6%;
    width: 13vw;
    max-width: 100px;
  }
  .about-illust3 img {
    width: 100%;
    object-fit: contain;
  }
}
/*経歴（PC）*/
@media(min-width:1000px) {
  .section-staff {
    padding: 160px 110px 160px;
  }
  .staff-content-frame {
    padding: 90px;
    border-radius: 20px;
    max-width: 1000px;
  }
  .about-illust2 {
    position: absolute;
    left: -4%;
    top: -9%;
    width: 9vw;
    max-width: 100px;
  }
  .about-illust2 img {
    width: 100%;
    object-fit: contain;
  }
  .staff-content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  .staff-photo {
    width: 52vw;
    aspect-ratio: 9/16;
    max-width: 320px;
    max-height: 400px;
    border-radius: 20px;
    margin: 0 40px 0 0;
  }
  .staff-text {
    display: flex;
    flex-direction: column;
    width: 48%;
  }
  .staff-name {
    margin: 0 0 15px 0;
    text-align: left;
  }
  .staff-name p {
    line-height: 1.4;
  }
  .staff-name h3 {
    font-size: 3.0rem;
    line-height: 1.4;
  }
  .staff-discription {
    text-align: justify;
    max-width: 600px;
    margin: 0 auto;
  }
  .about-illust3 {
    position: absolute;
    bottom: -7%;
    right: -4%;
    width: 9vw;
    max-width: 100px;
  }
  .about-illust3 img {
    width: 100%;
    object-fit: contain;
  }
}